hyperframes 0.7.15 → 0.7.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -50,7 +50,7 @@ var VERSION;
50
50
  var init_version = __esm({
51
51
  "src/version.ts"() {
52
52
  "use strict";
53
- VERSION = true ? "0.7.15" : "0.0.0-dev";
53
+ VERSION = true ? "0.7.16" : "0.0.0-dev";
54
54
  }
55
55
  });
56
56
 
@@ -52495,6 +52495,34 @@ function objectExpressionToRecord(node, scope, source) {
52495
52495
  function isGsapTimelineCall(node) {
52496
52496
  return node?.type === "CallExpression" && node.callee?.type === "MemberExpression" && node.callee.object?.name === "gsap" && node.callee.property?.name === "timeline";
52497
52497
  }
52498
+ function staticMemberKey(node) {
52499
+ if (!node || node.type !== "MemberExpression") return null;
52500
+ if (node.computed) {
52501
+ const p2 = node.property;
52502
+ if (p2?.type === "Literal" && typeof p2.value === "string") return p2.value;
52503
+ return null;
52504
+ }
52505
+ return node.property?.type === "Identifier" ? node.property.name : null;
52506
+ }
52507
+ function isStaticMemberRef(node) {
52508
+ return node?.type === "MemberExpression" && staticMemberKey(node) !== null;
52509
+ }
52510
+ function sameMemberAccess(a, b2) {
52511
+ if (a?.type !== "MemberExpression" || b2?.type !== "MemberExpression") return false;
52512
+ if (staticMemberKey(a) !== staticMemberKey(b2) || staticMemberKey(a) === null) return false;
52513
+ const ao = a.object;
52514
+ const bo = b2.object;
52515
+ if (ao?.type === "Identifier" && bo?.type === "Identifier") return ao.name === bo.name;
52516
+ if (ao?.type === "MemberExpression" && bo?.type === "MemberExpression")
52517
+ return sameMemberAccess(ao, bo);
52518
+ return false;
52519
+ }
52520
+ function timelineRootSource(ref2, script) {
52521
+ return ref2.kind === "identifier" ? ref2.name : script.slice(ref2.node.start, ref2.node.end);
52522
+ }
52523
+ function escapeRegExp(s2) {
52524
+ return s2.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
52525
+ }
52498
52526
  function extractTimelineDefaults(callNode, scope) {
52499
52527
  const arg = callNode.arguments?.[0];
52500
52528
  if (!arg || arg.type !== "ObjectExpression") return void 0;
@@ -52514,6 +52542,7 @@ function extractTimelineDefaults(callNode, scope) {
52514
52542
  }
52515
52543
  function findTimelineVar(ast, scope) {
52516
52544
  let timelineVar = null;
52545
+ let ref2 = null;
52517
52546
  let timelineCount = 0;
52518
52547
  let defaults;
52519
52548
  const emptyScope = scope ?? /* @__PURE__ */ new Map();
@@ -52521,8 +52550,9 @@ function findTimelineVar(ast, scope) {
52521
52550
  VariableDeclarator(node) {
52522
52551
  if (isGsapTimelineCall(node.init)) {
52523
52552
  timelineCount += 1;
52524
- if (!timelineVar) {
52525
- timelineVar = node.id?.name ?? null;
52553
+ if (!ref2 && node.id?.type === "Identifier") {
52554
+ timelineVar = node.id.name;
52555
+ ref2 = { kind: "identifier", name: node.id.name };
52526
52556
  defaults = extractTimelineDefaults(node.init, emptyScope);
52527
52557
  }
52528
52558
  }
@@ -52530,24 +52560,31 @@ function findTimelineVar(ast, scope) {
52530
52560
  AssignmentExpression(node) {
52531
52561
  if (isGsapTimelineCall(node.right)) {
52532
52562
  timelineCount += 1;
52533
- if (!timelineVar) {
52563
+ if (!ref2) {
52534
52564
  const left = node.left;
52535
- if (left?.type === "Identifier") timelineVar = left.name;
52536
- defaults = extractTimelineDefaults(node.right, emptyScope);
52565
+ if (left?.type === "Identifier") {
52566
+ timelineVar = left.name;
52567
+ ref2 = { kind: "identifier", name: left.name };
52568
+ defaults = extractTimelineDefaults(node.right, emptyScope);
52569
+ } else if (isStaticMemberRef(left)) {
52570
+ ref2 = { kind: "member", node: left };
52571
+ defaults = extractTimelineDefaults(node.right, emptyScope);
52572
+ }
52537
52573
  }
52538
52574
  }
52539
52575
  }
52540
52576
  });
52541
- return { timelineVar, timelineCount, defaults };
52577
+ return { timelineVar, ref: ref2, timelineCount, defaults };
52542
52578
  }
52543
- function isTimelineRootedCall(callNode, timelineVar) {
52579
+ function isTimelineRootedCall(callNode, ref2) {
52544
52580
  let obj = callNode.callee?.object;
52545
52581
  while (obj?.type === "CallExpression") {
52546
52582
  obj = obj.callee?.object;
52547
52583
  }
52548
- return obj?.type === "Identifier" && obj.name === timelineVar;
52584
+ if (ref2.kind === "identifier") return obj?.type === "Identifier" && obj.name === ref2.name;
52585
+ return sameMemberAccess(obj, ref2.node);
52549
52586
  }
52550
- function findAllTweenCalls(ast, timelineVar, scope, targetBindings) {
52587
+ function findAllTweenCalls(ast, ref2, scope, targetBindings) {
52551
52588
  const results = [];
52552
52589
  function visit(node, ancestors) {
52553
52590
  if (!node || typeof node !== "object") return;
@@ -52556,7 +52593,7 @@ function findAllTweenCalls(ast, timelineVar, scope, targetBindings) {
52556
52593
  const callee = node.callee;
52557
52594
  const gsapSetArg = node.arguments?.[0];
52558
52595
  const isGlobalSet = callee?.type === "MemberExpression" && callee.object?.type === "Identifier" && callee.object.name === "gsap" && callee.property?.type === "Identifier" && callee.property.name === "set" && (gsapSetArg?.type === "StringLiteral" || gsapSetArg?.type === "Literal" && typeof gsapSetArg.value === "string");
52559
- if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall(node, timelineVar) || isGlobalSet) && GSAP_METHODS2.has(callee.property.name)) {
52596
+ if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall(node, ref2) || isGlobalSet) && GSAP_METHODS2.has(callee.property.name)) {
52560
52597
  const method = callee.property.name;
52561
52598
  const args = node.arguments;
52562
52599
  const selectorValue = args.length >= 1 ? resolveTargetSelector(args[0], nodeAncestors, scope, targetBindings) ?? "__unresolved__" : "__unresolved__";
@@ -53007,8 +53044,9 @@ function parseGsapScriptAcornForWrite(script) {
53007
53044
  const scope = collectScopeBindings(ast);
53008
53045
  const targetBindings = collectTargetBindings(ast, scope);
53009
53046
  const detection = findTimelineVar(ast, scope);
53010
- const timelineVar = detection.timelineVar ?? "tl";
53011
- const calls = findAllTweenCalls(ast, timelineVar, scope, targetBindings);
53047
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
53048
+ const timelineVar = timelineRootSource(ref2, script);
53049
+ const calls = findAllTweenCalls(ast, ref2, scope, targetBindings);
53012
53050
  sortBySourcePosition(calls);
53013
53051
  const rawAnims = calls.map((call) => tweenCallToAnimation(call, scope, script));
53014
53052
  applyTimelineDefaults(rawAnims, detection.defaults);
@@ -53019,7 +53057,7 @@ function parseGsapScriptAcornForWrite(script) {
53019
53057
  call,
53020
53058
  animation: animations[i2]
53021
53059
  }));
53022
- return { ast, timelineVar, hasTimeline: detection.timelineVar !== null, located };
53060
+ return { ast, timelineVar, hasTimeline: detection.ref !== null, located };
53023
53061
  } catch {
53024
53062
  return null;
53025
53063
  }
@@ -53033,24 +53071,25 @@ function parseGsapScriptAcorn(script) {
53033
53071
  });
53034
53072
  const scope = collectScopeBindings(ast);
53035
53073
  const detection = findTimelineVar(ast, scope);
53036
- const timelineVar = detection.timelineVar ?? "tl";
53037
- try {
53038
- inlineComputedTimelines(ast, timelineVar, (node) => resolveNode(node, scope));
53039
- } catch {
53074
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
53075
+ const timelineVar = timelineRootSource(ref2, script);
53076
+ if (ref2.kind === "identifier") {
53077
+ try {
53078
+ inlineComputedTimelines(ast, timelineVar, (node) => resolveNode(node, scope));
53079
+ } catch {
53080
+ }
53040
53081
  }
53041
53082
  const targetBindings = collectTargetBindings(ast, scope);
53042
- const calls = findAllTweenCalls(ast, timelineVar, scope, targetBindings);
53083
+ const calls = findAllTweenCalls(ast, ref2, scope, targetBindings);
53043
53084
  sortBySourcePosition(calls);
53044
53085
  const rawAnims = calls.map((call) => tweenCallToAnimation(call, scope, script));
53045
53086
  applyTimelineDefaults(rawAnims, detection.defaults);
53046
53087
  resolveTimelinePositions(rawAnims);
53047
53088
  const animations = assignStableIds(rawAnims);
53048
- const timelineMatch = script.match(
53049
- new RegExp(
53050
- `^[\\s\\S]*?(?:const|let|var)\\s+${timelineVar}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?`
53051
- )
53052
- );
53053
- const preamble = timelineMatch?.[0] ?? `const ${timelineVar} = gsap.timeline({ paused: true });`;
53089
+ const declPattern = ref2.kind === "identifier" ? `(?:const|let|var)\\s+${timelineVar}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?` : `${escapeRegExp(timelineVar)}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?`;
53090
+ const timelineMatch = script.match(new RegExp(`^[\\s\\S]*?${declPattern}`));
53091
+ const fallbackPreamble = ref2.kind === "identifier" ? `const ${timelineVar} = gsap.timeline({ paused: true });` : `${timelineVar} = gsap.timeline({ paused: true });`;
53092
+ const preamble = timelineMatch?.[0] ?? fallbackPreamble;
53054
53093
  const lastCallIdx = script.lastIndexOf(`${timelineVar}.`);
53055
53094
  let postamble = "";
53056
53095
  if (lastCallIdx !== -1) {
@@ -53062,7 +53101,7 @@ function parseGsapScriptAcorn(script) {
53062
53101
  }
53063
53102
  const result = { animations, timelineVar, preamble, postamble };
53064
53103
  if (detection.timelineCount > 1) result.multipleTimelines = true;
53065
- if (detection.timelineCount > 0 && detection.timelineVar === null)
53104
+ if (detection.timelineCount > 0 && detection.ref === null)
53066
53105
  result.unsupportedTimelinePattern = true;
53067
53106
  return result;
53068
53107
  } catch {
@@ -55409,7 +55448,7 @@ var RUNTIME_IIFE;
55409
55448
  var init_runtime_inline = __esm({
55410
55449
  "../core/dist/generated/runtime-inline.js"() {
55411
55450
  "use strict";
55412
- RUNTIME_IIFE = '"use strict";(()=>{var Ca=Object.create;var Vn=Object.defineProperty;var Fa=Object.getOwnPropertyDescriptor;var Ma=Object.getOwnPropertyNames;var Na=Object.getPrototypeOf,_a=Object.prototype.hasOwnProperty;var Ta=(t,e,n)=>e in t?Vn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var Z=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var La=(t,e,n,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Ma(e))!_a.call(t,r)&&r!==n&&Vn(t,r,{get:()=>e[r],enumerable:!(i=Fa(e,r))||i.enumerable});return t};var va=(t,e,n)=>(n=t!=null?Ca(Na(t)):{},La(e||!t||!t.__esModule?Vn(n,"default",{value:t,enumerable:!0}):n,t));var ye=(t,e,n)=>Ta(t,typeof e!="symbol"?e+"":e,n);var Br=Z((dm,Zn)=>{var $=String,Or=function(){return{isColorSupported:!1,reset:$,bold:$,dim:$,italic:$,underline:$,inverse:$,hidden:$,strikethrough:$,black:$,red:$,green:$,yellow:$,blue:$,magenta:$,cyan:$,white:$,gray:$,bgBlack:$,bgRed:$,bgGreen:$,bgYellow:$,bgBlue:$,bgMagenta:$,bgCyan:$,bgWhite:$,blackBright:$,redBright:$,greenBright:$,yellowBright:$,blueBright:$,magentaBright:$,cyanBright:$,whiteBright:$,bgBlackBright:$,bgRedBright:$,bgGreenBright:$,bgYellowBright:$,bgBlueBright:$,bgMagentaBright:$,bgCyanBright:$,bgWhiteBright:$}};Zn.exports=Or();Zn.exports.createColors=Or});var ei=Z(()=>{});var un=Z((pm,Gr)=>{"use strict";var Hr=Br(),Wr=ei(),vt=class t extends Error{constructor(e,n,i,r,o,s){super(e),this.name="CssSyntaxError",this.reason=e,o&&(this.file=o),r&&(this.source=r),s&&(this.plugin=s),typeof n<"u"&&typeof i<"u"&&(typeof n=="number"?(this.line=n,this.column=i):(this.line=n.line,this.column=n.column,this.endLine=i.line,this.endColumn=i.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,t)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let n=this.source;e==null&&(e=Hr.isColorSupported);let i=u=>u,r=u=>u,o=u=>u;if(e){let{bold:u,gray:m,red:f}=Hr.createColors(!0);r=x=>u(f(x)),i=x=>m(x),Wr&&(o=x=>Wr(x))}let s=n.split(/\\r?\\n/),l=Math.max(this.line-3,0),a=Math.min(this.line+2,s.length),c=String(a).length;return s.slice(l,a).map((u,m)=>{let f=l+1+m,x=" "+(" "+f).slice(-c)+" | ";if(f===this.line){if(u.length>160){let g=20,S=Math.max(0,this.column-g),_=Math.max(this.column+g,this.endColumn+g),v=u.slice(S,_),R=i(x.replace(/\\d/g," "))+u.slice(0,Math.min(this.column-1,g-1)).replace(/[^\\t]/g," ");return r(">")+i(x)+o(v)+`\n `+R+r("^")}let E=i(x.replace(/\\d/g," "))+u.slice(0,this.column-1).replace(/[^\\t]/g," ");return r(">")+i(x)+o(u)+`\n `+E+r("^")}return" "+i(x)+o(u)}).join(`\n`)}toString(){let e=this.showSourceCode();return e&&(e=`\n\n`+e+`\n`),this.name+": "+this.message+e}};Gr.exports=vt;vt.default=vt});var ti=Z((hm,Vr)=>{"use strict";var cl=/(<)(\\/?style\\b)/gi,dl=/(<)(!--)/g;function qe(t){return typeof t!="string"||!t.includes("<")?t:t.replace(cl,"\\\\3c $2").replace(dl,"\\\\3c $2")}var Ur={after:`\n`,beforeClose:`\n`,beforeComment:`\n`,beforeDecl:`\n`,beforeOpen:" ",beforeRule:`\n`,colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};function fl(t){return t[0].toUpperCase()+t.slice(1)}var Rt=class{constructor(e){this.builder=e}atrule(e,n){let i=e.raws,r="@"+e.name,o=e.params?this.rawValue(e,"params"):"";if(typeof i.afterName<"u"?r+=i.afterName:o&&(r+=" "),e.nodes)this.block(e,r+o);else{let s=(i.between||"")+(n?";":"");this.builder(qe(r+o+s),e)}}beforeAfter(e,n){let i;e.type==="decl"?i=this.raw(e,null,"beforeDecl"):e.type==="comment"?i=this.raw(e,null,"beforeComment"):n==="before"?i=this.raw(e,null,"beforeRule"):i=this.raw(e,null,"beforeClose");let r=e.parent,o=0;for(;r&&r.type!=="root";)o+=1,r=r.parent;if(i.includes(`\n`)){let s=this.raw(e,null,"indent");if(s.length)for(let l=0;l<o;l++)i+=s}return i}block(e,n){let i=this.raw(e,"between","beforeOpen");this.builder(qe(n+i)+"{",e,"start");let r;e.nodes&&e.nodes.length?(this.body(e),r=this.raw(e,"after")):r=this.raw(e,"after","emptyBody"),r&&this.builder(qe(r)),this.builder("}",e,"end")}body(e){let n=e.nodes,i=n.length-1;for(;i>0&&n[i].type==="comment";)i-=1;let r=this.raw(e,"semicolon"),o=e.type==="document";for(let s=0;s<n.length;s++){let l=n[s],a=this.raw(l,"before");a&&this.builder(o?a:qe(a)),this.stringify(l,i!==s||r)}}comment(e){let n=this.raw(e,"left","commentLeft"),i=this.raw(e,"right","commentRight");this.builder(qe("/*"+n+e.text+i+"*/"),e)}decl(e,n){let i=e.raws,r=this.raw(e,"between","colon"),o=e.prop+r+this.rawValue(e,"value");e.important&&(o+=i.important||" !important"),n&&(o+=";"),this.builder(qe(o),e)}document(e){this.body(e)}raw(e,n,i){let r;if(i||(i=n),n&&(r=e.raws[n],typeof r<"u"))return r;let o=e.parent;if(i==="before"&&(!o||o.type==="root"&&o.first===e||o&&o.type==="document"))return"";if(!o)return Ur[i];let s=e.root(),l=s.rawCache||(s.rawCache={});if(typeof l[i]<"u")return l[i];if(i==="before"||i==="after")return this.beforeAfter(e,i);{let a="raw"+fl(i);this[a]?r=this[a](s,e):s.walk(c=>{if(r=c.raws[n],typeof r<"u")return!1})}return typeof r>"u"&&(r=Ur[i]),l[i]=r,r}rawBeforeClose(e){let n;return e.walk(i=>{if(i.nodes&&i.nodes.length>0&&typeof i.raws.after<"u")return n=i.raws.after,n.includes(`\n`)&&(n=n.replace(/[^\\n]+$/,"")),!1}),n&&(n=n.replace(/\\S/g,"")),n}rawBeforeComment(e,n){let i;return e.walkComments(r=>{if(typeof r.raws.before<"u")return i=r.raws.before,i.includes(`\n`)&&(i=i.replace(/[^\\n]+$/,"")),!1}),typeof i>"u"?i=this.raw(n,null,"beforeDecl"):i&&(i=i.replace(/\\S/g,"")),i}rawBeforeDecl(e,n){let i;return e.walkDecls(r=>{if(typeof r.raws.before<"u")return i=r.raws.before,i.includes(`\n`)&&(i=i.replace(/[^\\n]+$/,"")),!1}),typeof i>"u"?i=this.raw(n,null,"beforeRule"):i&&(i=i.replace(/\\S/g,"")),i}rawBeforeOpen(e){let n;return e.walk(i=>{if(i.type!=="decl"&&(n=i.raws.between,typeof n<"u"))return!1}),n}rawBeforeRule(e){let n;return e.walk(i=>{if(i.nodes&&(i.parent!==e||e.first!==i)&&typeof i.raws.before<"u")return n=i.raws.before,n.includes(`\n`)&&(n=n.replace(/[^\\n]+$/,"")),!1}),n&&(n=n.replace(/\\S/g,"")),n}rawColon(e){let n;return e.walkDecls(i=>{if(typeof i.raws.between<"u")return n=i.raws.between.replace(/[^\\s:]/g,""),!1}),n}rawEmptyBody(e){let n;return e.walk(i=>{if(i.nodes&&i.nodes.length===0&&(n=i.raws.after,typeof n<"u"))return!1}),n}rawIndent(e){if(e.raws.indent)return e.raws.indent;let n;return e.walk(i=>{let r=i.parent;if(r&&r!==e&&r.parent&&r.parent===e&&typeof i.raws.before<"u"){let o=i.raws.before.split(`\n`);return n=o[o.length-1],n=n.replace(/\\S/g,""),!1}}),n}rawSemicolon(e){let n;return e.walk(i=>{if(i.nodes&&i.nodes.length&&i.last.type==="decl"&&(n=i.raws.semicolon,typeof n<"u"))return!1}),n}rawValue(e,n){let i=e[n],r=e.raws[n];return r&&r.value===i?r.raw:i}root(e){if(this.body(e),e.raws.after){let n=e.raws.after,i=e.parent&&e.parent.type==="document";this.builder(i?n:qe(n))}}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(qe(e.raws.ownSemicolon),e,"end")}stringify(e,n){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,n)}};Vr.exports=Rt;Rt.default=Rt});var kt=Z((xm,zr)=>{"use strict";var ml=ti();function ni(t,e){new ml(e).stringify(t)}zr.exports=ni;ni.default=ni});var cn=Z((gm,ii)=>{"use strict";ii.exports.isClean=Symbol("isClean");ii.exports.my=Symbol("my")});var Pt=Z((ym,jr)=>{"use strict";var pl=un(),hl=ti(),xl=kt(),{isClean:Dt,my:gl}=cn();function ri(t,e){let n=new t.constructor;for(let i in t){if(!Object.prototype.hasOwnProperty.call(t,i)||i==="proxyCache")continue;let r=t[i],o=typeof r;i==="parent"&&o==="object"?e&&(n[i]=e):i==="source"?n[i]=r:Array.isArray(r)?n[i]=r.map(s=>ri(s,n)):(o==="object"&&r!==null&&(r=ri(r)),n[i]=r)}return n}function Ue(t,e){if(e&&typeof e.offset<"u")return e.offset;let n=1,i=1,r=0;for(let o=0;o<t.length;o++){if(i===e.line&&n===e.column){r=o;break}t[o]===`\n`?(n=1,i+=1):n+=1}return r}var It=class{get proxyOf(){return this}constructor(e={}){this.raws={},this[Dt]=!1,this[gl]=!0;for(let n in e)if(n==="nodes"){this.nodes=[];for(let i of e[n])typeof i.clone=="function"?this.append(i.clone()):this.append(i)}else this[n]=e[n]}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\\n\\s{4}at /.test(e.stack)){let n=this.source;e.stack=e.stack.replace(/\\n\\s{4}at /,`$&${n.input.from}:${n.start.line}:${n.start.column}$&`)}return e}after(e){return this.parent.insertAfter(this,e),this}assign(e={}){for(let n in e)this[n]=e[n];return this}before(e){return this.parent.insertBefore(this,e),this}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}clone(e={}){let n=ri(this);for(let i in e)n[i]=e[i];return n}cloneAfter(e={}){let n=this.clone(e);return this.parent.insertAfter(this,n),n}cloneBefore(e={}){let n=this.clone(e);return this.parent.insertBefore(this,n),n}error(e,n={}){if(this.source){let{end:i,start:r}=this.rangeBy(n);return this.source.input.error(e,{column:r.column,line:r.line},{column:i.column,line:i.line},n)}return new pl(e)}getProxyProcessor(){return{get(e,n){return n==="proxyOf"?e:n==="root"?()=>e.root().toProxy():e[n]},set(e,n,i){return e[n]===i||(e[n]=i,(n==="prop"||n==="value"||n==="name"||n==="params"||n==="important"||n==="text")&&e.markDirty()),!0}}}markClean(){this[Dt]=!0}markDirty(){if(this[Dt]){this[Dt]=!1;let e=this;for(;e=e.parent;)e[Dt]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e={}){let n=this.source.start;if(e.index)n=this.positionInside(e.index);else if(e.word){let i="document"in this.source.input?this.source.input.document:this.source.input.css,o=i.slice(Ue(i,this.source.start),Ue(i,this.source.end)).indexOf(e.word);o!==-1&&(n=this.positionInside(o))}return n}positionInside(e){let n=this.source.start.column,i=this.source.start.line,r="document"in this.source.input?this.source.input.document:this.source.input.css,o=Ue(r,this.source.start),s=o+e;for(let l=o;l<s;l++)r[l]===`\n`?(n=1,i+=1):n+=1;return{column:n,line:i,offset:s}}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}rangeBy(e={}){let n="document"in this.source.input?this.source.input.document:this.source.input.css,i={column:this.source.start.column,line:this.source.start.line,offset:Ue(n,this.source.start)},r=this.source.end?{column:this.source.end.column+1,line:this.source.end.line,offset:typeof this.source.end.offset=="number"?this.source.end.offset:Ue(n,this.source.end)+1}:{column:i.column+1,line:i.line,offset:i.offset+1};if(e.word){let s=n.slice(Ue(n,this.source.start),Ue(n,this.source.end)).indexOf(e.word);s!==-1&&(i=this.positionInside(s),r=this.positionInside(s+e.word.length))}else e.start?i={column:e.start.column,line:e.start.line,offset:Ue(n,e.start)}:e.index&&(i=this.positionInside(e.index)),e.end?r={column:e.end.column,line:e.end.line,offset:Ue(n,e.end)}:typeof e.endIndex=="number"?r=this.positionInside(e.endIndex):e.index&&(r=this.positionInside(e.index+1));return(r.line<i.line||r.line===i.line&&r.column<=i.column)&&(r={column:i.column+1,line:i.line,offset:i.offset+1}),{end:r,start:i}}raw(e,n){return new hl().raw(this,e,n)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...e){if(this.parent){let n=this,i=!1;for(let r of e)r===this?i=!0:i?(this.parent.insertAfter(n,r),n=r):this.parent.insertBefore(n,r);i||this.remove()}return this}root(){let e=this;for(;e.parent&&e.parent.type!=="document";)e=e.parent;return e}toJSON(e,n){let i={},r=n==null;n=n||new Map;let o=0;for(let s in this){if(!Object.prototype.hasOwnProperty.call(this,s)||s==="parent"||s==="proxyCache")continue;let l=this[s];if(Array.isArray(l))i[s]=l.map(a=>typeof a=="object"&&a.toJSON?a.toJSON(null,n):a);else if(typeof l=="object"&&l.toJSON)i[s]=l.toJSON(null,n);else if(s==="source"){if(l==null)continue;let a=n.get(l.input);a==null&&(a=o,n.set(l.input,o),o++),i[s]={end:l.end,inputId:a,start:l.start}}else i[s]=l}return r&&(i.inputs=[...n.keys()].map(s=>s.toJSON())),i}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=xl){e.stringify&&(e=e.stringify);let n="";return e(this,i=>{n+=i}),n}warn(e,n,i={}){let r={node:this};for(let o in i)r[o]=i[o];return e.warn(n,r)}};jr.exports=It;It.default=It});var Bt=Z((bm,qr)=>{"use strict";var yl=Pt(),Ot=class extends yl{constructor(e){super(e),this.type="comment"}};qr.exports=Ot;Ot.default=Ot});var Wt=Z((Sm,$r)=>{"use strict";var bl=Pt(),Ht=class extends bl{get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}constructor(e){e&&typeof e.value<"u"&&typeof e.value!="string"&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}};$r.exports=Ht;Ht.default=Ht});var $e=Z((Am,no)=>{"use strict";var Kr=Bt(),Jr=Wt(),Sl=Pt(),{isClean:Yr,my:Xr}=cn(),oi,Qr,Zr,si;function eo(t){return t.map(e=>(e.nodes&&(e.nodes=eo(e.nodes)),delete e.source,e))}function to(t){if(t[Yr]=!1,t.proxyOf.nodes)for(let e of t.proxyOf.nodes)to(e)}var De=class t extends Sl{get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}append(...e){for(let n of e){let i=this.normalize(n,this.last);for(let r of i)this.proxyOf.nodes.push(r)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let n of this.nodes)n.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let n=this.getIterator(),i,r;for(;this.indexes[n]<this.proxyOf.nodes.length&&(i=this.indexes[n],r=e(this.proxyOf.nodes[i],i),r!==!1);)this.indexes[n]+=1;return delete this.indexes[n],r}every(e){return this.nodes.every(e)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}getProxyProcessor(){return{get(e,n){return n==="proxyOf"?e:e[n]?n==="each"||typeof n=="string"&&n.startsWith("walk")?(...i)=>e[n](...i.map(r=>typeof r=="function"?(o,s)=>r(o.toProxy(),s):r)):n==="every"||n==="some"?i=>e[n]((r,...o)=>i(r.toProxy(),...o)):n==="root"?()=>e.root().toProxy():n==="nodes"?e.nodes.map(i=>i.toProxy()):n==="first"||n==="last"?e[n].toProxy():e[n]:e[n]},set(e,n,i){return e[n]===i||(e[n]=i,(n==="name"||n==="params"||n==="selector")&&e.markDirty()),!0}}}index(e){return typeof e=="number"?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,n){let i=this.index(e),r=this.normalize(n,this.proxyOf.nodes[i]).reverse();i=this.index(e);for(let s of r)this.proxyOf.nodes.splice(i+1,0,s);let o;for(let s in this.indexes)o=this.indexes[s],i<o&&(this.indexes[s]=o+r.length);return this.markDirty(),this}insertBefore(e,n){let i=this.index(e),r=i===0?"prepend":!1,o=this.normalize(n,this.proxyOf.nodes[i],r).reverse();i=this.index(e);for(let l of o)this.proxyOf.nodes.splice(i,0,l);let s;for(let l in this.indexes)s=this.indexes[l],i<=s&&(this.indexes[l]=s+o.length);return this.markDirty(),this}normalize(e,n){if(typeof e=="string")e=eo(Qr(e).nodes);else if(typeof e>"u")e=[];else if(Array.isArray(e)){e=e.slice(0);for(let r of e)r.parent&&r.parent.removeChild(r,"ignore")}else if(e.type==="root"&&this.type!=="document"){e=e.nodes.slice(0);for(let r of e)r.parent&&r.parent.removeChild(r,"ignore")}else if(e.type)e=[e];else if(e.prop){if(typeof e.value>"u")throw new Error("Value field is missed in node creation");typeof e.value!="string"&&(e.value=String(e.value)),e=[new Jr(e)]}else if(e.selector||e.selectors)e=[new si(e)];else if(e.name)e=[new oi(e)];else if(e.text)e=[new Kr(e)];else throw new Error("Unknown node type in node creation");return e.map(r=>(r[Xr]||t.rebuild(r),r=r.proxyOf,r.parent&&r.parent.removeChild(r),r[Yr]&&to(r),r.raws||(r.raws={}),typeof r.raws.before>"u"&&n&&typeof n.raws.before<"u"&&(r.raws.before=n.raws.before.replace(/\\S/g,"")),r.parent=this.proxyOf,r))}prepend(...e){e=e.reverse();for(let n of e){let i=this.normalize(n,this.first,"prepend").reverse();for(let r of i)this.proxyOf.nodes.unshift(r);for(let r in this.indexes)this.indexes[r]=this.indexes[r]+i.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);let n;for(let i in this.indexes)n=this.indexes[i],n>=e&&(this.indexes[i]=n-1);return this.markDirty(),this}replaceValues(e,n,i){return i||(i=n,n={}),this.walkDecls(r=>{n.props&&!n.props.includes(r.prop)||n.fast&&!r.value.includes(n.fast)||(r.value=r.value.replace(e,i))}),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each((n,i)=>{let r;try{r=e(n,i)}catch(o){throw n.addToError(o)}return r!==!1&&n.walk&&(r=n.walk(e)),r})}walkAtRules(e,n){return n?e instanceof RegExp?this.walk((i,r)=>{if(i.type==="atrule"&&e.test(i.name))return n(i,r)}):this.walk((i,r)=>{if(i.type==="atrule"&&i.name===e)return n(i,r)}):(n=e,this.walk((i,r)=>{if(i.type==="atrule")return n(i,r)}))}walkComments(e){return this.walk((n,i)=>{if(n.type==="comment")return e(n,i)})}walkDecls(e,n){return n?e instanceof RegExp?this.walk((i,r)=>{if(i.type==="decl"&&e.test(i.prop))return n(i,r)}):this.walk((i,r)=>{if(i.type==="decl"&&i.prop===e)return n(i,r)}):(n=e,this.walk((i,r)=>{if(i.type==="decl")return n(i,r)}))}walkRules(e,n){return n?e instanceof RegExp?this.walk((i,r)=>{if(i.type==="rule"&&e.test(i.selector))return n(i,r)}):this.walk((i,r)=>{if(i.type==="rule"&&i.selector===e)return n(i,r)}):(n=e,this.walk((i,r)=>{if(i.type==="rule")return n(i,r)}))}};De.registerParse=t=>{Qr=t};De.registerRule=t=>{si=t};De.registerAtRule=t=>{oi=t};De.registerRoot=t=>{Zr=t};no.exports=De;De.default=De;De.rebuild=t=>{t.type==="atrule"?Object.setPrototypeOf(t,oi.prototype):t.type==="rule"?Object.setPrototypeOf(t,si.prototype):t.type==="decl"?Object.setPrototypeOf(t,Jr.prototype):t.type==="comment"?Object.setPrototypeOf(t,Kr.prototype):t.type==="root"&&Object.setPrototypeOf(t,Zr.prototype),t[Xr]=!0,t.nodes&&t.nodes.forEach(e=>{De.rebuild(e)})}});var dn=Z((Em,ro)=>{"use strict";var io=$e(),ct=class extends io{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};ro.exports=ct;ct.default=ct;io.registerAtRule(ct)});var fn=Z((wm,ao)=>{"use strict";var Al=$e(),oo,so,rt=class extends Al{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new oo(new so,this,e).stringify()}};rt.registerLazyResult=t=>{oo=t};rt.registerProcessor=t=>{so=t};ao.exports=rt;rt.default=rt});var uo=Z((Cm,lo)=>{var El="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",wl=(t,e=21)=>(n=e)=>{let i="",r=n|0;for(;r--;)i+=t[Math.random()*t.length|0];return i},Cl=(t=21)=>{let e="",n=t|0;for(;n--;)e+=El[Math.random()*64|0];return e};lo.exports={nanoid:Cl,customAlphabet:wl}});var mn=Z(()=>{});var pn=Z(()=>{});var ai=Z(()=>{});var co=Z(()=>{});var ui=Z((km,po)=>{"use strict";var{existsSync:Fl,readFileSync:Ml}=co(),{dirname:li,join:Nl}=mn(),{SourceMapConsumer:fo,SourceMapGenerator:mo}=pn();function _l(t){return Buffer?Buffer.from(t,"base64").toString():window.atob(t)}var Gt=class{constructor(e,n){if(n.map===!1)return;n.unsafeMap&&(this.unsafeMap=!0),this.loadAnnotation(e),this.inline=this.startWith(this.annotation,"data:");let i=n.map?n.map.prev:void 0,r=this.loadMap(n.from,i);!this.mapFile&&n.from&&(this.mapFile=n.from),this.mapFile&&(this.root=li(this.mapFile)),r&&(this.text=r)}consumer(){return this.consumerCache||(this.consumerCache=new fo(this.json||this.text)),this.consumerCache}decodeInline(e){let n=/^data:application\\/json;charset=utf-?8;base64,/,i=/^data:application\\/json;base64,/,r=/^data:application\\/json;charset=utf-?8,/,o=/^data:application\\/json,/,s=e.match(r)||e.match(o);if(s)return decodeURIComponent(e.substr(s[0].length));let l=e.match(n)||e.match(i);if(l)return _l(e.substr(l[0].length));let a=e.slice(22);throw a=a.slice(0,a.indexOf(",")),new Error("Unsupported source map encoding "+a)}getAnnotationURL(e){return e.replace(/^\\/\\*\\s*# sourceMappingURL=/,"").trim()}isMap(e){return typeof e!="object"?!1:typeof e.mappings=="string"||typeof e._mappings=="string"||Array.isArray(e.sections)}loadAnnotation(e){let n=e.match(/\\/\\*\\s*# sourceMappingURL=/g);if(!n)return;let i=e.lastIndexOf(n.pop()),r=e.indexOf("*/",i);i>-1&&r>-1&&(this.annotation=this.getAnnotationURL(e.substring(i,r)))}loadFile(e,n,i){if(!(!i&&!this.unsafeMap&&!/\\.map$/i.test(e))&&(this.root=li(e),Fl(e)))return this.mapFile=e,Ml(e,"utf-8").toString().trim()}loadMap(e,n){if(n===!1)return!1;if(n){if(typeof n=="string")return n;if(typeof n=="function"){let i=n(e);if(i){let r=this.loadFile(i,e,!0);if(!r)throw new Error("Unable to load previous source map: "+i.toString());return r}}else{if(n instanceof fo)return mo.fromSourceMap(n).toString();if(n instanceof mo)return n.toString();if(this.isMap(n))return JSON.stringify(n);throw new Error("Unsupported previous source map format: "+n.toString())}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let i=this.annotation;e&&(i=Nl(li(e),i));let r=this.loadFile(i,e,!1);if(r)try{this.json=JSON.parse(r.replace(/^\\)]}\'[^\\n]*\\n/,""))}catch{return}return r}}}startWith(e,n){return e?e.substr(0,n.length)===n:!1}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}};po.exports=Gt;Gt.default=Gt});var Ut=Z((Dm,bo)=>{"use strict";var{nanoid:Tl}=uo(),{isAbsolute:fi,resolve:mi}=mn(),{SourceMapConsumer:Ll,SourceMapGenerator:vl}=pn(),{fileURLToPath:ho,pathToFileURL:hn}=ai(),xo=un(),Rl=ui(),ci=ei(),di=Symbol("lineToIndexCache"),kl=!!(Ll&&vl),go=!!(mi&&fi);function yo(t){if(t[di])return t[di];let e=t.css.split(`\n`),n=new Array(e.length),i=0;for(let r=0,o=e.length;r<o;r++)n[r]=i,i+=e[r].length+1;return t[di]=n,n}var dt=class{get from(){return this.file||this.id}constructor(e,n={}){if(e===null||typeof e>"u"||typeof e=="object"&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),this.css[0]==="\\uFEFF"||this.css[0]==="\\uFFFE"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,this.document=this.css,n.document&&(this.document=n.document.toString()),n.from&&(!go||/^\\w+:\\/\\//.test(n.from)||fi(n.from)?this.file=n.from:this.file=mi(n.from)),go&&kl){let i=new Rl(this.css,n);if(i.text){this.map=i;let r=i.consumer().file;!this.file&&r&&(this.file=this.mapResolve(r))}}this.file||(this.id="<input css "+Tl(6)+">"),this.map&&(this.map.file=this.from)}error(e,n,i,r={}){let o,s,l,a,c;if(n&&typeof n=="object"){let m=n,f=i;if(typeof m.offset=="number"){a=m.offset;let x=this.fromOffset(a);n=x.line,i=x.col}else n=m.line,i=m.column,a=this.fromLineAndColumn(n,i);if(typeof f.offset=="number"){l=f.offset;let x=this.fromOffset(l);s=x.line,o=x.col}else s=f.line,o=f.column,l=this.fromLineAndColumn(f.line,f.column)}else if(i)a=this.fromLineAndColumn(n,i);else{a=n;let m=this.fromOffset(a);n=m.line,i=m.col}let u=this.origin(n,i,s,o);return u?c=new xo(e,u.endLine===void 0?u.line:{column:u.column,line:u.line},u.endLine===void 0?u.column:{column:u.endColumn,line:u.endLine},u.source,u.file,r.plugin):c=new xo(e,s===void 0?n:{column:i,line:n},s===void 0?i:{column:o,line:s},this.css,this.file,r.plugin),c.input={column:i,endColumn:o,endLine:s,endOffset:l,line:n,offset:a,source:this.css},this.file&&(hn&&(c.input.url=hn(this.file).toString()),c.input.file=this.file),c}fromLineAndColumn(e,n){return yo(this)[e-1]+n-1}fromOffset(e){let n=yo(this),i=n[n.length-1],r=0;if(e>=i)r=n.length-1;else{let o=n.length-2,s;for(;r<o;)if(s=r+(o-r>>1),e<n[s])o=s-1;else if(e>=n[s+1])r=s+1;else{r=s;break}}return{col:e-n[r]+1,line:r+1}}mapResolve(e){return/^\\w+:\\/\\//.test(e)?e:mi(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,n,i,r){if(!this.map)return!1;let o=this.map.consumer(),s=o.originalPositionFor({column:n,line:e});if(!s.source)return!1;let l;typeof i=="number"&&(l=o.originalPositionFor({column:r,line:i}));let a;fi(s.source)?a=hn(s.source):a=new URL(s.source,this.map.consumer().sourceRoot||hn(this.map.mapFile));let c={column:s.column,endColumn:l&&l.column,endLine:l&&l.line,line:s.line,url:a.toString()};if(a.protocol==="file:")if(ho)c.file=ho(a);else throw new Error("file: protocol is not available in this PostCSS build");let u=o.sourceContentFor(s.source);return u&&(c.source=u),c}toJSON(){let e={};for(let n of["hasBOM","css","file","id"])this[n]!=null&&(e[n]=this[n]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}};bo.exports=dt;dt.default=dt;ci&&ci.registerInput&&ci.registerInput(dt)});var ft=Z((Im,wo)=>{"use strict";var So=$e(),Ao,Eo,Ke=class extends So{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}normalize(e,n,i){let r=super.normalize(e);if(n){if(i==="prepend")this.nodes.length>1?n.raws.before=this.nodes[1].raws.before:delete n.raws.before;else if(this.first!==n)for(let o of r)o.raws.before=n.raws.before}return r}removeChild(e,n){let i=this.index(e);return!n&&i===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[i].raws.before),super.removeChild(e)}toResult(e={}){return new Ao(new Eo,this,e).stringify()}};Ke.registerLazyResult=t=>{Ao=t};Ke.registerProcessor=t=>{Eo=t};wo.exports=Ke;Ke.default=Ke;So.registerRoot(Ke)});var pi=Z((Pm,Co)=>{"use strict";var Vt={comma(t){return Vt.split(t,[","],!0)},space(t){let e=[" ",`\n`," "];return Vt.split(t,e)},split(t,e,n){let i=[],r="",o=!1,s=0,l=!1,a="",c=!1;for(let u of t)c?c=!1:u==="\\\\"?c=!0:l?u===a&&(l=!1):u===\'"\'||u==="\'"?(l=!0,a=u):u==="("?s+=1:u===")"?s>0&&(s-=1):s===0&&e.includes(u)&&(o=!0),o?(r!==""&&i.push(r.trim()),r="",o=!1):r+=u;return(n||r!=="")&&i.push(r.trim()),i}};Co.exports=Vt;Vt.default=Vt});var xn=Z((Om,Mo)=>{"use strict";var Fo=$e(),Dl=pi(),mt=class extends Fo{get selectors(){return Dl.comma(this.selector)}set selectors(e){let n=this.selector?this.selector.match(/,\\s*/):null,i=n?n[0]:","+this.raw("between","beforeOpen");this.selector=e.join(i)}constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}};Mo.exports=mt;mt.default=mt;Fo.registerRule(mt)});var _o=Z((Bm,No)=>{"use strict";var Il=dn(),Pl=Bt(),Ol=Wt(),Bl=Ut(),Hl=ui(),Wl=ft(),Gl=xn();function zt(t,e){if(Array.isArray(t))return t.map(r=>zt(r));let{inputs:n,...i}=t;if(n){e=[];for(let r of n){let o={...r,__proto__:Bl.prototype};o.map&&(o.map={...o.map,__proto__:Hl.prototype}),e.push(o)}}if(i.nodes&&(i.nodes=t.nodes.map(r=>zt(r,e))),i.source){let{inputId:r,...o}=i.source;i.source=o,r!=null&&(i.source.input=e[r])}if(i.type==="root")return new Wl(i);if(i.type==="decl")return new Ol(i);if(i.type==="rule")return new Gl(i);if(i.type==="comment")return new Pl(i);if(i.type==="atrule")return new Il(i);throw new Error("Unknown node type: "+t.type)}No.exports=zt;zt.default=zt});var xi=Z((Hm,Do)=>{"use strict";var{dirname:gn,relative:Lo,resolve:vo,sep:Ro}=mn(),{SourceMapConsumer:ko,SourceMapGenerator:yn}=pn(),{pathToFileURL:To}=ai(),Ul=Ut(),Vl=!!(ko&&yn),zl=!!(gn&&vo&&Lo&&Ro),hi=class{constructor(e,n,i,r){this.stringify=e,this.mapOpts=i.map||{},this.root=n,this.opts=i,this.css=r,this.originalCSS=r,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let e;this.isInline()?e="data:application/json;base64,"+this.toBase64(this.map.toString()):typeof this.mapOpts.annotation=="string"?e=this.mapOpts.annotation:typeof this.mapOpts.annotation=="function"?e=this.mapOpts.annotation(this.opts.to,this.root):e=this.outputFile()+".map";let n=`\n`;this.css.includes(`\\r\n`)&&(n=`\\r\n`),this.css+=n+"/*# sourceMappingURL="+e+" */"}applyPrevMaps(){for(let e of this.previous()){let n=this.toUrl(this.path(e.file)),i=e.root||gn(e.file),r;this.mapOpts.sourcesContent===!1?(r=new ko(e.text),r.sourcesContent&&(r.sourcesContent=null)):r=e.consumer(),this.map.applySourceMap(r,n,this.toUrl(this.path(i)))}}clearAnnotation(){if(this.mapOpts.annotation!==!1){if(this.root){let e;for(let n=this.root.nodes.length-1;n>=0;n--)e=this.root.nodes[n],e.type==="comment"&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(n)}else if(this.css){let e;for(;(e=this.css.lastIndexOf("/*#"))!==-1;){let n=this.css.indexOf("*/",e+3);if(n===-1)break;for(;e>0&&this.css[e-1]===`\n`;)e--;this.css=this.css.slice(0,e)+this.css.slice(n+2)}}}}generate(){if(this.clearAnnotation(),zl&&Vl&&this.isMap())return this.generateMap();{let e="";return this.stringify(this.root,n=>{e+=n}),[e]}}generateMap(){if(this.root)this.generateString();else if(this.previous().length===1){let e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=yn.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new yn({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>"});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}generateString(){this.css="",this.map=new yn({file:this.outputFile(),ignoreInvalidMapping:!0});let e=1,n=1,i="<no source>",r={generated:{column:0,line:0},original:{column:0,line:0},source:""},o,s;this.stringify(this.root,(l,a,c)=>{if(this.css+=l,a&&c!=="end"&&(r.generated.line=e,r.generated.column=n-1,a.source&&a.source.start?(r.source=this.sourcePath(a),r.original.line=a.source.start.line,r.original.column=a.source.start.column-1,this.map.addMapping(r)):(r.source=i,r.original.line=1,r.original.column=0,this.map.addMapping(r))),s=l.match(/\\n/g),s?(e+=s.length,o=l.lastIndexOf(`\n`),n=l.length-o):n+=l.length,a&&c!=="start"){let u=a.parent||{raws:{}};(!(a.type==="decl"||a.type==="atrule"&&!a.nodes)||a!==u.last||u.raws.semicolon)&&(a.source&&a.source.end?(r.source=this.sourcePath(a),r.original.line=a.source.end.line,r.original.column=a.source.end.column-1,r.generated.line=e,r.generated.column=n-2,this.map.addMapping(r)):(r.source=i,r.original.line=1,r.original.column=0,r.generated.line=e,r.generated.column=n-1,this.map.addMapping(r)))}})}isAnnotation(){return this.isInline()?!0:typeof this.mapOpts.annotation<"u"?this.mapOpts.annotation:this.previous().length?this.previous().some(e=>e.annotation):!0}isInline(){if(typeof this.mapOpts.inline<"u")return this.mapOpts.inline;let e=this.mapOpts.annotation;return typeof e<"u"&&e!==!0?!1:this.previous().length?this.previous().some(n=>n.inline):!0}isMap(){return typeof this.opts.map<"u"?!!this.opts.map:this.previous().length>0}isSourcesContent(){return typeof this.mapOpts.sourcesContent<"u"?this.mapOpts.sourcesContent:this.previous().length?this.previous().some(e=>e.withContent()):!0}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(e){if(this.mapOpts.absolute||e.charCodeAt(0)===60||/^\\w+:\\/\\//.test(e))return e;let n=this.memoizedPaths.get(e);if(n)return n;let i=this.opts.to?gn(this.opts.to):".";typeof this.mapOpts.annotation=="string"&&(i=gn(vo(i,this.mapOpts.annotation)));let r=Lo(i,e);return this.memoizedPaths.set(e,r),r}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk(e=>{if(e.source&&e.source.input.map){let n=e.source.input.map;this.previousMaps.includes(n)||this.previousMaps.push(n)}});else{let e=new Ul(this.originalCSS,this.opts);e.map&&this.previousMaps.push(e.map)}return this.previousMaps}setSourcesContent(){let e={};if(this.root)this.root.walk(n=>{if(n.source){let i=n.source.input.from;if(i&&!e[i]){e[i]=!0;let r=this.usesFileUrls?this.toFileUrl(i):this.toUrl(this.path(i));this.map.setSourceContent(r,n.source.input.css)}}});else if(this.css){let n=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(n,this.css)}}sourcePath(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}toBase64(e){return Buffer?Buffer.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}toFileUrl(e){let n=this.memoizedFileURLs.get(e);if(n)return n;if(To){let i=To(e).toString();return this.memoizedFileURLs.set(e,i),i}else throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(e){let n=this.memoizedURLs.get(e);if(n)return n;Ro==="\\\\"&&(e=e.replace(/\\\\/g,"/"));let i=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,i),i}};Do.exports=hi});var Oo=Z((Wm,Po)=>{"use strict";var bn=/[\\t\\n\\f\\r "#\'()/;[\\\\\\]{}]/g,Sn=/[\\t\\n\\f\\r !"#\'():;@[\\\\\\]{}]|\\/(?=\\*)/g,jl=/.[\\r\\n"\'(/\\\\]/,Io=/[\\da-f]/i;Po.exports=function(e,n={}){let i=e.css.valueOf(),r=n.ignoreErrors,o,s,l,a,c,u,m,f,x,E,g=i.length,S=0,_=[],v=[],R=-1;function J(){return S}function O(F){throw e.error("Unclosed "+F,S)}function M(){return v.length===0&&S>=g}function b(F){if(v.length)return v.pop();if(S>=g)return;let N=F?F.ignoreUnclosed:!1;switch(o=i.charCodeAt(S),o){case 10:case 32:case 9:case 13:case 12:{a=S;do a+=1,o=i.charCodeAt(a);while(o===32||o===10||o===9||o===13||o===12);u=["space",i.slice(S,a)],S=a-1;break}case 91:case 93:case 123:case 125:case 58:case 59:case 41:{let T=String.fromCharCode(o);u=[T,T,S];break}case 40:{if(E=_.length?_.pop()[1]:"",x=i.charCodeAt(S+1),E==="url"&&x!==39&&x!==34&&x!==32&&x!==10&&x!==9&&x!==12&&x!==13){a=S;do{if(m=!1,a=i.indexOf(")",a+1),a===-1)if(r||N){a=S;break}else O("bracket");for(f=a;i.charCodeAt(f-1)===92;)f-=1,m=!m}while(m);u=["brackets",i.slice(S,a+1),S,a],S=a}else S<=R?u=["(","(",S]:(a=i.indexOf(")",S+1),s=i.slice(S,a+1),a===-1||jl.test(s)?(R=a===-1?g:a,u=["(","(",S]):(u=["brackets",s,S,a],S=a));break}case 39:case 34:{c=o===39?"\'":\'"\',a=S;do{if(m=!1,a=i.indexOf(c,a+1),a===-1)if(r||N){a=S+1;break}else O("string");for(f=a;i.charCodeAt(f-1)===92;)f-=1,m=!m}while(m);u=["string",i.slice(S,a+1),S,a],S=a;break}case 64:{bn.lastIndex=S+1,bn.test(i),bn.lastIndex===0?a=i.length-1:a=bn.lastIndex-2,u=["at-word",i.slice(S,a+1),S,a],S=a;break}case 92:{for(a=S,l=!0;i.charCodeAt(a+1)===92;)a+=1,l=!l;if(o=i.charCodeAt(a+1),l&&o!==47&&o!==32&&o!==10&&o!==9&&o!==13&&o!==12&&(a+=1,Io.test(i.charAt(a)))){for(;Io.test(i.charAt(a+1));)a+=1;i.charCodeAt(a+1)===32&&(a+=1)}u=["word",i.slice(S,a+1),S,a],S=a;break}default:{o===47&&i.charCodeAt(S+1)===42?(a=i.indexOf("*/",S+2)+1,a===0&&(r||N?a=i.length:O("comment")),u=["comment",i.slice(S,a+1),S,a],S=a):(Sn.lastIndex=S+1,Sn.test(i),Sn.lastIndex===0?a=i.length-1:a=Sn.lastIndex-2,u=["word",i.slice(S,a+1),S,a],_.push(u),S=a);break}}return S++,u}function w(F){v.push(F)}return{back:w,endOfFile:M,nextToken:b,position:J}}});var Go=Z((Gm,Wo)=>{"use strict";var ql=dn(),$l=Bt(),Kl=Wt(),Jl=ft(),Bo=xn(),Yl=Oo(),Ho={empty:!0,space:!0};function Xl(t){for(let e=t.length-1;e>=0;e--){let n=t[e],i=n[3]||n[2];if(i)return i}}var gi=class{constructor(e){this.input=e,this.root=new Jl,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let n=new ql;n.name=e[1].slice(1),n.name===""&&this.unnamedAtrule(n,e),this.init(n,e[2]);let i,r,o,s=!1,l=!1,a=[],c=[];for(;!this.tokenizer.endOfFile();){if(e=this.tokenizer.nextToken(),i=e[0],i==="("||i==="["?c.push(i==="("?")":"]"):i==="{"&&c.length>0?c.push("}"):i===c[c.length-1]&&c.pop(),c.length===0)if(i===";"){n.source.end=this.getPosition(e[2]),n.source.end.offset++,this.semicolon=!0;break}else if(i==="{"){l=!0;break}else if(i==="}"){if(a.length>0){for(o=a.length-1,r=a[o];r&&r[0]==="space";)r=a[--o];r&&(n.source.end=this.getPosition(r[3]||r[2]),n.source.end.offset++)}this.end(e);break}else a.push(e);else a.push(e);if(this.tokenizer.endOfFile()){s=!0;break}}n.raws.between=this.spacesAndCommentsFromEnd(a),a.length?(n.raws.afterName=this.spacesAndCommentsFromStart(a),this.raw(n,"params",a),s&&(e=a[a.length-1],n.source.end=this.getPosition(e[3]||e[2]),n.source.end.offset++,this.spaces=n.raws.between,n.raws.between="")):(n.raws.afterName="",n.params=""),l&&(n.nodes=[],this.current=n)}checkMissedSemicolon(e){let n=this.colon(e);if(n===!1)return;let i=0,r;for(let o=n-1;o>=0&&(r=e[o],!(r[0]!=="space"&&(i+=1,i===2)));o--);throw this.input.error("Missed semicolon",r[0]==="word"?r[3]+1:r[2])}colon(e){let n=0,i,r,o;for(let[s,l]of e.entries()){if(r=l,o=r[0],o==="("&&(n+=1),o===")"&&(n-=1),n===0&&o===":")if(!i)this.doubleColon(r);else{if(i[0]==="word"&&i[1]==="progid")continue;return s}i=r}return!1}comment(e){let n=new $l;this.init(n,e[2]),n.source.end=this.getPosition(e[3]||e[2]),n.source.end.offset++;let i=e[1].slice(2,-2);if(!i.trim())n.text="",n.raws.left=i,n.raws.right="";else{let r=i.match(/^(\\s*)([^]*\\S)(\\s*)$/);n.text=r[2],n.raws.left=r[1],n.raws.right=r[3]}}createTokenizer(){this.tokenizer=Yl(this.input)}decl(e,n){let i=new Kl;this.init(i,e[0][2]);let r=e[e.length-1];for(r[0]===";"&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(r[3]||r[2]||Xl(e)),i.source.end.offset++;e[0][0]!=="word";)e.length===1&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){let c=e[0][0];if(c===":"||c==="space"||c==="comment")break;i.prop+=e.shift()[1]}i.raws.between="";let o;for(;e.length;)if(o=e.shift(),o[0]===":"){i.raws.between+=o[1];break}else o[0]==="word"&&/\\w/.test(o[1])&&this.unknownWord([o]),i.raws.between+=o[1];(i.prop[0]==="_"||i.prop[0]==="*")&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));let s=[],l;for(;e.length&&(l=e[0][0],!(l!=="space"&&l!=="comment"));)s.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(o=e[c],o[1].toLowerCase()==="!important"){i.important=!0;let u=this.stringFrom(e,c);u=this.spacesFromEnd(e)+u,u!==" !important"&&(i.raws.important=u);break}else if(o[1].toLowerCase()==="important"){let u=e.slice(0),m="";for(let f=c;f>0;f--){let x=u[f][0];if(m.trim().startsWith("!")&&x!=="space")break;m=u.pop()[1]+m}m.trim().startsWith("!")&&(i.important=!0,i.raws.important=m,e=u)}if(o[0]!=="space"&&o[0]!=="comment")break}e.some(c=>c[0]!=="space"&&c[0]!=="comment")&&(i.raws.between+=s.map(c=>c[1]).join(""),s=[]),this.raw(i,"value",s.concat(e),n),i.value.includes(":")&&!n&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let n=new Bo;this.init(n,e[2]),n.selector="",n.raws.between="",this.current=n}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let n=this.current.nodes[this.current.nodes.length-1];n&&n.type==="rule"&&!n.raws.ownSemicolon&&(n.raws.ownSemicolon=this.spaces,this.spaces="",n.source.end=this.getPosition(e[2]),n.source.end.offset+=n.raws.ownSemicolon.length)}}getPosition(e){let n=this.input.fromOffset(e);return{column:n.col,line:n.line,offset:e}}init(e,n){this.current.push(e),e.source={input:this.input,start:this.getPosition(n)},e.raws.before=this.spaces,this.spaces="",e.type!=="comment"&&(this.semicolon=!1)}other(e){let n=!1,i=null,r=!1,o=null,s=[],l=e[1].startsWith("--"),a=[],c=e;for(;c;){if(i=c[0],a.push(c),i==="("||i==="[")o||(o=c),s.push(i==="("?")":"]");else if(l&&r&&i==="{")o||(o=c),s.push("}");else if(s.length===0)if(i===";")if(r){this.decl(a,l);return}else break;else if(i==="{"){this.rule(a);return}else if(i==="}"){this.tokenizer.back(a.pop()),n=!0;break}else i===":"&&(r=!0);else i===s[s.length-1]&&(s.pop(),s.length===0&&(o=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(n=!0),s.length>0&&this.unclosedBracket(o),n&&r){if(!l)for(;a.length&&(c=a[a.length-1][0],!(c!=="space"&&c!=="comment"));)this.tokenizer.back(a.pop());this.decl(a,l)}else this.unknownWord(a)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e);break}this.endFile()}precheckMissedSemicolon(){}raw(e,n,i,r){let o,s,l=i.length,a="",c=!0,u,m;for(let f=0;f<l;f+=1)o=i[f],s=o[0],s==="space"&&f===l-1&&!r?c=!1:s==="comment"?(m=i[f-1]?i[f-1][0]:"empty",u=i[f+1]?i[f+1][0]:"empty",!Ho[m]&&!Ho[u]?a.slice(-1)===","?c=!1:a+=o[1]:c=!1):a+=o[1];if(!c){let f=i.reduce((x,E)=>x+E[1],"");e.raws[n]={raw:f,value:a}}e[n]=a}rule(e){e.pop();let n=new Bo;this.init(n,e[0][2]),n.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(n,"selector",e),this.current=n}spacesAndCommentsFromEnd(e){let n,i="";for(;e.length&&(n=e[e.length-1][0],!(n!=="space"&&n!=="comment"));)i=e.pop()[1]+i;return i}spacesAndCommentsFromStart(e){let n,i="";for(;e.length&&(n=e[0][0],!(n!=="space"&&n!=="comment"));)i+=e.shift()[1];return i}spacesFromEnd(e){let n,i="";for(;e.length&&(n=e[e.length-1][0],n==="space");)i=e.pop()[1]+i;return i}stringFrom(e,n){let i="";for(let r=n;r<e.length;r++)i+=e[r][1];return e.splice(n,e.length-n),i}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word "+e[0][1],{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unnamedAtrule(e,n){throw this.input.error("At-rule without name",{offset:n[2]},{offset:n[2]+n[1].length})}};Wo.exports=gi});var En=Z((Um,Uo)=>{"use strict";var Ql=$e(),Zl=Ut(),eu=Go();function An(t,e){let n=new Zl(t,e),i=new eu(n);try{i.parse()}catch(r){throw r}return i.root}Uo.exports=An;An.default=An;Ql.registerParse(An)});var yi=Z((Vm,Vo)=>{"use strict";var jt=class{constructor(e,n={}){if(this.type="warning",this.text=e,n.node&&n.node.source){let i=n.node.rangeBy(n);this.line=i.start.line,this.column=i.start.column,this.endLine=i.end.line,this.endColumn=i.end.column}for(let i in n)this[i]=n[i]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};Vo.exports=jt;jt.default=jt});var wn=Z((zm,zo)=>{"use strict";var tu=yi(),qt=class{get content(){return this.css}constructor(e,n,i){this.processor=e,this.messages=[],this.root=n,this.opts=i,this.css="",this.map=void 0}toString(){return this.css}warn(e,n={}){n.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(n.plugin=this.lastPlugin.postcssPlugin);let i=new tu(e,n);return this.messages.push(i),i}warnings(){return this.messages.filter(e=>e.type==="warning")}};zo.exports=qt;qt.default=qt});var bi=Z((jm,qo)=>{"use strict";var jo={};qo.exports=function(e){jo[e]||(jo[e]=!0,typeof console<"u"&&console.warn&&console.warn(e))}});var Ei=Z(($m,Yo)=>{"use strict";var nu=$e(),iu=fn(),ru=xi(),ou=En(),$o=wn(),su=ft(),au=kt(),{isClean:We,my:lu}=cn(),qm=bi(),uu={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},cu={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},du={Once:!0,postcssPlugin:!0,prepare:!0},pt=0;function $t(t){return typeof t=="object"&&typeof t.then=="function"}function Jo(t){let e=!1,n=uu[t.type];return t.type==="decl"?e=t.prop.toLowerCase():t.type==="atrule"&&(e=t.name.toLowerCase()),e&&t.append?[n,n+"-"+e,pt,n+"Exit",n+"Exit-"+e]:e?[n,n+"-"+e,n+"Exit",n+"Exit-"+e]:t.append?[n,pt,n+"Exit"]:[n,n+"Exit"]}function Ko(t){let e;return t.type==="document"?e=["Document",pt,"DocumentExit"]:t.type==="root"?e=["Root",pt,"RootExit"]:e=Jo(t),{eventIndex:0,events:e,iterator:0,node:t,visitorIndex:0,visitors:[]}}function Si(t){return t[We]=!1,t.nodes&&t.nodes.forEach(e=>Si(e)),t}var Ai={},Je=class t{get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}constructor(e,n,i){this.stringified=!1,this.processed=!1;let r;if(typeof n=="object"&&n!==null&&(n.type==="root"||n.type==="document"))r=Si(n);else if(n instanceof t||n instanceof $o)r=Si(n.root),n.map&&(typeof i.map>"u"&&(i.map={}),i.map.inline||(i.map.inline=!1),i.map.prev=n.map);else{let o=ou;i.syntax&&(o=i.syntax.parse),i.parser&&(o=i.parser),o.parse&&(o=o.parse);try{r=o(n,i)}catch(s){this.processed=!0,this.error=s}r&&!r[lu]&&nu.rebuild(r)}this.result=new $o(e,r,i),this.helpers={...Ai,postcss:Ai,result:this.result},this.plugins=this.processor.plugins.map(o=>typeof o=="object"&&o.prepare?{...o,...o.prepare(this.result)}:o)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,n){let i=this.result.lastPlugin;try{n&&n.addToError(e),this.error=e,e.name==="CssSyntaxError"&&!e.plugin?(e.plugin=i.postcssPlugin,e.setMessage()):i.postcssVersion}catch(r){console&&console.error&&console.error(r)}return e}prepareVisitors(){this.listeners={};let e=(n,i,r)=>{this.listeners[i]||(this.listeners[i]=[]),this.listeners[i].push([n,r])};for(let n of this.plugins)if(typeof n=="object")for(let i in n){if(!cu[i]&&/^[A-Z]/.test(i))throw new Error(`Unknown event ${i} in ${n.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!du[i])if(typeof n[i]=="object")for(let r in n[i])r==="*"?e(n,i,n[i][r]):e(n,i+"-"+r.toLowerCase(),n[i][r]);else typeof n[i]=="function"&&e(n,i,n[i])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let n=this.plugins[e],i=this.runOnRoot(n);if($t(i))try{await i}catch(r){throw this.handleError(r)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[We];){e[We]=!0;let n=[Ko(e)];for(;n.length>0;){let i=this.visitTick(n);if($t(i))try{await i}catch(r){let o=n[n.length-1].node;throw this.handleError(r,o)}}}if(this.listeners.OnceExit)for(let[n,i]of this.listeners.OnceExit){this.result.lastPlugin=n;try{if(e.type==="document"){let r=e.nodes.map(o=>i(o,this.helpers));await Promise.all(r)}else await i(e,this.helpers)}catch(r){throw this.handleError(r)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if(typeof e=="object"&&e.Once){if(this.result.root.type==="document"){let n=this.result.root.nodes.map(i=>e.Once(i,this.helpers));return $t(n[0])?Promise.all(n):n}return e.Once(this.result.root,this.helpers)}else if(typeof e=="function")return e(this.result.root,this.result)}catch(n){throw this.handleError(n)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,n=au;e.syntax&&(n=e.syntax.stringify),e.stringifier&&(n=e.stringifier),n.stringify&&(n=n.stringify);let i=this.result.root.source;if(e.map===void 0&&!(i&&i.input&&i.input.map)){let s="";return n(this.result.root,l=>{s+=l}),this.result.css=s,this.result}let o=new ru(n,this.result.root,this.result.opts).generate();return this.result.css=o[0],this.result.map=o[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){let n=this.runOnRoot(e);if($t(n))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[We];)e[We]=!0,this.walkSync(e);if(this.listeners.OnceExit)if(e.type==="document")for(let n of e.nodes)this.visitSync(this.listeners.OnceExit,n);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,n){return this.async().then(e,n)}toString(){return this.css}visitSync(e,n){for(let[i,r]of e){this.result.lastPlugin=i;let o;try{o=r(n,this.helpers)}catch(s){throw this.handleError(s,n.proxyOf)}if(n.type!=="root"&&n.type!=="document"&&!n.parent)return!0;if($t(o))throw this.getAsyncError()}}visitTick(e){let n=e[e.length-1],{node:i,visitors:r}=n;if(i.type!=="root"&&i.type!=="document"&&!i.parent){e.pop();return}if(r.length>0&&n.visitorIndex<r.length){let[s,l]=r[n.visitorIndex];n.visitorIndex+=1,n.visitorIndex===r.length&&(n.visitors=[],n.visitorIndex=0),this.result.lastPlugin=s;try{return l(i.toProxy(),this.helpers)}catch(a){throw this.handleError(a,i)}}if(n.iterator!==0){let s=n.iterator,l;for(;l=i.nodes[i.indexes[s]];)if(i.indexes[s]+=1,!l[We]){l[We]=!0,e.push(Ko(l));return}n.iterator=0,delete i.indexes[s]}let o=n.events;for(;n.eventIndex<o.length;){let s=o[n.eventIndex];if(n.eventIndex+=1,s===pt){i.nodes&&i.nodes.length&&(i[We]=!0,n.iterator=i.getIterator());return}else if(this.listeners[s]){n.visitors=this.listeners[s];return}}e.pop()}walkSync(e){e[We]=!0;let n=Jo(e);for(let i of n)if(i===pt)e.nodes&&e.each(r=>{r[We]||this.walkSync(r)});else{let r=this.listeners[i];if(r&&this.visitSync(r,e.toProxy()))return}}warnings(){return this.sync().warnings()}};Je.registerPostcss=t=>{Ai=t};Yo.exports=Je;Je.default=Je;su.registerLazyResult(Je);iu.registerLazyResult(Je)});var Qo=Z((Jm,Xo)=>{"use strict";var fu=xi(),mu=En(),pu=wn(),hu=kt(),Km=bi(),Kt=class{get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,n=mu;try{e=n(this._css,this._opts)}catch(i){this.error=i}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}constructor(e,n,i){n=n.toString(),this.stringified=!1,this._processor=e,this._css=n,this._opts=i,this._map=void 0;let r=hu;this.result=new pu(this._processor,void 0,this._opts),this.result.css=n;let o=this;Object.defineProperty(this.result,"root",{get(){return o.root}});let s=new fu(r,void 0,this._opts,n);if(s.isMap()){let[l,a]=s.generate();l&&(this.result.css=l),a&&(this.result.map=a)}else s.clearAnnotation(),this.result.css=s.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,n){return this.async().then(e,n)}toString(){return this._css}warnings(){return[]}};Xo.exports=Kt;Kt.default=Kt});var es=Z((Ym,Zo)=>{"use strict";var xu=fn(),gu=Ei(),yu=Qo(),bu=ft(),ot=class{constructor(e=[]){this.version="8.5.14",this.plugins=this.normalize(e)}normalize(e){let n=[];for(let i of e)if(i.postcss===!0?i=i():i.postcss&&(i=i.postcss),typeof i=="object"&&Array.isArray(i.plugins))n=n.concat(i.plugins);else if(typeof i=="object"&&i.postcssPlugin)n.push(i);else if(typeof i=="function")n.push(i);else if(!(typeof i=="object"&&(i.parse||i.stringify)))throw new Error(i+" is not a PostCSS plugin");return n}process(e,n={}){return!this.plugins.length&&!n.parser&&!n.stringifier&&!n.syntax?new yu(this,e,n):new gu(this,e,n)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}};Zo.exports=ot;ot.default=ot;bu.registerProcessor(ot);xu.registerProcessor(ot)});var ls=Z((Xm,as)=>{"use strict";var ts=dn(),ns=Bt(),Su=$e(),Au=un(),is=Wt(),rs=fn(),Eu=_o(),wu=Ut(),Cu=Ei(),Fu=pi(),Mu=Pt(),Nu=En(),wi=es(),_u=wn(),os=ft(),ss=xn(),Tu=kt(),Lu=yi();function le(...t){return t.length===1&&Array.isArray(t[0])&&(t=t[0]),new wi(t)}le.plugin=function(e,n){let i=!1;function r(...s){console&&console.warn&&!i&&(i=!0,console.warn(e+`: postcss.plugin was deprecated. Migration guide:\nhttps://evilmartians.com/chronicles/postcss-8-plugin-migration`),process.env.LANG&&process.env.LANG.startsWith("cn")&&console.warn(e+`: \\u91CC\\u9762 postcss.plugin \\u88AB\\u5F03\\u7528. \\u8FC1\\u79FB\\u6307\\u5357:\nhttps://www.w3ctech.com/topic/2226`));let l=n(...s);return l.postcssPlugin=e,l.postcssVersion=new wi().version,l}let o;return Object.defineProperty(r,"postcss",{get(){return o||(o=r()),o}}),r.process=function(s,l,a){return le([r(a)]).process(s,l)},r};le.stringify=Tu;le.parse=Nu;le.fromJSON=Eu;le.list=Fu;le.comment=t=>new ns(t);le.atRule=t=>new ts(t);le.decl=t=>new is(t);le.rule=t=>new ss(t);le.root=t=>new os(t);le.document=t=>new rs(t);le.CssSyntaxError=Au;le.Declaration=is;le.Container=Su;le.Processor=wi;le.Document=rs;le.Comment=ns;le.Warning=Lu;le.AtRule=ts;le.Result=_u;le.Input=wu;le.Rule=ss;le.Root=os;le.Node=Mu;Cu.registerPostcss(le);as.exports=le;le.default=le});function an(){return globalThis}function L(t,e){if(typeof window>"u")return;let n=an(),i=n.__hf?.onSwallowed;if(i)try{i({label:t,error:e})}catch(r){}(n.__hfDebug||n.__HYPERFRAMES_DEBUG)&&console.debug(`[hyperframes] ${t} swallowed:`,e)}function Ee(t){try{window.parent.postMessage(t,"*")}catch(e){L("bridge.postMessage",e)}}var Ra={play:(t,e)=>e.onPlay(),pause:(t,e)=>e.onPause(),"stop-media":(t,e)=>e.onStopMedia(),seek:(t,e)=>e.onSeek(Number(t.frame??0),t.seekMode??"commit"),tick:(t,e)=>e.onTick(),"set-muted":(t,e)=>e.onSetMuted(!!t.muted),"set-volume":(t,e)=>e.onSetVolume(Math.max(0,Math.min(1,Number(t.volume??1)))),"set-media-output-muted":(t,e)=>e.onSetMediaOutputMuted(!!t.muted),"set-native-media-sync-disabled":(t,e)=>e.onSetNativeMediaSyncDisabled(!!t.disabled),"set-web-audio-media-disabled":(t,e)=>e.onSetWebAudioMediaDisabled(!!t.disabled),"set-playback-rate":(t,e)=>e.onSetPlaybackRate(Number(t.playbackRate??1)),"set-color-grading":(t,e)=>e.onSetColorGrading(t.target??null,t.grading??null),"set-color-grading-compare":(t,e)=>e.onSetColorGradingCompare(t.target??null,t.compare??null),"enable-pick-mode":(t,e)=>e.onEnablePickMode(),"disable-pick-mode":(t,e)=>e.onDisablePickMode(),"flash-elements":t=>ka(t)};function ka(t){let e=t.selectors,n=t.duration||800;e&&Da(e,n)}function nr(t){let e=n=>{let i=n.data;if(!i||i.source!=="hf-parent"||i.type!=="control")return;let r=i.action;if(typeof r!="string")return;let o=Ra[r];o&&o(i,t)};return window.addEventListener("message",e),Ee({source:"hf-preview",type:"ready"}),e}function Da(t,e){if(!document.getElementById("__hf-flash-styles")){let n=document.createElement("style");n.id="__hf-flash-styles",n.textContent=`\n .__hf-flash {\n outline: 2px solid rgba(59, 130, 246, 0.6) !important;\n outline-offset: 2px !important;\n animation: __hf-flash-pulse ${e}ms ease-out forwards !important;\n }\n @keyframes __hf-flash-pulse {\n 0% { outline-color: rgba(59, 130, 246, 0.8); }\n 100% { outline-color: transparent; }\n }\n `,document.head.appendChild(n)}for(let n of t)try{document.querySelectorAll(n).forEach(r=>{r.classList.add("__hf-flash"),setTimeout(()=>r.classList.remove("__hf-flash"),e)})}catch(i){L("bridge.flashElements.querySelector",i)}}var zn=null;function ir(t){zn=t}function wt(t,e){if(zn)try{zn({source:"hf-preview",type:"analytics",event:t,properties:e??{}})}catch(n){L("runtime.analytics.site1",n)}}function rr(t){let e=[],n=l=>{if(typeof l.getAnimations!="function")return[];try{return l.getAnimations()}catch{return[]}},i=(l,a)=>{for(let c of l){try{c.currentTime=a}catch(u){L("runtime.adapters.css.site1",u)}try{c.pause()}catch(u){L("runtime.adapters.css.site2",u)}}},r=l=>{for(let a of l)try{a.play()}catch(c){L("runtime.adapters.css.site3",c)}},o=l=>{for(let a of l)try{a.pause()}catch(c){L("runtime.adapters.css.site4",c)}},s=l=>{l.baseDelay?l.el.style.animationDelay=l.baseDelay:l.el.style.removeProperty("animation-delay"),l.basePlayState?l.el.style.animationPlayState=l.basePlayState:l.el.style.removeProperty("animation-play-state")};return{name:"css",discover:()=>{e=[];let l=document.querySelectorAll("*");for(let a of l){if(!(a instanceof HTMLElement))continue;let c=window.getComputedStyle(a);!c.animationName||c.animationName==="none"||e.push({el:a,baseDelay:a.style.animationDelay||"",basePlayState:a.style.animationPlayState||""})}},seek:l=>{let a=Number(l.time)||0;for(let c of e){if(!c.el.isConnected)continue;let u=t?.resolveStartSeconds?t.resolveStartSeconds(c.el):Number.parseFloat(c.el.getAttribute("data-start")??"0")||0,m=Math.max(0,a-u)*1e3,f=n(c.el);if(f.length>0){i(f,m);continue}c.el.style.animationPlayState="paused",c.el.style.animationDelay=`-${(m/1e3).toFixed(3)}s`}},pause:()=>{for(let l of e){if(!l.el.isConnected)continue;let a=n(l.el);a.length>0&&o(a),s(l)}},play:()=>{for(let l of e)l.el.isConnected&&(s(l),r(n(l.el)))},revert:()=>{e=[]}}}function or(t){return{name:"gsap",discover:()=>{},seek:e=>{let n=t.getTimeline();if(!n)return;n.pause();let i=Math.max(0,Number(e.time)||0);typeof n.totalTime=="function"?(n.totalTime(i+.001,!0),n.totalTime(i,!1)):n.seek(i,!1)},pause:()=>{let e=t.getTimeline();e&&e.pause()}}}function sr(){return{name:"animejs",discover:()=>{try{let t=window.anime;if(!t||typeof t.running>"u")return;let e=t.running;if(!Array.isArray(e)||e.length===0)return;let n=window.__hfAnime??[],i=new Set(n);for(let r of e)i.has(r)||n.push(r);window.__hfAnime=n}catch(t){L("runtime.adapters.animejs.site1",t)}},seek:t=>{let e=Math.max(0,(Number(t.time)||0)*1e3),n=window.__hfAnime;if(!(!n||n.length===0))for(let i of n)try{typeof i.seek=="function"&&i.seek(e)}catch(r){L("runtime.adapters.animejs.site2",r)}},pause:()=>{let t=window.__hfAnime;if(!(!t||t.length===0))for(let e of t)try{typeof e.pause=="function"&&e.pause()}catch(n){L("runtime.adapters.animejs.site3",n)}},play:()=>{let t=window.__hfAnime;if(!(!t||t.length===0))for(let e of t)try{typeof e.play=="function"&&e.play()}catch(n){L("runtime.adapters.animejs.site4",n)}},revert:()=>{}}}function ur(){return{name:"lottie",discover:()=>{try{let t=window.lottie;if(t&&typeof t.getRegisteredAnimations=="function"){let e=t.getRegisteredAnimations();if(Array.isArray(e)&&e.length>0){let n=window.__hfLottie??[],i=new Set(n);for(let r of e)i.has(r)||n.push(r);window.__hfLottie=n}}}catch(t){L("runtime.adapters.lottie.site1",t)}},seek:t=>{let e=Math.max(0,Number(t.time)||0),n=window.__hfLottie;if(!(!n||n.length===0))for(let i of n)try{if(ar(i))i.goToAndStop(e*1e3,!1);else if(lr(i)){if(typeof i.setCurrentRawFrameValue=="function"){let r=i.totalFrames??0,o=i.frameRate??30,s=e*o;r>0&&i.setCurrentRawFrameValue(Math.min(s,r-1))}else if(typeof i.seek=="function"){let r=i.duration??1,o=Math.min(100,e/r*100);i.seek(o)}}}catch(r){L("runtime.adapters.lottie.site2",r)}},pause:()=>{let t=window.__hfLottie;if(!(!t||t.length===0))for(let e of t)try{(ar(e)||lr(e))&&e.pause()}catch(n){L("runtime.adapters.lottie.site3",n)}},revert:()=>{}}}function ar(t){return typeof t=="object"&&t!==null&&typeof t.goToAndStop=="function"}function lr(t){return typeof t=="object"&&t!==null&&typeof t.pause=="function"&&("totalFrames"in t||"duration"in t)}var jn=-1;function ln(t){if(t!==jn){jn=t;try{window.dispatchEvent(new CustomEvent("hf-seek",{detail:{time:t}}))}catch(e){L("runtime.adapters.seek-dispatch.site1",e)}}}function cr(t){jn=t;try{window.dispatchEvent(new CustomEvent("hf-seek",{detail:{time:t}}))}catch(e){L("runtime.adapters.seek-dispatch.force",e)}}function dr(){let t=null,e=0,n=null,i=null,r=null,o=null,s=()=>{if(typeof window>"u")return null;let u=window.THREE?.DefaultLoadingManager;return!u||typeof u!="object"||typeof u.itemsLoaded!="number"||typeof u.itemsTotal!="number"?null:u},l=c=>{o||c.itemsTotal<=c.itemsLoaded||(o=new Promise(u=>{c.onLoad=function(){try{r?.call(this)}finally{o=null,c.onLoad=r??null,u()}}}))},a=c=>{n!==c&&(n=c,i=c.onStart??null,r=c.onLoad??null,c.onStart=function(u,m,f){try{i?.call(this,u,m,f)}finally{l(c)}})};return{name:"three",discover:()=>{let c=s();c&&(a(c),l(c))},seek:c=>{t=Math.max(0,Number(c.time)||0),e=t,window.__hfThreeTime=t,ln(t)},pause:()=>{t==null&&(t=Math.max(0,e))},play:()=>{t=null},revert:()=>{t=null,e=0},getReadyPromise:()=>{let c=s();return!c||c.itemsTotal<=c.itemsLoaded?null:(o||l(c),o)}}}function He(t){let e=null,n=new WeakSet;return{name:t.name,discover:()=>{},seek:()=>{},pause:()=>{},play:()=>{},revert:()=>{},getReadyPromise:()=>{let i=t.getInstances();if(i.length===0)return null;let r=i.filter(o=>!n.has(o));return r.length===0?null:e||(e=Promise.allSettled(r.map(o=>t.waitFor(o).then(()=>{n.add(o)}))).then(()=>{e=null}),e)}}}function fr(){return He({name:"mapbox",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfMapbox;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>{if(t.loaded()){e();return}t.on("load",e)})})}function mr(){return He({name:"leaflet",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfLeaflet;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>t.whenReady(e))})}function pr(){return He({name:"google-maps",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfGoogleMaps;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>{let n=t.addListener("tilesloaded",()=>{n.remove(),e()})})})}function hr(){return He({name:"maplibre",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfMaplibre;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>{if(t.loaded()){e();return}t.on("load",e)})})}function xr(){return He({name:"d3",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfD3;return Array.isArray(t)?t:[]},waitFor:t=>t.end()})}function gr(){let t=null,e=0;return{name:"typegpu",discover:()=>{},seek:n=>{t=Math.max(0,Number(n.time)||0),e=t,window.__hfTypegpuTime=t,ln(t)},pause:()=>{t==null&&(t=Math.max(0,e))},play:()=>{t=null},revert:()=>{t=null,e=0}}}function yr(t){let e=t.nextElementSibling;if(e instanceof HTMLImageElement&&e.classList.contains("__render_frame__")&&e.complete&&e.naturalWidth>0)return e;if(t.id){let n=document.getElementById(`__render_frame_${t.id}__`);if(n instanceof HTMLImageElement&&n.complete&&n.naturalWidth>0)return n}return null}function br(){let t=globalThis.GPUQueue;if(!t?.prototype?.copyExternalImageToTexture)return;let e=t.prototype.copyExternalImageToTexture;t.prototype.copyExternalImageToTexture=function(n,i,r){if(n?.source instanceof HTMLVideoElement){let o=yr(n.source);if(o)return e.call(this,{...n,source:o},i,r)}return e.call(this,n,i,r)}}function Sr(){let t=[globalThis.WebGL2RenderingContext,globalThis.WebGLRenderingContext],e=["texImage2D","texSubImage2D"];for(let n of t){let i=n?.prototype;if(i)for(let r of e){let o=i[r];if(typeof o!="function"||o.__hfVideoPatched)continue;let s=function(...l){let a=l.length-1,c=l[a];if(c instanceof HTMLVideoElement){let u=yr(c);u&&(l[a]=u)}return o.apply(this,l)};s.__hfVideoPatched=!0,i[r]=s}}}function Ar(){let t=!1,e=0,n=new WeakMap,i=()=>{if(!document.getAnimations)return[];try{return document.getAnimations()}catch{return[]}},r=l=>{let a=Number(l.currentTime);return Number.isFinite(a)&&a>0?a:0},o=(l,a)=>a<=0?l:l>=a?Math.max(0,l-a):l,s=(l,a)=>{let c=n.get(l);if(c)return c;let u={compositionTimeMs:a,animationTimeMs:t?o(r(l),a):r(l)};return n.set(l,u),u};return{name:"waapi",discover:()=>{t=!0;for(let l of i())s(l,e)},seek:l=>{let a=Math.max(0,(Number(l.time)||0)*1e3);e=a;for(let c of i()){let u=t?s(c,a):s(c,0),m=u.animationTimeMs+Math.max(0,a-u.compositionTimeMs);try{c.currentTime=m}catch(f){L("runtime.adapters.waapi.site1",f)}try{c.pause()}catch(f){L("runtime.adapters.waapi.site2",f)}}},pause:()=>{if(document.getAnimations)for(let l of document.getAnimations())try{l.pause()}catch(a){L("runtime.adapters.waapi.site3",a)}}}}function Er(t,e){if(t.length===0)return 1;let n=0;for(;n<t.length-2&&e>=t[n+1].time;)n+=1;let i=t[n],r=t[n+1]??i,o=r.time-i.time,s=o<=0?0:Math.min(1,Math.max(0,(e-i.time)/o));return i.volume+(r.volume-i.volume)*s}function Ia(t,e,n,i){let r=Number.parseFloat(t.dataset.start??"0")||0,o=Number.parseFloat(t.dataset.end??""),s=Number.parseFloat(t.dataset.duration??""),l=Number.isFinite(o)&&o>r?o:Number.isFinite(s)&&s>0?r+s:n,a=Number.parseFloat(t.dataset.volume??""),c=Number.isFinite(a)?Math.max(0,Math.min(1,a)):1;t.volume=c;let u=1/Math.min(60,Math.max(1,i)),m=Math.max(0,r),f=Math.min(n,l),x=[];for(let g=m;g<=f+1e-6;g+=u){let S=Math.min(f,g);e(S);let _=Number(t.volume);if(!Number.isFinite(_))continue;let v=Math.max(0,Math.min(1,_)),R=x.at(-1);if((!R||Math.abs(R.volume-v)>1e-4||S===f)&&x.push({time:Number(S.toFixed(6)),volume:Number(v.toFixed(6))}),S===f)break}return x.some(g=>Math.abs(g.volume-c)>1e-4)?x:null}function wr(t,e,n,i){if(!e||!(t instanceof HTMLAudioElement)&&!(t instanceof HTMLVideoElement)||n<=0)return;let o=Ia(t,s=>{try{typeof e.totalTime=="function"?e.totalTime(s,!0):typeof e.seek=="function"&&e.seek(s,!0)}catch{}},n,60);o&&i.set(t,o)}function Mt(t){let e=t.defaultPlaybackRate;return Number.isFinite(e)&&e>0?Math.max(.1,Math.min(5,e)):1}function Cr(t){let e=Array.from(document.querySelectorAll("video, audio")),n=t?.shouldIncludeElement?e.filter(s=>t.shouldIncludeElement?.(s)):e.filter(s=>s.hasAttribute("data-start")),i=[],r=[],o=0;for(let s of n){let l=t?.resolveStartSeconds?t.resolveStartSeconds(s):Number.parseFloat(s.dataset.start??"0");if(!Number.isFinite(l))continue;let a=Number.parseFloat(s.dataset.playbackStart??s.dataset.mediaStart??"0")||0,c=Mt(s),u=s.loop,m=Number.isFinite(s.duration)&&s.duration>0?s.duration:null,f=t?.resolveDurationSeconds?.(s)??Number.parseFloat(s.dataset.duration??"");(!Number.isFinite(f)||f<=0)&&m!=null&&(f=Math.max(0,(m-a)/c));let x=Number.isFinite(f)&&f>0?l+f:Number.POSITIVE_INFINITY,E=Number.parseFloat(s.dataset.volume??""),g={el:s,start:l,mediaStart:a,duration:Number.isFinite(f)&&f>0?f:Number.POSITIVE_INFINITY,end:x,volume:Number.isFinite(E)?E:null,playbackRate:c,loop:u,sourceDuration:m};i.push(g),s.tagName==="VIDEO"&&r.push(g),Number.isFinite(x)&&(o=Math.max(o,x))}return{timedMediaEls:n,mediaClips:i,videoClips:r,maxMediaEnd:o}}var qn=new WeakMap,Ct=new WeakMap,$n=new WeakSet,lt=new WeakSet;function Pa(t){if(lt.has(t))return;lt.add(t);let e=()=>lt.delete(t);t.addEventListener("playing",e,{once:!0}),t.addEventListener("pause",e,{once:!0}),t.addEventListener("error",e,{once:!0})}var Oa=3;function Ba(t){return t.error!=null||t.networkState===Oa}var Kn=new WeakMap;function Ft(t){return Number.isFinite(t)?Math.max(0,Math.min(1,t)):1}function Fr(t){let e=!!(t.outputMuted||t.userMuted);for(let n of t.clips){let{el:i}=n;if(!i.isConnected)continue;let r=(t.timeSeconds-n.start)*n.playbackRate+n.mediaStart;if(t.timeSeconds>=n.start&&t.timeSeconds<=n.end&&r>=0&&(!i.ended||n.loop)){if(n.loop&&n.sourceDuration!=null&&n.sourceDuration>0){let N=n.sourceDuration-n.mediaStart;N>0&&r>=n.sourceDuration&&(r=n.mediaStart+(r-n.mediaStart)%N)}let s=Ft(t.userVolume??1),l=Ft(n.volume??1),a=Kn.get(i),c=Ft(i.volume),u;n.volumeKeyframes&&n.volumeKeyframes.length>0?u=Ft(Er(n.volumeKeyframes,r)):a===void 0||Math.abs(c-a)>1e-4?u=c:u=l;let m=Ft(u*s);i.volume=m,Kn.set(i,m),t.onElementVolume?.(i,m),(e||t.isWebAudioOwned?.(i))&&(i.muted=!0),i.preload!=="auto"&&(i.preload="auto");try{i.playbackRate=n.playbackRate*t.playbackRate}catch(N){L("runtime.media.site1",N)}let f=.04,x=2,E=i.currentTime||0,g=Math.abs(E-r),S=r-E,_=qn.get(i);qn.set(i,S);let v=_===void 0,R=!v&&Math.abs(S-_)>.5,J=g>3,O=g>.5&&(v||R||J),M=i.tagName==="VIDEO"&&!i.paused,b=_!==void 0&&Math.abs(S-_)<.004,w=!1;if(!M&&!O&&!v&&b&&g>f){let N=(Ct.get(i)??0)+1;Ct.set(i,N),N>=x&&(w=!0,Ct.set(i,0))}else g<=f&&Ct.set(i,0);let F=!M&&t.forceSync&&g>.02;if(O||w||F){if(!(i.tagName==="VIDEO"&&i.id&&!!document.getElementById(`__render_frame_${i.id}__`))){try{i.currentTime=r}catch(T){L("runtime.media.site2",T)}if(Math.abs(i.currentTime-r)>.5&&!$n.has(i)){$n.add(i),i.load();try{i.currentTime=r}catch(T){L("runtime.media.site3",T)}}}lt.delete(i)}t.playing&&i.paused&&!lt.has(i)&&!Ba(i)?(Pa(i),i.play().catch(N=>{lt.delete(i),(N&&typeof N=="object"&&"name"in N?String(N.name??""):"")==="NotAllowedError"&&t.onAutoplayBlocked?.()})):!t.playing&&!i.paused&&i.pause();continue}qn.delete(i),Ct.delete(i),$n.delete(i),Kn.delete(i),i.paused||i.pause()}}var Ha=["[data-hyperframes-ignore]","[data-hyperframes-picker-ignore]","[data-hf-ignore]","[data-no-inspect]","[data-no-pick]","[data-hyper-shader-loading]"].join(","),Wa=["[data-hyperframes-picker-block]","[data-hyper-shader-loading]"].join(","),Ga="data-hf-color-grading-source-hidden";function Mr(t){let e=!1,n=null,i=null,r=null,o=null;function s(b,w){try{window.dispatchEvent(new CustomEvent(b,{detail:w}))}catch(F){L("runtime.picker.site1",F)}}function l(b){r=b,s("hyperframe:picker:hovered",{elementInfo:r,isPickMode:e,timestamp:Date.now()})}function a(b){o=b,s("hyperframe:picker:selected",{elementInfo:o,isPickMode:e,timestamp:Date.now()})}function c(b){let w=b.ownerDocument.defaultView;if(!w)return!1;let F=b;for(;F&&F!==document.body&&F!==document.documentElement;){let N=w.getComputedStyle(F);if(N.display==="none"||N.visibility==="hidden"||N.pointerEvents==="none")return!0;let T=Number.parseFloat(N.opacity);if(Number.isFinite(T)&&T<=.01&&!F.hasAttribute(Ga))return!0;F=F.parentElement}return!1}function u(b){if(!b||b===document.body||b===document.documentElement)return!1;let w=b.tagName.toLowerCase();return!(w==="script"||w==="style"||w==="link"||w==="meta"||b.classList.contains("__hf-pick-highlight")||b.closest(Ha)||c(b))}function m(b){return!!b?.closest(Wa)}function f(b){let w=b;if(w.id)return`#${w.id}`;let F=b.getAttribute("data-composition-id");if(F)return`[data-composition-id="${CSS.escape(F)}"]`;let N=b.getAttribute("data-composition-src");if(N)return`[data-composition-src="${CSS.escape(N)}"]`;let T=b.getAttribute("data-track-index");if(T)return`[data-track-index="${CSS.escape(T)}"]`;let G=b.tagName.toLowerCase(),V=b.parentElement;if(!V)return G;let se=V.querySelectorAll(`:scope > ${G}`);if(se.length===1)return G;for(let I=0;I<se.length;I+=1)if(se[I]===b)return`${G}:nth-of-type(${I+1})`;return G}function x(b){let w=b.tagName.toLowerCase(),F=(b.textContent??"").trim().replace(/\\s+/g," "),N=(T,G)=>T.length>G?`${T.slice(0,G-1)}\\u2026`:T;return w==="h1"||w==="h2"||w==="h3"?"Heading":w==="p"||w==="span"||w==="div"?F.length>0?N(F,56):"Text":w==="img"?"Image":w==="video"?"Video":w==="audio"?"Audio":w==="svg"?"Shape":b.getAttribute("data-composition-src")?"Composition":w==="section"?"Section":`${w.charAt(0).toUpperCase()}${w.slice(1)}`}function E(b,w,F){let N=typeof F=="number"&&F>0?F:8,T=[];if(document.elementsFromPoint)T=document.elementsFromPoint(b,w);else if(document.elementFromPoint){let se=document.elementFromPoint(b,w);T=se?[se]:[]}if(m(T[0]??null))return[];let G={},V=[];for(let se=0;se<T.length;se+=1){let I=T[se];if(!u(I))continue;let ee=`${I.tagName}::${I.id||""}::${se}`;if(!G[ee]&&(G[ee]=!0,V.push(I),V.length>=N))break}return V}function g(b){let w=b.getBoundingClientRect(),F={};for(let T=0;T<b.attributes.length;T+=1){let G=b.attributes[T];G.name.startsWith("data-")&&(F[G.name]=G.value)}return{id:b.id||null,tagName:b.tagName.toLowerCase(),selector:f(b),label:x(b),boundingBox:{x:w.left,y:w.top,width:w.width,height:w.height},textContent:b.textContent?b.textContent.trim().slice(0,200):null,src:b.getAttribute("src")||b.getAttribute("data-composition-src")||null,dataAttributes:F}}function S(b,w,F){return E(b,w,F).map(g)}function _(b){if(!e)return;let F=E(b.clientX,b.clientY,1)[0]??(b.target instanceof Element?b.target:null);if(!u(F)||n===F)return;n&&n.classList.remove("__hf-pick-highlight"),n=F,F.classList.add("__hf-pick-highlight");let N=g(F);l(N),t.postMessage({source:"hf-preview",type:"element-hovered",elementInfo:N})}function v(b){if(!e)return;b.preventDefault(),b.stopPropagation(),b.stopImmediatePropagation();let w=S(b.clientX,b.clientY,8);w.length!==0&&(l(w[0]??null),t.postMessage({source:"hf-preview",type:"element-pick-candidates",candidates:w,selectedIndex:0,point:{x:b.clientX,y:b.clientY}}))}function R(b){b.key==="Escape"&&(O(),t.postMessage({source:"hf-preview",type:"pick-mode-cancelled"}))}function J(){e||(e=!0,i=document.createElement("style"),i.textContent=[".__hf-pick-highlight { outline: 2px solid #4f8cf7 !important; outline-offset: 2px; cursor: crosshair !important; }",".__hf-pick-active * { cursor: crosshair !important; }"].join(`\n`),document.head.appendChild(i),document.body.classList.add("__hf-pick-active"),document.addEventListener("mousemove",_,!0),document.addEventListener("click",v,!0),document.addEventListener("keydown",R,!0),s("hyperframe:picker:mode",{isPickMode:!0,timestamp:Date.now()}))}function O(){e&&(e=!1,n&&(n.classList.remove("__hf-pick-highlight"),n=null),i&&(i.remove(),i=null),document.body.classList.remove("__hf-pick-active"),document.removeEventListener("mousemove",_,!0),document.removeEventListener("click",v,!0),document.removeEventListener("keydown",R,!0),s("hyperframe:picker:mode",{isPickMode:!1,timestamp:Date.now()}))}function M(){window.__HF_PICKER_API={enable:J,disable:O,isActive:()=>e,getHovered:()=>r,getSelected:()=>o,getCandidatesAtPoint:(b,w,F)=>Number.isFinite(b)&&Number.isFinite(w)?S(b,w,F):[],pickAtPoint:(b,w,F)=>{if(!Number.isFinite(b)||!Number.isFinite(w))return null;let N=S(b,w,8);if(!N.length)return null;let T=Math.max(0,Math.min(N.length-1,Number(F??0))),G=N[T]??null;return G?(a(G),t.postMessage({source:"hf-preview",type:"element-picked",elementInfo:G}),O(),G):null},pickManyAtPoint:(b,w,F)=>{if(!Number.isFinite(b)||!Number.isFinite(w))return[];let N=S(b,w,8);if(!N.length)return[];let T=[],G=Array.isArray(F)?F:[0];for(let V of G){let se=Math.max(0,Math.min(N.length-1,Math.floor(Number(V)))),I=N[se];if(!I)continue;T.some(de=>de.selector===I.selector&&de.tagName===I.tagName)||T.push(I)}return T.length?(a(T[0]??null),t.postMessage({source:"hf-preview",type:"element-picked-many",elementInfos:T}),O(),T):[]}},s("hyperframe:picker:api-ready",{hasApi:!0,timestamp:Date.now()})}return{enablePickMode:J,disablePickMode:O,installPickerApi:M}}var Ua=["width","height","top","left","right","bottom","inset","object-fit","object-position","z-index","opacity","visibility","filter","mix-blend-mode","backdrop-filter","border-radius","overflow","clip-path","mask","mask-image","mask-size","mask-position","mask-repeat","transform","transform-origin","translate","rotate","scale","box-sizing"];function ut(t,e){let n=Number.isFinite(e)&&e>0?e:30,i=Number.isFinite(t)&&t>0?t:0;return Math.floor(i*n+1e-9)/n}function Nr(t,e,n=Ua){for(let i of n){let r=e.getPropertyValue(i);r&&t.setProperty(i,r)}}function Nt(t,e,n){let i=t?.[e];return typeof i=="function"?Number(i.call(t))||n:typeof i=="number"&&Number.isFinite(i)?i:(i!=null&&L("runtime.player.nonConformantNum",{prop:e,actual:typeof i}),n)}function ke(t,e){let n=t?.[e];if(typeof n=="function"){n.call(t);return}n!==void 0&&L("runtime.player.nonConformantVoid",{method:e,actual:typeof n})}function _t(t,e,n){if(t){for(let i of Object.values(t))if(!(!i||i===e))try{n(i)}catch(r){L("runtime.player.site1",r)}}}function _r(t,e,n){let i=ut(e,n);return ke(t,"pause"),typeof t.totalTime=="function"?t.totalTime(i,!1):typeof t.seek=="function"&&t.seek(i,!1),i}function Va(t,e,n,i){let r=[];_t(t,e,o=>{ke(o,"play"),r.push(o)});try{return _r(e,n,i)}finally{for(let o of r)try{ke(o,"pause")}catch(s){L("runtime.player.site2",s)}}}function za(t,e){_t(t,e,n=>{ke(n,"play")})}function Tr(t){return{_timeline:null,play:()=>{let e=t.getTimeline();if(!e||t.getIsPlaying())return;let n=Math.max(0,Number(t.getSafeDuration?.()??Nt(e,"duration",0))||0);n>0&&Math.max(0,Nt(e,"time",0))>=n&&(ke(e,"pause"),typeof e.seek=="function"&&e.seek(0,!1),t.onDeterministicSeek(0),t.setIsPlaying(!1),t.onSyncMedia(0,!1),t.onRenderFrameSeek(0)),typeof e.timeScale=="function"&&e.timeScale(t.getPlaybackRate()),ke(e,"play"),_t(t.getTimelineRegistry?.(),e,i=>{typeof i.timeScale=="function"&&i.timeScale(t.getPlaybackRate()),ke(i,"play")}),t.onDeterministicPlay(),t.setIsPlaying(!0),t.onShowNativeVideos(),t.onStatePost(!0)},pause:()=>{let e=t.getTimeline();if(!e)return;ke(e,"pause"),_t(t.getTimelineRegistry?.(),e,i=>{ke(i,"pause")});let n=Math.max(0,Nt(e,"time",0));t.onDeterministicSeek(n),t.onDeterministicPause(),t.setIsPlaying(!1),t.onSyncMedia(n,!1),t.onRenderFrameSeek(n),t.onStatePost(!0)},seek:(e,n)=>{let i=t.getTimeline();if(!i)return;let r=Math.max(0,Number(e)||0),o=t.getIsPlaying(),s=Va(t.getTimelineRegistry?.(),i,r,t.getCanonicalFps());t.onDeterministicSeek(s),n?.keepPlaying&&o?(typeof i.timeScale=="function"&&i.timeScale(t.getPlaybackRate()),ke(i,"play"),_t(t.getTimelineRegistry?.(),i,l=>{typeof l.timeScale=="function"&&l.timeScale(t.getPlaybackRate()),ke(l,"play")}),t.onDeterministicPlay(),t.onShowNativeVideos(),t.onSyncMedia(s,!0)):(t.setIsPlaying(!1),t.onSyncMedia(s,!1)),t.onRenderFrameSeek(s),t.onStatePost(!0)},renderSeek:e=>{let n=t.getTimeline(),i=t.getCanonicalFps(),r=n?(za(t.getTimelineRegistry?.(),n),_r(n,e,i)):ut(Math.max(0,Number(e)||0),i);t.onDeterministicSeek(r),t.setIsPlaying(!1),t.onSyncMedia(r,!1),t.onRenderFrameSeek(r),t.onStatePost(!0)},getTime:()=>Nt(t.getTimeline(),"time",0),getDuration:()=>Nt(t.getTimeline(),"duration",0),isPlaying:()=>t.getIsPlaying(),setPlaybackRate:e=>t.setPlaybackRate(e),getPlaybackRate:()=>t.getPlaybackRate()}}function Lr(){return{capturedTimeline:null,isPlaying:!1,currentTime:0,deterministicAdapters:[],canonicalFps:30,bridgeMuted:!1,bridgeVolume:1,mediaOutputMuted:!1,nativeMediaSyncDisabled:!1,webAudioMediaDisabled:!1,mediaAutoplayBlockedPosted:!1,mediaForceSyncNextTick:!1,playbackRate:1,bridgeLastPostedFrame:-1,bridgeLastPostedAt:0,bridgeLastPostedPlaying:!1,bridgeLastPostedMuted:!1,bridgeMaxPostIntervalMs:80,controlBridgeHandler:null,beforeUnloadHandler:null,injectedCompStyles:[],injectedCompScripts:[],cachedTimedMediaEls:[],cachedMediaClips:[],cachedVideoClips:[],cachedMediaTimelineDurationSeconds:0,tornDown:!1,transportClock:null,transportRafId:null}}var ja=new Set(["SCRIPT","STYLE","LINK","META","TEMPLATE","NOSCRIPT"]);function Yn(t){return t.id||t.getAttribute("data-hf-id")||null}function Jn(t){if(t==null)return null;let e=Number(t);return Number.isFinite(e)?e:null}function qa(t,e){let n=t.getAttribute("data-composition-id");if(!n)return null;let i=Number(e[n]?.duration?.());return Number.isFinite(i)&&i>0?i:null}function $a(t){if(!(t instanceof HTMLMediaElement)||!Number.isFinite(t.duration))return null;let e=Jn(t.getAttribute("data-playback-start"))??Jn(t.getAttribute("data-media-start"))??0;return t.duration>e?t.duration-e:null}function Ka(t,e,n,i){let r=Jn(t.getAttribute("data-duration"));return r!=null&&r>0?r:qa(t,e)??$a(t)??Math.max(0,n-i)}function Ja(t){for(let[e,n]of t){let i=e.parentElement;for(;i;){let r=t.get(i);if(r){n.parentId=r.id,r.children.push(n);break}i=i.parentElement}}}function vr(t){let{startResolver:e,timelineRegistry:n,rootDuration:i}=t,r=new Map,o=document.querySelector("[data-composition-id]"),s=0;for(let l of document.querySelectorAll("[data-start]")){if(l===o||ja.has(l.tagName))continue;let a=e.resolveStartForElement(l,0);if(Ka(l,n,i,a)<=0)continue;let c={id:Yn(l)??`__clip-${s++}`,element:l,parentId:null,children:[]};r.set(l,c)}return Ja(r),{roots:Array.from(r.values()).filter(l=>l.parentId===null)}}var Ya="data-hf-authored-duration",Xa="data-hf-authored-end";function it(t){if(t==null||t==="")return null;let e=Number(t);return Number.isFinite(e)?e:null}function Qa(t){return it(t.getAttribute("data-duration"))}function Za(t){return it(t.getAttribute("data-end"))}function el(t){return it(t.getAttribute(Ya))}function tl(t){return it(t.getAttribute(Xa))}function nl(t){let e=(t??"").trim();if(!e)return null;let n=it(e);if(n!=null)return{kind:"absolute",value:n};let i=e.match(/^([A-Za-z0-9_.:-]+)(?:\\s*([+-])\\s*([0-9]*\\.?[0-9]+))?$/);if(!i)return null;let r=(i[1]??"").trim();if(!r)return null;let o=i[2]??"+",s=i[3]??"0",l=Number.parseFloat(s),a=Number.isFinite(l)?Math.max(0,l):0,c=o==="-"?-a:a;return{kind:"reference",refId:r,offset:c}}function je(t){let e=t.timelineRegistry??{},n=t.includeAuthoredTimingAttrs??!1,i=new WeakMap,r=new WeakMap,o=new Set,s=u=>{let m=document.getElementById(u);return m||(document.querySelector(`[data-composition-id="${CSS.escape(u)}"]`)??null)},l=u=>{let m=r.get(u);if(m!==void 0)return m;let f=null,x=Qa(u)??(n?el(u):null);if(x!=null&&x>0&&(f=x),f==null||f<=0){let E=Za(u)??(n?tl(u):null);if(E!=null){let g=c(u,0),S=E-g;Number.isFinite(S)&&S>0&&(f=S)}}if((f==null||f<=0)&&u instanceof HTMLMediaElement){let E=it(u.getAttribute("data-playback-start"))??it(u.getAttribute("data-media-start"))??0;Number.isFinite(u.duration)&&u.duration>E&&(f=(u.duration-E)/Mt(u))}if(f==null||f<=0){let E=u.getAttribute("data-composition-id");if(E){let g=e[E]??null;if(g&&typeof g.duration=="function")try{let S=Number(g.duration());Number.isFinite(S)&&S>0&&(f=S)}catch(S){L("runtime.startResolver.site1",S)}}}return f!=null&&Number.isFinite(f)&&f>0?(r.set(u,f),f):(r.set(u,null),null)},a=(u,m)=>{if(u.hasAttribute("data-composition-id")){let x=u.parentElement?.closest("[data-composition-id]");return x?c(x,m):0}let f=u.closest("[data-composition-id]");return f?c(f,m):0},c=(u,m)=>{let f=i.get(u);if(f!==void 0)return f??m;if(o.has(u))return m;o.add(u);try{let x=nl(u.getAttribute("data-start"));if(!x){if(u.hasAttribute("data-composition-id")){let v=u.parentElement;if(v&&(v.hasAttribute("data-composition-src")||v.hasAttribute("data-composition-id"))){let R=c(v,m);return i.set(u,R),R}}return i.set(u,m),m}if(x.kind==="absolute"){let v=Math.max(0,x.value),R=Math.max(0,a(u,m)+v);return i.set(u,R),R}let E=s(x.refId);if(!E)return i.set(u,m),m;let g=c(E,0),S=l(E);if(S==null||S<=0){let v=Math.max(0,g+x.offset);return i.set(u,v),v}let _=Math.max(0,g+S+x.offset);return i.set(u,_),_}finally{o.delete(u)}};return{resolveStartForElement:(u,m=0)=>c(u,Math.max(0,m)),resolveDurationForElement:u=>l(u)}}function Rr(t){let e=t.trim().toLowerCase();return!(!e||e==="main"||e.includes("caption")||e.includes("ambient"))}var il="data-hf-authored-duration",rl="data-hf-authored-end";function Ce(t){if(t==null||t==="")return null;let e=Number(t);return Number.isFinite(e)?e:null}function Xn(t){return Ce(t.getAttribute("data-duration"))??Ce(t.getAttribute(il))}function kr(t){return Ce(t.getAttribute("data-end"))??Ce(t.getAttribute(rl))}function Qn(...t){let e=t.filter(n=>Number.isFinite(n??null));return e.length===0?null:Math.max(...e)}var Dr={composition:0,video:1,image:2,element:3,audio:4};function ol(t){if(t.length===0)return;let e=new Map;for(let s of t){let l=e.get(s.track)??new Set;l.add(s.kind),e.set(s.track,l)}if(!Array.from(e.values()).some(s=>s.size>1))return;let i=0,r=new Map,o=[...e.keys()].sort((s,l)=>s-l);for(let s of o){let l=e.get(s);if(l.size===1)r.set(`${s}:${[...l][0]}`,i++);else{let a=[...l].sort((c,u)=>(Dr[c]??99)-(Dr[u]??99));for(let c of a)r.set(`${s}:${c}`,i++)}}for(let s of t){let l=`${s.track}:${s.kind}`,a=r.get(l);a!=null&&(s.track=a)}}function Lt(t){let e=String(t??"").trim();if(!e)return null;let n=e.toLowerCase();if(n.startsWith("data:")||n.startsWith("javascript:"))return null;try{return new URL(e,document.baseURI).toString()}catch{return e}}function Ir(t){let e=t.getAttribute("src")??t.getAttribute("data-src");if(e)return Lt(e);let n=t.getAttribute("data-composition-src");if(n)return Lt(n);let i=t.querySelector("img[src], video[src], audio[src], source[src]");return i?Lt(i.getAttribute("src")):null}function sl(t){let e=t.className;return typeof e!="string"?null:e.split(/\\s+/).map(n=>n.trim()).find(n=>n&&n!=="clip"&&!n.startsWith("__hf-"))??null}function al(t){if(!t)return null;try{return new URL(t,document.baseURI).pathname.split("/").filter(Boolean).at(-1)??null}catch{return t.split(/[\\\\/]/).filter(Boolean).at(-1)??null}}function ll(t){let e=t.textContent?.replace(/\\s+/g," ").trim();return e?e.length>32?`${e.slice(0,31)}...`:e:null}function Tt(t){let e=t.replace(/\\.[^.]+$/i,"").replace(/[-_]+/g," ").replace(/\\s+/g," ").trim();return e?e.replace(/\\b\\w/g,n=>n.toUpperCase()):t}function ul(t,e,n){let i=t.getAttribute("data-timeline-label")??t.getAttribute("data-label")??t.getAttribute("aria-label")??null;if(i?.trim())return i.trim();let r=t.getAttribute("data-composition-id");if(r)return Tt(r);let o=t.id;if(o)return Tt(o);let s=sl(t);if(s)return Tt(s);let l=al(Ir(t));if(l)return Tt(l);let a=ll(t);return a||`${Tt(e)} ${n+1}`}function Pr(t){let n=window.__timelines??{},i=je({timelineRegistry:n,includeAuthoredTimingAttrs:!0}),r=H=>{if(!H)return null;let k=n[H]??null;if(!k||typeof k.duration!="function")return null;try{let W=Number(k.duration());return Number.isFinite(W)&&W>0?W:null}catch{return null}},o=H=>{let k=Ce(H.getAttribute("data-duration"));if(k!=null&&k>0)return k;let W=Ce(H.getAttribute("data-playback-start"))??Ce(H.getAttribute("data-media-start"))??0;return Number.isFinite(H.duration)&&H.duration>W?Math.max(0,(H.duration-W)/Mt(H)):null},s=()=>{let H=Array.from(document.querySelectorAll("video[data-start], audio[data-start]"));if(H.length===0)return null;let k=0;for(let W of H){let ae=W.hasAttribute("data-hf-auto-start")?i.resolveStartForElement(W,0):Math.max(0,Number(W.getAttribute("data-start")??0)||0);if(!Number.isFinite(ae))continue;let ne=o(W);ne==null||ne<=0||(k=Math.max(k,Math.max(0,ae)+ne))}return k>0?k:null},l=(H,k)=>{let W=[],ae=null,ne=null,z=null,j=H.parentElement;for(;j;){let K=j.getAttribute("data-composition-id");K&&(W.push(K),!z&&j!==k&&(z=K),ae==null&&(ae=i.resolveStartForElement(j,0)),ne==null&&(ne=Ce(j.getAttribute("data-duration"))??r(K)??null)),j=j.parentElement}return{parentCompositionId:z,compositionAncestors:W.reverse(),inheritedStart:ae,inheritedDuration:ne}},a=document.querySelector("[data-composition-id]"),c=Array.from(document.querySelectorAll("[data-composition-id]")),u=a?.getAttribute("data-composition-id")??null,m=a?i.resolveStartForElement(a,0):0,f=s(),x=f!=null?Math.max(0,f-Math.max(0,m)):null,E=r(u),g=Xn(a??document.body),S=Qn(...c.filter(H=>H!==a).map(H=>{let k=i.resolveStartForElement(H,0),W=i.resolveDurationForElement(H)??r(H.getAttribute("data-composition-id"))??null;return!Number.isFinite(k)||W==null||W<=0?null:Math.max(0,k)+W})),_=S!=null?Math.max(0,S-Math.max(0,m)):null,v=typeof E=="number"&&Number.isFinite(E)&&E>0?E:null,R=typeof g=="number"&&Number.isFinite(g)&&g>0?g:null,J=typeof x=="number"&&Number.isFinite(x)&&x>0?x:null,O=typeof _=="number"&&Number.isFinite(_)&&_>0?_:null,M=Qn(J,O),b=v!=null&&M!=null&&v>M+1,F=R??(b?M:Qn(v,J,O))??null,T=(F!=null?m+F:null)??(typeof f=="number"&&Number.isFinite(f)&&f>0?f:null),G=(H,k)=>!Number.isFinite(k)||k<=0?0:T==null||!Number.isFinite(T)?k:!Number.isFinite(H)||H>=T?0:Math.max(0,Math.min(k,T-H)),V=[],se=[],I=Array.from(document.querySelectorAll("[data-start], [data-track-index], [data-composition-id], video, audio, img")),ee=0;for(let H=0;H<I.length;H+=1){let k=I[H];if(k===a||["SCRIPT","STYLE","LINK","META","TEMPLATE","NOSCRIPT"].includes(k.tagName))continue;let W=l(k,a),ae=i.resolveStartForElement(k,W.inheritedStart??0),ne=k.getAttribute("data-composition-id"),z=Xn(k);if((z==null||z<=0)&&ne&&ne!==u&&(z=r(ne)),(z==null||z<=0)&&k instanceof HTMLMediaElement){let Me=Ce(k.getAttribute("data-playback-start"))??Ce(k.getAttribute("data-media-start"))??0;Number.isFinite(k.duration)&&k.duration>0&&(z=Math.max(0,k.duration-Me))}if(z==null||z<=0){let Me=W.inheritedDuration;if(Me!=null&&Me>0){let Oe=(W.inheritedStart??0)+Me;z=Math.max(0,Oe-ae)}}if(z==null||z<=0||(z=G(ae,z),z<=0))continue;let j=ae+z;ee=Math.max(ee,j);let K=k.tagName.toLowerCase(),Pe=ne&&ne!==u?"composition":K==="video"?"video":K==="audio"?"audio":K==="img"?"image":"element";V.push({id:Yn(k)??ne??null,label:ul(k,Pe,V.length),start:ae,duration:z,track:Number.parseInt(k.getAttribute("data-track-index")??k.getAttribute("data-track")??String(H),10)||0,kind:Pe,tagName:K,compositionId:k.getAttribute("data-composition-id"),compositionAncestors:W.compositionAncestors,parentCompositionId:W.parentCompositionId,nodePath:null,compositionSrc:Lt(k.getAttribute("data-composition-src")),assetUrl:Ir(k),timelineRole:k.getAttribute("data-timeline-role"),timelineLabel:k.getAttribute("data-timeline-label"),timelineGroup:k.getAttribute("data-timeline-group"),timelinePriority:Ce(k.getAttribute("data-timeline-priority"))})}let de=new Set(V.map(H=>H.id)),B=a?.getAttribute("data-composition-id")??null,te=B?n[B]??null:null;if(te&&a){let H=te;if(typeof H.getChildren=="function")try{let k=H.getChildren(!0,!0,!1)??[],W=new Map;for(let z of a.children){let j=z;if(!j.id)continue;let K=j.tagName.toLowerCase();K==="script"||K==="style"||K==="link"||W.set(j,{id:j.id,start:1/0,end:-1/0})}let ae=z=>{let j=z;for(;j;){if(W.has(j))return j;if(j===a)return null;j=j.parentElement}return null};for(let z of k){if(typeof z.targets!="function"||typeof z.startTime!="function"||typeof z.duration!="function")continue;let j=z.startTime(),K=z.parent;for(;K&&K!==te&&typeof K.startTime=="function";)j+=K.startTime(),K=K.parent;let Pe=j+z.duration();if(!(!Number.isFinite(j)||!Number.isFinite(Pe)))for(let Me of z.targets()){if(!(Me instanceof Element))continue;let Le=ae(Me);if(!Le)continue;let Oe=W.get(Le);Oe&&(Oe.start=Math.min(Oe.start,j),Oe.end=Math.max(Oe.end,Pe))}}let ne=V.length>0?Math.max(...V.map(z=>z.track))+1:0;for(let[z,j]of W){if(j.start===1/0||j.end===-1/0)continue;let K=z;if(de.has(K.id))continue;let Pe=Math.max(0,j.end-j.start);if(Pe<=0)continue;let Me=G(j.start,Pe);Me<=0||(ee=Math.max(ee,j.start+Me),V.push({id:K.id,label:K.getAttribute("data-timeline-label")??K.getAttribute("data-label")??K.getAttribute("aria-label")??K.id,start:j.start,duration:Me,track:Number.parseInt(K.getAttribute("data-track-index")??K.getAttribute("data-track")??"",10)||ne,kind:"element",tagName:K.tagName.toLowerCase(),compositionId:K.getAttribute("data-composition-id"),compositionAncestors:B?[B]:[],parentCompositionId:B,nodePath:null,compositionSrc:null,assetUrl:null,timelineRole:K.getAttribute("data-timeline-role"),timelineLabel:K.getAttribute("data-timeline-label"),timelineGroup:K.getAttribute("data-timeline-group"),timelinePriority:Ce(K.getAttribute("data-timeline-priority"))}),de.add(K.id))}}catch(k){L("runtime.timeline.site1",k)}}if(a&&F!=null&&F>0){let H=V.length>0?Math.max(...V.map(k=>k.track))+1:0;for(let k of a.children){let W=k;if(!W.id||de.has(W.id))continue;let ae=W.getAttribute("data-timeline-role");if(ae!=="overlay"&&ae!=="persistent-overlay")continue;let ne=W.tagName.toLowerCase();if(ne==="script"||ne==="style"||ne==="link"||ne==="meta"||window.getComputedStyle(W).display==="none")continue;let j=G(0,F);j<=0||(ee=Math.max(ee,j),V.push({id:W.id,label:W.getAttribute("data-timeline-label")??W.getAttribute("data-label")??W.getAttribute("aria-label")??W.id,start:0,duration:j,track:Number.parseInt(W.getAttribute("data-track-index")??W.getAttribute("data-track")??"",10)||H,kind:"element",tagName:ne,compositionId:W.getAttribute("data-composition-id"),compositionAncestors:B?[B]:[],parentCompositionId:B,nodePath:null,compositionSrc:null,assetUrl:null,timelineRole:ae,timelineLabel:W.getAttribute("data-timeline-label"),timelineGroup:W.getAttribute("data-timeline-group"),timelinePriority:Ce(W.getAttribute("data-timeline-priority"))}),de.add(W.id))}}ol(V);for(let H of c){if(H===a)continue;let k=H.getAttribute("data-composition-id");if(!k||!Rr(k))continue;let W=i.resolveStartForElement(H,0),ae=Xn(H);if((ae==null||ae<=0)&&kr(H)!=null){let K=kr(H);ae=Math.max(0,K-W)}let ne=r(k),z=ae&&ae>0?ae:ne;if(z==null||z<=0)continue;let j=G(W,z);j<=0||se.push({id:k,label:H.getAttribute("data-label")??k,start:W,duration:j,thumbnailUrl:Lt(H.getAttribute("data-thumbnail-url")),avatarName:null})}let U=Math.max(1,ee||1,F??0);return{source:"hf-preview",type:"timeline",durationInFrames:b&&R==null?Number.POSITIVE_INFINITY:Math.max(1,Math.ceil(U*Math.max(1,t.canonicalFps))),clips:V,scenes:se,compositionWidth:Ce(a?.getAttribute("data-width"))??1920,compositionHeight:Ce(a?.getAttribute("data-height"))??1080}}var ce=va(ls(),1),us=ce.default,Qm=ce.default.stringify,Zm=ce.default.fromJSON,ep=ce.default.plugin,tp=ce.default.parse,np=ce.default.list,ip=ce.default.document,rp=ce.default.comment,op=ce.default.atRule,sp=ce.default.rule,ap=ce.default.decl,lp=ce.default.root,up=ce.default.CssSyntaxError,cp=ce.default.Declaration,dp=ce.default.Container,fp=ce.default.Processor,mp=ce.default.Document,pp=ce.default.Comment,hp=ce.default.Warning,xp=ce.default.AtRule,gp=ce.default.Result,yp=ce.default.Input,bp=ce.default.Rule,Sp=ce.default.Root,Ap=ce.default.Node;var Ci="data-hf-authored-id";function Fi(t){return t.replace(/[.*+?^${}()|[\\]\\\\]/g,"\\\\$&")}function Mi(t){return t.replace(/\\\\/g,"\\\\\\\\").replace(/"/g,\'\\\\"\')}function vu(t){return t&&t.replace(/[^a-zA-Z0-9_-]/g,n=>`\\\\${n}`).replace(/^-?\\d/,n=>`\\\\${n}`)}function cs(t){let e=t.trim();return e?Array.from(new Set([e,vu(e)])).filter(Boolean):[]}function Ru(t){return!!t&&/[\\w-]/.test(t)}function ku(t,e,n){let i=cs(e).sort((l,a)=>a.length-l.length);if(i.length===0)return t;let r="",o=0,s=null;for(let l=0;l<t.length;l+=1){let a=t[l],c=l>0?t[l-1]:"";if(s){r+=a,a===s&&c!=="\\\\"&&(s=null);continue}if(a===\'"\'||a==="\'"){s=a,r+=a;continue}if(a==="["){o+=1,r+=a;continue}if(a==="]"){o=Math.max(0,o-1),r+=a;continue}if(a==="#"&&o===0){let u=i.find(m=>t.startsWith(m,l+1));if(u){let m=t[l+1+u.length];if(!Ru(m)){r+=n,l+=u.length;continue}}}r+=a}return r}function Du(t,e){let n=e?.trim();return n?ku(t,n,`[${Ci}="${Mi(n)}"]`):t}function Iu(t,e,n,i,r){let o=Du(t,i),s=Pu(o,e,n),l=s.trim();if(!l||/^(html|body|:root|\\*)$/i.test(l))return t;let a=new RegExp(`\\\\[\\\\s*data-composition-id\\\\s*=\\\\s*(["\'])${Fi(n)}\\\\1\\\\s*\\\\]`,"g");if(a.test(l))return s.replace(a,e);let c=s.match(/^\\s*/)?.[0]??"",u=s.match(/\\s*$/)?.[0]??"";if(r){let m=i?`[${Ci}="${Mi(i)}"]`:null;if(m&&l.startsWith(m)){let f=l.slice(m.length);return`${c}${e}${m}${f}${u}`}}return`${c}${e} ${l}${u}`}function Pu(t,e,n){let i=Fi(n),r=String.raw`\\[\\s*data-composition-id\\s*=\\s*(?:"${i}"|\'${i}\')\\s*\\]`,o=String.raw`\\s*\\[\\s*data-(?:start|duration)\\s*=\\s*(?:"[^"]*"|\'[^\']*\')\\s*\\]`;return t.replace(new RegExp(`${r}(?:${o})+`,"g"),e).replace(new RegExp(`(?:${o})+${r}`,"g"),e)}var Ou=new Set(["keyframes","-webkit-keyframes","font-face"]);function Bu(t){return t?.type==="atrule"}function Hu(t){let e=t.parent;for(;e;){if(Bu(e)&&Ou.has(e.name.toLowerCase()))return!0;e=e.parent}return!1}function Ni(t,e,n,i,r){let o=e.trim();if(!t||!o)return t;let s=n||`[data-composition-id="${Mi(o)}"]`,l=us.parse(t);return l.walkRules(a=>{Hu(a)||(a.selectors=a.selectors.map(c=>Iu(c,s,o,i,r?.compoundAuthoredRoot)))}),l.toResult({map:!1}).css}function ds(t,e,n="[HyperFrames] composition script error:",i,r=e,o){let s=JSON.stringify(e),l=JSON.stringify(r),a=JSON.stringify(n),c=Fi(e),u=JSON.stringify(o?.trim()||null),m=JSON.stringify(i??null),f=JSON.stringify(String.raw`\\[\\s*data-composition-id\\s*=\\s*(?:"${c}"|\'${c}\')\\s*\\]`),x=JSON.stringify(String.raw`\\s*\\[\\s*data-(?:start|duration)\\s*=\\s*(?:"[^"]*"|\'[^\']*\')\\s*\\]`),E=JSON.stringify(cs(o?.trim()||""));return`(function(){\n var __hfCompId = ${s};\n var __hfTimelineCompId = ${l};\n var __hfErrorLabel = ${a};\n var __hfAuthoredRootId = ${u};\n var __hfAuthoredRootAttr = ${JSON.stringify(Ci)};\n var __hfEscapeAttr = function(value) {\n return (value + "").replace(/\\\\\\\\/g, "\\\\\\\\\\\\\\\\").replace(/"/g, "\\\\\\\\\\\\"");\n };\n var __hfRootSelector = ${m} || (__hfCompId\n ? \'[data-composition-id="\' + __hfEscapeAttr(__hfCompId) + \'"]\'\n : "");\n var __hfRoot = null;\n var __hfRootSelectorPattern = ${f};\n var __hfTimingSelectorPattern = ${x};\n var __hfAuthoredRootIdForms = ${E};\n var __hfAuthoredRootSelector = __hfAuthoredRootId\n ? "[" + __hfAuthoredRootAttr + \'="\' + __hfEscapeAttr(__hfAuthoredRootId) + \'"]\'\n : "";\n var __hfIsSelectorNameChar = function(char) {\n return !!char && /[\\\\w-]/.test(char);\n };\n var __hfReplaceAuthoredRootIdSelectors = function(selector) {\n if (!__hfAuthoredRootSelector || !__hfAuthoredRootIdForms.length || typeof selector !== "string") {\n return selector;\n }\n var result = "";\n var bracketDepth = 0;\n var quote = null;\n for (var index = 0; index < selector.length; index += 1) {\n var char = selector[index];\n var previousChar = index > 0 ? selector[index - 1] : "";\n if (quote) {\n result += char;\n if (char === quote && previousChar !== "\\\\\\\\") {\n quote = null;\n }\n continue;\n }\n if (char === \'"\' || char === "\'") {\n quote = char;\n result += char;\n continue;\n }\n if (char === "[") {\n bracketDepth += 1;\n result += char;\n continue;\n }\n if (char === "]") {\n bracketDepth = Math.max(0, bracketDepth - 1);\n result += char;\n continue;\n }\n if (char === "#" && bracketDepth === 0) {\n var matchedForm = null;\n for (var formIndex = 0; formIndex < __hfAuthoredRootIdForms.length; formIndex += 1) {\n var form = __hfAuthoredRootIdForms[formIndex];\n if (selector.slice(index + 1, index + 1 + form.length) === form) {\n matchedForm = form;\n break;\n }\n }\n if (matchedForm) {\n var nextChar = selector[index + 1 + matchedForm.length];\n if (!__hfIsSelectorNameChar(nextChar)) {\n result += __hfAuthoredRootSelector;\n index += matchedForm.length;\n continue;\n }\n }\n }\n result += char;\n }\n return result;\n };\n var __hfNormalizeSelector = function(selector) {\n if (!__hfCompId || typeof selector !== "string") return selector;\n var normalized = selector\n .replace(new RegExp(__hfRootSelectorPattern + \'(?:\' + __hfTimingSelectorPattern + \')+\', \'g\'), __hfRootSelector)\n .replace(new RegExp(\'(?:\' + __hfTimingSelectorPattern + \')+\' + __hfRootSelectorPattern, \'g\'), __hfRootSelector);\n if (__hfAuthoredRootSelector) {\n normalized = __hfReplaceAuthoredRootIdSelectors(normalized);\n }\n return normalized;\n };\n var __hfFindRoot = function() {\n if (!__hfRoot && __hfRootSelector) {\n __hfRoot = window.document.querySelector(__hfRootSelector);\n }\n return __hfRoot;\n };\n var __hfContains = function(node) {\n var root = __hfFindRoot();\n return !root || node === root || root.contains(node);\n };\n var __hfQueryAll = function(selector) {\n var root = __hfFindRoot();\n if (!root || typeof selector !== "string") {\n return window.document.querySelectorAll(selector);\n }\n return Array.prototype.filter.call(window.document.querySelectorAll(__hfNormalizeSelector(selector)), function(node) {\n return __hfContains(node);\n });\n };\n var __hfQueryOne = function(selector) {\n var matches = __hfQueryAll(selector);\n return matches[0] || null;\n };\n var __hfGetElementById = function(id) {\n var found = window.document.getElementById(id);\n if (found && __hfContains(found)) return found;\n var root = __hfFindRoot();\n if (!root) return found || null;\n var idValue = id + "";\n if (__hfAuthoredRootId && __hfAuthoredRootId === idValue && root.getAttribute && root.getAttribute(__hfAuthoredRootAttr) === idValue) {\n return root;\n }\n if (root.id === idValue) return root;\n if (typeof root.querySelector !== "function") return null;\n try {\n var authoredRootMatch = root.querySelector(\'[\' + __hfAuthoredRootAttr + \'="\' + __hfEscapeAttr(idValue) + \'"]\');\n if (authoredRootMatch) return authoredRootMatch;\n } catch {}\n if (typeof CSS !== "undefined" && CSS && typeof CSS.escape === "function") {\n try {\n return root.querySelector("#" + CSS.escape(idValue)) || null;\n } catch {}\n }\n try {\n return root.querySelector(\'[id="\' + __hfEscapeAttr(idValue) + \'"]\') || null;\n } catch {}\n return null;\n };\n var __hfScopedDocument = typeof Proxy === "function"\n ? new Proxy(window.document, {\n get: function(target, prop, receiver) {\n if (prop === "querySelector") return __hfQueryOne;\n if (prop === "querySelectorAll") return __hfQueryAll;\n if (prop === "getElementById") return __hfGetElementById;\n var value = Reflect.get(target, prop, target);\n return typeof value === "function" ? value.bind(target) : value;\n },\n })\n : window.document;\n var __hfTimelineRegistryProxy = null;\n var __hfGetTimelineRegistry = function() {\n window.__timelines = window.__timelines || {};\n if (!__hfCompId || __hfCompId === __hfTimelineCompId || typeof Proxy !== "function") {\n return window.__timelines;\n }\n if (!__hfTimelineRegistryProxy) {\n __hfTimelineRegistryProxy = new Proxy(window.__timelines, {\n get: function(target, prop, receiver) {\n return Reflect.get(target, prop === __hfCompId ? __hfTimelineCompId : prop, target);\n },\n set: function(target, prop, value, receiver) {\n return Reflect.set(target, prop === __hfCompId ? __hfTimelineCompId : prop, value, target);\n },\n });\n }\n return __hfTimelineRegistryProxy;\n };\n var __hfScopedWindow = typeof Proxy === "function"\n ? new Proxy(window, {\n get: function(target, prop, receiver) {\n if (prop === "__timelines") return __hfGetTimelineRegistry();\n return Reflect.get(target, prop, target);\n },\n set: function(target, prop, value, receiver) {\n if (prop === "__timelines") {\n target.__timelines = value || {};\n __hfTimelineRegistryProxy = null;\n return true;\n }\n return Reflect.set(target, prop, value, target);\n },\n })\n : window;\n var __hfResolveGsapTarget = function(target) {\n if (typeof target !== "string") return target;\n return __hfQueryAll(target);\n };\n var __hfScopeTimeline = function(timeline) {\n if (!timeline || timeline.__hfScopedCompositionRoot === __hfFindRoot()) return timeline;\n ["to", "from", "fromTo", "set"].forEach(function(method) {\n var original = timeline[method];\n if (typeof original !== "function") return;\n timeline[method] = function(target) {\n var args = Array.prototype.slice.call(arguments);\n args[0] = __hfResolveGsapTarget(target);\n return original.apply(timeline, args);\n };\n });\n try {\n Object.defineProperty(timeline, "__hfScopedCompositionRoot", {\n value: __hfFindRoot(),\n configurable: true,\n });\n } catch {\n // Best-effort: timelines coming from user code may have a frozen target\n // or a non-extensible defineProperty path. Swallow \\u2014 the scoped root\n // is an enrichment, not a correctness invariant for playback.\n }\n return timeline;\n };\n var __hfBaseGsap = typeof gsap === "undefined" ? window.gsap : gsap;\n var __hfScopedGsap = !__hfBaseGsap || typeof Proxy !== "function"\n ? __hfBaseGsap\n : new Proxy(__hfBaseGsap, {\n get: function(target, prop, receiver) {\n if (prop === "timeline") {\n return function() {\n return __hfScopeTimeline(target.timeline.apply(target, arguments));\n };\n }\n if (prop === "to" || prop === "from" || prop === "fromTo" || prop === "set") {\n return function(firstArg) {\n var args = Array.prototype.slice.call(arguments);\n args[0] = __hfResolveGsapTarget(firstArg);\n return target[prop].apply(target, args);\n };\n }\n if (prop === "utils" && target.utils && typeof Proxy === "function") {\n return new Proxy(target.utils, {\n get: function(utilsTarget, utilsProp, utilsReceiver) {\n if (utilsProp === "toArray") {\n return function(firstArg) {\n var args = Array.prototype.slice.call(arguments);\n args[0] = __hfResolveGsapTarget(firstArg);\n return utilsTarget.toArray.apply(utilsTarget, args);\n };\n }\n if (utilsProp === "selector") {\n return function(base) {\n var baseEl = typeof base === "string" ? __hfQueryOne(base) : base;\n var root = baseEl || __hfFindRoot();\n return function(selector) {\n if (!root || typeof selector !== "string") return [];\n return Array.prototype.filter.call(\n window.document.querySelectorAll(__hfNormalizeSelector(selector)),\n function(node) {\n return node === root || (typeof root.contains === "function" && root.contains(node));\n },\n );\n };\n };\n }\n var value = Reflect.get(utilsTarget, utilsProp, utilsTarget);\n return typeof value === "function" ? value.bind(utilsTarget) : value;\n },\n });\n }\n var value = Reflect.get(target, prop, target);\n return typeof value === "function" ? value.bind(target) : value;\n },\n });\n var __hfBaseHyperframes = window.__hyperframes;\n var __hfScopedHyperframes = !__hfBaseHyperframes\n ? __hfBaseHyperframes\n : Object.assign({}, __hfBaseHyperframes, {\n getVariables: function() {\n var byComp = window.__hfVariablesByComp;\n var scoped = byComp && __hfTimelineCompId ? byComp[__hfTimelineCompId] : null;\n return scoped ? Object.assign({}, scoped) : {};\n },\n });\n var __hfRun = function() {\n try {\n (function(document, gsap, window, __hyperframes) {\n${t.replace(/<\\/(script)/gi,"<\\\\/$1")}\n }).call(window, __hfScopedDocument, __hfScopedGsap, __hfScopedWindow, __hfScopedHyperframes);\n } catch (_err) {\n console.error(__hfErrorLabel, __hfCompId, _err);\n }\n };\n __hfFindRoot();\n __hfRun();\n})();`}function fs(){if(typeof document>"u")return{};let t=_i(document.documentElement),e=Wu();return{...t,...e}}function _i(t){if(!t)return{};let e=t.getAttribute("data-composition-variables");if(!e)return{};let n;try{n=JSON.parse(e)}catch{return{}}if(!Array.isArray(n))return{};let i={};for(let r of n){if(!r||typeof r!="object")continue;let o=r;typeof o.id!="string"||!("default"in o)||(i[o.id]=o.default)}return i}function Wu(){if(typeof window>"u")return{};let t=window.__hfVariables;return!t||typeof t!="object"||Array.isArray(t)?{}:t}var Gu=8e3,Uu=/^(?![a-zA-Z][a-zA-Z\\d+\\-.]*:)(?!\\/\\/)(?!\\/)(?!\\.\\.?\\/).+/,Vu=/\\burl\\(\\s*(["\']?)([^)"\']+)\\1\\s*\\)/g,zu=["src","href"];function ju(t){return!t||t.startsWith("http://")||t.startsWith("https://")||t.startsWith("//")||t.startsWith("data:")||t.startsWith("#")||t.startsWith("/")}function ps(t,e){if(!e)return t;let n=t.trim();if(ju(n)||!n.startsWith("../")&&n!=="..")return t;try{return new URL(n,e).href}catch{return t}}function hs(t,e){return!e||!t?t:t.replace(Vu,(n,i,r)=>{let o=ps(r||"",e);return o===r?n:`url(${i||""}${o}${i||""})`})}function qu(t,e){for(let n of Array.from(t.querySelectorAll("[src], [href]")))for(let i of zu){let r=n.getAttribute(i);if(r==null)continue;let o=ps(r,e);o!==r&&n.setAttribute(i,o)}}function $u(t,e){for(let n of Array.from(t.querySelectorAll("[style]"))){let i=n.getAttribute("style");if(i==null)continue;let r=hs(i,e);r!==i&&n.setAttribute("style",r)}}function Ku(t,e){for(let n of Array.from(t.querySelectorAll("style"))){let i=n.textContent||"",r=hs(i,e);r!==i&&(n.textContent=r)}}function xs(t,e){if(e){qu(t,e),$u(t,e),Ku(t,e);for(let n of Array.from(t.querySelectorAll("template")))xs(n.content,e)}}function Ju(t,e){return`${t}__hf${e}`}var Yu=t=>new Promise(e=>{let n=!1,i=Date.now(),r=null,o=s=>{n||(n=!0,r!=null&&window.clearTimeout(r),e({status:s,elapsedMs:Math.max(0,Date.now()-i)}))};t.addEventListener("load",()=>o("load"),{once:!0}),t.addEventListener("error",()=>o("error"),{once:!0}),r=window.setTimeout(()=>o("timeout"),Gu)});function Ti(t){for(;t.firstChild;)t.removeChild(t.firstChild);t.textContent=""}var Xu=["data-composition-id","data-composition-file","data-start","data-duration","data-end","data-track-index","data-track","data-composition-src","data-hf-authored-duration","data-hf-authored-end"];function Qu(t){let e=document.importNode(t,!0),n=e.getAttribute("id")?.trim();for(let o of Xu)e.removeAttribute(o);n&&(e.removeAttribute("id"),e.setAttribute("data-hf-authored-id",n)),e.setAttribute("data-hf-inner-root","true");let i=e.getAttribute("data-width"),r=e.getAttribute("data-height");return e.style.width=i?`${i}px`:"100%",e.style.height=r?`${r}px`:"100%",e}function ms(t,e){let n=t.trim();if(!n)return t;try{return Uu.test(n)?new URL(n,document.baseURI).toString():e?new URL(n,e).toString():new URL(n,document.baseURI).toString()}catch{return t}}function Zu(t){let e=t.getAttribute("data-variable-values");if(!e)return{};let n;try{n=JSON.parse(e)}catch{return{}}return!n||typeof n!="object"||Array.isArray(n)?{}:n}function Cn(t){let e=(t.getAttribute("data-composition-id")||"").trim()||null;return{authoredCompositionId:(t.getAttribute("data-hf-original-composition-id")||e||"").trim()||null,runtimeCompositionId:e}}function ec(t){let e=new Map;for(let n of t){let i=Cn(n).authoredCompositionId||"";i&&e.set(i,(e.get(i)||0)+1)}return e}function gs(t){let e=Cn(t).authoredCompositionId;return e?!!document.querySelector(`template#${CSS.escape(e)}-template`):!1}function tc(t){return!!t.querySelector(\'[data-hf-inner-root="true"]\')}function nc(t){return t.hasAttribute("data-composition-src")?!0:gs(t)?t.children.length===0||t.hasAttribute("data-hf-original-composition-id")?!0:tc(t):!1}function vi(){return Array.from(document.querySelectorAll("[data-composition-src], [data-composition-id]")).filter(e=>e.hasAttribute("data-composition-src")?!0:gs(e))}function ys(){let t=window.__hfVariablesByComp;if(!t)return;let e=new Set(vi().map(n=>Cn(n).runtimeCompositionId).filter(n=>!!n));for(let n of Object.keys(t))e.has(n)||delete t[n]}function bs(t,e=ec(t)){let n=new Map,i=new Map;for(let r of t){let{authoredCompositionId:o,runtimeCompositionId:s}=Cn(r),l=nc(r);if(!o){i.set(r,{authoredCompositionId:null,runtimeCompositionId:s});continue}let a=(e.get(o)||0)>1,c=s||o;if(l){let u=a?(n.get(o)||0)+1:0;a&&n.set(o,u),c=a?Ju(o,u):o,a?r.setAttribute("data-hf-original-composition-id",o):r.removeAttribute("data-hf-original-composition-id"),r.setAttribute("data-composition-id",c),s&&s!==c&&window.__hfVariablesByComp&&delete window.__hfVariablesByComp[s]}i.set(r,{authoredCompositionId:o,runtimeCompositionId:c})}return i}async function Li(t){let e=null;t.authoredCompositionId&&(e=Array.from(t.sourceNode.querySelectorAll("[data-composition-id]")).find(x=>x.getAttribute("data-composition-id")===t.authoredCompositionId)??null);let n=e??t.sourceNode,i=e?.getAttribute("data-composition-id")?.trim()||t.authoredCompositionId||null,r=t.runtimeCompositionId||i||null,o=e?.getAttribute("id")?.trim()||null,s=r?`[data-composition-id="${CSS.escape(r)}"]`:void 0;if(t.headLinks)for(let f of t.headLinks){let x=f.getAttribute("href")||"";x&&(document.head.querySelector(`link[href="${CSS.escape(x)}"]`)||document.head.appendChild(f.cloneNode(!0)))}if(t.headStyles)for(let f of t.headStyles){let x=f.cloneNode(!0);x instanceof HTMLStyleElement&&(i&&(x.textContent=Ni(x.textContent||"",i,s,o)),document.head.appendChild(x),t.injectedStyles.push(x))}let l=Array.from(n.querySelectorAll("style"));for(let f of l){let x=f.cloneNode(!0);x instanceof HTMLStyleElement&&(i&&(x.textContent=Ni(x.textContent||"",i,s,o)),document.head.appendChild(x),t.injectedStyles.push(x))}let a=[];if(t.headScripts)for(let f of t.headScripts){let x=f.getAttribute("type")?.trim()??"",E=f.getAttribute("src")?.trim()??"";if(E){let g=ms(E,t.compositionUrl);a.push({kind:"external",src:g,type:x})}else{let g=f.textContent?.trim()??"";g&&a.push({kind:"inline",content:g,type:x,scopeCompositionId:i})}}let c=Array.from(n.querySelectorAll("script")),u=[...a];for(let f of c){let x=f.getAttribute("type")?.trim()??"",E=f.getAttribute("src")?.trim()??"";if(E){let g=ms(E,t.compositionUrl);u.push({kind:"external",src:g,type:x})}else{let g=f.textContent?.trim()??"";g&&u.push({kind:"inline",content:g,type:x,scopeCompositionId:i})}f.parentNode?.removeChild(f)}let m=Array.from(n.querySelectorAll("style"));for(let f of m)f.parentNode?.removeChild(f);if(e){let f=e.getAttribute("data-width"),x=e.getAttribute("data-height"),E=t.parseDimensionPx(f),g=t.parseDimensionPx(x);f&&t.host.setAttribute("data-width",f),x&&t.host.setAttribute("data-height",x),E&&t.host instanceof HTMLElement&&(t.host.style.width=E),g&&t.host instanceof HTMLElement&&(t.host.style.height=g),e.hasAttribute("data-timeline-locked")&&t.host.setAttribute("data-timeline-locked",""),t.host.appendChild(Qu(e))}else t.hasTemplate?t.host.appendChild(document.importNode(n,!0)):t.host.innerHTML=t.fallbackBodyInnerHtml;if(r){let f={...t.declaredVariableDefaults??{},...Zu(t.host)};Object.keys(f).length>0?(window.__hfVariablesByComp||(window.__hfVariablesByComp={}),window.__hfVariablesByComp[r]=f):window.__hfVariablesByComp&&delete window.__hfVariablesByComp[r]}for(let f of u){let x=document.createElement("script");if(f.type&&(x.type=f.type),x.async=!1,f.kind==="external"?x.src=f.src:f.type.toLowerCase()==="module"?x.textContent=f.content:f.scopeCompositionId?x.textContent=ds(f.content,f.scopeCompositionId,"[HyperFrames] composition script error:",s,r||f.scopeCompositionId,o):x.textContent=`(function(){${f.content}})();`,document.body.appendChild(x),t.injectedScripts.push(x),f.kind==="external"){let E=await Yu(x);E.status!=="load"&&t.onDiagnostic?.({code:"external_composition_script_load_issue",details:{hostCompositionId:t.authoredCompositionId,runtimeCompositionId:t.runtimeCompositionId,hostCompositionSrc:t.hostCompositionSrc,resolvedScriptSrc:f.src,loadStatus:E.status,elapsedMs:E.elapsedMs}})}}}async function Ss(t){let e=vi();if(ys(),e.length===0)return;let n=bs(e),i=e.filter(r=>{if(r.hasAttribute("data-composition-src")||r.children.length>0)return!1;let o=n.get(r)?.authoredCompositionId;return o?!!document.querySelector(`template#${CSS.escape(o)}-template`):!1});if(i.length!==0)for(let r of i){let o=n.get(r),s=o?.authoredCompositionId;if(!s)continue;let l=document.querySelector(`template#${CSS.escape(s)}-template`);Ti(r),await Li({host:r,authoredCompositionId:s,runtimeCompositionId:o?.runtimeCompositionId||s,hostCompositionSrc:`template#${s}-template`,sourceNode:l.content,hasTemplate:!0,fallbackBodyInnerHtml:"",compositionUrl:null,injectedStyles:t.injectedStyles,injectedScripts:t.injectedScripts,parseDimensionPx:t.parseDimensionPx,onDiagnostic:t.onDiagnostic})}}async function As(t){let e=vi();if(ys(),e.length===0)return;let n=bs(e),i=e.filter(r=>r.hasAttribute("data-composition-src"));i.length!==0&&await Promise.all(i.map(async r=>{let o=r.getAttribute("data-composition-src");if(!o)return;let s=n.get(r),l=s?.authoredCompositionId||null,a=s?.runtimeCompositionId||l||null,c=null;try{c=new URL(o,document.baseURI)}catch{c=null}Ti(r);try{let u=l!=null?document.querySelector(`template#${CSS.escape(l)}-template`):null;if(u){await Li({host:r,authoredCompositionId:l,runtimeCompositionId:a,hostCompositionSrc:o,sourceNode:u.content,hasTemplate:!0,fallbackBodyInnerHtml:"",compositionUrl:c,injectedStyles:t.injectedStyles,injectedScripts:t.injectedScripts,parseDimensionPx:t.parseDimensionPx,onDiagnostic:t.onDiagnostic});return}let m=await fetch(o);if(!m.ok)throw new Error(`HTTP ${m.status}`);let f=await m.text(),E=new DOMParser().parseFromString(f,"text/html");xs(E,c);let g=(l?E.querySelector(`template#${CSS.escape(l)}-template`):null)??E.querySelector("template"),S=g?g.content:E.body,_=g?void 0:Array.from(E.head.querySelectorAll("style")),v=g?void 0:Array.from(E.head.querySelectorAll("script")),R=g?void 0:Array.from(E.head.querySelectorAll(\'link[rel="stylesheet"], link[rel="preconnect"]\'));await Li({host:r,authoredCompositionId:l,runtimeCompositionId:a,hostCompositionSrc:o,sourceNode:S,hasTemplate:!!g,fallbackBodyInnerHtml:E.body.innerHTML,compositionUrl:c,injectedStyles:t.injectedStyles,injectedScripts:t.injectedScripts,parseDimensionPx:t.parseDimensionPx,headStyles:_,headScripts:v,headLinks:R,declaredVariableDefaults:_i(E.documentElement),onDiagnostic:t.onDiagnostic})}catch(u){t.onDiagnostic?.({code:"external_composition_load_failed",details:{hostCompositionId:l,runtimeCompositionId:a,hostCompositionSrc:o,errorMessage:u instanceof Error?u.message:"unknown_error"}}),Ti(r)}}))}function ic(t){return t instanceof HTMLElement?t.dataset.captionWrapper!=="true"?t:t.querySelector(":scope > span")??null:null}function rc(){let t=[],e=document.querySelectorAll(".caption-group");for(let n of e)for(let i of n.children){if(!(i instanceof HTMLElement))continue;let r=i.dataset.captionWrapper==="true"?i.querySelector(":scope > span"):i.tagName==="SPAN"?i:null;r&&t.push(r)}return t}function oc(t){let e=t.parentElement;if(e?.dataset.captionWrapper==="true")return e;let n=document.createElement("span");return n.style.display="inline-block",n.dataset.captionWrapper="true",t.parentNode?.insertBefore(n,t),n.appendChild(t),n}function Ri(){let t=window.gsap;t&&document.querySelectorAll(".caption-group").length!==0&&fetch("caption-overrides.json").then(e=>e.ok?e.json():null).then(e=>{if(!e||!Array.isArray(e)||e.length===0)return;let n=rc();for(let i of e){let r=null;if(i.wordId&&(r=ic(document.getElementById(i.wordId))),!r&&i.wordIndex!==void 0&&(r=n[i.wordIndex]??null),!r)continue;let o={},s={};if(i.x!==void 0&&(o.x=i.x),i.y!==void 0&&(o.y=i.y),i.scale!==void 0&&(o.scale=i.scale),i.rotation!==void 0&&(o.rotation=i.rotation),i.opacity!==void 0&&(s.opacity=i.opacity),i.fontSize!==void 0&&(s.fontSize=`${i.fontSize}px`),i.fontWeight!==void 0&&(s.fontWeight=i.fontWeight),i.fontFamily!==void 0&&(s.fontFamily=i.fontFamily),i.activeColor||i.dimColor){let a=t.getTweensOf(r).filter(u=>u.vars.color!==void 0).sort((u,m)=>u.startTime()-m.startTime()),c=a.length>0?String(a[0].vars.color):"";for(let u of a)String(u.vars.color)===c?i.dimColor&&(u.vars.color=i.dimColor):i.activeColor&&(u.vars.color=i.activeColor);i.dimColor&&t.set(r,{color:i.dimColor})}if(Object.keys(s).length>0&&t.set(r,s),Object.keys(o).length>0){let l=oc(r);t.set(l,o)}}}).catch(()=>{})}var Yt="data-color-grading",sc="rec709",Ye={exposure:0,contrast:0,highlights:0,shadows:0,whites:0,blacks:0,temperature:0,tint:0,saturation:0},Es=["exposure","contrast","highlights","shadows","whites","blacks","temperature","tint","saturation"],ac=[{id:"neutral",label:"Neutral",adjust:{...Ye}},{id:"warm-clean",label:"Warm Clean",adjust:{...Ye,exposure:.05,contrast:.08,highlights:-.08,shadows:.08,temperature:.16,saturation:.06}},{id:"cool-clean",label:"Cool Clean",adjust:{...Ye,contrast:.06,highlights:-.06,shadows:.06,temperature:-.12,tint:.04,saturation:.04}},{id:"soft-boost",label:"Soft Boost",adjust:{...Ye,exposure:.06,contrast:-.04,highlights:-.14,shadows:.16,saturation:.1}},{id:"bright-pop",label:"Bright Pop",adjust:{...Ye,exposure:.12,contrast:.12,whites:.08,blacks:-.04,saturation:.14}},{id:"deep-contrast",label:"Deep Contrast",adjust:{...Ye,exposure:-.03,contrast:.2,highlights:-.08,shadows:-.08,blacks:-.12,saturation:.06}}],lc=new Map(ac.map(t=>[t.id,t])),uc=/^\\$(?:\\{([A-Za-z0-9_.:-]+)\\}|([A-Za-z0-9_.:-]+))$/,cc={exposure:{min:-2,max:2},contrast:{min:-1,max:1},highlights:{min:-1,max:1},shadows:{min:-1,max:1},whites:{min:-1,max:1},blacks:{min:-1,max:1},temperature:{min:-1,max:1},tint:{min:-1,max:1},saturation:{min:-1,max:1}};function Jt(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}function dc(t,e,n){return Number.isFinite(t)?Math.min(n,Math.max(e,t)):0}function ws(t,e){let n=typeof t=="number"?t:Number(t);return Number.isFinite(n)?Math.min(1,Math.max(0,n)):e}function fc(t,e){let n=typeof t=="number"?t:Number(t);if(!Number.isFinite(n))return 0;let i=cc[e];return dc(n,i.min,i.max)}function mc(t){if(t==null)return null;let e=String(t).trim();return e||null}function pc(t){if(t==null)return null;if(typeof t=="string"){let n=t.trim();return n?{src:n,intensity:1}:null}if(!Jt(t))return null;let e=t.src;return typeof e!="string"||e.trim()===""?null:{src:e.trim(),intensity:ws(t.intensity,1)}}function hc(t){if(typeof t=="string"){let e=t.trim();if(!e)return null;if(e.startsWith("{"))try{let n=JSON.parse(e);return Jt(n)?n:null}catch{return null}return{preset:e,intensity:1}}return Jt(t)?t:null}function xc(t,e){let n=t.trim().match(uc);if(!n)return t;let i=n[1]??n[2]??"";return i&&Object.hasOwn(e,i)?e[i]:t}function ki(t,e){if(typeof t=="string"){let i=xc(t,e);if(i!==t)return i;let r=t.trim();if(!r.startsWith("{"))return t;try{return ki(JSON.parse(r),e)}catch{return t}}if(!Jt(t))return t;let n={};for(let[i,r]of Object.entries(t))n[i]=ki(r,e);return n}function gc(t){return t?lc.get(t)??null:null}function Di(t){let e=hc(t);if(!e||e.enabled===!1)return null;let n=mc(e.preset),r=gc(n)?.adjust??Ye,o=Jt(e.adjust)?e.adjust:{},s=Es.reduce((l,a)=>(l[a]=fc(o[a]??r[a],a),l),{...Ye});return{enabled:!0,preset:n,intensity:ws(e.intensity,1),adjust:s,lut:pc(e.lut),colorSpace:typeof e.colorSpace=="string"&&e.colorSpace.trim()?e.colorSpace.trim():sc}}function Cs(t,e){return Di(ki(t,e))}function Xt(t){return!t?.enabled||t.intensity===0?!1:t.lut&&t.lut.intensity!==0?!0:Es.some(e=>Math.abs(t.adjust[e])>1e-4)}var we=class extends Error{constructor(n,i=null){super(i==null?n:`${n} at line ${i}`);ye(this,"lineNumber");this.name="CubeLutParseError",this.lineNumber=i}},yc=[0,0,0],bc=[1,1,1],Sc=64;function Ac(t){let e=!1;for(let n=0;n<t.length;n++){let i=t[n];if(i===\'"\'&&(e=!e),i==="#"&&!e)return t.slice(0,n)}return t}function ht(t,e){let n=Number(t);if(!Number.isFinite(n))throw new we(`Invalid number "${t}"`,e);return n}function Fs(t,e,n){if(t.length!==3)throw new we(`${e} expects three numbers`,n);return[ht(t[0],n),ht(t[1],n),ht(t[2],n)]}function Ms(t,e,n){if(!t)throw new we(`${e} expects a size`,n);let i=Number(t);if(!Number.isInteger(i)||i<2)throw new we(`${e} must be an integer greater than 1`,n);return i}function Ec(t,e){if(e[0]<=t[0]||e[1]<=t[1]||e[2]<=t[2])throw new we("DOMAIN_MAX values must be greater than DOMAIN_MIN values")}function wc(t){let e=/^TITLE\\s+"([^"]*)"\\s*$/i.exec(t);if(e)return e[1]??null;let n=/^TITLE\\s+(.+)\\s*$/i.exec(t);return n&&(n[1]??"").trim()||null}function Cc(t){return/^[+-]?(?:\\d|\\.\\d)/.test(t)}function Ns(t,e={}){let n=e.maxSize??Sc,i=null,r=yc,o=bc,s=null,l=null,a=[],c=t.replace(/^\\uFEFF/,"").split(/\\r?\\n/);for(let m=0;m<c.length;m++){let f=m+1,x=Ac(c[m]??"").trim();if(!x)continue;let E=x.split(/\\s+/),g=(E[0]??"").toUpperCase(),S=E.slice(1);if(g==="TITLE"){i=wc(x);continue}if(g==="DOMAIN_MIN"){r=Fs(S,g,f);continue}if(g==="DOMAIN_MAX"){o=Fs(S,g,f);continue}if(g==="LUT_1D_SIZE"){s=Ms(S[0],g,f);continue}if(g==="LUT_3D_SIZE"){if(l=Ms(S[0],g,f),l>n)throw new we(`LUT_3D_SIZE ${l} exceeds max ${n}`,f);continue}if(!Cc(g)){if(g.startsWith("LUT_"))throw new we(`Unsupported cube keyword ${g}`,f);continue}if(!l)throw s?new we("1D cube LUTs are not supported yet",f):new we("LUT data appears before LUT_3D_SIZE",f);if(E.length!==3)throw new we("LUT data rows must contain three numbers",f);a.push(ht(E[0],f),ht(E[1],f),ht(E[2],f))}if(s&&l)throw new we("Mixed 1D and 3D cube LUTs are not supported yet");if(!l)throw s?new we("1D cube LUTs are not supported yet"):new we("Missing LUT_3D_SIZE");Ec(r,o);let u=l*l*l;if(a.length!==u*3)throw new we(`Expected ${u} LUT rows for size ${l}, found ${a.length/3}`);return{title:i,size:l,domainMin:r,domainMax:o,data:new Float32Array(a)}}function Fc(t){return Number.isFinite(t)?Math.min(1,Math.max(0,t)):0}function Ii(t){return Math.round(Fc(t)*255)}function _s(t){let e=t.size,n=e*e,i=e,r=new Uint8Array(n*i*4);for(let o=0;o<e;o++)for(let s=0;s<e;s++)for(let l=0;l<e;l++){let a=((o*e+s)*e+l)*3,c=(s*n+o*e+l)*4;r[c]=Ii(t.data[a]??0),r[c+1]=Ii(t.data[a+1]??0),r[c+2]=Ii(t.data[a+2]??0),r[c+3]=255}return{width:n,height:i,data:r}}var Fn=new Map,Mc="data-hf-color-grading-canvas",ks="data-hf-color-grading-source-hidden",Nc="__hf_color_grading_canvas__",_c=64,Qt={enabled:!1,position:.5,softness:0,lineWidth:2};function Tc(t){let e=window,i=t.closest("[data-composition-id]")?.getAttribute("data-composition-id")?.trim()??"",r=i?e.__hfVariablesByComp?.[i]:void 0;if(r)return r;let o=e.__hyperframes?.getVariables?.();return o&&typeof o=="object"?o:e.__hfVariables??{}}function Pi(t){let e=t.getAttribute(Yt);return e==null?null:Cs(e,Tc(t))}var Lc=["attribute vec2 a_pos;","varying vec2 v_uv;","void main(){"," v_uv = a_pos * 0.5 + 0.5;"," gl_Position = vec4(a_pos, 0.0, 1.0);","}"].join(`\n`),vc=["#ifdef GL_FRAGMENT_PRECISION_HIGH","precision highp float;","#else","precision mediump float;","#endif","varying vec2 v_uv;","uniform sampler2D u_source;","uniform sampler2D u_lut;","uniform vec2 u_resolution;","uniform vec2 u_uvScale;","uniform vec2 u_uvOffset;","uniform float u_lutEnabled;","uniform float u_lutSize;","uniform vec2 u_lutTextureSize;","uniform vec3 u_lutDomainMin;","uniform vec3 u_lutDomainMax;","uniform float u_lutIntensity;","uniform float u_exposure;","uniform float u_contrast;","uniform float u_highlights;","uniform float u_shadows;","uniform float u_whites;","uniform float u_blacks;","uniform float u_temperature;","uniform float u_tint;","uniform float u_saturation;","uniform float u_intensity;","uniform float u_compareEnabled;","uniform float u_comparePosition;","uniform float u_compareSoftness;","uniform float u_compareLineWidth;","float lumaOf(vec3 c){ return dot(c, vec3(0.2126, 0.7152, 0.0722)); }","vec3 sampleLut(float r, float g, float b){"," float size = max(u_lutSize, 2.0);"," float x = (r + b * size + 0.5) / max(u_lutTextureSize.x, 1.0);"," float y = (g + 0.5) / max(u_lutTextureSize.y, 1.0);"," return texture2D(u_lut, vec2(x, y)).rgb;","}","vec3 applyLut(vec3 color){"," if (u_lutEnabled < 0.5) return color;"," float size = max(u_lutSize, 2.0);"," vec3 span = max(u_lutDomainMax - u_lutDomainMin, vec3(0.00001));"," vec3 scaled = clamp((color - u_lutDomainMin) / span, 0.0, 1.0) * (size - 1.0);"," vec3 lo = floor(scaled);"," vec3 hi = min(lo + 1.0, vec3(size - 1.0));"," vec3 f = scaled - lo;"," vec3 c000 = sampleLut(lo.r, lo.g, lo.b);"," vec3 c100 = sampleLut(hi.r, lo.g, lo.b);"," vec3 c010 = sampleLut(lo.r, hi.g, lo.b);"," vec3 c110 = sampleLut(hi.r, hi.g, lo.b);"," vec3 c001 = sampleLut(lo.r, lo.g, hi.b);"," vec3 c101 = sampleLut(hi.r, lo.g, hi.b);"," vec3 c011 = sampleLut(lo.r, hi.g, hi.b);"," vec3 c111 = sampleLut(hi.r, hi.g, hi.b);"," vec3 c00 = mix(c000, c100, f.r);"," vec3 c10 = mix(c010, c110, f.r);"," vec3 c01 = mix(c001, c101, f.r);"," vec3 c11 = mix(c011, c111, f.r);"," vec3 c0 = mix(c00, c10, f.g);"," vec3 c1 = mix(c01, c11, f.g);"," vec3 lutColor = mix(c0, c1, f.b);"," return mix(color, lutColor, clamp(u_lutIntensity, 0.0, 1.0));","}","void main(){"," vec2 uv = (v_uv - u_uvOffset) / u_uvScale;"," if (uv.x < 0.0 || uv.y < 0.0 || uv.x > 1.0 || uv.y > 1.0) {"," gl_FragColor = vec4(0.0);"," return;"," }"," vec4 sampleColor = texture2D(u_source, uv);"," vec3 original = sampleColor.rgb;"," vec3 color = original * pow(2.0, u_exposure);"," float y = lumaOf(color);"," float shadowMask = 1.0 - smoothstep(0.0, 0.65, y);"," float highlightMask = smoothstep(0.35, 1.0, y);"," color += u_shadows * 0.35 * shadowMask;"," color += u_highlights * 0.35 * highlightMask;"," color += u_blacks * 0.25 * (1.0 - smoothstep(0.0, 0.35, y));"," color += u_whites * 0.25 * smoothstep(0.65, 1.0, y);"," color.r += u_temperature * 0.08 + u_tint * 0.04;"," color.b -= u_temperature * 0.08 - u_tint * 0.04;"," color.g -= u_tint * 0.08;"," color = (color - 0.5) * max(0.0, 1.0 + u_contrast) + 0.5;"," float satLuma = lumaOf(color);"," color = mix(vec3(satLuma), color, max(0.0, 1.0 + u_saturation));"," color = clamp(color, 0.0, 1.0);"," color = clamp(applyLut(color), 0.0, 1.0);"," vec3 graded = mix(original, color, u_intensity);"," if (u_compareEnabled > 0.5) {"," float pos = clamp(u_comparePosition, 0.0, 1.0);"," float softness = max(u_compareSoftness, 0.00001);"," float afterMask = smoothstep(pos - softness, pos + softness, v_uv.x);"," vec3 splitColor = mix(original, graded, afterMask);"," float lineMask = 0.0;"," if (u_compareLineWidth > 0.0) {"," float lineWidth = max(u_compareLineWidth / max(u_resolution.x, 1.0), 0.00001);"," lineMask = 1.0 - smoothstep(lineWidth, lineWidth * 1.8, abs(v_uv.x - pos));"," }"," gl_FragColor = vec4(mix(splitColor, vec3(1.0), lineMask * 0.82), sampleColor.a);"," return;"," }"," gl_FragColor = vec4(graded, sampleColor.a);","}"].join(`\n`);function st(t){return t instanceof HTMLVideoElement||t instanceof HTMLImageElement}function Ts(t,e,n){let i=t.createShader(n);return i?(t.shaderSource(i,e),t.compileShader(i),t.getShaderParameter(i,t.COMPILE_STATUS)?i:(L("runtime.colorGrading.compileShader",t.getShaderInfoLog(i)),t.deleteShader(i),null)):null}function Rc(t){let e=Ts(t,Lc,t.VERTEX_SHADER),n=Ts(t,vc,t.FRAGMENT_SHADER);if(!e||!n)return e&&t.deleteShader(e),n&&t.deleteShader(n),null;let i=t.createProgram();return i?(t.attachShader(i,e),t.attachShader(i,n),t.linkProgram(i),t.deleteShader(e),t.deleteShader(n),t.getProgramParameter(i,t.LINK_STATUS)?i:(L("runtime.colorGrading.linkProgram",t.getProgramInfoLog(i)),t.deleteProgram(i),null)):null}function Ls(t,e=t.LINEAR){let n=t.createTexture();return n?(t.bindTexture(t.TEXTURE_2D,n),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,e),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,1,1,0,t.RGBA,t.UNSIGNED_BYTE,null),n):null}function kc(t){let e=t.getContext("webgl",{alpha:!0,premultipliedAlpha:!1,preserveDrawingBuffer:!0});if(!e)return null;let n=Rc(e),i=Ls(e),r=Ls(e,e.NEAREST);if(!n||!i||!r)return n&&e.deleteProgram(n),i&&e.deleteTexture(i),r&&e.deleteTexture(r),null;let o=e.createBuffer();return o?(e.bindBuffer(e.ARRAY_BUFFER,o),e.bufferData(e.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,-1,1,1,1]),e.STATIC_DRAW),{gl:e,program:{program:n,texture:i,lutTexture:r,position:e.getAttribLocation(n,"a_pos"),source:e.getUniformLocation(n,"u_source"),lut:e.getUniformLocation(n,"u_lut"),resolution:e.getUniformLocation(n,"u_resolution"),uvScale:e.getUniformLocation(n,"u_uvScale"),uvOffset:e.getUniformLocation(n,"u_uvOffset"),lutEnabled:e.getUniformLocation(n,"u_lutEnabled"),lutSize:e.getUniformLocation(n,"u_lutSize"),lutTextureSize:e.getUniformLocation(n,"u_lutTextureSize"),lutDomainMin:e.getUniformLocation(n,"u_lutDomainMin"),lutDomainMax:e.getUniformLocation(n,"u_lutDomainMax"),lutIntensity:e.getUniformLocation(n,"u_lutIntensity"),exposure:e.getUniformLocation(n,"u_exposure"),contrast:e.getUniformLocation(n,"u_contrast"),highlights:e.getUniformLocation(n,"u_highlights"),shadows:e.getUniformLocation(n,"u_shadows"),whites:e.getUniformLocation(n,"u_whites"),blacks:e.getUniformLocation(n,"u_blacks"),temperature:e.getUniformLocation(n,"u_temperature"),tint:e.getUniformLocation(n,"u_tint"),saturation:e.getUniformLocation(n,"u_saturation"),intensity:e.getUniformLocation(n,"u_intensity"),compareEnabled:e.getUniformLocation(n,"u_compareEnabled"),comparePosition:e.getUniformLocation(n,"u_comparePosition"),compareSoftness:e.getUniformLocation(n,"u_compareSoftness"),compareLineWidth:e.getUniformLocation(n,"u_compareLineWidth")}}):(e.deleteProgram(n),e.deleteTexture(i),e.deleteTexture(r),null)}function Dc(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}function Ic(t){if(!Dc(t))return{...Qt};let e=(n,i,r,o)=>{let s=typeof n=="number"?n:Number(n);return Math.min(o,Math.max(r,Number.isFinite(s)?s:i))};return{enabled:t.enabled===!0,position:e(t.position,Qt.position,0,1),softness:e(t.softness,Qt.softness,0,.25),lineWidth:e(t.lineWidth,Qt.lineWidth,0,12)}}function Ds(t){try{let e=new URL(t,document.baseURI);return e.protocol==="data:"?{href:e.href}:e.protocol!=="http:"&&e.protocol!=="https:"?{error:"LUT must be project-local or a data URL"}:e.origin!==window.location.origin?{error:"Remote LUT URLs are not supported"}:{href:e.href}}catch{return{error:"Invalid LUT URL"}}}function Bi(t){return t instanceof Error?t.message:"LUT failed to load"}function Pc(t){let e=Ds(t);if("error"in e)return{state:"error",message:e.error};let n=Fn.get(e.href);if(n)return n;let i=fetch(e.href,{credentials:"same-origin"}).then(o=>{if(!o.ok)throw new Error(`Failed to load LUT (${o.status})`);return o.text()}).then(o=>Ns(o,{maxSize:_c})),r={state:"pending",promise:i};return Fn.set(e.href,r),i.then(o=>Fn.set(e.href,{state:"ready",lut:o}),o=>Fn.set(e.href,{state:"error",message:Bi(o)})),r}function vs(t,e,n){if(t.lut?.src===e)return t.lut;let i=_s(n),{gl:r,program:o}=t;try{return r.activeTexture(r.TEXTURE1),r.bindTexture(r.TEXTURE_2D,o.lutTexture),r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1),r.texImage2D(r.TEXTURE_2D,0,r.RGBA,i.width,i.height,0,r.RGBA,r.UNSIGNED_BYTE,i.data),t.lut={src:e,title:n.title,size:n.size,domainMin:n.domainMin,domainMax:n.domainMax,textureWidth:i.width,textureHeight:i.height},t.lutError=null,t.lutLoadingSrc=null,t.lut}catch(s){return t.lut=null,t.lutError=Bi(s),t.lutLoadingSrc=null,L("runtime.colorGrading.uploadLut",s),null}}function Oc(t){let e=t.grading.lut?.src.trim()??"",n=t.grading.lut?.intensity??1;if(!e||n<=0)return t.lut=null,t.lutLoadingSrc=null,t.lutError=null,null;let i=Ds(e);if("error"in i)return t.lut=null,t.lutLoadingSrc=null,t.lutError=i.error,null;if(t.lut?.src===i.href)return t.lut;t.lut=null;let r=Pc(e);return r.state==="ready"?vs(t,i.href,r.lut):r.state==="error"?(t.lutError=r.message,t.lutLoadingSrc=null,null):(t.lutLoadingSrc!==i.href&&(t.lutLoadingSrc=i.href,t.lutError=null,r.promise.then(o=>{t.destroyed||t.grading.lut?.src.trim()!==e||(vs(t,i.href,o),Ve(t))},o=>{t.destroyed||t.grading.lut?.src.trim()!==e||(t.lut=null,t.lutError=Bi(o),t.lutLoadingSrc=null,Ve(t))})),null)}function Oi(t){if(!t)return null;if(typeof t=="string"){let e=t.trim();if(!e)return null;let n=document.getElementById(e.replace(/^#/,""));if(n&&st(n))return n;try{let i=document.querySelector(e);return i&&st(i)?i:null}catch{return null}}if(t.hfId){let e=document.querySelector(`[data-hf-id="${CSS.escape(t.hfId)}"]`);if(e&&st(e))return e}if(t.id){let e=document.getElementById(t.id);if(e&&st(e))return e}if(!t.selector)return null;try{let e=Array.from(document.querySelectorAll(t.selector)),n=Math.max(0,Math.floor(Number(t.selectorIndex??0)||0)),i=e[n]??null;return i&&st(i)?i:null}catch{return null}}function Bc(t){return t instanceof HTMLVideoElement?t.videoWidth>0&&t.videoHeight>0?{width:t.videoWidth,height:t.videoHeight}:null:t instanceof HTMLImageElement&&t.naturalWidth>0&&t.naturalHeight>0?{width:t.naturalWidth,height:t.naturalHeight}:null}function Is(t){return t instanceof HTMLVideoElement?t.readyState>=HTMLMediaElement.HAVE_CURRENT_DATA&&t.videoWidth>0&&t.videoHeight>0:t instanceof HTMLImageElement?t.complete&&t.naturalWidth>0&&t.naturalHeight>0:!1}function Hc(t){if(!t.id)return null;let e=document.getElementById(`__render_frame_${t.id}__`);return e instanceof HTMLImageElement&&Is(e)?e:null}function Wc(t){if(t instanceof HTMLVideoElement){let e=Hc(t);if(e)return e}return Is(t)?t:null}function Rs(t,e){let n=t.toLowerCase();if(n==="center")return .5;if(e==="x"){if(n==="left")return 0;if(n==="right")return 1}else{if(n==="top")return 0;if(n==="bottom")return 1}if(n.endsWith("%")){let i=Number.parseFloat(n);return Number.isFinite(i)?i/100:null}return null}function Gc(t){let e=t.trim().split(/\\s+/).filter(Boolean),n=.5,i=.5;for(let r=0;r<e.length;r++){let o=e[r]??"",s=Rs(o,"x"),l=Rs(o,"y");if(s!==null&&(o==="left"||o==="right"||o.endsWith("%")&&r===0)){n=s;continue}if(l!==null&&(o==="top"||o==="bottom"||o.endsWith("%")&&r>0)){i=l;continue}}return{x:n,y:i}}function Uc(t,e,n,i,r,o){if(t<=0||e<=0||n<=0||i<=0)return{scaleX:1,scaleY:1,offsetX:0,offsetY:0};let s=r||"fill",l=t,a=e;if(s==="contain"||s==="cover"||s==="scale-down"){let f=s==="cover"?Math.max(t/n,e/i):Math.min(t/n,e/i);l=n*f,a=i*f,s==="scale-down"&&l>n&&a>i&&(l=n,a=i)}else s==="none"&&(l=n,a=i);let c=Gc(o||"center"),u=(t-l)*c.x/t,m=(e-a)*c.y/e;return{scaleX:l/t,scaleY:a/e,offsetX:u,offsetY:m}}function Vc(t,e){window.getComputedStyle(e).position==="static"&&(t.touchedParent||(t.touchedParent=e,t.parentInlinePosition=e.style.position||null),e.style.position="relative")}function zc(t,e){let{element:n,canvas:i}=t,r=n.parentElement;r&&Vc(t,r);let o=window.getComputedStyle(e);Nr(i.style,o),i.style.pointerEvents="none",i.style.position="absolute",i.style.inset="auto",i.style.left=`${n.offsetLeft}px`,i.style.top=`${n.offsetTop}px`,i.style.right="auto",i.style.bottom="auto",i.style.width=`${n.offsetWidth}px`,i.style.height=`${n.offsetHeight}px`,i.style.display="block",i.style.opacity=t.sourceOpacityForCanvas,i.style.visibility=t.sourceVisibleForCanvas?"visible":"hidden";let s=n.getBoundingClientRect(),l=Math.max(0,Math.round(n.offsetWidth||s.width)),a=Math.max(0,Math.round(n.offsetHeight||s.height));return l<=0||a<=0?(i.style.display="none",null):(i.width!==l&&(i.width=l),i.height!==a&&(i.height=a),{width:l,height:a})}function jc(t,e,n,i,r,o,s){t.uniform1i(e.source,0),t.uniform1i(e.lut,1),t.uniform2f(e.resolution,o.width,o.height),t.uniform2f(e.uvScale,s.scaleX,s.scaleY),t.uniform2f(e.uvOffset,s.offsetX,s.offsetY),t.uniform1f(e.lutEnabled,i?1:0),t.uniform1f(e.lutSize,i?.size??2),t.uniform2f(e.lutTextureSize,i?.textureWidth??1,i?.textureHeight??1),t.uniform3f(e.lutDomainMin,i?.domainMin[0]??0,i?.domainMin[1]??0,i?.domainMin[2]??0),t.uniform3f(e.lutDomainMax,i?.domainMax[0]??1,i?.domainMax[1]??1,i?.domainMax[2]??1),t.uniform1f(e.lutIntensity,n.lut?.intensity??0),t.uniform1f(e.exposure,n.adjust.exposure),t.uniform1f(e.contrast,n.adjust.contrast),t.uniform1f(e.highlights,n.adjust.highlights),t.uniform1f(e.shadows,n.adjust.shadows),t.uniform1f(e.whites,n.adjust.whites),t.uniform1f(e.blacks,n.adjust.blacks),t.uniform1f(e.temperature,n.adjust.temperature),t.uniform1f(e.tint,n.adjust.tint),t.uniform1f(e.saturation,n.adjust.saturation),t.uniform1f(e.intensity,n.intensity),t.uniform1f(e.compareEnabled,r.enabled?1:0),t.uniform1f(e.comparePosition,r.position),t.uniform1f(e.compareSoftness,r.softness),t.uniform1f(e.compareLineWidth,r.lineWidth)}function qc(t){t.sourceHidden||(t.sourceInlineOpacity=t.element.style.getPropertyValue("opacity")||null,t.sourceInlineOpacityPriority=t.element.style.getPropertyPriority("opacity")),t.element.setAttribute(ks,"true"),t.element.style.setProperty("opacity","0","important"),t.sourceHidden=!0}function Ve(t){if(t.destroyed)return!1;let e=Wc(t.element);if(!e)return t.hasDrawn||(t.canvas.style.display="none"),!1;let n=Bc(e);if(!n)return!1;let i=e instanceof HTMLElement?e:t.element,r=t.element.style.getPropertyValue("opacity"),o=t.element.style.getPropertyPriority("opacity"),s=t.sourceHidden&&r==="0"&&o==="important",l=t.element.style.getPropertyValue("visibility");if(!s){let x=window.getComputedStyle(t.element);t.sourceOpacityForCanvas=x.opacity||"1",t.sourceVisibleForCanvas=l!=="hidden"&&x.visibility!=="hidden"}let a=zc(t,i);if(!a)return!1;let c=window.getComputedStyle(i),u=Uc(a.width,a.height,n.width,n.height,c.objectFit,c.objectPosition),{gl:m,program:f}=t;try{let x=Oc(t);return m.viewport(0,0,a.width,a.height),m.useProgram(f.program),m.activeTexture(m.TEXTURE0),m.bindTexture(m.TEXTURE_2D,f.texture),m.pixelStorei(m.UNPACK_FLIP_Y_WEBGL,!0),m.texImage2D(m.TEXTURE_2D,0,m.RGBA,m.RGBA,m.UNSIGNED_BYTE,e),m.activeTexture(m.TEXTURE1),m.bindTexture(m.TEXTURE_2D,f.lutTexture),jc(m,f,t.grading,x,t.compare,a,u),m.enableVertexAttribArray(f.position),m.vertexAttribPointer(f.position,2,m.FLOAT,!1,0,0),m.drawArrays(m.TRIANGLE_STRIP,0,4),qc(t),t.hasDrawn=!0,!0}catch(x){return L("runtime.colorGrading.drawEntry",x),!1}}function Xe(t,e,n,i){e.addEventListener(n,i),t.cleanup.push(()=>e.removeEventListener(n,i))}function $c(t){t.animationFrame!==null&&(window.cancelAnimationFrame(t.animationFrame),t.animationFrame=null),t.videoFrameHandle!==null&&t.element instanceof HTMLVideoElement&&(t.element.cancelVideoFrameCallback?.(t.videoFrameHandle),t.videoFrameHandle=null)}function Zt(t){if(t.destroyed||!(t.element instanceof HTMLVideoElement)||t.videoFrameHandle!==null||t.animationFrame!==null)return;let e=t.element,n=e;if(typeof n.requestVideoFrameCallback=="function"){t.videoFrameHandle=n.requestVideoFrameCallback(()=>{t.videoFrameHandle=null,Ve(t),!t.destroyed&&!e.paused&&!e.ended&&Zt(t)});return}t.animationFrame=window.requestAnimationFrame(()=>{t.animationFrame=null,Ve(t),!t.destroyed&&!e.paused&&!e.ended&&Zt(t)})}function Kc(t){let e=()=>{Ve(t)};Xe(t,t.element,"load",e),Xe(t,t.element,"loadedmetadata",e),Xe(t,t.element,"loadeddata",e),Xe(t,t.element,"seeked",e),Xe(t,t.element,"timeupdate",e),Xe(t,window,"resize",e),t.element instanceof HTMLVideoElement&&(Xe(t,t.element,"play",()=>Zt(t)),Xe(t,t.element,"pause",e)),typeof ResizeObserver<"u"&&(t.resizeObserver=new ResizeObserver(e),t.resizeObserver.observe(t.element))}function Jc(t){if(!t.destroyed){t.destroyed=!0,$c(t),t.resizeObserver?.disconnect();for(let e of t.cleanup)e();if(t.cleanup.length=0,t.canvas.remove(),t.gl.deleteTexture(t.program.texture),t.gl.deleteTexture(t.program.lutTexture),t.gl.deleteProgram(t.program.program),t.sourceHidden){t.element.removeAttribute(ks);let e=t.element.style.getPropertyValue("opacity"),n=t.element.style.getPropertyPriority("opacity");e==="0"&&n==="important"&&(t.sourceInlineOpacity===null?t.element.style.removeProperty("opacity"):t.element.style.setProperty("opacity",t.sourceInlineOpacity,t.sourceInlineOpacityPriority))}t.touchedParent&&(t.parentInlinePosition===null?t.touchedParent.style.removeProperty("position"):t.touchedParent.style.position=t.parentInlinePosition)}}function Yc(t){let e=document.createElement("canvas");return e.className=Nc,e.setAttribute(Mc,"true"),e.setAttribute("data-hyperframes-ignore",""),e.setAttribute("data-hyperframes-picker-ignore",""),e.setAttribute("data-hf-ignore",""),e.setAttribute("aria-hidden","true"),e.style.pointerEvents="none",e.style.display="none",t.parentNode?.insertBefore(e,t.nextSibling),e}function Ps(){let t=new WeakMap,e=new Set,n=null,i=!1,r=(g,S,_)=>{let v=t.get(g);if(v)return v.grading=S,v.source=_,Ve(v),g instanceof HTMLVideoElement&&!g.paused&&Zt(v),!0;let R=Yc(g),J=kc(R);if(!J)return R.remove(),!1;let O={element:g,canvas:R,gl:J.gl,program:J.program,grading:S,compare:{...Qt},lut:null,lutLoadingSrc:null,lutError:null,source:_,animationFrame:null,videoFrameHandle:null,resizeObserver:null,cleanup:[],touchedParent:null,parentInlinePosition:null,sourceHidden:!1,sourceInlineOpacity:null,sourceInlineOpacityPriority:"",sourceOpacityForCanvas:window.getComputedStyle(g).opacity||"1",sourceVisibleForCanvas:window.getComputedStyle(g).visibility!=="hidden",hasDrawn:!1,destroyed:!1};return t.set(g,O),e.add(g),Kc(O),Ve(O),g instanceof HTMLVideoElement&&!g.paused&&Zt(O),!0},o=(g,S)=>{if(i)return!1;let _=Oi(g);if(!_)return!1;let v=t.get(_);if(!v){let R=Pi(_);if(!Xt(R)||!r(_,R,"attribute"))return!1;v=t.get(_)}return v?(v.compare=Ic(S),Ve(v),!0):!1},s=g=>{let S=t.get(g);S&&(Jc(S),t.delete(g),e.delete(g))},l=()=>{if(i)return 0;let g=new Set;document.querySelectorAll(`video[${Yt}], img[${Yt}]`).forEach(_=>{if(!st(_))return;g.add(_);let v=Pi(_);Xt(v)?r(_,v,"attribute"):s(_)});for(let _ of Array.from(e)){let v=t.get(_);v&&(!_.isConnected||v.source==="attribute"&&!g.has(_))&&s(_)}return e.size},a=()=>{if(i)return 0;let g=0;for(let S of Array.from(e,_=>t.get(_)))S&&Ve(S)&&(g+=1);return g},c=(g,S)=>{if(i)return!1;let _=Oi(g);if(!_)return!1;let v=Di(S);return Xt(v)?r(_,v,"live"):(s(_),!0)},u=(g,S)=>{if(!st(g))return!1;let _=t.get(g);return _?(_.sourceVisibleForCanvas=S,!0):!1},m=g=>{let S=Oi(g);if(!S)return{state:"missing",message:"Media not found"};let _=t.get(S);if(_)return _.lutError?{state:"unavailable",message:_.lutError}:_.grading.lut&&_.lutLoadingSrc?{state:"pending",message:"Loading LUT"}:_.canvas.style.display==="none"?{state:"pending",message:"Waiting for media frame"}:{state:"active",message:_.lut?"Shader + LUT active":"Shader active"};let v=Pi(S);return Xt(v)?{state:"unavailable",message:"WebGL unavailable"}:{state:"inactive",message:"No grading applied"}},f=()=>{if(!i){i=!0,n?.disconnect(),n=null;for(let g of Array.from(e))s(g)}};document.body&&(n=new MutationObserver(()=>l()),n.observe(document.body,{childList:!0,subtree:!0,attributes:!0,attributeFilter:[Yt]}));let x={refresh:l,redraw:a,setGrading:c,setCompare:o,setSourceVisibility:u,getStatus:m,destroy:f},E=window;return E.__hf=E.__hf||{},E.__hf.colorGrading=x,l(),x}var Mn=class{constructor(e){ye(this,"_baseTime",0);ye(this,"_playStartMs",null);ye(this,"_rate",1);ye(this,"_duration",1/0);ye(this,"_nowMs");ye(this,"_audioSource",null);this._baseTime=e?.initialTime??0,this._rate=e?.rate??1,this._duration=e?.duration??1/0,this._nowMs=e?.nowMs??(()=>performance.now())}now(){if(this._playStartMs===null)return this._baseTime;if(this._audioSource){let i=null;if("currentTimeSeconds"in this._audioSource)i=this._audioSource.currentTimeSeconds;else{let{el:r,compositionStart:o,mediaStart:s}=this._audioSource;!r.paused&&Number.isFinite(r.currentTime)&&(i=(r.currentTime-s)/(r.playbackRate>0?r.playbackRate:1)*this._rate+o)}if(i!==null)return Number.isFinite(this._duration)&&i>=this._duration?this._duration:Math.max(0,i)}let e=(this._nowMs()-this._playStartMs)/1e3,n=this._baseTime+e*this._rate;return Number.isFinite(this._duration)&&n>=this._duration?this._duration:Math.max(0,n)}play(){return this._playStartMs!==null||Number.isFinite(this._duration)&&this._baseTime>=this._duration?!1:(this._playStartMs=this._nowMs(),!0)}pause(){return this._playStartMs===null?!1:(this._baseTime=this.now(),this._playStartMs=null,!0)}seek(e){let n=Number.isFinite(this._duration)?Math.max(0,Math.min(e,this._duration)):Math.max(0,e);this._baseTime=n,this._playStartMs!==null&&(this._playStartMs=this._nowMs())}isPlaying(){return this._playStartMs!==null}setRate(e){let n=Number.isFinite(e)&&e>0?Math.max(.1,Math.min(5,e)):1;this._playStartMs!==null&&(this._baseTime=this.now(),this._playStartMs=this._nowMs()),this._rate=n}getRate(){return this._rate}setDuration(e){this._duration=Number.isFinite(e)&&e>0?e:1/0,this._baseTime>this._duration&&(this._baseTime=this._duration)}getDuration(){return this._duration}attachAudioSource(e){this._audioSource=e}detachAudioSource(){this._audioSource&&this._playStartMs!==null&&(this._baseTime=this.now(),this._playStartMs=this._nowMs()),this._audioSource=null}hasAudioSource(){return this._audioSource!==null}getSource(){if(this._audioSource&&this._playStartMs!==null){if("currentTimeSeconds"in this._audioSource)return"audio";let{el:e}=this._audioSource;if(!e.paused&&Number.isFinite(e.currentTime))return"audio"}return"monotonic"}snapshot(){return{time:this.now(),playing:this.isPlaying(),rate:this._rate,duration:this._duration,source:this.getSource()}}reachedEnd(){return Number.isFinite(this._duration)&&this.now()>=this._duration}};function Os(t){return!Number.isFinite(t)||t<=0?1:t}function Xc(t,e){e||t.paused||!an().__hfDebug||console.debug("[hyperframes] webAudioTransport claimed fallback-playing element:",t.currentSrc||t.getAttribute("src")||"")}function Qc(t,e){let{elapsed:n,mediaStart:i,scheduledAt:r,safeRate:o,clipDuration:s}=e,l=Number.isFinite(s)&&s>0,a=s*o;if(n>=0){let u=a-n;return l&&u<=0?!1:(l?t.start(0,n+i,u):t.start(0,n+i),!0)}let c=-n/o;return l?t.start(r+c,i,a):t.start(r+c,i),!0}var Nn=class{constructor(){ye(this,"_ctx",null);ye(this,"_bufferCache",new Map);ye(this,"_failedSrcs",new Set);ye(this,"_activeSources",[]);ye(this,"_masterGain",null);ye(this,"_rateAnchorCtx",0);ye(this,"_rateAnchorComp",0);ye(this,"_rate",1);ye(this,"_paused",!0);ye(this,"_playGeneration",0)}async init(){try{return this._ctx=new AudioContext,this._masterGain=this._ctx.createGain(),this._masterGain.connect(this._ctx.destination),!0}catch{return!1}}get context(){return this._ctx}getTime(){return!this._ctx||this._paused?-1:this._rateAnchorComp+(this._ctx.currentTime-this._rateAnchorCtx)*this._rate}async decodeAudioElement(e){let n=e.currentSrc||e.getAttribute("src");if(!n)return null;if(this._bufferCache.has(n))return this._bufferCache.get(n);if(this._failedSrcs.has(n)||!this._ctx)return null;let i;try{let r=await fetch(n,{cache:"no-store"});if(!r.ok)return L("webAudioTransport.fetch",new Error(`${r.status} ${n}`)),null;i=await r.arrayBuffer()}catch(r){return L("webAudioTransport.fetch",r),null}try{let r=await this._ctx.decodeAudioData(i);return this._bufferCache.set(n,r),r}catch(r){return this._failedSrcs.add(n),L("webAudioTransport.decode",r),null}}startGeneration(){return this._playGeneration+=1,this._playGeneration}currentGeneration(){return this._playGeneration}async schedulePlayback(e,n,i,r,o,s,l,a=1,c=Number.POSITIVE_INFINITY){if(!this._ctx||!this._masterGain||l!==this._playGeneration)return null;try{if(this._ctx.state==="suspended"&&await this._ctx.resume(),l!==this._playGeneration)return null;let u=Os(a),m=this._ctx.createBufferSource();m.buffer=n,m.playbackRate.value=u;let f=this._ctx.createGain();f.gain.value=s,m.connect(f),f.connect(this._masterGain);let x=o-i,E=this._ctx.currentTime;if(this._rate=u,this._rateAnchorCtx=E,this._rateAnchorComp=o,!Qc(m,{elapsed:x,mediaStart:r,scheduledAt:E,safeRate:u,clipDuration:c}))return m.disconnect(),f.disconnect(),null;let g=e.muted;e.muted=!0,Xc(e,g);let S={el:e,sourceNode:m,gainNode:f,compositionStart:i,mediaStart:r,scheduledAt:E,priorMuted:g,bounded:Number.isFinite(c)&&c>0};return this._activeSources.push(S),this._paused=!1,m.addEventListener("ended",()=>{let _=this._activeSources.indexOf(S);_!==-1&&(this._activeSources.splice(_,1),e.muted=g,this._activeSources.length===0&&(this._paused=!0))}),S}catch(u){return L("webAudioTransport.schedule",u),null}}setRate(e){let n=Os(e);if(n===this._rate)return!1;this._ctx&&!this._paused&&(this._rateAnchorComp=this.getTime(),this._rateAnchorCtx=this._ctx.currentTime),this._rate=n;for(let i of this._activeSources)try{i.sourceNode.playbackRate.value=n}catch(r){L("webAudioTransport.setRate",r)}return!0}hasBoundedActiveSources(){return this._activeSources.some(e=>e.bounded)}stopAll(){for(let e of this._activeSources){try{e.sourceNode.stop(),e.sourceNode.disconnect(),e.gainNode.disconnect()}catch{}e.el.muted=e.priorMuted}this._activeSources=[],this._paused=!0}setVolume(e){this._masterGain&&(this._masterGain.gain.value=Math.max(0,Math.min(1,e)))}setElementVolume(e,n){let i=Math.max(0,Math.min(1,n));for(let r of this._activeSources)if(r.el===e)try{r.gainNode.gain.value=i}catch(o){L("webAudioTransport.setElementVolume",o)}}setMuted(e){this._masterGain&&(this._masterGain.gain.value=e?0:1)}isActive(){return this._activeSources.length>0&&!this._paused}ownsElement(e){return!this._paused&&this._activeSources.some(n=>n.el===e)}destroy(){if(this.stopAll(),this._bufferCache.clear(),this._failedSrcs.clear(),this._ctx)try{this._ctx.close()}catch{}this._ctx=null,this._masterGain=null}};var Bs="data-hf-studio-manual-edit-gesture";var Hi="data-hf-authored-duration",Wi="data-hf-authored-end";function Zc(){let t=window.__HF_EXPORT_RENDER_SEEK_CONFIG,e=t?.fps,n=t?.fpsSource,i=Number(e);return!t||e==null?{fps:null,source:"default",rawFpsSource:n,rawFps:e,fallbackReason:"missing"}:!Number.isFinite(i)||i<=0?{fps:null,source:"default",rawFpsSource:n,rawFps:e,fallbackReason:"invalid"}:{fps:i,source:n==="render-options"||n==="default"?n:"unknown",rawFpsSource:n,rawFps:e,fallbackReason:t.fpsFallbackReason}}function Hs(){let t=Lr(),e=Zc();t.canonicalFps=e.fps??t.canonicalFps,window.__HF_EXPORT_RENDER_SEEK_CONFIG&&console.info("[hyperframes] render runtime fps",{canonicalFps:t.canonicalFps,source:e.source,rawFpsSource:e.rawFpsSource,rawFps:e.rawFps,fallbackReason:e.fallbackReason});let n=null,i=null,r=null,o=[],s=new Set,l=null;if(typeof window.__hfRuntimeTeardown=="function")try{window.__hfRuntimeTeardown()}catch(d){L("runtime.init.site1",d)}document.documentElement&&(document.documentElement.style.margin="0",document.documentElement.style.padding="0",document.documentElement.style.overflow="hidden"),document.body&&(document.body.style.margin="0",document.body.style.padding="0",document.body.style.overflow="hidden"),window.__timelines=window.__timelines||{};let a=()=>{let d=document.querySelector(\'[data-composition-id][data-root="true"]\');if(d instanceof HTMLElement)return d;let p=Array.from(document.querySelectorAll("[data-composition-id]"));return p.find(h=>!h.parentElement?.closest("[data-composition-id]"))??p[0]??null};if(Array.isArray(window.__timelines)){let d=window.__timelines,p=a()?.getAttribute("data-composition-id")??"root",h={};if(d.length===1)h[p]=d[0];else for(let y=0;y<d.length;y++)h[`tl-${y}`]=d[y];window.__timelines=h}let c=a();c&&!c.hasAttribute("data-start")&&c.setAttribute("data-start","0");let u=d=>{o.push(d)},m=(d,p,h)=>{let y=h??`${d}:${JSON.stringify(p)}`;s.has(y)||(s.add(y),Ee({source:"hf-preview",type:"diagnostic",code:d,details:p}))},f=d=>{let p={scale:1,focusX:960,focusY:540},h=[],y=[],A={time:d.getTime(),duration:d.getDuration(),isPlaying:d.isPlaying(),renderMode:!1,timelineDirty:!1};return{play:d.play,pause:d.pause,seek:d.seek,getTime:d.getTime,getDuration:d.getDuration,isPlaying:d.isPlaying,getMainTimeline:()=>null,getElementBounds:()=>{},getElementsAtPoint:()=>{},setElementPosition:()=>{},previewElementPosition:()=>{},setElementKeyframes:()=>{},setElementScale:()=>{},setElementFontSize:()=>{},setElementTextContent:()=>{},setElementTextColor:()=>{},setElementTextShadow:()=>{},setElementTextFontWeight:()=>{},setElementTextFontFamily:()=>{},setElementTextOutline:()=>{},setElementTextHighlight:()=>{},setElementVolume:()=>{},setStageZoom:()=>{},getStageZoom:()=>p,setStageZoomKeyframes:()=>{},getStageZoomKeyframes:()=>h,addElement:()=>!1,removeElement:()=>!1,updateElementTiming:()=>!1,setElementTiming:()=>{},updateElementSrc:()=>!1,updateElementLayer:()=>!1,updateElementBasePosition:()=>!1,markTimelineDirty:()=>{},isTimelineDirty:()=>!1,rebuildTimeline:()=>{},ensureTimeline:()=>{},enableRenderMode:()=>{},disableRenderMode:()=>{},renderSeek:d.renderSeek,getElementVisibility:()=>({visible:!1}),getVisibleElements:()=>y,getRenderState:()=>({...A,time:d.getTime(),duration:d.getDuration(),isPlaying:d.isPlaying()})}},x=1/60,E=.75,g=2,S=.05,_=100,v=240,R=d=>{if(d instanceof Error)return d.message||String(d);if(typeof d=="string")return d;try{return JSON.stringify(d)}catch{return String(d??"")}},J=d=>{let p=d.toLowerCase();return p.includes("cannot read properties of null")||p.includes("cannot set properties of null")?{code:"runtime_null_dom_access",category:"dom-null-access"}:p.includes("failed to execute \'queryselector\'")?{code:"runtime_invalid_selector",category:"selector-invalid"}:p.includes("is not defined")?{code:"runtime_reference_missing",category:"reference-missing"}:{code:"runtime_script_error",category:"script-error"}},O=d=>{if(d==null||d.trim()==="")return null;let p=Number.parseFloat(d);return!Number.isFinite(p)||p<=0?null:`${p}px`},M=()=>a(),b=()=>{let d=M();if(!d)return;let p=O(d.getAttribute("data-width")),h=O(d.getAttribute("data-height"));p&&(d.style.width=p),h&&(d.style.height=h),p&&d.style.setProperty("--comp-width",p),h&&d.style.setProperty("--comp-height",h)},w=()=>{let d=M(),p=Array.from(document.querySelectorAll("[data-composition-id]")).filter(h=>h.hasAttribute("data-duration")||h.hasAttribute("data-end"));for(let h of p){if(d&&h===d)continue;let y=h.getAttribute("data-duration"),A=h.getAttribute("data-end");y!=null&&!h.hasAttribute(Hi)&&h.setAttribute(Hi,y),A!=null&&!h.hasAttribute(Wi)&&h.setAttribute(Wi,A),h.removeAttribute("data-duration"),h.removeAttribute("data-end")}},F=()=>{let d=M();if(!d)return;d.style.position||(d.style.position="relative"),d.style.overflow="hidden";let p=O(d.getAttribute("data-width")),h=O(d.getAttribute("data-height"));p&&(d.style.width=p),h&&(d.style.height=h);let y=Array.from(d.children);for(let A of y){let C=A.tagName.toLowerCase();if(C==="script"||C==="style"||C==="link"||C==="meta"||!A.hasAttribute("data-start")||A.hasAttribute("data-hf-autostamped"))continue;let D=(A.style.top==="0px"||A.style.top==="0")&&(A.style.left==="0px"||A.style.left==="0")&&A.style.width==="100%"&&A.style.height==="100%",q=/translate\\(\\s*-50%\\s*,\\s*-50%\\s*\\)/.test(A.style.transform);if(D&&q&&!A.hasAttribute("data-width")&&!A.hasAttribute("data-height")){let be=A.style.top,nt=A.style.left,Ae=A.style.width,Et=A.style.height;A.style.top="",A.style.left="",A.style.width="",A.style.height="";let re=window.getComputedStyle(A);re.top!=="auto"||re.bottom!=="auto"||re.left!=="auto"||re.right!=="auto"||re.width!=="0px"||re.height!=="0px"||(A.style.top=be,A.style.left=nt,A.style.width=Ae,A.style.height=Et)}let Y=window.getComputedStyle(A),pe=Y.position;if(pe!=="absolute"&&pe!=="fixed"&&(A.style.position="absolute"),!!A.style.top||!!A.style.bottom||Y.top!=="auto"||Y.bottom!=="auto"||(A.style.top="0"),!!A.style.left||!!A.style.right||Y.left!=="auto"||Y.right!=="auto"||(A.style.left="0"),C!=="audio"){let be=O(A.getAttribute("data-width")),nt=O(A.getAttribute("data-height")),Ae=Y.width!=="0px"&&Y.width!=="auto",Et=Y.height!=="0px"&&Y.height!=="auto";be?!A.style.width&&!Ae&&(A.style.width=be):!A.style.width&&Y.width==="0px"&&(A.style.width="100%"),nt?!A.style.height&&!Et&&(A.style.height=nt):!A.style.height&&Y.height==="0px"&&(A.style.height="100%")}}},N=(d,p=0,h)=>je({timelineRegistry:window.__timelines??{},includeAuthoredTimingAttrs:h?.includeAuthoredTimingAttrs??!0}).resolveStartForElement(d,p),T=(d,p)=>je({timelineRegistry:window.__timelines??{},includeAuthoredTimingAttrs:p?.includeAuthoredTimingAttrs??!0}).resolveDurationForElement(d),G=(d,p=0)=>!d.hasAttribute("data-hf-auto-start")&&d.hasAttribute("data-start")?Math.max(0,Number(d.getAttribute("data-start")??0)||0):N(d,p),V=(d,p)=>{let h=d.tagName.toLowerCase();if(h==="script"||h==="style"||h==="link"||h==="meta")return!1;let y=h==="video"||h==="audio"?G(d,0):N(d,0),A=T(d),C=d.getAttribute("data-composition-id");if(C){let q=(window.__timelines??{})[C],Y=null;if(q&&typeof q.duration=="function"){let Se=Number(q.duration());Number.isFinite(Se)&&Se>0&&(Y=Se)}!(d.hasAttribute("data-duration")||d.hasAttribute("data-end")||d.hasAttribute(Hi)||d.hasAttribute(Wi))&&(A==null||A<=0)&&Y!=null&&(A=Y)}let D=A!=null&&A>0?y+A:Number.POSITIVE_INFINITY;return p>=y&&(Number.isFinite(D)?p<=D:!0)},se=!!document.querySelector("[data-composition-src]"),I=!1;{let d=document.querySelectorAll("[data-composition-id]:not([data-composition-src])");for(let p of d){let h=p.getAttribute("data-composition-id");if(h&&p.children.length===0&&document.querySelector(`template#${CSS.escape(h)}-template`)){I=!0;break}}}let ee=!se&&!I,de=d=>{if(!d||typeof d.duration!="function")return null;try{let p=Number(d.duration());return Number.isFinite(p)?Math.max(0,p):null}catch{return null}},B=d=>typeof d=="number"&&Number.isFinite(d)&&d>x,te=d=>{let p=Number(d.getAttribute("data-duration"));if(Number.isFinite(p)&&p>0)return p;let h=Number(d.getAttribute("data-playback-start")??d.getAttribute("data-media-start")??"0"),y=Number.isFinite(h)?Math.max(0,h):0;return Number.isFinite(d.duration)&&d.duration>y?Math.max(0,d.duration-y):null},U=()=>{let d=Array.from(document.querySelectorAll("video[data-start], audio[data-start]"));if(d.length===0)return null;let p=0;for(let h of d){let y=G(h,0);if(!Number.isFinite(y))continue;let A=te(h);A==null||A<=x||(p=Math.max(p,Math.max(0,y)+A))}return p>x?p:null},ie=()=>{let d=M();if(!d)return null;let p=window.__timelines??{},h=je({timelineRegistry:p,includeAuthoredTimingAttrs:!0}),y=0,A=Number.parseFloat(d.getAttribute("data-duration")??"");Number.isFinite(A)&&A>0&&(y=A);let C=Array.from(d.querySelectorAll("[data-composition-id][data-start]"));for(let D of C){if(!(D instanceof Element)||D.parentElement?.closest("[data-composition-id]")!==d)continue;let Y=h.resolveStartForElement(D,0),pe=h.resolveDurationForElement(D);!Number.isFinite(Y)||pe==null||pe<=0||(y=Math.max(y,Math.max(0,Y)+pe))}return y>x?y:null},Fe=()=>{let d=U();return typeof d!="number"||!Number.isFinite(d)||d<=x?null:d},H=d=>B(d)?Math.max(x,d*E):x,k=(d,p=0)=>{let h=de(d),y=Fe(),A=ie(),C=Math.max(y??0,A??0),D=Number.isFinite(p)&&p>x?p:0,q=0;return B(h)?q=Math.max(h,C,D):B(C)?q=Math.max(C,D):q=D,q>0?Math.max(0,q):0},W=()=>{let d=window.__timelines??{},p=re=>{let Q=Object.entries(d).filter(ge=>!!ge[1]&&typeof ge[1].play=="function"&&typeof ge[1].pause=="function");if(Q.length!==1)return{timeline:null};let[me,he]=Q[0];return{timeline:he,selectedTimelineIds:[me],selectedDurationSeconds:de(he),diagnostics:{code:"root_timeline_sole_registered_fallback",details:{reason:re,soleTimelineId:me}}}},h=je({timelineRegistry:d,includeAuthoredTimingAttrs:!0}),y=Fe(),A=ie(),C=Math.max(y??0,A??0)||null,D=H(C),q=re=>{let Q=document.querySelector(`[data-composition-id="${CSS.escape(re)}"]`);return Q?h.resolveStartForElement(Q,0):0},Y=re=>{let Q=window.gsap;if(!Q||typeof Q.timeline!="function")return null;let me=Q.timeline({paused:!0});for(let he of re)me.add(he.timeline,q(he.compositionId));return me},pe=(re,Q)=>{if(!B(re))return null;let me=window.gsap;if(!me||typeof me.timeline!="function")return null;let he=me.timeline({paused:!0});if(Q)try{he.add(Q,0)}catch(ue){L("runtime.init.site2",ue)}let ge=he;if(typeof ge.to=="function")try{ge.to({},{duration:re})}catch(ue){L("runtime.init.site3",ue)}return he},Se=(re,Q)=>{let me=re;if(typeof me.getChildren!="function")return[];try{let he=me.getChildren(!0,!0,!0)??[];if(!Array.isArray(he))return[];let ge=[];for(let ue of Q)if(!he.some(Re=>Re===ue.timeline))try{let Re=q(ue.compositionId);re.add(ue.timeline,Re),ge.push(ue.compositionId)}catch(Re){L("runtime.init.site4",Re)}return ge}catch{return[]}},oe=M(),X=oe?.getAttribute("data-composition-id")??null;if(!X)return p("root_missing_composition_id");let be=d[X]??null,Ae=(()=>{if(!oe)return[];let re=new Set,Q=Array.from(oe.querySelectorAll("[data-composition-id]")),me=[];for(let he of Q){let ge=he.getAttribute("data-composition-id");if(!ge||ge===X||re.has(ge))continue;re.add(ge);let ue=d[ge]??null;if(!ue||typeof ue.play!="function"||typeof ue.pause!="function")continue;let Ne=de(ue);me.push({compositionId:ge,timeline:ue,durationSeconds:Ne??0})}return me})(),Et=re=>{for(let Q of re){let me=Q.timeline;if(typeof me.paused=="function")try{me.paused(!1)}catch(he){L("runtime.init.site5",he)}}};if(Ae.length>0&&Et(Ae),be){let re=Ae.length>0?Se(be,Ae):[];if((Ae.length>0||!document.querySelector("[data-composition-id]:not([data-composition-id=\'"+X+"\'])"))&&(ae=!0),re.length>0)try{let ue=be.time();be.seek(ue,!1)}catch{}let Q=de(be);if(!B(Q)&&Ae.length>0){let ue=Ae.map(wa=>wa.compositionId),Ne=Y(Ae),Re=de(Ne);if(Ne&&B(Re))return{timeline:Ne,selectedTimelineIds:ue,selectedDurationSeconds:Re,mediaDurationFloorSeconds:y,diagnostics:{code:"root_timeline_unusable_fallback",details:{rootCompositionId:X,rootDurationSeconds:Q,fallbackKind:"composite_by_root_children",minCandidateDurationSeconds:D,selectedDurationSeconds:Re,mediaDurationFloorSeconds:y,authoredCompositionDurationFloorSeconds:A,selectedTimelineIds:ue,autoNestedChildren:re}}};let Gn=pe(C??0,be),Un=de(Gn);if(Gn&&B(Un))return{timeline:Gn,selectedTimelineIds:[X],selectedDurationSeconds:Un,mediaDurationFloorSeconds:y,diagnostics:{code:"root_timeline_unusable_media_floor_fallback",details:{rootCompositionId:X,rootDurationSeconds:Q,fallbackKind:"media_duration_floor",mediaDurationFloorSeconds:y,authoredCompositionDurationFloorSeconds:A,selectedDurationSeconds:Un,selectedTimelineIds:[X],autoNestedChildren:re}}}}if(!B(Q)&&Ae.length===0){let ue=pe(C??0,be),Ne=de(ue);if(ue&&B(Ne))return{timeline:ue,selectedTimelineIds:[X],selectedDurationSeconds:Ne,mediaDurationFloorSeconds:y,diagnostics:{code:"root_timeline_unusable_media_floor_fallback",details:{rootCompositionId:X,rootDurationSeconds:Q,fallbackKind:"media_duration_floor",mediaDurationFloorSeconds:y,authoredCompositionDurationFloorSeconds:A,selectedDurationSeconds:Ne,selectedTimelineIds:[X]}}}}let me=oe?.getAttribute("data-duration"),he=me?parseFloat(me):null,ge=Math.max(B(he)?he:0,A??0);if(ge>0&&B(ge)&&B(Q)&&ge>=Q+.5){let ue=be;if(typeof ue.to=="function")try{ue.to({},{duration:0},ge)}catch(Re){L("runtime.init.site6",Re)}let Ne=de(be);if(B(Ne))return{timeline:be,selectedTimelineIds:[X],selectedDurationSeconds:Ne,mediaDurationFloorSeconds:y,diagnostics:{code:"root_timeline_padded_to_declared_duration",details:{rootCompositionId:X,rootDurationSeconds:Q,rootDeclaredDur:he,authoredCompositionDurationFloorSeconds:A,newDur:Ne}}}}return{timeline:be,selectedTimelineIds:[X],selectedDurationSeconds:Q,mediaDurationFloorSeconds:y,diagnostics:re.length>0?{code:"root_timeline_auto_nested_children",details:{rootCompositionId:X,selectedDurationSeconds:Q,autoNestedChildren:re}}:void 0}}if(Ae.length>0){let re=Ae.map(he=>he.compositionId),Q=Y(Ae),me=de(Q);if(Q)return{timeline:Q,selectedTimelineIds:re,selectedDurationSeconds:me,mediaDurationFloorSeconds:y,diagnostics:{code:"root_timeline_missing_fallback",details:{rootCompositionId:X,fallbackKind:"composite_by_root_children",minCandidateDurationSeconds:D,selectedDurationSeconds:me,mediaDurationFloorSeconds:y,selectedTimelineIds:re}}}}return p("root_composition_id_unmatched_in_registry")},ae=!1,ne=()=>{if(!ee)return!1;let d=t.capturedTimeline,p=de(d),h=B(p);if(d&&h&&ae)return!1;let y=W();if(!y.timeline)return!1;if(d&&d===y.timeline)return typeof d.timeScale=="function"&&d.timeScale(t.playbackRate),!1;t.capturedTimeline=y.timeline,typeof t.capturedTimeline.timeScale=="function"&&t.capturedTimeline.timeScale(t.playbackRate);let A=k(t.capturedTimeline,0);if(A<=0&&typeof t.capturedTimeline.progress=="function"&&(t.capturedTimeline.progress(1,!0),t.capturedTimeline.progress(0,!1),t.capturedTimeline.pause()),A>0){try{P.setDuration(A)}catch{}if(typeof t.capturedTimeline.totalTime=="function"){typeof t.capturedTimeline.progress=="function"&&t.capturedTimeline.progress(1e-4,!0);let D=Math.max(0,t.currentTime||0);t.capturedTimeline.totalTime(D,!1),t.capturedTimeline.pause()}let C=window.__hfStudioManualEditsApply;typeof C=="function"&&C()}if(y.diagnostics&&Ee({source:"hf-preview",type:"diagnostic",code:y.diagnostics.code,details:y.diagnostics.details}),Ee({source:"hf-preview",type:"diagnostic",code:"timeline_bound",details:{selectedTimelineIds:y.selectedTimelineIds??[],selectedDurationSeconds:y.selectedDurationSeconds??null,mediaDurationFloorSeconds:y.mediaDurationFloorSeconds??null}}),window.parent!==window){let C=M(),D=A>0?A:0,q=String(D>0?D:1),Y=new Set,pe=new Set(document.querySelectorAll("[data-start]")),Se=oe=>{let X=oe.parentElement;for(;X&&X!==C;){if(pe.has(X))return!0;X=X.parentElement}return!1};if(t.capturedTimeline.getChildren)try{for(let oe of t.capturedTimeline.getChildren(!0))if(typeof oe.targets=="function")for(let X of oe.targets())X instanceof HTMLElement&&X!==C&&(X.hasAttribute("data-start")||Se(X)||Y.has(X)||(Y.add(X),X.setAttribute("data-start","0"),X.setAttribute("data-duration",q),X.setAttribute("data-hf-autostamped","1")))}catch{}if(C instanceof HTMLElement)for(let oe of C.querySelectorAll("[id]"))oe instanceof HTMLElement&&oe!==C&&(oe.hasAttribute("data-start")||Se(oe)||Y.has(oe)||oe.tagName==="SCRIPT"||oe.tagName==="STYLE"||oe.tagName==="LINK"||(Y.add(oe),oe.setAttribute("data-start","0"),oe.setAttribute("data-duration",q),oe.setAttribute("data-hf-autostamped","1")))}for(let C of bt)nn.delete(C),Ji(C);return!0};window.__hfForceTimelineRebind=()=>{ae=!1,ne()};let z=()=>{let d=M();if(!(d instanceof HTMLElement))return;let p=d.getBoundingClientRect(),h=Number(d.getAttribute("data-width")),y=Number(d.getAttribute("data-height")),A=window.getComputedStyle(d),C=Number.isFinite(h)&&h>0&&Number.isFinite(y)&&y>0,D=p.width<=0||p.height<=0||d.clientWidth<=0||d.clientHeight<=0;!C||!D||m("root_stage_layout_zero",{compositionId:d.getAttribute("data-composition-id")??null,declaredWidth:h,declaredHeight:y,rectWidth:Math.round(p.width),rectHeight:Math.round(p.height),clientWidth:d.clientWidth,clientHeight:d.clientHeight,display:A.display,visibility:A.visibility,overflow:A.overflow},`root-stage-layout-zero:${d.getAttribute("data-composition-id")??"unknown"}`)},j=()=>{t.tornDown||(l!=null&&window.cancelAnimationFrame(l),l=window.requestAnimationFrame(()=>{l=null,z()}))},K=()=>{i=d=>{let p=R(d.error??d.message).slice(0,v);if(!p)return;let h=J(p);Ee({source:"hf-preview",type:"diagnostic",code:h.code,details:{category:h.category,message:p,filename:d.filename||null,line:Number.isFinite(d.lineno)?d.lineno:null,column:Number.isFinite(d.colno)?d.colno:null}})},r=d=>{let p=R(d.reason).slice(0,v);if(!p)return;let h=J(p);Ee({source:"hf-preview",type:"diagnostic",code:`${h.code}_unhandled_rejection`,details:{category:`${h.category}-unhandled-rejection`,message:p}})},window.addEventListener("error",i),window.addEventListener("unhandledrejection",r)},Pe=()=>{let d=Array.from(document.querySelectorAll("img, video, audio, source, link[rel=\'stylesheet\']"));for(let h of d){let y=()=>{if(!(h instanceof Element))return;let A=h.tagName.toLowerCase(),C=h.getAttribute("src")??h.getAttribute("href")??h.getAttribute("poster")??null,D=A==="link"?"runtime_stylesheet_load_failed":"runtime_asset_load_failed";m(D,{tagName:A,assetUrl:C,currentSrc:(h instanceof HTMLImageElement||h instanceof HTMLMediaElement)&&h.currentSrc||null,readyState:h instanceof HTMLMediaElement?h.readyState:null,networkState:h instanceof HTMLMediaElement?h.networkState:null},`${D}:${A}:${C??"unknown"}`)};h.addEventListener("error",y),u(()=>{h.removeEventListener("error",y)})}let p=document.fonts;p&&p.ready.then(()=>{if(t.tornDown)return;let h=Array.from(p).filter(y=>y.status==="error").map(y=>y.family).filter(y=>!!y).slice(0,10);h.length!==0&&m("runtime_font_load_issue",{failedFamilies:h,totalFaces:Array.from(p).length},`runtime-font-load-issue:${h.join("|")}`)}).catch(()=>{})},Me=(d,p)=>{if(!d.timeline)return!1;let h=t.capturedTimeline;if(h&&h===d.timeline)return!1;let y=Math.max(0,t.currentTime||0),A=t.isPlaying;t.capturedTimeline=d.timeline,typeof t.capturedTimeline.timeScale=="function"&&t.capturedTimeline.timeScale(t.playbackRate);try{t.capturedTimeline.pause(),t.capturedTimeline.seek(y,!1),A&&t.capturedTimeline.play()}catch(C){L("runtime.init.site7",C)}return Ee({source:"hf-preview",type:"diagnostic",code:"timeline_loop_guard_rebind",details:{reason:p,previousTime:y,selectedTimelineIds:d.selectedTimelineIds??[],selectedDurationSeconds:d.selectedDurationSeconds??null,mediaDurationFloorSeconds:d.mediaDurationFloorSeconds??null}}),!0},Le=null,Oe=!1,bt=new Set,nn=new WeakMap,rn=()=>{t.tornDown||(Le!=null&&window.clearTimeout(Le),Le=window.setTimeout(()=>{if(t.tornDown)return;Le=null;let d=W();if(!d.timeline||!B(d.mediaDurationFloorSeconds??null))return;if(!t.capturedTimeline){ne()&&(at(),_e(!0));return}if(Oe)return;let h=de(t.capturedTimeline),y=d.selectedDurationSeconds??de(d.timeline);B(y)&&(!B(h)||y>=h+S)&&Me(d,"manual")&&(Oe=!0,Ee({source:"hf-preview",type:"diagnostic",code:"timeline_rebind_after_media_metadata",details:{previousDurationSeconds:h??null,selectedDurationSeconds:y??null,selectedTimelineIds:d.selectedTimelineIds??[],mediaDurationFloorSeconds:d.mediaDurationFloorSeconds??null}}),at(),_e(!0))},_))},fa=()=>{for(let d of bt)d.removeEventListener("loadedmetadata",rn),d.removeEventListener("durationchange",rn);bt.clear()},kn=()=>{if(t.tornDown)return;let d=Array.from(document.querySelectorAll("video, audio"));for(let p of d){if(bt.has(p))continue;bt.add(p);let h=Number.parseFloat(p.dataset.volume??"");Number.isFinite(h)&&(p.volume=Math.max(0,Math.min(1,h))),p.addEventListener("loadedmetadata",rn),p.addEventListener("durationchange",rn),p.preload!=="auto"&&(p.preload="auto"),p.readyState<HTMLMediaElement.HAVE_FUTURE_DATA&&p.load(),Ji(p)}},Ji=d=>{nn.has(d)||wr(d,t.capturedTimeline,k(t.capturedTimeline,0),nn)},Dn=new WeakMap,Yi=d=>{let p=Dn.get(d);if(p!==void 0)return p;let h=window.getComputedStyle(d).position,y=h==="static"||h==="relative"||h==="sticky";return Dn.set(d,y),y},In=new WeakMap,ma=d=>{let p=In.get(d);if(p!==void 0)return p;let h=d.querySelector("[data-start]")===null;return In.set(d,h),h},pa=()=>{Dn=new WeakMap,In=new WeakMap},ve=()=>{let d=C=>{let D=C.closest("[data-composition-id]"),q=D?N(D,0):null,Y=D?T(D,{includeAuthoredTimingAttrs:!0}):null;return{compositionRoot:D,inheritedStart:q,inheritedDuration:Y}},p=Cr({shouldIncludeElement:C=>C.hasAttribute("data-start")||!!d(C).compositionRoot,resolveStartSeconds:C=>{let D=d(C);return G(C,D.inheritedStart??0)},resolveDurationSeconds:C=>{let D=d(C),q=G(C,D.inheritedStart??0),Y=Number.parseFloat(C.dataset.playbackStart??C.dataset.mediaStart??"0")||0,pe=D.inheritedStart!=null&&D.inheritedDuration!=null&&D.inheritedDuration>0?Math.max(0,D.inheritedStart+D.inheritedDuration-q):null,Se=Number.isFinite(C.duration)&&C.duration>Y?Math.max(0,C.duration-Y):null,oe=Number.parseFloat(C.dataset.duration??""),X=Number.isFinite(oe)&&oe>0?oe:null,be=[Se,pe,X].filter(nt=>nt!=null);return be.length>0?Math.min(...be):null}});for(let C of p.mediaClips){let D=nn.get(C.el);D&&(C.volumeKeyframes=D)}let h=t.mediaForceSyncNextTick;h&&(t.mediaForceSyncNextTick=!1),t.nativeMediaSyncDisabled||Fr({clips:p.mediaClips,timeSeconds:t.currentTime,playing:t.isPlaying,playbackRate:t.playbackRate,outputMuted:t.mediaOutputMuted||!t.webAudioMediaDisabled&&!t.nativeMediaSyncDisabled&&fe.isActive(),userMuted:t.bridgeMuted,userVolume:t.bridgeVolume,forceSync:h,onElementVolume:(C,D)=>fe.setElementVolume(C,D),isWebAudioOwned:C=>fe.ownsElement(C),onAutoplayBlocked:()=>{t.mediaAutoplayBlockedPosted||(t.mediaAutoplayBlockedPosted=!0,Ee({source:"hf-preview",type:"media-autoplay-blocked"}))}});let y=Array.from(document.querySelectorAll("[data-start]")),A=M();for(let C of y){if(!(C instanceof HTMLElement))continue;let D=V(C,t.currentTime);if(D){let q=C.parentElement;for(;q&&q!==A;){if(q instanceof HTMLElement&&q.hasAttribute("data-start")&&!V(q,t.currentTime)){D=!1;break}q=q.parentElement}}C.style.visibility=D?"visible":"hidden",(C instanceof HTMLVideoElement||C instanceof HTMLImageElement)&&n?.setSourceVisibility(C,D),D?Yi(C)&&C.style.removeProperty("display"):Yi(C)&&ma(C)&&(C.style.display="none")}},_e=d=>{let p=Math.max(0,Math.round((t.currentTime||0)*t.canonicalFps)),h=Date.now();(d||p!==t.bridgeLastPostedFrame||t.isPlaying!==t.bridgeLastPostedPlaying||t.bridgeMuted!==t.bridgeLastPostedMuted||h-t.bridgeLastPostedAt>=t.bridgeMaxPostIntervalMs)&&(t.bridgeLastPostedFrame=p,t.bridgeLastPostedPlaying=t.isPlaying,t.bridgeLastPostedMuted=t.bridgeMuted,t.bridgeLastPostedAt=h,Ee({source:"hf-preview",type:"state",frame:p,isPlaying:t.isPlaying,muted:t.bridgeMuted,playbackRate:t.playbackRate}))},Pn="",ha=()=>{let d="";for(let p of document.querySelectorAll("[data-start]"))d+=`${p.id}:${p.tagName}|`;return d},at=()=>{w(),b(),F();let d=M();if(d){let y=O(d.getAttribute("data-width")),A=O(d.getAttribute("data-height")),C=y?parseInt(y,10):0,D=A?parseInt(A,10):0;C>0&&D>0&&Ee({source:"hf-preview",type:"stage-size",width:C,height:D})}ne();let p=Pr({canonicalFps:t.canonicalFps});window.__clipManifest=p;let h=ha();if(Pn!==h&&pa(),!window.__clipTree||Pn!==h){let y=window;window.__clipTree=vr({startResolver:je({timelineRegistry:y.__timelines??{},includeAuthoredTimingAttrs:!0}),timelineRegistry:y.__timelines??{},rootDuration:p.durationInFrames/t.canonicalFps}),Pn=h}Ee(p),j()},Be=(d,p=0)=>{for(let h of t.deterministicAdapters){try{d==="discover"&&h.discover(),d==="pause"&&h.pause(),d==="play"&&h.play&&h.play()}catch(y){L("runtime.init.site8",y)}if(d==="discover")try{h.seek({time:p})}catch(y){L("runtime.init.site9",y)}}},et=()=>{window.__renderReady=!1},St=null,At=!0,xa=()=>{let d=[];for(let p of t.deterministicAdapters){let h=p.getReadyPromise;if(typeof h=="function")try{let y=h();y&&d.push(y)}catch(y){L("runtime.init.adapterReady",y)}}return d},ga=()=>{let d=xa();if(d.length===0)return St=null,At=!0,!0;let p=d.length===1?d[0]:Promise.all(d);return p!==St&&(St=p,At=!1,Promise.resolve(p).then(()=>{St===p&&(At=!0,et())},h=>{St===p&&(At=!0,L("runtime.init.adapterReady",h),et())})),At};if(ee)Ri();else{let d={injectedStyles:t.injectedCompStyles,injectedScripts:t.injectedCompScripts,parseDimensionPx:O,onDiagnostic:({code:p,details:h})=>{Ee({source:"hf-preview",type:"diagnostic",code:p,details:h})}};As(d).then(()=>Ss(d)).finally(()=>{ee=!0,kn(),Pe(),Ri(),et()})}let on=Mr({postMessage:d=>Ee(d)});on.installPickerApi();let Ge=Ps();n=Ge,u(()=>{Ge.destroy(),n=null});let On=d=>{let p=Number(d);!Number.isFinite(p)||p<=0?t.playbackRate=1:t.playbackRate=Math.max(.1,Math.min(5,p)),t.mediaForceSyncNextTick=!0,t.capturedTimeline&&typeof t.capturedTimeline.timeScale=="function"&&t.capturedTimeline.timeScale(t.playbackRate);let h=document.querySelectorAll("video, audio");for(let y of h)if(y instanceof HTMLMediaElement)try{y.playbackRate=t.playbackRate}catch(A){L("runtime.init.site10",A)}},xe=Tr({getTimeline:()=>t.capturedTimeline,setTimeline:d=>{t.capturedTimeline=d},getTimelineRegistry:()=>window.__timelines??{},getIsPlaying:()=>t.isPlaying,setIsPlaying:d=>{t.isPlaying!==d&&(t.mediaForceSyncNextTick=!0),t.isPlaying=d},getPlaybackRate:()=>t.playbackRate,setPlaybackRate:On,getCanonicalFps:()=>t.canonicalFps,onSyncMedia:(d,p)=>{t.currentTime=Math.max(0,Number(d)||0),t.isPlaying!==p&&(t.mediaForceSyncNextTick=!0),t.isPlaying=p,ve()},onStatePost:_e,onDeterministicSeek:d=>{for(let p of t.deterministicAdapters)try{p.seek({time:Number(d)||0})}catch(h){L("runtime.init.site11",h)}},onDeterministicPause:()=>Be("pause"),onDeterministicPlay:()=>Be("play"),onRenderFrameSeek:()=>{Ge.redraw()},onShowNativeVideos:()=>{},getSafeDuration:()=>k(t.capturedTimeline,0)});window.__player=f(xe),window.__playerReady=!0,ir(Ee),wt("composition_loaded",{duration:xe.getDuration(),compositionId:document.querySelector("[data-composition-id]")?.getAttribute("data-composition-id")??null}),t.controlBridgeHandler=nr({onPlay:()=>{xe.play(),wt("composition_played",{time:xe.getTime()})},onPause:()=>{xe.pause(),wt("composition_paused",{time:xe.getTime()})},onStopMedia:()=>{fe.stopAll();let d=document.querySelectorAll("video, audio");for(let p of d)p instanceof HTMLMediaElement&&!p.paused&&p.pause()},onSeek:(d,p)=>{let h=Math.max(0,d)/t.canonicalFps;xe.seek(h),wt("composition_seeked",{time:h})},onSetMuted:d=>{t.bridgeMuted=d;let p=d||t.mediaOutputMuted;fe.setMuted(p);let h=document.querySelectorAll("video, audio");for(let y of h)y instanceof HTMLMediaElement&&(y.muted=p||y.defaultMuted)},onSetVolume:d=>{t.bridgeVolume=d,fe.setVolume(d);let p=document.querySelectorAll("video, audio");for(let h of p){if(!(h instanceof HTMLMediaElement))continue;let y=parseFloat(h.dataset.volume??""),A=Number.isFinite(y)?y:1;h.volume=A*d}},onSetMediaOutputMuted:d=>{t.mediaOutputMuted=d;let p=d||t.bridgeMuted;fe.setMuted(p);let h=document.querySelectorAll("video, audio");for(let y of h)y instanceof HTMLMediaElement&&(y.muted=p||y.defaultMuted)},onSetNativeMediaSyncDisabled:d=>{t.nativeMediaSyncDisabled!==d&&(t.nativeMediaSyncDisabled=d,t.mediaForceSyncNextTick=!0,d?(fe.stopAll(),P.detachAudioSource()):ve())},onSetWebAudioMediaDisabled:d=>{t.webAudioMediaDisabled!==d&&(t.webAudioMediaDisabled=d,t.mediaForceSyncNextTick=!0,d&&(fe.stopAll(),P.detachAudioSource()),ve())},onSetPlaybackRate:d=>{On(d),t.transportClock&&t.transportClock.setRate(t.playbackRate),er()},onSetColorGrading:(d,p)=>{Ge.setGrading(d,p)},onSetColorGradingCompare:(d,p)=>{Ge.setCompare(d,p)},onTick:()=>{if(t.tornDown||!P.isPlaying())return;let d=P.now();if(t.currentTime=d,tt(d),P.reachedEnd()){fe.stopAll(),P.detachAudioSource(),P.pause(),t.isPlaying=!1;let p=P.getDuration();Number.isFinite(p)&&(P.seek(p),t.currentTime=p,tt(p)),Be("pause"),ve(),_e(!0)}},onEnablePickMode:()=>on.enablePickMode(),onDisablePickMode:()=>on.disablePickMode()}),t.deterministicAdapters=[Ar(),rr({resolveStartSeconds:d=>N(d,0)}),sr(),ur(),dr(),fr(),mr(),pr(),hr(),xr(),gr(),or({getTimeline:()=>t.capturedTimeline})],br(),Sr(),window.__hfReseekGpu=d=>{let p=Math.max(0,Number(d)||0);window.__hfThreeTime=p,window.__hfTypegpuTime=p,cr(p)},K(),kn(),Be("discover");let P=new Mn;t.transportClock=P;let fe=new Nn,Bn=!1;fe.init().then(d=>{Bn=d});let ya=()=>{let d=t.capturedTimeline,p=ne();t.capturedTimeline&&(p||t.capturedTimeline!==d||!xe._timeline)&&(xe._timeline=t.capturedTimeline);let h=k(t.capturedTimeline,0);if(h>0&&P.setDuration(h),Be("discover",t.currentTime),!t.capturedTimeline){let y=window.__timelines??{},A=Object.keys(y).filter(C=>y[C]);if(A.length>0){let D=M()?.getAttribute("data-composition-id")??null;m("root_timeline_unbound_registry_present",{reason:D?"root data-composition-id has no matching key in window.__timelines":"root composition element has no data-composition-id attribute",rootCompositionId:D,registeredTimelineKeys:A},"root_timeline_unbound_registry_present"),console.warn("[hyperframes] Root timeline not bound \\u2014 render will freeze at t=0. "+(D?`Root data-composition-id is "${D}" but window.__timelines has no such key. `:"Root composition element has no data-composition-id. ")+`Registered timeline keys: [${A.join(", ")}]. Register the root timeline under its data-composition-id (window.__timelines["${D??"<root-id>"}"] = tl).`)}}window.__renderReady=!0,at(),_e(!0)};if(et=()=>{if(!ee||window.__hfTimelinesBuilding){window.__renderReady=!1;return}if(Be("discover",t.currentTime),!ga()){window.__renderReady=!1;return}ya()},window.__hfTimelinesBuilding){window.__renderReady=!1;let d=()=>{window.removeEventListener("hf-timelines-built",d),et()};window.addEventListener("hf-timelines-built",d)}et(),ee&&setTimeout(()=>{et()},0);let sn=0,Hn=!1,ba=(d,p,h)=>{try{d.pause(),typeof d.totalTime=="function"?d.totalTime(p,!1):d.seek(p,!1)}catch(y){L(h,y)}},Sa=d=>{let p=window.__timelines??{},h=M()?.getAttribute("data-composition-id")??null;for(let[y,A]of Object.entries(p)){if(!A||y===h)continue;let C=document.querySelector(`[data-composition-id="${CSS.escape(y)}"]`);if(!C)continue;let D=N(C,0);if(!Number.isFinite(D))continue;let q=T(C,{includeAuthoredTimingAttrs:!0}),Y=de(A),pe=q!=null&&q>0?q:Y,Se=Math.max(0,pe!=null&&pe>0?Math.min(pe,d-D):d-D);ba(A,Se,"runtime.init.transport.childTimeline")}},Aa=d=>{let p=window.__timelines??{};for(let h of Object.values(p))if(!(!h||h===d))try{h.play()}catch(y){L("runtime.init.activateSiblings",y)}},tt=(d,p)=>{let h=t.capturedTimeline;if(h){p?.activateChildren&&Aa(h);let y=h,A=d;if(typeof y.totalDuration=="function")try{let C=Number(y.totalDuration());Number.isFinite(C)&&C>0&&d>C&&(A=C)}catch(C){L("runtime.init.transport.clampDuration",C)}try{typeof h.totalTime=="function"?h.totalTime(A,!1):h.seek(A,!1)}catch(C){L("runtime.init.transport.seek",C)}}else Sa(d);for(let y of t.deterministicAdapters)try{y.seek({time:d})}catch(A){L("runtime.init.transport.adapter",A)}},Ea=()=>{try{return document.querySelector(`[${Bs}]`)!=null}catch{return!1}},Xi=()=>{if(!(t.tornDown||Hn)){Hn=!0;try{if(t.transportRafId=window.requestAnimationFrame(Xi),sn+=1,sn%60===0&&!(P.isPlaying()&&t.capturedTimeline!=null&&P.now()<g)){let h=t.capturedTimeline;if(ne()){t.capturedTimeline&&!xe._timeline&&(xe._timeline=t.capturedTimeline),t.capturedTimeline&&t.capturedTimeline!==h&&t.capturedTimeline.pause();let y=k(t.capturedTimeline,0);y>0&&P.setDuration(y),at()}}if(sn%20===0&&at(),sn%30===0&&kn(),t.capturedTimeline){let p=k(t.capturedTimeline,0);p>0&&(!P.isPlaying()||p>=P.getDuration())&&P.setDuration(p)}if(P.isPlaying()&&!t.mediaOutputMuted)if(!t.nativeMediaSyncDisabled&&!t.webAudioMediaDisabled&&fe.isActive()&&fe.context){let p=fe.getTime();p>=0&&P.attachAudioSource({currentTimeSeconds:p})}else{let p=document.querySelectorAll("audio[data-start]"),h=!1;for(let y of p){if(!(y instanceof HTMLMediaElement)||!y.isConnected)continue;let A=Number.parseFloat(y.dataset.start??""),C=Number.parseFloat(y.dataset.duration??""),D=Number.isFinite(C)&&C>0?A+C:1/0,q=Number.parseFloat(y.dataset.playbackStart??y.dataset.mediaStart??"0")||0;if(Number.isFinite(A)&&t.currentTime>=A&&t.currentTime<=D){y.paused?!y.error&&y.readyState<HTMLMediaElement.HAVE_FUTURE_DATA&&(P.attachAudioSource({currentTimeSeconds:t.currentTime}),h=!0):(P.attachAudioSource({el:y,compositionStart:A,mediaStart:q}),h=!0);break}}!h&&P.hasAudioSource()&&P.detachAudioSource()}else P.hasAudioSource()&&P.detachAudioSource();let d=P.now();if(t.currentTime=d,(P.isPlaying()||!Ea())&&tt(d),P.isPlaying()&&P.reachedEnd()){fe.stopAll(),P.detachAudioSource(),P.pause(),t.isPlaying=!1;let p=P.getDuration();Number.isFinite(p)&&(P.seek(p),t.currentTime=p,tt(p)),Be("pause"),ve(),_e(!0);return}P.isPlaying()&&ve(),_e(!1)}finally{Hn=!1}}},Qi=d=>{let p=document.querySelectorAll("video, audio");for(let h of p){if(!(h instanceof HTMLMediaElement)||!h.isConnected)continue;let y=Number.parseFloat(h.dataset.start??"");if(!Number.isFinite(y))continue;let A=Number.parseFloat(h.dataset.duration??""),C=Number.isFinite(A)&&A>0?y+A:1/0;if(d<y||d>=C)continue;let D=Number.parseFloat(h.dataset.playbackStart??h.dataset.mediaStart??"0")||0,q=d-y+D;if(q>=0)try{h.currentTime=q}catch{}}},Zi=()=>{if(t.nativeMediaSyncDisabled||t.webAudioMediaDisabled)return;let d=fe.startGeneration(),p=document.querySelectorAll("audio[data-start]");for(let h of p){if(!(h instanceof HTMLMediaElement)||!h.isConnected)continue;let y=Number.parseFloat(h.dataset.start??"");if(!Number.isFinite(y))continue;let A=Number.parseFloat(h.dataset.playbackStart??h.dataset.mediaStart??"0")||0,C=Number.parseFloat(h.dataset.volume??""),D=Number.isFinite(C)?C:1,q=Number.parseFloat(h.dataset.duration??""),Y=Number.isFinite(q)&&q>0?q:Number.POSITIVE_INFINITY,pe=h.closest("[data-composition-id]");if(pe){let Se=N(pe,0),oe=T(pe,{includeAuthoredTimingAttrs:!0});oe!=null&&oe>0&&(Y=Math.min(Y,Math.max(0,Se+oe-y)))}fe.decodeAudioElement(h).then(Se=>{!Se||!P.isPlaying()||fe.schedulePlayback(h,Se,y,A,P.now(),D*t.bridgeVolume,d,t.playbackRate,Y)})}},er=()=>{fe.setRate(t.playbackRate)&&!t.nativeMediaSyncDisabled&&!t.webAudioMediaDisabled&&Bn&&P.isPlaying()&&fe.hasBoundedActiveSources()&&(fe.stopAll(),Zi())};if(xe.play=()=>{let d=t.capturedTimeline;if(P.isPlaying())return;let p=k(d,0);if(p>0)P.setDuration(p),P.reachedEnd()&&(P.seek(0),t.currentTime=0,tt(0));else{let h=M(),y=Number(h?.getAttribute("data-duration")??0);y>0&&P.setDuration(y)}d&&d.pause(),P.play()&&(t.isPlaying=!0,t.mediaForceSyncNextTick=!0,Qi(P.now()),Bn&&!t.nativeMediaSyncDisabled&&!t.webAudioMediaDisabled&&Zi(),Be("play"),ve(),Ge.redraw(),_e(!0))},xe.pause=()=>{if(!P.isPlaying())return;fe.stopAll(),P.detachAudioSource(),P.pause(),t.isPlaying=!1,t.currentTime=P.now(),t.mediaForceSyncNextTick=!0,Qi(t.currentTime);let d=t.capturedTimeline;d&&d.pause(),Be("pause"),ve(),Ge.redraw(),_e(!0)},xe.seek=d=>{let p=ut(Math.max(0,Number(d)||0),t.canonicalFps);fe.stopAll(),P.detachAudioSource(),P.isPlaying()&&P.pause(),P.seek(p),t.currentTime=P.now(),t.isPlaying=!1,t.mediaForceSyncNextTick=!0;let y=t.capturedTimeline;y&&y.pause(),tt(t.currentTime),Be("pause"),ve(),Ge.redraw(),_e(!0)},xe.renderSeek=d=>{let p=ut(Math.max(0,Number(d)||0),t.canonicalFps);P.isPlaying()&&P.pause(),P.seek(p),t.currentTime=P.now(),t.isPlaying=!1,t.mediaForceSyncNextTick=!0,tt(t.currentTime,{activateChildren:!0}),ve(),Ge.redraw(),_e(!0)},xe.getTime=()=>P.now(),xe.getDuration=()=>{let d=P.getDuration();return Number.isFinite(d)?d:0},xe.isPlaying=()=>P.isPlaying(),xe.setPlaybackRate=d=>{On(d),P.setRate(t.playbackRate),er()},t.capturedTimeline){let d=k(t.capturedTimeline,0);d>0&&P.setDuration(d),t.capturedTimeline.pause()}let tr=window.__player;if(tr){let d=["play","pause","seek","renderSeek","getTime","getDuration","isPlaying"];for(let p of d)Object.defineProperty(tr,p,{get:()=>xe[p],set:h=>{xe[p]=h},configurable:!0})}t.transportRafId=window.requestAnimationFrame(Xi),at(),_e(!0);let Wn=()=>{if(!t.tornDown){t.tornDown=!0,t.transportRafId!=null&&(window.cancelAnimationFrame(t.transportRafId),t.transportRafId=null),t.transportClock=null,fe.destroy(),Le!=null&&(window.clearTimeout(Le),Le=null),l!=null&&(window.cancelAnimationFrame(l),l=null),fa(),t.controlBridgeHandler&&(window.removeEventListener("message",t.controlBridgeHandler),t.controlBridgeHandler=null),i&&(window.removeEventListener("error",i),i=null),r&&(window.removeEventListener("unhandledrejection",r),r=null),t.beforeUnloadHandler&&(window.removeEventListener("beforeunload",t.beforeUnloadHandler),t.beforeUnloadHandler=null),on.disablePickMode();for(let d of t.deterministicAdapters)if(!(!d||typeof d.revert!="function"))try{d.revert()}catch(p){L("runtime.init.site12",p)}t.deterministicAdapters=[];for(let d of o.splice(0))try{d()}catch(p){L("runtime.init.site13",p)}for(let d of t.injectedCompStyles)try{d.remove()}catch(p){L("runtime.init.site14",p)}t.injectedCompStyles=[];for(let d of t.injectedCompScripts)try{d.remove()}catch(p){L("runtime.init.site15",p)}t.injectedCompScripts=[],t.capturedTimeline=null,window.__hfRuntimeTeardown===Wn&&(window.__hfRuntimeTeardown=null)}};window.__hfRuntimeTeardown=Wn,t.beforeUnloadHandler=Wn,window.addEventListener("beforeunload",t.beforeUnloadHandler)}var Ws=["BN","BN","BN","BN","BN","BN","BN","BN","BN","S","B","S","WS","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","B","B","B","S","WS","ON","ON","ET","ET","ET","ON","ON","ON","ON","ON","ES","CS","ES","CS","CS","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","CS","ON","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","ON","ON","ON","BN","BN","BN","BN","BN","BN","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","CS","ON","ET","ET","ET","ET","ON","ON","ON","ON","L","ON","ON","BN","ON","ON","ET","ET","EN","EN","ON","L","ON","ON","ON","EN","L","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","L","L","L","L","L","L","L","L"],Gi=[[697,698,"ON"],[706,719,"ON"],[722,735,"ON"],[741,749,"ON"],[751,767,"ON"],[768,879,"NSM"],[884,885,"ON"],[894,894,"ON"],[900,901,"ON"],[903,903,"ON"],[1014,1014,"ON"],[1155,1161,"NSM"],[1418,1418,"ON"],[1421,1422,"ON"],[1423,1423,"ET"],[1424,1424,"R"],[1425,1469,"NSM"],[1470,1470,"R"],[1471,1471,"NSM"],[1472,1472,"R"],[1473,1474,"NSM"],[1475,1475,"R"],[1476,1477,"NSM"],[1478,1478,"R"],[1479,1479,"NSM"],[1480,1535,"R"],[1536,1541,"AN"],[1542,1543,"ON"],[1544,1544,"AL"],[1545,1546,"ET"],[1547,1547,"AL"],[1548,1548,"CS"],[1549,1549,"AL"],[1550,1551,"ON"],[1552,1562,"NSM"],[1563,1610,"AL"],[1611,1631,"NSM"],[1632,1641,"AN"],[1642,1642,"ET"],[1643,1644,"AN"],[1645,1647,"AL"],[1648,1648,"NSM"],[1649,1749,"AL"],[1750,1756,"NSM"],[1757,1757,"AN"],[1758,1758,"ON"],[1759,1764,"NSM"],[1765,1766,"AL"],[1767,1768,"NSM"],[1769,1769,"ON"],[1770,1773,"NSM"],[1774,1775,"AL"],[1776,1785,"EN"],[1786,1808,"AL"],[1809,1809,"NSM"],[1810,1839,"AL"],[1840,1866,"NSM"],[1867,1957,"AL"],[1958,1968,"NSM"],[1969,1983,"AL"],[1984,2026,"R"],[2027,2035,"NSM"],[2036,2037,"R"],[2038,2041,"ON"],[2042,2044,"R"],[2045,2045,"NSM"],[2046,2069,"R"],[2070,2073,"NSM"],[2074,2074,"R"],[2075,2083,"NSM"],[2084,2084,"R"],[2085,2087,"NSM"],[2088,2088,"R"],[2089,2093,"NSM"],[2094,2136,"R"],[2137,2139,"NSM"],[2140,2143,"R"],[2144,2191,"AL"],[2192,2193,"AN"],[2194,2198,"AL"],[2199,2207,"NSM"],[2208,2249,"AL"],[2250,2273,"NSM"],[2274,2274,"AN"],[2275,2306,"NSM"],[2362,2362,"NSM"],[2364,2364,"NSM"],[2369,2376,"NSM"],[2381,2381,"NSM"],[2385,2391,"NSM"],[2402,2403,"NSM"],[2433,2433,"NSM"],[2492,2492,"NSM"],[2497,2500,"NSM"],[2509,2509,"NSM"],[2530,2531,"NSM"],[2546,2547,"ET"],[2555,2555,"ET"],[2558,2558,"NSM"],[2561,2562,"NSM"],[2620,2620,"NSM"],[2625,2626,"NSM"],[2631,2632,"NSM"],[2635,2637,"NSM"],[2641,2641,"NSM"],[2672,2673,"NSM"],[2677,2677,"NSM"],[2689,2690,"NSM"],[2748,2748,"NSM"],[2753,2757,"NSM"],[2759,2760,"NSM"],[2765,2765,"NSM"],[2786,2787,"NSM"],[2801,2801,"ET"],[2810,2815,"NSM"],[2817,2817,"NSM"],[2876,2876,"NSM"],[2879,2879,"NSM"],[2881,2884,"NSM"],[2893,2893,"NSM"],[2901,2902,"NSM"],[2914,2915,"NSM"],[2946,2946,"NSM"],[3008,3008,"NSM"],[3021,3021,"NSM"],[3059,3064,"ON"],[3065,3065,"ET"],[3066,3066,"ON"],[3072,3072,"NSM"],[3076,3076,"NSM"],[3132,3132,"NSM"],[3134,3136,"NSM"],[3142,3144,"NSM"],[3146,3149,"NSM"],[3157,3158,"NSM"],[3170,3171,"NSM"],[3192,3198,"ON"],[3201,3201,"NSM"],[3260,3260,"NSM"],[3276,3277,"NSM"],[3298,3299,"NSM"],[3328,3329,"NSM"],[3387,3388,"NSM"],[3393,3396,"NSM"],[3405,3405,"NSM"],[3426,3427,"NSM"],[3457,3457,"NSM"],[3530,3530,"NSM"],[3538,3540,"NSM"],[3542,3542,"NSM"],[3633,3633,"NSM"],[3636,3642,"NSM"],[3647,3647,"ET"],[3655,3662,"NSM"],[3761,3761,"NSM"],[3764,3772,"NSM"],[3784,3790,"NSM"],[3864,3865,"NSM"],[3893,3893,"NSM"],[3895,3895,"NSM"],[3897,3897,"NSM"],[3898,3901,"ON"],[3953,3966,"NSM"],[3968,3972,"NSM"],[3974,3975,"NSM"],[3981,3991,"NSM"],[3993,4028,"NSM"],[4038,4038,"NSM"],[4141,4144,"NSM"],[4146,4151,"NSM"],[4153,4154,"NSM"],[4157,4158,"NSM"],[4184,4185,"NSM"],[4190,4192,"NSM"],[4209,4212,"NSM"],[4226,4226,"NSM"],[4229,4230,"NSM"],[4237,4237,"NSM"],[4253,4253,"NSM"],[4957,4959,"NSM"],[5008,5017,"ON"],[5120,5120,"ON"],[5760,5760,"WS"],[5787,5788,"ON"],[5906,5908,"NSM"],[5938,5939,"NSM"],[5970,5971,"NSM"],[6002,6003,"NSM"],[6068,6069,"NSM"],[6071,6077,"NSM"],[6086,6086,"NSM"],[6089,6099,"NSM"],[6107,6107,"ET"],[6109,6109,"NSM"],[6128,6137,"ON"],[6144,6154,"ON"],[6155,6157,"NSM"],[6158,6158,"BN"],[6159,6159,"NSM"],[6277,6278,"NSM"],[6313,6313,"NSM"],[6432,6434,"NSM"],[6439,6440,"NSM"],[6450,6450,"NSM"],[6457,6459,"NSM"],[6464,6464,"ON"],[6468,6469,"ON"],[6622,6655,"ON"],[6679,6680,"NSM"],[6683,6683,"NSM"],[6742,6742,"NSM"],[6744,6750,"NSM"],[6752,6752,"NSM"],[6754,6754,"NSM"],[6757,6764,"NSM"],[6771,6780,"NSM"],[6783,6783,"NSM"],[6832,6877,"NSM"],[6880,6891,"NSM"],[6912,6915,"NSM"],[6964,6964,"NSM"],[6966,6970,"NSM"],[6972,6972,"NSM"],[6978,6978,"NSM"],[7019,7027,"NSM"],[7040,7041,"NSM"],[7074,7077,"NSM"],[7080,7081,"NSM"],[7083,7085,"NSM"],[7142,7142,"NSM"],[7144,7145,"NSM"],[7149,7149,"NSM"],[7151,7153,"NSM"],[7212,7219,"NSM"],[7222,7223,"NSM"],[7376,7378,"NSM"],[7380,7392,"NSM"],[7394,7400,"NSM"],[7405,7405,"NSM"],[7412,7412,"NSM"],[7416,7417,"NSM"],[7616,7679,"NSM"],[8125,8125,"ON"],[8127,8129,"ON"],[8141,8143,"ON"],[8157,8159,"ON"],[8173,8175,"ON"],[8189,8190,"ON"],[8192,8202,"WS"],[8203,8205,"BN"],[8207,8207,"R"],[8208,8231,"ON"],[8232,8232,"WS"],[8233,8233,"B"],[8234,8238,"BN"],[8239,8239,"CS"],[8240,8244,"ET"],[8245,8259,"ON"],[8260,8260,"CS"],[8261,8286,"ON"],[8287,8287,"WS"],[8288,8303,"BN"],[8304,8304,"EN"],[8308,8313,"EN"],[8314,8315,"ES"],[8316,8318,"ON"],[8320,8329,"EN"],[8330,8331,"ES"],[8332,8334,"ON"],[8352,8399,"ET"],[8400,8432,"NSM"],[8448,8449,"ON"],[8451,8454,"ON"],[8456,8457,"ON"],[8468,8468,"ON"],[8470,8472,"ON"],[8478,8483,"ON"],[8485,8485,"ON"],[8487,8487,"ON"],[8489,8489,"ON"],[8494,8494,"ET"],[8506,8507,"ON"],[8512,8516,"ON"],[8522,8525,"ON"],[8528,8543,"ON"],[8585,8587,"ON"],[8592,8721,"ON"],[8722,8722,"ES"],[8723,8723,"ET"],[8724,9013,"ON"],[9083,9108,"ON"],[9110,9257,"ON"],[9280,9290,"ON"],[9312,9351,"ON"],[9352,9371,"EN"],[9450,9899,"ON"],[9901,10239,"ON"],[10496,11123,"ON"],[11126,11263,"ON"],[11493,11498,"ON"],[11503,11505,"NSM"],[11513,11519,"ON"],[11647,11647,"NSM"],[11744,11775,"NSM"],[11776,11869,"ON"],[11904,11929,"ON"],[11931,12019,"ON"],[12032,12245,"ON"],[12272,12287,"ON"],[12288,12288,"WS"],[12289,12292,"ON"],[12296,12320,"ON"],[12330,12333,"NSM"],[12336,12336,"ON"],[12342,12343,"ON"],[12349,12351,"ON"],[12441,12442,"NSM"],[12443,12444,"ON"],[12448,12448,"ON"],[12539,12539,"ON"],[12736,12773,"ON"],[12783,12783,"ON"],[12829,12830,"ON"],[12880,12895,"ON"],[12924,12926,"ON"],[12977,12991,"ON"],[13004,13007,"ON"],[13175,13178,"ON"],[13278,13279,"ON"],[13311,13311,"ON"],[19904,19967,"ON"],[42128,42182,"ON"],[42509,42511,"ON"],[42607,42610,"NSM"],[42611,42611,"ON"],[42612,42621,"NSM"],[42622,42623,"ON"],[42654,42655,"NSM"],[42736,42737,"NSM"],[42752,42785,"ON"],[42888,42888,"ON"],[43010,43010,"NSM"],[43014,43014,"NSM"],[43019,43019,"NSM"],[43045,43046,"NSM"],[43048,43051,"ON"],[43052,43052,"NSM"],[43064,43065,"ET"],[43124,43127,"ON"],[43204,43205,"NSM"],[43232,43249,"NSM"],[43263,43263,"NSM"],[43302,43309,"NSM"],[43335,43345,"NSM"],[43392,43394,"NSM"],[43443,43443,"NSM"],[43446,43449,"NSM"],[43452,43453,"NSM"],[43493,43493,"NSM"],[43561,43566,"NSM"],[43569,43570,"NSM"],[43573,43574,"NSM"],[43587,43587,"NSM"],[43596,43596,"NSM"],[43644,43644,"NSM"],[43696,43696,"NSM"],[43698,43700,"NSM"],[43703,43704,"NSM"],[43710,43711,"NSM"],[43713,43713,"NSM"],[43756,43757,"NSM"],[43766,43766,"NSM"],[43882,43883,"ON"],[44005,44005,"NSM"],[44008,44008,"NSM"],[44013,44013,"NSM"],[64285,64285,"R"],[64286,64286,"NSM"],[64287,64296,"R"],[64297,64297,"ES"],[64298,64335,"R"],[64336,64450,"AL"],[64451,64466,"ON"],[64467,64829,"AL"],[64830,64847,"ON"],[64848,64911,"AL"],[64912,64913,"ON"],[64914,64967,"AL"],[64968,64975,"ON"],[64976,65007,"BN"],[65008,65020,"AL"],[65021,65023,"ON"],[65024,65039,"NSM"],[65040,65049,"ON"],[65056,65071,"NSM"],[65072,65103,"ON"],[65104,65104,"CS"],[65105,65105,"ON"],[65106,65106,"CS"],[65108,65108,"ON"],[65109,65109,"CS"],[65110,65118,"ON"],[65119,65119,"ET"],[65120,65121,"ON"],[65122,65123,"ES"],[65124,65126,"ON"],[65128,65128,"ON"],[65129,65130,"ET"],[65131,65131,"ON"],[65136,65278,"AL"],[65279,65279,"BN"],[65281,65282,"ON"],[65283,65285,"ET"],[65286,65290,"ON"],[65291,65291,"ES"],[65292,65292,"CS"],[65293,65293,"ES"],[65294,65295,"CS"],[65296,65305,"EN"],[65306,65306,"CS"],[65307,65312,"ON"],[65339,65344,"ON"],[65371,65381,"ON"],[65504,65505,"ET"],[65506,65508,"ON"],[65509,65510,"ET"],[65512,65518,"ON"],[65520,65528,"BN"],[65529,65533,"ON"],[65534,65535,"BN"],[65793,65793,"ON"],[65856,65932,"ON"],[65936,65948,"ON"],[65952,65952,"ON"],[66045,66045,"NSM"],[66272,66272,"NSM"],[66273,66299,"EN"],[66422,66426,"NSM"],[67584,67870,"R"],[67871,67871,"ON"],[67872,68096,"R"],[68097,68099,"NSM"],[68100,68100,"R"],[68101,68102,"NSM"],[68103,68107,"R"],[68108,68111,"NSM"],[68112,68151,"R"],[68152,68154,"NSM"],[68155,68158,"R"],[68159,68159,"NSM"],[68160,68324,"R"],[68325,68326,"NSM"],[68327,68408,"R"],[68409,68415,"ON"],[68416,68863,"R"],[68864,68899,"AL"],[68900,68903,"NSM"],[68904,68911,"AL"],[68912,68921,"AN"],[68922,68927,"AL"],[68928,68937,"AN"],[68938,68968,"R"],[68969,68973,"NSM"],[68974,68974,"ON"],[68975,69215,"R"],[69216,69246,"AN"],[69247,69290,"R"],[69291,69292,"NSM"],[69293,69311,"R"],[69312,69327,"AL"],[69328,69336,"ON"],[69337,69369,"AL"],[69370,69375,"NSM"],[69376,69423,"R"],[69424,69445,"AL"],[69446,69456,"NSM"],[69457,69487,"AL"],[69488,69505,"R"],[69506,69509,"NSM"],[69510,69631,"R"],[69633,69633,"NSM"],[69688,69702,"NSM"],[69714,69733,"ON"],[69744,69744,"NSM"],[69747,69748,"NSM"],[69759,69761,"NSM"],[69811,69814,"NSM"],[69817,69818,"NSM"],[69826,69826,"NSM"],[69888,69890,"NSM"],[69927,69931,"NSM"],[69933,69940,"NSM"],[70003,70003,"NSM"],[70016,70017,"NSM"],[70070,70078,"NSM"],[70089,70092,"NSM"],[70095,70095,"NSM"],[70191,70193,"NSM"],[70196,70196,"NSM"],[70198,70199,"NSM"],[70206,70206,"NSM"],[70209,70209,"NSM"],[70367,70367,"NSM"],[70371,70378,"NSM"],[70400,70401,"NSM"],[70459,70460,"NSM"],[70464,70464,"NSM"],[70502,70508,"NSM"],[70512,70516,"NSM"],[70587,70592,"NSM"],[70606,70606,"NSM"],[70608,70608,"NSM"],[70610,70610,"NSM"],[70625,70626,"NSM"],[70712,70719,"NSM"],[70722,70724,"NSM"],[70726,70726,"NSM"],[70750,70750,"NSM"],[70835,70840,"NSM"],[70842,70842,"NSM"],[70847,70848,"NSM"],[70850,70851,"NSM"],[71090,71093,"NSM"],[71100,71101,"NSM"],[71103,71104,"NSM"],[71132,71133,"NSM"],[71219,71226,"NSM"],[71229,71229,"NSM"],[71231,71232,"NSM"],[71264,71276,"ON"],[71339,71339,"NSM"],[71341,71341,"NSM"],[71344,71349,"NSM"],[71351,71351,"NSM"],[71453,71453,"NSM"],[71455,71455,"NSM"],[71458,71461,"NSM"],[71463,71467,"NSM"],[71727,71735,"NSM"],[71737,71738,"NSM"],[71995,71996,"NSM"],[71998,71998,"NSM"],[72003,72003,"NSM"],[72148,72151,"NSM"],[72154,72155,"NSM"],[72160,72160,"NSM"],[72193,72198,"NSM"],[72201,72202,"NSM"],[72243,72248,"NSM"],[72251,72254,"NSM"],[72263,72263,"NSM"],[72273,72278,"NSM"],[72281,72283,"NSM"],[72330,72342,"NSM"],[72344,72345,"NSM"],[72544,72544,"NSM"],[72546,72548,"NSM"],[72550,72550,"NSM"],[72752,72758,"NSM"],[72760,72765,"NSM"],[72850,72871,"NSM"],[72874,72880,"NSM"],[72882,72883,"NSM"],[72885,72886,"NSM"],[73009,73014,"NSM"],[73018,73018,"NSM"],[73020,73021,"NSM"],[73023,73029,"NSM"],[73031,73031,"NSM"],[73104,73105,"NSM"],[73109,73109,"NSM"],[73111,73111,"NSM"],[73459,73460,"NSM"],[73472,73473,"NSM"],[73526,73530,"NSM"],[73536,73536,"NSM"],[73538,73538,"NSM"],[73562,73562,"NSM"],[73685,73692,"ON"],[73693,73696,"ET"],[73697,73713,"ON"],[78912,78912,"NSM"],[78919,78933,"NSM"],[90398,90409,"NSM"],[90413,90415,"NSM"],[92912,92916,"NSM"],[92976,92982,"NSM"],[94031,94031,"NSM"],[94095,94098,"NSM"],[94178,94178,"ON"],[94180,94180,"NSM"],[113821,113822,"NSM"],[113824,113827,"BN"],[117760,117973,"ON"],[118e3,118009,"EN"],[118010,118012,"ON"],[118016,118451,"ON"],[118458,118480,"ON"],[118496,118512,"ON"],[118528,118573,"NSM"],[118576,118598,"NSM"],[119143,119145,"NSM"],[119155,119162,"BN"],[119163,119170,"NSM"],[119173,119179,"NSM"],[119210,119213,"NSM"],[119273,119274,"ON"],[119296,119361,"ON"],[119362,119364,"NSM"],[119365,119365,"ON"],[119552,119638,"ON"],[120513,120513,"ON"],[120539,120539,"ON"],[120571,120571,"ON"],[120597,120597,"ON"],[120629,120629,"ON"],[120655,120655,"ON"],[120687,120687,"ON"],[120713,120713,"ON"],[120745,120745,"ON"],[120771,120771,"ON"],[120782,120831,"EN"],[121344,121398,"NSM"],[121403,121452,"NSM"],[121461,121461,"NSM"],[121476,121476,"NSM"],[121499,121503,"NSM"],[121505,121519,"NSM"],[122880,122886,"NSM"],[122888,122904,"NSM"],[122907,122913,"NSM"],[122915,122916,"NSM"],[122918,122922,"NSM"],[123023,123023,"NSM"],[123184,123190,"NSM"],[123566,123566,"NSM"],[123628,123631,"NSM"],[123647,123647,"ET"],[124140,124143,"NSM"],[124398,124399,"NSM"],[124643,124643,"NSM"],[124646,124646,"NSM"],[124654,124655,"NSM"],[124661,124661,"NSM"],[124928,125135,"R"],[125136,125142,"NSM"],[125143,125251,"R"],[125252,125258,"NSM"],[125259,126063,"R"],[126064,126143,"AL"],[126144,126207,"R"],[126208,126287,"AL"],[126288,126463,"R"],[126464,126703,"AL"],[126704,126705,"ON"],[126706,126719,"AL"],[126720,126975,"R"],[126976,127019,"ON"],[127024,127123,"ON"],[127136,127150,"ON"],[127153,127167,"ON"],[127169,127183,"ON"],[127185,127221,"ON"],[127232,127242,"EN"],[127243,127247,"ON"],[127279,127279,"ON"],[127338,127343,"ON"],[127405,127405,"ON"],[127584,127589,"ON"],[127744,128728,"ON"],[128732,128748,"ON"],[128752,128764,"ON"],[128768,128985,"ON"],[128992,129003,"ON"],[129008,129008,"ON"],[129024,129035,"ON"],[129040,129095,"ON"],[129104,129113,"ON"],[129120,129159,"ON"],[129168,129197,"ON"],[129200,129211,"ON"],[129216,129217,"ON"],[129232,129240,"ON"],[129280,129623,"ON"],[129632,129645,"ON"],[129648,129660,"ON"],[129664,129674,"ON"],[129678,129734,"ON"],[129736,129736,"ON"],[129741,129756,"ON"],[129759,129770,"ON"],[129775,129784,"ON"],[129792,129938,"ON"],[129940,130031,"ON"],[130032,130041,"EN"],[130042,130042,"ON"],[131070,131071,"BN"],[196606,196607,"BN"],[262142,262143,"BN"],[327678,327679,"BN"],[393214,393215,"BN"],[458750,458751,"BN"],[524286,524287,"BN"],[589822,589823,"BN"],[655358,655359,"BN"],[720894,720895,"BN"],[786430,786431,"BN"],[851966,851967,"BN"],[917502,917759,"BN"],[917760,917999,"NSM"],[918e3,921599,"BN"],[983038,983039,"BN"],[1048574,1048575,"BN"],[1114110,1114111,"BN"]];function ed(t){if(t<=255)return Ws[t];let e=0,n=Gi.length-1;for(;e<=n;){let i=e+n>>1,r=Gi[i];if(t<r[0]){n=i-1;continue}if(t>r[1]){e=i+1;continue}return r[2]}return"L"}function td(t){let e=t.length;if(e===0)return null;let n=new Array(e),i=!1;for(let c=0;c<e;){let u=t.charCodeAt(c),m=u,f=1;if(u>=55296&&u<=56319&&c+1<e){let E=t.charCodeAt(c+1);E>=56320&&E<=57343&&(m=(u-55296<<10)+(E-56320)+65536,f=2)}let x=ed(m);(x==="R"||x==="AL"||x==="AN")&&(i=!0);for(let E=0;E<f;E++)n[c+E]=x;c+=f}if(!i)return null;let r=0;for(let c=0;c<e;c++){let u=n[c];if(u==="L"){r=0;break}if(u==="R"||u==="AL"){r=1;break}}let o=new Int8Array(e);for(let c=0;c<e;c++)o[c]=r;let s=r&1?"R":"L",l=s,a=l;for(let c=0;c<e;c++)n[c]==="NSM"?n[c]=a:a=n[c];a=l;for(let c=0;c<e;c++){let u=n[c];u==="EN"?n[c]=a==="AL"?"AN":"EN":(u==="R"||u==="L"||u==="AL")&&(a=u)}for(let c=0;c<e;c++)n[c]==="AL"&&(n[c]="R");for(let c=1;c<e-1;c++)n[c]==="ES"&&n[c-1]==="EN"&&n[c+1]==="EN"&&(n[c]="EN"),n[c]==="CS"&&(n[c-1]==="EN"||n[c-1]==="AN")&&n[c+1]===n[c-1]&&(n[c]=n[c-1]);for(let c=0;c<e;c++){if(n[c]!=="EN")continue;let u;for(u=c-1;u>=0&&n[u]==="ET";u--)n[u]="EN";for(u=c+1;u<e&&n[u]==="ET";u++)n[u]="EN"}for(let c=0;c<e;c++){let u=n[c];(u==="WS"||u==="ES"||u==="ET"||u==="CS")&&(n[c]="ON")}a=l;for(let c=0;c<e;c++){let u=n[c];u==="EN"?n[c]=a==="L"?"L":"EN":(u==="R"||u==="L")&&(a=u)}for(let c=0;c<e;c++){if(n[c]!=="ON")continue;let u=c+1;for(;u<e&&n[u]==="ON";)u++;let m=c>0?n[c-1]:l,f=u<e?n[u]:l,x=m!=="L"?"R":"L";if(x===(f!=="L"?"R":"L"))for(let g=c;g<u;g++)n[g]=x;c=u-1}for(let c=0;c<e;c++)n[c]==="ON"&&(n[c]=s);for(let c=0;c<e;c++){let u=n[c];(o[c]&1)===0?u==="R"?o[c]++:(u==="AN"||u==="EN")&&(o[c]+=2):(u==="L"||u==="AN"||u==="EN")&&o[c]++}return o}function Gs(t,e){let n=td(t);if(n===null)return null;let i=new Int8Array(e.length);for(let r=0;r<e.length;r++)i[r]=n[e[r]];return i}var nd=/[ \\t\\n\\r\\f]+/g,id=/[\\t\\n\\r\\f]| {2,}|^ | $/;function rd(t){let e=t??"normal";return e==="pre-wrap"?{mode:e,preserveOrdinarySpaces:!0,preserveHardBreaks:!0}:{mode:e,preserveOrdinarySpaces:!1,preserveHardBreaks:!1}}function od(t){if(!id.test(t))return t;let e=t.replace(nd," ");return e.charCodeAt(0)===32&&(e=e.slice(1)),e.length>0&&e.charCodeAt(e.length-1)===32&&(e=e.slice(0,-1)),e}function sd(t){return/[\\r\\f]/.test(t)?t.replace(/\\r\\n/g,`\n`).replace(/[\\r\\f]/g,`\n`):t.replace(/\\r\\n/g,`\n`)}var Ui=null,ad;function ld(){return Ui===null&&(Ui=new Intl.Segmenter(ad,{granularity:"word"})),Ui}var ud=/\\p{Script=Arabic}/u,_n=/\\p{M}/u,Js=/\\p{Nd}/u;function Us(t){return ud.test(t)}function Vs(t){return t>=19968&&t<=40959||t>=13312&&t<=19903||t>=131072&&t<=173791||t>=173824&&t<=177983||t>=177984&&t<=178207||t>=178208&&t<=183983||t>=183984&&t<=191471||t>=191472&&t<=192093||t>=194560&&t<=195103||t>=196608&&t<=201551||t>=201552&&t<=205743||t>=205744&&t<=210041||t>=63744&&t<=64255||t>=12288&&t<=12351||t>=12352&&t<=12447||t>=12448&&t<=12543||t>=44032&&t<=55215||t>=65280&&t<=65519}function Ie(t){for(let e=0;e<t.length;e++){let n=t.charCodeAt(e);if(!(n<12288)){if(n>=55296&&n<=56319&&e+1<t.length){let i=t.charCodeAt(e+1);if(i>=56320&&i<=57343){let r=(n-55296<<10)+(i-56320)+65536;if(Vs(r))return!0;e++;continue}}if(Vs(n))return!0}}return!1}function cd(t){let e=vn(t);return e!==null&&(Ln.has(e)||Qe.has(e))}var dd=new Set(["\\xA0","\\u202F","\\u2060","\\uFEFF"]);function fd(t){return Ie(t)}function md(t){let e=vn(t);return e!==null&&dd.has(e)}function Tn(t){return!cd(t)&&!md(t)}var Ln=new Set(["\\uFF0C","\\uFF0E","\\uFF01","\\uFF1A","\\uFF1B","\\uFF1F","\\u3001","\\u3002","\\u30FB","\\uFF09","\\u3015","\\u3009","\\u300B","\\u300D","\\u300F","\\u3011","\\u3017","\\u3019","\\u301B","\\u30FC","\\u3005","\\u303B","\\u309D","\\u309E","\\u30FD","\\u30FE"]),tn=new Set([\'"\',"(","[","{","\\u201C","\\u2018","\\xAB","\\u2039","\\uFF08","\\u3014","\\u3008","\\u300A","\\u300C","\\u300E","\\u3010","\\u3016","\\u3018","\\u301A"]),zi=new Set(["\'","\\u2019"]),Qe=new Set([".",",","!","?",":",";","\\u060C","\\u061B","\\u061F","\\u0964","\\u0965","\\u104A","\\u104B","\\u104C","\\u104D","\\u104F",")","]","}","%",\'"\',"\\u201D","\\u2019","\\xBB","\\u203A","\\u2026"]),pd=new Set([":",".","\\u060C","\\u061B"]),hd=new Set(["\\u104F"]),xd=new Set(["\\u201D","\\u2019","\\xBB","\\u203A","\\u300D","\\u300F","\\u3011","\\u300B","\\u3009","\\u3015","\\uFF09"]);function gd(t){if(ji(t))return!0;let e=!1;for(let n of t){if(Qe.has(n)){e=!0;continue}if(!(e&&_n.test(n)))return!1}return e}function yd(t){for(let e of t)if(!Ln.has(e)&&!Qe.has(e))return!1;return t.length>0}function bd(t){if(ji(t))return!0;for(let e of t)if(!tn.has(e)&&!zi.has(e)&&!_n.test(e))return!1;return t.length>0}function ji(t){let e=!1;for(let n of t)if(!(n==="\\\\"||_n.test(n))){if(tn.has(n)||Qe.has(n)||zi.has(n)){e=!0;continue}return!1}return e}function Ys(t,e){let n=e-1;if(n<=0)return Math.max(n,0);let i=t.charCodeAt(n);if(i<56320||i>57343)return n;let r=n-1;if(r<0)return n;let o=t.charCodeAt(r);return o>=55296&&o<=56319?r:n}function vn(t){if(t.length===0)return null;let e=Ys(t,t.length);return t.slice(e)}function Sd(t){let e=Array.from(t),n=e.length;for(;n>0;){let i=e[n-1];if(_n.test(i)){n--;continue}if(tn.has(i)||zi.has(i)){n--;continue}break}return n<=0||n===e.length?null:{head:e.slice(0,n).join(""),tail:e.slice(n).join("")}}function Ad(t,e,n){return n==="text"&&!e&&t.length===1&&t!=="-"&&t!=="\\u2014"?t:null}function zs(t,e,n,i){let r=e[i],o=t[i];if(r==null)return o;let s=n[i];if(o.length===s)return o;let l=r.repeat(s);return t[i]=l,l}function js(t,e){return t&&e!==null&&pd.has(e)}function Ed(t){let e=vn(t);return e!==null&&hd.has(e)}function wd(t){if(t.length<2||t[0]!==" ")return null;let e=t.slice(1);return/^\\p{M}+$/u.test(e)?{space:" ",marks:e}:null}function Rn(t){let e=t.length;for(;e>0;){let n=Ys(t,e),i=t.slice(n,e);if(xd.has(i))return!0;if(!Qe.has(i))return!1;e=n}return!1}function Cd(t,e){if(e.preserveOrdinarySpaces||e.preserveHardBreaks){if(t===" ")return"preserved-space";if(t===" ")return"tab";if(e.preserveHardBreaks&&t===`\n`)return"hard-break"}return t===" "?"space":t==="\\xA0"||t==="\\u202F"||t==="\\u2060"||t==="\\uFEFF"?"glue":t==="\\u200B"?"zero-width-break":t==="\\xAD"?"soft-hyphen":"text"}var Fd=/[\\x20\\t\\n\\xA0\\xAD\\u200B\\u202F\\u2060\\uFEFF]/;function Te(t){return t.length===1?t[0]:t.join("")}function Md(t,e){let n=[];for(let i=t.length-1;i>=0;i--)n.push(t[i]);return n.push(e),Te(n)}function Nd(t,e,n,i){if(!Fd.test(t))return[{text:t,isWordLike:e,kind:"text",start:n}];let r=[],o=null,s=[],l=n,a=!1,c=0;for(let u of t){let m=Cd(u,i),f=m==="text"&&e;if(o!==null&&m===o&&f===a){s.push(u),c+=u.length;continue}o!==null&&r.push({text:Te(s),isWordLike:a,kind:o,start:l}),o=m,s=[u],l=n+c,a=f,c+=u.length}return o!==null&&r.push({text:Te(s),isWordLike:a,kind:o,start:l}),r}function Vi(t){return t==="space"||t==="preserved-space"||t==="zero-width-break"||t==="hard-break"}var _d=/^[A-Za-z][A-Za-z0-9+.-]*:$/;function Td(t,e){let n=t.texts[e];return n.startsWith("www.")?!0:_d.test(n)&&e+1<t.len&&t.kinds[e+1]==="text"&&t.texts[e+1]==="//"}function Ld(t){return t.includes("?")&&(t.includes("://")||t.startsWith("www."))}function vd(t){let e=t.texts.slice(),n=t.isWordLike.slice(),i=t.kinds.slice(),r=t.starts.slice();for(let s=0;s<t.len;s++){if(i[s]!=="text"||!Td(t,s))continue;let l=[e[s]],a=s+1;for(;a<t.len&&!Vi(i[a]);){l.push(e[a]),n[s]=!0;let c=e[a].includes("?");if(i[a]="text",e[a]="",a++,c)break}e[s]=Te(l)}let o=0;for(let s=0;s<e.length;s++){let l=e[s];l.length!==0&&(o!==s&&(e[o]=l,n[o]=n[s],i[o]=i[s],r[o]=r[s]),o++)}return e.length=o,n.length=o,i.length=o,r.length=o,{len:o,texts:e,isWordLike:n,kinds:i,starts:r}}function Rd(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o];if(e.push(s),n.push(t.isWordLike[o]),i.push(t.kinds[o]),r.push(t.starts[o]),!Ld(s))continue;let l=o+1;if(l>=t.len||Vi(t.kinds[l]))continue;let a=[],c=t.starts[l],u=l;for(;u<t.len&&!Vi(t.kinds[u]);)a.push(t.texts[u]),u++;a.length>0&&(e.push(Te(a)),n.push(!0),i.push("text"),r.push(c),o=u-1)}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}var kd=new Set([":","-","/","\\xD7",",",".","+","\\u2013","\\u2014"]),qs=/^[A-Za-z0-9_]+[,:;]*$/,$s=/[,:;]+$/;function Xs(t){for(let e of t)if(Js.test(e))return!0;return!1}function en(t){if(t.length===0)return!1;for(let e of t)if(!(Js.test(e)||kd.has(e)))return!1;return!0}function Dd(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o],l=t.kinds[o];if(l==="text"&&en(s)&&Xs(s)){let a=[s],c=o+1;for(;c<t.len&&t.kinds[c]==="text"&&en(t.texts[c]);)a.push(t.texts[c]),c++;e.push(Te(a)),n.push(!0),i.push("text"),r.push(t.starts[o]),o=c-1;continue}e.push(s),n.push(t.isWordLike[o]),i.push(l),r.push(t.starts[o])}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Id(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o],l=t.kinds[o],a=t.isWordLike[o];if(l==="text"&&a&&qs.test(s)){let c=[s],u=$s.test(s),m=o+1;for(;u&&m<t.len&&t.kinds[m]==="text"&&t.isWordLike[m]&&qs.test(t.texts[m]);){let f=t.texts[m];c.push(f),u=$s.test(f),m++}e.push(Te(c)),n.push(!0),i.push("text"),r.push(t.starts[o]),o=m-1;continue}e.push(s),n.push(a),i.push(l),r.push(t.starts[o])}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Pd(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o];if(t.kinds[o]==="text"&&s.includes("-")){let l=s.split("-"),a=l.length>1;for(let c=0;c<l.length;c++){let u=l[c];if(!a)break;(u.length===0||!Xs(u)||!en(u))&&(a=!1)}if(a){let c=0;for(let u=0;u<l.length;u++){let m=l[u],f=u<l.length-1?`${m}-`:m;e.push(f),n.push(!0),i.push("text"),r.push(t.starts[o]+c),c+=f.length}continue}}e.push(s),n.push(t.isWordLike[o]),i.push(t.kinds[o]),r.push(t.starts[o])}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Od(t){let e=[],n=[],i=[],r=[],o=0;for(;o<t.len;){let s=[t.texts[o]],l=t.isWordLike[o],a=t.kinds[o],c=t.starts[o];if(a==="glue"){let u=[s[0]],m=c;for(o++;o<t.len&&t.kinds[o]==="glue";)u.push(t.texts[o]),o++;let f=Te(u);if(o<t.len&&t.kinds[o]==="text")s[0]=f,s.push(t.texts[o]),l=t.isWordLike[o],a="text",c=m,o++;else{e.push(f),n.push(!1),i.push("glue"),r.push(m);continue}}else o++;if(a==="text")for(;o<t.len&&t.kinds[o]==="glue";){let u=[];for(;o<t.len&&t.kinds[o]==="glue";)u.push(t.texts[o]),o++;let m=Te(u);if(o<t.len&&t.kinds[o]==="text"){s.push(m,t.texts[o]),l=l||t.isWordLike[o],o++;continue}s.push(m)}e.push(Te(s)),n.push(l),i.push(a),r.push(c)}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Bd(t){let e=t.texts.slice(),n=t.isWordLike.slice(),i=t.kinds.slice(),r=t.starts.slice();for(let o=0;o<e.length-1;o++){if(i[o]!=="text"||i[o+1]!=="text"||!Ie(e[o])||!Ie(e[o+1]))continue;let s=Sd(e[o]);s!==null&&(e[o]=s.head,e[o+1]=s.tail+e[o+1],r[o+1]=r[o]+s.head.length)}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Ks(t,e,n){let i=ld(),r=0,o=[],s=[],l=[],a=[],c=[],u=[],m=[],f=[],x=[],E=[],g=[],S=[];for(let M of i.segment(t))for(let b of Nd(M.segment,M.isWordLike??!1,M.index,n)){let ee=function(){u[I]!==null&&(s[I]=[zs(o,u,m,I)],u[I]=null),s[I].push(b.text),l[I]=l[I]||b.isWordLike,f[I]=f[I]||N,x[I]=x[I]||T,E[I]=V,g[I]=se,S[I]=js(x[I],G)},w=b.kind==="text",F=Ad(b.text,b.isWordLike,b.kind),N=Ie(b.text),T=Us(b.text),G=vn(b.text),V=Rn(b.text),se=Ed(b.text),I=r-1;e.carryCJKAfterClosingQuote&&w&&r>0&&a[I]==="text"&&N&&f[I]&&E[I]||w&&r>0&&a[I]==="text"&&yd(b.text)&&f[I]||w&&r>0&&a[I]==="text"&&g[I]?ee():w&&r>0&&a[I]==="text"&&b.isWordLike&&T&&S[I]?(ee(),l[I]=!0):F!==null&&r>0&&a[I]==="text"&&u[I]===F?m[I]=(m[I]??1)+1:w&&!b.isWordLike&&r>0&&a[I]==="text"&&(gd(b.text)||b.text==="-"&&l[I])?ee():(o[r]=b.text,s[r]=[b.text],l[r]=b.isWordLike,a[r]=b.kind,c[r]=b.start,u[r]=F,m[r]=F===null?0:1,f[r]=N,x[r]=T,E[r]=V,g[r]=se,S[r]=js(T,G),r++)}for(let M=0;M<r;M++){if(u[M]!==null){o[M]=zs(o,u,m,M);continue}o[M]=Te(s[M])}for(let M=1;M<r;M++)a[M]==="text"&&!l[M]&&ji(o[M])&&a[M-1]==="text"&&(o[M-1]+=o[M],l[M-1]=l[M-1]||l[M],o[M]="");let _=Array.from({length:r},()=>null),v=-1;for(let M=r-1;M>=0;M--){let b=o[M];if(b.length!==0){if(a[M]==="text"&&!l[M]&&bd(b)&&v>=0&&a[v]==="text"){let w=_[v]??[];w.push(b),_[v]=w,c[v]=c[M],o[M]="";continue}v=M}}for(let M=0;M<r;M++){let b=_[M];b!=null&&(o[M]=Md(b,o[M]))}let R=0;for(let M=0;M<r;M++){let b=o[M];b.length!==0&&(R!==M&&(o[R]=b,l[R]=l[M],a[R]=a[M],c[R]=c[M]),R++)}o.length=R,l.length=R,a.length=R,c.length=R;let J=Od({len:R,texts:o,isWordLike:l,kinds:a,starts:c}),O=Bd(Id(Pd(Dd(Rd(vd(J))))));for(let M=0;M<O.len-1;M++){let b=wd(O.texts[M]);b!==null&&(O.kinds[M]!=="space"&&O.kinds[M]!=="preserved-space"||O.kinds[M+1]!=="text"||!Us(O.texts[M+1])||(O.texts[M]=b.space,O.isWordLike[M]=!1,O.kinds[M]=O.kinds[M]==="preserved-space"?"preserved-space":"space",O.texts[M+1]=b.marks+O.texts[M+1],O.starts[M+1]=O.starts[M]+b.space.length))}return O}function Hd(t,e){if(t.len===0)return[];if(!e.preserveHardBreaks)return[{startSegmentIndex:0,endSegmentIndex:t.len,consumedEndSegmentIndex:t.len}];let n=[],i=0;for(let r=0;r<t.len;r++)t.kinds[r]==="hard-break"&&(n.push({startSegmentIndex:i,endSegmentIndex:r,consumedEndSegmentIndex:r+1}),i=r+1);return i<t.len&&n.push({startSegmentIndex:i,endSegmentIndex:t.len,consumedEndSegmentIndex:t.len}),n}function Wd(t){if(t.len<=1)return t;let e=[],n=[],i=[],r=[],o=null,s=!1,l=0,a=!1,c=!1;function u(){o!==null&&(e.push(Te(o)),n.push(s),i.push("text"),r.push(l),o=null)}for(let m=0;m<t.len;m++){let f=t.texts[m],x=t.kinds[m],E=t.isWordLike[m],g=t.starts[m];if(x==="text"){let S=fd(f),_=Tn(f);if(o!==null&&a&&c){o.push(f),s=s||E,a=a||S,c=_;continue}u(),o=[f],s=E,l=g,a=S,c=_;continue}u(),e.push(f),n.push(E),i.push(x),r.push(g)}return u(),{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Qs(t,e,n="normal",i="normal"){let r=rd(n),o=r.mode==="pre-wrap"?sd(t):od(t);if(o.length===0)return{normalized:o,chunks:[],len:0,texts:[],isWordLike:[],kinds:[],starts:[]};let s=i==="keep-all"?Wd(Ks(o,e,r)):Ks(o,e,r);return{normalized:o,chunks:Hd(s,r),...s}}var xt=null,Zs=new Map,gt=null,Gd=96,Ud=/\\p{Emoji_Presentation}/u,Vd=/[\\p{Emoji_Presentation}\\p{Extended_Pictographic}\\p{Regional_Indicator}\\uFE0F\\u20E3]/u,qi=null,ea=new Map;function $i(){if(xt!==null)return xt;if(typeof OffscreenCanvas<"u")return xt=new OffscreenCanvas(1,1).getContext("2d"),xt;if(typeof document<"u")return xt=document.createElement("canvas").getContext("2d"),xt;throw new Error("Text measurement requires OffscreenCanvas or a DOM canvas context.")}function zd(t){let e=Zs.get(t);return e||(e=new Map,Zs.set(t,e)),e}function ze(t,e){let n=e.get(t);return n===void 0&&(n={width:$i().measureText(t).width,containsCJK:Ie(t)},e.set(t,n)),n}function yt(){if(gt!==null)return gt;if(typeof navigator>"u")return gt={lineFitEpsilon:.005,carryCJKAfterClosingQuote:!1,preferPrefixWidthsForBreakableRuns:!1,preferEarlySoftHyphenBreak:!1},gt;let t=navigator.userAgent,n=navigator.vendor==="Apple Computer, Inc."&&t.includes("Safari/")&&!t.includes("Chrome/")&&!t.includes("Chromium/")&&!t.includes("CriOS/")&&!t.includes("FxiOS/")&&!t.includes("EdgiOS/"),i=t.includes("Chrome/")||t.includes("Chromium/")||t.includes("CriOS/")||t.includes("Edg/");return gt={lineFitEpsilon:n?1/64:.005,carryCJKAfterClosingQuote:i,preferPrefixWidthsForBreakableRuns:n,preferEarlySoftHyphenBreak:n},gt}function jd(t){let e=t.match(/(\\d+(?:\\.\\d+)?)\\s*px/);return e?parseFloat(e[1]):16}function ta(){return qi===null&&(qi=new Intl.Segmenter(void 0,{granularity:"grapheme"})),qi}function qd(t){return Ud.test(t)||t.includes("\\uFE0F")}function na(t){return Vd.test(t)}function $d(t,e){let n=ea.get(t);if(n!==void 0)return n;let i=$i();i.font=t;let r=i.measureText("\\u{1F600}").width;if(n=0,r>e+.5&&typeof document<"u"&&document.body!==null){let o=document.createElement("span");o.style.font=t,o.style.display="inline-block",o.style.visibility="hidden",o.style.position="absolute",o.textContent="\\u{1F600}",document.body.appendChild(o);let s=o.getBoundingClientRect().width;document.body.removeChild(o),r-s>.5&&(n=r-s)}return ea.set(t,n),n}function Kd(t){let e=0,n=ta();for(let i of n.segment(t))qd(i.segment)&&e++;return e}function Jd(t,e){return e.emojiCount===void 0&&(e.emojiCount=Kd(t)),e.emojiCount}function Ze(t,e,n){return n===0?e.width:e.width-Jd(t,e)*n}function ia(t,e,n,i,r){if(e.breakableFitAdvances!==void 0)return e.breakableFitAdvances;let o=ta(),s=[];for(let u of o.segment(t))s.push(u.segment);if(s.length<=1)return e.breakableFitAdvances=null,e.breakableFitAdvances;if(r==="sum-graphemes"){let u=[];for(let m of s){let f=ze(m,n);u.push(Ze(m,f,i))}return e.breakableFitAdvances=u,e.breakableFitAdvances}if(r==="pair-context"||s.length>Gd){let u=[],m=null,f=0;for(let x of s){let E=ze(x,n),g=Ze(x,E,i);if(m===null)u.push(g);else{let S=m+x,_=ze(S,n);u.push(Ze(S,_,i)-f)}m=x,f=g}return e.breakableFitAdvances=u,e.breakableFitAdvances}let l=[],a="",c=0;for(let u of s){a+=u;let m=ze(a,n),f=Ze(a,m,i);l.push(f-c),c=f}return e.breakableFitAdvances=l,e.breakableFitAdvances}function ra(t,e){let n=$i();n.font=t;let i=zd(t),r=jd(t),o=e?$d(t,r):0;return{cache:i,fontSize:r,emojiCorrection:o}}function Yd(t,e){for(;e<t.widths.length;){let n=t.kinds[e];if(n!=="space"&&n!=="zero-width-break"&&n!=="soft-hyphen")break;e++}return e}function Xd(t,e){if(e<=0)return 0;let n=t%e;return Math.abs(n)<=1e-6?e:e-n}function Qd(t,e,n,i,r){let o=0,s=e;for(;o<t.length;){let l=s+t[o];if((o+1<t.length?l+r:l)>n+i)break;s=l,o++}return{fitCount:o,fittedWidth:s}}function oa(t,e){return t.simpleLineWalkFastPath?sa(t,e):aa(t,e)}function sa(t,e,n){let{widths:i,kinds:r,breakableFitAdvances:o}=t;if(i.length===0)return 0;let l=yt().lineFitEpsilon,a=e+l,c=0,u=0,m=!1,f=0,x=0,E=0,g=0,S=-1,_=0;function v(){S=-1,_=0}function R(F=E,N=g,T=u){c++,n?.({startSegmentIndex:f,startGraphemeIndex:x,endSegmentIndex:F,endGraphemeIndex:N,width:T}),u=0,m=!1,v()}function J(F,N){m=!0,f=F,x=0,E=F+1,g=0,u=N}function O(F,N,T){m=!0,f=F,x=N,E=F,g=N+1,u=T}function M(F,N){if(!m){J(F,N);return}u+=N,E=F+1,g=0}function b(F,N){let T=o[F];for(let G=N;G<T.length;G++){let V=T[G];m?u+V>a?(R(),O(F,G,V)):(u+=V,E=F,g=G+1):O(F,G,V)}m&&E===F&&g===T.length&&(E=F+1,g=0)}let w=0;for(;w<i.length&&!(!m&&(w=Yd(t,w),w>=i.length));){let F=i[w],N=r[w],T=N==="space"||N==="preserved-space"||N==="tab"||N==="zero-width-break"||N==="soft-hyphen";if(!m){F>e&&o[w]!==null?b(w,0):J(w,F),T&&(S=w+1,_=u-F),w++;continue}if(u+F>a){if(T){M(w,F),R(w+1,0,u-F),w++;continue}if(S>=0){if(E>S||E===S&&g>0){R();continue}R(S,0,_);continue}if(F>e&&o[w]!==null){R(),b(w,0),w++;continue}R();continue}M(w,F),T&&(S=w+1,_=u-F),w++}return m&&R(),c}function aa(t,e,n){if(t.simpleLineWalkFastPath)return sa(t,e,n);let{widths:i,lineEndFitAdvances:r,lineEndPaintAdvances:o,kinds:s,breakableFitAdvances:l,discretionaryHyphenWidth:a,tabStopAdvance:c,chunks:u}=t;if(i.length===0||u.length===0)return 0;let m=yt(),f=m.lineFitEpsilon,x=e+f,E=0,g=0,S=!1,_=0,v=0,R=0,J=0,O=-1,M=0,b=0,w=null;function F(){O=-1,M=0,b=0,w=null}function N(B=R,te=J,U=g){E++,n?.({startSegmentIndex:_,startGraphemeIndex:v,endSegmentIndex:B,endGraphemeIndex:te,width:U}),g=0,S=!1,F()}function T(B,te){S=!0,_=B,v=0,R=B+1,J=0,g=te}function G(B,te,U){S=!0,_=B,v=te,R=B,J=te+1,g=U}function V(B,te){if(!S){T(B,te);return}g+=te,R=B+1,J=0}function se(B,te,U,ie){if(!te)return;let Fe=B==="tab"?0:r[U],H=B==="tab"?ie:o[U];O=U+1,M=g-ie+Fe,b=g-ie+H,w=B}function I(B,te){let U=l[B];for(let ie=te;ie<U.length;ie++){let Fe=U[ie];S?g+Fe>x?(N(),G(B,ie,Fe)):(g+=Fe,R=B,J=ie+1):G(B,ie,Fe)}S&&R===B&&J===U.length&&(R=B+1,J=0)}function ee(B){if(w!=="soft-hyphen")return!1;let te=l[B];if(te==null)return!1;let{fitCount:U,fittedWidth:ie}=Qd(te,g,e,f,a);return U===0?!1:(g=ie,R=B,J=U,F(),U===te.length?(R=B+1,J=0,!0):(N(B,U,ie+a),I(B,U),!0))}function de(B){E++,n?.({startSegmentIndex:B.startSegmentIndex,startGraphemeIndex:0,endSegmentIndex:B.consumedEndSegmentIndex,endGraphemeIndex:0,width:0}),F()}for(let B=0;B<u.length;B++){let te=u[B];if(te.startSegmentIndex===te.endSegmentIndex){de(te);continue}S=!1,g=0,_=te.startSegmentIndex,v=0,R=te.startSegmentIndex,J=0,F();let U=te.startSegmentIndex;for(;U<te.endSegmentIndex;){let ie=s[U],Fe=ie==="space"||ie==="preserved-space"||ie==="tab"||ie==="zero-width-break"||ie==="soft-hyphen",H=ie==="tab"?Xd(g,c):i[U];if(ie==="soft-hyphen"){S&&(R=U+1,J=0,O=U+1,M=g+a,b=g+a,w=ie),U++;continue}if(!S){H>e&&l[U]!==null?I(U,0):T(U,H),se(ie,Fe,U,H),U++;continue}if(g+H>x){let W=g+(ie==="tab"?0:r[U]),ae=g+(ie==="tab"?H:o[U]);if(w==="soft-hyphen"&&m.preferEarlySoftHyphenBreak&&M<=x){N(O,0,b);continue}if(w==="soft-hyphen"&&ee(U)){U++;continue}if(Fe&&W<=x){V(U,H),N(U+1,0,ae),U++;continue}if(O>=0&&M<=x){if(R>O||R===O&&J>0){N();continue}let ne=O;N(ne,0,b),U=ne;continue}if(H>e&&l[U]!==null){N(),I(U,0),U++;continue}N();continue}V(U,H),se(ie,Fe,U,H),U++}if(S){let ie=O===te.consumedEndSegmentIndex?b:g;N(te.consumedEndSegmentIndex,0,ie)}}return E}var Ki=null;function Zd(){return Ki===null&&(Ki=new Intl.Segmenter(void 0,{granularity:"grapheme"})),Ki}function ef(t){return t?{widths:[],lineEndFitAdvances:[],lineEndPaintAdvances:[],kinds:[],simpleLineWalkFastPath:!0,segLevels:null,breakableFitAdvances:[],discretionaryHyphenWidth:0,tabStopAdvance:0,chunks:[],segments:[]}:{widths:[],lineEndFitAdvances:[],lineEndPaintAdvances:[],kinds:[],simpleLineWalkFastPath:!0,segLevels:null,breakableFitAdvances:[],discretionaryHyphenWidth:0,tabStopAdvance:0,chunks:[]}}function tf(t,e){let n=[],i=[],r=0,o=!1,s=!1,l=!1;function a(){i.length!==0&&(n.push({text:i.length===1?i[0]:i.join(""),start:r}),i=[],o=!1,s=!1,l=!1)}function c(m,f,x){i=[m],r=f,o=x,s=Rn(m),l=tn.has(m)}function u(m,f){i.push(m),o=o||f;let x=Rn(m);m.length===1&&Qe.has(m)?s=s||x:s=x,l=!1}for(let m of Zd().segment(t)){let f=m.segment,x=Ie(f);if(i.length===0){c(f,m.index,x);continue}if(l||Ln.has(f)||Qe.has(f)||e.carryCJKAfterClosingQuote&&x&&s){u(f,x);continue}if(!o&&!x){u(f,x);continue}a(),c(f,m.index,x)}return a(),n}function nf(t){if(t.length<=1)return t;let e=[],n=[t[0].text],i=t[0].start,r=Ie(t[0].text),o=Tn(t[0].text);function s(){e.push({text:n.length===1?n[0]:n.join(""),start:i})}for(let l=1;l<t.length;l++){let a=t[l],c=Ie(a.text),u=Tn(a.text);if(r&&o){n.push(a.text),r=r||c,o=u;continue}s(),n=[a.text],i=a.start,r=c,o=u}return s(),e}function rf(t,e,n,i){let r=yt(),{cache:o,emojiCorrection:s}=ra(e,na(t.normalized)),l=Ze("-",ze("-",o),s),c=Ze(" ",ze(" ",o),s)*8;if(t.len===0)return ef(n);let u=[],m=[],f=[],x=[],E=t.chunks.length<=1,g=n?[]:null,S=[],_=n?[]:null,v=Array.from({length:t.len});function R(b,w,F,N,T,G,V){T!=="text"&&T!=="space"&&T!=="zero-width-break"&&(E=!1),u.push(w),m.push(F),f.push(N),x.push(T),g?.push(G),S.push(V),_!==null&&_.push(b)}function J(b,w,F,N,T){let G=ze(b,o),V=Ze(b,G,s),se=w==="space"||w==="preserved-space"||w==="zero-width-break"?0:V,I=w==="space"||w==="zero-width-break"?0:V;if(T&&N&&b.length>1){let ee="sum-graphemes";en(b)?ee="pair-context":r.preferPrefixWidthsForBreakableRuns&&(ee="segment-prefixes");let de=ia(b,G,o,s,ee);R(b,V,se,I,w,F,de);return}R(b,V,se,I,w,F,null)}for(let b=0;b<t.len;b++){v[b]=u.length;let w=t.texts[b],F=t.isWordLike[b],N=t.kinds[b],T=t.starts[b];if(N==="soft-hyphen"){R(w,0,l,l,N,T,null);continue}if(N==="hard-break"){R(w,0,0,0,N,T,null);continue}if(N==="tab"){R(w,0,0,0,N,T,null);continue}let G=ze(w,o);if(N==="text"&&G.containsCJK){let V=tf(w,r),se=i==="keep-all"?nf(V):V;for(let I=0;I<se.length;I++){let ee=se[I];J(ee.text,"text",T+ee.start,F,i==="keep-all"||!Ie(ee.text))}continue}J(w,N,T,F,!0)}let O=of(t.chunks,v,u.length),M=g===null?null:Gs(t.normalized,g);return _!==null?{widths:u,lineEndFitAdvances:m,lineEndPaintAdvances:f,kinds:x,simpleLineWalkFastPath:E,segLevels:M,breakableFitAdvances:S,discretionaryHyphenWidth:l,tabStopAdvance:c,chunks:O,segments:_}:{widths:u,lineEndFitAdvances:m,lineEndPaintAdvances:f,kinds:x,simpleLineWalkFastPath:E,segLevels:M,breakableFitAdvances:S,discretionaryHyphenWidth:l,tabStopAdvance:c,chunks:O}}function of(t,e,n){let i=[];for(let r=0;r<t.length;r++){let o=t[r],s=o.startSegmentIndex<e.length?e[o.startSegmentIndex]:n,l=o.endSegmentIndex<e.length?e[o.endSegmentIndex]:n,a=o.consumedEndSegmentIndex<e.length?e[o.consumedEndSegmentIndex]:n;i.push({startSegmentIndex:s,endSegmentIndex:l,consumedEndSegmentIndex:a})}return i}function sf(t,e,n,i){let r=i?.wordBreak??"normal",o=Qs(t,yt(),i?.whiteSpace,r);return rf(o,e,n,r)}function la(t,e,n){return sf(t,e,!1,n)}function ua(t,e,n){let i=oa(t,e);return{lineCount:i,height:i*n}}var af={maxWidth:1600,baseFontSize:78,minFontSize:42,fontWeight:900,fontFamily:"Outfit",step:2};function ca(t,e){let n={...af,...e},i=1.2;for(let r=n.baseFontSize;r>=n.minFontSize;r-=n.step){let o=`${n.fontWeight} ${r}px ${n.fontFamily}`,s=la(t,o),{lineCount:l}=ua(s,n.maxWidth,r*i);if(l<=1)return{fontSize:r,fits:!0}}return{fontSize:n.minFontSize,fits:!1}}window.__timelines=window.__timelines||{};window.__hyperframes={fitTextFontSize:ca,getVariables:fs};function da(){let t=window;t.__hyperframeRuntimeBootstrapped||(t.__hyperframeRuntimeBootstrapped=!0,Hs())}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",da,{once:!0}):da();})();\n';
55451
+ RUNTIME_IIFE = '"use strict";(()=>{var Fa=Object.create;var Vn=Object.defineProperty;var Ma=Object.getOwnPropertyDescriptor;var Na=Object.getOwnPropertyNames;var _a=Object.getPrototypeOf,Ta=Object.prototype.hasOwnProperty;var La=(t,e,n)=>e in t?Vn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n;var ee=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var va=(t,e,n,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Na(e))!Ta.call(t,r)&&r!==n&&Vn(t,r,{get:()=>e[r],enumerable:!(i=Ma(e,r))||i.enumerable});return t};var Ra=(t,e,n)=>(n=t!=null?Fa(_a(t)):{},va(e||!t||!t.__esModule?Vn(n,"default",{value:t,enumerable:!0}):n,t));var ge=(t,e,n)=>La(t,typeof e!="symbol"?e+"":e,n);var Hr=ee((fm,Zn)=>{var K=String,Br=function(){return{isColorSupported:!1,reset:K,bold:K,dim:K,italic:K,underline:K,inverse:K,hidden:K,strikethrough:K,black:K,red:K,green:K,yellow:K,blue:K,magenta:K,cyan:K,white:K,gray:K,bgBlack:K,bgRed:K,bgGreen:K,bgYellow:K,bgBlue:K,bgMagenta:K,bgCyan:K,bgWhite:K,blackBright:K,redBright:K,greenBright:K,yellowBright:K,blueBright:K,magentaBright:K,cyanBright:K,whiteBright:K,bgBlackBright:K,bgRedBright:K,bgGreenBright:K,bgYellowBright:K,bgBlueBright:K,bgMagentaBright:K,bgCyanBright:K,bgWhiteBright:K}};Zn.exports=Br();Zn.exports.createColors=Br});var ei=ee(()=>{});var un=ee((hm,Ur)=>{"use strict";var Wr=Hr(),Gr=ei(),vt=class t extends Error{constructor(e,n,i,r,o,s){super(e),this.name="CssSyntaxError",this.reason=e,o&&(this.file=o),r&&(this.source=r),s&&(this.plugin=s),typeof n<"u"&&typeof i<"u"&&(typeof n=="number"?(this.line=n,this.column=i):(this.line=n.line,this.column=n.column,this.endLine=i.line,this.endColumn=i.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,t)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",typeof this.line<"u"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let n=this.source;e==null&&(e=Wr.isColorSupported);let i=u=>u,r=u=>u,o=u=>u;if(e){let{bold:u,gray:m,red:f}=Wr.createColors(!0);r=x=>u(f(x)),i=x=>m(x),Gr&&(o=x=>Gr(x))}let s=n.split(/\\r?\\n/),l=Math.max(this.line-3,0),a=Math.min(this.line+2,s.length),c=String(a).length;return s.slice(l,a).map((u,m)=>{let f=l+1+m,x=" "+(" "+f).slice(-c)+" | ";if(f===this.line){if(u.length>160){let g=20,S=Math.max(0,this.column-g),N=Math.max(this.column+g,this.endColumn+g),v=u.slice(S,N),R=i(x.replace(/\\d/g," "))+u.slice(0,Math.min(this.column-1,g-1)).replace(/[^\\t]/g," ");return r(">")+i(x)+o(v)+`\n `+R+r("^")}let E=i(x.replace(/\\d/g," "))+u.slice(0,this.column-1).replace(/[^\\t]/g," ");return r(">")+i(x)+o(u)+`\n `+E+r("^")}return" "+i(x)+o(u)}).join(`\n`)}toString(){let e=this.showSourceCode();return e&&(e=`\n\n`+e+`\n`),this.name+": "+this.message+e}};Ur.exports=vt;vt.default=vt});var ti=ee((xm,zr)=>{"use strict";var dl=/(<)(\\/?style\\b)/gi,fl=/(<)(!--)/g;function je(t){return typeof t!="string"||!t.includes("<")?t:t.replace(dl,"\\\\3c $2").replace(fl,"\\\\3c $2")}var Vr={after:`\n`,beforeClose:`\n`,beforeComment:`\n`,beforeDecl:`\n`,beforeOpen:" ",beforeRule:`\n`,colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1};function ml(t){return t[0].toUpperCase()+t.slice(1)}var Rt=class{constructor(e){this.builder=e}atrule(e,n){let i=e.raws,r="@"+e.name,o=e.params?this.rawValue(e,"params"):"";if(typeof i.afterName<"u"?r+=i.afterName:o&&(r+=" "),e.nodes)this.block(e,r+o);else{let s=(i.between||"")+(n?";":"");this.builder(je(r+o+s),e)}}beforeAfter(e,n){let i;e.type==="decl"?i=this.raw(e,null,"beforeDecl"):e.type==="comment"?i=this.raw(e,null,"beforeComment"):n==="before"?i=this.raw(e,null,"beforeRule"):i=this.raw(e,null,"beforeClose");let r=e.parent,o=0;for(;r&&r.type!=="root";)o+=1,r=r.parent;if(i.includes(`\n`)){let s=this.raw(e,null,"indent");if(s.length)for(let l=0;l<o;l++)i+=s}return i}block(e,n){let i=this.raw(e,"between","beforeOpen");this.builder(je(n+i)+"{",e,"start");let r;e.nodes&&e.nodes.length?(this.body(e),r=this.raw(e,"after")):r=this.raw(e,"after","emptyBody"),r&&this.builder(je(r)),this.builder("}",e,"end")}body(e){let n=e.nodes,i=n.length-1;for(;i>0&&n[i].type==="comment";)i-=1;let r=this.raw(e,"semicolon"),o=e.type==="document";for(let s=0;s<n.length;s++){let l=n[s],a=this.raw(l,"before");a&&this.builder(o?a:je(a)),this.stringify(l,i!==s||r)}}comment(e){let n=this.raw(e,"left","commentLeft"),i=this.raw(e,"right","commentRight");this.builder(je("/*"+n+e.text+i+"*/"),e)}decl(e,n){let i=e.raws,r=this.raw(e,"between","colon"),o=e.prop+r+this.rawValue(e,"value");e.important&&(o+=i.important||" !important"),n&&(o+=";"),this.builder(je(o),e)}document(e){this.body(e)}raw(e,n,i){let r;if(i||(i=n),n&&(r=e.raws[n],typeof r<"u"))return r;let o=e.parent;if(i==="before"&&(!o||o.type==="root"&&o.first===e||o&&o.type==="document"))return"";if(!o)return Vr[i];let s=e.root(),l=s.rawCache||(s.rawCache={});if(typeof l[i]<"u")return l[i];if(i==="before"||i==="after")return this.beforeAfter(e,i);{let a="raw"+ml(i);this[a]?r=this[a](s,e):s.walk(c=>{if(r=c.raws[n],typeof r<"u")return!1})}return typeof r>"u"&&(r=Vr[i]),l[i]=r,r}rawBeforeClose(e){let n;return e.walk(i=>{if(i.nodes&&i.nodes.length>0&&typeof i.raws.after<"u")return n=i.raws.after,n.includes(`\n`)&&(n=n.replace(/[^\\n]+$/,"")),!1}),n&&(n=n.replace(/\\S/g,"")),n}rawBeforeComment(e,n){let i;return e.walkComments(r=>{if(typeof r.raws.before<"u")return i=r.raws.before,i.includes(`\n`)&&(i=i.replace(/[^\\n]+$/,"")),!1}),typeof i>"u"?i=this.raw(n,null,"beforeDecl"):i&&(i=i.replace(/\\S/g,"")),i}rawBeforeDecl(e,n){let i;return e.walkDecls(r=>{if(typeof r.raws.before<"u")return i=r.raws.before,i.includes(`\n`)&&(i=i.replace(/[^\\n]+$/,"")),!1}),typeof i>"u"?i=this.raw(n,null,"beforeRule"):i&&(i=i.replace(/\\S/g,"")),i}rawBeforeOpen(e){let n;return e.walk(i=>{if(i.type!=="decl"&&(n=i.raws.between,typeof n<"u"))return!1}),n}rawBeforeRule(e){let n;return e.walk(i=>{if(i.nodes&&(i.parent!==e||e.first!==i)&&typeof i.raws.before<"u")return n=i.raws.before,n.includes(`\n`)&&(n=n.replace(/[^\\n]+$/,"")),!1}),n&&(n=n.replace(/\\S/g,"")),n}rawColon(e){let n;return e.walkDecls(i=>{if(typeof i.raws.between<"u")return n=i.raws.between.replace(/[^\\s:]/g,""),!1}),n}rawEmptyBody(e){let n;return e.walk(i=>{if(i.nodes&&i.nodes.length===0&&(n=i.raws.after,typeof n<"u"))return!1}),n}rawIndent(e){if(e.raws.indent)return e.raws.indent;let n;return e.walk(i=>{let r=i.parent;if(r&&r!==e&&r.parent&&r.parent===e&&typeof i.raws.before<"u"){let o=i.raws.before.split(`\n`);return n=o[o.length-1],n=n.replace(/\\S/g,""),!1}}),n}rawSemicolon(e){let n;return e.walk(i=>{if(i.nodes&&i.nodes.length&&i.last.type==="decl"&&(n=i.raws.semicolon,typeof n<"u"))return!1}),n}rawValue(e,n){let i=e[n],r=e.raws[n];return r&&r.value===i?r.raw:i}root(e){if(this.body(e),e.raws.after){let n=e.raws.after,i=e.parent&&e.parent.type==="document";this.builder(i?n:je(n))}}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(je(e.raws.ownSemicolon),e,"end")}stringify(e,n){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,n)}};zr.exports=Rt;Rt.default=Rt});var kt=ee((gm,jr)=>{"use strict";var pl=ti();function ni(t,e){new pl(e).stringify(t)}jr.exports=ni;ni.default=ni});var cn=ee((ym,ii)=>{"use strict";ii.exports.isClean=Symbol("isClean");ii.exports.my=Symbol("my")});var Pt=ee((bm,qr)=>{"use strict";var hl=un(),xl=ti(),gl=kt(),{isClean:Dt,my:yl}=cn();function ri(t,e){let n=new t.constructor;for(let i in t){if(!Object.prototype.hasOwnProperty.call(t,i)||i==="proxyCache")continue;let r=t[i],o=typeof r;i==="parent"&&o==="object"?e&&(n[i]=e):i==="source"?n[i]=r:Array.isArray(r)?n[i]=r.map(s=>ri(s,n)):(o==="object"&&r!==null&&(r=ri(r)),n[i]=r)}return n}function Ge(t,e){if(e&&typeof e.offset<"u")return e.offset;let n=1,i=1,r=0;for(let o=0;o<t.length;o++){if(i===e.line&&n===e.column){r=o;break}t[o]===`\n`?(n=1,i+=1):n+=1}return r}var It=class{get proxyOf(){return this}constructor(e={}){this.raws={},this[Dt]=!1,this[yl]=!0;for(let n in e)if(n==="nodes"){this.nodes=[];for(let i of e[n])typeof i.clone=="function"?this.append(i.clone()):this.append(i)}else this[n]=e[n]}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\\n\\s{4}at /.test(e.stack)){let n=this.source;e.stack=e.stack.replace(/\\n\\s{4}at /,`$&${n.input.from}:${n.start.line}:${n.start.column}$&`)}return e}after(e){return this.parent.insertAfter(this,e),this}assign(e={}){for(let n in e)this[n]=e[n];return this}before(e){return this.parent.insertBefore(this,e),this}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}clone(e={}){let n=ri(this);for(let i in e)n[i]=e[i];return n}cloneAfter(e={}){let n=this.clone(e);return this.parent.insertAfter(this,n),n}cloneBefore(e={}){let n=this.clone(e);return this.parent.insertBefore(this,n),n}error(e,n={}){if(this.source){let{end:i,start:r}=this.rangeBy(n);return this.source.input.error(e,{column:r.column,line:r.line},{column:i.column,line:i.line},n)}return new hl(e)}getProxyProcessor(){return{get(e,n){return n==="proxyOf"?e:n==="root"?()=>e.root().toProxy():e[n]},set(e,n,i){return e[n]===i||(e[n]=i,(n==="prop"||n==="value"||n==="name"||n==="params"||n==="important"||n==="text")&&e.markDirty()),!0}}}markClean(){this[Dt]=!0}markDirty(){if(this[Dt]){this[Dt]=!1;let e=this;for(;e=e.parent;)e[Dt]=!1}}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}positionBy(e={}){let n=this.source.start;if(e.index)n=this.positionInside(e.index);else if(e.word){let i="document"in this.source.input?this.source.input.document:this.source.input.css,o=i.slice(Ge(i,this.source.start),Ge(i,this.source.end)).indexOf(e.word);o!==-1&&(n=this.positionInside(o))}return n}positionInside(e){let n=this.source.start.column,i=this.source.start.line,r="document"in this.source.input?this.source.input.document:this.source.input.css,o=Ge(r,this.source.start),s=o+e;for(let l=o;l<s;l++)r[l]===`\n`?(n=1,i+=1):n+=1;return{column:n,line:i,offset:s}}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}rangeBy(e={}){let n="document"in this.source.input?this.source.input.document:this.source.input.css,i={column:this.source.start.column,line:this.source.start.line,offset:Ge(n,this.source.start)},r=this.source.end?{column:this.source.end.column+1,line:this.source.end.line,offset:typeof this.source.end.offset=="number"?this.source.end.offset:Ge(n,this.source.end)+1}:{column:i.column+1,line:i.line,offset:i.offset+1};if(e.word){let s=n.slice(Ge(n,this.source.start),Ge(n,this.source.end)).indexOf(e.word);s!==-1&&(i=this.positionInside(s),r=this.positionInside(s+e.word.length))}else e.start?i={column:e.start.column,line:e.start.line,offset:Ge(n,e.start)}:e.index&&(i=this.positionInside(e.index)),e.end?r={column:e.end.column,line:e.end.line,offset:Ge(n,e.end)}:typeof e.endIndex=="number"?r=this.positionInside(e.endIndex):e.index&&(r=this.positionInside(e.index+1));return(r.line<i.line||r.line===i.line&&r.column<=i.column)&&(r={column:i.column+1,line:i.line,offset:i.offset+1}),{end:r,start:i}}raw(e,n){return new xl().raw(this,e,n)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}replaceWith(...e){if(this.parent){let n=this,i=!1;for(let r of e)r===this?i=!0:i?(this.parent.insertAfter(n,r),n=r):this.parent.insertBefore(n,r);i||this.remove()}return this}root(){let e=this;for(;e.parent&&e.parent.type!=="document";)e=e.parent;return e}toJSON(e,n){let i={},r=n==null;n=n||new Map;let o=0;for(let s in this){if(!Object.prototype.hasOwnProperty.call(this,s)||s==="parent"||s==="proxyCache")continue;let l=this[s];if(Array.isArray(l))i[s]=l.map(a=>typeof a=="object"&&a.toJSON?a.toJSON(null,n):a);else if(typeof l=="object"&&l.toJSON)i[s]=l.toJSON(null,n);else if(s==="source"){if(l==null)continue;let a=n.get(l.input);a==null&&(a=o,n.set(l.input,o),o++),i[s]={end:l.end,inputId:a,start:l.start}}else i[s]=l}return r&&(i.inputs=[...n.keys()].map(s=>s.toJSON())),i}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}toString(e=gl){e.stringify&&(e=e.stringify);let n="";return e(this,i=>{n+=i}),n}warn(e,n,i={}){let r={node:this};for(let o in i)r[o]=i[o];return e.warn(n,r)}};qr.exports=It;It.default=It});var Bt=ee((Sm,$r)=>{"use strict";var bl=Pt(),Ot=class extends bl{constructor(e){super(e),this.type="comment"}};$r.exports=Ot;Ot.default=Ot});var Wt=ee((Am,Kr)=>{"use strict";var Sl=Pt(),Ht=class extends Sl{get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}constructor(e){e&&typeof e.value<"u"&&typeof e.value!="string"&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}};Kr.exports=Ht;Ht.default=Ht});var qe=ee((Em,io)=>{"use strict";var Jr=Bt(),Yr=Wt(),Al=Pt(),{isClean:Xr,my:Qr}=cn(),oi,Zr,eo,si;function to(t){return t.map(e=>(e.nodes&&(e.nodes=to(e.nodes)),delete e.source,e))}function no(t){if(t[Xr]=!1,t.proxyOf.nodes)for(let e of t.proxyOf.nodes)no(e)}var De=class t extends Al{get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}append(...e){for(let n of e){let i=this.normalize(n,this.last);for(let r of i)this.proxyOf.nodes.push(r)}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let n of this.nodes)n.cleanRaws(e)}each(e){if(!this.proxyOf.nodes)return;let n=this.getIterator(),i,r;for(;this.indexes[n]<this.proxyOf.nodes.length&&(i=this.indexes[n],r=e(this.proxyOf.nodes[i],i),r!==!1);)this.indexes[n]+=1;return delete this.indexes[n],r}every(e){return this.nodes.every(e)}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}getProxyProcessor(){return{get(e,n){return n==="proxyOf"?e:e[n]?n==="each"||typeof n=="string"&&n.startsWith("walk")?(...i)=>e[n](...i.map(r=>typeof r=="function"?(o,s)=>r(o.toProxy(),s):r)):n==="every"||n==="some"?i=>e[n]((r,...o)=>i(r.toProxy(),...o)):n==="root"?()=>e.root().toProxy():n==="nodes"?e.nodes.map(i=>i.toProxy()):n==="first"||n==="last"?e[n].toProxy():e[n]:e[n]},set(e,n,i){return e[n]===i||(e[n]=i,(n==="name"||n==="params"||n==="selector")&&e.markDirty()),!0}}}index(e){return typeof e=="number"?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}insertAfter(e,n){let i=this.index(e),r=this.normalize(n,this.proxyOf.nodes[i]).reverse();i=this.index(e);for(let s of r)this.proxyOf.nodes.splice(i+1,0,s);let o;for(let s in this.indexes)o=this.indexes[s],i<o&&(this.indexes[s]=o+r.length);return this.markDirty(),this}insertBefore(e,n){let i=this.index(e),r=i===0?"prepend":!1,o=this.normalize(n,this.proxyOf.nodes[i],r).reverse();i=this.index(e);for(let l of o)this.proxyOf.nodes.splice(i,0,l);let s;for(let l in this.indexes)s=this.indexes[l],i<=s&&(this.indexes[l]=s+o.length);return this.markDirty(),this}normalize(e,n){if(typeof e=="string")e=to(Zr(e).nodes);else if(typeof e>"u")e=[];else if(Array.isArray(e)){e=e.slice(0);for(let r of e)r.parent&&r.parent.removeChild(r,"ignore")}else if(e.type==="root"&&this.type!=="document"){e=e.nodes.slice(0);for(let r of e)r.parent&&r.parent.removeChild(r,"ignore")}else if(e.type)e=[e];else if(e.prop){if(typeof e.value>"u")throw new Error("Value field is missed in node creation");typeof e.value!="string"&&(e.value=String(e.value)),e=[new Yr(e)]}else if(e.selector||e.selectors)e=[new si(e)];else if(e.name)e=[new oi(e)];else if(e.text)e=[new Jr(e)];else throw new Error("Unknown node type in node creation");return e.map(r=>(r[Qr]||t.rebuild(r),r=r.proxyOf,r.parent&&r.parent.removeChild(r),r[Xr]&&no(r),r.raws||(r.raws={}),typeof r.raws.before>"u"&&n&&typeof n.raws.before<"u"&&(r.raws.before=n.raws.before.replace(/\\S/g,"")),r.parent=this.proxyOf,r))}prepend(...e){e=e.reverse();for(let n of e){let i=this.normalize(n,this.first,"prepend").reverse();for(let r of i)this.proxyOf.nodes.unshift(r);for(let r in this.indexes)this.indexes[r]=this.indexes[r]+i.length}return this.markDirty(),this}push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}removeChild(e){e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);let n;for(let i in this.indexes)n=this.indexes[i],n>=e&&(this.indexes[i]=n-1);return this.markDirty(),this}replaceValues(e,n,i){return i||(i=n,n={}),this.walkDecls(r=>{n.props&&!n.props.includes(r.prop)||n.fast&&!r.value.includes(n.fast)||(r.value=r.value.replace(e,i))}),this.markDirty(),this}some(e){return this.nodes.some(e)}walk(e){return this.each((n,i)=>{let r;try{r=e(n,i)}catch(o){throw n.addToError(o)}return r!==!1&&n.walk&&(r=n.walk(e)),r})}walkAtRules(e,n){return n?e instanceof RegExp?this.walk((i,r)=>{if(i.type==="atrule"&&e.test(i.name))return n(i,r)}):this.walk((i,r)=>{if(i.type==="atrule"&&i.name===e)return n(i,r)}):(n=e,this.walk((i,r)=>{if(i.type==="atrule")return n(i,r)}))}walkComments(e){return this.walk((n,i)=>{if(n.type==="comment")return e(n,i)})}walkDecls(e,n){return n?e instanceof RegExp?this.walk((i,r)=>{if(i.type==="decl"&&e.test(i.prop))return n(i,r)}):this.walk((i,r)=>{if(i.type==="decl"&&i.prop===e)return n(i,r)}):(n=e,this.walk((i,r)=>{if(i.type==="decl")return n(i,r)}))}walkRules(e,n){return n?e instanceof RegExp?this.walk((i,r)=>{if(i.type==="rule"&&e.test(i.selector))return n(i,r)}):this.walk((i,r)=>{if(i.type==="rule"&&i.selector===e)return n(i,r)}):(n=e,this.walk((i,r)=>{if(i.type==="rule")return n(i,r)}))}};De.registerParse=t=>{Zr=t};De.registerRule=t=>{si=t};De.registerAtRule=t=>{oi=t};De.registerRoot=t=>{eo=t};io.exports=De;De.default=De;De.rebuild=t=>{t.type==="atrule"?Object.setPrototypeOf(t,oi.prototype):t.type==="rule"?Object.setPrototypeOf(t,si.prototype):t.type==="decl"?Object.setPrototypeOf(t,Yr.prototype):t.type==="comment"?Object.setPrototypeOf(t,Jr.prototype):t.type==="root"&&Object.setPrototypeOf(t,eo.prototype),t[Qr]=!0,t.nodes&&t.nodes.forEach(e=>{De.rebuild(e)})}});var dn=ee((wm,oo)=>{"use strict";var ro=qe(),ut=class extends ro{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};oo.exports=ut;ut.default=ut;ro.registerAtRule(ut)});var fn=ee((Cm,lo)=>{"use strict";var El=qe(),so,ao,it=class extends El{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new so(new ao,this,e).stringify()}};it.registerLazyResult=t=>{so=t};it.registerProcessor=t=>{ao=t};lo.exports=it;it.default=it});var co=ee((Fm,uo)=>{var wl="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",Cl=(t,e=21)=>(n=e)=>{let i="",r=n|0;for(;r--;)i+=t[Math.random()*t.length|0];return i},Fl=(t=21)=>{let e="",n=t|0;for(;n--;)e+=wl[Math.random()*64|0];return e};uo.exports={nanoid:Fl,customAlphabet:Cl}});var mn=ee(()=>{});var pn=ee(()=>{});var ai=ee(()=>{});var fo=ee(()=>{});var ui=ee((Dm,ho)=>{"use strict";var{existsSync:Ml,readFileSync:Nl}=fo(),{dirname:li,join:_l}=mn(),{SourceMapConsumer:mo,SourceMapGenerator:po}=pn();function Tl(t){return Buffer?Buffer.from(t,"base64").toString():window.atob(t)}var Gt=class{constructor(e,n){if(n.map===!1)return;n.unsafeMap&&(this.unsafeMap=!0),this.loadAnnotation(e),this.inline=this.startWith(this.annotation,"data:");let i=n.map?n.map.prev:void 0,r=this.loadMap(n.from,i);!this.mapFile&&n.from&&(this.mapFile=n.from),this.mapFile&&(this.root=li(this.mapFile)),r&&(this.text=r)}consumer(){return this.consumerCache||(this.consumerCache=new mo(this.json||this.text)),this.consumerCache}decodeInline(e){let n=/^data:application\\/json;charset=utf-?8;base64,/,i=/^data:application\\/json;base64,/,r=/^data:application\\/json;charset=utf-?8,/,o=/^data:application\\/json,/,s=e.match(r)||e.match(o);if(s)return decodeURIComponent(e.substr(s[0].length));let l=e.match(n)||e.match(i);if(l)return Tl(e.substr(l[0].length));let a=e.slice(22);throw a=a.slice(0,a.indexOf(",")),new Error("Unsupported source map encoding "+a)}getAnnotationURL(e){return e.replace(/^\\/\\*\\s*# sourceMappingURL=/,"").trim()}isMap(e){return typeof e!="object"?!1:typeof e.mappings=="string"||typeof e._mappings=="string"||Array.isArray(e.sections)}loadAnnotation(e){let n=e.match(/\\/\\*\\s*# sourceMappingURL=/g);if(!n)return;let i=e.lastIndexOf(n.pop()),r=e.indexOf("*/",i);i>-1&&r>-1&&(this.annotation=this.getAnnotationURL(e.substring(i,r)))}loadFile(e,n,i){if(!(!i&&!this.unsafeMap&&!/\\.map$/i.test(e))&&(this.root=li(e),Ml(e)))return this.mapFile=e,Nl(e,"utf-8").toString().trim()}loadMap(e,n){if(n===!1)return!1;if(n){if(typeof n=="string")return n;if(typeof n=="function"){let i=n(e);if(i){let r=this.loadFile(i,e,!0);if(!r)throw new Error("Unable to load previous source map: "+i.toString());return r}}else{if(n instanceof mo)return po.fromSourceMap(n).toString();if(n instanceof po)return n.toString();if(this.isMap(n))return JSON.stringify(n);throw new Error("Unsupported previous source map format: "+n.toString())}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let i=this.annotation;e&&(i=_l(li(e),i));let r=this.loadFile(i,e,!1);if(r)try{this.json=JSON.parse(r.replace(/^\\)]}\'[^\\n]*\\n/,""))}catch{return}return r}}}startWith(e,n){return e?e.substr(0,n.length)===n:!1}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}};ho.exports=Gt;Gt.default=Gt});var Ut=ee((Im,So)=>{"use strict";var{nanoid:Ll}=co(),{isAbsolute:fi,resolve:mi}=mn(),{SourceMapConsumer:vl,SourceMapGenerator:Rl}=pn(),{fileURLToPath:xo,pathToFileURL:hn}=ai(),go=un(),kl=ui(),ci=ei(),di=Symbol("lineToIndexCache"),Dl=!!(vl&&Rl),yo=!!(mi&&fi);function bo(t){if(t[di])return t[di];let e=t.css.split(`\n`),n=new Array(e.length),i=0;for(let r=0,o=e.length;r<o;r++)n[r]=i,i+=e[r].length+1;return t[di]=n,n}var ct=class{get from(){return this.file||this.id}constructor(e,n={}){if(e===null||typeof e>"u"||typeof e=="object"&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),this.css[0]==="\\uFEFF"||this.css[0]==="\\uFFFE"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,this.document=this.css,n.document&&(this.document=n.document.toString()),n.from&&(!yo||/^\\w+:\\/\\//.test(n.from)||fi(n.from)?this.file=n.from:this.file=mi(n.from)),yo&&Dl){let i=new kl(this.css,n);if(i.text){this.map=i;let r=i.consumer().file;!this.file&&r&&(this.file=this.mapResolve(r))}}this.file||(this.id="<input css "+Ll(6)+">"),this.map&&(this.map.file=this.from)}error(e,n,i,r={}){let o,s,l,a,c;if(n&&typeof n=="object"){let m=n,f=i;if(typeof m.offset=="number"){a=m.offset;let x=this.fromOffset(a);n=x.line,i=x.col}else n=m.line,i=m.column,a=this.fromLineAndColumn(n,i);if(typeof f.offset=="number"){l=f.offset;let x=this.fromOffset(l);s=x.line,o=x.col}else s=f.line,o=f.column,l=this.fromLineAndColumn(f.line,f.column)}else if(i)a=this.fromLineAndColumn(n,i);else{a=n;let m=this.fromOffset(a);n=m.line,i=m.col}let u=this.origin(n,i,s,o);return u?c=new go(e,u.endLine===void 0?u.line:{column:u.column,line:u.line},u.endLine===void 0?u.column:{column:u.endColumn,line:u.endLine},u.source,u.file,r.plugin):c=new go(e,s===void 0?n:{column:i,line:n},s===void 0?i:{column:o,line:s},this.css,this.file,r.plugin),c.input={column:i,endColumn:o,endLine:s,endOffset:l,line:n,offset:a,source:this.css},this.file&&(hn&&(c.input.url=hn(this.file).toString()),c.input.file=this.file),c}fromLineAndColumn(e,n){return bo(this)[e-1]+n-1}fromOffset(e){let n=bo(this),i=n[n.length-1],r=0;if(e>=i)r=n.length-1;else{let o=n.length-2,s;for(;r<o;)if(s=r+(o-r>>1),e<n[s])o=s-1;else if(e>=n[s+1])r=s+1;else{r=s;break}}return{col:e-n[r]+1,line:r+1}}mapResolve(e){return/^\\w+:\\/\\//.test(e)?e:mi(this.map.consumer().sourceRoot||this.map.root||".",e)}origin(e,n,i,r){if(!this.map)return!1;let o=this.map.consumer(),s=o.originalPositionFor({column:n,line:e});if(!s.source)return!1;let l;typeof i=="number"&&(l=o.originalPositionFor({column:r,line:i}));let a;fi(s.source)?a=hn(s.source):a=new URL(s.source,this.map.consumer().sourceRoot||hn(this.map.mapFile));let c={column:s.column,endColumn:l&&l.column,endLine:l&&l.line,line:s.line,url:a.toString()};if(a.protocol==="file:")if(xo)c.file=xo(a);else throw new Error("file: protocol is not available in this PostCSS build");let u=o.sourceContentFor(s.source);return u&&(c.source=u),c}toJSON(){let e={};for(let n of["hasBOM","css","file","id"])this[n]!=null&&(e[n]=this[n]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}};So.exports=ct;ct.default=ct;ci&&ci.registerInput&&ci.registerInput(ct)});var dt=ee((Pm,Co)=>{"use strict";var Ao=qe(),Eo,wo,$e=class extends Ao{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}normalize(e,n,i){let r=super.normalize(e);if(n){if(i==="prepend")this.nodes.length>1?n.raws.before=this.nodes[1].raws.before:delete n.raws.before;else if(this.first!==n)for(let o of r)o.raws.before=n.raws.before}return r}removeChild(e,n){let i=this.index(e);return!n&&i===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[i].raws.before),super.removeChild(e)}toResult(e={}){return new Eo(new wo,this,e).stringify()}};$e.registerLazyResult=t=>{Eo=t};$e.registerProcessor=t=>{wo=t};Co.exports=$e;$e.default=$e;Ao.registerRoot($e)});var pi=ee((Om,Fo)=>{"use strict";var Vt={comma(t){return Vt.split(t,[","],!0)},space(t){let e=[" ",`\n`," "];return Vt.split(t,e)},split(t,e,n){let i=[],r="",o=!1,s=0,l=!1,a="",c=!1;for(let u of t)c?c=!1:u==="\\\\"?c=!0:l?u===a&&(l=!1):u===\'"\'||u==="\'"?(l=!0,a=u):u==="("?s+=1:u===")"?s>0&&(s-=1):s===0&&e.includes(u)&&(o=!0),o?(r!==""&&i.push(r.trim()),r="",o=!1):r+=u;return(n||r!=="")&&i.push(r.trim()),i}};Fo.exports=Vt;Vt.default=Vt});var xn=ee((Bm,No)=>{"use strict";var Mo=qe(),Il=pi(),ft=class extends Mo{get selectors(){return Il.comma(this.selector)}set selectors(e){let n=this.selector?this.selector.match(/,\\s*/):null,i=n?n[0]:","+this.raw("between","beforeOpen");this.selector=e.join(i)}constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}};No.exports=ft;ft.default=ft;Mo.registerRule(ft)});var To=ee((Hm,_o)=>{"use strict";var Pl=dn(),Ol=Bt(),Bl=Wt(),Hl=Ut(),Wl=ui(),Gl=dt(),Ul=xn();function zt(t,e){if(Array.isArray(t))return t.map(r=>zt(r));let{inputs:n,...i}=t;if(n){e=[];for(let r of n){let o={...r,__proto__:Hl.prototype};o.map&&(o.map={...o.map,__proto__:Wl.prototype}),e.push(o)}}if(i.nodes&&(i.nodes=t.nodes.map(r=>zt(r,e))),i.source){let{inputId:r,...o}=i.source;i.source=o,r!=null&&(i.source.input=e[r])}if(i.type==="root")return new Gl(i);if(i.type==="decl")return new Bl(i);if(i.type==="rule")return new Ul(i);if(i.type==="comment")return new Ol(i);if(i.type==="atrule")return new Pl(i);throw new Error("Unknown node type: "+t.type)}_o.exports=zt;zt.default=zt});var xi=ee((Wm,Io)=>{"use strict";var{dirname:gn,relative:vo,resolve:Ro,sep:ko}=mn(),{SourceMapConsumer:Do,SourceMapGenerator:yn}=pn(),{pathToFileURL:Lo}=ai(),Vl=Ut(),zl=!!(Do&&yn),jl=!!(gn&&Ro&&vo&&ko),hi=class{constructor(e,n,i,r){this.stringify=e,this.mapOpts=i.map||{},this.root=n,this.opts=i,this.css=r,this.originalCSS=r,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}addAnnotation(){let e;this.isInline()?e="data:application/json;base64,"+this.toBase64(this.map.toString()):typeof this.mapOpts.annotation=="string"?e=this.mapOpts.annotation:typeof this.mapOpts.annotation=="function"?e=this.mapOpts.annotation(this.opts.to,this.root):e=this.outputFile()+".map";let n=`\n`;this.css.includes(`\\r\n`)&&(n=`\\r\n`),this.css+=n+"/*# sourceMappingURL="+e+" */"}applyPrevMaps(){for(let e of this.previous()){let n=this.toUrl(this.path(e.file)),i=e.root||gn(e.file),r;this.mapOpts.sourcesContent===!1?(r=new Do(e.text),r.sourcesContent&&(r.sourcesContent=null)):r=e.consumer(),this.map.applySourceMap(r,n,this.toUrl(this.path(i)))}}clearAnnotation(){if(this.mapOpts.annotation!==!1){if(this.root){let e;for(let n=this.root.nodes.length-1;n>=0;n--)e=this.root.nodes[n],e.type==="comment"&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(n)}else if(this.css){let e;for(;(e=this.css.lastIndexOf("/*#"))!==-1;){let n=this.css.indexOf("*/",e+3);if(n===-1)break;for(;e>0&&this.css[e-1]===`\n`;)e--;this.css=this.css.slice(0,e)+this.css.slice(n+2)}}}}generate(){if(this.clearAnnotation(),jl&&zl&&this.isMap())return this.generateMap();{let e="";return this.stringify(this.root,n=>{e+=n}),[e]}}generateMap(){if(this.root)this.generateString();else if(this.previous().length===1){let e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=yn.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new yn({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>"});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}generateString(){this.css="",this.map=new yn({file:this.outputFile(),ignoreInvalidMapping:!0});let e=1,n=1,i="<no source>",r={generated:{column:0,line:0},original:{column:0,line:0},source:""},o,s;this.stringify(this.root,(l,a,c)=>{if(this.css+=l,a&&c!=="end"&&(r.generated.line=e,r.generated.column=n-1,a.source&&a.source.start?(r.source=this.sourcePath(a),r.original.line=a.source.start.line,r.original.column=a.source.start.column-1,this.map.addMapping(r)):(r.source=i,r.original.line=1,r.original.column=0,this.map.addMapping(r))),s=l.match(/\\n/g),s?(e+=s.length,o=l.lastIndexOf(`\n`),n=l.length-o):n+=l.length,a&&c!=="start"){let u=a.parent||{raws:{}};(!(a.type==="decl"||a.type==="atrule"&&!a.nodes)||a!==u.last||u.raws.semicolon)&&(a.source&&a.source.end?(r.source=this.sourcePath(a),r.original.line=a.source.end.line,r.original.column=a.source.end.column-1,r.generated.line=e,r.generated.column=n-2,this.map.addMapping(r)):(r.source=i,r.original.line=1,r.original.column=0,r.generated.line=e,r.generated.column=n-1,this.map.addMapping(r)))}})}isAnnotation(){return this.isInline()?!0:typeof this.mapOpts.annotation<"u"?this.mapOpts.annotation:this.previous().length?this.previous().some(e=>e.annotation):!0}isInline(){if(typeof this.mapOpts.inline<"u")return this.mapOpts.inline;let e=this.mapOpts.annotation;return typeof e<"u"&&e!==!0?!1:this.previous().length?this.previous().some(n=>n.inline):!0}isMap(){return typeof this.opts.map<"u"?!!this.opts.map:this.previous().length>0}isSourcesContent(){return typeof this.mapOpts.sourcesContent<"u"?this.mapOpts.sourcesContent:this.previous().length?this.previous().some(e=>e.withContent()):!0}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}path(e){if(this.mapOpts.absolute||e.charCodeAt(0)===60||/^\\w+:\\/\\//.test(e))return e;let n=this.memoizedPaths.get(e);if(n)return n;let i=this.opts.to?gn(this.opts.to):".";typeof this.mapOpts.annotation=="string"&&(i=gn(Ro(i,this.mapOpts.annotation)));let r=vo(i,e);return this.memoizedPaths.set(e,r),r}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk(e=>{if(e.source&&e.source.input.map){let n=e.source.input.map;this.previousMaps.includes(n)||this.previousMaps.push(n)}});else{let e=new Vl(this.originalCSS,this.opts);e.map&&this.previousMaps.push(e.map)}return this.previousMaps}setSourcesContent(){let e={};if(this.root)this.root.walk(n=>{if(n.source){let i=n.source.input.from;if(i&&!e[i]){e[i]=!0;let r=this.usesFileUrls?this.toFileUrl(i):this.toUrl(this.path(i));this.map.setSourceContent(r,n.source.input.css)}}});else if(this.css){let n=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(n,this.css)}}sourcePath(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}toBase64(e){return Buffer?Buffer.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}toFileUrl(e){let n=this.memoizedFileURLs.get(e);if(n)return n;if(Lo){let i=Lo(e).toString();return this.memoizedFileURLs.set(e,i),i}else throw new Error("`map.absolute` option is not available in this PostCSS build")}toUrl(e){let n=this.memoizedURLs.get(e);if(n)return n;ko==="\\\\"&&(e=e.replace(/\\\\/g,"/"));let i=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,i),i}};Io.exports=hi});var Bo=ee((Gm,Oo)=>{"use strict";var bn=/[\\t\\n\\f\\r "#\'()/;[\\\\\\]{}]/g,Sn=/[\\t\\n\\f\\r !"#\'():;@[\\\\\\]{}]|\\/(?=\\*)/g,ql=/.[\\r\\n"\'(/\\\\]/,Po=/[\\da-f]/i;Oo.exports=function(e,n={}){let i=e.css.valueOf(),r=n.ignoreErrors,o,s,l,a,c,u,m,f,x,E,g=i.length,S=0,N=[],v=[],R=-1;function Y(){return S}function W(F){throw e.error("Unclosed "+F,S)}function M(){return v.length===0&&S>=g}function y(F){if(v.length)return v.pop();if(S>=g)return;let _=F?F.ignoreUnclosed:!1;switch(o=i.charCodeAt(S),o){case 10:case 32:case 9:case 13:case 12:{a=S;do a+=1,o=i.charCodeAt(a);while(o===32||o===10||o===9||o===13||o===12);u=["space",i.slice(S,a)],S=a-1;break}case 91:case 93:case 123:case 125:case 58:case 59:case 41:{let T=String.fromCharCode(o);u=[T,T,S];break}case 40:{if(E=N.length?N.pop()[1]:"",x=i.charCodeAt(S+1),E==="url"&&x!==39&&x!==34&&x!==32&&x!==10&&x!==9&&x!==12&&x!==13){a=S;do{if(m=!1,a=i.indexOf(")",a+1),a===-1)if(r||_){a=S;break}else W("bracket");for(f=a;i.charCodeAt(f-1)===92;)f-=1,m=!m}while(m);u=["brackets",i.slice(S,a+1),S,a],S=a}else S<=R?u=["(","(",S]:(a=i.indexOf(")",S+1),s=i.slice(S,a+1),a===-1||ql.test(s)?(R=a===-1?g:a,u=["(","(",S]):(u=["brackets",s,S,a],S=a));break}case 39:case 34:{c=o===39?"\'":\'"\',a=S;do{if(m=!1,a=i.indexOf(c,a+1),a===-1)if(r||_){a=S+1;break}else W("string");for(f=a;i.charCodeAt(f-1)===92;)f-=1,m=!m}while(m);u=["string",i.slice(S,a+1),S,a],S=a;break}case 64:{bn.lastIndex=S+1,bn.test(i),bn.lastIndex===0?a=i.length-1:a=bn.lastIndex-2,u=["at-word",i.slice(S,a+1),S,a],S=a;break}case 92:{for(a=S,l=!0;i.charCodeAt(a+1)===92;)a+=1,l=!l;if(o=i.charCodeAt(a+1),l&&o!==47&&o!==32&&o!==10&&o!==9&&o!==13&&o!==12&&(a+=1,Po.test(i.charAt(a)))){for(;Po.test(i.charAt(a+1));)a+=1;i.charCodeAt(a+1)===32&&(a+=1)}u=["word",i.slice(S,a+1),S,a],S=a;break}default:{o===47&&i.charCodeAt(S+1)===42?(a=i.indexOf("*/",S+2)+1,a===0&&(r||_?a=i.length:W("comment")),u=["comment",i.slice(S,a+1),S,a],S=a):(Sn.lastIndex=S+1,Sn.test(i),Sn.lastIndex===0?a=i.length-1:a=Sn.lastIndex-2,u=["word",i.slice(S,a+1),S,a],N.push(u),S=a);break}}return S++,u}function w(F){v.push(F)}return{back:w,endOfFile:M,nextToken:y,position:Y}}});var Uo=ee((Um,Go)=>{"use strict";var $l=dn(),Kl=Bt(),Jl=Wt(),Yl=dt(),Ho=xn(),Xl=Bo(),Wo={empty:!0,space:!0};function Ql(t){for(let e=t.length-1;e>=0;e--){let n=t[e],i=n[3]||n[2];if(i)return i}}var gi=class{constructor(e){this.input=e,this.root=new Yl,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:e,start:{column:1,line:1,offset:0}}}atrule(e){let n=new $l;n.name=e[1].slice(1),n.name===""&&this.unnamedAtrule(n,e),this.init(n,e[2]);let i,r,o,s=!1,l=!1,a=[],c=[];for(;!this.tokenizer.endOfFile();){if(e=this.tokenizer.nextToken(),i=e[0],i==="("||i==="["?c.push(i==="("?")":"]"):i==="{"&&c.length>0?c.push("}"):i===c[c.length-1]&&c.pop(),c.length===0)if(i===";"){n.source.end=this.getPosition(e[2]),n.source.end.offset++,this.semicolon=!0;break}else if(i==="{"){l=!0;break}else if(i==="}"){if(a.length>0){for(o=a.length-1,r=a[o];r&&r[0]==="space";)r=a[--o];r&&(n.source.end=this.getPosition(r[3]||r[2]),n.source.end.offset++)}this.end(e);break}else a.push(e);else a.push(e);if(this.tokenizer.endOfFile()){s=!0;break}}n.raws.between=this.spacesAndCommentsFromEnd(a),a.length?(n.raws.afterName=this.spacesAndCommentsFromStart(a),this.raw(n,"params",a),s&&(e=a[a.length-1],n.source.end=this.getPosition(e[3]||e[2]),n.source.end.offset++,this.spaces=n.raws.between,n.raws.between="")):(n.raws.afterName="",n.params=""),l&&(n.nodes=[],this.current=n)}checkMissedSemicolon(e){let n=this.colon(e);if(n===!1)return;let i=0,r;for(let o=n-1;o>=0&&(r=e[o],!(r[0]!=="space"&&(i+=1,i===2)));o--);throw this.input.error("Missed semicolon",r[0]==="word"?r[3]+1:r[2])}colon(e){let n=0,i,r,o;for(let[s,l]of e.entries()){if(r=l,o=r[0],o==="("&&(n+=1),o===")"&&(n-=1),n===0&&o===":")if(!i)this.doubleColon(r);else{if(i[0]==="word"&&i[1]==="progid")continue;return s}i=r}return!1}comment(e){let n=new Kl;this.init(n,e[2]),n.source.end=this.getPosition(e[3]||e[2]),n.source.end.offset++;let i=e[1].slice(2,-2);if(!i.trim())n.text="",n.raws.left=i,n.raws.right="";else{let r=i.match(/^(\\s*)([^]*\\S)(\\s*)$/);n.text=r[2],n.raws.left=r[1],n.raws.right=r[3]}}createTokenizer(){this.tokenizer=Xl(this.input)}decl(e,n){let i=new Jl;this.init(i,e[0][2]);let r=e[e.length-1];for(r[0]===";"&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(r[3]||r[2]||Ql(e)),i.source.end.offset++;e[0][0]!=="word";)e.length===1&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){let c=e[0][0];if(c===":"||c==="space"||c==="comment")break;i.prop+=e.shift()[1]}i.raws.between="";let o;for(;e.length;)if(o=e.shift(),o[0]===":"){i.raws.between+=o[1];break}else o[0]==="word"&&/\\w/.test(o[1])&&this.unknownWord([o]),i.raws.between+=o[1];(i.prop[0]==="_"||i.prop[0]==="*")&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));let s=[],l;for(;e.length&&(l=e[0][0],!(l!=="space"&&l!=="comment"));)s.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(o=e[c],o[1].toLowerCase()==="!important"){i.important=!0;let u=this.stringFrom(e,c);u=this.spacesFromEnd(e)+u,u!==" !important"&&(i.raws.important=u);break}else if(o[1].toLowerCase()==="important"){let u=e.slice(0),m="";for(let f=c;f>0;f--){let x=u[f][0];if(m.trim().startsWith("!")&&x!=="space")break;m=u.pop()[1]+m}m.trim().startsWith("!")&&(i.important=!0,i.raws.important=m,e=u)}if(o[0]!=="space"&&o[0]!=="comment")break}e.some(c=>c[0]!=="space"&&c[0]!=="comment")&&(i.raws.between+=s.map(c=>c[1]).join(""),s=[]),this.raw(i,"value",s.concat(e),n),i.value.includes(":")&&!n&&this.checkMissedSemicolon(e)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}emptyRule(e){let n=new Ho;this.init(n,e[2]),n.selector="",n.raws.between="",this.current=n}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let n=this.current.nodes[this.current.nodes.length-1];n&&n.type==="rule"&&!n.raws.ownSemicolon&&(n.raws.ownSemicolon=this.spaces,this.spaces="",n.source.end=this.getPosition(e[2]),n.source.end.offset+=n.raws.ownSemicolon.length)}}getPosition(e){let n=this.input.fromOffset(e);return{column:n.col,line:n.line,offset:e}}init(e,n){this.current.push(e),e.source={input:this.input,start:this.getPosition(n)},e.raws.before=this.spaces,this.spaces="",e.type!=="comment"&&(this.semicolon=!1)}other(e){let n=!1,i=null,r=!1,o=null,s=[],l=e[1].startsWith("--"),a=[],c=e;for(;c;){if(i=c[0],a.push(c),i==="("||i==="[")o||(o=c),s.push(i==="("?")":"]");else if(l&&r&&i==="{")o||(o=c),s.push("}");else if(s.length===0)if(i===";")if(r){this.decl(a,l);return}else break;else if(i==="{"){this.rule(a);return}else if(i==="}"){this.tokenizer.back(a.pop()),n=!0;break}else i===":"&&(r=!0);else i===s[s.length-1]&&(s.pop(),s.length===0&&(o=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(n=!0),s.length>0&&this.unclosedBracket(o),n&&r){if(!l)for(;a.length&&(c=a[a.length-1][0],!(c!=="space"&&c!=="comment"));)this.tokenizer.back(a.pop());this.decl(a,l)}else this.unknownWord(a)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e);break}this.endFile()}precheckMissedSemicolon(){}raw(e,n,i,r){let o,s,l=i.length,a="",c=!0,u,m;for(let f=0;f<l;f+=1)o=i[f],s=o[0],s==="space"&&f===l-1&&!r?c=!1:s==="comment"?(m=i[f-1]?i[f-1][0]:"empty",u=i[f+1]?i[f+1][0]:"empty",!Wo[m]&&!Wo[u]?a.slice(-1)===","?c=!1:a+=o[1]:c=!1):a+=o[1];if(!c){let f=i.reduce((x,E)=>x+E[1],"");e.raws[n]={raw:f,value:a}}e[n]=a}rule(e){e.pop();let n=new Ho;this.init(n,e[0][2]),n.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(n,"selector",e),this.current=n}spacesAndCommentsFromEnd(e){let n,i="";for(;e.length&&(n=e[e.length-1][0],!(n!=="space"&&n!=="comment"));)i=e.pop()[1]+i;return i}spacesAndCommentsFromStart(e){let n,i="";for(;e.length&&(n=e[0][0],!(n!=="space"&&n!=="comment"));)i+=e.shift()[1];return i}spacesFromEnd(e){let n,i="";for(;e.length&&(n=e[e.length-1][0],n==="space");)i=e.pop()[1]+i;return i}stringFrom(e,n){let i="";for(let r=n;r<e.length;r++)i+=e[r][1];return e.splice(n,e.length-n),i}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word "+e[0][1],{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unnamedAtrule(e,n){throw this.input.error("At-rule without name",{offset:n[2]},{offset:n[2]+n[1].length})}};Go.exports=gi});var En=ee((Vm,Vo)=>{"use strict";var Zl=qe(),eu=Ut(),tu=Uo();function An(t,e){let n=new eu(t,e),i=new tu(n);try{i.parse()}catch(r){throw r}return i.root}Vo.exports=An;An.default=An;Zl.registerParse(An)});var yi=ee((zm,zo)=>{"use strict";var jt=class{constructor(e,n={}){if(this.type="warning",this.text=e,n.node&&n.node.source){let i=n.node.rangeBy(n);this.line=i.start.line,this.column=i.start.column,this.endLine=i.end.line,this.endColumn=i.end.column}for(let i in n)this[i]=n[i]}toString(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};zo.exports=jt;jt.default=jt});var wn=ee((jm,jo)=>{"use strict";var nu=yi(),qt=class{get content(){return this.css}constructor(e,n,i){this.processor=e,this.messages=[],this.root=n,this.opts=i,this.css="",this.map=void 0}toString(){return this.css}warn(e,n={}){n.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(n.plugin=this.lastPlugin.postcssPlugin);let i=new nu(e,n);return this.messages.push(i),i}warnings(){return this.messages.filter(e=>e.type==="warning")}};jo.exports=qt;qt.default=qt});var bi=ee((qm,$o)=>{"use strict";var qo={};$o.exports=function(e){qo[e]||(qo[e]=!0,typeof console<"u"&&console.warn&&console.warn(e))}});var Ei=ee((Km,Xo)=>{"use strict";var iu=qe(),ru=fn(),ou=xi(),su=En(),Ko=wn(),au=dt(),lu=kt(),{isClean:He,my:uu}=cn(),$m=bi(),cu={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},du={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},fu={Once:!0,postcssPlugin:!0,prepare:!0},mt=0;function $t(t){return typeof t=="object"&&typeof t.then=="function"}function Yo(t){let e=!1,n=cu[t.type];return t.type==="decl"?e=t.prop.toLowerCase():t.type==="atrule"&&(e=t.name.toLowerCase()),e&&t.append?[n,n+"-"+e,mt,n+"Exit",n+"Exit-"+e]:e?[n,n+"-"+e,n+"Exit",n+"Exit-"+e]:t.append?[n,mt,n+"Exit"]:[n,n+"Exit"]}function Jo(t){let e;return t.type==="document"?e=["Document",mt,"DocumentExit"]:t.type==="root"?e=["Root",mt,"RootExit"]:e=Yo(t),{eventIndex:0,events:e,iterator:0,node:t,visitorIndex:0,visitors:[]}}function Si(t){return t[He]=!1,t.nodes&&t.nodes.forEach(e=>Si(e)),t}var Ai={},Ke=class t{get content(){return this.stringify().content}get css(){return this.stringify().css}get map(){return this.stringify().map}get messages(){return this.sync().messages}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){return this.sync().root}get[Symbol.toStringTag](){return"LazyResult"}constructor(e,n,i){this.stringified=!1,this.processed=!1;let r;if(typeof n=="object"&&n!==null&&(n.type==="root"||n.type==="document"))r=Si(n);else if(n instanceof t||n instanceof Ko)r=Si(n.root),n.map&&(typeof i.map>"u"&&(i.map={}),i.map.inline||(i.map.inline=!1),i.map.prev=n.map);else{let o=su;i.syntax&&(o=i.syntax.parse),i.parser&&(o=i.parser),o.parse&&(o=o.parse);try{r=o(n,i)}catch(s){this.processed=!0,this.error=s}r&&!r[uu]&&iu.rebuild(r)}this.result=new Ko(e,r,i),this.helpers={...Ai,postcss:Ai,result:this.result},this.plugins=this.processor.plugins.map(o=>typeof o=="object"&&o.prepare?{...o,...o.prepare(this.result)}:o)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,n){let i=this.result.lastPlugin;try{n&&n.addToError(e),this.error=e,e.name==="CssSyntaxError"&&!e.plugin?(e.plugin=i.postcssPlugin,e.setMessage()):i.postcssVersion}catch(r){console&&console.error&&console.error(r)}return e}prepareVisitors(){this.listeners={};let e=(n,i,r)=>{this.listeners[i]||(this.listeners[i]=[]),this.listeners[i].push([n,r])};for(let n of this.plugins)if(typeof n=="object")for(let i in n){if(!du[i]&&/^[A-Z]/.test(i))throw new Error(`Unknown event ${i} in ${n.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!fu[i])if(typeof n[i]=="object")for(let r in n[i])r==="*"?e(n,i,n[i][r]):e(n,i+"-"+r.toLowerCase(),n[i][r]);else typeof n[i]=="function"&&e(n,i,n[i])}this.hasListener=Object.keys(this.listeners).length>0}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let n=this.plugins[e],i=this.runOnRoot(n);if($t(i))try{await i}catch(r){throw this.handleError(r)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[He];){e[He]=!0;let n=[Jo(e)];for(;n.length>0;){let i=this.visitTick(n);if($t(i))try{await i}catch(r){let o=n[n.length-1].node;throw this.handleError(r,o)}}}if(this.listeners.OnceExit)for(let[n,i]of this.listeners.OnceExit){this.result.lastPlugin=n;try{if(e.type==="document"){let r=e.nodes.map(o=>i(o,this.helpers));await Promise.all(r)}else await i(e,this.helpers)}catch(r){throw this.handleError(r)}}}return this.processed=!0,this.stringify()}runOnRoot(e){this.result.lastPlugin=e;try{if(typeof e=="object"&&e.Once){if(this.result.root.type==="document"){let n=this.result.root.nodes.map(i=>e.Once(i,this.helpers));return $t(n[0])?Promise.all(n):n}return e.Once(this.result.root,this.helpers)}else if(typeof e=="function")return e(this.result.root,this.result)}catch(n){throw this.handleError(n)}}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,n=lu;e.syntax&&(n=e.syntax.stringify),e.stringifier&&(n=e.stringifier),n.stringify&&(n=n.stringify);let i=this.result.root.source;if(e.map===void 0&&!(i&&i.input&&i.input.map)){let s="";return n(this.result.root,l=>{s+=l}),this.result.css=s,this.result}let o=new ou(n,this.result.root,this.result.opts).generate();return this.result.css=o[0],this.result.map=o[1],this.result}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){let n=this.runOnRoot(e);if($t(n))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[He];)e[He]=!0,this.walkSync(e);if(this.listeners.OnceExit)if(e.type==="document")for(let n of e.nodes)this.visitSync(this.listeners.OnceExit,n);else this.visitSync(this.listeners.OnceExit,e)}return this.result}then(e,n){return this.async().then(e,n)}toString(){return this.css}visitSync(e,n){for(let[i,r]of e){this.result.lastPlugin=i;let o;try{o=r(n,this.helpers)}catch(s){throw this.handleError(s,n.proxyOf)}if(n.type!=="root"&&n.type!=="document"&&!n.parent)return!0;if($t(o))throw this.getAsyncError()}}visitTick(e){let n=e[e.length-1],{node:i,visitors:r}=n;if(i.type!=="root"&&i.type!=="document"&&!i.parent){e.pop();return}if(r.length>0&&n.visitorIndex<r.length){let[s,l]=r[n.visitorIndex];n.visitorIndex+=1,n.visitorIndex===r.length&&(n.visitors=[],n.visitorIndex=0),this.result.lastPlugin=s;try{return l(i.toProxy(),this.helpers)}catch(a){throw this.handleError(a,i)}}if(n.iterator!==0){let s=n.iterator,l;for(;l=i.nodes[i.indexes[s]];)if(i.indexes[s]+=1,!l[He]){l[He]=!0,e.push(Jo(l));return}n.iterator=0,delete i.indexes[s]}let o=n.events;for(;n.eventIndex<o.length;){let s=o[n.eventIndex];if(n.eventIndex+=1,s===mt){i.nodes&&i.nodes.length&&(i[He]=!0,n.iterator=i.getIterator());return}else if(this.listeners[s]){n.visitors=this.listeners[s];return}}e.pop()}walkSync(e){e[He]=!0;let n=Yo(e);for(let i of n)if(i===mt)e.nodes&&e.each(r=>{r[He]||this.walkSync(r)});else{let r=this.listeners[i];if(r&&this.visitSync(r,e.toProxy()))return}}warnings(){return this.sync().warnings()}};Ke.registerPostcss=t=>{Ai=t};Xo.exports=Ke;Ke.default=Ke;au.registerLazyResult(Ke);ru.registerLazyResult(Ke)});var Zo=ee((Ym,Qo)=>{"use strict";var mu=xi(),pu=En(),hu=wn(),xu=kt(),Jm=bi(),Kt=class{get content(){return this.result.css}get css(){return this.result.css}get map(){return this.result.map}get messages(){return[]}get opts(){return this.result.opts}get processor(){return this.result.processor}get root(){if(this._root)return this._root;let e,n=pu;try{e=n(this._css,this._opts)}catch(i){this.error=i}if(this.error)throw this.error;return this._root=e,e}get[Symbol.toStringTag](){return"NoWorkResult"}constructor(e,n,i){n=n.toString(),this.stringified=!1,this._processor=e,this._css=n,this._opts=i,this._map=void 0;let r=xu;this.result=new hu(this._processor,void 0,this._opts),this.result.css=n;let o=this;Object.defineProperty(this.result,"root",{get(){return o.root}});let s=new mu(r,void 0,this._opts,n);if(s.isMap()){let[l,a]=s.generate();l&&(this.result.css=l),a&&(this.result.map=a)}else s.clearAnnotation(),this.result.css=s.css}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}sync(){if(this.error)throw this.error;return this.result}then(e,n){return this.async().then(e,n)}toString(){return this._css}warnings(){return[]}};Qo.exports=Kt;Kt.default=Kt});var ts=ee((Xm,es)=>{"use strict";var gu=fn(),yu=Ei(),bu=Zo(),Su=dt(),rt=class{constructor(e=[]){this.version="8.5.14",this.plugins=this.normalize(e)}normalize(e){let n=[];for(let i of e)if(i.postcss===!0?i=i():i.postcss&&(i=i.postcss),typeof i=="object"&&Array.isArray(i.plugins))n=n.concat(i.plugins);else if(typeof i=="object"&&i.postcssPlugin)n.push(i);else if(typeof i=="function")n.push(i);else if(!(typeof i=="object"&&(i.parse||i.stringify)))throw new Error(i+" is not a PostCSS plugin");return n}process(e,n={}){return!this.plugins.length&&!n.parser&&!n.stringifier&&!n.syntax?new bu(this,e,n):new yu(this,e,n)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}};es.exports=rt;rt.default=rt;Su.registerProcessor(rt);gu.registerProcessor(rt)});var us=ee((Qm,ls)=>{"use strict";var ns=dn(),is=Bt(),Au=qe(),Eu=un(),rs=Wt(),os=fn(),wu=To(),Cu=Ut(),Fu=Ei(),Mu=pi(),Nu=Pt(),_u=En(),wi=ts(),Tu=wn(),ss=dt(),as=xn(),Lu=kt(),vu=yi();function le(...t){return t.length===1&&Array.isArray(t[0])&&(t=t[0]),new wi(t)}le.plugin=function(e,n){let i=!1;function r(...s){console&&console.warn&&!i&&(i=!0,console.warn(e+`: postcss.plugin was deprecated. Migration guide:\nhttps://evilmartians.com/chronicles/postcss-8-plugin-migration`),process.env.LANG&&process.env.LANG.startsWith("cn")&&console.warn(e+`: \\u91CC\\u9762 postcss.plugin \\u88AB\\u5F03\\u7528. \\u8FC1\\u79FB\\u6307\\u5357:\nhttps://www.w3ctech.com/topic/2226`));let l=n(...s);return l.postcssPlugin=e,l.postcssVersion=new wi().version,l}let o;return Object.defineProperty(r,"postcss",{get(){return o||(o=r()),o}}),r.process=function(s,l,a){return le([r(a)]).process(s,l)},r};le.stringify=Lu;le.parse=_u;le.fromJSON=wu;le.list=Mu;le.comment=t=>new is(t);le.atRule=t=>new ns(t);le.decl=t=>new rs(t);le.rule=t=>new as(t);le.root=t=>new ss(t);le.document=t=>new os(t);le.CssSyntaxError=Eu;le.Declaration=rs;le.Container=Au;le.Processor=wi;le.Document=os;le.Comment=is;le.Warning=vu;le.AtRule=ns;le.Result=Tu;le.Input=Cu;le.Rule=as;le.Root=ss;le.Node=Nu;Fu.registerPostcss(le);ls.exports=le;le.default=le});function an(){return globalThis}function L(t,e){if(typeof window>"u")return;let n=an(),i=n.__hf?.onSwallowed;if(i)try{i({label:t,error:e})}catch(r){}(n.__hfDebug||n.__HYPERFRAMES_DEBUG)&&console.debug(`[hyperframes] ${t} swallowed:`,e)}function Ee(t){try{window.parent.postMessage(t,"*")}catch(e){L("bridge.postMessage",e)}}var ka={play:(t,e)=>e.onPlay(),pause:(t,e)=>e.onPause(),"stop-media":(t,e)=>e.onStopMedia(),seek:(t,e)=>e.onSeek(Number(t.frame??0),t.seekMode??"commit"),tick:(t,e)=>e.onTick(),"set-muted":(t,e)=>e.onSetMuted(!!t.muted),"set-volume":(t,e)=>e.onSetVolume(Math.max(0,Math.min(1,Number(t.volume??1)))),"set-media-output-muted":(t,e)=>e.onSetMediaOutputMuted(!!t.muted),"set-native-media-sync-disabled":(t,e)=>e.onSetNativeMediaSyncDisabled(!!t.disabled),"set-web-audio-media-disabled":(t,e)=>e.onSetWebAudioMediaDisabled(!!t.disabled),"set-playback-rate":(t,e)=>e.onSetPlaybackRate(Number(t.playbackRate??1)),"set-color-grading":(t,e)=>e.onSetColorGrading(t.target??null,t.grading??null),"set-color-grading-compare":(t,e)=>e.onSetColorGradingCompare(t.target??null,t.compare??null),"enable-pick-mode":(t,e)=>e.onEnablePickMode(),"disable-pick-mode":(t,e)=>e.onDisablePickMode(),"flash-elements":t=>Da(t)};function Da(t){let e=t.selectors,n=t.duration||800;e&&Ia(e,n)}function ir(t){let e=n=>{let i=n.data;if(!i||i.source!=="hf-parent"||i.type!=="control")return;let r=i.action;if(typeof r!="string")return;let o=ka[r];o&&o(i,t)};return window.addEventListener("message",e),Ee({source:"hf-preview",type:"ready"}),e}function Ia(t,e){if(!document.getElementById("__hf-flash-styles")){let n=document.createElement("style");n.id="__hf-flash-styles",n.textContent=`\n .__hf-flash {\n outline: 2px solid rgba(59, 130, 246, 0.6) !important;\n outline-offset: 2px !important;\n animation: __hf-flash-pulse ${e}ms ease-out forwards !important;\n }\n @keyframes __hf-flash-pulse {\n 0% { outline-color: rgba(59, 130, 246, 0.8); }\n 100% { outline-color: transparent; }\n }\n `,document.head.appendChild(n)}for(let n of t)try{document.querySelectorAll(n).forEach(r=>{r.classList.add("__hf-flash"),setTimeout(()=>r.classList.remove("__hf-flash"),e)})}catch(i){L("bridge.flashElements.querySelector",i)}}var zn=null;function rr(t){zn=t}function wt(t,e){if(zn)try{zn({source:"hf-preview",type:"analytics",event:t,properties:e??{}})}catch(n){L("runtime.analytics.site1",n)}}function or(t){let e=[],n=l=>{if(typeof l.getAnimations!="function")return[];try{return l.getAnimations()}catch{return[]}},i=(l,a)=>{for(let c of l){try{c.currentTime=a}catch(u){L("runtime.adapters.css.site1",u)}try{c.pause()}catch(u){L("runtime.adapters.css.site2",u)}}},r=l=>{for(let a of l)try{a.play()}catch(c){L("runtime.adapters.css.site3",c)}},o=l=>{for(let a of l)try{a.pause()}catch(c){L("runtime.adapters.css.site4",c)}},s=l=>{l.baseDelay?l.el.style.animationDelay=l.baseDelay:l.el.style.removeProperty("animation-delay"),l.basePlayState?l.el.style.animationPlayState=l.basePlayState:l.el.style.removeProperty("animation-play-state")};return{name:"css",discover:()=>{e=[];let l=document.querySelectorAll("*");for(let a of l){if(!(a instanceof HTMLElement))continue;let c=window.getComputedStyle(a);!c.animationName||c.animationName==="none"||e.push({el:a,baseDelay:a.style.animationDelay||"",basePlayState:a.style.animationPlayState||""})}},seek:l=>{let a=Number(l.time)||0;for(let c of e){if(!c.el.isConnected)continue;let u=t?.resolveStartSeconds?t.resolveStartSeconds(c.el):Number.parseFloat(c.el.getAttribute("data-start")??"0")||0,m=Math.max(0,a-u)*1e3,f=n(c.el);if(f.length>0){i(f,m);continue}c.el.style.animationPlayState="paused",c.el.style.animationDelay=`-${(m/1e3).toFixed(3)}s`}},pause:()=>{for(let l of e){if(!l.el.isConnected)continue;let a=n(l.el);a.length>0&&o(a),s(l)}},play:()=>{for(let l of e)l.el.isConnected&&(s(l),r(n(l.el)))},revert:()=>{e=[]}}}function sr(t){return{name:"gsap",discover:()=>{},seek:e=>{let n=t.getTimeline();if(!n)return;n.pause();let i=Math.max(0,Number(e.time)||0);typeof n.totalTime=="function"?(n.totalTime(i+.001,!0),n.totalTime(i,!1)):n.seek(i,!1)},pause:()=>{let e=t.getTimeline();e&&e.pause()}}}function ar(){return{name:"animejs",discover:()=>{try{let t=window.anime;if(!t||typeof t.running>"u")return;let e=t.running;if(!Array.isArray(e)||e.length===0)return;let n=window.__hfAnime??[],i=new Set(n);for(let r of e)i.has(r)||n.push(r);window.__hfAnime=n}catch(t){L("runtime.adapters.animejs.site1",t)}},seek:t=>{let e=Math.max(0,(Number(t.time)||0)*1e3),n=window.__hfAnime;if(!(!n||n.length===0))for(let i of n)try{typeof i.seek=="function"&&i.seek(e)}catch(r){L("runtime.adapters.animejs.site2",r)}},pause:()=>{let t=window.__hfAnime;if(!(!t||t.length===0))for(let e of t)try{typeof e.pause=="function"&&e.pause()}catch(n){L("runtime.adapters.animejs.site3",n)}},play:()=>{let t=window.__hfAnime;if(!(!t||t.length===0))for(let e of t)try{typeof e.play=="function"&&e.play()}catch(n){L("runtime.adapters.animejs.site4",n)}},revert:()=>{}}}function cr(){return{name:"lottie",discover:()=>{try{let t=window.lottie;if(t&&typeof t.getRegisteredAnimations=="function"){let e=t.getRegisteredAnimations();if(Array.isArray(e)&&e.length>0){let n=window.__hfLottie??[],i=new Set(n);for(let r of e)i.has(r)||n.push(r);window.__hfLottie=n}}}catch(t){L("runtime.adapters.lottie.site1",t)}},seek:t=>{let e=Math.max(0,Number(t.time)||0),n=window.__hfLottie;if(!(!n||n.length===0))for(let i of n)try{if(lr(i))i.goToAndStop(e*1e3,!1);else if(ur(i)){if(typeof i.setCurrentRawFrameValue=="function"){let r=i.totalFrames??0,o=i.frameRate??30,s=e*o;r>0&&i.setCurrentRawFrameValue(Math.min(s,r-1))}else if(typeof i.seek=="function"){let r=i.duration??1,o=Math.min(100,e/r*100);i.seek(o)}}}catch(r){L("runtime.adapters.lottie.site2",r)}},pause:()=>{let t=window.__hfLottie;if(!(!t||t.length===0))for(let e of t)try{(lr(e)||ur(e))&&e.pause()}catch(n){L("runtime.adapters.lottie.site3",n)}},revert:()=>{}}}function lr(t){return typeof t=="object"&&t!==null&&typeof t.goToAndStop=="function"}function ur(t){return typeof t=="object"&&t!==null&&typeof t.pause=="function"&&("totalFrames"in t||"duration"in t)}var jn=-1;function ln(t){if(t!==jn){jn=t;try{window.dispatchEvent(new CustomEvent("hf-seek",{detail:{time:t}}))}catch(e){L("runtime.adapters.seek-dispatch.site1",e)}}}function dr(t){jn=t;try{window.dispatchEvent(new CustomEvent("hf-seek",{detail:{time:t}}))}catch(e){L("runtime.adapters.seek-dispatch.force",e)}}function fr(){let t=null,e=0,n=null,i=null,r=null,o=null,s=()=>{if(typeof window>"u")return null;let u=window.THREE?.DefaultLoadingManager;return!u||typeof u!="object"||typeof u.itemsLoaded!="number"||typeof u.itemsTotal!="number"?null:u},l=c=>{o||c.itemsTotal<=c.itemsLoaded||(o=new Promise(u=>{c.onLoad=function(){try{r?.call(this)}finally{o=null,c.onLoad=r??null,u()}}}))},a=c=>{n!==c&&(n=c,i=c.onStart??null,r=c.onLoad??null,c.onStart=function(u,m,f){try{i?.call(this,u,m,f)}finally{l(c)}})};return{name:"three",discover:()=>{let c=s();c&&(a(c),l(c))},seek:c=>{t=Math.max(0,Number(c.time)||0),e=t,window.__hfThreeTime=t,ln(t)},pause:()=>{t==null&&(t=Math.max(0,e))},play:()=>{t=null},revert:()=>{t=null,e=0},getReadyPromise:()=>{let c=s();return!c||c.itemsTotal<=c.itemsLoaded?null:(o||l(c),o)}}}function Be(t){let e=null,n=new WeakSet;return{name:t.name,discover:()=>{},seek:()=>{},pause:()=>{},play:()=>{},revert:()=>{},getReadyPromise:()=>{let i=t.getInstances();if(i.length===0)return null;let r=i.filter(o=>!n.has(o));return r.length===0?null:e||(e=Promise.allSettled(r.map(o=>t.waitFor(o).then(()=>{n.add(o)}))).then(()=>{e=null}),e)}}}function mr(){return Be({name:"mapbox",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfMapbox;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>{if(t.loaded()){e();return}t.on("load",e)})})}function pr(){return Be({name:"leaflet",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfLeaflet;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>t.whenReady(e))})}function hr(){return Be({name:"google-maps",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfGoogleMaps;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>{let n=t.addListener("tilesloaded",()=>{n.remove(),e()})})})}function xr(){return Be({name:"maplibre",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfMaplibre;return Array.isArray(t)?t:[]},waitFor:t=>new Promise(e=>{if(t.loaded()){e();return}t.on("load",e)})})}function gr(){return Be({name:"d3",getInstances:()=>{if(typeof window>"u")return[];let t=window.__hfD3;return Array.isArray(t)?t:[]},waitFor:t=>t.end()})}function yr(){let t=null,e=0;return{name:"typegpu",discover:()=>{},seek:n=>{t=Math.max(0,Number(n.time)||0),e=t,window.__hfTypegpuTime=t,ln(t)},pause:()=>{t==null&&(t=Math.max(0,e))},play:()=>{t=null},revert:()=>{t=null,e=0}}}function br(t){let e=t.nextElementSibling;if(e instanceof HTMLImageElement&&e.classList.contains("__render_frame__")&&e.complete&&e.naturalWidth>0)return e;if(t.id){let n=document.getElementById(`__render_frame_${t.id}__`);if(n instanceof HTMLImageElement&&n.complete&&n.naturalWidth>0)return n}return null}function Sr(){let t=globalThis.GPUQueue;if(!t?.prototype?.copyExternalImageToTexture)return;let e=t.prototype.copyExternalImageToTexture;t.prototype.copyExternalImageToTexture=function(n,i,r){if(n?.source instanceof HTMLVideoElement){let o=br(n.source);if(o)return e.call(this,{...n,source:o},i,r)}return e.call(this,n,i,r)}}function Ar(){let t=[globalThis.WebGL2RenderingContext,globalThis.WebGLRenderingContext],e=["texImage2D","texSubImage2D"];for(let n of t){let i=n?.prototype;if(i)for(let r of e){let o=i[r];if(typeof o!="function"||o.__hfVideoPatched)continue;let s=function(...l){let a=l.length-1,c=l[a];if(c instanceof HTMLVideoElement){let u=br(c);u&&(l[a]=u)}return o.apply(this,l)};s.__hfVideoPatched=!0,i[r]=s}}}function Er(){let t=!1,e=0,n=new WeakMap,i=()=>{if(!document.getAnimations)return[];try{return document.getAnimations()}catch{return[]}},r=l=>{let a=Number(l.currentTime);return Number.isFinite(a)&&a>0?a:0},o=(l,a)=>a<=0?l:l>=a?Math.max(0,l-a):l,s=(l,a)=>{let c=n.get(l);if(c)return c;let u={compositionTimeMs:a,animationTimeMs:t?o(r(l),a):r(l)};return n.set(l,u),u};return{name:"waapi",discover:()=>{t=!0;for(let l of i())s(l,e)},seek:l=>{let a=Math.max(0,(Number(l.time)||0)*1e3);e=a;for(let c of i()){let u=t?s(c,a):s(c,0),m=u.animationTimeMs+Math.max(0,a-u.compositionTimeMs);try{c.currentTime=m}catch(f){L("runtime.adapters.waapi.site1",f)}try{c.pause()}catch(f){L("runtime.adapters.waapi.site2",f)}}},pause:()=>{if(document.getAnimations)for(let l of document.getAnimations())try{l.pause()}catch(a){L("runtime.adapters.waapi.site3",a)}}}}function wr(t,e){if(t.length===0)return 1;let n=0;for(;n<t.length-2&&e>=t[n+1].time;)n+=1;let i=t[n],r=t[n+1]??i,o=r.time-i.time,s=o<=0?0:Math.min(1,Math.max(0,(e-i.time)/o));return i.volume+(r.volume-i.volume)*s}function Pa(t,e,n,i){let r=Number.parseFloat(t.dataset.start??"0")||0,o=Number.parseFloat(t.dataset.end??""),s=Number.parseFloat(t.dataset.duration??""),l=Number.isFinite(o)&&o>r?o:Number.isFinite(s)&&s>0?r+s:n,a=Number.parseFloat(t.dataset.volume??""),c=Number.isFinite(a)?Math.max(0,Math.min(1,a)):1;t.volume=c;let u=1/Math.min(60,Math.max(1,i)),m=Math.max(0,r),f=Math.min(n,l),x=[];for(let g=m;g<=f+1e-6;g+=u){let S=Math.min(f,g);e(S);let N=Number(t.volume);if(!Number.isFinite(N))continue;let v=Math.max(0,Math.min(1,N)),R=x.at(-1);if((!R||Math.abs(R.volume-v)>1e-4||S===f)&&x.push({time:Number(S.toFixed(6)),volume:Number(v.toFixed(6))}),S===f)break}return x.some(g=>Math.abs(g.volume-c)>1e-4)?x:null}function Cr(t,e,n,i){if(!e||!(t instanceof HTMLAudioElement)&&!(t instanceof HTMLVideoElement)||n<=0)return;let o=Pa(t,s=>{try{typeof e.totalTime=="function"?e.totalTime(s,!0):typeof e.seek=="function"&&e.seek(s,!0)}catch{}},n,60);o&&i.set(t,o)}function Mt(t){let e=t.defaultPlaybackRate;return Number.isFinite(e)&&e>0?Math.max(.1,Math.min(5,e)):1}function Fr(t){let e=Array.from(document.querySelectorAll("video, audio")),n=t?.shouldIncludeElement?e.filter(s=>t.shouldIncludeElement?.(s)):e.filter(s=>s.hasAttribute("data-start")),i=[],r=[],o=0;for(let s of n){let l=t?.resolveStartSeconds?t.resolveStartSeconds(s):Number.parseFloat(s.dataset.start??"0");if(!Number.isFinite(l))continue;let a=Number.parseFloat(s.dataset.playbackStart??s.dataset.mediaStart??"0")||0,c=Mt(s),u=s.loop,m=Number.isFinite(s.duration)&&s.duration>0?s.duration:null,f=t?.resolveDurationSeconds?.(s)??Number.parseFloat(s.dataset.duration??"");(!Number.isFinite(f)||f<=0)&&m!=null&&(f=Math.max(0,(m-a)/c));let x=Number.isFinite(f)&&f>0?l+f:Number.POSITIVE_INFINITY,E=Number.parseFloat(s.dataset.volume??""),g={el:s,start:l,mediaStart:a,duration:Number.isFinite(f)&&f>0?f:Number.POSITIVE_INFINITY,end:x,volume:Number.isFinite(E)?E:null,playbackRate:c,loop:u,sourceDuration:m};i.push(g),s.tagName==="VIDEO"&&r.push(g),Number.isFinite(x)&&(o=Math.max(o,x))}return{timedMediaEls:n,mediaClips:i,videoClips:r,maxMediaEnd:o}}var qn=new WeakMap,Ct=new WeakMap,$n=new WeakSet,at=new WeakSet;function Oa(t){if(at.has(t))return;at.add(t);let e=()=>at.delete(t);t.addEventListener("playing",e,{once:!0}),t.addEventListener("pause",e,{once:!0}),t.addEventListener("error",e,{once:!0})}var Ba=3;function Ha(t){return t.error!=null||t.networkState===Ba}var Kn=new WeakMap;function Ft(t){return Number.isFinite(t)?Math.max(0,Math.min(1,t)):1}function Mr(t){let e=!!(t.outputMuted||t.userMuted);for(let n of t.clips){let{el:i}=n;if(!i.isConnected)continue;let r=(t.timeSeconds-n.start)*n.playbackRate+n.mediaStart;if(t.timeSeconds>=n.start&&t.timeSeconds<=n.end&&r>=0&&(!i.ended||n.loop)){if(n.loop&&n.sourceDuration!=null&&n.sourceDuration>0){let _=n.sourceDuration-n.mediaStart;_>0&&r>=n.sourceDuration&&(r=n.mediaStart+(r-n.mediaStart)%_)}let s=Ft(t.userVolume??1),l=Ft(n.volume??1),a=Kn.get(i),c=Ft(i.volume),u;n.volumeKeyframes&&n.volumeKeyframes.length>0?u=Ft(wr(n.volumeKeyframes,r)):a===void 0||Math.abs(c-a)>1e-4?u=c:u=l;let m=Ft(u*s);i.volume=m,Kn.set(i,m),t.onElementVolume?.(i,m),(e||t.isWebAudioOwned?.(i))&&(i.muted=!0),i.preload!=="auto"&&(i.preload="auto");try{i.playbackRate=n.playbackRate*t.playbackRate}catch(_){L("runtime.media.site1",_)}let f=.04,x=2,E=i.currentTime||0,g=Math.abs(E-r),S=r-E,N=qn.get(i);qn.set(i,S);let v=N===void 0,R=!v&&Math.abs(S-N)>.5,Y=g>3,W=g>.5&&(v||R||Y),M=i.tagName==="VIDEO"&&!i.paused,y=N!==void 0&&Math.abs(S-N)<.004,w=!1;if(!M&&!W&&!v&&y&&g>f){let _=(Ct.get(i)??0)+1;Ct.set(i,_),_>=x&&(w=!0,Ct.set(i,0))}else g<=f&&Ct.set(i,0);let F=!M&&t.forceSync&&g>.02;if(W||w||F){if(!(i.tagName==="VIDEO"&&i.id&&!!document.getElementById(`__render_frame_${i.id}__`))){try{i.currentTime=r}catch(T){L("runtime.media.site2",T)}if(Math.abs(i.currentTime-r)>.5&&!$n.has(i)){$n.add(i),i.load();try{i.currentTime=r}catch(T){L("runtime.media.site3",T)}}}at.delete(i)}t.playing&&i.paused&&!at.has(i)&&!Ha(i)?(Oa(i),i.play().catch(_=>{at.delete(i),(_&&typeof _=="object"&&"name"in _?String(_.name??""):"")==="NotAllowedError"&&t.onAutoplayBlocked?.()})):!t.playing&&!i.paused&&i.pause();continue}qn.delete(i),Ct.delete(i),$n.delete(i),Kn.delete(i),i.paused||i.pause()}}var Wa=["[data-hyperframes-ignore]","[data-hyperframes-picker-ignore]","[data-hf-ignore]","[data-no-inspect]","[data-no-pick]","[data-hyper-shader-loading]"].join(","),Ga=["[data-hyperframes-picker-block]","[data-hyper-shader-loading]"].join(","),Ua="data-hf-color-grading-source-hidden";function Nr(t){let e=!1,n=null,i=null,r=null,o=null;function s(y,w){try{window.dispatchEvent(new CustomEvent(y,{detail:w}))}catch(F){L("runtime.picker.site1",F)}}function l(y){r=y,s("hyperframe:picker:hovered",{elementInfo:r,isPickMode:e,timestamp:Date.now()})}function a(y){o=y,s("hyperframe:picker:selected",{elementInfo:o,isPickMode:e,timestamp:Date.now()})}function c(y){let w=y.ownerDocument.defaultView;if(!w)return!1;let F=y;for(;F&&F!==document.body&&F!==document.documentElement;){let _=w.getComputedStyle(F);if(_.display==="none"||_.visibility==="hidden"||_.pointerEvents==="none")return!0;let T=Number.parseFloat(_.opacity);if(Number.isFinite(T)&&T<=.01&&!F.hasAttribute(Ua))return!0;F=F.parentElement}return!1}function u(y){if(!y||y===document.body||y===document.documentElement)return!1;let w=y.tagName.toLowerCase();return!(w==="script"||w==="style"||w==="link"||w==="meta"||y.classList.contains("__hf-pick-highlight")||y.closest(Wa)||c(y))}function m(y){return!!y?.closest(Ga)}function f(y){let w=y;if(w.id)return`#${w.id}`;let F=y.getAttribute("data-composition-id");if(F)return`[data-composition-id="${CSS.escape(F)}"]`;let _=y.getAttribute("data-composition-src");if(_)return`[data-composition-src="${CSS.escape(_)}"]`;let T=y.getAttribute("data-track-index");if(T)return`[data-track-index="${CSS.escape(T)}"]`;let G=y.tagName.toLowerCase(),j=y.parentElement;if(!j)return G;let ne=j.querySelectorAll(`:scope > ${G}`);if(ne.length===1)return G;for(let P=0;P<ne.length;P+=1)if(ne[P]===y)return`${G}:nth-of-type(${P+1})`;return G}function x(y){let w=y.tagName.toLowerCase(),F=(y.textContent??"").trim().replace(/\\s+/g," "),_=(T,G)=>T.length>G?`${T.slice(0,G-1)}\\u2026`:T;return w==="h1"||w==="h2"||w==="h3"?"Heading":w==="p"||w==="span"||w==="div"?F.length>0?_(F,56):"Text":w==="img"?"Image":w==="video"?"Video":w==="audio"?"Audio":w==="svg"?"Shape":y.getAttribute("data-composition-src")?"Composition":w==="section"?"Section":`${w.charAt(0).toUpperCase()}${w.slice(1)}`}function E(y,w,F){let _=typeof F=="number"&&F>0?F:8,T=[];if(document.elementsFromPoint)T=document.elementsFromPoint(y,w);else if(document.elementFromPoint){let ne=document.elementFromPoint(y,w);T=ne?[ne]:[]}if(m(T[0]??null))return[];let G={},j=[];for(let ne=0;ne<T.length;ne+=1){let P=T[ne];if(!u(P))continue;let se=`${P.tagName}::${P.id||""}::${ne}`;if(!G[se]&&(G[se]=!0,j.push(P),j.length>=_))break}return j}function g(y){let w=y.getBoundingClientRect(),F={};for(let T=0;T<y.attributes.length;T+=1){let G=y.attributes[T];G.name.startsWith("data-")&&(F[G.name]=G.value)}return{id:y.id||null,tagName:y.tagName.toLowerCase(),selector:f(y),label:x(y),boundingBox:{x:w.left,y:w.top,width:w.width,height:w.height},textContent:y.textContent?y.textContent.trim().slice(0,200):null,src:y.getAttribute("src")||y.getAttribute("data-composition-src")||null,dataAttributes:F}}function S(y,w,F){return E(y,w,F).map(g)}function N(y){if(!e)return;let F=E(y.clientX,y.clientY,1)[0]??(y.target instanceof Element?y.target:null);if(!u(F)||n===F)return;n&&n.classList.remove("__hf-pick-highlight"),n=F,F.classList.add("__hf-pick-highlight");let _=g(F);l(_),t.postMessage({source:"hf-preview",type:"element-hovered",elementInfo:_})}function v(y){if(!e)return;y.preventDefault(),y.stopPropagation(),y.stopImmediatePropagation();let w=S(y.clientX,y.clientY,8);w.length!==0&&(l(w[0]??null),t.postMessage({source:"hf-preview",type:"element-pick-candidates",candidates:w,selectedIndex:0,point:{x:y.clientX,y:y.clientY}}))}function R(y){y.key==="Escape"&&(W(),t.postMessage({source:"hf-preview",type:"pick-mode-cancelled"}))}function Y(){e||(e=!0,i=document.createElement("style"),i.textContent=[".__hf-pick-highlight { outline: 2px solid #4f8cf7 !important; outline-offset: 2px; cursor: crosshair !important; }",".__hf-pick-active * { cursor: crosshair !important; }"].join(`\n`),document.head.appendChild(i),document.body.classList.add("__hf-pick-active"),document.addEventListener("mousemove",N,!0),document.addEventListener("click",v,!0),document.addEventListener("keydown",R,!0),s("hyperframe:picker:mode",{isPickMode:!0,timestamp:Date.now()}))}function W(){e&&(e=!1,n&&(n.classList.remove("__hf-pick-highlight"),n=null),i&&(i.remove(),i=null),document.body.classList.remove("__hf-pick-active"),document.removeEventListener("mousemove",N,!0),document.removeEventListener("click",v,!0),document.removeEventListener("keydown",R,!0),s("hyperframe:picker:mode",{isPickMode:!1,timestamp:Date.now()}))}function M(){window.__HF_PICKER_API={enable:Y,disable:W,isActive:()=>e,getHovered:()=>r,getSelected:()=>o,getCandidatesAtPoint:(y,w,F)=>Number.isFinite(y)&&Number.isFinite(w)?S(y,w,F):[],pickAtPoint:(y,w,F)=>{if(!Number.isFinite(y)||!Number.isFinite(w))return null;let _=S(y,w,8);if(!_.length)return null;let T=Math.max(0,Math.min(_.length-1,Number(F??0))),G=_[T]??null;return G?(a(G),t.postMessage({source:"hf-preview",type:"element-picked",elementInfo:G}),W(),G):null},pickManyAtPoint:(y,w,F)=>{if(!Number.isFinite(y)||!Number.isFinite(w))return[];let _=S(y,w,8);if(!_.length)return[];let T=[],G=Array.isArray(F)?F:[0];for(let j of G){let ne=Math.max(0,Math.min(_.length-1,Math.floor(Number(j)))),P=_[ne];if(!P)continue;T.some(Se=>Se.selector===P.selector&&Se.tagName===P.tagName)||T.push(P)}return T.length?(a(T[0]??null),t.postMessage({source:"hf-preview",type:"element-picked-many",elementInfos:T}),W(),T):[]}},s("hyperframe:picker:api-ready",{hasApi:!0,timestamp:Date.now()})}return{enablePickMode:Y,disablePickMode:W,installPickerApi:M}}var Va=["width","height","top","left","right","bottom","inset","object-fit","object-position","z-index","opacity","visibility","filter","mix-blend-mode","backdrop-filter","border-radius","overflow","clip-path","mask","mask-image","mask-size","mask-position","mask-repeat","transform","transform-origin","translate","rotate","scale","box-sizing"];function lt(t,e){let n=Number.isFinite(e)&&e>0?e:30,i=Number.isFinite(t)&&t>0?t:0;return Math.floor(i*n+1e-9)/n}function _r(t,e,n=Va){for(let i of n){let r=e.getPropertyValue(i);r&&t.setProperty(i,r)}}function Nt(t,e,n){let i=t?.[e];return typeof i=="function"?Number(i.call(t))||n:typeof i=="number"&&Number.isFinite(i)?i:(i!=null&&L("runtime.player.nonConformantNum",{prop:e,actual:typeof i}),n)}function ke(t,e){let n=t?.[e];if(typeof n=="function"){n.call(t);return}n!==void 0&&L("runtime.player.nonConformantVoid",{method:e,actual:typeof n})}function _t(t,e,n){if(t){for(let i of Object.values(t))if(!(!i||i===e))try{n(i)}catch(r){L("runtime.player.site1",r)}}}function Tr(t,e,n){let i=lt(e,n);return ke(t,"pause"),typeof t.totalTime=="function"?t.totalTime(i,!1):typeof t.seek=="function"&&t.seek(i,!1),i}function za(t,e,n,i){let r=[];_t(t,e,o=>{ke(o,"play"),r.push(o)});try{return Tr(e,n,i)}finally{for(let o of r)try{ke(o,"pause")}catch(s){L("runtime.player.site2",s)}}}function ja(t,e){_t(t,e,n=>{ke(n,"play")})}function Lr(t){return{_timeline:null,play:()=>{let e=t.getTimeline();if(!e||t.getIsPlaying())return;let n=Math.max(0,Number(t.getSafeDuration?.()??Nt(e,"duration",0))||0);n>0&&Math.max(0,Nt(e,"time",0))>=n&&(ke(e,"pause"),typeof e.seek=="function"&&e.seek(0,!1),t.onDeterministicSeek(0),t.setIsPlaying(!1),t.onSyncMedia(0,!1),t.onRenderFrameSeek(0)),typeof e.timeScale=="function"&&e.timeScale(t.getPlaybackRate()),ke(e,"play"),_t(t.getTimelineRegistry?.(),e,i=>{typeof i.timeScale=="function"&&i.timeScale(t.getPlaybackRate()),ke(i,"play")}),t.onDeterministicPlay(),t.setIsPlaying(!0),t.onShowNativeVideos(),t.onStatePost(!0)},pause:()=>{let e=t.getTimeline();if(!e)return;ke(e,"pause"),_t(t.getTimelineRegistry?.(),e,i=>{ke(i,"pause")});let n=Math.max(0,Nt(e,"time",0));t.onDeterministicSeek(n),t.onDeterministicPause(),t.setIsPlaying(!1),t.onSyncMedia(n,!1),t.onRenderFrameSeek(n),t.onStatePost(!0)},seek:(e,n)=>{let i=t.getTimeline();if(!i)return;let r=Math.max(0,Number(e)||0),o=t.getIsPlaying(),s=za(t.getTimelineRegistry?.(),i,r,t.getCanonicalFps());t.onDeterministicSeek(s),n?.keepPlaying&&o?(typeof i.timeScale=="function"&&i.timeScale(t.getPlaybackRate()),ke(i,"play"),_t(t.getTimelineRegistry?.(),i,l=>{typeof l.timeScale=="function"&&l.timeScale(t.getPlaybackRate()),ke(l,"play")}),t.onDeterministicPlay(),t.onShowNativeVideos(),t.onSyncMedia(s,!0)):(t.setIsPlaying(!1),t.onSyncMedia(s,!1)),t.onRenderFrameSeek(s),t.onStatePost(!0)},renderSeek:e=>{let n=t.getTimeline(),i=t.getCanonicalFps(),r=n?(ja(t.getTimelineRegistry?.(),n),Tr(n,e,i)):lt(Math.max(0,Number(e)||0),i);t.onDeterministicSeek(r),t.setIsPlaying(!1),t.onSyncMedia(r,!1),t.onRenderFrameSeek(r),t.onStatePost(!0)},getTime:()=>Nt(t.getTimeline(),"time",0),getDuration:()=>Nt(t.getTimeline(),"duration",0),isPlaying:()=>t.getIsPlaying(),setPlaybackRate:e=>t.setPlaybackRate(e),getPlaybackRate:()=>t.getPlaybackRate()}}function vr(){return{capturedTimeline:null,isPlaying:!1,currentTime:0,deterministicAdapters:[],canonicalFps:30,bridgeMuted:!1,bridgeVolume:1,mediaOutputMuted:!1,nativeMediaSyncDisabled:!1,webAudioMediaDisabled:!1,mediaAutoplayBlockedPosted:!1,mediaForceSyncNextTick:!1,playbackRate:1,bridgeLastPostedFrame:-1,bridgeLastPostedAt:0,bridgeLastPostedPlaying:!1,bridgeLastPostedMuted:!1,bridgeMaxPostIntervalMs:80,controlBridgeHandler:null,beforeUnloadHandler:null,injectedCompStyles:[],injectedCompScripts:[],cachedTimedMediaEls:[],cachedMediaClips:[],cachedVideoClips:[],cachedMediaTimelineDurationSeconds:0,tornDown:!1,transportClock:null,transportRafId:null}}var qa=new Set(["SCRIPT","STYLE","LINK","META","TEMPLATE","NOSCRIPT"]);function Yn(t){return t.id||t.getAttribute("data-hf-id")||null}function Jn(t){if(t==null)return null;let e=Number(t);return Number.isFinite(e)?e:null}function $a(t,e){let n=t.getAttribute("data-composition-id");if(!n)return null;let i=Number(e[n]?.duration?.());return Number.isFinite(i)&&i>0?i:null}function Ka(t){if(!(t instanceof HTMLMediaElement)||!Number.isFinite(t.duration))return null;let e=Jn(t.getAttribute("data-playback-start"))??Jn(t.getAttribute("data-media-start"))??0;return t.duration>e?t.duration-e:null}function Ja(t,e,n,i){let r=Jn(t.getAttribute("data-duration"));return r!=null&&r>0?r:$a(t,e)??Ka(t)??Math.max(0,n-i)}function Ya(t){for(let[e,n]of t){let i=e.parentElement;for(;i;){let r=t.get(i);if(r){n.parentId=r.id,r.children.push(n);break}i=i.parentElement}}}function Rr(t){let{startResolver:e,timelineRegistry:n,rootDuration:i}=t,r=new Map,o=document.querySelector("[data-composition-id]"),s=0;for(let l of document.querySelectorAll("[data-start]")){if(l===o||qa.has(l.tagName))continue;let a=e.resolveStartForElement(l,0);if(Ja(l,n,i,a)<=0)continue;let c={id:Yn(l)??`__clip-${s++}`,element:l,parentId:null,children:[]};r.set(l,c)}return Ya(r),{roots:Array.from(r.values()).filter(l=>l.parentId===null)}}var Xa="data-hf-authored-duration",Qa="data-hf-authored-end";function nt(t){if(t==null||t==="")return null;let e=Number(t);return Number.isFinite(e)?e:null}function Za(t){return nt(t.getAttribute("data-duration"))}function el(t){return nt(t.getAttribute("data-end"))}function tl(t){return nt(t.getAttribute(Xa))}function nl(t){return nt(t.getAttribute(Qa))}function il(t){let e=(t??"").trim();if(!e)return null;let n=nt(e);if(n!=null)return{kind:"absolute",value:n};let i=e.match(/^([A-Za-z0-9_.:-]+)(?:\\s*([+-])\\s*([0-9]*\\.?[0-9]+))?$/);if(!i)return null;let r=(i[1]??"").trim();if(!r)return null;let o=i[2]??"+",s=i[3]??"0",l=Number.parseFloat(s),a=Number.isFinite(l)?Math.max(0,l):0,c=o==="-"?-a:a;return{kind:"reference",refId:r,offset:c}}function ze(t){let e=t.timelineRegistry??{},n=t.includeAuthoredTimingAttrs??!1,i=new WeakMap,r=new WeakMap,o=new Set,s=u=>{let m=document.getElementById(u);return m||(document.querySelector(`[data-composition-id="${CSS.escape(u)}"]`)??null)},l=u=>{let m=r.get(u);if(m!==void 0)return m;let f=null,x=Za(u)??(n?tl(u):null);if(x!=null&&x>0&&(f=x),f==null||f<=0){let E=el(u)??(n?nl(u):null);if(E!=null){let g=c(u,0),S=E-g;Number.isFinite(S)&&S>0&&(f=S)}}if((f==null||f<=0)&&u instanceof HTMLMediaElement){let E=nt(u.getAttribute("data-playback-start"))??nt(u.getAttribute("data-media-start"))??0;Number.isFinite(u.duration)&&u.duration>E&&(f=(u.duration-E)/Mt(u))}if(f==null||f<=0){let E=u.getAttribute("data-composition-id");if(E){let g=e[E]??null;if(g&&typeof g.duration=="function")try{let S=Number(g.duration());Number.isFinite(S)&&S>0&&(f=S)}catch(S){L("runtime.startResolver.site1",S)}}}return f!=null&&Number.isFinite(f)&&f>0?(r.set(u,f),f):(r.set(u,null),null)},a=(u,m)=>{if(u.hasAttribute("data-composition-id")){let x=u.parentElement?.closest("[data-composition-id]");return x?c(x,m):0}let f=u.closest("[data-composition-id]");return f?c(f,m):0},c=(u,m)=>{let f=i.get(u);if(f!==void 0)return f??m;if(o.has(u))return m;o.add(u);try{let x=il(u.getAttribute("data-start"));if(!x){if(u.hasAttribute("data-composition-id")){let v=u.parentElement;if(v&&(v.hasAttribute("data-composition-src")||v.hasAttribute("data-composition-id"))){let R=c(v,m);return i.set(u,R),R}}return i.set(u,m),m}if(x.kind==="absolute"){let v=Math.max(0,x.value),R=Math.max(0,a(u,m)+v);return i.set(u,R),R}let E=s(x.refId);if(!E)return i.set(u,m),m;let g=c(E,0),S=l(E);if(S==null||S<=0){let v=Math.max(0,g+x.offset);return i.set(u,v),v}let N=Math.max(0,g+S+x.offset);return i.set(u,N),N}finally{o.delete(u)}};return{resolveStartForElement:(u,m=0)=>c(u,Math.max(0,m)),resolveDurationForElement:u=>l(u)}}function kr(t){let e=t.trim().toLowerCase();return!(!e||e==="main"||e.includes("caption")||e.includes("ambient"))}var rl="data-hf-authored-duration",ol="data-hf-authored-end";function Fe(t){if(t==null||t==="")return null;let e=Number(t);return Number.isFinite(e)?e:null}function Xn(t){return Fe(t.getAttribute("data-duration"))??Fe(t.getAttribute(rl))}function Dr(t){return Fe(t.getAttribute("data-end"))??Fe(t.getAttribute(ol))}function Qn(...t){let e=t.filter(n=>Number.isFinite(n??null));return e.length===0?null:Math.max(...e)}var Ir={composition:0,video:1,image:2,element:3,audio:4};function sl(t){if(t.length===0)return;let e=new Map;for(let s of t){let l=e.get(s.track)??new Set;l.add(s.kind),e.set(s.track,l)}if(!Array.from(e.values()).some(s=>s.size>1))return;let i=0,r=new Map,o=[...e.keys()].sort((s,l)=>s-l);for(let s of o){let l=e.get(s);if(l.size===1)r.set(`${s}:${[...l][0]}`,i++);else{let a=[...l].sort((c,u)=>(Ir[c]??99)-(Ir[u]??99));for(let c of a)r.set(`${s}:${c}`,i++)}}for(let s of t){let l=`${s.track}:${s.kind}`,a=r.get(l);a!=null&&(s.track=a)}}function Lt(t){let e=String(t??"").trim();if(!e)return null;let n=e.toLowerCase();if(n.startsWith("data:")||n.startsWith("javascript:"))return null;try{return new URL(e,document.baseURI).toString()}catch{return e}}function Pr(t){let e=t.getAttribute("src")??t.getAttribute("data-src");if(e)return Lt(e);let n=t.getAttribute("data-composition-src");if(n)return Lt(n);let i=t.querySelector("img[src], video[src], audio[src], source[src]");return i?Lt(i.getAttribute("src")):null}function al(t){let e=t.className;return typeof e!="string"?null:e.split(/\\s+/).map(n=>n.trim()).find(n=>n&&n!=="clip"&&!n.startsWith("__hf-"))??null}function ll(t){if(!t)return null;try{return new URL(t,document.baseURI).pathname.split("/").filter(Boolean).at(-1)??null}catch{return t.split(/[\\\\/]/).filter(Boolean).at(-1)??null}}function ul(t){let e=t.textContent?.replace(/\\s+/g," ").trim();return e?e.length>32?`${e.slice(0,31)}...`:e:null}function Tt(t){let e=t.replace(/\\.[^.]+$/i,"").replace(/[-_]+/g," ").replace(/\\s+/g," ").trim();return e?e.replace(/\\b\\w/g,n=>n.toUpperCase()):t}function cl(t,e,n){let i=t.getAttribute("data-timeline-label")??t.getAttribute("data-label")??t.getAttribute("aria-label")??null;if(i?.trim())return i.trim();let r=t.getAttribute("data-composition-id");if(r)return Tt(r);let o=t.id;if(o)return Tt(o);let s=al(t);if(s)return Tt(s);let l=ll(Pr(t));if(l)return Tt(l);let a=ul(t);return a||`${Tt(e)} ${n+1}`}function Or(t){let n=window.__timelines??{},i=ze({timelineRegistry:n,includeAuthoredTimingAttrs:!0}),r=B=>{if(!B)return null;let D=n[B]??null;if(!D||typeof D.duration!="function")return null;try{let O=Number(D.duration());return Number.isFinite(O)&&O>0?O:null}catch{return null}},o=B=>{let D=Fe(B.getAttribute("data-duration"));if(D!=null&&D>0)return D;let O=Fe(B.getAttribute("data-playback-start"))??Fe(B.getAttribute("data-media-start"))??0;return Number.isFinite(B.duration)&&B.duration>O?Math.max(0,(B.duration-O)/Mt(B)):null},s=()=>{let B=Array.from(document.querySelectorAll("video[data-start], audio[data-start]"));if(B.length===0)return null;let D=0;for(let O of B){let ae=O.hasAttribute("data-hf-auto-start")?i.resolveStartForElement(O,0):Math.max(0,Number(O.getAttribute("data-start")??0)||0);if(!Number.isFinite(ae))continue;let re=o(O);re==null||re<=0||(D=Math.max(D,Math.max(0,ae)+re))}return D>0?D:null},l=(B,D)=>{let O=[],ae=null,re=null,z=null,q=B.parentElement;for(;q;){let J=q.getAttribute("data-composition-id");J&&(O.push(J),!z&&q!==D&&(z=J),ae==null&&(ae=i.resolveStartForElement(q,0)),re==null&&(re=Fe(q.getAttribute("data-duration"))??r(J)??null)),q=q.parentElement}return{parentCompositionId:z,compositionAncestors:O.reverse(),inheritedStart:ae,inheritedDuration:re}},a=document.querySelector("[data-composition-id]"),c=Array.from(document.querySelectorAll("[data-composition-id]")),u=a?.getAttribute("data-composition-id")??null,m=a?i.resolveStartForElement(a,0):0,f=s(),x=f!=null?Math.max(0,f-Math.max(0,m)):null,E=r(u),g=Xn(a??document.body),S=Qn(...c.filter(B=>B!==a).map(B=>{let D=i.resolveStartForElement(B,0),O=i.resolveDurationForElement(B)??r(B.getAttribute("data-composition-id"))??null;return!Number.isFinite(D)||O==null||O<=0?null:Math.max(0,D)+O})),N=S!=null?Math.max(0,S-Math.max(0,m)):null,v=typeof E=="number"&&Number.isFinite(E)&&E>0?E:null,R=typeof g=="number"&&Number.isFinite(g)&&g>0?g:null,Y=typeof x=="number"&&Number.isFinite(x)&&x>0?x:null,W=typeof N=="number"&&Number.isFinite(N)&&N>0?N:null,M=Qn(Y,W),y=v!=null&&M!=null&&v>M+1,F=R??(y?M:Qn(v,Y,W))??null,T=(F!=null?m+F:null)??(typeof f=="number"&&Number.isFinite(f)&&f>0?f:null),G=(B,D)=>!Number.isFinite(D)||D<=0?0:T==null||!Number.isFinite(T)?D:!Number.isFinite(B)||B>=T?0:Math.max(0,Math.min(D,T-B)),j=[],ne=[],P=Array.from(document.querySelectorAll("[data-start], [data-track-index], [data-composition-id], video, audio, img")),se=0;for(let B=0;B<P.length;B+=1){let D=P[B];if(D===a||["SCRIPT","STYLE","LINK","META","TEMPLATE","NOSCRIPT"].includes(D.tagName))continue;let O=l(D,a),ae=i.resolveStartForElement(D,O.inheritedStart??0),re=D.getAttribute("data-composition-id"),z=Xn(D);if((z==null||z<=0)&&re&&re!==u&&(z=r(re)),(z==null||z<=0)&&D instanceof HTMLMediaElement){let Ne=Fe(D.getAttribute("data-playback-start"))??Fe(D.getAttribute("data-media-start"))??0;Number.isFinite(D.duration)&&D.duration>0&&(z=Math.max(0,D.duration-Ne))}if(z==null||z<=0){let Ne=O.inheritedDuration;if(Ne!=null&&Ne>0){let Ce=(O.inheritedStart??0)+Ne;z=Math.max(0,Ce-ae)}}if(z==null||z<=0||(z=G(ae,z),z<=0))continue;let q=ae+z;se=Math.max(se,q);let J=D.tagName.toLowerCase(),Pe=re&&re!==u?"composition":J==="video"?"video":J==="audio"?"audio":J==="img"?"image":"element";j.push({id:Yn(D)??re??null,label:cl(D,Pe,j.length),start:ae,duration:z,track:Number.parseInt(D.getAttribute("data-track-index")??D.getAttribute("data-track")??String(B),10)||0,kind:Pe,tagName:J,compositionId:D.getAttribute("data-composition-id"),compositionAncestors:O.compositionAncestors,parentCompositionId:O.parentCompositionId,nodePath:null,compositionSrc:Lt(D.getAttribute("data-composition-src")),assetUrl:Pr(D),timelineRole:D.getAttribute("data-timeline-role"),timelineLabel:D.getAttribute("data-timeline-label"),timelineGroup:D.getAttribute("data-timeline-group"),timelinePriority:Fe(D.getAttribute("data-timeline-priority"))})}let Se=new Set(j.map(B=>B.id)),H=a?.getAttribute("data-composition-id")??null,U=H?n[H]??null:null;if(U&&a){let B=U;if(typeof B.getChildren=="function")try{let D=B.getChildren(!0,!0,!1)??[],O=new Map;for(let z of a.children){let q=z;if(!q.id)continue;let J=q.tagName.toLowerCase();J==="script"||J==="style"||J==="link"||O.set(q,{id:q.id,start:1/0,end:-1/0})}let ae=z=>{let q=z;for(;q;){if(O.has(q))return q;if(q===a)return null;q=q.parentElement}return null};for(let z of D){if(typeof z.targets!="function"||typeof z.startTime!="function"||typeof z.duration!="function")continue;let q=z.startTime(),J=z.parent;for(;J&&J!==U&&typeof J.startTime=="function";)q+=J.startTime(),J=J.parent;let Pe=q+z.duration();if(!(!Number.isFinite(q)||!Number.isFinite(Pe)))for(let Ne of z.targets()){if(!(Ne instanceof Element))continue;let yt=ae(Ne);if(!yt)continue;let Ce=O.get(yt);Ce&&(Ce.start=Math.min(Ce.start,q),Ce.end=Math.max(Ce.end,Pe))}}let re=j.length>0?Math.max(...j.map(z=>z.track))+1:0;for(let[z,q]of O){if(q.start===1/0||q.end===-1/0)continue;let J=z;if(Se.has(J.id))continue;let Pe=Math.max(0,q.end-q.start);if(Pe<=0)continue;let Ne=G(q.start,Pe);Ne<=0||(se=Math.max(se,q.start+Ne),j.push({id:J.id,label:J.getAttribute("data-timeline-label")??J.getAttribute("data-label")??J.getAttribute("aria-label")??J.id,start:q.start,duration:Ne,track:Number.parseInt(J.getAttribute("data-track-index")??J.getAttribute("data-track")??"",10)||re,kind:"element",tagName:J.tagName.toLowerCase(),compositionId:J.getAttribute("data-composition-id"),compositionAncestors:H?[H]:[],parentCompositionId:H,nodePath:null,compositionSrc:null,assetUrl:null,timelineRole:J.getAttribute("data-timeline-role"),timelineLabel:J.getAttribute("data-timeline-label"),timelineGroup:J.getAttribute("data-timeline-group"),timelinePriority:Fe(J.getAttribute("data-timeline-priority"))}),Se.add(J.id))}}catch(D){L("runtime.timeline.site1",D)}}if(a&&F!=null&&F>0){let B=j.length>0?Math.max(...j.map(D=>D.track))+1:0;for(let D of a.children){let O=D;if(!O.id||Se.has(O.id))continue;let ae=O.getAttribute("data-timeline-role");if(ae!=="overlay"&&ae!=="persistent-overlay")continue;let re=O.tagName.toLowerCase();if(re==="script"||re==="style"||re==="link"||re==="meta"||window.getComputedStyle(O).display==="none")continue;let q=G(0,F);q<=0||(se=Math.max(se,q),j.push({id:O.id,label:O.getAttribute("data-timeline-label")??O.getAttribute("data-label")??O.getAttribute("aria-label")??O.id,start:0,duration:q,track:Number.parseInt(O.getAttribute("data-track-index")??O.getAttribute("data-track")??"",10)||B,kind:"element",tagName:re,compositionId:O.getAttribute("data-composition-id"),compositionAncestors:H?[H]:[],parentCompositionId:H,nodePath:null,compositionSrc:null,assetUrl:null,timelineRole:ae,timelineLabel:O.getAttribute("data-timeline-label"),timelineGroup:O.getAttribute("data-timeline-group"),timelinePriority:Fe(O.getAttribute("data-timeline-priority"))}),Se.add(O.id))}}sl(j);for(let B of c){if(B===a)continue;let D=B.getAttribute("data-composition-id");if(!D||!kr(D))continue;let O=i.resolveStartForElement(B,0),ae=Xn(B);if((ae==null||ae<=0)&&Dr(B)!=null){let J=Dr(B);ae=Math.max(0,J-O)}let re=r(D),z=ae&&ae>0?ae:re;if(z==null||z<=0)continue;let q=G(O,z);q<=0||ne.push({id:D,label:B.getAttribute("data-label")??D,start:O,duration:q,thumbnailUrl:Lt(B.getAttribute("data-thumbnail-url")),avatarName:null})}let V=Math.max(1,se||1,F??0);return{source:"hf-preview",type:"timeline",durationInFrames:y&&R==null?Number.POSITIVE_INFINITY:Math.max(1,Math.ceil(V*Math.max(1,t.canonicalFps))),clips:j,scenes:ne,compositionWidth:Fe(a?.getAttribute("data-width"))??1920,compositionHeight:Fe(a?.getAttribute("data-height"))??1080}}var ce=Ra(us(),1),cs=ce.default,Zm=ce.default.stringify,ep=ce.default.fromJSON,tp=ce.default.plugin,np=ce.default.parse,ip=ce.default.list,rp=ce.default.document,op=ce.default.comment,sp=ce.default.atRule,ap=ce.default.rule,lp=ce.default.decl,up=ce.default.root,cp=ce.default.CssSyntaxError,dp=ce.default.Declaration,fp=ce.default.Container,mp=ce.default.Processor,pp=ce.default.Document,hp=ce.default.Comment,xp=ce.default.Warning,gp=ce.default.AtRule,yp=ce.default.Result,bp=ce.default.Input,Sp=ce.default.Rule,Ap=ce.default.Root,Ep=ce.default.Node;var Ci="data-hf-authored-id";function Fi(t){return t.replace(/[.*+?^${}()|[\\]\\\\]/g,"\\\\$&")}function Mi(t){return t.replace(/\\\\/g,"\\\\\\\\").replace(/"/g,\'\\\\"\')}function Ru(t){return t&&t.replace(/[^a-zA-Z0-9_-]/g,n=>`\\\\${n}`).replace(/^-?\\d/,n=>`\\\\${n}`)}function ds(t){let e=t.trim();return e?Array.from(new Set([e,Ru(e)])).filter(Boolean):[]}function ku(t){return!!t&&/[\\w-]/.test(t)}function Du(t,e,n){let i=ds(e).sort((l,a)=>a.length-l.length);if(i.length===0)return t;let r="",o=0,s=null;for(let l=0;l<t.length;l+=1){let a=t[l],c=l>0?t[l-1]:"";if(s){r+=a,a===s&&c!=="\\\\"&&(s=null);continue}if(a===\'"\'||a==="\'"){s=a,r+=a;continue}if(a==="["){o+=1,r+=a;continue}if(a==="]"){o=Math.max(0,o-1),r+=a;continue}if(a==="#"&&o===0){let u=i.find(m=>t.startsWith(m,l+1));if(u){let m=t[l+1+u.length];if(!ku(m)){r+=n,l+=u.length;continue}}}r+=a}return r}function Iu(t,e){let n=e?.trim();return n?Du(t,n,`[${Ci}="${Mi(n)}"]`):t}function Pu(t,e,n,i,r){let o=Iu(t,i),s=Ou(o,e,n),l=s.trim();if(!l||/^(html|body|:root|\\*)$/i.test(l))return t;let a=new RegExp(`\\\\[\\\\s*data-composition-id\\\\s*=\\\\s*(["\'])${Fi(n)}\\\\1\\\\s*\\\\]`,"g");if(a.test(l))return s.replace(a,e);let c=s.match(/^\\s*/)?.[0]??"",u=s.match(/\\s*$/)?.[0]??"";if(r){let m=i?`[${Ci}="${Mi(i)}"]`:null;if(m&&l.startsWith(m)){let f=l.slice(m.length);return`${c}${e}${m}${f}${u}`}}return`${c}${e} ${l}${u}`}function Ou(t,e,n){let i=Fi(n),r=String.raw`\\[\\s*data-composition-id\\s*=\\s*(?:"${i}"|\'${i}\')\\s*\\]`,o=String.raw`\\s*\\[\\s*data-(?:start|duration)\\s*=\\s*(?:"[^"]*"|\'[^\']*\')\\s*\\]`;return t.replace(new RegExp(`${r}(?:${o})+`,"g"),e).replace(new RegExp(`(?:${o})+${r}`,"g"),e)}var Bu=new Set(["keyframes","-webkit-keyframes","font-face"]);function Hu(t){return t?.type==="atrule"}function Wu(t){let e=t.parent;for(;e;){if(Hu(e)&&Bu.has(e.name.toLowerCase()))return!0;e=e.parent}return!1}function Ni(t,e,n,i,r){let o=e.trim();if(!t||!o)return t;let s=n||`[data-composition-id="${Mi(o)}"]`,l=cs.parse(t);return l.walkRules(a=>{Wu(a)||(a.selectors=a.selectors.map(c=>Pu(c,s,o,i,r?.compoundAuthoredRoot)))}),l.toResult({map:!1}).css}function fs(t,e,n="[HyperFrames] composition script error:",i,r=e,o){let s=JSON.stringify(e),l=JSON.stringify(r),a=JSON.stringify(n),c=Fi(e),u=JSON.stringify(o?.trim()||null),m=JSON.stringify(i??null),f=JSON.stringify(String.raw`\\[\\s*data-composition-id\\s*=\\s*(?:"${c}"|\'${c}\')\\s*\\]`),x=JSON.stringify(String.raw`\\s*\\[\\s*data-(?:start|duration)\\s*=\\s*(?:"[^"]*"|\'[^\']*\')\\s*\\]`),E=JSON.stringify(ds(o?.trim()||""));return`(function(){\n var __hfCompId = ${s};\n var __hfTimelineCompId = ${l};\n var __hfErrorLabel = ${a};\n var __hfAuthoredRootId = ${u};\n var __hfAuthoredRootAttr = ${JSON.stringify(Ci)};\n var __hfEscapeAttr = function(value) {\n return (value + "").replace(/\\\\\\\\/g, "\\\\\\\\\\\\\\\\").replace(/"/g, "\\\\\\\\\\\\"");\n };\n var __hfRootSelector = ${m} || (__hfCompId\n ? \'[data-composition-id="\' + __hfEscapeAttr(__hfCompId) + \'"]\'\n : "");\n var __hfRoot = null;\n var __hfRootSelectorPattern = ${f};\n var __hfTimingSelectorPattern = ${x};\n var __hfAuthoredRootIdForms = ${E};\n var __hfAuthoredRootSelector = __hfAuthoredRootId\n ? "[" + __hfAuthoredRootAttr + \'="\' + __hfEscapeAttr(__hfAuthoredRootId) + \'"]\'\n : "";\n var __hfIsSelectorNameChar = function(char) {\n return !!char && /[\\\\w-]/.test(char);\n };\n var __hfReplaceAuthoredRootIdSelectors = function(selector) {\n if (!__hfAuthoredRootSelector || !__hfAuthoredRootIdForms.length || typeof selector !== "string") {\n return selector;\n }\n var result = "";\n var bracketDepth = 0;\n var quote = null;\n for (var index = 0; index < selector.length; index += 1) {\n var char = selector[index];\n var previousChar = index > 0 ? selector[index - 1] : "";\n if (quote) {\n result += char;\n if (char === quote && previousChar !== "\\\\\\\\") {\n quote = null;\n }\n continue;\n }\n if (char === \'"\' || char === "\'") {\n quote = char;\n result += char;\n continue;\n }\n if (char === "[") {\n bracketDepth += 1;\n result += char;\n continue;\n }\n if (char === "]") {\n bracketDepth = Math.max(0, bracketDepth - 1);\n result += char;\n continue;\n }\n if (char === "#" && bracketDepth === 0) {\n var matchedForm = null;\n for (var formIndex = 0; formIndex < __hfAuthoredRootIdForms.length; formIndex += 1) {\n var form = __hfAuthoredRootIdForms[formIndex];\n if (selector.slice(index + 1, index + 1 + form.length) === form) {\n matchedForm = form;\n break;\n }\n }\n if (matchedForm) {\n var nextChar = selector[index + 1 + matchedForm.length];\n if (!__hfIsSelectorNameChar(nextChar)) {\n result += __hfAuthoredRootSelector;\n index += matchedForm.length;\n continue;\n }\n }\n }\n result += char;\n }\n return result;\n };\n var __hfNormalizeSelector = function(selector) {\n if (!__hfCompId || typeof selector !== "string") return selector;\n var normalized = selector\n .replace(new RegExp(__hfRootSelectorPattern + \'(?:\' + __hfTimingSelectorPattern + \')+\', \'g\'), __hfRootSelector)\n .replace(new RegExp(\'(?:\' + __hfTimingSelectorPattern + \')+\' + __hfRootSelectorPattern, \'g\'), __hfRootSelector);\n if (__hfAuthoredRootSelector) {\n normalized = __hfReplaceAuthoredRootIdSelectors(normalized);\n }\n return normalized;\n };\n var __hfFindRoot = function() {\n if (!__hfRoot && __hfRootSelector) {\n __hfRoot = window.document.querySelector(__hfRootSelector);\n }\n return __hfRoot;\n };\n var __hfContains = function(node) {\n var root = __hfFindRoot();\n return !root || node === root || root.contains(node);\n };\n var __hfQueryAll = function(selector) {\n var root = __hfFindRoot();\n if (!root || typeof selector !== "string") {\n return window.document.querySelectorAll(selector);\n }\n return Array.prototype.filter.call(window.document.querySelectorAll(__hfNormalizeSelector(selector)), function(node) {\n return __hfContains(node);\n });\n };\n var __hfQueryOne = function(selector) {\n var matches = __hfQueryAll(selector);\n return matches[0] || null;\n };\n var __hfGetElementById = function(id) {\n var found = window.document.getElementById(id);\n if (found && __hfContains(found)) return found;\n var root = __hfFindRoot();\n if (!root) return found || null;\n var idValue = id + "";\n if (__hfAuthoredRootId && __hfAuthoredRootId === idValue && root.getAttribute && root.getAttribute(__hfAuthoredRootAttr) === idValue) {\n return root;\n }\n if (root.id === idValue) return root;\n if (typeof root.querySelector !== "function") return null;\n try {\n var authoredRootMatch = root.querySelector(\'[\' + __hfAuthoredRootAttr + \'="\' + __hfEscapeAttr(idValue) + \'"]\');\n if (authoredRootMatch) return authoredRootMatch;\n } catch {}\n if (typeof CSS !== "undefined" && CSS && typeof CSS.escape === "function") {\n try {\n return root.querySelector("#" + CSS.escape(idValue)) || null;\n } catch {}\n }\n try {\n return root.querySelector(\'[id="\' + __hfEscapeAttr(idValue) + \'"]\') || null;\n } catch {}\n return null;\n };\n var __hfScopedDocument = typeof Proxy === "function"\n ? new Proxy(window.document, {\n get: function(target, prop, receiver) {\n if (prop === "querySelector") return __hfQueryOne;\n if (prop === "querySelectorAll") return __hfQueryAll;\n if (prop === "getElementById") return __hfGetElementById;\n var value = Reflect.get(target, prop, target);\n return typeof value === "function" ? value.bind(target) : value;\n },\n })\n : window.document;\n var __hfTimelineRegistryProxy = null;\n var __hfGetTimelineRegistry = function() {\n window.__timelines = window.__timelines || {};\n if (!__hfCompId || __hfCompId === __hfTimelineCompId || typeof Proxy !== "function") {\n return window.__timelines;\n }\n if (!__hfTimelineRegistryProxy) {\n __hfTimelineRegistryProxy = new Proxy(window.__timelines, {\n get: function(target, prop, receiver) {\n return Reflect.get(target, prop === __hfCompId ? __hfTimelineCompId : prop, target);\n },\n set: function(target, prop, value, receiver) {\n return Reflect.set(target, prop === __hfCompId ? __hfTimelineCompId : prop, value, target);\n },\n });\n }\n return __hfTimelineRegistryProxy;\n };\n var __hfScopedWindow = typeof Proxy === "function"\n ? new Proxy(window, {\n get: function(target, prop, receiver) {\n if (prop === "__timelines") return __hfGetTimelineRegistry();\n return Reflect.get(target, prop, target);\n },\n set: function(target, prop, value, receiver) {\n if (prop === "__timelines") {\n target.__timelines = value || {};\n __hfTimelineRegistryProxy = null;\n return true;\n }\n return Reflect.set(target, prop, value, target);\n },\n })\n : window;\n var __hfResolveGsapTarget = function(target) {\n if (typeof target !== "string") return target;\n return __hfQueryAll(target);\n };\n var __hfScopeTimeline = function(timeline) {\n if (!timeline || timeline.__hfScopedCompositionRoot === __hfFindRoot()) return timeline;\n ["to", "from", "fromTo", "set"].forEach(function(method) {\n var original = timeline[method];\n if (typeof original !== "function") return;\n timeline[method] = function(target) {\n var args = Array.prototype.slice.call(arguments);\n args[0] = __hfResolveGsapTarget(target);\n return original.apply(timeline, args);\n };\n });\n try {\n Object.defineProperty(timeline, "__hfScopedCompositionRoot", {\n value: __hfFindRoot(),\n configurable: true,\n });\n } catch {\n // Best-effort: timelines coming from user code may have a frozen target\n // or a non-extensible defineProperty path. Swallow \\u2014 the scoped root\n // is an enrichment, not a correctness invariant for playback.\n }\n return timeline;\n };\n var __hfBaseGsap = typeof gsap === "undefined" ? window.gsap : gsap;\n var __hfScopedGsap = !__hfBaseGsap || typeof Proxy !== "function"\n ? __hfBaseGsap\n : new Proxy(__hfBaseGsap, {\n get: function(target, prop, receiver) {\n if (prop === "timeline") {\n return function() {\n return __hfScopeTimeline(target.timeline.apply(target, arguments));\n };\n }\n if (prop === "to" || prop === "from" || prop === "fromTo" || prop === "set") {\n return function(firstArg) {\n var args = Array.prototype.slice.call(arguments);\n args[0] = __hfResolveGsapTarget(firstArg);\n return target[prop].apply(target, args);\n };\n }\n if (prop === "utils" && target.utils && typeof Proxy === "function") {\n return new Proxy(target.utils, {\n get: function(utilsTarget, utilsProp, utilsReceiver) {\n if (utilsProp === "toArray") {\n return function(firstArg) {\n var args = Array.prototype.slice.call(arguments);\n args[0] = __hfResolveGsapTarget(firstArg);\n return utilsTarget.toArray.apply(utilsTarget, args);\n };\n }\n if (utilsProp === "selector") {\n return function(base) {\n var baseEl = typeof base === "string" ? __hfQueryOne(base) : base;\n var root = baseEl || __hfFindRoot();\n return function(selector) {\n if (!root || typeof selector !== "string") return [];\n return Array.prototype.filter.call(\n window.document.querySelectorAll(__hfNormalizeSelector(selector)),\n function(node) {\n return node === root || (typeof root.contains === "function" && root.contains(node));\n },\n );\n };\n };\n }\n var value = Reflect.get(utilsTarget, utilsProp, utilsTarget);\n return typeof value === "function" ? value.bind(utilsTarget) : value;\n },\n });\n }\n var value = Reflect.get(target, prop, target);\n return typeof value === "function" ? value.bind(target) : value;\n },\n });\n var __hfBaseHyperframes = window.__hyperframes;\n var __hfScopedHyperframes = !__hfBaseHyperframes\n ? __hfBaseHyperframes\n : Object.assign({}, __hfBaseHyperframes, {\n getVariables: function() {\n var byComp = window.__hfVariablesByComp;\n var scoped = byComp && __hfTimelineCompId ? byComp[__hfTimelineCompId] : null;\n return scoped ? Object.assign({}, scoped) : {};\n },\n });\n var __hfRun = function() {\n try {\n (function(document, gsap, window, __hyperframes) {\n${t.replace(/<\\/(script)/gi,"<\\\\/$1")}\n }).call(window, __hfScopedDocument, __hfScopedGsap, __hfScopedWindow, __hfScopedHyperframes);\n } catch (_err) {\n console.error(__hfErrorLabel, __hfCompId, _err);\n }\n };\n __hfFindRoot();\n __hfRun();\n})();`}function ms(){if(typeof document>"u")return{};let t=_i(document.documentElement),e=Gu();return{...t,...e}}function _i(t){if(!t)return{};let e=t.getAttribute("data-composition-variables");if(!e)return{};let n;try{n=JSON.parse(e)}catch{return{}}if(!Array.isArray(n))return{};let i={};for(let r of n){if(!r||typeof r!="object")continue;let o=r;typeof o.id!="string"||!("default"in o)||(i[o.id]=o.default)}return i}function Gu(){if(typeof window>"u")return{};let t=window.__hfVariables;return!t||typeof t!="object"||Array.isArray(t)?{}:t}var Uu=8e3,Vu=/^(?![a-zA-Z][a-zA-Z\\d+\\-.]*:)(?!\\/\\/)(?!\\/)(?!\\.\\.?\\/).+/,zu=/\\burl\\(\\s*(["\']?)([^)"\']+)\\1\\s*\\)/g,ju=["src","href"];function qu(t){return!t||t.startsWith("http://")||t.startsWith("https://")||t.startsWith("//")||t.startsWith("data:")||t.startsWith("#")||t.startsWith("/")}function hs(t,e){if(!e)return t;let n=t.trim();if(qu(n)||!n.startsWith("../")&&n!=="..")return t;try{return new URL(n,e).href}catch{return t}}function xs(t,e){return!e||!t?t:t.replace(zu,(n,i,r)=>{let o=hs(r||"",e);return o===r?n:`url(${i||""}${o}${i||""})`})}function $u(t,e){for(let n of Array.from(t.querySelectorAll("[src], [href]")))for(let i of ju){let r=n.getAttribute(i);if(r==null)continue;let o=hs(r,e);o!==r&&n.setAttribute(i,o)}}function Ku(t,e){for(let n of Array.from(t.querySelectorAll("[style]"))){let i=n.getAttribute("style");if(i==null)continue;let r=xs(i,e);r!==i&&n.setAttribute("style",r)}}function Ju(t,e){for(let n of Array.from(t.querySelectorAll("style"))){let i=n.textContent||"",r=xs(i,e);r!==i&&(n.textContent=r)}}function gs(t,e){if(e){$u(t,e),Ku(t,e),Ju(t,e);for(let n of Array.from(t.querySelectorAll("template")))gs(n.content,e)}}function Yu(t,e){return`${t}__hf${e}`}var Xu=t=>new Promise(e=>{let n=!1,i=Date.now(),r=null,o=s=>{n||(n=!0,r!=null&&window.clearTimeout(r),e({status:s,elapsedMs:Math.max(0,Date.now()-i)}))};t.addEventListener("load",()=>o("load"),{once:!0}),t.addEventListener("error",()=>o("error"),{once:!0}),r=window.setTimeout(()=>o("timeout"),Uu)});function Ti(t){for(;t.firstChild;)t.removeChild(t.firstChild);t.textContent=""}var Qu=["data-composition-id","data-composition-file","data-start","data-duration","data-end","data-track-index","data-track","data-composition-src","data-hf-authored-duration","data-hf-authored-end"];function Zu(t){let e=document.importNode(t,!0),n=e.getAttribute("id")?.trim();for(let o of Qu)e.removeAttribute(o);n&&(e.removeAttribute("id"),e.setAttribute("data-hf-authored-id",n)),e.setAttribute("data-hf-inner-root","true");let i=e.getAttribute("data-width"),r=e.getAttribute("data-height");return e.style.width=i?`${i}px`:"100%",e.style.height=r?`${r}px`:"100%",e}function ps(t,e){let n=t.trim();if(!n)return t;try{return Vu.test(n)?new URL(n,document.baseURI).toString():e?new URL(n,e).toString():new URL(n,document.baseURI).toString()}catch{return t}}function ec(t){let e=t.getAttribute("data-variable-values");if(!e)return{};let n;try{n=JSON.parse(e)}catch{return{}}return!n||typeof n!="object"||Array.isArray(n)?{}:n}function Cn(t){let e=(t.getAttribute("data-composition-id")||"").trim()||null;return{authoredCompositionId:(t.getAttribute("data-hf-original-composition-id")||e||"").trim()||null,runtimeCompositionId:e}}function tc(t){let e=new Map;for(let n of t){let i=Cn(n).authoredCompositionId||"";i&&e.set(i,(e.get(i)||0)+1)}return e}function ys(t){let e=Cn(t).authoredCompositionId;return e?!!document.querySelector(`template#${CSS.escape(e)}-template`):!1}function nc(t){return!!t.querySelector(\'[data-hf-inner-root="true"]\')}function ic(t){return t.hasAttribute("data-composition-src")?!0:ys(t)?t.children.length===0||t.hasAttribute("data-hf-original-composition-id")?!0:nc(t):!1}function vi(){return Array.from(document.querySelectorAll("[data-composition-src], [data-composition-id]")).filter(e=>e.hasAttribute("data-composition-src")?!0:ys(e))}function bs(){let t=window.__hfVariablesByComp;if(!t)return;let e=new Set(vi().map(n=>Cn(n).runtimeCompositionId).filter(n=>!!n));for(let n of Object.keys(t))e.has(n)||delete t[n]}function Ss(t,e=tc(t)){let n=new Map,i=new Map;for(let r of t){let{authoredCompositionId:o,runtimeCompositionId:s}=Cn(r),l=ic(r);if(!o){i.set(r,{authoredCompositionId:null,runtimeCompositionId:s});continue}let a=(e.get(o)||0)>1,c=s||o;if(l){let u=a?(n.get(o)||0)+1:0;a&&n.set(o,u),c=a?Yu(o,u):o,a?r.setAttribute("data-hf-original-composition-id",o):r.removeAttribute("data-hf-original-composition-id"),r.setAttribute("data-composition-id",c),s&&s!==c&&window.__hfVariablesByComp&&delete window.__hfVariablesByComp[s]}i.set(r,{authoredCompositionId:o,runtimeCompositionId:c})}return i}async function Li(t){let e=null;t.authoredCompositionId&&(e=Array.from(t.sourceNode.querySelectorAll("[data-composition-id]")).find(x=>x.getAttribute("data-composition-id")===t.authoredCompositionId)??null);let n=e??t.sourceNode,i=e?.getAttribute("data-composition-id")?.trim()||t.authoredCompositionId||null,r=t.runtimeCompositionId||i||null,o=e?.getAttribute("id")?.trim()||null,s=r?`[data-composition-id="${CSS.escape(r)}"]`:void 0;if(t.headLinks)for(let f of t.headLinks){let x=f.getAttribute("href")||"";x&&(document.head.querySelector(`link[href="${CSS.escape(x)}"]`)||document.head.appendChild(f.cloneNode(!0)))}if(t.headStyles)for(let f of t.headStyles){let x=f.cloneNode(!0);x instanceof HTMLStyleElement&&(i&&(x.textContent=Ni(x.textContent||"",i,s,o)),document.head.appendChild(x),t.injectedStyles.push(x))}let l=Array.from(n.querySelectorAll("style"));for(let f of l){let x=f.cloneNode(!0);x instanceof HTMLStyleElement&&(i&&(x.textContent=Ni(x.textContent||"",i,s,o)),document.head.appendChild(x),t.injectedStyles.push(x))}let a=[];if(t.headScripts)for(let f of t.headScripts){let x=f.getAttribute("type")?.trim()??"",E=f.getAttribute("src")?.trim()??"";if(E){let g=ps(E,t.compositionUrl);a.push({kind:"external",src:g,type:x})}else{let g=f.textContent?.trim()??"";g&&a.push({kind:"inline",content:g,type:x,scopeCompositionId:i})}}let c=Array.from(n.querySelectorAll("script")),u=[...a];for(let f of c){let x=f.getAttribute("type")?.trim()??"",E=f.getAttribute("src")?.trim()??"";if(E){let g=ps(E,t.compositionUrl);u.push({kind:"external",src:g,type:x})}else{let g=f.textContent?.trim()??"";g&&u.push({kind:"inline",content:g,type:x,scopeCompositionId:i})}f.parentNode?.removeChild(f)}let m=Array.from(n.querySelectorAll("style"));for(let f of m)f.parentNode?.removeChild(f);if(e){let f=e.getAttribute("data-width"),x=e.getAttribute("data-height"),E=t.parseDimensionPx(f),g=t.parseDimensionPx(x);f&&t.host.setAttribute("data-width",f),x&&t.host.setAttribute("data-height",x),E&&t.host instanceof HTMLElement&&(t.host.style.width=E),g&&t.host instanceof HTMLElement&&(t.host.style.height=g),e.hasAttribute("data-timeline-locked")&&t.host.setAttribute("data-timeline-locked",""),t.host.appendChild(Zu(e))}else t.hasTemplate?t.host.appendChild(document.importNode(n,!0)):t.host.innerHTML=t.fallbackBodyInnerHtml;if(r){let f={...t.declaredVariableDefaults??{},...ec(t.host)};Object.keys(f).length>0?(window.__hfVariablesByComp||(window.__hfVariablesByComp={}),window.__hfVariablesByComp[r]=f):window.__hfVariablesByComp&&delete window.__hfVariablesByComp[r]}for(let f of u){let x=document.createElement("script");if(f.type&&(x.type=f.type),x.async=!1,f.kind==="external"?x.src=f.src:f.type.toLowerCase()==="module"?x.textContent=f.content:f.scopeCompositionId?x.textContent=fs(f.content,f.scopeCompositionId,"[HyperFrames] composition script error:",s,r||f.scopeCompositionId,o):x.textContent=`(function(){${f.content}})();`,document.body.appendChild(x),t.injectedScripts.push(x),f.kind==="external"){let E=await Xu(x);E.status!=="load"&&t.onDiagnostic?.({code:"external_composition_script_load_issue",details:{hostCompositionId:t.authoredCompositionId,runtimeCompositionId:t.runtimeCompositionId,hostCompositionSrc:t.hostCompositionSrc,resolvedScriptSrc:f.src,loadStatus:E.status,elapsedMs:E.elapsedMs}})}}}async function As(t){let e=vi();if(bs(),e.length===0)return;let n=Ss(e),i=e.filter(r=>{if(r.hasAttribute("data-composition-src")||r.children.length>0)return!1;let o=n.get(r)?.authoredCompositionId;return o?!!document.querySelector(`template#${CSS.escape(o)}-template`):!1});if(i.length!==0)for(let r of i){let o=n.get(r),s=o?.authoredCompositionId;if(!s)continue;let l=document.querySelector(`template#${CSS.escape(s)}-template`);Ti(r),await Li({host:r,authoredCompositionId:s,runtimeCompositionId:o?.runtimeCompositionId||s,hostCompositionSrc:`template#${s}-template`,sourceNode:l.content,hasTemplate:!0,fallbackBodyInnerHtml:"",compositionUrl:null,injectedStyles:t.injectedStyles,injectedScripts:t.injectedScripts,parseDimensionPx:t.parseDimensionPx,onDiagnostic:t.onDiagnostic})}}async function Es(t){let e=vi();if(bs(),e.length===0)return;let n=Ss(e),i=e.filter(r=>r.hasAttribute("data-composition-src"));i.length!==0&&await Promise.all(i.map(async r=>{let o=r.getAttribute("data-composition-src");if(!o)return;let s=n.get(r),l=s?.authoredCompositionId||null,a=s?.runtimeCompositionId||l||null,c=null;try{c=new URL(o,document.baseURI)}catch{c=null}Ti(r);try{let u=l!=null?document.querySelector(`template#${CSS.escape(l)}-template`):null;if(u){await Li({host:r,authoredCompositionId:l,runtimeCompositionId:a,hostCompositionSrc:o,sourceNode:u.content,hasTemplate:!0,fallbackBodyInnerHtml:"",compositionUrl:c,injectedStyles:t.injectedStyles,injectedScripts:t.injectedScripts,parseDimensionPx:t.parseDimensionPx,onDiagnostic:t.onDiagnostic});return}let m=await fetch(o);if(!m.ok)throw new Error(`HTTP ${m.status}`);let f=await m.text(),E=new DOMParser().parseFromString(f,"text/html");gs(E,c);let g=(l?E.querySelector(`template#${CSS.escape(l)}-template`):null)??E.querySelector("template"),S=g?g.content:E.body,N=g?void 0:Array.from(E.head.querySelectorAll("style")),v=g?void 0:Array.from(E.head.querySelectorAll("script")),R=g?void 0:Array.from(E.head.querySelectorAll(\'link[rel="stylesheet"], link[rel="preconnect"]\'));await Li({host:r,authoredCompositionId:l,runtimeCompositionId:a,hostCompositionSrc:o,sourceNode:S,hasTemplate:!!g,fallbackBodyInnerHtml:E.body.innerHTML,compositionUrl:c,injectedStyles:t.injectedStyles,injectedScripts:t.injectedScripts,parseDimensionPx:t.parseDimensionPx,headStyles:N,headScripts:v,headLinks:R,declaredVariableDefaults:_i(E.documentElement),onDiagnostic:t.onDiagnostic})}catch(u){t.onDiagnostic?.({code:"external_composition_load_failed",details:{hostCompositionId:l,runtimeCompositionId:a,hostCompositionSrc:o,errorMessage:u instanceof Error?u.message:"unknown_error"}}),Ti(r)}}))}function rc(t){return t instanceof HTMLElement?t.dataset.captionWrapper!=="true"?t:t.querySelector(":scope > span")??null:null}function oc(){let t=[],e=document.querySelectorAll(".caption-group");for(let n of e)for(let i of n.children){if(!(i instanceof HTMLElement))continue;let r=i.dataset.captionWrapper==="true"?i.querySelector(":scope > span"):i.tagName==="SPAN"?i:null;r&&t.push(r)}return t}function sc(t){let e=t.parentElement;if(e?.dataset.captionWrapper==="true")return e;let n=document.createElement("span");return n.style.display="inline-block",n.dataset.captionWrapper="true",t.parentNode?.insertBefore(n,t),n.appendChild(t),n}function Ri(){let t=window.gsap;t&&document.querySelectorAll(".caption-group").length!==0&&fetch("caption-overrides.json").then(e=>e.ok?e.json():null).then(e=>{if(!e||!Array.isArray(e)||e.length===0)return;let n=oc();for(let i of e){let r=null;if(i.wordId&&(r=rc(document.getElementById(i.wordId))),!r&&i.wordIndex!==void 0&&(r=n[i.wordIndex]??null),!r)continue;let o={},s={};if(i.x!==void 0&&(o.x=i.x),i.y!==void 0&&(o.y=i.y),i.scale!==void 0&&(o.scale=i.scale),i.rotation!==void 0&&(o.rotation=i.rotation),i.opacity!==void 0&&(s.opacity=i.opacity),i.fontSize!==void 0&&(s.fontSize=`${i.fontSize}px`),i.fontWeight!==void 0&&(s.fontWeight=i.fontWeight),i.fontFamily!==void 0&&(s.fontFamily=i.fontFamily),i.activeColor||i.dimColor){let a=t.getTweensOf(r).filter(u=>u.vars.color!==void 0).sort((u,m)=>u.startTime()-m.startTime()),c=a.length>0?String(a[0].vars.color):"";for(let u of a)String(u.vars.color)===c?i.dimColor&&(u.vars.color=i.dimColor):i.activeColor&&(u.vars.color=i.activeColor);i.dimColor&&t.set(r,{color:i.dimColor})}if(Object.keys(s).length>0&&t.set(r,s),Object.keys(o).length>0){let l=sc(r);t.set(l,o)}}}).catch(()=>{})}var Yt="data-color-grading",ac="rec709",Je={exposure:0,contrast:0,highlights:0,shadows:0,whites:0,blacks:0,temperature:0,tint:0,saturation:0},ws=["exposure","contrast","highlights","shadows","whites","blacks","temperature","tint","saturation"],lc=[{id:"neutral",label:"Neutral",adjust:{...Je}},{id:"warm-clean",label:"Warm Clean",adjust:{...Je,exposure:.05,contrast:.08,highlights:-.08,shadows:.08,temperature:.16,saturation:.06}},{id:"cool-clean",label:"Cool Clean",adjust:{...Je,contrast:.06,highlights:-.06,shadows:.06,temperature:-.12,tint:.04,saturation:.04}},{id:"soft-boost",label:"Soft Boost",adjust:{...Je,exposure:.06,contrast:-.04,highlights:-.14,shadows:.16,saturation:.1}},{id:"bright-pop",label:"Bright Pop",adjust:{...Je,exposure:.12,contrast:.12,whites:.08,blacks:-.04,saturation:.14}},{id:"deep-contrast",label:"Deep Contrast",adjust:{...Je,exposure:-.03,contrast:.2,highlights:-.08,shadows:-.08,blacks:-.12,saturation:.06}}],uc=new Map(lc.map(t=>[t.id,t])),cc=/^\\$(?:\\{([A-Za-z0-9_.:-]+)\\}|([A-Za-z0-9_.:-]+))$/,dc={exposure:{min:-2,max:2},contrast:{min:-1,max:1},highlights:{min:-1,max:1},shadows:{min:-1,max:1},whites:{min:-1,max:1},blacks:{min:-1,max:1},temperature:{min:-1,max:1},tint:{min:-1,max:1},saturation:{min:-1,max:1}};function Jt(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}function fc(t,e,n){return Number.isFinite(t)?Math.min(n,Math.max(e,t)):0}function Cs(t,e){let n=typeof t=="number"?t:Number(t);return Number.isFinite(n)?Math.min(1,Math.max(0,n)):e}function mc(t,e){let n=typeof t=="number"?t:Number(t);if(!Number.isFinite(n))return 0;let i=dc[e];return fc(n,i.min,i.max)}function pc(t){if(t==null)return null;let e=String(t).trim();return e||null}function hc(t){if(t==null)return null;if(typeof t=="string"){let n=t.trim();return n?{src:n,intensity:1}:null}if(!Jt(t))return null;let e=t.src;return typeof e!="string"||e.trim()===""?null:{src:e.trim(),intensity:Cs(t.intensity,1)}}function xc(t){if(typeof t=="string"){let e=t.trim();if(!e)return null;if(e.startsWith("{"))try{let n=JSON.parse(e);return Jt(n)?n:null}catch{return null}return{preset:e,intensity:1}}return Jt(t)?t:null}function gc(t,e){let n=t.trim().match(cc);if(!n)return t;let i=n[1]??n[2]??"";return i&&Object.hasOwn(e,i)?e[i]:t}function ki(t,e){if(typeof t=="string"){let i=gc(t,e);if(i!==t)return i;let r=t.trim();if(!r.startsWith("{"))return t;try{return ki(JSON.parse(r),e)}catch{return t}}if(!Jt(t))return t;let n={};for(let[i,r]of Object.entries(t))n[i]=ki(r,e);return n}function yc(t){return t?uc.get(t)??null:null}function Di(t){let e=xc(t);if(!e||e.enabled===!1)return null;let n=pc(e.preset),r=yc(n)?.adjust??Je,o=Jt(e.adjust)?e.adjust:{},s=ws.reduce((l,a)=>(l[a]=mc(o[a]??r[a],a),l),{...Je});return{enabled:!0,preset:n,intensity:Cs(e.intensity,1),adjust:s,lut:hc(e.lut),colorSpace:typeof e.colorSpace=="string"&&e.colorSpace.trim()?e.colorSpace.trim():ac}}function Fs(t,e){return Di(ki(t,e))}function Xt(t){return!t?.enabled||t.intensity===0?!1:t.lut&&t.lut.intensity!==0?!0:ws.some(e=>Math.abs(t.adjust[e])>1e-4)}var we=class extends Error{constructor(n,i=null){super(i==null?n:`${n} at line ${i}`);ge(this,"lineNumber");this.name="CubeLutParseError",this.lineNumber=i}},bc=[0,0,0],Sc=[1,1,1],Ac=64;function Ec(t){let e=!1;for(let n=0;n<t.length;n++){let i=t[n];if(i===\'"\'&&(e=!e),i==="#"&&!e)return t.slice(0,n)}return t}function pt(t,e){let n=Number(t);if(!Number.isFinite(n))throw new we(`Invalid number "${t}"`,e);return n}function Ms(t,e,n){if(t.length!==3)throw new we(`${e} expects three numbers`,n);return[pt(t[0],n),pt(t[1],n),pt(t[2],n)]}function Ns(t,e,n){if(!t)throw new we(`${e} expects a size`,n);let i=Number(t);if(!Number.isInteger(i)||i<2)throw new we(`${e} must be an integer greater than 1`,n);return i}function wc(t,e){if(e[0]<=t[0]||e[1]<=t[1]||e[2]<=t[2])throw new we("DOMAIN_MAX values must be greater than DOMAIN_MIN values")}function Cc(t){let e=/^TITLE\\s+"([^"]*)"\\s*$/i.exec(t);if(e)return e[1]??null;let n=/^TITLE\\s+(.+)\\s*$/i.exec(t);return n&&(n[1]??"").trim()||null}function Fc(t){return/^[+-]?(?:\\d|\\.\\d)/.test(t)}function _s(t,e={}){let n=e.maxSize??Ac,i=null,r=bc,o=Sc,s=null,l=null,a=[],c=t.replace(/^\\uFEFF/,"").split(/\\r?\\n/);for(let m=0;m<c.length;m++){let f=m+1,x=Ec(c[m]??"").trim();if(!x)continue;let E=x.split(/\\s+/),g=(E[0]??"").toUpperCase(),S=E.slice(1);if(g==="TITLE"){i=Cc(x);continue}if(g==="DOMAIN_MIN"){r=Ms(S,g,f);continue}if(g==="DOMAIN_MAX"){o=Ms(S,g,f);continue}if(g==="LUT_1D_SIZE"){s=Ns(S[0],g,f);continue}if(g==="LUT_3D_SIZE"){if(l=Ns(S[0],g,f),l>n)throw new we(`LUT_3D_SIZE ${l} exceeds max ${n}`,f);continue}if(!Fc(g)){if(g.startsWith("LUT_"))throw new we(`Unsupported cube keyword ${g}`,f);continue}if(!l)throw s?new we("1D cube LUTs are not supported yet",f):new we("LUT data appears before LUT_3D_SIZE",f);if(E.length!==3)throw new we("LUT data rows must contain three numbers",f);a.push(pt(E[0],f),pt(E[1],f),pt(E[2],f))}if(s&&l)throw new we("Mixed 1D and 3D cube LUTs are not supported yet");if(!l)throw s?new we("1D cube LUTs are not supported yet"):new we("Missing LUT_3D_SIZE");wc(r,o);let u=l*l*l;if(a.length!==u*3)throw new we(`Expected ${u} LUT rows for size ${l}, found ${a.length/3}`);return{title:i,size:l,domainMin:r,domainMax:o,data:new Float32Array(a)}}function Mc(t){return Number.isFinite(t)?Math.min(1,Math.max(0,t)):0}function Ii(t){return Math.round(Mc(t)*255)}function Ts(t){let e=t.size,n=e*e,i=e,r=new Uint8Array(n*i*4);for(let o=0;o<e;o++)for(let s=0;s<e;s++)for(let l=0;l<e;l++){let a=((o*e+s)*e+l)*3,c=(s*n+o*e+l)*4;r[c]=Ii(t.data[a]??0),r[c+1]=Ii(t.data[a+1]??0),r[c+2]=Ii(t.data[a+2]??0),r[c+3]=255}return{width:n,height:i,data:r}}var Fn=new Map,Nc="data-hf-color-grading-canvas",Ds="data-hf-color-grading-source-hidden",_c="__hf_color_grading_canvas__",Tc=64,Qt={enabled:!1,position:.5,softness:0,lineWidth:2};function Lc(t){let e=window,i=t.closest("[data-composition-id]")?.getAttribute("data-composition-id")?.trim()??"",r=i?e.__hfVariablesByComp?.[i]:void 0;if(r)return r;let o=e.__hyperframes?.getVariables?.();return o&&typeof o=="object"?o:e.__hfVariables??{}}function Pi(t){let e=t.getAttribute(Yt);return e==null?null:Fs(e,Lc(t))}var vc=["attribute vec2 a_pos;","varying vec2 v_uv;","void main(){"," v_uv = a_pos * 0.5 + 0.5;"," gl_Position = vec4(a_pos, 0.0, 1.0);","}"].join(`\n`),Rc=["#ifdef GL_FRAGMENT_PRECISION_HIGH","precision highp float;","#else","precision mediump float;","#endif","varying vec2 v_uv;","uniform sampler2D u_source;","uniform sampler2D u_lut;","uniform vec2 u_resolution;","uniform vec2 u_uvScale;","uniform vec2 u_uvOffset;","uniform float u_lutEnabled;","uniform float u_lutSize;","uniform vec2 u_lutTextureSize;","uniform vec3 u_lutDomainMin;","uniform vec3 u_lutDomainMax;","uniform float u_lutIntensity;","uniform float u_exposure;","uniform float u_contrast;","uniform float u_highlights;","uniform float u_shadows;","uniform float u_whites;","uniform float u_blacks;","uniform float u_temperature;","uniform float u_tint;","uniform float u_saturation;","uniform float u_intensity;","uniform float u_compareEnabled;","uniform float u_comparePosition;","uniform float u_compareSoftness;","uniform float u_compareLineWidth;","float lumaOf(vec3 c){ return dot(c, vec3(0.2126, 0.7152, 0.0722)); }","vec3 sampleLut(float r, float g, float b){"," float size = max(u_lutSize, 2.0);"," float x = (r + b * size + 0.5) / max(u_lutTextureSize.x, 1.0);"," float y = (g + 0.5) / max(u_lutTextureSize.y, 1.0);"," return texture2D(u_lut, vec2(x, y)).rgb;","}","vec3 applyLut(vec3 color){"," if (u_lutEnabled < 0.5) return color;"," float size = max(u_lutSize, 2.0);"," vec3 span = max(u_lutDomainMax - u_lutDomainMin, vec3(0.00001));"," vec3 scaled = clamp((color - u_lutDomainMin) / span, 0.0, 1.0) * (size - 1.0);"," vec3 lo = floor(scaled);"," vec3 hi = min(lo + 1.0, vec3(size - 1.0));"," vec3 f = scaled - lo;"," vec3 c000 = sampleLut(lo.r, lo.g, lo.b);"," vec3 c100 = sampleLut(hi.r, lo.g, lo.b);"," vec3 c010 = sampleLut(lo.r, hi.g, lo.b);"," vec3 c110 = sampleLut(hi.r, hi.g, lo.b);"," vec3 c001 = sampleLut(lo.r, lo.g, hi.b);"," vec3 c101 = sampleLut(hi.r, lo.g, hi.b);"," vec3 c011 = sampleLut(lo.r, hi.g, hi.b);"," vec3 c111 = sampleLut(hi.r, hi.g, hi.b);"," vec3 c00 = mix(c000, c100, f.r);"," vec3 c10 = mix(c010, c110, f.r);"," vec3 c01 = mix(c001, c101, f.r);"," vec3 c11 = mix(c011, c111, f.r);"," vec3 c0 = mix(c00, c10, f.g);"," vec3 c1 = mix(c01, c11, f.g);"," vec3 lutColor = mix(c0, c1, f.b);"," return mix(color, lutColor, clamp(u_lutIntensity, 0.0, 1.0));","}","void main(){"," vec2 uv = (v_uv - u_uvOffset) / u_uvScale;"," if (uv.x < 0.0 || uv.y < 0.0 || uv.x > 1.0 || uv.y > 1.0) {"," gl_FragColor = vec4(0.0);"," return;"," }"," vec4 sampleColor = texture2D(u_source, uv);"," vec3 original = sampleColor.rgb;"," vec3 color = original * pow(2.0, u_exposure);"," float y = lumaOf(color);"," float shadowMask = 1.0 - smoothstep(0.0, 0.65, y);"," float highlightMask = smoothstep(0.35, 1.0, y);"," color += u_shadows * 0.35 * shadowMask;"," color += u_highlights * 0.35 * highlightMask;"," color += u_blacks * 0.25 * (1.0 - smoothstep(0.0, 0.35, y));"," color += u_whites * 0.25 * smoothstep(0.65, 1.0, y);"," color.r += u_temperature * 0.08 + u_tint * 0.04;"," color.b -= u_temperature * 0.08 - u_tint * 0.04;"," color.g -= u_tint * 0.08;"," color = (color - 0.5) * max(0.0, 1.0 + u_contrast) + 0.5;"," float satLuma = lumaOf(color);"," color = mix(vec3(satLuma), color, max(0.0, 1.0 + u_saturation));"," color = clamp(color, 0.0, 1.0);"," color = clamp(applyLut(color), 0.0, 1.0);"," vec3 graded = mix(original, color, u_intensity);"," if (u_compareEnabled > 0.5) {"," float pos = clamp(u_comparePosition, 0.0, 1.0);"," float softness = max(u_compareSoftness, 0.00001);"," float afterMask = smoothstep(pos - softness, pos + softness, v_uv.x);"," vec3 splitColor = mix(original, graded, afterMask);"," float lineMask = 0.0;"," if (u_compareLineWidth > 0.0) {"," float lineWidth = max(u_compareLineWidth / max(u_resolution.x, 1.0), 0.00001);"," lineMask = 1.0 - smoothstep(lineWidth, lineWidth * 1.8, abs(v_uv.x - pos));"," }"," gl_FragColor = vec4(mix(splitColor, vec3(1.0), lineMask * 0.82), sampleColor.a);"," return;"," }"," gl_FragColor = vec4(graded, sampleColor.a);","}"].join(`\n`);function ot(t){return t instanceof HTMLVideoElement||t instanceof HTMLImageElement}function Ls(t,e,n){let i=t.createShader(n);return i?(t.shaderSource(i,e),t.compileShader(i),t.getShaderParameter(i,t.COMPILE_STATUS)?i:(L("runtime.colorGrading.compileShader",t.getShaderInfoLog(i)),t.deleteShader(i),null)):null}function kc(t){let e=Ls(t,vc,t.VERTEX_SHADER),n=Ls(t,Rc,t.FRAGMENT_SHADER);if(!e||!n)return e&&t.deleteShader(e),n&&t.deleteShader(n),null;let i=t.createProgram();return i?(t.attachShader(i,e),t.attachShader(i,n),t.linkProgram(i),t.deleteShader(e),t.deleteShader(n),t.getProgramParameter(i,t.LINK_STATUS)?i:(L("runtime.colorGrading.linkProgram",t.getProgramInfoLog(i)),t.deleteProgram(i),null)):null}function vs(t,e=t.LINEAR){let n=t.createTexture();return n?(t.bindTexture(t.TEXTURE_2D,n),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,e),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,1,1,0,t.RGBA,t.UNSIGNED_BYTE,null),n):null}function Dc(t){let e=t.getContext("webgl",{alpha:!0,premultipliedAlpha:!1,preserveDrawingBuffer:!0});if(!e)return null;let n=kc(e),i=vs(e),r=vs(e,e.NEAREST);if(!n||!i||!r)return n&&e.deleteProgram(n),i&&e.deleteTexture(i),r&&e.deleteTexture(r),null;let o=e.createBuffer();return o?(e.bindBuffer(e.ARRAY_BUFFER,o),e.bufferData(e.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,-1,1,1,1]),e.STATIC_DRAW),{gl:e,program:{program:n,texture:i,lutTexture:r,position:e.getAttribLocation(n,"a_pos"),source:e.getUniformLocation(n,"u_source"),lut:e.getUniformLocation(n,"u_lut"),resolution:e.getUniformLocation(n,"u_resolution"),uvScale:e.getUniformLocation(n,"u_uvScale"),uvOffset:e.getUniformLocation(n,"u_uvOffset"),lutEnabled:e.getUniformLocation(n,"u_lutEnabled"),lutSize:e.getUniformLocation(n,"u_lutSize"),lutTextureSize:e.getUniformLocation(n,"u_lutTextureSize"),lutDomainMin:e.getUniformLocation(n,"u_lutDomainMin"),lutDomainMax:e.getUniformLocation(n,"u_lutDomainMax"),lutIntensity:e.getUniformLocation(n,"u_lutIntensity"),exposure:e.getUniformLocation(n,"u_exposure"),contrast:e.getUniformLocation(n,"u_contrast"),highlights:e.getUniformLocation(n,"u_highlights"),shadows:e.getUniformLocation(n,"u_shadows"),whites:e.getUniformLocation(n,"u_whites"),blacks:e.getUniformLocation(n,"u_blacks"),temperature:e.getUniformLocation(n,"u_temperature"),tint:e.getUniformLocation(n,"u_tint"),saturation:e.getUniformLocation(n,"u_saturation"),intensity:e.getUniformLocation(n,"u_intensity"),compareEnabled:e.getUniformLocation(n,"u_compareEnabled"),comparePosition:e.getUniformLocation(n,"u_comparePosition"),compareSoftness:e.getUniformLocation(n,"u_compareSoftness"),compareLineWidth:e.getUniformLocation(n,"u_compareLineWidth")}}):(e.deleteProgram(n),e.deleteTexture(i),e.deleteTexture(r),null)}function Ic(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}function Pc(t){if(!Ic(t))return{...Qt};let e=(n,i,r,o)=>{let s=typeof n=="number"?n:Number(n);return Math.min(o,Math.max(r,Number.isFinite(s)?s:i))};return{enabled:t.enabled===!0,position:e(t.position,Qt.position,0,1),softness:e(t.softness,Qt.softness,0,.25),lineWidth:e(t.lineWidth,Qt.lineWidth,0,12)}}function Is(t){try{let e=new URL(t,document.baseURI);return e.protocol==="data:"?{href:e.href}:e.protocol!=="http:"&&e.protocol!=="https:"?{error:"LUT must be project-local or a data URL"}:e.origin!==window.location.origin?{error:"Remote LUT URLs are not supported"}:{href:e.href}}catch{return{error:"Invalid LUT URL"}}}function Bi(t){return t instanceof Error?t.message:"LUT failed to load"}function Oc(t){let e=Is(t);if("error"in e)return{state:"error",message:e.error};let n=Fn.get(e.href);if(n)return n;let i=fetch(e.href,{credentials:"same-origin"}).then(o=>{if(!o.ok)throw new Error(`Failed to load LUT (${o.status})`);return o.text()}).then(o=>_s(o,{maxSize:Tc})),r={state:"pending",promise:i};return Fn.set(e.href,r),i.then(o=>Fn.set(e.href,{state:"ready",lut:o}),o=>Fn.set(e.href,{state:"error",message:Bi(o)})),r}function Rs(t,e,n){if(t.lut?.src===e)return t.lut;let i=Ts(n),{gl:r,program:o}=t;try{return r.activeTexture(r.TEXTURE1),r.bindTexture(r.TEXTURE_2D,o.lutTexture),r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1),r.texImage2D(r.TEXTURE_2D,0,r.RGBA,i.width,i.height,0,r.RGBA,r.UNSIGNED_BYTE,i.data),t.lut={src:e,title:n.title,size:n.size,domainMin:n.domainMin,domainMax:n.domainMax,textureWidth:i.width,textureHeight:i.height},t.lutError=null,t.lutLoadingSrc=null,t.lut}catch(s){return t.lut=null,t.lutError=Bi(s),t.lutLoadingSrc=null,L("runtime.colorGrading.uploadLut",s),null}}function Bc(t){let e=t.grading.lut?.src.trim()??"",n=t.grading.lut?.intensity??1;if(!e||n<=0)return t.lut=null,t.lutLoadingSrc=null,t.lutError=null,null;let i=Is(e);if("error"in i)return t.lut=null,t.lutLoadingSrc=null,t.lutError=i.error,null;if(t.lut?.src===i.href)return t.lut;t.lut=null;let r=Oc(e);return r.state==="ready"?Rs(t,i.href,r.lut):r.state==="error"?(t.lutError=r.message,t.lutLoadingSrc=null,null):(t.lutLoadingSrc!==i.href&&(t.lutLoadingSrc=i.href,t.lutError=null,r.promise.then(o=>{t.destroyed||t.grading.lut?.src.trim()!==e||(Rs(t,i.href,o),Ue(t))},o=>{t.destroyed||t.grading.lut?.src.trim()!==e||(t.lut=null,t.lutError=Bi(o),t.lutLoadingSrc=null,Ue(t))})),null)}function Oi(t){if(!t)return null;if(typeof t=="string"){let e=t.trim();if(!e)return null;let n=document.getElementById(e.replace(/^#/,""));if(n&&ot(n))return n;try{let i=document.querySelector(e);return i&&ot(i)?i:null}catch{return null}}if(t.hfId){let e=document.querySelector(`[data-hf-id="${CSS.escape(t.hfId)}"]`);if(e&&ot(e))return e}if(t.id){let e=document.getElementById(t.id);if(e&&ot(e))return e}if(!t.selector)return null;try{let e=Array.from(document.querySelectorAll(t.selector)),n=Math.max(0,Math.floor(Number(t.selectorIndex??0)||0)),i=e[n]??null;return i&&ot(i)?i:null}catch{return null}}function Hc(t){return t instanceof HTMLVideoElement?t.videoWidth>0&&t.videoHeight>0?{width:t.videoWidth,height:t.videoHeight}:null:t instanceof HTMLImageElement&&t.naturalWidth>0&&t.naturalHeight>0?{width:t.naturalWidth,height:t.naturalHeight}:null}function Ps(t){return t instanceof HTMLVideoElement?t.readyState>=HTMLMediaElement.HAVE_CURRENT_DATA&&t.videoWidth>0&&t.videoHeight>0:t instanceof HTMLImageElement?t.complete&&t.naturalWidth>0&&t.naturalHeight>0:!1}function Wc(t){if(!t.id)return null;let e=document.getElementById(`__render_frame_${t.id}__`);return e instanceof HTMLImageElement&&Ps(e)?e:null}function Gc(t){if(t instanceof HTMLVideoElement){let e=Wc(t);if(e)return e}return Ps(t)?t:null}function ks(t,e){let n=t.toLowerCase();if(n==="center")return .5;if(e==="x"){if(n==="left")return 0;if(n==="right")return 1}else{if(n==="top")return 0;if(n==="bottom")return 1}if(n.endsWith("%")){let i=Number.parseFloat(n);return Number.isFinite(i)?i/100:null}return null}function Uc(t){let e=t.trim().split(/\\s+/).filter(Boolean),n=.5,i=.5;for(let r=0;r<e.length;r++){let o=e[r]??"",s=ks(o,"x"),l=ks(o,"y");if(s!==null&&(o==="left"||o==="right"||o.endsWith("%")&&r===0)){n=s;continue}if(l!==null&&(o==="top"||o==="bottom"||o.endsWith("%")&&r>0)){i=l;continue}}return{x:n,y:i}}function Vc(t,e,n,i,r,o){if(t<=0||e<=0||n<=0||i<=0)return{scaleX:1,scaleY:1,offsetX:0,offsetY:0};let s=r||"fill",l=t,a=e;if(s==="contain"||s==="cover"||s==="scale-down"){let f=s==="cover"?Math.max(t/n,e/i):Math.min(t/n,e/i);l=n*f,a=i*f,s==="scale-down"&&l>n&&a>i&&(l=n,a=i)}else s==="none"&&(l=n,a=i);let c=Uc(o||"center"),u=(t-l)*c.x/t,m=(e-a)*c.y/e;return{scaleX:l/t,scaleY:a/e,offsetX:u,offsetY:m}}function zc(t,e){window.getComputedStyle(e).position==="static"&&(t.touchedParent||(t.touchedParent=e,t.parentInlinePosition=e.style.position||null),e.style.position="relative")}function jc(t,e){let{element:n,canvas:i}=t,r=n.parentElement;r&&zc(t,r);let o=window.getComputedStyle(e);_r(i.style,o),i.style.pointerEvents="none",i.style.position="absolute",i.style.inset="auto",i.style.left=`${n.offsetLeft}px`,i.style.top=`${n.offsetTop}px`,i.style.right="auto",i.style.bottom="auto",i.style.width=`${n.offsetWidth}px`,i.style.height=`${n.offsetHeight}px`,i.style.display="block",i.style.opacity=t.sourceOpacityForCanvas,i.style.visibility=t.sourceVisibleForCanvas?"visible":"hidden";let s=n.getBoundingClientRect(),l=Math.max(0,Math.round(n.offsetWidth||s.width)),a=Math.max(0,Math.round(n.offsetHeight||s.height));return l<=0||a<=0?(i.style.display="none",null):(i.width!==l&&(i.width=l),i.height!==a&&(i.height=a),{width:l,height:a})}function qc(t,e,n,i,r,o,s){t.uniform1i(e.source,0),t.uniform1i(e.lut,1),t.uniform2f(e.resolution,o.width,o.height),t.uniform2f(e.uvScale,s.scaleX,s.scaleY),t.uniform2f(e.uvOffset,s.offsetX,s.offsetY),t.uniform1f(e.lutEnabled,i?1:0),t.uniform1f(e.lutSize,i?.size??2),t.uniform2f(e.lutTextureSize,i?.textureWidth??1,i?.textureHeight??1),t.uniform3f(e.lutDomainMin,i?.domainMin[0]??0,i?.domainMin[1]??0,i?.domainMin[2]??0),t.uniform3f(e.lutDomainMax,i?.domainMax[0]??1,i?.domainMax[1]??1,i?.domainMax[2]??1),t.uniform1f(e.lutIntensity,n.lut?.intensity??0),t.uniform1f(e.exposure,n.adjust.exposure),t.uniform1f(e.contrast,n.adjust.contrast),t.uniform1f(e.highlights,n.adjust.highlights),t.uniform1f(e.shadows,n.adjust.shadows),t.uniform1f(e.whites,n.adjust.whites),t.uniform1f(e.blacks,n.adjust.blacks),t.uniform1f(e.temperature,n.adjust.temperature),t.uniform1f(e.tint,n.adjust.tint),t.uniform1f(e.saturation,n.adjust.saturation),t.uniform1f(e.intensity,n.intensity),t.uniform1f(e.compareEnabled,r.enabled?1:0),t.uniform1f(e.comparePosition,r.position),t.uniform1f(e.compareSoftness,r.softness),t.uniform1f(e.compareLineWidth,r.lineWidth)}function $c(t){t.sourceHidden||(t.sourceInlineOpacity=t.element.style.getPropertyValue("opacity")||null,t.sourceInlineOpacityPriority=t.element.style.getPropertyPriority("opacity")),t.element.setAttribute(Ds,"true"),t.element.style.setProperty("opacity","0","important"),t.sourceHidden=!0}function Ue(t){if(t.destroyed)return!1;let e=Gc(t.element);if(!e)return t.hasDrawn||(t.canvas.style.display="none"),!1;let n=Hc(e);if(!n)return!1;let i=e instanceof HTMLElement?e:t.element,r=t.element.style.getPropertyValue("opacity"),o=t.element.style.getPropertyPriority("opacity"),s=t.sourceHidden&&r==="0"&&o==="important",l=t.element.style.getPropertyValue("visibility");if(!s){let x=window.getComputedStyle(t.element);t.sourceOpacityForCanvas=x.opacity||"1",t.sourceVisibleForCanvas=l!=="hidden"&&x.visibility!=="hidden"}let a=jc(t,i);if(!a)return!1;let c=window.getComputedStyle(i),u=Vc(a.width,a.height,n.width,n.height,c.objectFit,c.objectPosition),{gl:m,program:f}=t;try{let x=Bc(t);return m.viewport(0,0,a.width,a.height),m.useProgram(f.program),m.activeTexture(m.TEXTURE0),m.bindTexture(m.TEXTURE_2D,f.texture),m.pixelStorei(m.UNPACK_FLIP_Y_WEBGL,!0),m.texImage2D(m.TEXTURE_2D,0,m.RGBA,m.RGBA,m.UNSIGNED_BYTE,e),m.activeTexture(m.TEXTURE1),m.bindTexture(m.TEXTURE_2D,f.lutTexture),qc(m,f,t.grading,x,t.compare,a,u),m.enableVertexAttribArray(f.position),m.vertexAttribPointer(f.position,2,m.FLOAT,!1,0,0),m.drawArrays(m.TRIANGLE_STRIP,0,4),$c(t),t.hasDrawn=!0,!0}catch(x){return L("runtime.colorGrading.drawEntry",x),!1}}function Ye(t,e,n,i){e.addEventListener(n,i),t.cleanup.push(()=>e.removeEventListener(n,i))}function Kc(t){t.animationFrame!==null&&(window.cancelAnimationFrame(t.animationFrame),t.animationFrame=null),t.videoFrameHandle!==null&&t.element instanceof HTMLVideoElement&&(t.element.cancelVideoFrameCallback?.(t.videoFrameHandle),t.videoFrameHandle=null)}function Zt(t){if(t.destroyed||!(t.element instanceof HTMLVideoElement)||t.videoFrameHandle!==null||t.animationFrame!==null)return;let e=t.element,n=e;if(typeof n.requestVideoFrameCallback=="function"){t.videoFrameHandle=n.requestVideoFrameCallback(()=>{t.videoFrameHandle=null,Ue(t),!t.destroyed&&!e.paused&&!e.ended&&Zt(t)});return}t.animationFrame=window.requestAnimationFrame(()=>{t.animationFrame=null,Ue(t),!t.destroyed&&!e.paused&&!e.ended&&Zt(t)})}function Jc(t){let e=()=>{Ue(t)};Ye(t,t.element,"load",e),Ye(t,t.element,"loadedmetadata",e),Ye(t,t.element,"loadeddata",e),Ye(t,t.element,"seeked",e),Ye(t,t.element,"timeupdate",e),Ye(t,window,"resize",e),t.element instanceof HTMLVideoElement&&(Ye(t,t.element,"play",()=>Zt(t)),Ye(t,t.element,"pause",e)),typeof ResizeObserver<"u"&&(t.resizeObserver=new ResizeObserver(e),t.resizeObserver.observe(t.element))}function Yc(t){if(!t.destroyed){t.destroyed=!0,Kc(t),t.resizeObserver?.disconnect();for(let e of t.cleanup)e();if(t.cleanup.length=0,t.canvas.remove(),t.gl.deleteTexture(t.program.texture),t.gl.deleteTexture(t.program.lutTexture),t.gl.deleteProgram(t.program.program),t.sourceHidden){t.element.removeAttribute(Ds);let e=t.element.style.getPropertyValue("opacity"),n=t.element.style.getPropertyPriority("opacity");e==="0"&&n==="important"&&(t.sourceInlineOpacity===null?t.element.style.removeProperty("opacity"):t.element.style.setProperty("opacity",t.sourceInlineOpacity,t.sourceInlineOpacityPriority))}t.touchedParent&&(t.parentInlinePosition===null?t.touchedParent.style.removeProperty("position"):t.touchedParent.style.position=t.parentInlinePosition)}}function Xc(t){let e=document.createElement("canvas");return e.className=_c,e.setAttribute(Nc,"true"),e.setAttribute("data-hyperframes-ignore",""),e.setAttribute("data-hyperframes-picker-ignore",""),e.setAttribute("data-hf-ignore",""),e.setAttribute("aria-hidden","true"),e.style.pointerEvents="none",e.style.display="none",t.parentNode?.insertBefore(e,t.nextSibling),e}function Os(){let t=new WeakMap,e=new Set,n=null,i=!1,r=(g,S,N)=>{let v=t.get(g);if(v)return v.grading=S,v.source=N,Ue(v),g instanceof HTMLVideoElement&&!g.paused&&Zt(v),!0;let R=Xc(g),Y=Dc(R);if(!Y)return R.remove(),!1;let W={element:g,canvas:R,gl:Y.gl,program:Y.program,grading:S,compare:{...Qt},lut:null,lutLoadingSrc:null,lutError:null,source:N,animationFrame:null,videoFrameHandle:null,resizeObserver:null,cleanup:[],touchedParent:null,parentInlinePosition:null,sourceHidden:!1,sourceInlineOpacity:null,sourceInlineOpacityPriority:"",sourceOpacityForCanvas:window.getComputedStyle(g).opacity||"1",sourceVisibleForCanvas:window.getComputedStyle(g).visibility!=="hidden",hasDrawn:!1,destroyed:!1};return t.set(g,W),e.add(g),Jc(W),Ue(W),g instanceof HTMLVideoElement&&!g.paused&&Zt(W),!0},o=(g,S)=>{if(i)return!1;let N=Oi(g);if(!N)return!1;let v=t.get(N);if(!v){let R=Pi(N);if(!Xt(R)||!r(N,R,"attribute"))return!1;v=t.get(N)}return v?(v.compare=Pc(S),Ue(v),!0):!1},s=g=>{let S=t.get(g);S&&(Yc(S),t.delete(g),e.delete(g))},l=()=>{if(i)return 0;let g=new Set;document.querySelectorAll(`video[${Yt}], img[${Yt}]`).forEach(N=>{if(!ot(N))return;g.add(N);let v=Pi(N);Xt(v)?r(N,v,"attribute"):s(N)});for(let N of Array.from(e)){let v=t.get(N);v&&(!N.isConnected||v.source==="attribute"&&!g.has(N))&&s(N)}return e.size},a=()=>{if(i)return 0;let g=0;for(let S of Array.from(e,N=>t.get(N)))S&&Ue(S)&&(g+=1);return g},c=(g,S)=>{if(i)return!1;let N=Oi(g);if(!N)return!1;let v=Di(S);return Xt(v)?r(N,v,"live"):(s(N),!0)},u=(g,S)=>{if(!ot(g))return!1;let N=t.get(g);return N?(N.sourceVisibleForCanvas=S,!0):!1},m=g=>{let S=Oi(g);if(!S)return{state:"missing",message:"Media not found"};let N=t.get(S);if(N)return N.lutError?{state:"unavailable",message:N.lutError}:N.grading.lut&&N.lutLoadingSrc?{state:"pending",message:"Loading LUT"}:N.canvas.style.display==="none"?{state:"pending",message:"Waiting for media frame"}:{state:"active",message:N.lut?"Shader + LUT active":"Shader active"};let v=Pi(S);return Xt(v)?{state:"unavailable",message:"WebGL unavailable"}:{state:"inactive",message:"No grading applied"}},f=()=>{if(!i){i=!0,n?.disconnect(),n=null;for(let g of Array.from(e))s(g)}};document.body&&(n=new MutationObserver(()=>l()),n.observe(document.body,{childList:!0,subtree:!0,attributes:!0,attributeFilter:[Yt]}));let x={refresh:l,redraw:a,setGrading:c,setCompare:o,setSourceVisibility:u,getStatus:m,destroy:f},E=window;return E.__hf=E.__hf||{},E.__hf.colorGrading=x,l(),x}var Mn=class{constructor(e){ge(this,"_baseTime",0);ge(this,"_playStartMs",null);ge(this,"_rate",1);ge(this,"_duration",1/0);ge(this,"_nowMs");ge(this,"_audioSource",null);this._baseTime=e?.initialTime??0,this._rate=e?.rate??1,this._duration=e?.duration??1/0,this._nowMs=e?.nowMs??(()=>performance.now())}now(){if(this._playStartMs===null)return this._baseTime;if(this._audioSource){let i=null;if("currentTimeSeconds"in this._audioSource)i=this._audioSource.currentTimeSeconds;else{let{el:r,compositionStart:o,mediaStart:s}=this._audioSource;!r.paused&&Number.isFinite(r.currentTime)&&(i=(r.currentTime-s)/(r.playbackRate>0?r.playbackRate:1)*this._rate+o)}if(i!==null)return Number.isFinite(this._duration)&&i>=this._duration?this._duration:Math.max(0,i)}let e=(this._nowMs()-this._playStartMs)/1e3,n=this._baseTime+e*this._rate;return Number.isFinite(this._duration)&&n>=this._duration?this._duration:Math.max(0,n)}play(){return this._playStartMs!==null||Number.isFinite(this._duration)&&this._baseTime>=this._duration?!1:(this._playStartMs=this._nowMs(),!0)}pause(){return this._playStartMs===null?!1:(this._baseTime=this.now(),this._playStartMs=null,!0)}seek(e){let n=Number.isFinite(this._duration)?Math.max(0,Math.min(e,this._duration)):Math.max(0,e);this._baseTime=n,this._playStartMs!==null&&(this._playStartMs=this._nowMs())}isPlaying(){return this._playStartMs!==null}setRate(e){let n=Number.isFinite(e)&&e>0?Math.max(.1,Math.min(5,e)):1;this._playStartMs!==null&&(this._baseTime=this.now(),this._playStartMs=this._nowMs()),this._rate=n}getRate(){return this._rate}setDuration(e){this._duration=Number.isFinite(e)&&e>0?e:1/0,this._baseTime>this._duration&&(this._baseTime=this._duration)}getDuration(){return this._duration}attachAudioSource(e){this._audioSource=e}detachAudioSource(){this._audioSource&&this._playStartMs!==null&&(this._baseTime=this.now(),this._playStartMs=this._nowMs()),this._audioSource=null}hasAudioSource(){return this._audioSource!==null}getSource(){if(this._audioSource&&this._playStartMs!==null){if("currentTimeSeconds"in this._audioSource)return"audio";let{el:e}=this._audioSource;if(!e.paused&&Number.isFinite(e.currentTime))return"audio"}return"monotonic"}snapshot(){return{time:this.now(),playing:this.isPlaying(),rate:this._rate,duration:this._duration,source:this.getSource()}}reachedEnd(){return Number.isFinite(this._duration)&&this.now()>=this._duration}};function Bs(t){return!Number.isFinite(t)||t<=0?1:t}function Qc(t,e){e||t.paused||!an().__hfDebug||console.debug("[hyperframes] webAudioTransport claimed fallback-playing element:",t.currentSrc||t.getAttribute("src")||"")}function Zc(t,e){let{elapsed:n,mediaStart:i,scheduledAt:r,safeRate:o,clipDuration:s}=e,l=Number.isFinite(s)&&s>0,a=s*o;if(n>=0){let u=a-n;return l&&u<=0?!1:(l?t.start(0,n+i,u):t.start(0,n+i),!0)}let c=-n/o;return l?t.start(r+c,i,a):t.start(r+c,i),!0}var Nn=class{constructor(){ge(this,"_ctx",null);ge(this,"_bufferCache",new Map);ge(this,"_failedSrcs",new Set);ge(this,"_activeSources",[]);ge(this,"_masterGain",null);ge(this,"_rateAnchorCtx",0);ge(this,"_rateAnchorComp",0);ge(this,"_rate",1);ge(this,"_paused",!0);ge(this,"_playGeneration",0)}async init(){try{return this._ctx=new AudioContext,this._masterGain=this._ctx.createGain(),this._masterGain.connect(this._ctx.destination),!0}catch{return!1}}get context(){return this._ctx}getTime(){return!this._ctx||this._paused?-1:this._rateAnchorComp+(this._ctx.currentTime-this._rateAnchorCtx)*this._rate}async decodeAudioElement(e){let n=e.currentSrc||e.getAttribute("src");if(!n)return null;if(this._bufferCache.has(n))return this._bufferCache.get(n);if(this._failedSrcs.has(n)||!this._ctx)return null;let i;try{let r=await fetch(n,{cache:"no-store"});if(!r.ok)return L("webAudioTransport.fetch",new Error(`${r.status} ${n}`)),null;i=await r.arrayBuffer()}catch(r){return L("webAudioTransport.fetch",r),null}try{let r=await this._ctx.decodeAudioData(i);return this._bufferCache.set(n,r),r}catch(r){return this._failedSrcs.add(n),L("webAudioTransport.decode",r),null}}startGeneration(){return this._playGeneration+=1,this._playGeneration}currentGeneration(){return this._playGeneration}async schedulePlayback(e,n,i,r,o,s,l,a=1,c=Number.POSITIVE_INFINITY){if(!this._ctx||!this._masterGain||l!==this._playGeneration)return null;try{if(this._ctx.state==="suspended"&&await this._ctx.resume(),l!==this._playGeneration)return null;let u=Bs(a),m=this._ctx.createBufferSource();m.buffer=n,m.playbackRate.value=u;let f=this._ctx.createGain();f.gain.value=s,m.connect(f),f.connect(this._masterGain);let x=o-i,E=this._ctx.currentTime;if(this._rate=u,this._rateAnchorCtx=E,this._rateAnchorComp=o,!Zc(m,{elapsed:x,mediaStart:r,scheduledAt:E,safeRate:u,clipDuration:c}))return m.disconnect(),f.disconnect(),null;let g=e.muted;e.muted=!0,Qc(e,g);let S={el:e,sourceNode:m,gainNode:f,compositionStart:i,mediaStart:r,scheduledAt:E,priorMuted:g,bounded:Number.isFinite(c)&&c>0};return this._activeSources.push(S),this._paused=!1,m.addEventListener("ended",()=>{let N=this._activeSources.indexOf(S);N!==-1&&(this._activeSources.splice(N,1),e.muted=g,this._activeSources.length===0&&(this._paused=!0))}),S}catch(u){return L("webAudioTransport.schedule",u),null}}setRate(e){let n=Bs(e);if(n===this._rate)return!1;this._ctx&&!this._paused&&(this._rateAnchorComp=this.getTime(),this._rateAnchorCtx=this._ctx.currentTime),this._rate=n;for(let i of this._activeSources)try{i.sourceNode.playbackRate.value=n}catch(r){L("webAudioTransport.setRate",r)}return!0}hasBoundedActiveSources(){return this._activeSources.some(e=>e.bounded)}stopAll(){for(let e of this._activeSources){try{e.sourceNode.stop(),e.sourceNode.disconnect(),e.gainNode.disconnect()}catch{}e.el.muted=e.priorMuted}this._activeSources=[],this._paused=!0}setVolume(e){this._masterGain&&(this._masterGain.gain.value=Math.max(0,Math.min(1,e)))}setElementVolume(e,n){let i=Math.max(0,Math.min(1,n));for(let r of this._activeSources)if(r.el===e)try{r.gainNode.gain.value=i}catch(o){L("webAudioTransport.setElementVolume",o)}}setMuted(e){this._masterGain&&(this._masterGain.gain.value=e?0:1)}isActive(){return this._activeSources.length>0&&!this._paused}ownsElement(e){return!this._paused&&this._activeSources.some(n=>n.el===e)}destroy(){if(this.stopAll(),this._bufferCache.clear(),this._failedSrcs.clear(),this._ctx)try{this._ctx.close()}catch{}this._ctx=null,this._masterGain=null}};var Hs="data-hf-studio-manual-edit-gesture";var Hi="data-hf-authored-duration",Wi="data-hf-authored-end";function ed(){let t=window.__HF_EXPORT_RENDER_SEEK_CONFIG,e=t?.fps,n=t?.fpsSource,i=Number(e);return!t||e==null?{fps:null,source:"default",rawFpsSource:n,rawFps:e,fallbackReason:"missing"}:!Number.isFinite(i)||i<=0?{fps:null,source:"default",rawFpsSource:n,rawFps:e,fallbackReason:"invalid"}:{fps:i,source:n==="render-options"||n==="default"?n:"unknown",rawFpsSource:n,rawFps:e,fallbackReason:t.fpsFallbackReason}}function Ws(){let t=vr(),e=ed();t.canonicalFps=e.fps??t.canonicalFps,window.__HF_EXPORT_RENDER_SEEK_CONFIG&&console.info("[hyperframes] render runtime fps",{canonicalFps:t.canonicalFps,source:e.source,rawFpsSource:e.rawFpsSource,rawFps:e.rawFps,fallbackReason:e.fallbackReason});let n=null,i=null,r=null,o=[],s=new Set,l=null;if(typeof window.__hfRuntimeTeardown=="function")try{window.__hfRuntimeTeardown()}catch(d){L("runtime.init.site1",d)}(()=>{let d=window.gsap,p=window;if(!(!d?.registerPlugin||p.__hfAutoNoopRegistered))try{d.registerPlugin({name:"_auto",init:()=>!1}),p.__hfAutoNoopRegistered=!0}catch{}})(),document.documentElement&&(document.documentElement.style.margin="0",document.documentElement.style.padding="0",document.documentElement.style.overflow="hidden"),document.body&&(document.body.style.margin="0",document.body.style.padding="0",document.body.style.overflow="hidden"),window.__timelines=window.__timelines||{};let c=()=>{let d=document.querySelector(\'[data-composition-id][data-root="true"]\');if(d instanceof HTMLElement)return d;let p=Array.from(document.querySelectorAll("[data-composition-id]"));return p.find(h=>!h.parentElement?.closest("[data-composition-id]"))??p[0]??null};if(Array.isArray(window.__timelines)){let d=window.__timelines,p=c()?.getAttribute("data-composition-id")??"root",h={};if(d.length===1)h[p]=d[0];else for(let b=0;b<d.length;b++)h[`tl-${b}`]=d[b];window.__timelines=h}let u=c();u&&!u.hasAttribute("data-start")&&u.setAttribute("data-start","0");let m=d=>{o.push(d)},f=(d,p,h)=>{let b=h??`${d}:${JSON.stringify(p)}`;s.has(b)||(s.add(b),Ee({source:"hf-preview",type:"diagnostic",code:d,details:p}))},x=d=>{let p={scale:1,focusX:960,focusY:540},h=[],b=[],A={time:d.getTime(),duration:d.getDuration(),isPlaying:d.isPlaying(),renderMode:!1,timelineDirty:!1};return{play:d.play,pause:d.pause,seek:d.seek,getTime:d.getTime,getDuration:d.getDuration,isPlaying:d.isPlaying,getMainTimeline:()=>null,getElementBounds:()=>{},getElementsAtPoint:()=>{},setElementPosition:()=>{},previewElementPosition:()=>{},setElementKeyframes:()=>{},setElementScale:()=>{},setElementFontSize:()=>{},setElementTextContent:()=>{},setElementTextColor:()=>{},setElementTextShadow:()=>{},setElementTextFontWeight:()=>{},setElementTextFontFamily:()=>{},setElementTextOutline:()=>{},setElementTextHighlight:()=>{},setElementVolume:()=>{},setStageZoom:()=>{},getStageZoom:()=>p,setStageZoomKeyframes:()=>{},getStageZoomKeyframes:()=>h,addElement:()=>!1,removeElement:()=>!1,updateElementTiming:()=>!1,setElementTiming:()=>{},updateElementSrc:()=>!1,updateElementLayer:()=>!1,updateElementBasePosition:()=>!1,markTimelineDirty:()=>{},isTimelineDirty:()=>!1,rebuildTimeline:()=>{},ensureTimeline:()=>{},enableRenderMode:()=>{},disableRenderMode:()=>{},renderSeek:d.renderSeek,getElementVisibility:()=>({visible:!1}),getVisibleElements:()=>b,getRenderState:()=>({...A,time:d.getTime(),duration:d.getDuration(),isPlaying:d.isPlaying()})}},E=1/60,g=.75,S=2,N=.05,v=100,R=240,Y=d=>{if(d instanceof Error)return d.message||String(d);if(typeof d=="string")return d;try{return JSON.stringify(d)}catch{return String(d??"")}},W=d=>{let p=d.toLowerCase();return p.includes("cannot read properties of null")||p.includes("cannot set properties of null")?{code:"runtime_null_dom_access",category:"dom-null-access"}:p.includes("failed to execute \'queryselector\'")?{code:"runtime_invalid_selector",category:"selector-invalid"}:p.includes("is not defined")?{code:"runtime_reference_missing",category:"reference-missing"}:{code:"runtime_script_error",category:"script-error"}},M=d=>{if(d==null||d.trim()==="")return null;let p=Number.parseFloat(d);return!Number.isFinite(p)||p<=0?null:`${p}px`},y=()=>c(),w=()=>{let d=y();if(!d)return;let p=M(d.getAttribute("data-width")),h=M(d.getAttribute("data-height"));p&&(d.style.width=p),h&&(d.style.height=h),p&&d.style.setProperty("--comp-width",p),h&&d.style.setProperty("--comp-height",h)},F=()=>{let d=y(),p=Array.from(document.querySelectorAll("[data-composition-id]")).filter(h=>h.hasAttribute("data-duration")||h.hasAttribute("data-end"));for(let h of p){if(d&&h===d)continue;let b=h.getAttribute("data-duration"),A=h.getAttribute("data-end");b!=null&&!h.hasAttribute(Hi)&&h.setAttribute(Hi,b),A!=null&&!h.hasAttribute(Wi)&&h.setAttribute(Wi,A),h.removeAttribute("data-duration"),h.removeAttribute("data-end")}},_=()=>{let d=y();if(!d)return;d.style.position||(d.style.position="relative"),d.style.overflow="hidden";let p=M(d.getAttribute("data-width")),h=M(d.getAttribute("data-height"));p&&(d.style.width=p),h&&(d.style.height=h);let b=Array.from(d.children);for(let A of b){let C=A.tagName.toLowerCase();if(C==="script"||C==="style"||C==="link"||C==="meta"||!A.hasAttribute("data-start")||A.hasAttribute("data-hf-autostamped"))continue;let k=(A.style.top==="0px"||A.style.top==="0")&&(A.style.left==="0px"||A.style.left==="0")&&A.style.width==="100%"&&A.style.height==="100%",$=/translate\\(\\s*-50%\\s*,\\s*-50%\\s*\\)/.test(A.style.transform);if(k&&$&&!A.hasAttribute("data-width")&&!A.hasAttribute("data-height")){let ye=A.style.top,tt=A.style.left,Ae=A.style.width,Et=A.style.height;A.style.top="",A.style.left="",A.style.width="",A.style.height="";let te=window.getComputedStyle(A);te.top!=="auto"||te.bottom!=="auto"||te.left!=="auto"||te.right!=="auto"||te.width!=="0px"||te.height!=="0px"||(A.style.top=ye,A.style.left=tt,A.style.width=Ae,A.style.height=Et)}let X=window.getComputedStyle(A),me=X.position;if(me!=="absolute"&&me!=="fixed"&&(A.style.position="absolute"),!!A.style.top||!!A.style.bottom||X.top!=="auto"||X.bottom!=="auto"||(A.style.top="0"),!!A.style.left||!!A.style.right||X.left!=="auto"||X.right!=="auto"||(A.style.left="0"),C!=="audio"){let ye=M(A.getAttribute("data-width")),tt=M(A.getAttribute("data-height")),Ae=X.width!=="0px"&&X.width!=="auto",Et=X.height!=="0px"&&X.height!=="auto";ye?!A.style.width&&!Ae&&(A.style.width=ye):!A.style.width&&X.width==="0px"&&(A.style.width="100%"),tt?!A.style.height&&!Et&&(A.style.height=tt):!A.style.height&&X.height==="0px"&&(A.style.height="100%")}}},T=(d,p=0,h)=>ze({timelineRegistry:window.__timelines??{},includeAuthoredTimingAttrs:h?.includeAuthoredTimingAttrs??!0}).resolveStartForElement(d,p),G=(d,p)=>ze({timelineRegistry:window.__timelines??{},includeAuthoredTimingAttrs:p?.includeAuthoredTimingAttrs??!0}).resolveDurationForElement(d),j=(d,p=0)=>!d.hasAttribute("data-hf-auto-start")&&d.hasAttribute("data-start")?Math.max(0,Number(d.getAttribute("data-start")??0)||0):T(d,p),ne=(d,p)=>{let h=d.tagName.toLowerCase();if(h==="script"||h==="style"||h==="link"||h==="meta")return!1;let b=h==="video"||h==="audio"?j(d,0):T(d,0),A=G(d),C=d.getAttribute("data-composition-id");if(C){let $=(window.__timelines??{})[C],X=null;if($&&typeof $.duration=="function"){let be=Number($.duration());Number.isFinite(be)&&be>0&&(X=be)}!(d.hasAttribute("data-duration")||d.hasAttribute("data-end")||d.hasAttribute(Hi)||d.hasAttribute(Wi))&&(A==null||A<=0)&&X!=null&&(A=X)}let k=A!=null&&A>0?b+A:Number.POSITIVE_INFINITY;return p>=b&&(Number.isFinite(k)?p<=k:!0)},P=!!document.querySelector("[data-composition-src]"),se=!1;{let d=document.querySelectorAll("[data-composition-id]:not([data-composition-src])");for(let p of d){let h=p.getAttribute("data-composition-id");if(h&&p.children.length===0&&document.querySelector(`template#${CSS.escape(h)}-template`)){se=!0;break}}}let Se=!P&&!se,H=d=>{if(!d||typeof d.duration!="function")return null;try{let p=Number(d.duration());return Number.isFinite(p)?Math.max(0,p):null}catch{return null}},U=d=>typeof d=="number"&&Number.isFinite(d)&&d>E,V=d=>{let p=Number(d.getAttribute("data-duration"));if(Number.isFinite(p)&&p>0)return p;let h=Number(d.getAttribute("data-playback-start")??d.getAttribute("data-media-start")??"0"),b=Number.isFinite(h)?Math.max(0,h):0;return Number.isFinite(d.duration)&&d.duration>b?Math.max(0,d.duration-b):null},ie=()=>{let d=Array.from(document.querySelectorAll("video[data-start], audio[data-start]"));if(d.length===0)return null;let p=0;for(let h of d){let b=j(h,0);if(!Number.isFinite(b))continue;let A=V(h);A==null||A<=E||(p=Math.max(p,Math.max(0,b)+A))}return p>E?p:null},Me=()=>{let d=y();if(!d)return null;let p=window.__timelines??{},h=ze({timelineRegistry:p,includeAuthoredTimingAttrs:!0}),b=0,A=Number.parseFloat(d.getAttribute("data-duration")??"");Number.isFinite(A)&&A>0&&(b=A);let C=Array.from(d.querySelectorAll("[data-composition-id][data-start]"));for(let k of C){if(!(k instanceof Element)||k.parentElement?.closest("[data-composition-id]")!==d)continue;let X=h.resolveStartForElement(k,0),me=h.resolveDurationForElement(k);!Number.isFinite(X)||me==null||me<=0||(b=Math.max(b,Math.max(0,X)+me))}return b>E?b:null},B=()=>{let d=ie();return typeof d!="number"||!Number.isFinite(d)||d<=E?null:d},D=d=>U(d)?Math.max(E,d*g):E,O=(d,p=0)=>{let h=H(d),b=B(),A=Me(),C=Math.max(b??0,A??0),k=Number.isFinite(p)&&p>E?p:0,$=0;return U(h)?$=Math.max(h,C,k):U(C)?$=Math.max(C,k):$=k,$>0?Math.max(0,$):0},ae=()=>{let d=window.__timelines??{},p=te=>{let Z=Object.entries(d).filter(xe=>!!xe[1]&&typeof xe[1].play=="function"&&typeof xe[1].pause=="function");if(Z.length!==1)return{timeline:null};let[fe,pe]=Z[0];return{timeline:pe,selectedTimelineIds:[fe],selectedDurationSeconds:H(pe),diagnostics:{code:"root_timeline_sole_registered_fallback",details:{reason:te,soleTimelineId:fe}}}},h=ze({timelineRegistry:d,includeAuthoredTimingAttrs:!0}),b=B(),A=Me(),C=Math.max(b??0,A??0)||null,k=D(C),$=te=>{let Z=document.querySelector(`[data-composition-id="${CSS.escape(te)}"]`);return Z?h.resolveStartForElement(Z,0):0},X=te=>{let Z=window.gsap;if(!Z||typeof Z.timeline!="function")return null;let fe=Z.timeline({paused:!0});for(let pe of te)fe.add(pe.timeline,$(pe.compositionId));return fe},me=(te,Z)=>{if(!U(te))return null;let fe=window.gsap;if(!fe||typeof fe.timeline!="function")return null;let pe=fe.timeline({paused:!0});if(Z)try{pe.add(Z,0)}catch(ue){L("runtime.init.site2",ue)}let xe=pe;if(typeof xe.to=="function")try{xe.to({},{duration:te})}catch(ue){L("runtime.init.site3",ue)}return pe},be=(te,Z)=>{let fe=te;if(typeof fe.getChildren!="function")return[];try{let pe=fe.getChildren(!0,!0,!0)??[];if(!Array.isArray(pe))return[];let xe=[];for(let ue of Z)if(!pe.some(Re=>Re===ue.timeline))try{let Re=$(ue.compositionId);te.add(ue.timeline,Re),xe.push(ue.compositionId)}catch(Re){L("runtime.init.site4",Re)}return xe}catch{return[]}},oe=y(),Q=oe?.getAttribute("data-composition-id")??null;if(!Q)return p("root_missing_composition_id");let ye=d[Q]??null,Ae=(()=>{if(!oe)return[];let te=new Set,Z=Array.from(oe.querySelectorAll("[data-composition-id]")),fe=[];for(let pe of Z){let xe=pe.getAttribute("data-composition-id");if(!xe||xe===Q||te.has(xe))continue;te.add(xe);let ue=d[xe]??null;if(!ue||typeof ue.play!="function"||typeof ue.pause!="function")continue;let _e=H(ue);fe.push({compositionId:xe,timeline:ue,durationSeconds:_e??0})}return fe})(),Et=te=>{for(let Z of te){let fe=Z.timeline;if(typeof fe.paused=="function")try{fe.paused(!1)}catch(pe){L("runtime.init.site5",pe)}}};if(Ae.length>0&&Et(Ae),ye){let te=Ae.length>0?be(ye,Ae):[];if((Ae.length>0||!document.querySelector("[data-composition-id]:not([data-composition-id=\'"+Q+"\'])"))&&(re=!0),te.length>0)try{let ue=ye.time();ye.seek(ue,!1)}catch{}let Z=H(ye);if(!U(Z)&&Ae.length>0){let ue=Ae.map(Ca=>Ca.compositionId),_e=X(Ae),Re=H(_e);if(_e&&U(Re))return{timeline:_e,selectedTimelineIds:ue,selectedDurationSeconds:Re,mediaDurationFloorSeconds:b,diagnostics:{code:"root_timeline_unusable_fallback",details:{rootCompositionId:Q,rootDurationSeconds:Z,fallbackKind:"composite_by_root_children",minCandidateDurationSeconds:k,selectedDurationSeconds:Re,mediaDurationFloorSeconds:b,authoredCompositionDurationFloorSeconds:A,selectedTimelineIds:ue,autoNestedChildren:te}}};let Gn=me(C??0,ye),Un=H(Gn);if(Gn&&U(Un))return{timeline:Gn,selectedTimelineIds:[Q],selectedDurationSeconds:Un,mediaDurationFloorSeconds:b,diagnostics:{code:"root_timeline_unusable_media_floor_fallback",details:{rootCompositionId:Q,rootDurationSeconds:Z,fallbackKind:"media_duration_floor",mediaDurationFloorSeconds:b,authoredCompositionDurationFloorSeconds:A,selectedDurationSeconds:Un,selectedTimelineIds:[Q],autoNestedChildren:te}}}}if(!U(Z)&&Ae.length===0){let ue=me(C??0,ye),_e=H(ue);if(ue&&U(_e))return{timeline:ue,selectedTimelineIds:[Q],selectedDurationSeconds:_e,mediaDurationFloorSeconds:b,diagnostics:{code:"root_timeline_unusable_media_floor_fallback",details:{rootCompositionId:Q,rootDurationSeconds:Z,fallbackKind:"media_duration_floor",mediaDurationFloorSeconds:b,authoredCompositionDurationFloorSeconds:A,selectedDurationSeconds:_e,selectedTimelineIds:[Q]}}}}let fe=oe?.getAttribute("data-duration"),pe=fe?parseFloat(fe):null,xe=Math.max(U(pe)?pe:0,A??0);if(xe>0&&U(xe)&&U(Z)&&xe>=Z+.5){let ue=ye;if(typeof ue.to=="function")try{ue.to({},{duration:0},xe)}catch(Re){L("runtime.init.site6",Re)}let _e=H(ye);if(U(_e))return{timeline:ye,selectedTimelineIds:[Q],selectedDurationSeconds:_e,mediaDurationFloorSeconds:b,diagnostics:{code:"root_timeline_padded_to_declared_duration",details:{rootCompositionId:Q,rootDurationSeconds:Z,rootDeclaredDur:pe,authoredCompositionDurationFloorSeconds:A,newDur:_e}}}}return{timeline:ye,selectedTimelineIds:[Q],selectedDurationSeconds:Z,mediaDurationFloorSeconds:b,diagnostics:te.length>0?{code:"root_timeline_auto_nested_children",details:{rootCompositionId:Q,selectedDurationSeconds:Z,autoNestedChildren:te}}:void 0}}if(Ae.length>0){let te=Ae.map(pe=>pe.compositionId),Z=X(Ae),fe=H(Z);if(Z)return{timeline:Z,selectedTimelineIds:te,selectedDurationSeconds:fe,mediaDurationFloorSeconds:b,diagnostics:{code:"root_timeline_missing_fallback",details:{rootCompositionId:Q,fallbackKind:"composite_by_root_children",minCandidateDurationSeconds:k,selectedDurationSeconds:fe,mediaDurationFloorSeconds:b,selectedTimelineIds:te}}}}return p("root_composition_id_unmatched_in_registry")},re=!1,z=()=>{if(!Se)return!1;let d=t.capturedTimeline,p=H(d),h=U(p);if(d&&h&&re)return!1;let b=ae();if(!b.timeline)return!1;if(d&&d===b.timeline)return typeof d.timeScale=="function"&&d.timeScale(t.playbackRate),!1;t.capturedTimeline=b.timeline,typeof t.capturedTimeline.timeScale=="function"&&t.capturedTimeline.timeScale(t.playbackRate);let A=O(t.capturedTimeline,0);if(A<=0&&typeof t.capturedTimeline.progress=="function"&&(t.capturedTimeline.progress(1,!0),t.capturedTimeline.progress(0,!1),t.capturedTimeline.pause()),A>0){try{I.setDuration(A)}catch{}if(typeof t.capturedTimeline.totalTime=="function"){typeof t.capturedTimeline.progress=="function"&&t.capturedTimeline.progress(1e-4,!0);let k=Math.max(0,t.currentTime||0);t.capturedTimeline.totalTime(k,!1),t.capturedTimeline.pause()}let C=window.__hfStudioManualEditsApply;typeof C=="function"&&C()}if(b.diagnostics&&Ee({source:"hf-preview",type:"diagnostic",code:b.diagnostics.code,details:b.diagnostics.details}),Ee({source:"hf-preview",type:"diagnostic",code:"timeline_bound",details:{selectedTimelineIds:b.selectedTimelineIds??[],selectedDurationSeconds:b.selectedDurationSeconds??null,mediaDurationFloorSeconds:b.mediaDurationFloorSeconds??null}}),window.parent!==window){let C=y(),k=A>0?A:0,$=String(k>0?k:1),X=new Set,me=new Set(document.querySelectorAll("[data-start]")),be=oe=>{let Q=oe.parentElement;for(;Q&&Q!==C;){if(me.has(Q))return!0;Q=Q.parentElement}return!1};if(t.capturedTimeline.getChildren)try{for(let oe of t.capturedTimeline.getChildren(!0))if(typeof oe.targets=="function")for(let Q of oe.targets())Q instanceof HTMLElement&&Q!==C&&(Q.hasAttribute("data-start")||be(Q)||X.has(Q)||(X.add(Q),Q.setAttribute("data-start","0"),Q.setAttribute("data-duration",$),Q.setAttribute("data-hf-autostamped","1")))}catch{}if(C instanceof HTMLElement)for(let oe of C.querySelectorAll("[id]"))oe instanceof HTMLElement&&oe!==C&&(oe.hasAttribute("data-start")||be(oe)||X.has(oe)||oe.tagName==="SCRIPT"||oe.tagName==="STYLE"||oe.tagName==="LINK"||(X.add(oe),oe.setAttribute("data-start","0"),oe.setAttribute("data-duration",$),oe.setAttribute("data-hf-autostamped","1")))}for(let C of bt)nn.delete(C),Yi(C);return!0};window.__hfForceTimelineRebind=()=>{re=!1,z()};let q=()=>{let d=y();if(!(d instanceof HTMLElement))return;let p=d.getBoundingClientRect(),h=Number(d.getAttribute("data-width")),b=Number(d.getAttribute("data-height")),A=window.getComputedStyle(d),C=Number.isFinite(h)&&h>0&&Number.isFinite(b)&&b>0,k=p.width<=0||p.height<=0||d.clientWidth<=0||d.clientHeight<=0;!C||!k||f("root_stage_layout_zero",{compositionId:d.getAttribute("data-composition-id")??null,declaredWidth:h,declaredHeight:b,rectWidth:Math.round(p.width),rectHeight:Math.round(p.height),clientWidth:d.clientWidth,clientHeight:d.clientHeight,display:A.display,visibility:A.visibility,overflow:A.overflow},`root-stage-layout-zero:${d.getAttribute("data-composition-id")??"unknown"}`)},J=()=>{t.tornDown||(l!=null&&window.cancelAnimationFrame(l),l=window.requestAnimationFrame(()=>{l=null,q()}))},Pe=()=>{i=d=>{let p=Y(d.error??d.message).slice(0,R);if(!p)return;let h=W(p);Ee({source:"hf-preview",type:"diagnostic",code:h.code,details:{category:h.category,message:p,filename:d.filename||null,line:Number.isFinite(d.lineno)?d.lineno:null,column:Number.isFinite(d.colno)?d.colno:null}})},r=d=>{let p=Y(d.reason).slice(0,R);if(!p)return;let h=W(p);Ee({source:"hf-preview",type:"diagnostic",code:`${h.code}_unhandled_rejection`,details:{category:`${h.category}-unhandled-rejection`,message:p}})},window.addEventListener("error",i),window.addEventListener("unhandledrejection",r)},Ne=()=>{let d=Array.from(document.querySelectorAll("img, video, audio, source, link[rel=\'stylesheet\']"));for(let h of d){let b=()=>{if(!(h instanceof Element))return;let A=h.tagName.toLowerCase(),C=h.getAttribute("src")??h.getAttribute("href")??h.getAttribute("poster")??null,k=A==="link"?"runtime_stylesheet_load_failed":"runtime_asset_load_failed";f(k,{tagName:A,assetUrl:C,currentSrc:(h instanceof HTMLImageElement||h instanceof HTMLMediaElement)&&h.currentSrc||null,readyState:h instanceof HTMLMediaElement?h.readyState:null,networkState:h instanceof HTMLMediaElement?h.networkState:null},`${k}:${A}:${C??"unknown"}`)};h.addEventListener("error",b),m(()=>{h.removeEventListener("error",b)})}let p=document.fonts;p&&p.ready.then(()=>{if(t.tornDown)return;let h=Array.from(p).filter(b=>b.status==="error").map(b=>b.family).filter(b=>!!b).slice(0,10);h.length!==0&&f("runtime_font_load_issue",{failedFamilies:h,totalFaces:Array.from(p).length},`runtime-font-load-issue:${h.join("|")}`)}).catch(()=>{})},yt=(d,p)=>{if(!d.timeline)return!1;let h=t.capturedTimeline;if(h&&h===d.timeline)return!1;let b=Math.max(0,t.currentTime||0),A=t.isPlaying;t.capturedTimeline=d.timeline,typeof t.capturedTimeline.timeScale=="function"&&t.capturedTimeline.timeScale(t.playbackRate);try{t.capturedTimeline.pause(),t.capturedTimeline.seek(b,!1),A&&t.capturedTimeline.play()}catch(C){L("runtime.init.site7",C)}return Ee({source:"hf-preview",type:"diagnostic",code:"timeline_loop_guard_rebind",details:{reason:p,previousTime:b,selectedTimelineIds:d.selectedTimelineIds??[],selectedDurationSeconds:d.selectedDurationSeconds??null,mediaDurationFloorSeconds:d.mediaDurationFloorSeconds??null}}),!0},Ce=null,Ji=!1,bt=new Set,nn=new WeakMap,rn=()=>{t.tornDown||(Ce!=null&&window.clearTimeout(Ce),Ce=window.setTimeout(()=>{if(t.tornDown)return;Ce=null;let d=ae();if(!d.timeline||!U(d.mediaDurationFloorSeconds??null))return;if(!t.capturedTimeline){z()&&(st(),Te(!0));return}if(Ji)return;let h=H(t.capturedTimeline),b=d.selectedDurationSeconds??H(d.timeline);U(b)&&(!U(h)||b>=h+N)&&yt(d,"manual")&&(Ji=!0,Ee({source:"hf-preview",type:"diagnostic",code:"timeline_rebind_after_media_metadata",details:{previousDurationSeconds:h??null,selectedDurationSeconds:b??null,selectedTimelineIds:d.selectedTimelineIds??[],mediaDurationFloorSeconds:d.mediaDurationFloorSeconds??null}}),st(),Te(!0))},v))},ma=()=>{for(let d of bt)d.removeEventListener("loadedmetadata",rn),d.removeEventListener("durationchange",rn);bt.clear()},kn=()=>{if(t.tornDown)return;let d=Array.from(document.querySelectorAll("video, audio"));for(let p of d){if(bt.has(p))continue;bt.add(p);let h=Number.parseFloat(p.dataset.volume??"");Number.isFinite(h)&&(p.volume=Math.max(0,Math.min(1,h))),p.addEventListener("loadedmetadata",rn),p.addEventListener("durationchange",rn),p.preload!=="auto"&&(p.preload="auto"),p.readyState<HTMLMediaElement.HAVE_FUTURE_DATA&&p.load(),Yi(p)}},Yi=d=>{nn.has(d)||Cr(d,t.capturedTimeline,O(t.capturedTimeline,0),nn)},Dn=new WeakMap,Xi=d=>{let p=Dn.get(d);if(p!==void 0)return p;let h=window.getComputedStyle(d).position,b=h==="static"||h==="relative"||h==="sticky";return Dn.set(d,b),b},In=new WeakMap,pa=d=>{let p=In.get(d);if(p!==void 0)return p;let h=d.querySelector("[data-start]")===null;return In.set(d,h),h},ha=()=>{Dn=new WeakMap,In=new WeakMap},ve=()=>{let d=C=>{let k=C.closest("[data-composition-id]"),$=k?T(k,0):null,X=k?G(k,{includeAuthoredTimingAttrs:!0}):null;return{compositionRoot:k,inheritedStart:$,inheritedDuration:X}},p=Fr({shouldIncludeElement:C=>C.hasAttribute("data-start")||!!d(C).compositionRoot,resolveStartSeconds:C=>{let k=d(C);return j(C,k.inheritedStart??0)},resolveDurationSeconds:C=>{let k=d(C),$=j(C,k.inheritedStart??0),X=Number.parseFloat(C.dataset.playbackStart??C.dataset.mediaStart??"0")||0,me=k.inheritedStart!=null&&k.inheritedDuration!=null&&k.inheritedDuration>0?Math.max(0,k.inheritedStart+k.inheritedDuration-$):null,be=Number.isFinite(C.duration)&&C.duration>X?Math.max(0,C.duration-X):null,oe=Number.parseFloat(C.dataset.duration??""),Q=Number.isFinite(oe)&&oe>0?oe:null,ye=[be,me,Q].filter(tt=>tt!=null);return ye.length>0?Math.min(...ye):null}});for(let C of p.mediaClips){let k=nn.get(C.el);k&&(C.volumeKeyframes=k)}let h=t.mediaForceSyncNextTick;h&&(t.mediaForceSyncNextTick=!1),t.nativeMediaSyncDisabled||Mr({clips:p.mediaClips,timeSeconds:t.currentTime,playing:t.isPlaying,playbackRate:t.playbackRate,outputMuted:t.mediaOutputMuted||!t.webAudioMediaDisabled&&!t.nativeMediaSyncDisabled&&de.isActive(),userMuted:t.bridgeMuted,userVolume:t.bridgeVolume,forceSync:h,onElementVolume:(C,k)=>de.setElementVolume(C,k),isWebAudioOwned:C=>de.ownsElement(C),onAutoplayBlocked:()=>{t.mediaAutoplayBlockedPosted||(t.mediaAutoplayBlockedPosted=!0,Ee({source:"hf-preview",type:"media-autoplay-blocked"}))}});let b=Array.from(document.querySelectorAll("[data-start]")),A=y();for(let C of b){if(!(C instanceof HTMLElement))continue;let k=ne(C,t.currentTime);if(k){let $=C.parentElement;for(;$&&$!==A;){if($ instanceof HTMLElement&&$.hasAttribute("data-start")&&!ne($,t.currentTime)){k=!1;break}$=$.parentElement}}C.style.visibility=k?"visible":"hidden",(C instanceof HTMLVideoElement||C instanceof HTMLImageElement)&&n?.setSourceVisibility(C,k),k?Xi(C)&&C.style.removeProperty("display"):Xi(C)&&pa(C)&&(C.style.display="none")}},Te=d=>{let p=Math.max(0,Math.round((t.currentTime||0)*t.canonicalFps)),h=Date.now();(d||p!==t.bridgeLastPostedFrame||t.isPlaying!==t.bridgeLastPostedPlaying||t.bridgeMuted!==t.bridgeLastPostedMuted||h-t.bridgeLastPostedAt>=t.bridgeMaxPostIntervalMs)&&(t.bridgeLastPostedFrame=p,t.bridgeLastPostedPlaying=t.isPlaying,t.bridgeLastPostedMuted=t.bridgeMuted,t.bridgeLastPostedAt=h,Ee({source:"hf-preview",type:"state",frame:p,isPlaying:t.isPlaying,muted:t.bridgeMuted,playbackRate:t.playbackRate}))},Pn="",xa=()=>{let d="";for(let p of document.querySelectorAll("[data-start]"))d+=`${p.id}:${p.tagName}|`;return d},st=()=>{F(),w(),_();let d=y();if(d){let b=M(d.getAttribute("data-width")),A=M(d.getAttribute("data-height")),C=b?parseInt(b,10):0,k=A?parseInt(A,10):0;C>0&&k>0&&Ee({source:"hf-preview",type:"stage-size",width:C,height:k})}z();let p=Or({canonicalFps:t.canonicalFps});window.__clipManifest=p;let h=xa();if(Pn!==h&&ha(),!window.__clipTree||Pn!==h){let b=window;window.__clipTree=Rr({startResolver:ze({timelineRegistry:b.__timelines??{},includeAuthoredTimingAttrs:!0}),timelineRegistry:b.__timelines??{},rootDuration:p.durationInFrames/t.canonicalFps}),Pn=h}Ee(p),J()},Oe=(d,p=0)=>{for(let h of t.deterministicAdapters){try{d==="discover"&&h.discover(),d==="pause"&&h.pause(),d==="play"&&h.play&&h.play()}catch(b){L("runtime.init.site8",b)}if(d==="discover")try{h.seek({time:p})}catch(b){L("runtime.init.site9",b)}}},Ze=()=>{window.__renderReady=!1},St=null,At=!0,ga=()=>{let d=[];for(let p of t.deterministicAdapters){let h=p.getReadyPromise;if(typeof h=="function")try{let b=h();b&&d.push(b)}catch(b){L("runtime.init.adapterReady",b)}}return d},ya=()=>{let d=ga();if(d.length===0)return St=null,At=!0,!0;let p=d.length===1?d[0]:Promise.all(d);return p!==St&&(St=p,At=!1,Promise.resolve(p).then(()=>{St===p&&(At=!0,Ze())},h=>{St===p&&(At=!0,L("runtime.init.adapterReady",h),Ze())})),At};if(Se)Ri();else{let d={injectedStyles:t.injectedCompStyles,injectedScripts:t.injectedCompScripts,parseDimensionPx:M,onDiagnostic:({code:p,details:h})=>{Ee({source:"hf-preview",type:"diagnostic",code:p,details:h})}};Es(d).then(()=>As(d)).finally(()=>{Se=!0,kn(),Ne(),Ri(),Ze()})}let on=Nr({postMessage:d=>Ee(d)});on.installPickerApi();let We=Os();n=We,m(()=>{We.destroy(),n=null});let On=d=>{let p=Number(d);!Number.isFinite(p)||p<=0?t.playbackRate=1:t.playbackRate=Math.max(.1,Math.min(5,p)),t.mediaForceSyncNextTick=!0,t.capturedTimeline&&typeof t.capturedTimeline.timeScale=="function"&&t.capturedTimeline.timeScale(t.playbackRate);let h=document.querySelectorAll("video, audio");for(let b of h)if(b instanceof HTMLMediaElement)try{b.playbackRate=t.playbackRate}catch(A){L("runtime.init.site10",A)}},he=Lr({getTimeline:()=>t.capturedTimeline,setTimeline:d=>{t.capturedTimeline=d},getTimelineRegistry:()=>window.__timelines??{},getIsPlaying:()=>t.isPlaying,setIsPlaying:d=>{t.isPlaying!==d&&(t.mediaForceSyncNextTick=!0),t.isPlaying=d},getPlaybackRate:()=>t.playbackRate,setPlaybackRate:On,getCanonicalFps:()=>t.canonicalFps,onSyncMedia:(d,p)=>{t.currentTime=Math.max(0,Number(d)||0),t.isPlaying!==p&&(t.mediaForceSyncNextTick=!0),t.isPlaying=p,ve()},onStatePost:Te,onDeterministicSeek:d=>{for(let p of t.deterministicAdapters)try{p.seek({time:Number(d)||0})}catch(h){L("runtime.init.site11",h)}},onDeterministicPause:()=>Oe("pause"),onDeterministicPlay:()=>Oe("play"),onRenderFrameSeek:()=>{We.redraw()},onShowNativeVideos:()=>{},getSafeDuration:()=>O(t.capturedTimeline,0)});window.__player=x(he),window.__playerReady=!0,rr(Ee),wt("composition_loaded",{duration:he.getDuration(),compositionId:document.querySelector("[data-composition-id]")?.getAttribute("data-composition-id")??null}),t.controlBridgeHandler=ir({onPlay:()=>{he.play(),wt("composition_played",{time:he.getTime()})},onPause:()=>{he.pause(),wt("composition_paused",{time:he.getTime()})},onStopMedia:()=>{de.stopAll();let d=document.querySelectorAll("video, audio");for(let p of d)p instanceof HTMLMediaElement&&!p.paused&&p.pause()},onSeek:(d,p)=>{let h=Math.max(0,d)/t.canonicalFps;he.seek(h),wt("composition_seeked",{time:h})},onSetMuted:d=>{t.bridgeMuted=d;let p=d||t.mediaOutputMuted;de.setMuted(p);let h=document.querySelectorAll("video, audio");for(let b of h)b instanceof HTMLMediaElement&&(b.muted=p||b.defaultMuted)},onSetVolume:d=>{t.bridgeVolume=d,de.setVolume(d);let p=document.querySelectorAll("video, audio");for(let h of p){if(!(h instanceof HTMLMediaElement))continue;let b=parseFloat(h.dataset.volume??""),A=Number.isFinite(b)?b:1;h.volume=A*d}},onSetMediaOutputMuted:d=>{t.mediaOutputMuted=d;let p=d||t.bridgeMuted;de.setMuted(p);let h=document.querySelectorAll("video, audio");for(let b of h)b instanceof HTMLMediaElement&&(b.muted=p||b.defaultMuted)},onSetNativeMediaSyncDisabled:d=>{t.nativeMediaSyncDisabled!==d&&(t.nativeMediaSyncDisabled=d,t.mediaForceSyncNextTick=!0,d?(de.stopAll(),I.detachAudioSource()):ve())},onSetWebAudioMediaDisabled:d=>{t.webAudioMediaDisabled!==d&&(t.webAudioMediaDisabled=d,t.mediaForceSyncNextTick=!0,d&&(de.stopAll(),I.detachAudioSource()),ve())},onSetPlaybackRate:d=>{On(d),t.transportClock&&t.transportClock.setRate(t.playbackRate),tr()},onSetColorGrading:(d,p)=>{We.setGrading(d,p)},onSetColorGradingCompare:(d,p)=>{We.setCompare(d,p)},onTick:()=>{if(t.tornDown||!I.isPlaying())return;let d=I.now();if(t.currentTime=d,et(d),I.reachedEnd()){de.stopAll(),I.detachAudioSource(),I.pause(),t.isPlaying=!1;let p=I.getDuration();Number.isFinite(p)&&(I.seek(p),t.currentTime=p,et(p)),Oe("pause"),ve(),Te(!0)}},onEnablePickMode:()=>on.enablePickMode(),onDisablePickMode:()=>on.disablePickMode()}),t.deterministicAdapters=[Er(),or({resolveStartSeconds:d=>T(d,0)}),ar(),cr(),fr(),mr(),pr(),hr(),xr(),gr(),yr(),sr({getTimeline:()=>t.capturedTimeline})],Sr(),Ar(),window.__hfReseekGpu=d=>{let p=Math.max(0,Number(d)||0);window.__hfThreeTime=p,window.__hfTypegpuTime=p,dr(p)},Pe(),kn(),Oe("discover");let I=new Mn;t.transportClock=I;let de=new Nn,Bn=!1;de.init().then(d=>{Bn=d});let ba=()=>{let d=t.capturedTimeline,p=z();t.capturedTimeline&&(p||t.capturedTimeline!==d||!he._timeline)&&(he._timeline=t.capturedTimeline);let h=O(t.capturedTimeline,0);if(h>0&&I.setDuration(h),Oe("discover",t.currentTime),!t.capturedTimeline){let b=window.__timelines??{},A=Object.keys(b).filter(C=>b[C]);if(A.length>0){let k=y()?.getAttribute("data-composition-id")??null;f("root_timeline_unbound_registry_present",{reason:k?"root data-composition-id has no matching key in window.__timelines":"root composition element has no data-composition-id attribute",rootCompositionId:k,registeredTimelineKeys:A},"root_timeline_unbound_registry_present"),console.warn("[hyperframes] Root timeline not bound \\u2014 render will freeze at t=0. "+(k?`Root data-composition-id is "${k}" but window.__timelines has no such key. `:"Root composition element has no data-composition-id. ")+`Registered timeline keys: [${A.join(", ")}]. Register the root timeline under its data-composition-id (window.__timelines["${k??"<root-id>"}"] = tl).`)}}window.__renderReady=!0,st(),Te(!0)};if(Ze=()=>{if(!Se||window.__hfTimelinesBuilding){window.__renderReady=!1;return}if(Oe("discover",t.currentTime),!ya()){window.__renderReady=!1;return}ba()},window.__hfTimelinesBuilding){window.__renderReady=!1;let d=()=>{window.removeEventListener("hf-timelines-built",d),Ze()};window.addEventListener("hf-timelines-built",d)}Ze(),Se&&setTimeout(()=>{Ze()},0);let sn=0,Hn=!1,Sa=(d,p,h)=>{try{d.pause(),typeof d.totalTime=="function"?d.totalTime(p,!1):d.seek(p,!1)}catch(b){L(h,b)}},Aa=d=>{let p=window.__timelines??{},h=y()?.getAttribute("data-composition-id")??null;for(let[b,A]of Object.entries(p)){if(!A||b===h)continue;let C=document.querySelector(`[data-composition-id="${CSS.escape(b)}"]`);if(!C)continue;let k=T(C,0);if(!Number.isFinite(k))continue;let $=G(C,{includeAuthoredTimingAttrs:!0}),X=H(A),me=$!=null&&$>0?$:X,be=Math.max(0,me!=null&&me>0?Math.min(me,d-k):d-k);Sa(A,be,"runtime.init.transport.childTimeline")}},Ea=d=>{let p=window.__timelines??{};for(let h of Object.values(p))if(!(!h||h===d))try{h.play()}catch(b){L("runtime.init.activateSiblings",b)}},et=(d,p)=>{let h=t.capturedTimeline;if(h){p?.activateChildren&&Ea(h);let b=h,A=d;if(typeof b.totalDuration=="function")try{let C=Number(b.totalDuration());Number.isFinite(C)&&C>0&&d>C&&(A=C)}catch(C){L("runtime.init.transport.clampDuration",C)}try{typeof h.totalTime=="function"?h.totalTime(A,!1):h.seek(A,!1)}catch(C){L("runtime.init.transport.seek",C)}}else Aa(d);for(let b of t.deterministicAdapters)try{b.seek({time:d})}catch(A){L("runtime.init.transport.adapter",A)}},wa=()=>{try{return document.querySelector(`[${Hs}]`)!=null}catch{return!1}},Qi=()=>{if(!(t.tornDown||Hn)){Hn=!0;try{if(t.transportRafId=window.requestAnimationFrame(Qi),sn+=1,sn%60===0&&!(I.isPlaying()&&t.capturedTimeline!=null&&I.now()<S)){let h=t.capturedTimeline;if(z()){t.capturedTimeline&&!he._timeline&&(he._timeline=t.capturedTimeline),t.capturedTimeline&&t.capturedTimeline!==h&&t.capturedTimeline.pause();let b=O(t.capturedTimeline,0);b>0&&I.setDuration(b),st()}}if(sn%20===0&&st(),sn%30===0&&kn(),t.capturedTimeline){let p=O(t.capturedTimeline,0);p>0&&(!I.isPlaying()||p>=I.getDuration())&&I.setDuration(p)}if(I.isPlaying()&&!t.mediaOutputMuted)if(!t.nativeMediaSyncDisabled&&!t.webAudioMediaDisabled&&de.isActive()&&de.context){let p=de.getTime();p>=0&&I.attachAudioSource({currentTimeSeconds:p})}else{let p=document.querySelectorAll("audio[data-start]"),h=!1;for(let b of p){if(!(b instanceof HTMLMediaElement)||!b.isConnected)continue;let A=Number.parseFloat(b.dataset.start??""),C=Number.parseFloat(b.dataset.duration??""),k=Number.isFinite(C)&&C>0?A+C:1/0,$=Number.parseFloat(b.dataset.playbackStart??b.dataset.mediaStart??"0")||0;if(Number.isFinite(A)&&t.currentTime>=A&&t.currentTime<=k){b.paused?!b.error&&b.readyState<HTMLMediaElement.HAVE_FUTURE_DATA&&(I.attachAudioSource({currentTimeSeconds:t.currentTime}),h=!0):(I.attachAudioSource({el:b,compositionStart:A,mediaStart:$}),h=!0);break}}!h&&I.hasAudioSource()&&I.detachAudioSource()}else I.hasAudioSource()&&I.detachAudioSource();let d=I.now();if(t.currentTime=d,(I.isPlaying()||!wa())&&et(d),I.isPlaying()&&I.reachedEnd()){de.stopAll(),I.detachAudioSource(),I.pause(),t.isPlaying=!1;let p=I.getDuration();Number.isFinite(p)&&(I.seek(p),t.currentTime=p,et(p)),Oe("pause"),ve(),Te(!0);return}I.isPlaying()&&ve(),Te(!1)}finally{Hn=!1}}},Zi=d=>{let p=document.querySelectorAll("video, audio");for(let h of p){if(!(h instanceof HTMLMediaElement)||!h.isConnected)continue;let b=Number.parseFloat(h.dataset.start??"");if(!Number.isFinite(b))continue;let A=Number.parseFloat(h.dataset.duration??""),C=Number.isFinite(A)&&A>0?b+A:1/0;if(d<b||d>=C)continue;let k=Number.parseFloat(h.dataset.playbackStart??h.dataset.mediaStart??"0")||0,$=d-b+k;if($>=0)try{h.currentTime=$}catch{}}},er=()=>{if(t.nativeMediaSyncDisabled||t.webAudioMediaDisabled)return;let d=de.startGeneration(),p=document.querySelectorAll("audio[data-start]");for(let h of p){if(!(h instanceof HTMLMediaElement)||!h.isConnected)continue;let b=Number.parseFloat(h.dataset.start??"");if(!Number.isFinite(b))continue;let A=Number.parseFloat(h.dataset.playbackStart??h.dataset.mediaStart??"0")||0,C=Number.parseFloat(h.dataset.volume??""),k=Number.isFinite(C)?C:1,$=Number.parseFloat(h.dataset.duration??""),X=Number.isFinite($)&&$>0?$:Number.POSITIVE_INFINITY,me=h.closest("[data-composition-id]");if(me){let be=T(me,0),oe=G(me,{includeAuthoredTimingAttrs:!0});oe!=null&&oe>0&&(X=Math.min(X,Math.max(0,be+oe-b)))}de.decodeAudioElement(h).then(be=>{!be||!I.isPlaying()||de.schedulePlayback(h,be,b,A,I.now(),k*t.bridgeVolume,d,t.playbackRate,X)})}},tr=()=>{de.setRate(t.playbackRate)&&!t.nativeMediaSyncDisabled&&!t.webAudioMediaDisabled&&Bn&&I.isPlaying()&&de.hasBoundedActiveSources()&&(de.stopAll(),er())};if(he.play=()=>{let d=t.capturedTimeline;if(I.isPlaying())return;let p=O(d,0);if(p>0)I.setDuration(p),I.reachedEnd()&&(I.seek(0),t.currentTime=0,et(0));else{let h=y(),b=Number(h?.getAttribute("data-duration")??0);b>0&&I.setDuration(b)}d&&d.pause(),I.play()&&(t.isPlaying=!0,t.mediaForceSyncNextTick=!0,Zi(I.now()),Bn&&!t.nativeMediaSyncDisabled&&!t.webAudioMediaDisabled&&er(),Oe("play"),ve(),We.redraw(),Te(!0))},he.pause=()=>{if(!I.isPlaying())return;de.stopAll(),I.detachAudioSource(),I.pause(),t.isPlaying=!1,t.currentTime=I.now(),t.mediaForceSyncNextTick=!0,Zi(t.currentTime);let d=t.capturedTimeline;d&&d.pause(),Oe("pause"),ve(),We.redraw(),Te(!0)},he.seek=d=>{let p=lt(Math.max(0,Number(d)||0),t.canonicalFps);de.stopAll(),I.detachAudioSource(),I.isPlaying()&&I.pause(),I.seek(p),t.currentTime=I.now(),t.isPlaying=!1,t.mediaForceSyncNextTick=!0;let b=t.capturedTimeline;b&&b.pause(),et(t.currentTime),Oe("pause"),ve(),We.redraw(),Te(!0)},he.renderSeek=d=>{let p=lt(Math.max(0,Number(d)||0),t.canonicalFps);I.isPlaying()&&I.pause(),I.seek(p),t.currentTime=I.now(),t.isPlaying=!1,t.mediaForceSyncNextTick=!0,et(t.currentTime,{activateChildren:!0}),ve(),We.redraw(),Te(!0)},he.getTime=()=>I.now(),he.getDuration=()=>{let d=I.getDuration();return Number.isFinite(d)?d:0},he.isPlaying=()=>I.isPlaying(),he.setPlaybackRate=d=>{On(d),I.setRate(t.playbackRate),tr()},t.capturedTimeline){let d=O(t.capturedTimeline,0);d>0&&I.setDuration(d),t.capturedTimeline.pause()}let nr=window.__player;if(nr){let d=["play","pause","seek","renderSeek","getTime","getDuration","isPlaying"];for(let p of d)Object.defineProperty(nr,p,{get:()=>he[p],set:h=>{he[p]=h},configurable:!0})}t.transportRafId=window.requestAnimationFrame(Qi),st(),Te(!0);let Wn=()=>{if(!t.tornDown){t.tornDown=!0,t.transportRafId!=null&&(window.cancelAnimationFrame(t.transportRafId),t.transportRafId=null),t.transportClock=null,de.destroy(),Ce!=null&&(window.clearTimeout(Ce),Ce=null),l!=null&&(window.cancelAnimationFrame(l),l=null),ma(),t.controlBridgeHandler&&(window.removeEventListener("message",t.controlBridgeHandler),t.controlBridgeHandler=null),i&&(window.removeEventListener("error",i),i=null),r&&(window.removeEventListener("unhandledrejection",r),r=null),t.beforeUnloadHandler&&(window.removeEventListener("beforeunload",t.beforeUnloadHandler),t.beforeUnloadHandler=null),on.disablePickMode();for(let d of t.deterministicAdapters)if(!(!d||typeof d.revert!="function"))try{d.revert()}catch(p){L("runtime.init.site12",p)}t.deterministicAdapters=[];for(let d of o.splice(0))try{d()}catch(p){L("runtime.init.site13",p)}for(let d of t.injectedCompStyles)try{d.remove()}catch(p){L("runtime.init.site14",p)}t.injectedCompStyles=[];for(let d of t.injectedCompScripts)try{d.remove()}catch(p){L("runtime.init.site15",p)}t.injectedCompScripts=[],t.capturedTimeline=null,window.__hfRuntimeTeardown===Wn&&(window.__hfRuntimeTeardown=null)}};window.__hfRuntimeTeardown=Wn,t.beforeUnloadHandler=Wn,window.addEventListener("beforeunload",t.beforeUnloadHandler)}var Gs=["BN","BN","BN","BN","BN","BN","BN","BN","BN","S","B","S","WS","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","B","B","B","S","WS","ON","ON","ET","ET","ET","ON","ON","ON","ON","ON","ES","CS","ES","CS","CS","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","CS","ON","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","ON","ON","ON","BN","BN","BN","BN","BN","BN","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","CS","ON","ET","ET","ET","ET","ON","ON","ON","ON","L","ON","ON","BN","ON","ON","ET","ET","EN","EN","ON","L","ON","ON","ON","EN","L","ON","ON","ON","ON","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","ON","L","L","L","L","L","L","L","L"],Gi=[[697,698,"ON"],[706,719,"ON"],[722,735,"ON"],[741,749,"ON"],[751,767,"ON"],[768,879,"NSM"],[884,885,"ON"],[894,894,"ON"],[900,901,"ON"],[903,903,"ON"],[1014,1014,"ON"],[1155,1161,"NSM"],[1418,1418,"ON"],[1421,1422,"ON"],[1423,1423,"ET"],[1424,1424,"R"],[1425,1469,"NSM"],[1470,1470,"R"],[1471,1471,"NSM"],[1472,1472,"R"],[1473,1474,"NSM"],[1475,1475,"R"],[1476,1477,"NSM"],[1478,1478,"R"],[1479,1479,"NSM"],[1480,1535,"R"],[1536,1541,"AN"],[1542,1543,"ON"],[1544,1544,"AL"],[1545,1546,"ET"],[1547,1547,"AL"],[1548,1548,"CS"],[1549,1549,"AL"],[1550,1551,"ON"],[1552,1562,"NSM"],[1563,1610,"AL"],[1611,1631,"NSM"],[1632,1641,"AN"],[1642,1642,"ET"],[1643,1644,"AN"],[1645,1647,"AL"],[1648,1648,"NSM"],[1649,1749,"AL"],[1750,1756,"NSM"],[1757,1757,"AN"],[1758,1758,"ON"],[1759,1764,"NSM"],[1765,1766,"AL"],[1767,1768,"NSM"],[1769,1769,"ON"],[1770,1773,"NSM"],[1774,1775,"AL"],[1776,1785,"EN"],[1786,1808,"AL"],[1809,1809,"NSM"],[1810,1839,"AL"],[1840,1866,"NSM"],[1867,1957,"AL"],[1958,1968,"NSM"],[1969,1983,"AL"],[1984,2026,"R"],[2027,2035,"NSM"],[2036,2037,"R"],[2038,2041,"ON"],[2042,2044,"R"],[2045,2045,"NSM"],[2046,2069,"R"],[2070,2073,"NSM"],[2074,2074,"R"],[2075,2083,"NSM"],[2084,2084,"R"],[2085,2087,"NSM"],[2088,2088,"R"],[2089,2093,"NSM"],[2094,2136,"R"],[2137,2139,"NSM"],[2140,2143,"R"],[2144,2191,"AL"],[2192,2193,"AN"],[2194,2198,"AL"],[2199,2207,"NSM"],[2208,2249,"AL"],[2250,2273,"NSM"],[2274,2274,"AN"],[2275,2306,"NSM"],[2362,2362,"NSM"],[2364,2364,"NSM"],[2369,2376,"NSM"],[2381,2381,"NSM"],[2385,2391,"NSM"],[2402,2403,"NSM"],[2433,2433,"NSM"],[2492,2492,"NSM"],[2497,2500,"NSM"],[2509,2509,"NSM"],[2530,2531,"NSM"],[2546,2547,"ET"],[2555,2555,"ET"],[2558,2558,"NSM"],[2561,2562,"NSM"],[2620,2620,"NSM"],[2625,2626,"NSM"],[2631,2632,"NSM"],[2635,2637,"NSM"],[2641,2641,"NSM"],[2672,2673,"NSM"],[2677,2677,"NSM"],[2689,2690,"NSM"],[2748,2748,"NSM"],[2753,2757,"NSM"],[2759,2760,"NSM"],[2765,2765,"NSM"],[2786,2787,"NSM"],[2801,2801,"ET"],[2810,2815,"NSM"],[2817,2817,"NSM"],[2876,2876,"NSM"],[2879,2879,"NSM"],[2881,2884,"NSM"],[2893,2893,"NSM"],[2901,2902,"NSM"],[2914,2915,"NSM"],[2946,2946,"NSM"],[3008,3008,"NSM"],[3021,3021,"NSM"],[3059,3064,"ON"],[3065,3065,"ET"],[3066,3066,"ON"],[3072,3072,"NSM"],[3076,3076,"NSM"],[3132,3132,"NSM"],[3134,3136,"NSM"],[3142,3144,"NSM"],[3146,3149,"NSM"],[3157,3158,"NSM"],[3170,3171,"NSM"],[3192,3198,"ON"],[3201,3201,"NSM"],[3260,3260,"NSM"],[3276,3277,"NSM"],[3298,3299,"NSM"],[3328,3329,"NSM"],[3387,3388,"NSM"],[3393,3396,"NSM"],[3405,3405,"NSM"],[3426,3427,"NSM"],[3457,3457,"NSM"],[3530,3530,"NSM"],[3538,3540,"NSM"],[3542,3542,"NSM"],[3633,3633,"NSM"],[3636,3642,"NSM"],[3647,3647,"ET"],[3655,3662,"NSM"],[3761,3761,"NSM"],[3764,3772,"NSM"],[3784,3790,"NSM"],[3864,3865,"NSM"],[3893,3893,"NSM"],[3895,3895,"NSM"],[3897,3897,"NSM"],[3898,3901,"ON"],[3953,3966,"NSM"],[3968,3972,"NSM"],[3974,3975,"NSM"],[3981,3991,"NSM"],[3993,4028,"NSM"],[4038,4038,"NSM"],[4141,4144,"NSM"],[4146,4151,"NSM"],[4153,4154,"NSM"],[4157,4158,"NSM"],[4184,4185,"NSM"],[4190,4192,"NSM"],[4209,4212,"NSM"],[4226,4226,"NSM"],[4229,4230,"NSM"],[4237,4237,"NSM"],[4253,4253,"NSM"],[4957,4959,"NSM"],[5008,5017,"ON"],[5120,5120,"ON"],[5760,5760,"WS"],[5787,5788,"ON"],[5906,5908,"NSM"],[5938,5939,"NSM"],[5970,5971,"NSM"],[6002,6003,"NSM"],[6068,6069,"NSM"],[6071,6077,"NSM"],[6086,6086,"NSM"],[6089,6099,"NSM"],[6107,6107,"ET"],[6109,6109,"NSM"],[6128,6137,"ON"],[6144,6154,"ON"],[6155,6157,"NSM"],[6158,6158,"BN"],[6159,6159,"NSM"],[6277,6278,"NSM"],[6313,6313,"NSM"],[6432,6434,"NSM"],[6439,6440,"NSM"],[6450,6450,"NSM"],[6457,6459,"NSM"],[6464,6464,"ON"],[6468,6469,"ON"],[6622,6655,"ON"],[6679,6680,"NSM"],[6683,6683,"NSM"],[6742,6742,"NSM"],[6744,6750,"NSM"],[6752,6752,"NSM"],[6754,6754,"NSM"],[6757,6764,"NSM"],[6771,6780,"NSM"],[6783,6783,"NSM"],[6832,6877,"NSM"],[6880,6891,"NSM"],[6912,6915,"NSM"],[6964,6964,"NSM"],[6966,6970,"NSM"],[6972,6972,"NSM"],[6978,6978,"NSM"],[7019,7027,"NSM"],[7040,7041,"NSM"],[7074,7077,"NSM"],[7080,7081,"NSM"],[7083,7085,"NSM"],[7142,7142,"NSM"],[7144,7145,"NSM"],[7149,7149,"NSM"],[7151,7153,"NSM"],[7212,7219,"NSM"],[7222,7223,"NSM"],[7376,7378,"NSM"],[7380,7392,"NSM"],[7394,7400,"NSM"],[7405,7405,"NSM"],[7412,7412,"NSM"],[7416,7417,"NSM"],[7616,7679,"NSM"],[8125,8125,"ON"],[8127,8129,"ON"],[8141,8143,"ON"],[8157,8159,"ON"],[8173,8175,"ON"],[8189,8190,"ON"],[8192,8202,"WS"],[8203,8205,"BN"],[8207,8207,"R"],[8208,8231,"ON"],[8232,8232,"WS"],[8233,8233,"B"],[8234,8238,"BN"],[8239,8239,"CS"],[8240,8244,"ET"],[8245,8259,"ON"],[8260,8260,"CS"],[8261,8286,"ON"],[8287,8287,"WS"],[8288,8303,"BN"],[8304,8304,"EN"],[8308,8313,"EN"],[8314,8315,"ES"],[8316,8318,"ON"],[8320,8329,"EN"],[8330,8331,"ES"],[8332,8334,"ON"],[8352,8399,"ET"],[8400,8432,"NSM"],[8448,8449,"ON"],[8451,8454,"ON"],[8456,8457,"ON"],[8468,8468,"ON"],[8470,8472,"ON"],[8478,8483,"ON"],[8485,8485,"ON"],[8487,8487,"ON"],[8489,8489,"ON"],[8494,8494,"ET"],[8506,8507,"ON"],[8512,8516,"ON"],[8522,8525,"ON"],[8528,8543,"ON"],[8585,8587,"ON"],[8592,8721,"ON"],[8722,8722,"ES"],[8723,8723,"ET"],[8724,9013,"ON"],[9083,9108,"ON"],[9110,9257,"ON"],[9280,9290,"ON"],[9312,9351,"ON"],[9352,9371,"EN"],[9450,9899,"ON"],[9901,10239,"ON"],[10496,11123,"ON"],[11126,11263,"ON"],[11493,11498,"ON"],[11503,11505,"NSM"],[11513,11519,"ON"],[11647,11647,"NSM"],[11744,11775,"NSM"],[11776,11869,"ON"],[11904,11929,"ON"],[11931,12019,"ON"],[12032,12245,"ON"],[12272,12287,"ON"],[12288,12288,"WS"],[12289,12292,"ON"],[12296,12320,"ON"],[12330,12333,"NSM"],[12336,12336,"ON"],[12342,12343,"ON"],[12349,12351,"ON"],[12441,12442,"NSM"],[12443,12444,"ON"],[12448,12448,"ON"],[12539,12539,"ON"],[12736,12773,"ON"],[12783,12783,"ON"],[12829,12830,"ON"],[12880,12895,"ON"],[12924,12926,"ON"],[12977,12991,"ON"],[13004,13007,"ON"],[13175,13178,"ON"],[13278,13279,"ON"],[13311,13311,"ON"],[19904,19967,"ON"],[42128,42182,"ON"],[42509,42511,"ON"],[42607,42610,"NSM"],[42611,42611,"ON"],[42612,42621,"NSM"],[42622,42623,"ON"],[42654,42655,"NSM"],[42736,42737,"NSM"],[42752,42785,"ON"],[42888,42888,"ON"],[43010,43010,"NSM"],[43014,43014,"NSM"],[43019,43019,"NSM"],[43045,43046,"NSM"],[43048,43051,"ON"],[43052,43052,"NSM"],[43064,43065,"ET"],[43124,43127,"ON"],[43204,43205,"NSM"],[43232,43249,"NSM"],[43263,43263,"NSM"],[43302,43309,"NSM"],[43335,43345,"NSM"],[43392,43394,"NSM"],[43443,43443,"NSM"],[43446,43449,"NSM"],[43452,43453,"NSM"],[43493,43493,"NSM"],[43561,43566,"NSM"],[43569,43570,"NSM"],[43573,43574,"NSM"],[43587,43587,"NSM"],[43596,43596,"NSM"],[43644,43644,"NSM"],[43696,43696,"NSM"],[43698,43700,"NSM"],[43703,43704,"NSM"],[43710,43711,"NSM"],[43713,43713,"NSM"],[43756,43757,"NSM"],[43766,43766,"NSM"],[43882,43883,"ON"],[44005,44005,"NSM"],[44008,44008,"NSM"],[44013,44013,"NSM"],[64285,64285,"R"],[64286,64286,"NSM"],[64287,64296,"R"],[64297,64297,"ES"],[64298,64335,"R"],[64336,64450,"AL"],[64451,64466,"ON"],[64467,64829,"AL"],[64830,64847,"ON"],[64848,64911,"AL"],[64912,64913,"ON"],[64914,64967,"AL"],[64968,64975,"ON"],[64976,65007,"BN"],[65008,65020,"AL"],[65021,65023,"ON"],[65024,65039,"NSM"],[65040,65049,"ON"],[65056,65071,"NSM"],[65072,65103,"ON"],[65104,65104,"CS"],[65105,65105,"ON"],[65106,65106,"CS"],[65108,65108,"ON"],[65109,65109,"CS"],[65110,65118,"ON"],[65119,65119,"ET"],[65120,65121,"ON"],[65122,65123,"ES"],[65124,65126,"ON"],[65128,65128,"ON"],[65129,65130,"ET"],[65131,65131,"ON"],[65136,65278,"AL"],[65279,65279,"BN"],[65281,65282,"ON"],[65283,65285,"ET"],[65286,65290,"ON"],[65291,65291,"ES"],[65292,65292,"CS"],[65293,65293,"ES"],[65294,65295,"CS"],[65296,65305,"EN"],[65306,65306,"CS"],[65307,65312,"ON"],[65339,65344,"ON"],[65371,65381,"ON"],[65504,65505,"ET"],[65506,65508,"ON"],[65509,65510,"ET"],[65512,65518,"ON"],[65520,65528,"BN"],[65529,65533,"ON"],[65534,65535,"BN"],[65793,65793,"ON"],[65856,65932,"ON"],[65936,65948,"ON"],[65952,65952,"ON"],[66045,66045,"NSM"],[66272,66272,"NSM"],[66273,66299,"EN"],[66422,66426,"NSM"],[67584,67870,"R"],[67871,67871,"ON"],[67872,68096,"R"],[68097,68099,"NSM"],[68100,68100,"R"],[68101,68102,"NSM"],[68103,68107,"R"],[68108,68111,"NSM"],[68112,68151,"R"],[68152,68154,"NSM"],[68155,68158,"R"],[68159,68159,"NSM"],[68160,68324,"R"],[68325,68326,"NSM"],[68327,68408,"R"],[68409,68415,"ON"],[68416,68863,"R"],[68864,68899,"AL"],[68900,68903,"NSM"],[68904,68911,"AL"],[68912,68921,"AN"],[68922,68927,"AL"],[68928,68937,"AN"],[68938,68968,"R"],[68969,68973,"NSM"],[68974,68974,"ON"],[68975,69215,"R"],[69216,69246,"AN"],[69247,69290,"R"],[69291,69292,"NSM"],[69293,69311,"R"],[69312,69327,"AL"],[69328,69336,"ON"],[69337,69369,"AL"],[69370,69375,"NSM"],[69376,69423,"R"],[69424,69445,"AL"],[69446,69456,"NSM"],[69457,69487,"AL"],[69488,69505,"R"],[69506,69509,"NSM"],[69510,69631,"R"],[69633,69633,"NSM"],[69688,69702,"NSM"],[69714,69733,"ON"],[69744,69744,"NSM"],[69747,69748,"NSM"],[69759,69761,"NSM"],[69811,69814,"NSM"],[69817,69818,"NSM"],[69826,69826,"NSM"],[69888,69890,"NSM"],[69927,69931,"NSM"],[69933,69940,"NSM"],[70003,70003,"NSM"],[70016,70017,"NSM"],[70070,70078,"NSM"],[70089,70092,"NSM"],[70095,70095,"NSM"],[70191,70193,"NSM"],[70196,70196,"NSM"],[70198,70199,"NSM"],[70206,70206,"NSM"],[70209,70209,"NSM"],[70367,70367,"NSM"],[70371,70378,"NSM"],[70400,70401,"NSM"],[70459,70460,"NSM"],[70464,70464,"NSM"],[70502,70508,"NSM"],[70512,70516,"NSM"],[70587,70592,"NSM"],[70606,70606,"NSM"],[70608,70608,"NSM"],[70610,70610,"NSM"],[70625,70626,"NSM"],[70712,70719,"NSM"],[70722,70724,"NSM"],[70726,70726,"NSM"],[70750,70750,"NSM"],[70835,70840,"NSM"],[70842,70842,"NSM"],[70847,70848,"NSM"],[70850,70851,"NSM"],[71090,71093,"NSM"],[71100,71101,"NSM"],[71103,71104,"NSM"],[71132,71133,"NSM"],[71219,71226,"NSM"],[71229,71229,"NSM"],[71231,71232,"NSM"],[71264,71276,"ON"],[71339,71339,"NSM"],[71341,71341,"NSM"],[71344,71349,"NSM"],[71351,71351,"NSM"],[71453,71453,"NSM"],[71455,71455,"NSM"],[71458,71461,"NSM"],[71463,71467,"NSM"],[71727,71735,"NSM"],[71737,71738,"NSM"],[71995,71996,"NSM"],[71998,71998,"NSM"],[72003,72003,"NSM"],[72148,72151,"NSM"],[72154,72155,"NSM"],[72160,72160,"NSM"],[72193,72198,"NSM"],[72201,72202,"NSM"],[72243,72248,"NSM"],[72251,72254,"NSM"],[72263,72263,"NSM"],[72273,72278,"NSM"],[72281,72283,"NSM"],[72330,72342,"NSM"],[72344,72345,"NSM"],[72544,72544,"NSM"],[72546,72548,"NSM"],[72550,72550,"NSM"],[72752,72758,"NSM"],[72760,72765,"NSM"],[72850,72871,"NSM"],[72874,72880,"NSM"],[72882,72883,"NSM"],[72885,72886,"NSM"],[73009,73014,"NSM"],[73018,73018,"NSM"],[73020,73021,"NSM"],[73023,73029,"NSM"],[73031,73031,"NSM"],[73104,73105,"NSM"],[73109,73109,"NSM"],[73111,73111,"NSM"],[73459,73460,"NSM"],[73472,73473,"NSM"],[73526,73530,"NSM"],[73536,73536,"NSM"],[73538,73538,"NSM"],[73562,73562,"NSM"],[73685,73692,"ON"],[73693,73696,"ET"],[73697,73713,"ON"],[78912,78912,"NSM"],[78919,78933,"NSM"],[90398,90409,"NSM"],[90413,90415,"NSM"],[92912,92916,"NSM"],[92976,92982,"NSM"],[94031,94031,"NSM"],[94095,94098,"NSM"],[94178,94178,"ON"],[94180,94180,"NSM"],[113821,113822,"NSM"],[113824,113827,"BN"],[117760,117973,"ON"],[118e3,118009,"EN"],[118010,118012,"ON"],[118016,118451,"ON"],[118458,118480,"ON"],[118496,118512,"ON"],[118528,118573,"NSM"],[118576,118598,"NSM"],[119143,119145,"NSM"],[119155,119162,"BN"],[119163,119170,"NSM"],[119173,119179,"NSM"],[119210,119213,"NSM"],[119273,119274,"ON"],[119296,119361,"ON"],[119362,119364,"NSM"],[119365,119365,"ON"],[119552,119638,"ON"],[120513,120513,"ON"],[120539,120539,"ON"],[120571,120571,"ON"],[120597,120597,"ON"],[120629,120629,"ON"],[120655,120655,"ON"],[120687,120687,"ON"],[120713,120713,"ON"],[120745,120745,"ON"],[120771,120771,"ON"],[120782,120831,"EN"],[121344,121398,"NSM"],[121403,121452,"NSM"],[121461,121461,"NSM"],[121476,121476,"NSM"],[121499,121503,"NSM"],[121505,121519,"NSM"],[122880,122886,"NSM"],[122888,122904,"NSM"],[122907,122913,"NSM"],[122915,122916,"NSM"],[122918,122922,"NSM"],[123023,123023,"NSM"],[123184,123190,"NSM"],[123566,123566,"NSM"],[123628,123631,"NSM"],[123647,123647,"ET"],[124140,124143,"NSM"],[124398,124399,"NSM"],[124643,124643,"NSM"],[124646,124646,"NSM"],[124654,124655,"NSM"],[124661,124661,"NSM"],[124928,125135,"R"],[125136,125142,"NSM"],[125143,125251,"R"],[125252,125258,"NSM"],[125259,126063,"R"],[126064,126143,"AL"],[126144,126207,"R"],[126208,126287,"AL"],[126288,126463,"R"],[126464,126703,"AL"],[126704,126705,"ON"],[126706,126719,"AL"],[126720,126975,"R"],[126976,127019,"ON"],[127024,127123,"ON"],[127136,127150,"ON"],[127153,127167,"ON"],[127169,127183,"ON"],[127185,127221,"ON"],[127232,127242,"EN"],[127243,127247,"ON"],[127279,127279,"ON"],[127338,127343,"ON"],[127405,127405,"ON"],[127584,127589,"ON"],[127744,128728,"ON"],[128732,128748,"ON"],[128752,128764,"ON"],[128768,128985,"ON"],[128992,129003,"ON"],[129008,129008,"ON"],[129024,129035,"ON"],[129040,129095,"ON"],[129104,129113,"ON"],[129120,129159,"ON"],[129168,129197,"ON"],[129200,129211,"ON"],[129216,129217,"ON"],[129232,129240,"ON"],[129280,129623,"ON"],[129632,129645,"ON"],[129648,129660,"ON"],[129664,129674,"ON"],[129678,129734,"ON"],[129736,129736,"ON"],[129741,129756,"ON"],[129759,129770,"ON"],[129775,129784,"ON"],[129792,129938,"ON"],[129940,130031,"ON"],[130032,130041,"EN"],[130042,130042,"ON"],[131070,131071,"BN"],[196606,196607,"BN"],[262142,262143,"BN"],[327678,327679,"BN"],[393214,393215,"BN"],[458750,458751,"BN"],[524286,524287,"BN"],[589822,589823,"BN"],[655358,655359,"BN"],[720894,720895,"BN"],[786430,786431,"BN"],[851966,851967,"BN"],[917502,917759,"BN"],[917760,917999,"NSM"],[918e3,921599,"BN"],[983038,983039,"BN"],[1048574,1048575,"BN"],[1114110,1114111,"BN"]];function td(t){if(t<=255)return Gs[t];let e=0,n=Gi.length-1;for(;e<=n;){let i=e+n>>1,r=Gi[i];if(t<r[0]){n=i-1;continue}if(t>r[1]){e=i+1;continue}return r[2]}return"L"}function nd(t){let e=t.length;if(e===0)return null;let n=new Array(e),i=!1;for(let c=0;c<e;){let u=t.charCodeAt(c),m=u,f=1;if(u>=55296&&u<=56319&&c+1<e){let E=t.charCodeAt(c+1);E>=56320&&E<=57343&&(m=(u-55296<<10)+(E-56320)+65536,f=2)}let x=td(m);(x==="R"||x==="AL"||x==="AN")&&(i=!0);for(let E=0;E<f;E++)n[c+E]=x;c+=f}if(!i)return null;let r=0;for(let c=0;c<e;c++){let u=n[c];if(u==="L"){r=0;break}if(u==="R"||u==="AL"){r=1;break}}let o=new Int8Array(e);for(let c=0;c<e;c++)o[c]=r;let s=r&1?"R":"L",l=s,a=l;for(let c=0;c<e;c++)n[c]==="NSM"?n[c]=a:a=n[c];a=l;for(let c=0;c<e;c++){let u=n[c];u==="EN"?n[c]=a==="AL"?"AN":"EN":(u==="R"||u==="L"||u==="AL")&&(a=u)}for(let c=0;c<e;c++)n[c]==="AL"&&(n[c]="R");for(let c=1;c<e-1;c++)n[c]==="ES"&&n[c-1]==="EN"&&n[c+1]==="EN"&&(n[c]="EN"),n[c]==="CS"&&(n[c-1]==="EN"||n[c-1]==="AN")&&n[c+1]===n[c-1]&&(n[c]=n[c-1]);for(let c=0;c<e;c++){if(n[c]!=="EN")continue;let u;for(u=c-1;u>=0&&n[u]==="ET";u--)n[u]="EN";for(u=c+1;u<e&&n[u]==="ET";u++)n[u]="EN"}for(let c=0;c<e;c++){let u=n[c];(u==="WS"||u==="ES"||u==="ET"||u==="CS")&&(n[c]="ON")}a=l;for(let c=0;c<e;c++){let u=n[c];u==="EN"?n[c]=a==="L"?"L":"EN":(u==="R"||u==="L")&&(a=u)}for(let c=0;c<e;c++){if(n[c]!=="ON")continue;let u=c+1;for(;u<e&&n[u]==="ON";)u++;let m=c>0?n[c-1]:l,f=u<e?n[u]:l,x=m!=="L"?"R":"L";if(x===(f!=="L"?"R":"L"))for(let g=c;g<u;g++)n[g]=x;c=u-1}for(let c=0;c<e;c++)n[c]==="ON"&&(n[c]=s);for(let c=0;c<e;c++){let u=n[c];(o[c]&1)===0?u==="R"?o[c]++:(u==="AN"||u==="EN")&&(o[c]+=2):(u==="L"||u==="AN"||u==="EN")&&o[c]++}return o}function Us(t,e){let n=nd(t);if(n===null)return null;let i=new Int8Array(e.length);for(let r=0;r<e.length;r++)i[r]=n[e[r]];return i}var id=/[ \\t\\n\\r\\f]+/g,rd=/[\\t\\n\\r\\f]| {2,}|^ | $/;function od(t){let e=t??"normal";return e==="pre-wrap"?{mode:e,preserveOrdinarySpaces:!0,preserveHardBreaks:!0}:{mode:e,preserveOrdinarySpaces:!1,preserveHardBreaks:!1}}function sd(t){if(!rd.test(t))return t;let e=t.replace(id," ");return e.charCodeAt(0)===32&&(e=e.slice(1)),e.length>0&&e.charCodeAt(e.length-1)===32&&(e=e.slice(0,-1)),e}function ad(t){return/[\\r\\f]/.test(t)?t.replace(/\\r\\n/g,`\n`).replace(/[\\r\\f]/g,`\n`):t.replace(/\\r\\n/g,`\n`)}var Ui=null,ld;function ud(){return Ui===null&&(Ui=new Intl.Segmenter(ld,{granularity:"word"})),Ui}var cd=/\\p{Script=Arabic}/u,_n=/\\p{M}/u,Ys=/\\p{Nd}/u;function Vs(t){return cd.test(t)}function zs(t){return t>=19968&&t<=40959||t>=13312&&t<=19903||t>=131072&&t<=173791||t>=173824&&t<=177983||t>=177984&&t<=178207||t>=178208&&t<=183983||t>=183984&&t<=191471||t>=191472&&t<=192093||t>=194560&&t<=195103||t>=196608&&t<=201551||t>=201552&&t<=205743||t>=205744&&t<=210041||t>=63744&&t<=64255||t>=12288&&t<=12351||t>=12352&&t<=12447||t>=12448&&t<=12543||t>=44032&&t<=55215||t>=65280&&t<=65519}function Ie(t){for(let e=0;e<t.length;e++){let n=t.charCodeAt(e);if(!(n<12288)){if(n>=55296&&n<=56319&&e+1<t.length){let i=t.charCodeAt(e+1);if(i>=56320&&i<=57343){let r=(n-55296<<10)+(i-56320)+65536;if(zs(r))return!0;e++;continue}}if(zs(n))return!0}}return!1}function dd(t){let e=vn(t);return e!==null&&(Ln.has(e)||Xe.has(e))}var fd=new Set(["\\xA0","\\u202F","\\u2060","\\uFEFF"]);function md(t){return Ie(t)}function pd(t){let e=vn(t);return e!==null&&fd.has(e)}function Tn(t){return!dd(t)&&!pd(t)}var Ln=new Set(["\\uFF0C","\\uFF0E","\\uFF01","\\uFF1A","\\uFF1B","\\uFF1F","\\u3001","\\u3002","\\u30FB","\\uFF09","\\u3015","\\u3009","\\u300B","\\u300D","\\u300F","\\u3011","\\u3017","\\u3019","\\u301B","\\u30FC","\\u3005","\\u303B","\\u309D","\\u309E","\\u30FD","\\u30FE"]),tn=new Set([\'"\',"(","[","{","\\u201C","\\u2018","\\xAB","\\u2039","\\uFF08","\\u3014","\\u3008","\\u300A","\\u300C","\\u300E","\\u3010","\\u3016","\\u3018","\\u301A"]),zi=new Set(["\'","\\u2019"]),Xe=new Set([".",",","!","?",":",";","\\u060C","\\u061B","\\u061F","\\u0964","\\u0965","\\u104A","\\u104B","\\u104C","\\u104D","\\u104F",")","]","}","%",\'"\',"\\u201D","\\u2019","\\xBB","\\u203A","\\u2026"]),hd=new Set([":",".","\\u060C","\\u061B"]),xd=new Set(["\\u104F"]),gd=new Set(["\\u201D","\\u2019","\\xBB","\\u203A","\\u300D","\\u300F","\\u3011","\\u300B","\\u3009","\\u3015","\\uFF09"]);function yd(t){if(ji(t))return!0;let e=!1;for(let n of t){if(Xe.has(n)){e=!0;continue}if(!(e&&_n.test(n)))return!1}return e}function bd(t){for(let e of t)if(!Ln.has(e)&&!Xe.has(e))return!1;return t.length>0}function Sd(t){if(ji(t))return!0;for(let e of t)if(!tn.has(e)&&!zi.has(e)&&!_n.test(e))return!1;return t.length>0}function ji(t){let e=!1;for(let n of t)if(!(n==="\\\\"||_n.test(n))){if(tn.has(n)||Xe.has(n)||zi.has(n)){e=!0;continue}return!1}return e}function Xs(t,e){let n=e-1;if(n<=0)return Math.max(n,0);let i=t.charCodeAt(n);if(i<56320||i>57343)return n;let r=n-1;if(r<0)return n;let o=t.charCodeAt(r);return o>=55296&&o<=56319?r:n}function vn(t){if(t.length===0)return null;let e=Xs(t,t.length);return t.slice(e)}function Ad(t){let e=Array.from(t),n=e.length;for(;n>0;){let i=e[n-1];if(_n.test(i)){n--;continue}if(tn.has(i)||zi.has(i)){n--;continue}break}return n<=0||n===e.length?null:{head:e.slice(0,n).join(""),tail:e.slice(n).join("")}}function Ed(t,e,n){return n==="text"&&!e&&t.length===1&&t!=="-"&&t!=="\\u2014"?t:null}function js(t,e,n,i){let r=e[i],o=t[i];if(r==null)return o;let s=n[i];if(o.length===s)return o;let l=r.repeat(s);return t[i]=l,l}function qs(t,e){return t&&e!==null&&hd.has(e)}function wd(t){let e=vn(t);return e!==null&&xd.has(e)}function Cd(t){if(t.length<2||t[0]!==" ")return null;let e=t.slice(1);return/^\\p{M}+$/u.test(e)?{space:" ",marks:e}:null}function Rn(t){let e=t.length;for(;e>0;){let n=Xs(t,e),i=t.slice(n,e);if(gd.has(i))return!0;if(!Xe.has(i))return!1;e=n}return!1}function Fd(t,e){if(e.preserveOrdinarySpaces||e.preserveHardBreaks){if(t===" ")return"preserved-space";if(t===" ")return"tab";if(e.preserveHardBreaks&&t===`\n`)return"hard-break"}return t===" "?"space":t==="\\xA0"||t==="\\u202F"||t==="\\u2060"||t==="\\uFEFF"?"glue":t==="\\u200B"?"zero-width-break":t==="\\xAD"?"soft-hyphen":"text"}var Md=/[\\x20\\t\\n\\xA0\\xAD\\u200B\\u202F\\u2060\\uFEFF]/;function Le(t){return t.length===1?t[0]:t.join("")}function Nd(t,e){let n=[];for(let i=t.length-1;i>=0;i--)n.push(t[i]);return n.push(e),Le(n)}function _d(t,e,n,i){if(!Md.test(t))return[{text:t,isWordLike:e,kind:"text",start:n}];let r=[],o=null,s=[],l=n,a=!1,c=0;for(let u of t){let m=Fd(u,i),f=m==="text"&&e;if(o!==null&&m===o&&f===a){s.push(u),c+=u.length;continue}o!==null&&r.push({text:Le(s),isWordLike:a,kind:o,start:l}),o=m,s=[u],l=n+c,a=f,c+=u.length}return o!==null&&r.push({text:Le(s),isWordLike:a,kind:o,start:l}),r}function Vi(t){return t==="space"||t==="preserved-space"||t==="zero-width-break"||t==="hard-break"}var Td=/^[A-Za-z][A-Za-z0-9+.-]*:$/;function Ld(t,e){let n=t.texts[e];return n.startsWith("www.")?!0:Td.test(n)&&e+1<t.len&&t.kinds[e+1]==="text"&&t.texts[e+1]==="//"}function vd(t){return t.includes("?")&&(t.includes("://")||t.startsWith("www."))}function Rd(t){let e=t.texts.slice(),n=t.isWordLike.slice(),i=t.kinds.slice(),r=t.starts.slice();for(let s=0;s<t.len;s++){if(i[s]!=="text"||!Ld(t,s))continue;let l=[e[s]],a=s+1;for(;a<t.len&&!Vi(i[a]);){l.push(e[a]),n[s]=!0;let c=e[a].includes("?");if(i[a]="text",e[a]="",a++,c)break}e[s]=Le(l)}let o=0;for(let s=0;s<e.length;s++){let l=e[s];l.length!==0&&(o!==s&&(e[o]=l,n[o]=n[s],i[o]=i[s],r[o]=r[s]),o++)}return e.length=o,n.length=o,i.length=o,r.length=o,{len:o,texts:e,isWordLike:n,kinds:i,starts:r}}function kd(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o];if(e.push(s),n.push(t.isWordLike[o]),i.push(t.kinds[o]),r.push(t.starts[o]),!vd(s))continue;let l=o+1;if(l>=t.len||Vi(t.kinds[l]))continue;let a=[],c=t.starts[l],u=l;for(;u<t.len&&!Vi(t.kinds[u]);)a.push(t.texts[u]),u++;a.length>0&&(e.push(Le(a)),n.push(!0),i.push("text"),r.push(c),o=u-1)}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}var Dd=new Set([":","-","/","\\xD7",",",".","+","\\u2013","\\u2014"]),$s=/^[A-Za-z0-9_]+[,:;]*$/,Ks=/[,:;]+$/;function Qs(t){for(let e of t)if(Ys.test(e))return!0;return!1}function en(t){if(t.length===0)return!1;for(let e of t)if(!(Ys.test(e)||Dd.has(e)))return!1;return!0}function Id(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o],l=t.kinds[o];if(l==="text"&&en(s)&&Qs(s)){let a=[s],c=o+1;for(;c<t.len&&t.kinds[c]==="text"&&en(t.texts[c]);)a.push(t.texts[c]),c++;e.push(Le(a)),n.push(!0),i.push("text"),r.push(t.starts[o]),o=c-1;continue}e.push(s),n.push(t.isWordLike[o]),i.push(l),r.push(t.starts[o])}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Pd(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o],l=t.kinds[o],a=t.isWordLike[o];if(l==="text"&&a&&$s.test(s)){let c=[s],u=Ks.test(s),m=o+1;for(;u&&m<t.len&&t.kinds[m]==="text"&&t.isWordLike[m]&&$s.test(t.texts[m]);){let f=t.texts[m];c.push(f),u=Ks.test(f),m++}e.push(Le(c)),n.push(!0),i.push("text"),r.push(t.starts[o]),o=m-1;continue}e.push(s),n.push(a),i.push(l),r.push(t.starts[o])}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Od(t){let e=[],n=[],i=[],r=[];for(let o=0;o<t.len;o++){let s=t.texts[o];if(t.kinds[o]==="text"&&s.includes("-")){let l=s.split("-"),a=l.length>1;for(let c=0;c<l.length;c++){let u=l[c];if(!a)break;(u.length===0||!Qs(u)||!en(u))&&(a=!1)}if(a){let c=0;for(let u=0;u<l.length;u++){let m=l[u],f=u<l.length-1?`${m}-`:m;e.push(f),n.push(!0),i.push("text"),r.push(t.starts[o]+c),c+=f.length}continue}}e.push(s),n.push(t.isWordLike[o]),i.push(t.kinds[o]),r.push(t.starts[o])}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Bd(t){let e=[],n=[],i=[],r=[],o=0;for(;o<t.len;){let s=[t.texts[o]],l=t.isWordLike[o],a=t.kinds[o],c=t.starts[o];if(a==="glue"){let u=[s[0]],m=c;for(o++;o<t.len&&t.kinds[o]==="glue";)u.push(t.texts[o]),o++;let f=Le(u);if(o<t.len&&t.kinds[o]==="text")s[0]=f,s.push(t.texts[o]),l=t.isWordLike[o],a="text",c=m,o++;else{e.push(f),n.push(!1),i.push("glue"),r.push(m);continue}}else o++;if(a==="text")for(;o<t.len&&t.kinds[o]==="glue";){let u=[];for(;o<t.len&&t.kinds[o]==="glue";)u.push(t.texts[o]),o++;let m=Le(u);if(o<t.len&&t.kinds[o]==="text"){s.push(m,t.texts[o]),l=l||t.isWordLike[o],o++;continue}s.push(m)}e.push(Le(s)),n.push(l),i.push(a),r.push(c)}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Hd(t){let e=t.texts.slice(),n=t.isWordLike.slice(),i=t.kinds.slice(),r=t.starts.slice();for(let o=0;o<e.length-1;o++){if(i[o]!=="text"||i[o+1]!=="text"||!Ie(e[o])||!Ie(e[o+1]))continue;let s=Ad(e[o]);s!==null&&(e[o]=s.head,e[o+1]=s.tail+e[o+1],r[o+1]=r[o]+s.head.length)}return{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Js(t,e,n){let i=ud(),r=0,o=[],s=[],l=[],a=[],c=[],u=[],m=[],f=[],x=[],E=[],g=[],S=[];for(let M of i.segment(t))for(let y of _d(M.segment,M.isWordLike??!1,M.index,n)){let se=function(){u[P]!==null&&(s[P]=[js(o,u,m,P)],u[P]=null),s[P].push(y.text),l[P]=l[P]||y.isWordLike,f[P]=f[P]||_,x[P]=x[P]||T,E[P]=j,g[P]=ne,S[P]=qs(x[P],G)},w=y.kind==="text",F=Ed(y.text,y.isWordLike,y.kind),_=Ie(y.text),T=Vs(y.text),G=vn(y.text),j=Rn(y.text),ne=wd(y.text),P=r-1;e.carryCJKAfterClosingQuote&&w&&r>0&&a[P]==="text"&&_&&f[P]&&E[P]||w&&r>0&&a[P]==="text"&&bd(y.text)&&f[P]||w&&r>0&&a[P]==="text"&&g[P]?se():w&&r>0&&a[P]==="text"&&y.isWordLike&&T&&S[P]?(se(),l[P]=!0):F!==null&&r>0&&a[P]==="text"&&u[P]===F?m[P]=(m[P]??1)+1:w&&!y.isWordLike&&r>0&&a[P]==="text"&&(yd(y.text)||y.text==="-"&&l[P])?se():(o[r]=y.text,s[r]=[y.text],l[r]=y.isWordLike,a[r]=y.kind,c[r]=y.start,u[r]=F,m[r]=F===null?0:1,f[r]=_,x[r]=T,E[r]=j,g[r]=ne,S[r]=qs(T,G),r++)}for(let M=0;M<r;M++){if(u[M]!==null){o[M]=js(o,u,m,M);continue}o[M]=Le(s[M])}for(let M=1;M<r;M++)a[M]==="text"&&!l[M]&&ji(o[M])&&a[M-1]==="text"&&(o[M-1]+=o[M],l[M-1]=l[M-1]||l[M],o[M]="");let N=Array.from({length:r},()=>null),v=-1;for(let M=r-1;M>=0;M--){let y=o[M];if(y.length!==0){if(a[M]==="text"&&!l[M]&&Sd(y)&&v>=0&&a[v]==="text"){let w=N[v]??[];w.push(y),N[v]=w,c[v]=c[M],o[M]="";continue}v=M}}for(let M=0;M<r;M++){let y=N[M];y!=null&&(o[M]=Nd(y,o[M]))}let R=0;for(let M=0;M<r;M++){let y=o[M];y.length!==0&&(R!==M&&(o[R]=y,l[R]=l[M],a[R]=a[M],c[R]=c[M]),R++)}o.length=R,l.length=R,a.length=R,c.length=R;let Y=Bd({len:R,texts:o,isWordLike:l,kinds:a,starts:c}),W=Hd(Pd(Od(Id(kd(Rd(Y))))));for(let M=0;M<W.len-1;M++){let y=Cd(W.texts[M]);y!==null&&(W.kinds[M]!=="space"&&W.kinds[M]!=="preserved-space"||W.kinds[M+1]!=="text"||!Vs(W.texts[M+1])||(W.texts[M]=y.space,W.isWordLike[M]=!1,W.kinds[M]=W.kinds[M]==="preserved-space"?"preserved-space":"space",W.texts[M+1]=y.marks+W.texts[M+1],W.starts[M+1]=W.starts[M]+y.space.length))}return W}function Wd(t,e){if(t.len===0)return[];if(!e.preserveHardBreaks)return[{startSegmentIndex:0,endSegmentIndex:t.len,consumedEndSegmentIndex:t.len}];let n=[],i=0;for(let r=0;r<t.len;r++)t.kinds[r]==="hard-break"&&(n.push({startSegmentIndex:i,endSegmentIndex:r,consumedEndSegmentIndex:r+1}),i=r+1);return i<t.len&&n.push({startSegmentIndex:i,endSegmentIndex:t.len,consumedEndSegmentIndex:t.len}),n}function Gd(t){if(t.len<=1)return t;let e=[],n=[],i=[],r=[],o=null,s=!1,l=0,a=!1,c=!1;function u(){o!==null&&(e.push(Le(o)),n.push(s),i.push("text"),r.push(l),o=null)}for(let m=0;m<t.len;m++){let f=t.texts[m],x=t.kinds[m],E=t.isWordLike[m],g=t.starts[m];if(x==="text"){let S=md(f),N=Tn(f);if(o!==null&&a&&c){o.push(f),s=s||E,a=a||S,c=N;continue}u(),o=[f],s=E,l=g,a=S,c=N;continue}u(),e.push(f),n.push(E),i.push(x),r.push(g)}return u(),{len:e.length,texts:e,isWordLike:n,kinds:i,starts:r}}function Zs(t,e,n="normal",i="normal"){let r=od(n),o=r.mode==="pre-wrap"?ad(t):sd(t);if(o.length===0)return{normalized:o,chunks:[],len:0,texts:[],isWordLike:[],kinds:[],starts:[]};let s=i==="keep-all"?Gd(Js(o,e,r)):Js(o,e,r);return{normalized:o,chunks:Wd(s,r),...s}}var ht=null,ea=new Map,xt=null,Ud=96,Vd=/\\p{Emoji_Presentation}/u,zd=/[\\p{Emoji_Presentation}\\p{Extended_Pictographic}\\p{Regional_Indicator}\\uFE0F\\u20E3]/u,qi=null,ta=new Map;function $i(){if(ht!==null)return ht;if(typeof OffscreenCanvas<"u")return ht=new OffscreenCanvas(1,1).getContext("2d"),ht;if(typeof document<"u")return ht=document.createElement("canvas").getContext("2d"),ht;throw new Error("Text measurement requires OffscreenCanvas or a DOM canvas context.")}function jd(t){let e=ea.get(t);return e||(e=new Map,ea.set(t,e)),e}function Ve(t,e){let n=e.get(t);return n===void 0&&(n={width:$i().measureText(t).width,containsCJK:Ie(t)},e.set(t,n)),n}function gt(){if(xt!==null)return xt;if(typeof navigator>"u")return xt={lineFitEpsilon:.005,carryCJKAfterClosingQuote:!1,preferPrefixWidthsForBreakableRuns:!1,preferEarlySoftHyphenBreak:!1},xt;let t=navigator.userAgent,n=navigator.vendor==="Apple Computer, Inc."&&t.includes("Safari/")&&!t.includes("Chrome/")&&!t.includes("Chromium/")&&!t.includes("CriOS/")&&!t.includes("FxiOS/")&&!t.includes("EdgiOS/"),i=t.includes("Chrome/")||t.includes("Chromium/")||t.includes("CriOS/")||t.includes("Edg/");return xt={lineFitEpsilon:n?1/64:.005,carryCJKAfterClosingQuote:i,preferPrefixWidthsForBreakableRuns:n,preferEarlySoftHyphenBreak:n},xt}function qd(t){let e=t.match(/(\\d+(?:\\.\\d+)?)\\s*px/);return e?parseFloat(e[1]):16}function na(){return qi===null&&(qi=new Intl.Segmenter(void 0,{granularity:"grapheme"})),qi}function $d(t){return Vd.test(t)||t.includes("\\uFE0F")}function ia(t){return zd.test(t)}function Kd(t,e){let n=ta.get(t);if(n!==void 0)return n;let i=$i();i.font=t;let r=i.measureText("\\u{1F600}").width;if(n=0,r>e+.5&&typeof document<"u"&&document.body!==null){let o=document.createElement("span");o.style.font=t,o.style.display="inline-block",o.style.visibility="hidden",o.style.position="absolute",o.textContent="\\u{1F600}",document.body.appendChild(o);let s=o.getBoundingClientRect().width;document.body.removeChild(o),r-s>.5&&(n=r-s)}return ta.set(t,n),n}function Jd(t){let e=0,n=na();for(let i of n.segment(t))$d(i.segment)&&e++;return e}function Yd(t,e){return e.emojiCount===void 0&&(e.emojiCount=Jd(t)),e.emojiCount}function Qe(t,e,n){return n===0?e.width:e.width-Yd(t,e)*n}function ra(t,e,n,i,r){if(e.breakableFitAdvances!==void 0)return e.breakableFitAdvances;let o=na(),s=[];for(let u of o.segment(t))s.push(u.segment);if(s.length<=1)return e.breakableFitAdvances=null,e.breakableFitAdvances;if(r==="sum-graphemes"){let u=[];for(let m of s){let f=Ve(m,n);u.push(Qe(m,f,i))}return e.breakableFitAdvances=u,e.breakableFitAdvances}if(r==="pair-context"||s.length>Ud){let u=[],m=null,f=0;for(let x of s){let E=Ve(x,n),g=Qe(x,E,i);if(m===null)u.push(g);else{let S=m+x,N=Ve(S,n);u.push(Qe(S,N,i)-f)}m=x,f=g}return e.breakableFitAdvances=u,e.breakableFitAdvances}let l=[],a="",c=0;for(let u of s){a+=u;let m=Ve(a,n),f=Qe(a,m,i);l.push(f-c),c=f}return e.breakableFitAdvances=l,e.breakableFitAdvances}function oa(t,e){let n=$i();n.font=t;let i=jd(t),r=qd(t),o=e?Kd(t,r):0;return{cache:i,fontSize:r,emojiCorrection:o}}function Xd(t,e){for(;e<t.widths.length;){let n=t.kinds[e];if(n!=="space"&&n!=="zero-width-break"&&n!=="soft-hyphen")break;e++}return e}function Qd(t,e){if(e<=0)return 0;let n=t%e;return Math.abs(n)<=1e-6?e:e-n}function Zd(t,e,n,i,r){let o=0,s=e;for(;o<t.length;){let l=s+t[o];if((o+1<t.length?l+r:l)>n+i)break;s=l,o++}return{fitCount:o,fittedWidth:s}}function sa(t,e){return t.simpleLineWalkFastPath?aa(t,e):la(t,e)}function aa(t,e,n){let{widths:i,kinds:r,breakableFitAdvances:o}=t;if(i.length===0)return 0;let l=gt().lineFitEpsilon,a=e+l,c=0,u=0,m=!1,f=0,x=0,E=0,g=0,S=-1,N=0;function v(){S=-1,N=0}function R(F=E,_=g,T=u){c++,n?.({startSegmentIndex:f,startGraphemeIndex:x,endSegmentIndex:F,endGraphemeIndex:_,width:T}),u=0,m=!1,v()}function Y(F,_){m=!0,f=F,x=0,E=F+1,g=0,u=_}function W(F,_,T){m=!0,f=F,x=_,E=F,g=_+1,u=T}function M(F,_){if(!m){Y(F,_);return}u+=_,E=F+1,g=0}function y(F,_){let T=o[F];for(let G=_;G<T.length;G++){let j=T[G];m?u+j>a?(R(),W(F,G,j)):(u+=j,E=F,g=G+1):W(F,G,j)}m&&E===F&&g===T.length&&(E=F+1,g=0)}let w=0;for(;w<i.length&&!(!m&&(w=Xd(t,w),w>=i.length));){let F=i[w],_=r[w],T=_==="space"||_==="preserved-space"||_==="tab"||_==="zero-width-break"||_==="soft-hyphen";if(!m){F>e&&o[w]!==null?y(w,0):Y(w,F),T&&(S=w+1,N=u-F),w++;continue}if(u+F>a){if(T){M(w,F),R(w+1,0,u-F),w++;continue}if(S>=0){if(E>S||E===S&&g>0){R();continue}R(S,0,N);continue}if(F>e&&o[w]!==null){R(),y(w,0),w++;continue}R();continue}M(w,F),T&&(S=w+1,N=u-F),w++}return m&&R(),c}function la(t,e,n){if(t.simpleLineWalkFastPath)return aa(t,e,n);let{widths:i,lineEndFitAdvances:r,lineEndPaintAdvances:o,kinds:s,breakableFitAdvances:l,discretionaryHyphenWidth:a,tabStopAdvance:c,chunks:u}=t;if(i.length===0||u.length===0)return 0;let m=gt(),f=m.lineFitEpsilon,x=e+f,E=0,g=0,S=!1,N=0,v=0,R=0,Y=0,W=-1,M=0,y=0,w=null;function F(){W=-1,M=0,y=0,w=null}function _(H=R,U=Y,V=g){E++,n?.({startSegmentIndex:N,startGraphemeIndex:v,endSegmentIndex:H,endGraphemeIndex:U,width:V}),g=0,S=!1,F()}function T(H,U){S=!0,N=H,v=0,R=H+1,Y=0,g=U}function G(H,U,V){S=!0,N=H,v=U,R=H,Y=U+1,g=V}function j(H,U){if(!S){T(H,U);return}g+=U,R=H+1,Y=0}function ne(H,U,V,ie){if(!U)return;let Me=H==="tab"?0:r[V],B=H==="tab"?ie:o[V];W=V+1,M=g-ie+Me,y=g-ie+B,w=H}function P(H,U){let V=l[H];for(let ie=U;ie<V.length;ie++){let Me=V[ie];S?g+Me>x?(_(),G(H,ie,Me)):(g+=Me,R=H,Y=ie+1):G(H,ie,Me)}S&&R===H&&Y===V.length&&(R=H+1,Y=0)}function se(H){if(w!=="soft-hyphen")return!1;let U=l[H];if(U==null)return!1;let{fitCount:V,fittedWidth:ie}=Zd(U,g,e,f,a);return V===0?!1:(g=ie,R=H,Y=V,F(),V===U.length?(R=H+1,Y=0,!0):(_(H,V,ie+a),P(H,V),!0))}function Se(H){E++,n?.({startSegmentIndex:H.startSegmentIndex,startGraphemeIndex:0,endSegmentIndex:H.consumedEndSegmentIndex,endGraphemeIndex:0,width:0}),F()}for(let H=0;H<u.length;H++){let U=u[H];if(U.startSegmentIndex===U.endSegmentIndex){Se(U);continue}S=!1,g=0,N=U.startSegmentIndex,v=0,R=U.startSegmentIndex,Y=0,F();let V=U.startSegmentIndex;for(;V<U.endSegmentIndex;){let ie=s[V],Me=ie==="space"||ie==="preserved-space"||ie==="tab"||ie==="zero-width-break"||ie==="soft-hyphen",B=ie==="tab"?Qd(g,c):i[V];if(ie==="soft-hyphen"){S&&(R=V+1,Y=0,W=V+1,M=g+a,y=g+a,w=ie),V++;continue}if(!S){B>e&&l[V]!==null?P(V,0):T(V,B),ne(ie,Me,V,B),V++;continue}if(g+B>x){let O=g+(ie==="tab"?0:r[V]),ae=g+(ie==="tab"?B:o[V]);if(w==="soft-hyphen"&&m.preferEarlySoftHyphenBreak&&M<=x){_(W,0,y);continue}if(w==="soft-hyphen"&&se(V)){V++;continue}if(Me&&O<=x){j(V,B),_(V+1,0,ae),V++;continue}if(W>=0&&M<=x){if(R>W||R===W&&Y>0){_();continue}let re=W;_(re,0,y),V=re;continue}if(B>e&&l[V]!==null){_(),P(V,0),V++;continue}_();continue}j(V,B),ne(ie,Me,V,B),V++}if(S){let ie=W===U.consumedEndSegmentIndex?y:g;_(U.consumedEndSegmentIndex,0,ie)}}return E}var Ki=null;function ef(){return Ki===null&&(Ki=new Intl.Segmenter(void 0,{granularity:"grapheme"})),Ki}function tf(t){return t?{widths:[],lineEndFitAdvances:[],lineEndPaintAdvances:[],kinds:[],simpleLineWalkFastPath:!0,segLevels:null,breakableFitAdvances:[],discretionaryHyphenWidth:0,tabStopAdvance:0,chunks:[],segments:[]}:{widths:[],lineEndFitAdvances:[],lineEndPaintAdvances:[],kinds:[],simpleLineWalkFastPath:!0,segLevels:null,breakableFitAdvances:[],discretionaryHyphenWidth:0,tabStopAdvance:0,chunks:[]}}function nf(t,e){let n=[],i=[],r=0,o=!1,s=!1,l=!1;function a(){i.length!==0&&(n.push({text:i.length===1?i[0]:i.join(""),start:r}),i=[],o=!1,s=!1,l=!1)}function c(m,f,x){i=[m],r=f,o=x,s=Rn(m),l=tn.has(m)}function u(m,f){i.push(m),o=o||f;let x=Rn(m);m.length===1&&Xe.has(m)?s=s||x:s=x,l=!1}for(let m of ef().segment(t)){let f=m.segment,x=Ie(f);if(i.length===0){c(f,m.index,x);continue}if(l||Ln.has(f)||Xe.has(f)||e.carryCJKAfterClosingQuote&&x&&s){u(f,x);continue}if(!o&&!x){u(f,x);continue}a(),c(f,m.index,x)}return a(),n}function rf(t){if(t.length<=1)return t;let e=[],n=[t[0].text],i=t[0].start,r=Ie(t[0].text),o=Tn(t[0].text);function s(){e.push({text:n.length===1?n[0]:n.join(""),start:i})}for(let l=1;l<t.length;l++){let a=t[l],c=Ie(a.text),u=Tn(a.text);if(r&&o){n.push(a.text),r=r||c,o=u;continue}s(),n=[a.text],i=a.start,r=c,o=u}return s(),e}function of(t,e,n,i){let r=gt(),{cache:o,emojiCorrection:s}=oa(e,ia(t.normalized)),l=Qe("-",Ve("-",o),s),c=Qe(" ",Ve(" ",o),s)*8;if(t.len===0)return tf(n);let u=[],m=[],f=[],x=[],E=t.chunks.length<=1,g=n?[]:null,S=[],N=n?[]:null,v=Array.from({length:t.len});function R(y,w,F,_,T,G,j){T!=="text"&&T!=="space"&&T!=="zero-width-break"&&(E=!1),u.push(w),m.push(F),f.push(_),x.push(T),g?.push(G),S.push(j),N!==null&&N.push(y)}function Y(y,w,F,_,T){let G=Ve(y,o),j=Qe(y,G,s),ne=w==="space"||w==="preserved-space"||w==="zero-width-break"?0:j,P=w==="space"||w==="zero-width-break"?0:j;if(T&&_&&y.length>1){let se="sum-graphemes";en(y)?se="pair-context":r.preferPrefixWidthsForBreakableRuns&&(se="segment-prefixes");let Se=ra(y,G,o,s,se);R(y,j,ne,P,w,F,Se);return}R(y,j,ne,P,w,F,null)}for(let y=0;y<t.len;y++){v[y]=u.length;let w=t.texts[y],F=t.isWordLike[y],_=t.kinds[y],T=t.starts[y];if(_==="soft-hyphen"){R(w,0,l,l,_,T,null);continue}if(_==="hard-break"){R(w,0,0,0,_,T,null);continue}if(_==="tab"){R(w,0,0,0,_,T,null);continue}let G=Ve(w,o);if(_==="text"&&G.containsCJK){let j=nf(w,r),ne=i==="keep-all"?rf(j):j;for(let P=0;P<ne.length;P++){let se=ne[P];Y(se.text,"text",T+se.start,F,i==="keep-all"||!Ie(se.text))}continue}Y(w,_,T,F,!0)}let W=sf(t.chunks,v,u.length),M=g===null?null:Us(t.normalized,g);return N!==null?{widths:u,lineEndFitAdvances:m,lineEndPaintAdvances:f,kinds:x,simpleLineWalkFastPath:E,segLevels:M,breakableFitAdvances:S,discretionaryHyphenWidth:l,tabStopAdvance:c,chunks:W,segments:N}:{widths:u,lineEndFitAdvances:m,lineEndPaintAdvances:f,kinds:x,simpleLineWalkFastPath:E,segLevels:M,breakableFitAdvances:S,discretionaryHyphenWidth:l,tabStopAdvance:c,chunks:W}}function sf(t,e,n){let i=[];for(let r=0;r<t.length;r++){let o=t[r],s=o.startSegmentIndex<e.length?e[o.startSegmentIndex]:n,l=o.endSegmentIndex<e.length?e[o.endSegmentIndex]:n,a=o.consumedEndSegmentIndex<e.length?e[o.consumedEndSegmentIndex]:n;i.push({startSegmentIndex:s,endSegmentIndex:l,consumedEndSegmentIndex:a})}return i}function af(t,e,n,i){let r=i?.wordBreak??"normal",o=Zs(t,gt(),i?.whiteSpace,r);return of(o,e,n,r)}function ua(t,e,n){return af(t,e,!1,n)}function ca(t,e,n){let i=sa(t,e);return{lineCount:i,height:i*n}}var lf={maxWidth:1600,baseFontSize:78,minFontSize:42,fontWeight:900,fontFamily:"Outfit",step:2};function da(t,e){let n={...lf,...e},i=1.2;for(let r=n.baseFontSize;r>=n.minFontSize;r-=n.step){let o=`${n.fontWeight} ${r}px ${n.fontFamily}`,s=ua(t,o),{lineCount:l}=ca(s,n.maxWidth,r*i);if(l<=1)return{fontSize:r,fits:!0}}return{fontSize:n.minFontSize,fits:!1}}window.__timelines=window.__timelines||{};window.__hyperframes={fitTextFontSize:da,getVariables:ms};function fa(){let t=window;t.__hyperframeRuntimeBootstrapped||(t.__hyperframeRuntimeBootstrapped=!0,Ws())}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",fa,{once:!0}):fa();})();\n';
55413
55452
  }
55414
55453
  });
55415
55454
 
@@ -63405,7 +63444,7 @@ var init_htmlDocument = __esm({
63405
63444
 
63406
63445
  // ../core/dist/compiler/compositionScoping.js
63407
63446
  import postcss from "postcss";
63408
- function escapeRegExp(value) {
63447
+ function escapeRegExp2(value) {
63409
63448
  return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
63410
63449
  }
63411
63450
  function escapeCssAttributeValue(value) {
@@ -63487,7 +63526,7 @@ function scopeSelector(selector, scope, compositionId, authoredRootId, compoundA
63487
63526
  return selector;
63488
63527
  if (/^(html|body|:root|\*)$/i.test(trimmed))
63489
63528
  return selector;
63490
- const compositionIdPattern = new RegExp(`\\[\\s*data-composition-id\\s*=\\s*(["'])${escapeRegExp(compositionId)}\\1\\s*\\]`, "g");
63529
+ const compositionIdPattern = new RegExp(`\\[\\s*data-composition-id\\s*=\\s*(["'])${escapeRegExp2(compositionId)}\\1\\s*\\]`, "g");
63491
63530
  if (compositionIdPattern.test(trimmed)) {
63492
63531
  return selectorWithoutRootTiming.replace(compositionIdPattern, scope);
63493
63532
  }
@@ -63503,7 +63542,7 @@ function scopeSelector(selector, scope, compositionId, authoredRootId, compoundA
63503
63542
  return `${leading}${scope} ${trimmed}${trailing}`;
63504
63543
  }
63505
63544
  function normalizeCompositionRootSelector(selector, scope, compositionId) {
63506
- const quotedCompId = escapeRegExp(compositionId);
63545
+ const quotedCompId = escapeRegExp2(compositionId);
63507
63546
  const compAttr = String.raw`\[\s*data-composition-id\s*=\s*(?:"${quotedCompId}"|'${quotedCompId}')\s*\]`;
63508
63547
  const timingAttr = String.raw`\s*\[\s*data-(?:start|duration)\s*=\s*(?:"[^"]*"|'[^']*')\s*\]`;
63509
63548
  return selector.replace(new RegExp(`${compAttr}(?:${timingAttr})+`, "g"), scope).replace(new RegExp(`(?:${timingAttr})+${compAttr}`, "g"), scope);
@@ -63538,7 +63577,7 @@ function wrapScopedCompositionScript(source, compositionId, errorLabel = "[Hyper
63538
63577
  const compositionIdLiteral = JSON.stringify(compositionId);
63539
63578
  const timelineCompositionIdLiteral = JSON.stringify(timelineCompositionId);
63540
63579
  const errorLabelLiteral = JSON.stringify(errorLabel);
63541
- const escapedCompositionId = escapeRegExp(compositionId);
63580
+ const escapedCompositionId = escapeRegExp2(compositionId);
63542
63581
  const authoredRootIdLiteral = JSON.stringify(authoredRootId?.trim() || null);
63543
63582
  const scopeSelectorLiteral = JSON.stringify(scopeSelectorOverride ?? null);
63544
63583
  const rootSelectorPatternLiteral = JSON.stringify(String.raw`\[\s*data-composition-id\s*=\s*(?:"${escapedCompositionId}"|'${escapedCompositionId}')\s*\]`);
@@ -64627,6 +64666,34 @@ function objectExpressionToRecord2(node, scope, source) {
64627
64666
  function isGsapTimelineCall2(node) {
64628
64667
  return node?.type === "CallExpression" && node.callee?.type === "MemberExpression" && node.callee.object?.name === "gsap" && node.callee.property?.name === "timeline";
64629
64668
  }
64669
+ function staticMemberKey2(node) {
64670
+ if (!node || node.type !== "MemberExpression") return null;
64671
+ if (node.computed) {
64672
+ const p2 = node.property;
64673
+ if (p2?.type === "Literal" && typeof p2.value === "string") return p2.value;
64674
+ return null;
64675
+ }
64676
+ return node.property?.type === "Identifier" ? node.property.name : null;
64677
+ }
64678
+ function isStaticMemberRef2(node) {
64679
+ return node?.type === "MemberExpression" && staticMemberKey2(node) !== null;
64680
+ }
64681
+ function sameMemberAccess2(a, b2) {
64682
+ if (a?.type !== "MemberExpression" || b2?.type !== "MemberExpression") return false;
64683
+ if (staticMemberKey2(a) !== staticMemberKey2(b2) || staticMemberKey2(a) === null) return false;
64684
+ const ao = a.object;
64685
+ const bo = b2.object;
64686
+ if (ao?.type === "Identifier" && bo?.type === "Identifier") return ao.name === bo.name;
64687
+ if (ao?.type === "MemberExpression" && bo?.type === "MemberExpression")
64688
+ return sameMemberAccess2(ao, bo);
64689
+ return false;
64690
+ }
64691
+ function timelineRootSource2(ref2, script) {
64692
+ return ref2.kind === "identifier" ? ref2.name : script.slice(ref2.node.start, ref2.node.end);
64693
+ }
64694
+ function escapeRegExp3(s2) {
64695
+ return s2.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
64696
+ }
64630
64697
  function extractTimelineDefaults2(callNode, scope) {
64631
64698
  const arg = callNode.arguments?.[0];
64632
64699
  if (!arg || arg.type !== "ObjectExpression") return void 0;
@@ -64646,6 +64713,7 @@ function extractTimelineDefaults2(callNode, scope) {
64646
64713
  }
64647
64714
  function findTimelineVar2(ast, scope) {
64648
64715
  let timelineVar = null;
64716
+ let ref2 = null;
64649
64717
  let timelineCount = 0;
64650
64718
  let defaults;
64651
64719
  const emptyScope = scope ?? /* @__PURE__ */ new Map();
@@ -64653,8 +64721,9 @@ function findTimelineVar2(ast, scope) {
64653
64721
  VariableDeclarator(node) {
64654
64722
  if (isGsapTimelineCall2(node.init)) {
64655
64723
  timelineCount += 1;
64656
- if (!timelineVar) {
64657
- timelineVar = node.id?.name ?? null;
64724
+ if (!ref2 && node.id?.type === "Identifier") {
64725
+ timelineVar = node.id.name;
64726
+ ref2 = { kind: "identifier", name: node.id.name };
64658
64727
  defaults = extractTimelineDefaults2(node.init, emptyScope);
64659
64728
  }
64660
64729
  }
@@ -64662,24 +64731,31 @@ function findTimelineVar2(ast, scope) {
64662
64731
  AssignmentExpression(node) {
64663
64732
  if (isGsapTimelineCall2(node.right)) {
64664
64733
  timelineCount += 1;
64665
- if (!timelineVar) {
64734
+ if (!ref2) {
64666
64735
  const left = node.left;
64667
- if (left?.type === "Identifier") timelineVar = left.name;
64668
- defaults = extractTimelineDefaults2(node.right, emptyScope);
64736
+ if (left?.type === "Identifier") {
64737
+ timelineVar = left.name;
64738
+ ref2 = { kind: "identifier", name: left.name };
64739
+ defaults = extractTimelineDefaults2(node.right, emptyScope);
64740
+ } else if (isStaticMemberRef2(left)) {
64741
+ ref2 = { kind: "member", node: left };
64742
+ defaults = extractTimelineDefaults2(node.right, emptyScope);
64743
+ }
64669
64744
  }
64670
64745
  }
64671
64746
  }
64672
64747
  });
64673
- return { timelineVar, timelineCount, defaults };
64748
+ return { timelineVar, ref: ref2, timelineCount, defaults };
64674
64749
  }
64675
- function isTimelineRootedCall2(callNode, timelineVar) {
64750
+ function isTimelineRootedCall2(callNode, ref2) {
64676
64751
  let obj = callNode.callee?.object;
64677
64752
  while (obj?.type === "CallExpression") {
64678
64753
  obj = obj.callee?.object;
64679
64754
  }
64680
- return obj?.type === "Identifier" && obj.name === timelineVar;
64755
+ if (ref2.kind === "identifier") return obj?.type === "Identifier" && obj.name === ref2.name;
64756
+ return sameMemberAccess2(obj, ref2.node);
64681
64757
  }
64682
- function findAllTweenCalls2(ast, timelineVar, scope, targetBindings) {
64758
+ function findAllTweenCalls2(ast, ref2, scope, targetBindings) {
64683
64759
  const results = [];
64684
64760
  function visit(node, ancestors) {
64685
64761
  if (!node || typeof node !== "object") return;
@@ -64688,7 +64764,7 @@ function findAllTweenCalls2(ast, timelineVar, scope, targetBindings) {
64688
64764
  const callee = node.callee;
64689
64765
  const gsapSetArg = node.arguments?.[0];
64690
64766
  const isGlobalSet = callee?.type === "MemberExpression" && callee.object?.type === "Identifier" && callee.object.name === "gsap" && callee.property?.type === "Identifier" && callee.property.name === "set" && (gsapSetArg?.type === "StringLiteral" || gsapSetArg?.type === "Literal" && typeof gsapSetArg.value === "string");
64691
- if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall2(node, timelineVar) || isGlobalSet) && GSAP_METHODS22.has(callee.property.name)) {
64767
+ if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall2(node, ref2) || isGlobalSet) && GSAP_METHODS22.has(callee.property.name)) {
64692
64768
  const method = callee.property.name;
64693
64769
  const args = node.arguments;
64694
64770
  const selectorValue = args.length >= 1 ? resolveTargetSelector2(args[0], nodeAncestors, scope, targetBindings) ?? "__unresolved__" : "__unresolved__";
@@ -65139,8 +65215,9 @@ function parseGsapScriptAcornForWrite2(script) {
65139
65215
  const scope = collectScopeBindings2(ast);
65140
65216
  const targetBindings = collectTargetBindings2(ast, scope);
65141
65217
  const detection = findTimelineVar2(ast, scope);
65142
- const timelineVar = detection.timelineVar ?? "tl";
65143
- const calls = findAllTweenCalls2(ast, timelineVar, scope, targetBindings);
65218
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
65219
+ const timelineVar = timelineRootSource2(ref2, script);
65220
+ const calls = findAllTweenCalls2(ast, ref2, scope, targetBindings);
65144
65221
  sortBySourcePosition2(calls);
65145
65222
  const rawAnims = calls.map((call) => tweenCallToAnimation2(call, scope, script));
65146
65223
  applyTimelineDefaults2(rawAnims, detection.defaults);
@@ -65151,7 +65228,7 @@ function parseGsapScriptAcornForWrite2(script) {
65151
65228
  call,
65152
65229
  animation: animations[i2]
65153
65230
  }));
65154
- return { ast, timelineVar, hasTimeline: detection.timelineVar !== null, located };
65231
+ return { ast, timelineVar, hasTimeline: detection.ref !== null, located };
65155
65232
  } catch {
65156
65233
  return null;
65157
65234
  }
@@ -65165,24 +65242,25 @@ function parseGsapScriptAcorn2(script) {
65165
65242
  });
65166
65243
  const scope = collectScopeBindings2(ast);
65167
65244
  const detection = findTimelineVar2(ast, scope);
65168
- const timelineVar = detection.timelineVar ?? "tl";
65169
- try {
65170
- inlineComputedTimelines2(ast, timelineVar, (node) => resolveNode2(node, scope));
65171
- } catch {
65245
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
65246
+ const timelineVar = timelineRootSource2(ref2, script);
65247
+ if (ref2.kind === "identifier") {
65248
+ try {
65249
+ inlineComputedTimelines2(ast, timelineVar, (node) => resolveNode2(node, scope));
65250
+ } catch {
65251
+ }
65172
65252
  }
65173
65253
  const targetBindings = collectTargetBindings2(ast, scope);
65174
- const calls = findAllTweenCalls2(ast, timelineVar, scope, targetBindings);
65254
+ const calls = findAllTweenCalls2(ast, ref2, scope, targetBindings);
65175
65255
  sortBySourcePosition2(calls);
65176
65256
  const rawAnims = calls.map((call) => tweenCallToAnimation2(call, scope, script));
65177
65257
  applyTimelineDefaults2(rawAnims, detection.defaults);
65178
65258
  resolveTimelinePositions2(rawAnims);
65179
65259
  const animations = assignStableIds2(rawAnims);
65180
- const timelineMatch = script.match(
65181
- new RegExp(
65182
- `^[\\s\\S]*?(?:const|let|var)\\s+${timelineVar}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?`
65183
- )
65184
- );
65185
- const preamble = timelineMatch?.[0] ?? `const ${timelineVar} = gsap.timeline({ paused: true });`;
65260
+ const declPattern = ref2.kind === "identifier" ? `(?:const|let|var)\\s+${timelineVar}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?` : `${escapeRegExp3(timelineVar)}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?`;
65261
+ const timelineMatch = script.match(new RegExp(`^[\\s\\S]*?${declPattern}`));
65262
+ const fallbackPreamble = ref2.kind === "identifier" ? `const ${timelineVar} = gsap.timeline({ paused: true });` : `${timelineVar} = gsap.timeline({ paused: true });`;
65263
+ const preamble = timelineMatch?.[0] ?? fallbackPreamble;
65186
65264
  const lastCallIdx = script.lastIndexOf(`${timelineVar}.`);
65187
65265
  let postamble = "";
65188
65266
  if (lastCallIdx !== -1) {
@@ -65194,7 +65272,7 @@ function parseGsapScriptAcorn2(script) {
65194
65272
  }
65195
65273
  const result = { animations, timelineVar, preamble, postamble };
65196
65274
  if (detection.timelineCount > 1) result.multipleTimelines = true;
65197
- if (detection.timelineCount > 0 && detection.timelineVar === null)
65275
+ if (detection.timelineCount > 0 && detection.ref === null)
65198
65276
  result.unsupportedTimelinePattern = true;
65199
65277
  return result;
65200
65278
  } catch {
@@ -65210,7 +65288,7 @@ function extractGsapLabels(script) {
65210
65288
  });
65211
65289
  const scope = collectScopeBindings2(ast);
65212
65290
  const detection = findTimelineVar2(ast, scope);
65213
- const timelineVar = detection.timelineVar ?? "tl";
65291
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
65214
65292
  const labels = [];
65215
65293
  simple(ast, {
65216
65294
  // fallow-ignore-next-line complexity
@@ -65218,7 +65296,8 @@ function extractGsapLabels(script) {
65218
65296
  const expr = node.expression;
65219
65297
  if (!expr || expr.type !== "CallExpression") return;
65220
65298
  const callee = expr.callee;
65221
- if (callee?.type !== "MemberExpression" || callee.object?.name !== timelineVar || callee.property?.name !== "addLabel")
65299
+ const objMatches = ref2.kind === "identifier" ? callee.object?.type === "Identifier" && callee.object.name === ref2.name : sameMemberAccess2(callee.object, ref2.node);
65300
+ if (callee?.type !== "MemberExpression" || !objMatches || callee.property?.name !== "addLabel")
65222
65301
  return;
65223
65302
  const args = expr.arguments ?? [];
65224
65303
  const nameNode = args[0];
@@ -65537,11 +65616,11 @@ function buildLintContext(html, options = {}) {
65537
65616
  options
65538
65617
  };
65539
65618
  }
65540
- function escapeRegExp2(value) {
65619
+ function escapeRegExp4(value) {
65541
65620
  return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
65542
65621
  }
65543
65622
  function selectorTargetsCompositionId(selector, compositionId) {
65544
- const escaped = escapeRegExp2(compositionId);
65623
+ const escaped = escapeRegExp4(compositionId);
65545
65624
  return new RegExp(
65546
65625
  String.raw`\[\s*data-composition-id\s*=\s*(?:"${escaped}"|'${escaped}')\s*\]`
65547
65626
  ).test(selector);
@@ -80177,6 +80256,31 @@ function objectExpressionToRecord3(node, scope, source) {
80177
80256
  function isGsapTimelineCall3(node) {
80178
80257
  return node?.type === "CallExpression" && node.callee?.type === "MemberExpression" && node.callee.object?.name === "gsap" && node.callee.property?.name === "timeline";
80179
80258
  }
80259
+ function staticMemberKey3(node) {
80260
+ if (!node || node.type !== "MemberExpression") return null;
80261
+ if (node.computed) {
80262
+ const p2 = node.property;
80263
+ if (p2?.type === "Literal" && typeof p2.value === "string") return p2.value;
80264
+ return null;
80265
+ }
80266
+ return node.property?.type === "Identifier" ? node.property.name : null;
80267
+ }
80268
+ function isStaticMemberRef3(node) {
80269
+ return node?.type === "MemberExpression" && staticMemberKey3(node) !== null;
80270
+ }
80271
+ function sameMemberAccess3(a, b2) {
80272
+ if (a?.type !== "MemberExpression" || b2?.type !== "MemberExpression") return false;
80273
+ if (staticMemberKey3(a) !== staticMemberKey3(b2) || staticMemberKey3(a) === null) return false;
80274
+ const ao = a.object;
80275
+ const bo = b2.object;
80276
+ if (ao?.type === "Identifier" && bo?.type === "Identifier") return ao.name === bo.name;
80277
+ if (ao?.type === "MemberExpression" && bo?.type === "MemberExpression")
80278
+ return sameMemberAccess3(ao, bo);
80279
+ return false;
80280
+ }
80281
+ function timelineRootSource3(ref2, script) {
80282
+ return ref2.kind === "identifier" ? ref2.name : script.slice(ref2.node.start, ref2.node.end);
80283
+ }
80180
80284
  function extractTimelineDefaults3(callNode, scope) {
80181
80285
  const arg = callNode.arguments?.[0];
80182
80286
  if (!arg || arg.type !== "ObjectExpression") return void 0;
@@ -80196,6 +80300,7 @@ function extractTimelineDefaults3(callNode, scope) {
80196
80300
  }
80197
80301
  function findTimelineVar3(ast, scope) {
80198
80302
  let timelineVar = null;
80303
+ let ref2 = null;
80199
80304
  let timelineCount = 0;
80200
80305
  let defaults;
80201
80306
  const emptyScope = scope ?? /* @__PURE__ */ new Map();
@@ -80203,8 +80308,9 @@ function findTimelineVar3(ast, scope) {
80203
80308
  VariableDeclarator(node) {
80204
80309
  if (isGsapTimelineCall3(node.init)) {
80205
80310
  timelineCount += 1;
80206
- if (!timelineVar) {
80207
- timelineVar = node.id?.name ?? null;
80311
+ if (!ref2 && node.id?.type === "Identifier") {
80312
+ timelineVar = node.id.name;
80313
+ ref2 = { kind: "identifier", name: node.id.name };
80208
80314
  defaults = extractTimelineDefaults3(node.init, emptyScope);
80209
80315
  }
80210
80316
  }
@@ -80212,24 +80318,31 @@ function findTimelineVar3(ast, scope) {
80212
80318
  AssignmentExpression(node) {
80213
80319
  if (isGsapTimelineCall3(node.right)) {
80214
80320
  timelineCount += 1;
80215
- if (!timelineVar) {
80321
+ if (!ref2) {
80216
80322
  const left = node.left;
80217
- if (left?.type === "Identifier") timelineVar = left.name;
80218
- defaults = extractTimelineDefaults3(node.right, emptyScope);
80323
+ if (left?.type === "Identifier") {
80324
+ timelineVar = left.name;
80325
+ ref2 = { kind: "identifier", name: left.name };
80326
+ defaults = extractTimelineDefaults3(node.right, emptyScope);
80327
+ } else if (isStaticMemberRef3(left)) {
80328
+ ref2 = { kind: "member", node: left };
80329
+ defaults = extractTimelineDefaults3(node.right, emptyScope);
80330
+ }
80219
80331
  }
80220
80332
  }
80221
80333
  }
80222
80334
  });
80223
- return { timelineVar, timelineCount, defaults };
80335
+ return { timelineVar, ref: ref2, timelineCount, defaults };
80224
80336
  }
80225
- function isTimelineRootedCall3(callNode, timelineVar) {
80337
+ function isTimelineRootedCall3(callNode, ref2) {
80226
80338
  let obj = callNode.callee?.object;
80227
80339
  while (obj?.type === "CallExpression") {
80228
80340
  obj = obj.callee?.object;
80229
80341
  }
80230
- return obj?.type === "Identifier" && obj.name === timelineVar;
80342
+ if (ref2.kind === "identifier") return obj?.type === "Identifier" && obj.name === ref2.name;
80343
+ return sameMemberAccess3(obj, ref2.node);
80231
80344
  }
80232
- function findAllTweenCalls3(ast, timelineVar, scope, targetBindings) {
80345
+ function findAllTweenCalls3(ast, ref2, scope, targetBindings) {
80233
80346
  const results = [];
80234
80347
  function visit(node, ancestors) {
80235
80348
  if (!node || typeof node !== "object") return;
@@ -80238,7 +80351,7 @@ function findAllTweenCalls3(ast, timelineVar, scope, targetBindings) {
80238
80351
  const callee = node.callee;
80239
80352
  const gsapSetArg = node.arguments?.[0];
80240
80353
  const isGlobalSet = callee?.type === "MemberExpression" && callee.object?.type === "Identifier" && callee.object.name === "gsap" && callee.property?.type === "Identifier" && callee.property.name === "set" && (gsapSetArg?.type === "StringLiteral" || gsapSetArg?.type === "Literal" && typeof gsapSetArg.value === "string");
80241
- if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall3(node, timelineVar) || isGlobalSet) && GSAP_METHODS4.has(callee.property.name)) {
80354
+ if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall3(node, ref2) || isGlobalSet) && GSAP_METHODS4.has(callee.property.name)) {
80242
80355
  const method = callee.property.name;
80243
80356
  const args = node.arguments;
80244
80357
  const selectorValue = args.length >= 1 ? resolveTargetSelector3(args[0], nodeAncestors, scope, targetBindings) ?? "__unresolved__" : "__unresolved__";
@@ -80689,8 +80802,9 @@ function parseGsapScriptAcornForWrite3(script) {
80689
80802
  const scope = collectScopeBindings3(ast);
80690
80803
  const targetBindings = collectTargetBindings3(ast, scope);
80691
80804
  const detection = findTimelineVar3(ast, scope);
80692
- const timelineVar = detection.timelineVar ?? "tl";
80693
- const calls = findAllTweenCalls3(ast, timelineVar, scope, targetBindings);
80805
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
80806
+ const timelineVar = timelineRootSource3(ref2, script);
80807
+ const calls = findAllTweenCalls3(ast, ref2, scope, targetBindings);
80694
80808
  sortBySourcePosition3(calls);
80695
80809
  const rawAnims = calls.map((call) => tweenCallToAnimation3(call, scope, script));
80696
80810
  applyTimelineDefaults3(rawAnims, detection.defaults);
@@ -80701,7 +80815,7 @@ function parseGsapScriptAcornForWrite3(script) {
80701
80815
  call,
80702
80816
  animation: animations[i2]
80703
80817
  }));
80704
- return { ast, timelineVar, hasTimeline: detection.timelineVar !== null, located };
80818
+ return { ast, timelineVar, hasTimeline: detection.ref !== null, located };
80705
80819
  } catch {
80706
80820
  return null;
80707
80821
  }
@@ -81117,10 +81231,17 @@ function updateKeyframeInScript(script, animationId, percentage, properties, eas
81117
81231
  if (kfPropNode.value?.type !== "ObjectExpression") return script;
81118
81232
  const match = findKfPropByPct(kfPropNode.value, percentage);
81119
81233
  if (!match) return script;
81120
- const record = { ...properties };
81121
- if (ease) record.ease = ease;
81122
81234
  const ms = new MagicString(script);
81123
- ms.overwrite(match.prop.value.start, match.prop.value.end, recordToCode(record));
81235
+ if (match.prop.value?.type === "ObjectExpression") {
81236
+ for (const [k2, v2] of Object.entries(properties)) {
81237
+ upsertProp(ms, match.prop.value, k2, v2);
81238
+ }
81239
+ if (ease !== void 0) upsertProp(ms, match.prop.value, "ease", ease);
81240
+ } else {
81241
+ const record = { ...properties };
81242
+ if (ease) record.ease = ease;
81243
+ ms.overwrite(match.prop.value.start, match.prop.value.end, recordToCode(record));
81244
+ }
81124
81245
  return ms.toString();
81125
81246
  }
81126
81247
  function updateArrayKeyframeByPct(script, arrayNode, percentage, properties, ease) {
@@ -86753,6 +86874,35 @@ function objectExpressionToRecord4(node, scope) {
86753
86874
  function isGsapTimelineCall4(node) {
86754
86875
  return node?.type === "CallExpression" && node.callee?.type === "MemberExpression" && node.callee.object?.name === "gsap" && node.callee.property?.name === "timeline";
86755
86876
  }
86877
+ function staticMemberKey4(node) {
86878
+ if (!node || node.type !== "MemberExpression") return null;
86879
+ if (node.computed) {
86880
+ const p2 = node.property;
86881
+ if (p2?.type === "StringLiteral") return p2.value;
86882
+ if (p2?.type === "Literal" && typeof p2.value === "string") return p2.value;
86883
+ return null;
86884
+ }
86885
+ return node.property?.type === "Identifier" ? node.property.name : null;
86886
+ }
86887
+ function isStaticMemberRef4(node) {
86888
+ return node?.type === "MemberExpression" && staticMemberKey4(node) !== null;
86889
+ }
86890
+ function sameMemberAccess4(a, b2) {
86891
+ if (a?.type !== "MemberExpression" || b2?.type !== "MemberExpression") return false;
86892
+ if (staticMemberKey4(a) !== staticMemberKey4(b2) || staticMemberKey4(a) === null) return false;
86893
+ const ao = a.object;
86894
+ const bo = b2.object;
86895
+ if (ao?.type === "Identifier" && bo?.type === "Identifier") return ao.name === bo.name;
86896
+ if (ao?.type === "MemberExpression" && bo?.type === "MemberExpression")
86897
+ return sameMemberAccess4(ao, bo);
86898
+ return false;
86899
+ }
86900
+ function timelineRootSource4(ref2) {
86901
+ return ref2.kind === "identifier" ? ref2.name : recast2.print(ref2.node).code;
86902
+ }
86903
+ function escapeRegExp5(s2) {
86904
+ return s2.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
86905
+ }
86756
86906
  function extractTimelineDefaults4(callNode, scope) {
86757
86907
  const arg = callNode.arguments?.[0];
86758
86908
  if (!arg || arg.type !== "ObjectExpression") return void 0;
@@ -86768,6 +86918,7 @@ function extractTimelineDefaults4(callNode, scope) {
86768
86918
  }
86769
86919
  function findTimelineVar4(ast, scope) {
86770
86920
  let timelineVar = null;
86921
+ let ref2 = null;
86771
86922
  let timelineCount = 0;
86772
86923
  let defaults;
86773
86924
  const emptyScope = scope ?? /* @__PURE__ */ new Map();
@@ -86775,8 +86926,9 @@ function findTimelineVar4(ast, scope) {
86775
86926
  visitVariableDeclarator(path2) {
86776
86927
  if (isGsapTimelineCall4(path2.node.init)) {
86777
86928
  timelineCount += 1;
86778
- if (!timelineVar) {
86779
- timelineVar = path2.node.id?.name ?? null;
86929
+ if (!ref2 && path2.node.id?.type === "Identifier") {
86930
+ timelineVar = path2.node.id.name;
86931
+ ref2 = { kind: "identifier", name: path2.node.id.name };
86780
86932
  defaults = extractTimelineDefaults4(path2.node.init, emptyScope);
86781
86933
  }
86782
86934
  }
@@ -86785,25 +86937,32 @@ function findTimelineVar4(ast, scope) {
86785
86937
  visitAssignmentExpression(path2) {
86786
86938
  if (isGsapTimelineCall4(path2.node.right)) {
86787
86939
  timelineCount += 1;
86788
- if (!timelineVar) {
86940
+ if (!ref2) {
86789
86941
  const left = path2.node.left;
86790
- if (left?.type === "Identifier") timelineVar = left.name;
86791
- defaults = extractTimelineDefaults4(path2.node.right, emptyScope);
86942
+ if (left?.type === "Identifier") {
86943
+ timelineVar = left.name;
86944
+ ref2 = { kind: "identifier", name: left.name };
86945
+ defaults = extractTimelineDefaults4(path2.node.right, emptyScope);
86946
+ } else if (isStaticMemberRef4(left)) {
86947
+ ref2 = { kind: "member", node: left };
86948
+ defaults = extractTimelineDefaults4(path2.node.right, emptyScope);
86949
+ }
86792
86950
  }
86793
86951
  }
86794
86952
  this.traverse(path2);
86795
86953
  }
86796
86954
  });
86797
- return { timelineVar, timelineCount, defaults };
86955
+ return { timelineVar, ref: ref2, timelineCount, defaults };
86798
86956
  }
86799
- function isTimelineRootedCall4(callNode, timelineVar) {
86957
+ function isTimelineRootedCall4(callNode, ref2) {
86800
86958
  let obj = callNode.callee?.object;
86801
86959
  while (obj?.type === "CallExpression") {
86802
86960
  obj = obj.callee?.object;
86803
86961
  }
86804
- return obj?.type === "Identifier" && obj.name === timelineVar;
86962
+ if (ref2.kind === "identifier") return obj?.type === "Identifier" && obj.name === ref2.name;
86963
+ return sameMemberAccess4(obj, ref2.node);
86805
86964
  }
86806
- function findAllTweenCalls4(ast, timelineVar, scope, targetBindings) {
86965
+ function findAllTweenCalls4(ast, ref2, scope, targetBindings) {
86807
86966
  const results = [];
86808
86967
  recast2.types.visit(ast, {
86809
86968
  visitCallExpression(path2) {
@@ -86811,7 +86970,7 @@ function findAllTweenCalls4(ast, timelineVar, scope, targetBindings) {
86811
86970
  const callee = node.callee;
86812
86971
  const gsapSetArg = node.arguments?.[0];
86813
86972
  const isGlobalSet = callee?.type === "MemberExpression" && callee.object?.type === "Identifier" && callee.object.name === "gsap" && callee.property?.type === "Identifier" && callee.property.name === "set" && (gsapSetArg?.type === "StringLiteral" || gsapSetArg?.type === "Literal" && typeof gsapSetArg.value === "string");
86814
- if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall4(node, timelineVar) || isGlobalSet)) {
86973
+ if (callee?.type === "MemberExpression" && callee.property?.type === "Identifier" && (isTimelineRootedCall4(node, ref2) || isGlobalSet)) {
86815
86974
  const method = callee.property.name;
86816
86975
  if (!GSAP_METHODS5.has(method)) {
86817
86976
  this.traverse(path2);
@@ -87276,8 +87435,9 @@ function parseGsapAst(script) {
87276
87435
  const scope = collectScopeBindings4(ast);
87277
87436
  const targetBindings = collectTargetBindings4(ast, scope);
87278
87437
  const detection = findTimelineVar4(ast, scope);
87279
- const timelineVar = detection.timelineVar ?? "tl";
87280
- const calls = findAllTweenCalls4(ast, timelineVar, scope, targetBindings);
87438
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
87439
+ const timelineVar = timelineRootSource4(ref2);
87440
+ const calls = findAllTweenCalls4(ast, ref2, scope, targetBindings);
87281
87441
  sortBySourcePosition4(calls);
87282
87442
  const rawAnims = calls.map((call) => tweenCallToAnimation4(call, scope));
87283
87443
  applyTimelineDefaults4(rawAnims, detection.defaults);
@@ -87293,13 +87453,12 @@ function parseGsapAst(script) {
87293
87453
  function parseGsapScript(script) {
87294
87454
  try {
87295
87455
  const { detection, timelineVar, located } = parseGsapAst(script);
87456
+ const ref2 = detection.ref ?? { kind: "identifier", name: "tl" };
87296
87457
  const animations = located.map((l) => l.animation);
87297
- const timelineMatch = script.match(
87298
- new RegExp(
87299
- `^[\\s\\S]*?(?:const|let|var)\\s+${timelineVar}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?`
87300
- )
87301
- );
87302
- const preamble = timelineMatch?.[0] ?? `const ${timelineVar} = gsap.timeline({ paused: true });`;
87458
+ const declPattern = ref2.kind === "identifier" ? `(?:const|let|var)\\s+${timelineVar}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?` : `${escapeRegExp5(timelineVar)}\\s*=\\s*gsap\\.timeline\\s*\\([^)]*\\)\\s*;?`;
87459
+ const timelineMatch = script.match(new RegExp(`^[\\s\\S]*?${declPattern}`));
87460
+ const fallbackPreamble = ref2.kind === "identifier" ? `const ${timelineVar} = gsap.timeline({ paused: true });` : `${timelineVar} = gsap.timeline({ paused: true });`;
87461
+ const preamble = timelineMatch?.[0] ?? fallbackPreamble;
87303
87462
  const lastCallIdx = script.lastIndexOf(`${timelineVar}.`);
87304
87463
  let postamble = "";
87305
87464
  if (lastCallIdx !== -1) {
@@ -87311,7 +87470,7 @@ function parseGsapScript(script) {
87311
87470
  }
87312
87471
  const result = { animations, timelineVar, preamble, postamble };
87313
87472
  if (detection.timelineCount > 1) result.multipleTimelines = true;
87314
- if (detection.timelineCount > 0 && detection.timelineVar === null)
87473
+ if (detection.timelineCount > 0 && detection.ref === null)
87315
87474
  result.unsupportedTimelinePattern = true;
87316
87475
  return result;
87317
87476
  } catch {
@@ -87523,7 +87682,7 @@ function addAnimationToScript2(script, animation) {
87523
87682
  console.warn("[gsap-parser] addAnimationToScript parse failed:", e3);
87524
87683
  return { script, id: "" };
87525
87684
  }
87526
- if (parsed.located.length === 0 && parsed.detection.timelineVar === null) {
87685
+ if (parsed.located.length === 0 && parsed.detection.ref === null) {
87527
87686
  return { script, id: "" };
87528
87687
  }
87529
87688
  const id = `anim-${Date.now()}`;
@@ -87540,7 +87699,7 @@ function addAnimationWithKeyframesToScript2(script, targetSelector, position, du
87540
87699
  console.warn("[gsap-parser] addAnimationWithKeyframesToScript parse failed:", e3);
87541
87700
  return { script, id: "" };
87542
87701
  }
87543
- if (parsed.located.length === 0 && parsed.detection.timelineVar === null) {
87702
+ if (parsed.located.length === 0 && parsed.detection.ref === null) {
87544
87703
  return { script, id: "" };
87545
87704
  }
87546
87705
  const selector = JSON.stringify(targetSelector);
@@ -88054,9 +88213,9 @@ function updateKeyframeInScript2(script, animationId, percentage, properties, ea
88054
88213
  const match = findKeyframePropByPct(kfNode, percentage);
88055
88214
  if (!match) return script;
88056
88215
  if (Object.keys(properties).length === 0 && ease) {
88057
- const existing = match.prop.value;
88058
- if (existing?.type === "ObjectExpression") {
88059
- const props = existing.properties ?? [];
88216
+ const existing2 = match.prop.value;
88217
+ if (existing2?.type === "ObjectExpression") {
88218
+ const props = existing2.properties ?? [];
88060
88219
  const easeIdx = props.findIndex(
88061
88220
  (p2) => isObjectProperty4(p2) && propKeyName4(p2) === "ease"
88062
88221
  );
@@ -88070,6 +88229,19 @@ function updateKeyframeInScript2(script, animationId, percentage, properties, ea
88070
88229
  }
88071
88230
  return script;
88072
88231
  }
88232
+ const existing = match.prop.value;
88233
+ if (existing?.type === "ObjectExpression") {
88234
+ const props = existing.properties ?? [];
88235
+ const upsert = (key2, valueCode) => {
88236
+ const idx = props.findIndex((p2) => isObjectProperty4(p2) && propKeyName4(p2) === key2);
88237
+ const node = parseExpr(`({ ${safeJsKey2(key2)}: ${valueCode} })`).properties[0];
88238
+ if (idx >= 0) props[idx] = node;
88239
+ else props.push(node);
88240
+ };
88241
+ for (const [k2, v2] of Object.entries(properties)) upsert(k2, serializeValue2(v2));
88242
+ if (ease !== void 0) upsert("ease", JSON.stringify(ease));
88243
+ return recast2.print(loc.parsed.ast).code;
88244
+ }
88073
88245
  match.prop.value = buildKeyframeValueNode(properties, ease);
88074
88246
  return recast2.print(loc.parsed.ast).code;
88075
88247
  }
@@ -88375,7 +88547,7 @@ function addMotionPathToScript(script, targetSelector, position, duration, point
88375
88547
  console.warn("[gsap-parser] addMotionPathToScript parse failed:", e3);
88376
88548
  return { script, id: null };
88377
88549
  }
88378
- if (parsed.located.length === 0 && parsed.detection.timelineVar === null) {
88550
+ if (parsed.located.length === 0 && parsed.detection.ref === null) {
88379
88551
  return { script, id: null };
88380
88552
  }
88381
88553
  const motionPathCode = buildMotionPathObjectCode2({
@@ -89171,7 +89343,7 @@ function isHTMLElement(el) {
89171
89343
  const HTMLEl = el.ownerDocument.defaultView?.HTMLElement;
89172
89344
  return HTMLEl ? el instanceof HTMLEl : "style" in el;
89173
89345
  }
89174
- function patchStyleAttrString(style, property, value) {
89346
+ function parseStyleDecls(style) {
89175
89347
  const props = /* @__PURE__ */ new Map();
89176
89348
  const order = [];
89177
89349
  let i2 = 0;
@@ -89202,6 +89374,13 @@ function patchStyleAttrString(style, property, value) {
89202
89374
  if (!props.has(key2)) order.push(key2);
89203
89375
  props.set(key2, val);
89204
89376
  }
89377
+ return { props, order };
89378
+ }
89379
+ function serializeStyleDecls(props, order) {
89380
+ return order.map((k2) => `${k2}: ${props.get(k2) ?? ""}`).filter((d2) => d2.trim()).join("; ");
89381
+ }
89382
+ function patchStyleAttrString(style, property, value) {
89383
+ const { props, order } = parseStyleDecls(style);
89205
89384
  if (value === null) {
89206
89385
  props.delete(property);
89207
89386
  const idx = order.indexOf(property);
@@ -89210,7 +89389,7 @@ function patchStyleAttrString(style, property, value) {
89210
89389
  if (!props.has(property)) order.push(property);
89211
89390
  props.set(property, value);
89212
89391
  }
89213
- return order.map((k2) => `${k2}: ${props.get(k2) ?? ""}`).filter((d2) => d2.trim()).join("; ");
89392
+ return serializeStyleDecls(props, order);
89214
89393
  }
89215
89394
  function patchElementInHtml(source, target, operations) {
89216
89395
  const { document: document2, wrappedFragment } = parseSourceDocument(source);
@@ -89337,6 +89516,127 @@ function splitElementInHtml(source, target, splitTime, newId, fallbackTiming) {
89337
89516
  newId
89338
89517
  };
89339
89518
  }
89519
+ function getInlineStylePx(el, property) {
89520
+ const style = (isHTMLElement(el) ? el.getAttribute("style") : null) ?? "";
89521
+ const { props } = parseStyleDecls(style);
89522
+ const raw = props.get(property);
89523
+ if (!raw) return 0;
89524
+ const n2 = parseFloat(raw);
89525
+ return Number.isFinite(n2) ? n2 : 0;
89526
+ }
89527
+ function setInlineLeftTop(el, left, top) {
89528
+ let style = el.getAttribute("style") ?? "";
89529
+ style = patchStyleAttrString(style, "left", `${left}px`);
89530
+ style = patchStyleAttrString(style, "top", `${top}px`);
89531
+ el.setAttribute("style", style);
89532
+ }
89533
+ function uniqueGroupDomId(document2, groupId) {
89534
+ const base2 = groupId.trim().toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-+|-+$/g, "") || "group";
89535
+ let id = base2;
89536
+ let n2 = 2;
89537
+ while (document2.getElementById(id)) {
89538
+ id = `${base2}-${n2}`;
89539
+ n2 += 1;
89540
+ }
89541
+ return id;
89542
+ }
89543
+ function wrapElementsInHtml(source, targets, groupId, bbox, rebases) {
89544
+ const { document: document2, wrappedFragment } = parseSourceDocument(source);
89545
+ if (targets.length === 0) {
89546
+ return { html: source, matched: false, groupId: null, error: "no targets" };
89547
+ }
89548
+ const els = [];
89549
+ const seen = /* @__PURE__ */ new Set();
89550
+ for (const target of targets) {
89551
+ const el = findTargetElement(document2, target);
89552
+ if (!el || !isHTMLElement(el) || seen.has(el)) continue;
89553
+ seen.add(el);
89554
+ els.push(el);
89555
+ }
89556
+ if (els.length === 0) {
89557
+ return { html: source, matched: false, groupId: null, error: "no targets matched" };
89558
+ }
89559
+ const parent = els[0]?.parentElement;
89560
+ if (!parent || els.some((el) => el.parentElement !== parent)) {
89561
+ return {
89562
+ html: source,
89563
+ matched: false,
89564
+ groupId: null,
89565
+ error: "grouped elements must share a single parent"
89566
+ };
89567
+ }
89568
+ const memberSet = new Set(els);
89569
+ const ordered = Array.from(parent.children).filter((c3) => memberSet.has(c3));
89570
+ const rebaseByEl = /* @__PURE__ */ new Map();
89571
+ for (const rebase of rebases) {
89572
+ const el = findTargetElement(document2, rebase.target);
89573
+ if (el) rebaseByEl.set(el, { left: rebase.left, top: rebase.top });
89574
+ }
89575
+ const wrapper = document2.createElement("div");
89576
+ wrapper.setAttribute("data-hf-group", groupId);
89577
+ wrapper.setAttribute("id", uniqueGroupDomId(document2, groupId));
89578
+ const memberZIndexes = ordered.map(
89579
+ (el) => Number.parseInt(
89580
+ parseStyleDecls(el.getAttribute("style") ?? "").props.get("z-index") ?? "",
89581
+ 10
89582
+ )
89583
+ ).filter((z3) => Number.isFinite(z3));
89584
+ const maxZ = memberZIndexes.length > 0 ? Math.max(...memberZIndexes) : null;
89585
+ wrapper.setAttribute(
89586
+ "style",
89587
+ `position: absolute; left: ${bbox.left}px; top: ${bbox.top}px; width: ${bbox.width}px; height: ${bbox.height}px` + (maxZ !== null ? `; z-index: ${maxZ}` : "")
89588
+ );
89589
+ parent.insertBefore(wrapper, ordered[ordered.length - 1] ?? null);
89590
+ for (const el of ordered) {
89591
+ const rebase = rebaseByEl.get(el);
89592
+ if (rebase) setInlineLeftTop(el, rebase.left, rebase.top);
89593
+ wrapper.appendChild(el);
89594
+ }
89595
+ return {
89596
+ html: wrappedFragment ? document2.body.innerHTML || "" : document2.toString(),
89597
+ matched: true,
89598
+ groupId
89599
+ };
89600
+ }
89601
+ function unwrapElementsFromHtml(source, groupTarget) {
89602
+ const { document: document2, wrappedFragment } = parseSourceDocument(source);
89603
+ const group = findTargetElement(document2, groupTarget);
89604
+ if (!group || !isHTMLElement(group)) return { html: source, unwrapped: false };
89605
+ if (!group.hasAttribute("data-hf-group")) return { html: source, unwrapped: false };
89606
+ const parent = group.parentElement;
89607
+ if (!parent) return { html: source, unwrapped: false };
89608
+ const wLeft = getInlineStylePx(group, "left");
89609
+ const wTop = getInlineStylePx(group, "top");
89610
+ const groupCenter = {
89611
+ cx: wLeft + getInlineStylePx(group, "width") / 2,
89612
+ cy: wTop + getInlineStylePx(group, "height") / 2
89613
+ };
89614
+ const members = [];
89615
+ for (const child of Array.from(group.children)) {
89616
+ if (isHTMLElement(child)) {
89617
+ const newLeft = getInlineStylePx(child, "left") + wLeft;
89618
+ const newTop = getInlineStylePx(child, "top") + wTop;
89619
+ setInlineLeftTop(child, newLeft, newTop);
89620
+ if (child.id) {
89621
+ members.push({
89622
+ id: child.id,
89623
+ cx: newLeft + getInlineStylePx(child, "width") / 2,
89624
+ cy: newTop + getInlineStylePx(child, "height") / 2
89625
+ });
89626
+ }
89627
+ }
89628
+ parent.insertBefore(child, group);
89629
+ }
89630
+ const groupId = group.id || void 0;
89631
+ group.remove();
89632
+ return {
89633
+ html: wrappedFragment ? document2.body.innerHTML || "" : document2.toString(),
89634
+ unwrapped: true,
89635
+ unwrappedGroupId: groupId,
89636
+ members,
89637
+ groupCenter
89638
+ };
89639
+ }
89340
89640
  function isAcornGsapWriterEnabled() {
89341
89641
  const val = process.env["STUDIO_SDK_CUTOVER_ENABLED"];
89342
89642
  return val === "true" || val === "1";
@@ -89472,6 +89772,97 @@ function extractGsapScriptBlock(html) {
89472
89772
  }
89473
89773
  return null;
89474
89774
  }
89775
+ function stripGsapAnimationsForSelector(html, selector) {
89776
+ const block = extractGsapScriptBlock(html);
89777
+ if (!block) return html;
89778
+ const parsed = parseGsapScriptAcorn2(block.scriptText);
89779
+ const matching = parsed.animations.filter((a) => a.targetSelector === selector);
89780
+ if (matching.length === 0) return html;
89781
+ let script = block.scriptText;
89782
+ for (const anim of [...matching].reverse()) {
89783
+ script = removeAnimationFromScript2(script, anim.id);
89784
+ }
89785
+ return block.replaceScript(script);
89786
+ }
89787
+ function bakeGroupTransformIntoMembers(html, groupId, members, groupCenter) {
89788
+ const block = extractGsapScriptBlock(html);
89789
+ if (!block) return html;
89790
+ const parsed = parseGsapScriptAcorn2(block.scriptText);
89791
+ const groupSel = `#${groupId}`;
89792
+ const groupSets = parsed.animations.filter(
89793
+ (a) => a.targetSelector === groupSel && a.method === "set"
89794
+ );
89795
+ if (groupSets.length === 0) return html;
89796
+ const gt2 = {};
89797
+ for (const s2 of groupSets) {
89798
+ for (const [k2, v2] of Object.entries(s2.properties)) if (typeof v2 === "number") gt2[k2] = v2;
89799
+ }
89800
+ const gx = gt2.x ?? 0;
89801
+ const gy = gt2.y ?? 0;
89802
+ const gz = gt2.z ?? 0;
89803
+ const grot = gt2.rotation ?? 0;
89804
+ const gscale = gt2.scale ?? 1;
89805
+ const isScaleAxis = (k2) => k2 === "scale" || k2 === "scaleX" || k2 === "scaleY";
89806
+ const groupIsIdentity = Object.entries(gt2).every(
89807
+ ([k2, v2]) => isScaleAxis(k2) ? v2 === 1 : v2 === 0
89808
+ );
89809
+ if (groupIsIdentity) return html;
89810
+ const rad = grot * Math.PI / 180;
89811
+ const cos = Math.cos(rad);
89812
+ const sin = Math.sin(rad);
89813
+ const round32 = (n2) => Math.round(n2 * 1e3) / 1e3;
89814
+ let script = block.scriptText;
89815
+ for (const m2 of members) {
89816
+ const memberSel = `#${m2.id}`;
89817
+ const sets = parsed.animations.filter(
89818
+ (a) => a.targetSelector === memberSel && a.method === "set"
89819
+ );
89820
+ const mProps = {};
89821
+ for (const s2 of sets) Object.assign(mProps, s2.properties);
89822
+ const mx = typeof mProps.x === "number" ? mProps.x : 0;
89823
+ const my = typeof mProps.y === "number" ? mProps.y : 0;
89824
+ const dx = m2.cx + mx - groupCenter.cx;
89825
+ const dy = m2.cy + my - groupCenter.cy;
89826
+ const visX = groupCenter.cx + gscale * (cos * dx - sin * dy) + gx;
89827
+ const visY = groupCenter.cy + gscale * (sin * dx + cos * dy) + gy;
89828
+ const newProps = {
89829
+ ...mProps,
89830
+ x: round32(visX - m2.cx),
89831
+ y: round32(visY - m2.cy)
89832
+ };
89833
+ if (gz !== 0) newProps.z = (typeof mProps.z === "number" ? mProps.z : 0) + gz;
89834
+ if (grot !== 0) {
89835
+ newProps.rotation = round32(
89836
+ (typeof mProps.rotation === "number" ? mProps.rotation : 0) + grot
89837
+ );
89838
+ }
89839
+ if (gscale !== 1) {
89840
+ newProps.scale = round32((typeof mProps.scale === "number" ? mProps.scale : 1) * gscale);
89841
+ }
89842
+ const pivoted = /* @__PURE__ */ new Set(["x", "y", "z", "rotation", "scale"]);
89843
+ for (const [k2, v2] of Object.entries(gt2)) {
89844
+ if (pivoted.has(k2) || typeof v2 !== "number") continue;
89845
+ if (k2 === "scaleX" || k2 === "scaleY") {
89846
+ if (v2 !== 1) newProps[k2] = round32((typeof mProps[k2] === "number" ? mProps[k2] : 1) * v2);
89847
+ } else if (k2 === "transformPerspective") {
89848
+ if (typeof mProps[k2] !== "number") newProps[k2] = v2;
89849
+ } else if (v2 !== 0) {
89850
+ newProps[k2] = round32((typeof mProps[k2] === "number" ? mProps[k2] : 0) + v2);
89851
+ }
89852
+ }
89853
+ for (const s2 of [...sets].reverse()) {
89854
+ script = removeAnimationFromScript2(script, s2.id);
89855
+ }
89856
+ script = addAnimationToScript(script, {
89857
+ targetSelector: memberSel,
89858
+ method: "set",
89859
+ position: 0,
89860
+ properties: newProps,
89861
+ global: true
89862
+ }).script;
89863
+ }
89864
+ return block.replaceScript(script);
89865
+ }
89475
89866
  function stripStudioEditsFromTarget(document2, selector) {
89476
89867
  if (!selector) return 0;
89477
89868
  let stripped = 0;
@@ -90292,6 +90683,88 @@ function registerFileRoutes(api, adapter2) {
90292
90683
  backupPath: backupPathForResponse(ctx.project.dir, backup.backupPath)
90293
90684
  });
90294
90685
  });
90686
+ api.post("/projects/:id/file-mutations/wrap-elements/*", async (c3) => {
90687
+ const ctx = await resolveFileMutationContext(c3, adapter2, "wrap-elements");
90688
+ if ("error" in ctx) return ctx.error;
90689
+ const body = await c3.req.json().catch(() => null);
90690
+ if (!Array.isArray(body?.targets) || body.targets.length === 0 || !body.groupId) {
90691
+ return c3.json({ error: "targets and groupId required" }, 400);
90692
+ }
90693
+ const bbox = body.bbox ?? {};
90694
+ const bboxNums = [bbox.left, bbox.top, bbox.width, bbox.height];
90695
+ const rebases = body.rebases ?? [];
90696
+ const allNumeric = bboxNums.every((n2) => typeof n2 === "number" && Number.isFinite(n2)) && rebases.every(
90697
+ (r2) => typeof r2?.left === "number" && Number.isFinite(r2.left) && typeof r2?.top === "number" && Number.isFinite(r2.top)
90698
+ );
90699
+ if (!allNumeric) {
90700
+ return c3.json({ error: "bbox and rebase coordinates must be finite numbers" }, 400);
90701
+ }
90702
+ let originalContent;
90703
+ try {
90704
+ originalContent = readFileSync32(ctx.absPath, "utf-8");
90705
+ } catch {
90706
+ return c3.json({ error: "not found" }, 404);
90707
+ }
90708
+ const result = wrapElementsInHtml(
90709
+ originalContent,
90710
+ body.targets,
90711
+ body.groupId,
90712
+ { left: bbox.left, top: bbox.top, width: bbox.width, height: bbox.height },
90713
+ rebases
90714
+ );
90715
+ if (!result.matched) {
90716
+ return c3.json(
90717
+ {
90718
+ ok: false,
90719
+ changed: false,
90720
+ content: originalContent,
90721
+ path: ctx.filePath,
90722
+ error: result.error
90723
+ },
90724
+ result.error === "grouped elements must share a single parent" ? 422 : 400
90725
+ );
90726
+ }
90727
+ const backup = snapshotBeforeWrite(ctx.project.dir, ctx.absPath);
90728
+ if (backup.error) console.warn(`Failed to create backup for ${ctx.filePath}: ${backup.error}`);
90729
+ writeFileSync42(ctx.absPath, result.html, "utf-8");
90730
+ return c3.json({
90731
+ ok: true,
90732
+ changed: true,
90733
+ groupId: result.groupId,
90734
+ content: result.html,
90735
+ path: ctx.filePath,
90736
+ backupPath: backupPathForResponse(ctx.project.dir, backup.backupPath)
90737
+ });
90738
+ });
90739
+ api.post("/projects/:id/file-mutations/unwrap-elements/*", async (c3) => {
90740
+ const ctx = await resolveFileMutationContext(c3, adapter2, "unwrap-elements");
90741
+ if ("error" in ctx) return ctx.error;
90742
+ const parsed = await parseMutationBody(c3);
90743
+ if ("error" in parsed) return parsed.error;
90744
+ let originalContent;
90745
+ try {
90746
+ originalContent = readFileSync32(ctx.absPath, "utf-8");
90747
+ } catch {
90748
+ return c3.json({ error: "not found" }, 404);
90749
+ }
90750
+ const result = unwrapElementsFromHtml(originalContent, parsed.target);
90751
+ if (!result.unwrapped) {
90752
+ return c3.json({ ok: false, changed: false, content: originalContent, path: ctx.filePath });
90753
+ }
90754
+ let cleaned = result.html;
90755
+ if (result.unwrappedGroupId && result.members && result.groupCenter) {
90756
+ cleaned = bakeGroupTransformIntoMembers(
90757
+ cleaned,
90758
+ result.unwrappedGroupId,
90759
+ result.members,
90760
+ result.groupCenter
90761
+ );
90762
+ }
90763
+ if (result.unwrappedGroupId) {
90764
+ cleaned = stripGsapAnimationsForSelector(cleaned, `#${result.unwrappedGroupId}`);
90765
+ }
90766
+ return writeIfChanged(c3, ctx.project.dir, ctx.filePath, ctx.absPath, originalContent, cleaned);
90767
+ });
90295
90768
  api.post("/projects/:id/file-mutations/probe-element/*", async (c3) => {
90296
90769
  const ctx = await resolveFileMutationContext(c3, adapter2, "probe-element");
90297
90770
  if ("error" in ctx) return ctx.error;