@vue/compiler-dom 3.2.24 → 3.2.28

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.
@@ -123,8 +123,20 @@ const SVG_TAGS = 'svg,animate,animateMotion,animateTransform,circle,clipPath,col
123
123
  'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +
124
124
  'text,textPath,title,tspan,unknown,use,view';
125
125
  const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
126
+ /**
127
+ * Compiler only.
128
+ * Do NOT use in runtime code paths unless behind `true` flag.
129
+ */
126
130
  const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);
131
+ /**
132
+ * Compiler only.
133
+ * Do NOT use in runtime code paths unless behind `true` flag.
134
+ */
127
135
  const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);
136
+ /**
137
+ * Compiler only.
138
+ * Do NOT use in runtime code paths unless behind `true` flag.
139
+ */
128
140
  const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
129
141
 
130
142
  const EMPTY_OBJ = Object.freeze({})
@@ -144,7 +156,7 @@ const isSymbol = (val) => typeof val === 'symbol';
144
156
  const isObject = (val) => val !== null && typeof val === 'object';
145
157
  const isReservedProp = /*#__PURE__*/ makeMap(
146
158
  // the leading comma is intentional so empty string "" is also included
147
- ',key,ref,' +
159
+ ',key,ref,ref_for,ref_key,' +
148
160
  'onVnodeBeforeMount,onVnodeMounted,' +
149
161
  'onVnodeBeforeUpdate,onVnodeUpdated,' +
150
162
  'onVnodeBeforeUnmount,onVnodeUnmounted');
@@ -686,12 +698,12 @@ function findProp(node, name, dynamicOnly = false, allowEmpty = false) {
686
698
  }
687
699
  else if (p.name === 'bind' &&
688
700
  (p.exp || allowEmpty) &&
689
- isBindKey(p.arg, name)) {
701
+ isStaticArgOf(p.arg, name)) {
690
702
  return p;
691
703
  }
692
704
  }
693
705
  }
694
- function isBindKey(arg, name) {
706
+ function isStaticArgOf(arg, name) {
695
707
  return !!(arg && isStaticExp(arg) && arg.content === name);
696
708
  }
697
709
  function hasDynamicKeyVBind(node) {
@@ -924,11 +936,6 @@ const deprecationData = {
924
936
  `data source.`,
925
937
  link: `https://v3.vuejs.org/guide/migration/v-if-v-for.html`
926
938
  },
927
- ["COMPILER_V_FOR_REF" /* COMPILER_V_FOR_REF */]: {
928
- message: `Ref usage on v-for no longer creates array ref values in Vue 3. ` +
929
- `Consider using function refs or refactor to avoid ref usage altogether.`,
930
- link: `https://v3.vuejs.org/guide/migration/array-refs.html`
931
- },
932
939
  ["COMPILER_NATIVE_TEMPLATE" /* COMPILER_NATIVE_TEMPLATE */]: {
933
940
  message: `<template> with no special directives will render as a native template ` +
934
941
  `element instead of its inner content in Vue 3.`
@@ -1446,7 +1453,7 @@ function isComponent(tag, props, context) {
1446
1453
  else if (
1447
1454
  // :is on plain element - only treat as component in compat mode
1448
1455
  p.name === 'bind' &&
1449
- isBindKey(p.arg, 'is') &&
1456
+ isStaticArgOf(p.arg, 'is') &&
1450
1457
  true &&
1451
1458
  checkCompatEnabled("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context, p.loc)) {
1452
1459
  return true;
@@ -1471,7 +1478,7 @@ function parseAttributes(context, type) {
1471
1478
  }
1472
1479
  const attr = parseAttribute(context, attributeNames);
1473
1480
  // Trim whitespace between class
1474
- // https://github.com/vuejs/vue-next/issues/4251
1481
+ // https://github.com/vuejs/core/issues/4251
1475
1482
  if (attr.type === 6 /* ATTRIBUTE */ &&
1476
1483
  attr.value &&
1477
1484
  attr.name === 'class') {
@@ -1707,7 +1714,7 @@ function parseTextData(context, length, mode) {
1707
1714
  advanceBy(context, length);
1708
1715
  if (mode === 2 /* RAWTEXT */ ||
1709
1716
  mode === 3 /* CDATA */ ||
1710
- rawText.indexOf('&') === -1) {
1717
+ !rawText.includes('&')) {
1711
1718
  return rawText;
1712
1719
  }
1713
1720
  else {
@@ -1904,6 +1911,11 @@ function getConstantType(node, context) {
1904
1911
  if (codegenNode.type !== 13 /* VNODE_CALL */) {
1905
1912
  return 0 /* NOT_CONSTANT */;
1906
1913
  }
1914
+ if (codegenNode.isBlock &&
1915
+ node.tag !== 'svg' &&
1916
+ node.tag !== 'foreignObject') {
1917
+ return 0 /* NOT_CONSTANT */;
1918
+ }
1907
1919
  const flag = getPatchFlag(codegenNode);
1908
1920
  if (!flag) {
1909
1921
  let returnType = 3 /* CAN_STRINGIFY */;
@@ -2040,7 +2052,7 @@ function getGeneratedPropsConstantType(node, context) {
2040
2052
  else if (value.type === 14 /* JS_CALL_EXPRESSION */) {
2041
2053
  // some helper calls can be hoisted,
2042
2054
  // such as the `normalizeProps` generated by the compiler for pre-normalize class,
2043
- // in this case we need to respect the ConstantType of the helper's argments
2055
+ // in this case we need to respect the ConstantType of the helper's arguments
2044
2056
  valueType = getConstantTypeOfHelperCall(value, context);
2045
2057
  }
2046
2058
  else {
@@ -3320,6 +3332,7 @@ const transformFor = createStructuralDirectiveTransform('for', (node, dir, conte
3320
3332
  const renderExp = createCallExpression(helper(RENDER_LIST), [
3321
3333
  forNode.source
3322
3334
  ]);
3335
+ const isTemplate = isTemplateNode(node);
3323
3336
  const memo = findDir(node, 'memo');
3324
3337
  const keyProp = findProp(node, `key`);
3325
3338
  const keyExp = keyProp &&
@@ -3339,7 +3352,6 @@ const transformFor = createStructuralDirectiveTransform('for', (node, dir, conte
3339
3352
  return () => {
3340
3353
  // finish the codegen now that all children have been traversed
3341
3354
  let childBlock;
3342
- const isTemplate = isTemplateNode(node);
3343
3355
  const { children } = forNode;
3344
3356
  // check <template v-for> key placement
3345
3357
  if (isTemplate) {
@@ -3826,10 +3838,7 @@ const transformElement = (node, context) => {
3826
3838
  // updates inside get proper isSVG flag at runtime. (#639, #643)
3827
3839
  // This is technically web-specific, but splitting the logic out of core
3828
3840
  // leads to too much unnecessary complexity.
3829
- (tag === 'svg' ||
3830
- tag === 'foreignObject' ||
3831
- // #938: elements with dynamic keys should be forced into blocks
3832
- findProp(node, 'key', true)));
3841
+ (tag === 'svg' || tag === 'foreignObject'));
3833
3842
  // props
3834
3843
  if (props.length > 0) {
3835
3844
  const propsBuildResult = buildProps(node, context);
@@ -3841,6 +3850,9 @@ const transformElement = (node, context) => {
3841
3850
  directives && directives.length
3842
3851
  ? createArrayExpression(directives.map(dir => buildDirectiveArgs(dir, context)))
3843
3852
  : undefined;
3853
+ if (propsBuildResult.shouldUseBlock) {
3854
+ shouldUseBlock = true;
3855
+ }
3844
3856
  }
3845
3857
  // children
3846
3858
  if (node.children.length > 0) {
@@ -3969,11 +3981,13 @@ function resolveComponentType(node, context, ssr = false) {
3969
3981
  return toValidAssetId(tag, `component`);
3970
3982
  }
3971
3983
  function buildProps(node, context, props = node.props, ssr = false) {
3972
- const { tag, loc: elementLoc } = node;
3984
+ const { tag, loc: elementLoc, children } = node;
3973
3985
  const isComponent = node.tagType === 1 /* COMPONENT */;
3974
3986
  let properties = [];
3975
3987
  const mergeArgs = [];
3976
3988
  const runtimeDirectives = [];
3989
+ const hasChildren = children.length > 0;
3990
+ let shouldUseBlock = false;
3977
3991
  // patchFlag analysis
3978
3992
  let patchFlag = 0;
3979
3993
  let hasRef = false;
@@ -4036,9 +4050,12 @@ function buildProps(node, context, props = node.props, ssr = false) {
4036
4050
  const prop = props[i];
4037
4051
  if (prop.type === 6 /* ATTRIBUTE */) {
4038
4052
  const { loc, name, value } = prop;
4039
- let valueNode = createSimpleExpression(value ? value.content : '', true, value ? value.loc : loc);
4053
+ let isStatic = true;
4040
4054
  if (name === 'ref') {
4041
4055
  hasRef = true;
4056
+ if (context.scopes.vFor > 0) {
4057
+ properties.push(createObjectProperty(createSimpleExpression('ref_for', true), createSimpleExpression('true')));
4058
+ }
4042
4059
  }
4043
4060
  // skip is on <component>, or is="vue:xxx"
4044
4061
  if (name === 'is' &&
@@ -4047,7 +4064,7 @@ function buildProps(node, context, props = node.props, ssr = false) {
4047
4064
  (isCompatEnabled("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context)))) {
4048
4065
  continue;
4049
4066
  }
4050
- properties.push(createObjectProperty(createSimpleExpression(name, true, getInnerRange(loc, 0, name.length)), valueNode));
4067
+ properties.push(createObjectProperty(createSimpleExpression(name, true, getInnerRange(loc, 0, name.length)), createSimpleExpression(value ? value.content : '', isStatic, value ? value.loc : loc)));
4051
4068
  }
4052
4069
  else {
4053
4070
  // directives
@@ -4068,7 +4085,7 @@ function buildProps(node, context, props = node.props, ssr = false) {
4068
4085
  // skip v-is and :is on <component>
4069
4086
  if (name === 'is' ||
4070
4087
  (isVBind &&
4071
- isBindKey(arg, 'is') &&
4088
+ isStaticArgOf(arg, 'is') &&
4072
4089
  (isComponentTag(tag) ||
4073
4090
  (isCompatEnabled("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context))))) {
4074
4091
  continue;
@@ -4077,6 +4094,17 @@ function buildProps(node, context, props = node.props, ssr = false) {
4077
4094
  if (isVOn && ssr) {
4078
4095
  continue;
4079
4096
  }
4097
+ if (
4098
+ // #938: elements with dynamic keys should be forced into blocks
4099
+ (isVBind && isStaticArgOf(arg, 'key')) ||
4100
+ // inline before-update hooks need to force block so that it is invoked
4101
+ // before children
4102
+ (isVOn && hasChildren && isStaticArgOf(arg, 'vue:before-update'))) {
4103
+ shouldUseBlock = true;
4104
+ }
4105
+ if (isVBind && isStaticArgOf(arg, 'ref') && context.scopes.vFor > 0) {
4106
+ properties.push(createObjectProperty(createSimpleExpression('ref_for', true), createSimpleExpression('true')));
4107
+ }
4080
4108
  // special case for v-bind and v-on with no argument
4081
4109
  if (!arg && (isVBind || isVOn)) {
4082
4110
  hasDynamicKeys = true;
@@ -4150,14 +4178,13 @@ function buildProps(node, context, props = node.props, ssr = false) {
4150
4178
  else {
4151
4179
  // no built-in transform, this is a user custom directive.
4152
4180
  runtimeDirectives.push(prop);
4181
+ // custom dirs may use beforeUpdate so they need to force blocks
4182
+ // to ensure before-update gets called before children update
4183
+ if (hasChildren) {
4184
+ shouldUseBlock = true;
4185
+ }
4153
4186
  }
4154
4187
  }
4155
- if (prop.type === 6 /* ATTRIBUTE */ &&
4156
- prop.name === 'ref' &&
4157
- context.scopes.vFor > 0 &&
4158
- checkCompatEnabled("COMPILER_V_FOR_REF" /* COMPILER_V_FOR_REF */, context, prop.loc)) {
4159
- properties.push(createObjectProperty(createSimpleExpression('refInFor', true), createSimpleExpression('true', false)));
4160
- }
4161
4188
  }
4162
4189
  let propsExpression = undefined;
4163
4190
  // has v-bind="object" or v-on="object", wrap with mergeProps
@@ -4194,7 +4221,8 @@ function buildProps(node, context, props = node.props, ssr = false) {
4194
4221
  patchFlag |= 32 /* HYDRATE_EVENTS */;
4195
4222
  }
4196
4223
  }
4197
- if ((patchFlag === 0 || patchFlag === 32 /* HYDRATE_EVENTS */) &&
4224
+ if (!shouldUseBlock &&
4225
+ (patchFlag === 0 || patchFlag === 32 /* HYDRATE_EVENTS */) &&
4198
4226
  (hasRef || hasVnodeHook || runtimeDirectives.length > 0)) {
4199
4227
  patchFlag |= 512 /* NEED_PATCH */;
4200
4228
  }
@@ -4261,7 +4289,8 @@ function buildProps(node, context, props = node.props, ssr = false) {
4261
4289
  props: propsExpression,
4262
4290
  directives: runtimeDirectives,
4263
4291
  patchFlag,
4264
- dynamicPropNames
4292
+ dynamicPropNames,
4293
+ shouldUseBlock
4265
4294
  };
4266
4295
  }
4267
4296
  // Dedupe props in an object literal.
@@ -4397,7 +4426,7 @@ function processSlotOutlet(node, context) {
4397
4426
  }
4398
4427
  }
4399
4428
  else {
4400
- if (p.name === 'bind' && isBindKey(p.arg, 'name')) {
4429
+ if (p.name === 'bind' && isStaticArgOf(p.arg, 'name')) {
4401
4430
  if (p.exp)
4402
4431
  slotName = p.exp;
4403
4432
  }
@@ -4431,7 +4460,11 @@ const transformOn = (dir, node, context, augmentor) => {
4431
4460
  let eventName;
4432
4461
  if (arg.type === 4 /* SIMPLE_EXPRESSION */) {
4433
4462
  if (arg.isStatic) {
4434
- const rawName = arg.content;
4463
+ let rawName = arg.content;
4464
+ // TODO deprecate @vnodeXXX usage
4465
+ if (rawName.startsWith('vue:')) {
4466
+ rawName = `vnode-${rawName.slice(4)}`;
4467
+ }
4435
4468
  // for all event listeners, auto convert it to camelCase. See issue #2249
4436
4469
  eventName = createSimpleExpression(toHandlerKey(camelize(rawName)), true, arg.loc);
4437
4470
  }
@@ -5431,4 +5464,4 @@ function parse(template, options = {}) {
5431
5464
  return baseParse(template, extend({}, parserOptions, options));
5432
5465
  }
5433
5466
 
5434
- export { BASE_TRANSITION, CAMELIZE, CAPITALIZE, CREATE_BLOCK, CREATE_COMMENT, CREATE_ELEMENT_BLOCK, CREATE_ELEMENT_VNODE, CREATE_SLOTS, CREATE_STATIC, CREATE_TEXT, CREATE_VNODE, DOMDirectiveTransforms, DOMNodeTransforms, FRAGMENT, GUARD_REACTIVE_PROPS, IS_MEMO_SAME, IS_REF, KEEP_ALIVE, MERGE_PROPS, NORMALIZE_CLASS, NORMALIZE_PROPS, NORMALIZE_STYLE, OPEN_BLOCK, POP_SCOPE_ID, PUSH_SCOPE_ID, RENDER_LIST, RENDER_SLOT, RESOLVE_COMPONENT, RESOLVE_DIRECTIVE, RESOLVE_DYNAMIC_COMPONENT, RESOLVE_FILTER, SET_BLOCK_TRACKING, SUSPENSE, TELEPORT, TO_DISPLAY_STRING, TO_HANDLERS, TO_HANDLER_KEY, TRANSITION, TRANSITION_GROUP, UNREF, V_MODEL_CHECKBOX, V_MODEL_DYNAMIC, V_MODEL_RADIO, V_MODEL_SELECT, V_MODEL_TEXT, V_ON_WITH_KEYS, V_ON_WITH_MODIFIERS, V_SHOW, WITH_CTX, WITH_DIRECTIVES, WITH_MEMO, advancePositionWithClone, advancePositionWithMutation, assert, baseCompile, baseParse, buildProps, buildSlots, checkCompatEnabled, compile, createArrayExpression, createAssignmentExpression, createBlockStatement, createCacheExpression, createCallExpression, createCompilerError, createCompoundExpression, createConditionalExpression, createDOMCompilerError, createForLoopParams, createFunctionExpression, createIfStatement, createInterpolation, createObjectExpression, createObjectProperty, createReturnStatement, createRoot, createSequenceExpression, createSimpleExpression, createStructuralDirectiveTransform, createTemplateLiteral, createTransformContext, createVNodeCall, extractIdentifiers, findDir, findProp, generate, generateCodeFrame, getBaseTransformPreset, getInnerRange, getMemoedVNodeCall, getVNodeBlockHelper, getVNodeHelper, hasDynamicKeyVBind, hasScopeRef, helperNameMap, injectProp, isBindKey, isBuiltInType, isCoreComponent, isFunctionType, isInDestructureAssignment, isMemberExpression, isMemberExpressionBrowser, isMemberExpressionNode, isReferencedIdentifier, isSimpleIdentifier, isSlotOutlet, isStaticExp, isStaticProperty, isStaticPropertyKey, isTemplateNode, isText, isVSlot, locStub, makeBlock, noopDirectiveTransform, parse, parserOptions, processExpression, processFor, processIf, processSlotOutlet, registerRuntimeHelpers, resolveComponentType, toValidAssetId, trackSlotScopes, trackVForSlotScopes, transform, transformBind, transformElement, transformExpression, transformModel, transformOn, transformStyle, traverseNode, walkBlockDeclarations, walkFunctionParams, walkIdentifiers, warnDeprecation };
5467
+ export { BASE_TRANSITION, CAMELIZE, CAPITALIZE, CREATE_BLOCK, CREATE_COMMENT, CREATE_ELEMENT_BLOCK, CREATE_ELEMENT_VNODE, CREATE_SLOTS, CREATE_STATIC, CREATE_TEXT, CREATE_VNODE, DOMDirectiveTransforms, DOMNodeTransforms, FRAGMENT, GUARD_REACTIVE_PROPS, IS_MEMO_SAME, IS_REF, KEEP_ALIVE, MERGE_PROPS, NORMALIZE_CLASS, NORMALIZE_PROPS, NORMALIZE_STYLE, OPEN_BLOCK, POP_SCOPE_ID, PUSH_SCOPE_ID, RENDER_LIST, RENDER_SLOT, RESOLVE_COMPONENT, RESOLVE_DIRECTIVE, RESOLVE_DYNAMIC_COMPONENT, RESOLVE_FILTER, SET_BLOCK_TRACKING, SUSPENSE, TELEPORT, TO_DISPLAY_STRING, TO_HANDLERS, TO_HANDLER_KEY, TRANSITION, TRANSITION_GROUP, UNREF, V_MODEL_CHECKBOX, V_MODEL_DYNAMIC, V_MODEL_RADIO, V_MODEL_SELECT, V_MODEL_TEXT, V_ON_WITH_KEYS, V_ON_WITH_MODIFIERS, V_SHOW, WITH_CTX, WITH_DIRECTIVES, WITH_MEMO, advancePositionWithClone, advancePositionWithMutation, assert, baseCompile, baseParse, buildProps, buildSlots, checkCompatEnabled, compile, createArrayExpression, createAssignmentExpression, createBlockStatement, createCacheExpression, createCallExpression, createCompilerError, createCompoundExpression, createConditionalExpression, createDOMCompilerError, createForLoopParams, createFunctionExpression, createIfStatement, createInterpolation, createObjectExpression, createObjectProperty, createReturnStatement, createRoot, createSequenceExpression, createSimpleExpression, createStructuralDirectiveTransform, createTemplateLiteral, createTransformContext, createVNodeCall, extractIdentifiers, findDir, findProp, generate, generateCodeFrame, getBaseTransformPreset, getInnerRange, getMemoedVNodeCall, getVNodeBlockHelper, getVNodeHelper, hasDynamicKeyVBind, hasScopeRef, helperNameMap, injectProp, isBuiltInType, isCoreComponent, isFunctionType, isInDestructureAssignment, isMemberExpression, isMemberExpressionBrowser, isMemberExpressionNode, isReferencedIdentifier, isSimpleIdentifier, isSlotOutlet, isStaticArgOf, isStaticExp, isStaticProperty, isStaticPropertyKey, isTemplateNode, isText, isVSlot, locStub, makeBlock, noopDirectiveTransform, parse, parserOptions, processExpression, processFor, processIf, processSlotOutlet, registerRuntimeHelpers, resolveComponentType, toValidAssetId, trackSlotScopes, trackVForSlotScopes, transform, transformBind, transformElement, transformExpression, transformModel, transformOn, transformStyle, traverseNode, walkBlockDeclarations, walkFunctionParams, walkIdentifiers, warnDeprecation };
@@ -1 +1 @@
1
- function e(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r<o.length;r++)n[o[r]]=!0;return t?e=>!!n[e.toLowerCase()]:e=>!!n[e]}function t(e,t=0,n=e.length){let o=e.split(/(\r?\n)/);const r=o.filter(((e,t)=>t%2==1));o=o.filter(((e,t)=>t%2==0));let s=0;const i=[];for(let c=0;c<o.length;c++)if(s+=o[c].length+(r[c]&&r[c].length||0),s>=t){for(let e=c-2;e<=c+2||n>s;e++){if(e<0||e>=o.length)continue;const l=e+1;i.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${o[e]}`);const a=o[e].length,p=r[e]&&r[e].length||0;if(e===c){const e=t-(s-(a+p)),o=Math.max(1,n>s?a-e:n-t);i.push(" | "+" ".repeat(e)+"^".repeat(o))}else if(e>c){if(n>s){const e=Math.max(Math.min(n-s,a),1);i.push(" | "+"^".repeat(e))}s+=a+p}}break}return i.join("\n")}const n=/;(?![^(]*\))/g,o=/:(.+)/;const r=e("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"),s=e("svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"),i=e("area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr"),c={},l=()=>{},a=()=>!1,p=/^on[^a-z]/,u=e=>p.test(e),f=Object.assign,d=Array.isArray,h=e=>"string"==typeof e,m=e=>"symbol"==typeof e,g=e=>null!==e&&"object"==typeof e,y=e(",key,ref,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),v=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},b=/-(\w)/g,S=v((e=>e.replace(b,((e,t)=>t?t.toUpperCase():"")))),x=/\B([A-Z])/g,k=v((e=>e.replace(x,"-$1").toLowerCase())),N=v((e=>e.charAt(0).toUpperCase()+e.slice(1))),_=v((e=>e?`on${N(e)}`:""));function T(e){throw e}function E(e){}function O(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const C=Symbol(""),$=Symbol(""),w=Symbol(""),M=Symbol(""),I=Symbol(""),P=Symbol(""),R=Symbol(""),V=Symbol(""),L=Symbol(""),j=Symbol(""),A=Symbol(""),B=Symbol(""),F=Symbol(""),D=Symbol(""),H=Symbol(""),W=Symbol(""),J=Symbol(""),U=Symbol(""),z=Symbol(""),G=Symbol(""),K=Symbol(""),q=Symbol(""),Y=Symbol(""),Z=Symbol(""),Q=Symbol(""),X=Symbol(""),ee=Symbol(""),te=Symbol(""),ne=Symbol(""),oe=Symbol(""),re=Symbol(""),se=Symbol(""),ie=Symbol(""),ce=Symbol(""),le=Symbol(""),ae=Symbol(""),pe=Symbol(""),ue=Symbol(""),fe=Symbol(""),de={[C]:"Fragment",[$]:"Teleport",[w]:"Suspense",[M]:"KeepAlive",[I]:"BaseTransition",[P]:"openBlock",[R]:"createBlock",[V]:"createElementBlock",[L]:"createVNode",[j]:"createElementVNode",[A]:"createCommentVNode",[B]:"createTextVNode",[F]:"createStaticVNode",[D]:"resolveComponent",[H]:"resolveDynamicComponent",[W]:"resolveDirective",[J]:"resolveFilter",[U]:"withDirectives",[z]:"renderList",[G]:"renderSlot",[K]:"createSlots",[q]:"toDisplayString",[Y]:"mergeProps",[Z]:"normalizeClass",[Q]:"normalizeStyle",[X]:"normalizeProps",[ee]:"guardReactiveProps",[te]:"toHandlers",[ne]:"camelize",[oe]:"capitalize",[re]:"toHandlerKey",[se]:"setBlockTracking",[ie]:"pushScopeId",[ce]:"popScopeId",[le]:"withCtx",[ae]:"unref",[pe]:"isRef",[ue]:"withMemo",[fe]:"isMemoSame"};function he(e){Object.getOwnPropertySymbols(e).forEach((t=>{de[t]=e[t]}))}const me={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function ge(e,t=me){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}function ye(e,t,n,o,r,s,i,c=!1,l=!1,a=!1,p=me){return e&&(c?(e.helper(P),e.helper(rt(e.inSSR,a))):e.helper(ot(e.inSSR,a)),i&&e.helper(U)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:s,directives:i,isBlock:c,disableTracking:l,isComponent:a,loc:p}}function ve(e,t=me){return{type:17,loc:t,elements:e}}function be(e,t=me){return{type:15,loc:t,properties:e}}function Se(e,t){return{type:16,loc:me,key:h(e)?xe(e,!0):e,value:t}}function xe(e,t=!1,n=me,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function ke(e,t){return{type:5,loc:t,content:h(e)?xe(e,!1,t):e}}function Ne(e,t=me){return{type:8,loc:t,children:e}}function _e(e,t=[],n=me){return{type:14,loc:n,callee:e,arguments:t}}function Te(e,t,n=!1,o=!1,r=me){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Ee(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:me}}function Oe(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:me}}function Ce(e){return{type:21,body:e,loc:me}}function $e(e){return{type:22,elements:e,loc:me}}function we(e,t,n){return{type:23,test:e,consequent:t,alternate:n,loc:me}}function Me(e,t){return{type:24,left:e,right:t,loc:me}}function Ie(e){return{type:25,expressions:e,loc:me}}function Pe(e){return{type:26,returns:e,loc:me}}const Re=e=>4===e.type&&e.isStatic,Ve=(e,t)=>e===t||e===k(t);function Le(e){return Ve(e,"Teleport")?$:Ve(e,"Suspense")?w:Ve(e,"KeepAlive")?M:Ve(e,"BaseTransition")?I:void 0}const je=/^\d|[^\$\w]/,Ae=e=>!je.test(e),Be=/[A-Za-z_$\xA0-\uFFFF]/,Fe=/[\.\?\w$\xA0-\uFFFF]/,De=/\s+[.[]\s*|\s*[.[]\s+/g,He=e=>{e=e.trim().replace(De,(e=>e.trim()));let t=0,n=[],o=0,r=0,s=null;for(let i=0;i<e.length;i++){const c=e.charAt(i);switch(t){case 0:if("["===c)n.push(t),t=1,o++;else if("("===c)n.push(t),t=2,r++;else if(!(0===i?Be:Fe).test(c))return!1;break;case 1:"'"===c||'"'===c||"`"===c?(n.push(t),t=3,s=c):"["===c?o++:"]"===c&&(--o||(t=n.pop()));break;case 2:if("'"===c||'"'===c||"`"===c)n.push(t),t=3,s=c;else if("("===c)r++;else if(")"===c){if(i===e.length-1)return!1;--r||(t=n.pop())}break;case 3:c===s&&(t=n.pop(),s=null)}}return!o&&!r},We=l,Je=He;function Ue(e,t,n){const o={source:e.source.slice(t,t+n),start:ze(e.start,e.source,t),end:e.end};return null!=n&&(o.end=ze(e.start,e.source,t+n)),o}function ze(e,t,n=t.length){return Ge(f({},e),t,n)}function Ge(e,t,n=t.length){let o=0,r=-1;for(let s=0;s<n;s++)10===t.charCodeAt(s)&&(o++,r=s);return e.offset+=n,e.line+=o,e.column=-1===r?e.column+n:n-r,e}function Ke(e,t){if(!e)throw new Error(t||"unexpected compiler condition")}function qe(e,t,n=!1){for(let o=0;o<e.props.length;o++){const r=e.props[o];if(7===r.type&&(n||r.exp)&&(h(t)?r.name===t:t.test(r.name)))return r}}function Ye(e,t,n=!1,o=!1){for(let r=0;r<e.props.length;r++){const s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||o))return s}else if("bind"===s.name&&(s.exp||o)&&Ze(s.arg,t))return s}}function Ze(e,t){return!(!e||!Re(e)||e.content!==t)}function Qe(e){return e.props.some((e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic)))}function Xe(e){return 5===e.type||2===e.type}function et(e){return 7===e.type&&"slot"===e.name}function tt(e){return 1===e.type&&3===e.tagType}function nt(e){return 1===e.type&&2===e.tagType}function ot(e,t){return e||t?L:j}function rt(e,t){return e||t?R:V}const st=new Set([X,ee]);function it(e,t=[]){if(e&&!h(e)&&14===e.type){const n=e.callee;if(!h(n)&&st.has(n))return it(e.arguments[0],t.concat(e))}return[e,t]}function ct(e,t,n){let o,r,s=13===e.type?e.props:e.arguments[2],i=[];if(s&&!h(s)&&14===s.type){const e=it(s);s=e[0],i=e[1],r=i[i.length-1]}if(null==s||h(s))o=be([t]);else if(14===s.type){const e=s.arguments[0];h(e)||15!==e.type?s.callee===te?o=_e(n.helper(Y),[be([t]),s]):s.arguments.unshift(be([t])):e.properties.unshift(t),!o&&(o=s)}else if(15===s.type){let e=!1;if(4===t.key.type){const n=t.key.content;e=s.properties.some((e=>4===e.key.type&&e.key.content===n))}e||s.properties.unshift(t),o=s}else o=_e(n.helper(Y),[be([t]),s]),r&&r.callee===ee&&(r=i[i.length-2]);13===e.type?r?r.arguments[0]=o:e.props=o:r?r.arguments[0]=o:e.arguments[2]=o}function lt(e,t){return`_${t}_${e.replace(/[^\w]/g,((t,n)=>"-"===t?"_":e.charCodeAt(n).toString()))}`}function at(e,t){if(!e||0===Object.keys(t).length)return!1;switch(e.type){case 1:for(let n=0;n<e.props.length;n++){const o=e.props[n];if(7===o.type&&(at(o.arg,t)||at(o.exp,t)))return!0}return e.children.some((e=>at(e,t)));case 11:return!!at(e.source,t)||e.children.some((e=>at(e,t)));case 9:return e.branches.some((e=>at(e,t)));case 10:return!!at(e.condition,t)||e.children.some((e=>at(e,t)));case 4:return!e.isStatic&&Ae(e.content)&&!!t[e.content];case 8:return e.children.some((e=>g(e)&&at(e,t)));case 5:case 12:return at(e.content,t);default:return!1}}function pt(e){return 14===e.type&&e.callee===ue?e.arguments[1].returns:e}function ut(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(ot(o,e.isComponent)),t(P),t(rt(o,e.isComponent)))}const ft={COMPILER_IS_ON_ELEMENT:{message:'Platform-native elements with "is" prop will no longer be treated as components in Vue 3 unless the "is" value is explicitly prefixed with "vue:".',link:"https://v3.vuejs.org/guide/migration/custom-elements-interop.html"},COMPILER_V_BIND_SYNC:{message:e=>`.sync modifier for v-bind has been removed. Use v-model with argument instead. \`v-bind:${e}.sync\` should be changed to \`v-model:${e}\`.`,link:"https://v3.vuejs.org/guide/migration/v-model.html"},COMPILER_V_BIND_PROP:{message:".prop modifier for v-bind has been removed and no longer necessary. Vue 3 will automatically set a binding as DOM property when appropriate."},COMPILER_V_BIND_OBJECT_ORDER:{message:'v-bind="obj" usage is now order sensitive and behaves like JavaScript object spread: it will now overwrite an existing non-mergeable attribute that appears before v-bind in the case of conflict. To retain 2.x behavior, move v-bind to make it the first attribute. You can also suppress this warning if the usage is intended.',link:"https://v3.vuejs.org/guide/migration/v-bind.html"},COMPILER_V_ON_NATIVE:{message:".native modifier for v-on has been removed as is no longer necessary.",link:"https://v3.vuejs.org/guide/migration/v-on-native-modifier-removed.html"},COMPILER_V_IF_V_FOR_PRECEDENCE:{message:"v-if / v-for precedence when used on the same element has changed in Vue 3: v-if now takes higher precedence and will no longer have access to v-for scope variables. It is best to avoid the ambiguity with <template> tags or use a computed property that filters v-for data source.",link:"https://v3.vuejs.org/guide/migration/v-if-v-for.html"},COMPILER_V_FOR_REF:{message:"Ref usage on v-for no longer creates array ref values in Vue 3. Consider using function refs or refactor to avoid ref usage altogether.",link:"https://v3.vuejs.org/guide/migration/array-refs.html"},COMPILER_NATIVE_TEMPLATE:{message:"<template> with no special directives will render as a native template element instead of its inner content in Vue 3."},COMPILER_INLINE_TEMPLATE:{message:'"inline-template" has been removed in Vue 3.',link:"https://v3.vuejs.org/guide/migration/inline-template-attribute.html"},COMPILER_FILTER:{message:'filters have been removed in Vue 3. The "|" symbol will be treated as native JavaScript bitwise OR operator. Use method calls or computed properties instead.',link:"https://v3.vuejs.org/guide/migration/filters.html"}};function dt(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function ht(e,t){const n=dt("MODE",t),o=dt(e,t);return 3===n?!0===o:!1!==o}function mt(e,t,n,...o){return ht(e,t)}function gt(e,t,n,...o){if("suppress-warning"===dt(e,t))return;const{message:r,link:s}=ft[e],i=`(deprecation ${e}) ${"function"==typeof r?r(...o):r}${s?`\n Details: ${s}`:""}`,c=new SyntaxError(i);c.code=e,n&&(c.loc=n),t.onWarn(c)}const yt=/&(gt|lt|amp|apos|quot);/g,vt={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},bt={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:a,isPreTag:a,isCustomElement:a,decodeEntities:e=>e.replace(yt,((e,t)=>vt[t])),onError:T,onWarn:E,comments:!1};function St(e,t={}){const n=function(e,t){const n=f({},bt);let o;for(o in t)n[o]=void 0===t[o]?bt[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Rt(n);return ge(xt(n,0,[]),Vt(n,o))}function xt(e,t,n){const o=Lt(n),r=o?o.ns:0,s=[];for(;!Dt(e,t,n);){const i=e.source;let c;if(0===t||1===t)if(!e.inVPre&&jt(i,e.options.delimiters[0]))c=Mt(e,t);else if(0===t&&"<"===i[0])if(1===i.length);else if("!"===i[1])c=jt(i,"\x3c!--")?_t(e):jt(i,"<!DOCTYPE")?Tt(e):jt(i,"<![CDATA[")&&0!==r?Nt(e,n):Tt(e);else if("/"===i[1])if(2===i.length);else{if(">"===i[2]){At(e,3);continue}if(/[a-z]/i.test(i[2])){Ct(e,1,o);continue}c=Tt(e)}else/[a-z]/i.test(i[1])?(c=Et(e,n),ht("COMPILER_NATIVE_TEMPLATE",e)&&c&&"template"===c.tag&&!c.props.some((e=>7===e.type&&Ot(e.name)))&&(c=c.children)):"?"===i[1]&&(c=Tt(e));if(c||(c=It(e,t)),d(c))for(let e=0;e<c.length;e++)kt(s,c[e]);else kt(s,c)}let i=!1;if(2!==t&&1!==t){const t="preserve"!==e.options.whitespace;for(let n=0;n<s.length;n++){const o=s[n];if(e.inPre||2!==o.type)3!==o.type||e.options.comments||(i=!0,s[n]=null);else if(/[^\t\r\n\f ]/.test(o.content))t&&(o.content=o.content.replace(/[\t\r\n\f ]+/g," "));else{const e=s[n-1],r=s[n+1];!e||!r||t&&(3===e.type||3===r.type||1===e.type&&1===r.type&&/[\r\n]/.test(o.content))?(i=!0,s[n]=null):o.content=" "}}if(e.inPre&&o&&e.options.isPreTag(o.tag)){const e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}}return i?s.filter(Boolean):s}function kt(e,t){if(2===t.type){const n=Lt(e);if(n&&2===n.type&&n.loc.end.offset===t.loc.start.offset)return n.content+=t.content,n.loc.end=t.loc.end,void(n.loc.source+=t.loc.source)}e.push(t)}function Nt(e,t){At(e,9);const n=xt(e,3,t);return 0===e.source.length||At(e,3),n}function _t(e){const t=Rt(e);let n;const o=/--(\!)?>/.exec(e.source);if(o){n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,s=0;for(;-1!==(s=t.indexOf("\x3c!--",r));)At(e,s-r+1),r=s+1;At(e,o.index+o[0].length-r+1)}else n=e.source.slice(4),At(e,e.source.length);return{type:3,content:n,loc:Vt(e,t)}}function Tt(e){const t=Rt(e),n="?"===e.source[1]?1:2;let o;const r=e.source.indexOf(">");return-1===r?(o=e.source.slice(n),At(e,e.source.length)):(o=e.source.slice(n,r),At(e,r+1)),{type:3,content:o,loc:Vt(e,t)}}function Et(e,t){const n=e.inPre,o=e.inVPre,r=Lt(t),s=Ct(e,0,r),i=e.inPre&&!n,c=e.inVPre&&!o;if(s.isSelfClosing||e.options.isVoidTag(s.tag))return i&&(e.inPre=!1),c&&(e.inVPre=!1),s;t.push(s);const l=e.options.getTextMode(s,r),a=xt(e,l,t);t.pop();{const t=s.props.find((e=>6===e.type&&"inline-template"===e.name));if(t&&mt("COMPILER_INLINE_TEMPLATE",e)){const n=Vt(e,s.loc.end);t.value={type:2,content:n.source,loc:n}}}if(s.children=a,Ht(e.source,s.tag))Ct(e,1,r);else if(0===e.source.length&&"script"===s.tag.toLowerCase()){const e=a[0];e&&jt(e.loc.source,"\x3c!--")}return s.loc=Vt(e,s.loc.start),i&&(e.inPre=!1),c&&(e.inVPre=!1),s}const Ot=e("if,else,else-if,for,slot");function Ct(e,t,n){const o=Rt(e),r=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),s=r[1],i=e.options.getNamespace(s,n);At(e,r[0].length),Bt(e);const c=Rt(e),l=e.source;e.options.isPreTag(s)&&(e.inPre=!0);let a=$t(e,t);0===t&&!e.inVPre&&a.some((e=>7===e.type&&"pre"===e.name))&&(e.inVPre=!0,f(e,c),e.source=l,a=$t(e,t).filter((e=>"v-pre"!==e.name)));let p=!1;if(0===e.source.length||(p=jt(e.source,"/>"),At(e,p?2:1)),1===t)return;let u=0;return e.inVPre||("slot"===s?u=2:"template"===s?a.some((e=>7===e.type&&Ot(e.name)))&&(u=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||Le(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let r=0;r<t.length;r++){const e=t[r];if(6===e.type){if("is"===e.name&&e.value){if(e.value.content.startsWith("vue:"))return!0;if(mt("COMPILER_IS_ON_ELEMENT",n))return!0}}else{if("is"===e.name)return!0;if("bind"===e.name&&Ze(e.arg,"is")&&mt("COMPILER_IS_ON_ELEMENT",n))return!0}}}(s,a,e)&&(u=1)),{type:1,ns:i,tag:s,tagType:u,props:a,isSelfClosing:p,children:[],loc:Vt(e,o),codegenNode:void 0}}function $t(e,t){const n=[],o=new Set;for(;e.source.length>0&&!jt(e.source,">")&&!jt(e.source,"/>");){if(jt(e.source,"/")){At(e,1),Bt(e);continue}const r=wt(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source),Bt(e)}return n}function wt(e,t){const n=Rt(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o),t.add(o);{const e=/["'<]/g;let t;for(;t=e.exec(o););}let r;At(e,o.length),/^[\t\r\n\f ]*=/.test(e.source)&&(Bt(e),At(e,1),Bt(e),r=function(e){const t=Rt(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){At(e,1);const t=e.source.indexOf(o);-1===t?n=Pt(e,e.source.length,4):(n=Pt(e,t,4),At(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]););n=Pt(e,t[0].length,4)}return{content:n,isQuoted:r,loc:Vt(e,t)}}(e));const s=Vt(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,c=jt(o,"."),l=t[1]||(c||jt(o,":")?"bind":jt(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,s=o.lastIndexOf(t[2]),c=Vt(e,Ft(e,n,s),Ft(e,n,s+t[2].length+(r&&t[3]||"").length));let a=t[2],p=!0;a.startsWith("[")?(p=!1,a=a.endsWith("]")?a.slice(1,a.length-1):a.slice(1)):r&&(a+=t[3]||""),i={type:4,content:a,isStatic:p,constType:p?3:0,loc:c}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=ze(e.start,r.content),e.source=e.source.slice(1,-1)}const a=t[3]?t[3].slice(1).split("."):[];return c&&a.push("prop"),"bind"===l&&i&&a.includes("sync")&&mt("COMPILER_V_BIND_SYNC",e,0)&&(l="model",a.splice(a.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:a,loc:s}}return!e.inVPre&&jt(o,"v-"),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:s}}function Mt(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return;const s=Rt(e);At(e,n.length);const i=Rt(e),c=Rt(e),l=r-n.length,a=e.source.slice(0,l),p=Pt(e,l,t),u=p.trim(),f=p.indexOf(u);f>0&&Ge(i,a,f);return Ge(c,a,l-(p.length-u.length-f)),At(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:u,loc:Vt(e,i,c)},loc:Vt(e,s)}}function It(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let s=0;s<n.length;s++){const t=e.source.indexOf(n[s],1);-1!==t&&o>t&&(o=t)}const r=Rt(e);return{type:2,content:Pt(e,o,t),loc:Vt(e,r)}}function Pt(e,t,n){const o=e.source.slice(0,t);return At(e,t),2===n||3===n||-1===o.indexOf("&")?o:e.options.decodeEntities(o,4===n)}function Rt(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function Vt(e,t,n){return{start:t,end:n=n||Rt(e),source:e.originalSource.slice(t.offset,n.offset)}}function Lt(e){return e[e.length-1]}function jt(e,t){return e.startsWith(t)}function At(e,t){const{source:n}=e;Ge(e,n,t),e.source=n.slice(t)}function Bt(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&At(e,t[0].length)}function Ft(e,t,n){return ze(t,e.originalSource.slice(t.offset,n),n)}function Dt(e,t,n){const o=e.source;switch(t){case 0:if(jt(o,"</"))for(let e=n.length-1;e>=0;--e)if(Ht(o,n[e].tag))return!0;break;case 1:case 2:{const e=Lt(n);if(e&&Ht(o,e.tag))return!0;break}case 3:if(jt(o,"]]>"))return!0}return!o}function Ht(e,t){return jt(e,"</")&&e.slice(2,2+t.length).toLowerCase()===t.toLowerCase()&&/[\t\r\n\f />]/.test(e[2+t.length]||">")}function Wt(e,t){Ut(e,t,Jt(e,e.children[0]))}function Jt(e,t){const{children:n}=e;return 1===n.length&&1===t.type&&!nt(t)}function Ut(e,t,n=!1){const{children:o}=e,r=o.length;let s=0;for(let i=0;i<o.length;i++){const e=o[i];if(1===e.type&&0===e.tagType){const o=n?0:zt(e,t);if(o>0){if(o>=2){e.codegenNode.patchFlag="-1",e.codegenNode=t.hoist(e.codegenNode),s++;continue}}else{const n=e.codegenNode;if(13===n.type){const o=Zt(n);if((!o||512===o||1===o)&&qt(e,t)>=2){const o=Yt(e);o&&(n.props=t.hoist(o))}n.dynamicProps&&(n.dynamicProps=t.hoist(n.dynamicProps))}}}else 12===e.type&&zt(e.content,t)>=2&&(e.codegenNode=t.hoist(e.codegenNode),s++);if(1===e.type){const n=1===e.tagType;n&&t.scopes.vSlot++,Ut(e,t),n&&t.scopes.vSlot--}else if(11===e.type)Ut(e,t,1===e.children.length);else if(9===e.type)for(let n=0;n<e.branches.length;n++)Ut(e.branches[n],t,1===e.branches[n].children.length)}s&&t.transformHoist&&t.transformHoist(o,t,e),s&&s===r&&1===e.type&&0===e.tagType&&e.codegenNode&&13===e.codegenNode.type&&d(e.codegenNode.children)&&(e.codegenNode.children=t.hoist(ve(e.codegenNode.children)))}function zt(e,t){const{constantCache:n}=t;switch(e.type){case 1:if(0!==e.tagType)return 0;const o=n.get(e);if(void 0!==o)return o;const r=e.codegenNode;if(13!==r.type)return 0;if(Zt(r))return n.set(e,0),0;{let o=3;const s=qt(e,t);if(0===s)return n.set(e,0),0;s<o&&(o=s);for(let r=0;r<e.children.length;r++){const s=zt(e.children[r],t);if(0===s)return n.set(e,0),0;s<o&&(o=s)}if(o>1)for(let r=0;r<e.props.length;r++){const s=e.props[r];if(7===s.type&&"bind"===s.name&&s.exp){const r=zt(s.exp,t);if(0===r)return n.set(e,0),0;r<o&&(o=r)}}return r.isBlock&&(t.removeHelper(P),t.removeHelper(rt(t.inSSR,r.isComponent)),r.isBlock=!1,t.helper(ot(t.inSSR,r.isComponent))),n.set(e,o),o}case 2:case 3:return 3;default:return 0;case 5:case 12:return zt(e.content,t);case 4:return e.constType;case 8:let s=3;for(let n=0;n<e.children.length;n++){const o=e.children[n];if(h(o)||m(o))continue;const r=zt(o,t);if(0===r)return 0;r<s&&(s=r)}return s}}const Gt=new Set([Z,Q,X,ee]);function Kt(e,t){if(14===e.type&&!h(e.callee)&&Gt.has(e.callee)){const n=e.arguments[0];if(4===n.type)return zt(n,t);if(14===n.type)return Kt(n,t)}return 0}function qt(e,t){let n=3;const o=Yt(e);if(o&&15===o.type){const{properties:e}=o;for(let o=0;o<e.length;o++){const{key:r,value:s}=e[o],i=zt(r,t);if(0===i)return i;let c;if(i<n&&(n=i),c=4===s.type?zt(s,t):14===s.type?Kt(s,t):0,0===c)return c;c<n&&(n=c)}}return n}function Yt(e){const t=e.codegenNode;if(13===t.type)return t.props}function Zt(e){const t=e.patchFlag;return t?parseInt(t,10):void 0}function Qt(e,{filename:t="",prefixIdentifiers:n=!1,hoistStatic:o=!1,cacheHandlers:r=!1,nodeTransforms:s=[],directiveTransforms:i={},transformHoist:a=null,isBuiltInComponent:p=l,isCustomElement:u=l,expressionPlugins:f=[],scopeId:d=null,slotted:m=!0,ssr:g=!1,inSSR:y=!1,ssrCssVars:v="",bindingMetadata:b=c,inline:x=!1,isTS:k=!1,onError:_=T,onWarn:O=E,compatConfig:C}){const $=t.replace(/\?.*$/,"").match(/([^/\\]+)\.\w+$/),w={selfName:$&&N(S($[1])),prefixIdentifiers:n,hoistStatic:o,cacheHandlers:r,nodeTransforms:s,directiveTransforms:i,transformHoist:a,isBuiltInComponent:p,isCustomElement:u,expressionPlugins:f,scopeId:d,slotted:m,ssr:g,inSSR:y,ssrCssVars:v,bindingMetadata:b,inline:x,isTS:k,onError:_,onWarn:O,compatConfig:C,root:e,helpers:new Map,components:new Set,directives:new Set,hoists:[],imports:[],constantCache:new Map,temps:0,cached:0,identifiers:Object.create(null),scopes:{vFor:0,vSlot:0,vPre:0,vOnce:0},parent:null,currentNode:e,childIndex:0,inVOnce:!1,helper(e){const t=w.helpers.get(e)||0;return w.helpers.set(e,t+1),e},removeHelper(e){const t=w.helpers.get(e);if(t){const n=t-1;n?w.helpers.set(e,n):w.helpers.delete(e)}},helperString:e=>`_${de[w.helper(e)]}`,replaceNode(e){w.parent.children[w.childIndex]=w.currentNode=e},removeNode(e){const t=e?w.parent.children.indexOf(e):w.currentNode?w.childIndex:-1;e&&e!==w.currentNode?w.childIndex>t&&(w.childIndex--,w.onNodeRemoved()):(w.currentNode=null,w.onNodeRemoved()),w.parent.children.splice(t,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){h(e)&&(e=xe(e)),w.hoists.push(e);const t=xe(`_hoisted_${w.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>Oe(w.cached++,e,t)};return w.filters=new Set,w}function Xt(e,t){const n=Qt(e,t);en(e,n),t.hoistStatic&&Wt(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(Jt(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&ut(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;e.codegenNode=ye(t,n(C),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function en(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let s=0;s<n.length;s++){const r=n[s](e,t);if(r&&(d(r)?o.push(...r):o.push(r)),!t.currentNode)return;e=t.currentNode}switch(e.type){case 3:t.ssr||t.helper(A);break;case 5:t.ssr||t.helper(q);break;case 9:for(let n=0;n<e.branches.length;n++)en(e.branches[n],t);break;case 10:case 11:case 1:case 0:!function(e,t){let n=0;const o=()=>{n--};for(;n<e.children.length;n++){const r=e.children[n];h(r)||(t.parent=e,t.childIndex=n,t.onNodeRemoved=o,en(r,t))}}(e,t)}t.currentNode=e;let r=o.length;for(;r--;)o[r]()}function tn(e,t){const n=h(e)?t=>t===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(et))return;const s=[];for(let i=0;i<r.length;i++){const c=r[i];if(7===c.type&&n(c.name)){r.splice(i,1),i--;const n=t(e,c,o);n&&s.push(n)}}return s}}}function nn(e,t={}){const n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:o=!1,filename:r="template.vue.html",scopeId:s=null,optimizeImports:i=!1,runtimeGlobalName:c="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:a="vue/server-renderer",ssr:p=!1,isTS:u=!1,inSSR:f=!1}){const d={mode:t,prefixIdentifiers:n,sourceMap:o,filename:r,scopeId:s,optimizeImports:i,runtimeGlobalName:c,runtimeModuleName:l,ssrRuntimeModuleName:a,ssr:p,isTS:u,inSSR:f,source:e.loc.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${de[e]}`,push(e,t){d.code+=e},indent(){h(++d.indentLevel)},deindent(e=!1){e?--d.indentLevel:h(--d.indentLevel)},newline(){h(d.indentLevel)}};function h(e){d.push("\n"+" ".repeat(e))}return d}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:s,indent:i,deindent:c,newline:l,ssr:a}=n,p=e.helpers.length>0,u=!s&&"module"!==o;!function(e,t){const{push:n,newline:o,runtimeGlobalName:r}=t,s=r,i=e=>`${de[e]}: _${de[e]}`;if(e.helpers.length>0&&(n(`const _Vue = ${s}\n`),e.hoists.length)){n(`const { ${[L,j,A,B,F].filter((t=>e.helpers.includes(t))).map(i).join(", ")} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o}=t;o();for(let r=0;r<e.length;r++){const s=e[r];s&&(n(`const _hoisted_${r+1} = `),cn(s,t),o())}t.pure=!1})(e.hoists,t),o(),n("return ")}(e,n);if(r(`function ${a?"ssrRender":"render"}(${(a?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ")}) {`),i(),u&&(r("with (_ctx) {"),i(),p&&(r(`const { ${e.helpers.map((e=>`${de[e]}: _${de[e]}`)).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(on(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(on(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),on(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?cn(e.codegenNode,n):r("null"),u&&(c(),r("}")),c(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function on(e,t,{helper:n,push:o,newline:r,isTS:s}){const i=n("filter"===t?J:"component"===t?D:W);for(let c=0;c<e.length;c++){let n=e[c];const l=n.endsWith("__self");l&&(n=n.slice(0,-6)),o(`const ${lt(n,t)} = ${i}(${JSON.stringify(n)}${l?", true":""})${s?"!":""}`),c<e.length-1&&r()}}function rn(e,t){const n=e.length>3||!1;t.push("["),n&&t.indent(),sn(e,t,n),n&&t.deindent(),t.push("]")}function sn(e,t,n=!1,o=!0){const{push:r,newline:s}=t;for(let i=0;i<e.length;i++){const c=e[i];h(c)?r(c):d(c)?rn(c,t):cn(c,t),i<e.length-1&&(n?(o&&r(","),s()):o&&r(", "))}}function cn(e,t){if(h(e))t.push(e);else if(m(e))t.push(t.helper(e));else switch(e.type){case 1:case 9:case 11:case 12:cn(e.codegenNode,t);break;case 2:!function(e,t){t.push(JSON.stringify(e.content),e)}(e,t);break;case 4:ln(e,t);break;case 5:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n("/*#__PURE__*/");n(`${o(q)}(`),cn(e.content,t),n(")")}(e,t);break;case 8:an(e,t);break;case 3:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n("/*#__PURE__*/");n(`${o(A)}(${JSON.stringify(e.content)})`,e)}(e,t);break;case 13:!function(e,t){const{push:n,helper:o,pure:r}=t,{tag:s,props:i,children:c,patchFlag:l,dynamicProps:a,directives:p,isBlock:u,disableTracking:f,isComponent:d}=e;p&&n(o(U)+"(");u&&n(`(${o(P)}(${f?"true":""}), `);r&&n("/*#__PURE__*/");const h=u?rt(t.inSSR,d):ot(t.inSSR,d);n(o(h)+"(",e),sn(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map((e=>e||"null"))}([s,i,c,l,a]),t),n(")"),u&&n(")");p&&(n(", "),cn(p,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:r}=t,s=h(e.callee)?e.callee:o(e.callee);r&&n("/*#__PURE__*/");n(s+"(",e),sn(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:s}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const c=i.length>1||!1;n(c?"{":"{ "),c&&o();for(let l=0;l<i.length;l++){const{key:e,value:o}=i[l];pn(e,t),n(": "),cn(o,t),l<i.length-1&&(n(","),s())}c&&r(),n(c?"}":" }")}(e,t);break;case 17:!function(e,t){rn(e.elements,t)}(e,t);break;case 18:!function(e,t){const{push:n,indent:o,deindent:r}=t,{params:s,returns:i,body:c,newline:l,isSlot:a}=e;a&&n(`_${de[le]}(`);n("(",e),d(s)?sn(s,t):s&&cn(s,t);n(") => "),(l||c)&&(n("{"),o());i?(l&&n("return "),d(i)?rn(i,t):cn(i,t)):c&&cn(c,t);(l||c)&&(r(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:s}=e,{push:i,indent:c,deindent:l,newline:a}=t;if(4===n.type){const e=!Ae(n.content);e&&i("("),ln(n,t),e&&i(")")}else i("("),cn(n,t),i(")");s&&c(),t.indentLevel++,s||i(" "),i("? "),cn(o,t),t.indentLevel--,s&&a(),s||i(" "),i(": ");const p=19===r.type;p||t.indentLevel++;cn(r,t),p||t.indentLevel--;s&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:s,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(`${o(se)}(-1),`),i());n(`_cache[${e.index}] = `),cn(e.value,t),e.isVNode&&(n(","),i(),n(`${o(se)}(1),`),i(),n(`_cache[${e.index}]`),s());n(")")}(e,t);break;case 21:sn(e.body,t,!0,!1)}}function ln(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function an(e,t){for(let n=0;n<e.children.length;n++){const o=e.children[n];h(o)?t.push(o):cn(o,t)}}function pn(e,t){const{push:n}=t;if(8===e.type)n("["),an(e,t),n("]");else if(e.isStatic){n(Ae(e.content)?e.content:JSON.stringify(e.content),e)}else n(`[${e.content}]`,e)}function un(e,t,n=!1,o=[],r=Object.create(null)){}function fn(e,t,n){return!1}function dn(e,t){if(e&&("ObjectProperty"===e.type||"ArrayPattern"===e.type)){let e=t.length;for(;e--;){const n=t[e];if("AssignmentExpression"===n.type)return!0;if("ObjectProperty"!==n.type&&!n.type.endsWith("Pattern"))break}}return!1}function hn(e,t){for(const n of e.params)for(const e of gn(n))t(e)}function mn(e,t){for(const n of e.body)if("VariableDeclaration"===n.type){if(n.declare)continue;for(const e of n.declarations)for(const n of gn(e.id))t(n)}else if("FunctionDeclaration"===n.type||"ClassDeclaration"===n.type){if(n.declare||!n.id)continue;t(n.id)}}function gn(e,t=[]){switch(e.type){case"Identifier":t.push(e);break;case"MemberExpression":let n=e;for(;"MemberExpression"===n.type;)n=n.object;t.push(n);break;case"ObjectPattern":for(const o of e.properties)gn("RestElement"===o.type?o.argument:o.value,t);break;case"ArrayPattern":e.elements.forEach((e=>{e&&gn(e,t)}));break;case"RestElement":gn(e.argument,t);break;case"AssignmentPattern":gn(e.left,t)}return t}const yn=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),vn=e=>e&&("ObjectProperty"===e.type||"ObjectMethod"===e.type)&&!e.computed,bn=(e,t)=>vn(t)&&t.key===e,Sn=(e,t)=>{if(5===e.type)e.content=xn(e.content,t);else if(1===e.type)for(let n=0;n<e.props.length;n++){const o=e.props[n];if(7===o.type&&"for"!==o.name){const e=o.exp,n=o.arg;!e||4!==e.type||"on"===o.name&&n||(o.exp=xn(e,t,"slot"===o.name)),n&&4===n.type&&!n.isStatic&&(o.arg=xn(n,t))}}};function xn(e,t,n=!1,o=!1,r=Object.create(t.identifiers)){return e}const kn=tn(/^(if|else|else-if)$/,((e,t,n)=>Nn(e,t,n,((e,t,o)=>{const r=n.parent.children;let s=r.indexOf(e),i=0;for(;s-- >=0;){const e=r[s];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=Tn(t,i,n);else{const o=function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode);o.alternate=Tn(t,i+e.branches.length-1,n)}}}))));function Nn(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){t.exp=xe("true",!1,t.exp?t.exp.loc:e.loc)}if("if"===t.name){const r=_n(e,t),s={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(s),o)return o(s,r,!0)}else{const r=n.parent.children;let s=r.indexOf(e);for(;s-- >=-1;){const i=r[s];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){n.removeNode();const r=_n(e,t);i.branches.push(r);const s=o&&o(i,r,!1);en(r,n),s&&s(),n.currentNode=null}break}n.removeNode(i)}}}function _n(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||qe(e,"for")?[e]:e.children,userKey:Ye(e,"key")}}function Tn(e,t,n){return e.condition?Ee(e.condition,En(e,t,n),_e(n.helper(A),['""',"true"])):En(e,t,n)}function En(e,t,n){const{helper:o}=n,r=Se("key",xe(`${t}`,!1,me,2)),{children:s}=e,i=s[0];if(1!==s.length||1!==i.type){if(1===s.length&&11===i.type){const e=i.codegenNode;return ct(e,r,n),e}{let t=64;return ye(n,o(C),be([r]),s,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=i.codegenNode,t=pt(e);return 13===t.type&&ut(t,n),ct(t,r,n),e}}const On=tn("for",((e,t,n)=>{const{helper:o,removeHelper:r}=n;return Cn(e,t,n,(t=>{const s=_e(o(z),[t.source]),i=qe(e,"memo"),c=Ye(e,"key"),l=c&&(6===c.type?xe(c.value.content,!0):c.exp),a=c?Se("key",l):null,p=4===t.source.type&&t.source.constType>0,u=p?64:c?128:256;return t.codegenNode=ye(n,o(C),void 0,s,u+"",void 0,void 0,!0,!p,!1,e.loc),()=>{let c;const u=tt(e),{children:f}=t,d=1!==f.length||1!==f[0].type,h=nt(e)?e:u&&1===e.children.length&&nt(e.children[0])?e.children[0]:null;if(h?(c=h.codegenNode,u&&a&&ct(c,a,n)):d?c=ye(n,o(C),a?be([a]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(c=f[0].codegenNode,u&&a&&ct(c,a,n),c.isBlock!==!p&&(c.isBlock?(r(P),r(rt(n.inSSR,c.isComponent))):r(ot(n.inSSR,c.isComponent))),c.isBlock=!p,c.isBlock?(o(P),o(rt(n.inSSR,c.isComponent))):o(ot(n.inSSR,c.isComponent))),i){const e=Te(Rn(t.parseResult,[xe("_cached")]));e.body=Ce([Ne(["const _memo = (",i.exp,")"]),Ne(["if (_cached",...l?[" && _cached.key === ",l]:[],` && ${n.helperString(fe)}(_cached, _memo)) return _cached`]),Ne(["const _item = ",c]),xe("_item.memo = _memo"),xe("return _item")]),s.arguments.push(e,xe("_cache"),xe(String(n.cached++)))}else s.arguments.push(Te(Rn(t.parseResult),c,!0))}}))}));function Cn(e,t,n,o){if(!t.exp)return;const r=In(t.exp);if(!r)return;const{scopes:s}=n,{source:i,value:c,key:l,index:a}=r,p={type:11,loc:t.loc,source:i,valueAlias:c,keyAlias:l,objectIndexAlias:a,parseResult:r,children:tt(e)?e.children:[e]};n.replaceNode(p),s.vFor++;const u=o&&o(p);return()=>{s.vFor--,u&&u()}}const $n=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,wn=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Mn=/^\(|\)$/g;function In(e,t){const n=e.loc,o=e.content,r=o.match($n);if(!r)return;const[,s,i]=r,c={source:Pn(n,i.trim(),o.indexOf(i,s.length)),value:void 0,key:void 0,index:void 0};let l=s.trim().replace(Mn,"").trim();const a=s.indexOf(l),p=l.match(wn);if(p){l=l.replace(wn,"").trim();const e=p[1].trim();let t;if(e&&(t=o.indexOf(e,a+l.length),c.key=Pn(n,e,t)),p[2]){const r=p[2].trim();r&&(c.index=Pn(n,r,o.indexOf(r,c.key?t+e.length:a+l.length)))}}return l&&(c.value=Pn(n,l,a)),c}function Pn(e,t,n){return xe(t,!1,Ue(e,n,t.length))}function Rn({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map(((e,t)=>e||xe("_".repeat(t+1),!1)))}([e,t,n,...o])}const Vn=xe("undefined",!1),Ln=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=qe(e,"slot");if(n)return t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},jn=(e,t)=>{let n;if(tt(e)&&e.props.some(et)&&(n=qe(e,"for"))){const e=n.parseResult=In(n.exp);if(e){const{value:n,key:o,index:r}=e,{addIdentifiers:s,removeIdentifiers:i}=t;return n&&s(n),o&&s(o),r&&s(r),()=>{n&&i(n),o&&i(o),r&&i(r)}}}},An=(e,t,n)=>Te(e,t,!1,!0,t.length?t[0].loc:n);function Bn(e,t,n=An){t.helper(le);const{children:o,loc:r}=e,s=[],i=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const l=qe(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!Re(e)&&(c=!0),s.push(Se(e||xe("default",!0),n(t,o,r)))}let a=!1,p=!1;const u=[],f=new Set;for(let m=0;m<o.length;m++){const e=o[m];let r;if(!tt(e)||!(r=qe(e,"slot",!0))){3!==e.type&&u.push(e);continue}if(l)break;a=!0;const{children:d,loc:h}=e,{arg:g=xe("default",!0),exp:y}=r;let v;Re(g)?v=g?g.content:"default":c=!0;const b=n(y,d,h);let S,x,k;if(S=qe(e,"if"))c=!0,i.push(Ee(S.exp,Fn(g,b),Vn));else if(x=qe(e,/^else(-if)?$/,!0)){let e,t=m;for(;t--&&(e=o[t],3===e.type););if(e&&tt(e)&&qe(e,"if")){o.splice(m,1),m--;let e=i[i.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=x.exp?Ee(x.exp,Fn(g,b),Vn):Fn(g,b)}}else if(k=qe(e,"for")){c=!0;const e=k.parseResult||In(k.exp);e&&i.push(_e(t.helper(z),[e.source,Te(Rn(e),Fn(g,b),!0)]))}else{if(v){if(f.has(v))continue;f.add(v),"default"===v&&(p=!0)}s.push(Se(g,b))}}if(!l){const e=(e,o)=>{const s=n(e,o,r);return t.compatConfig&&(s.isNonScopedSlot=!0),Se("default",s)};a?u.length&&u.some((e=>Hn(e)))&&(p||s.push(e(void 0,u))):s.push(e(void 0,o))}const d=c?2:Dn(e.children)?3:1;let h=be(s.concat(Se("_",xe(d+"",!1))),r);return i.length&&(h=_e(t.helper(K),[h,ve(i)])),{slots:h,hasDynamicSlots:c}}function Fn(e,t){return be([Se("name",e),Se("fn",t)])}function Dn(e){for(let t=0;t<e.length;t++){const n=e[t];switch(n.type){case 1:if(2===n.tagType||Dn(n.children))return!0;break;case 9:if(Dn(n.branches))return!0;break;case 10:case 11:if(Dn(n.children))return!0}}return!1}function Hn(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():Hn(e.content))}const Wn=new WeakMap,Jn=(e,t)=>function(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,r=1===e.tagType;let s=r?Un(e,t):`"${n}"`;let i,c,l,a,p,u,f=0,d=g(s)&&s.callee===H||s===$||s===w||!r&&("svg"===n||"foreignObject"===n||Ye(e,"key",!0));if(o.length>0){const n=zn(e,t);i=n.props,f=n.patchFlag,p=n.dynamicPropNames;const o=n.directives;u=o&&o.length?ve(o.map((e=>function(e,t){const n=[],o=Wn.get(e);o?n.push(t.helperString(o)):(t.helper(W),t.directives.add(e.name),n.push(lt(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=xe("true",!1,r);n.push(be(e.modifiers.map((e=>Se(e,t))),r))}return ve(n,e.loc)}(e,t)))):void 0}if(e.children.length>0){s===M&&(d=!0,f|=1024);if(r&&s!==$&&s!==M){const{slots:n,hasDynamicSlots:o}=Bn(e,t);c=n,o&&(f|=1024)}else if(1===e.children.length&&s!==$){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===zt(n,t)&&(f|=1),c=r||2===o?n:e.children}else c=e.children}0!==f&&(l=String(f),p&&p.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n<o;n++)t+=JSON.stringify(e[n]),n<o-1&&(t+=", ");return t+"]"}(p))),e.codegenNode=ye(t,s,i,c,l,a,u,!!d,!1,r,e.loc)};function Un(e,t,n=!1){let{tag:o}=e;const r=qn(o),s=Ye(e,"is");if(s)if(r||ht("COMPILER_IS_ON_ELEMENT",t)){const e=6===s.type?s.value&&xe(s.value.content,!0):s.exp;if(e)return _e(t.helper(H),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(o=s.value.content.slice(4));const i=!r&&qe(e,"is");if(i&&i.exp)return _e(t.helper(H),[i.exp]);const c=Le(o)||t.isBuiltInComponent(o);return c?(n||t.helper(c),c):(t.helper(D),t.components.add(o),lt(o,"component"))}function zn(e,t,n=e.props,o=!1){const{tag:r,loc:s}=e,i=1===e.tagType;let c=[];const l=[],a=[];let p=0,f=!1,d=!1,h=!1,g=!1,v=!1,b=!1;const S=[],x=({key:e,value:n})=>{if(Re(e)){const o=e.content,r=u(o);if(i||!r||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||y(o)||(g=!0),r&&y(o)&&(b=!0),20===n.type||(4===n.type||8===n.type)&&zt(n,t)>0)return;"ref"===o?f=!0:"class"===o?d=!0:"style"===o?h=!0:"key"===o||S.includes(o)||S.push(o),!i||"class"!==o&&"style"!==o||S.includes(o)||S.push(o)}else v=!0};for(let u=0;u<n.length;u++){const i=n[u];if(6===i.type){const{loc:e,name:n,value:o}=i;let s=xe(o?o.content:"",!0,o?o.loc:e);if("ref"===n&&(f=!0),"is"===n&&(qn(r)||o&&o.content.startsWith("vue:")||ht("COMPILER_IS_ON_ELEMENT",t)))continue;c.push(Se(xe(n,!0,Ue(e,0,n.length)),s))}else{const{name:n,arg:p,exp:u,loc:f}=i,d="bind"===n,h="on"===n;if("slot"===n)continue;if("once"===n||"memo"===n)continue;if("is"===n||d&&Ze(p,"is")&&(qn(r)||ht("COMPILER_IS_ON_ELEMENT",t)))continue;if(h&&o)continue;if(!p&&(d||h)){if(v=!0,u)if(c.length&&(l.push(be(Gn(c),s)),c=[]),d){if(ht("COMPILER_V_BIND_OBJECT_ORDER",t)){l.unshift(u);continue}l.push(u)}else l.push({type:14,loc:f,callee:t.helper(te),arguments:[u]});continue}const g=t.directiveTransforms[n];if(g){const{props:n,needRuntime:r}=g(i,e,t);!o&&n.forEach(x),c.push(...n),r&&(a.push(i),m(r)&&Wn.set(i,r))}else a.push(i)}6===i.type&&"ref"===i.name&&t.scopes.vFor>0&&mt("COMPILER_V_FOR_REF",t)&&c.push(Se(xe("refInFor",!0),xe("true",!1)))}let k;if(l.length?(c.length&&l.push(be(Gn(c),s)),k=l.length>1?_e(t.helper(Y),l,s):l[0]):c.length&&(k=be(Gn(c),s)),v?p|=16:(d&&!i&&(p|=2),h&&!i&&(p|=4),S.length&&(p|=8),g&&(p|=32)),0!==p&&32!==p||!(f||b||a.length>0)||(p|=512),!t.inSSR&&k)switch(k.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t<k.properties.length;t++){const r=k.properties[t].key;Re(r)?"class"===r.content?e=t:"style"===r.content&&(n=t):r.isHandlerKey||(o=!0)}const r=k.properties[e],s=k.properties[n];o?k=_e(t.helper(X),[k]):(r&&!Re(r.value)&&(r.value=_e(t.helper(Z),[r.value])),!s||Re(s.value)||!h&&17!==s.value.type||(s.value=_e(t.helper(Q),[s.value])));break;case 14:break;default:k=_e(t.helper(X),[_e(t.helper(ee),[k])])}return{props:k,directives:a,patchFlag:p,dynamicPropNames:S}}function Gn(e){const t=new Map,n=[];for(let o=0;o<e.length;o++){const r=e[o];if(8===r.key.type||!r.key.isStatic){n.push(r);continue}const s=r.key.content,i=t.get(s);i?("style"===s||"class"===s||u(s))&&Kn(i,r):(t.set(s,r),n.push(r))}return n}function Kn(e,t){17===e.value.type?e.value.elements.push(t.value):e.value=ve([e.value,t.value],e.loc)}function qn(e){return"component"===e||"Component"===e}const Yn=(e,t)=>{if(nt(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:s}=Zn(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let c=2;s&&(i[2]=s,c=3),n.length&&(i[3]=Te([],n,!1,!1,o),c=4),t.scopeId&&!t.slotted&&(c=5),i.splice(c),e.codegenNode=_e(t.helper(G),i,o)}};function Zn(e,t){let n,o='"default"';const r=[];for(let s=0;s<e.props.length;s++){const t=e.props[s];6===t.type?t.value&&("name"===t.name?o=JSON.stringify(t.value.content):(t.name=S(t.name),r.push(t))):"bind"===t.name&&Ze(t.arg,"name")?t.exp&&(o=t.exp):("bind"===t.name&&t.arg&&Re(t.arg)&&(t.arg.content=S(t.arg.content)),r.push(t))}if(r.length>0){const{props:o,directives:s}=zn(e,t,r);n=o}return{slotName:o,slotProps:n}}const Qn=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,Xn=(e,t,n,o)=>{const{loc:r,modifiers:s,arg:i}=e;let c;if(4===i.type)if(i.isStatic){c=xe(_(S(i.content)),!0,i.loc)}else c=Ne([`${n.helperString(re)}(`,i,")"]);else c=i,c.children.unshift(`${n.helperString(re)}(`),c.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let a=n.cacheHandlers&&!l&&!n.inVOnce;if(l){const e=Je(l.content),t=!(e||Qn.test(l.content)),n=l.content.includes(";");(t||a&&e)&&(l=Ne([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let p={props:[Se(c,l||xe("() => {}",!1,r))]};return o&&(p=o(p)),a&&(p.props[0].value=n.cache(p.props[0].value)),p.props.forEach((e=>e.key.isHandlerKey=!0)),p},eo=(e,t,n)=>{const{exp:o,modifiers:r,loc:s}=e,i=e.arg;return 4!==i.type?(i.children.unshift("("),i.children.push(') || ""')):i.isStatic||(i.content=`${i.content} || ""`),r.includes("camel")&&(4===i.type?i.content=i.isStatic?S(i.content):`${n.helperString(ne)}(${i.content})`:(i.children.unshift(`${n.helperString(ne)}(`),i.children.push(")"))),n.inSSR||(r.includes("prop")&&to(i,"."),r.includes("attr")&&to(i,"^")),!o||4===o.type&&!o.content.trim()?{props:[Se(i,xe("",!0,s))]}:{props:[Se(i,o)]}},to=(e,t)=>{4===e.type?e.content=e.isStatic?t+e.content:`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},no=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o,r=!1;for(let e=0;e<n.length;e++){const t=n[e];if(Xe(t)){r=!0;for(let r=e+1;r<n.length;r++){const s=n[r];if(!Xe(s)){o=void 0;break}o||(o=n[e]={type:8,loc:t.loc,children:[t]}),o.children.push(" + ",s),n.splice(r,1),r--}}}if(r&&(1!==n.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find((e=>7===e.type&&!t.directiveTransforms[e.name]))||"template"===e.tag)))for(let e=0;e<n.length;e++){const o=n[e];if(Xe(o)||8===o.type){const r=[];2===o.type&&" "===o.content||r.push(o),t.ssr||0!==zt(o,t)||r.push("1"),n[e]={type:12,content:o,loc:o.loc,codegenNode:_e(t.helper(B),r)}}}}},oo=new WeakSet,ro=(e,t)=>{if(1===e.type&&qe(e,"once",!0)){if(oo.has(e)||t.inVOnce)return;return oo.add(e),t.inVOnce=!0,t.helper(se),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},so=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return io();const s=o.loc.source,i=4===o.type?o.content:s;if(!i.trim()||!Je(i))return io();const c=r||xe("modelValue",!0),l=r?Re(r)?`onUpdate:${r.content}`:Ne(['"onUpdate:" + ',r]):"onUpdate:modelValue";let a;a=Ne([`${n.isTS?"($event: any)":"$event"} => ((`,o,") = $event)"]);const p=[Se(c,e.exp),Se(l,a)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map((e=>(Ae(e)?e:JSON.stringify(e))+": true")).join(", "),n=r?Re(r)?`${r.content}Modifiers`:Ne([r,' + "Modifiers"']):"modelModifiers";p.push(Se(n,xe(`{ ${t} }`,!1,e.loc,2)))}return io(p)};function io(e=[]){return{props:e}}const co=/[\w).+\-_$\]]/,lo=(e,t)=>{ht("COMPILER_FILTER",t)&&(5===e.type&&ao(e.content,t),1===e.type&&e.props.forEach((e=>{7===e.type&&"for"!==e.name&&e.exp&&ao(e.exp,t)})))};function ao(e,t){if(4===e.type)po(e,t);else for(let n=0;n<e.children.length;n++){const o=e.children[n];"object"==typeof o&&(4===o.type?po(o,t):8===o.type?ao(e,t):5===o.type&&ao(o.content,t))}}function po(e,t){const n=e.content;let o,r,s,i,c=!1,l=!1,a=!1,p=!1,u=0,f=0,d=0,h=0,m=[];for(s=0;s<n.length;s++)if(r=o,o=n.charCodeAt(s),c)39===o&&92!==r&&(c=!1);else if(l)34===o&&92!==r&&(l=!1);else if(a)96===o&&92!==r&&(a=!1);else if(p)47===o&&92!==r&&(p=!1);else if(124!==o||124===n.charCodeAt(s+1)||124===n.charCodeAt(s-1)||u||f||d){switch(o){case 34:l=!0;break;case 39:c=!0;break;case 96:a=!0;break;case 40:d++;break;case 41:d--;break;case 91:f++;break;case 93:f--;break;case 123:u++;break;case 125:u--}if(47===o){let e,t=s-1;for(;t>=0&&(e=n.charAt(t)," "===e);t--);e&&co.test(e)||(p=!0)}}else void 0===i?(h=s+1,i=n.slice(0,s).trim()):g();function g(){m.push(n.slice(h,s).trim()),h=s+1}if(void 0===i?i=n.slice(0,s).trim():0!==h&&g(),m.length){for(s=0;s<m.length;s++)i=uo(i,m[s],t);e.content=i}}function uo(e,t,n){n.helper(J);const o=t.indexOf("(");if(o<0)return n.filters.add(t),`${lt(t,"filter")}(${e})`;{const r=t.slice(0,o),s=t.slice(o+1);return n.filters.add(r),`${lt(r,"filter")}(${e}${")"!==s?","+s:s}`}}const fo=new WeakSet,ho=(e,t)=>{if(1===e.type){const n=qe(e,"memo");if(!n||fo.has(e))return;return fo.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&ut(o,t),e.codegenNode=_e(t.helper(ue),[n.exp,Te(void 0,o),"_cache",String(t.cached++)]))}}};function mo(e){return[[ro,kn,ho,On,lo,Yn,Jn,Ln,no],{on:Xn,bind:eo,model:so}]}function go(e,t={}){const n=t.onError||T,o="module"===t.mode;!0===t.prefixIdentifiers?n(O(46)):o&&n(O(47));t.cacheHandlers&&n(O(48)),t.scopeId&&!o&&n(O(49));const r=h(e)?St(e,t):e,[s,i]=mo();return Xt(r,f({},t,{prefixIdentifiers:false,nodeTransforms:[...s,...t.nodeTransforms||[]],directiveTransforms:f({},i,t.directiveTransforms||{})})),nn(r,f({},t,{prefixIdentifiers:false}))}const yo=()=>({props:[]}),vo=Symbol(""),bo=Symbol(""),So=Symbol(""),xo=Symbol(""),ko=Symbol(""),No=Symbol(""),_o=Symbol(""),To=Symbol(""),Eo=Symbol(""),Oo=Symbol("");let Co;he({[vo]:"vModelRadio",[bo]:"vModelCheckbox",[So]:"vModelText",[xo]:"vModelSelect",[ko]:"vModelDynamic",[No]:"withModifiers",[_o]:"withKeys",[To]:"vShow",[Eo]:"Transition",[Oo]:"TransitionGroup"});const $o=e("style,iframe,script,noscript",!0),wo={isVoidTag:i,isNativeTag:e=>r(e)||s(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return Co||(Co=document.createElement("div")),t?(Co.innerHTML=`<div foo="${e.replace(/"/g,"&quot;")}">`,Co.children[0].getAttribute("foo")):(Co.innerHTML=e,Co.textContent)},isBuiltInComponent:e=>Ve(e,"Transition")?Eo:Ve(e,"TransitionGroup")?Oo:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some((e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content)))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if($o(e))return 2}return 0}},Mo=e=>{1===e.type&&e.props.forEach(((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:xe("style",!0,t.loc),exp:Io(t.value.content,t.loc),modifiers:[],loc:t.loc})}))},Io=(e,t)=>{const r=function(e){const t={};return e.split(n).forEach((e=>{if(e){const n=e.split(o);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}(e);return xe(JSON.stringify(r),!1,t,3)};function Po(e,t){return O(e,t)}const Ro=e("passive,once,capture"),Vo=e("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),Lo=e("left,right"),jo=e("onkeyup,onkeydown,onkeypress",!0),Ao=(e,t)=>Re(e)&&"onclick"===e.content.toLowerCase()?xe(t,!0):4!==e.type?Ne(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,Bo=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||t.removeNode()},Fo=[Mo],Do={cloak:yo,html:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Se(xe("innerHTML",!0,r),o||xe("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Se(xe("textContent",!0),o?_e(n.helperString(q),[o],r):xe("",!0))]}},model:(e,t,n)=>{const o=so(e,t,n);if(!o.props.length||1===t.tagType)return o;const{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let e=So,i=!1;if("input"===r||s){const n=Ye(t,"type");if(n){if(7===n.type)e=ko;else if(n.value)switch(n.value.content){case"radio":e=vo;break;case"checkbox":e=bo;break;case"file":i=!0}}else Qe(t)&&(e=ko)}else"select"===r&&(e=xo);i||(o.needRuntime=n.helper(e))}return o.props=o.props.filter((e=>!(4===e.key.type&&"modelValue"===e.key.content))),o},on:(e,t,n)=>Xn(e,0,n,(t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:r,value:s}=t.props[0];const{keyModifiers:i,nonKeyModifiers:c,eventOptionModifiers:l}=((e,t,n,o)=>{const r=[],s=[],i=[];for(let c=0;c<t.length;c++){const o=t[c];"native"===o&&mt("COMPILER_V_ON_NATIVE",n)||Ro(o)?i.push(o):Lo(o)?Re(e)?jo(e.content)?r.push(o):s.push(o):(r.push(o),s.push(o)):Vo(o)?s.push(o):r.push(o)}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:i}})(r,o,n);if(c.includes("right")&&(r=Ao(r,"onContextmenu")),c.includes("middle")&&(r=Ao(r,"onMouseup")),c.length&&(s=_e(n.helper(No),[s,JSON.stringify(c)])),!i.length||Re(r)&&!jo(r.content)||(s=_e(n.helper(_o),[s,JSON.stringify(i)])),l.length){const e=l.map(N).join("");r=Re(r)?xe(`${r.content}${e}`,!0):Ne(["(",r,`) + "${e}"`])}return{props:[Se(r,s)]}})),show:(e,t,n)=>({props:[],needRuntime:n.helper(To)})};function Ho(e,t={}){return go(e,f({},wo,t,{nodeTransforms:[Bo,...Fo,...t.nodeTransforms||[]],directiveTransforms:f({},Do,t.directiveTransforms||{}),transformHoist:null}))}function Wo(e,t={}){return St(e,f({},wo,t))}export{I as BASE_TRANSITION,ne as CAMELIZE,oe as CAPITALIZE,R as CREATE_BLOCK,A as CREATE_COMMENT,V as CREATE_ELEMENT_BLOCK,j as CREATE_ELEMENT_VNODE,K as CREATE_SLOTS,F as CREATE_STATIC,B as CREATE_TEXT,L as CREATE_VNODE,Do as DOMDirectiveTransforms,Fo as DOMNodeTransforms,C as FRAGMENT,ee as GUARD_REACTIVE_PROPS,fe as IS_MEMO_SAME,pe as IS_REF,M as KEEP_ALIVE,Y as MERGE_PROPS,Z as NORMALIZE_CLASS,X as NORMALIZE_PROPS,Q as NORMALIZE_STYLE,P as OPEN_BLOCK,ce as POP_SCOPE_ID,ie as PUSH_SCOPE_ID,z as RENDER_LIST,G as RENDER_SLOT,D as RESOLVE_COMPONENT,W as RESOLVE_DIRECTIVE,H as RESOLVE_DYNAMIC_COMPONENT,J as RESOLVE_FILTER,se as SET_BLOCK_TRACKING,w as SUSPENSE,$ as TELEPORT,q as TO_DISPLAY_STRING,te as TO_HANDLERS,re as TO_HANDLER_KEY,Eo as TRANSITION,Oo as TRANSITION_GROUP,ae as UNREF,bo as V_MODEL_CHECKBOX,ko as V_MODEL_DYNAMIC,vo as V_MODEL_RADIO,xo as V_MODEL_SELECT,So as V_MODEL_TEXT,_o as V_ON_WITH_KEYS,No as V_ON_WITH_MODIFIERS,To as V_SHOW,le as WITH_CTX,U as WITH_DIRECTIVES,ue as WITH_MEMO,ze as advancePositionWithClone,Ge as advancePositionWithMutation,Ke as assert,go as baseCompile,St as baseParse,zn as buildProps,Bn as buildSlots,mt as checkCompatEnabled,Ho as compile,ve as createArrayExpression,Me as createAssignmentExpression,Ce as createBlockStatement,Oe as createCacheExpression,_e as createCallExpression,O as createCompilerError,Ne as createCompoundExpression,Ee as createConditionalExpression,Po as createDOMCompilerError,Rn as createForLoopParams,Te as createFunctionExpression,we as createIfStatement,ke as createInterpolation,be as createObjectExpression,Se as createObjectProperty,Pe as createReturnStatement,ge as createRoot,Ie as createSequenceExpression,xe as createSimpleExpression,tn as createStructuralDirectiveTransform,$e as createTemplateLiteral,Qt as createTransformContext,ye as createVNodeCall,gn as extractIdentifiers,qe as findDir,Ye as findProp,nn as generate,t as generateCodeFrame,mo as getBaseTransformPreset,Ue as getInnerRange,pt as getMemoedVNodeCall,rt as getVNodeBlockHelper,ot as getVNodeHelper,Qe as hasDynamicKeyVBind,at as hasScopeRef,de as helperNameMap,ct as injectProp,Ze as isBindKey,Ve as isBuiltInType,Le as isCoreComponent,yn as isFunctionType,dn as isInDestructureAssignment,Je as isMemberExpression,He as isMemberExpressionBrowser,We as isMemberExpressionNode,fn as isReferencedIdentifier,Ae as isSimpleIdentifier,nt as isSlotOutlet,Re as isStaticExp,vn as isStaticProperty,bn as isStaticPropertyKey,tt as isTemplateNode,Xe as isText,et as isVSlot,me as locStub,ut as makeBlock,yo as noopDirectiveTransform,Wo as parse,wo as parserOptions,xn as processExpression,Cn as processFor,Nn as processIf,Zn as processSlotOutlet,he as registerRuntimeHelpers,Un as resolveComponentType,lt as toValidAssetId,Ln as trackSlotScopes,jn as trackVForSlotScopes,Xt as transform,eo as transformBind,Jn as transformElement,Sn as transformExpression,so as transformModel,Xn as transformOn,Mo as transformStyle,en as traverseNode,mn as walkBlockDeclarations,hn as walkFunctionParams,un as walkIdentifiers,gt as warnDeprecation};
1
+ function e(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r<o.length;r++)n[o[r]]=!0;return t?e=>!!n[e.toLowerCase()]:e=>!!n[e]}function t(e,t=0,n=e.length){let o=e.split(/(\r?\n)/);const r=o.filter(((e,t)=>t%2==1));o=o.filter(((e,t)=>t%2==0));let s=0;const i=[];for(let c=0;c<o.length;c++)if(s+=o[c].length+(r[c]&&r[c].length||0),s>=t){for(let e=c-2;e<=c+2||n>s;e++){if(e<0||e>=o.length)continue;const l=e+1;i.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${o[e]}`);const a=o[e].length,p=r[e]&&r[e].length||0;if(e===c){const e=t-(s-(a+p)),o=Math.max(1,n>s?a-e:n-t);i.push(" | "+" ".repeat(e)+"^".repeat(o))}else if(e>c){if(n>s){const e=Math.max(Math.min(n-s,a),1);i.push(" | "+"^".repeat(e))}s+=a+p}}break}return i.join("\n")}const n=/;(?![^(]*\))/g,o=/:(.+)/;const r=e("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"),s=e("svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"),i=e("area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr"),c={},l=()=>{},a=()=>!1,p=/^on[^a-z]/,u=e=>p.test(e),f=Object.assign,d=Array.isArray,h=e=>"string"==typeof e,m=e=>"symbol"==typeof e,g=e=>null!==e&&"object"==typeof e,y=e(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),v=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},b=/-(\w)/g,S=v((e=>e.replace(b,((e,t)=>t?t.toUpperCase():"")))),x=/\B([A-Z])/g,k=v((e=>e.replace(x,"-$1").toLowerCase())),N=v((e=>e.charAt(0).toUpperCase()+e.slice(1))),_=v((e=>e?`on${N(e)}`:""));function T(e){throw e}function E(e){}function $(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const w=Symbol(""),O=Symbol(""),C=Symbol(""),M=Symbol(""),I=Symbol(""),P=Symbol(""),R=Symbol(""),V=Symbol(""),L=Symbol(""),B=Symbol(""),j=Symbol(""),A=Symbol(""),F=Symbol(""),D=Symbol(""),H=Symbol(""),U=Symbol(""),W=Symbol(""),J=Symbol(""),z=Symbol(""),G=Symbol(""),K=Symbol(""),q=Symbol(""),Y=Symbol(""),Z=Symbol(""),Q=Symbol(""),X=Symbol(""),ee=Symbol(""),te=Symbol(""),ne=Symbol(""),oe=Symbol(""),re=Symbol(""),se=Symbol(""),ie=Symbol(""),ce=Symbol(""),le=Symbol(""),ae=Symbol(""),pe=Symbol(""),ue=Symbol(""),fe=Symbol(""),de={[w]:"Fragment",[O]:"Teleport",[C]:"Suspense",[M]:"KeepAlive",[I]:"BaseTransition",[P]:"openBlock",[R]:"createBlock",[V]:"createElementBlock",[L]:"createVNode",[B]:"createElementVNode",[j]:"createCommentVNode",[A]:"createTextVNode",[F]:"createStaticVNode",[D]:"resolveComponent",[H]:"resolveDynamicComponent",[U]:"resolveDirective",[W]:"resolveFilter",[J]:"withDirectives",[z]:"renderList",[G]:"renderSlot",[K]:"createSlots",[q]:"toDisplayString",[Y]:"mergeProps",[Z]:"normalizeClass",[Q]:"normalizeStyle",[X]:"normalizeProps",[ee]:"guardReactiveProps",[te]:"toHandlers",[ne]:"camelize",[oe]:"capitalize",[re]:"toHandlerKey",[se]:"setBlockTracking",[ie]:"pushScopeId",[ce]:"popScopeId",[le]:"withCtx",[ae]:"unref",[pe]:"isRef",[ue]:"withMemo",[fe]:"isMemoSame"};function he(e){Object.getOwnPropertySymbols(e).forEach((t=>{de[t]=e[t]}))}const me={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function ge(e,t=me){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}function ye(e,t,n,o,r,s,i,c=!1,l=!1,a=!1,p=me){return e&&(c?(e.helper(P),e.helper(rt(e.inSSR,a))):e.helper(ot(e.inSSR,a)),i&&e.helper(J)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:s,directives:i,isBlock:c,disableTracking:l,isComponent:a,loc:p}}function ve(e,t=me){return{type:17,loc:t,elements:e}}function be(e,t=me){return{type:15,loc:t,properties:e}}function Se(e,t){return{type:16,loc:me,key:h(e)?xe(e,!0):e,value:t}}function xe(e,t=!1,n=me,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function ke(e,t){return{type:5,loc:t,content:h(e)?xe(e,!1,t):e}}function Ne(e,t=me){return{type:8,loc:t,children:e}}function _e(e,t=[],n=me){return{type:14,loc:n,callee:e,arguments:t}}function Te(e,t,n=!1,o=!1,r=me){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Ee(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:me}}function $e(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:me}}function we(e){return{type:21,body:e,loc:me}}function Oe(e){return{type:22,elements:e,loc:me}}function Ce(e,t,n){return{type:23,test:e,consequent:t,alternate:n,loc:me}}function Me(e,t){return{type:24,left:e,right:t,loc:me}}function Ie(e){return{type:25,expressions:e,loc:me}}function Pe(e){return{type:26,returns:e,loc:me}}const Re=e=>4===e.type&&e.isStatic,Ve=(e,t)=>e===t||e===k(t);function Le(e){return Ve(e,"Teleport")?O:Ve(e,"Suspense")?C:Ve(e,"KeepAlive")?M:Ve(e,"BaseTransition")?I:void 0}const Be=/^\d|[^\$\w]/,je=e=>!Be.test(e),Ae=/[A-Za-z_$\xA0-\uFFFF]/,Fe=/[\.\?\w$\xA0-\uFFFF]/,De=/\s+[.[]\s*|\s*[.[]\s+/g,He=e=>{e=e.trim().replace(De,(e=>e.trim()));let t=0,n=[],o=0,r=0,s=null;for(let i=0;i<e.length;i++){const c=e.charAt(i);switch(t){case 0:if("["===c)n.push(t),t=1,o++;else if("("===c)n.push(t),t=2,r++;else if(!(0===i?Ae:Fe).test(c))return!1;break;case 1:"'"===c||'"'===c||"`"===c?(n.push(t),t=3,s=c):"["===c?o++:"]"===c&&(--o||(t=n.pop()));break;case 2:if("'"===c||'"'===c||"`"===c)n.push(t),t=3,s=c;else if("("===c)r++;else if(")"===c){if(i===e.length-1)return!1;--r||(t=n.pop())}break;case 3:c===s&&(t=n.pop(),s=null)}}return!o&&!r},Ue=l,We=He;function Je(e,t,n){const o={source:e.source.slice(t,t+n),start:ze(e.start,e.source,t),end:e.end};return null!=n&&(o.end=ze(e.start,e.source,t+n)),o}function ze(e,t,n=t.length){return Ge(f({},e),t,n)}function Ge(e,t,n=t.length){let o=0,r=-1;for(let s=0;s<n;s++)10===t.charCodeAt(s)&&(o++,r=s);return e.offset+=n,e.line+=o,e.column=-1===r?e.column+n:n-r,e}function Ke(e,t){if(!e)throw new Error(t||"unexpected compiler condition")}function qe(e,t,n=!1){for(let o=0;o<e.props.length;o++){const r=e.props[o];if(7===r.type&&(n||r.exp)&&(h(t)?r.name===t:t.test(r.name)))return r}}function Ye(e,t,n=!1,o=!1){for(let r=0;r<e.props.length;r++){const s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||o))return s}else if("bind"===s.name&&(s.exp||o)&&Ze(s.arg,t))return s}}function Ze(e,t){return!(!e||!Re(e)||e.content!==t)}function Qe(e){return e.props.some((e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic)))}function Xe(e){return 5===e.type||2===e.type}function et(e){return 7===e.type&&"slot"===e.name}function tt(e){return 1===e.type&&3===e.tagType}function nt(e){return 1===e.type&&2===e.tagType}function ot(e,t){return e||t?L:B}function rt(e,t){return e||t?R:V}const st=new Set([X,ee]);function it(e,t=[]){if(e&&!h(e)&&14===e.type){const n=e.callee;if(!h(n)&&st.has(n))return it(e.arguments[0],t.concat(e))}return[e,t]}function ct(e,t,n){let o,r,s=13===e.type?e.props:e.arguments[2],i=[];if(s&&!h(s)&&14===s.type){const e=it(s);s=e[0],i=e[1],r=i[i.length-1]}if(null==s||h(s))o=be([t]);else if(14===s.type){const e=s.arguments[0];h(e)||15!==e.type?s.callee===te?o=_e(n.helper(Y),[be([t]),s]):s.arguments.unshift(be([t])):e.properties.unshift(t),!o&&(o=s)}else if(15===s.type){let e=!1;if(4===t.key.type){const n=t.key.content;e=s.properties.some((e=>4===e.key.type&&e.key.content===n))}e||s.properties.unshift(t),o=s}else o=_e(n.helper(Y),[be([t]),s]),r&&r.callee===ee&&(r=i[i.length-2]);13===e.type?r?r.arguments[0]=o:e.props=o:r?r.arguments[0]=o:e.arguments[2]=o}function lt(e,t){return`_${t}_${e.replace(/[^\w]/g,((t,n)=>"-"===t?"_":e.charCodeAt(n).toString()))}`}function at(e,t){if(!e||0===Object.keys(t).length)return!1;switch(e.type){case 1:for(let n=0;n<e.props.length;n++){const o=e.props[n];if(7===o.type&&(at(o.arg,t)||at(o.exp,t)))return!0}return e.children.some((e=>at(e,t)));case 11:return!!at(e.source,t)||e.children.some((e=>at(e,t)));case 9:return e.branches.some((e=>at(e,t)));case 10:return!!at(e.condition,t)||e.children.some((e=>at(e,t)));case 4:return!e.isStatic&&je(e.content)&&!!t[e.content];case 8:return e.children.some((e=>g(e)&&at(e,t)));case 5:case 12:return at(e.content,t);default:return!1}}function pt(e){return 14===e.type&&e.callee===ue?e.arguments[1].returns:e}function ut(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(ot(o,e.isComponent)),t(P),t(rt(o,e.isComponent)))}const ft={COMPILER_IS_ON_ELEMENT:{message:'Platform-native elements with "is" prop will no longer be treated as components in Vue 3 unless the "is" value is explicitly prefixed with "vue:".',link:"https://v3.vuejs.org/guide/migration/custom-elements-interop.html"},COMPILER_V_BIND_SYNC:{message:e=>`.sync modifier for v-bind has been removed. Use v-model with argument instead. \`v-bind:${e}.sync\` should be changed to \`v-model:${e}\`.`,link:"https://v3.vuejs.org/guide/migration/v-model.html"},COMPILER_V_BIND_PROP:{message:".prop modifier for v-bind has been removed and no longer necessary. Vue 3 will automatically set a binding as DOM property when appropriate."},COMPILER_V_BIND_OBJECT_ORDER:{message:'v-bind="obj" usage is now order sensitive and behaves like JavaScript object spread: it will now overwrite an existing non-mergeable attribute that appears before v-bind in the case of conflict. To retain 2.x behavior, move v-bind to make it the first attribute. You can also suppress this warning if the usage is intended.',link:"https://v3.vuejs.org/guide/migration/v-bind.html"},COMPILER_V_ON_NATIVE:{message:".native modifier for v-on has been removed as is no longer necessary.",link:"https://v3.vuejs.org/guide/migration/v-on-native-modifier-removed.html"},COMPILER_V_IF_V_FOR_PRECEDENCE:{message:"v-if / v-for precedence when used on the same element has changed in Vue 3: v-if now takes higher precedence and will no longer have access to v-for scope variables. It is best to avoid the ambiguity with <template> tags or use a computed property that filters v-for data source.",link:"https://v3.vuejs.org/guide/migration/v-if-v-for.html"},COMPILER_NATIVE_TEMPLATE:{message:"<template> with no special directives will render as a native template element instead of its inner content in Vue 3."},COMPILER_INLINE_TEMPLATE:{message:'"inline-template" has been removed in Vue 3.',link:"https://v3.vuejs.org/guide/migration/inline-template-attribute.html"},COMPILER_FILTER:{message:'filters have been removed in Vue 3. The "|" symbol will be treated as native JavaScript bitwise OR operator. Use method calls or computed properties instead.',link:"https://v3.vuejs.org/guide/migration/filters.html"}};function dt(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function ht(e,t){const n=dt("MODE",t),o=dt(e,t);return 3===n?!0===o:!1!==o}function mt(e,t,n,...o){return ht(e,t)}function gt(e,t,n,...o){if("suppress-warning"===dt(e,t))return;const{message:r,link:s}=ft[e],i=`(deprecation ${e}) ${"function"==typeof r?r(...o):r}${s?`\n Details: ${s}`:""}`,c=new SyntaxError(i);c.code=e,n&&(c.loc=n),t.onWarn(c)}const yt=/&(gt|lt|amp|apos|quot);/g,vt={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},bt={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:a,isPreTag:a,isCustomElement:a,decodeEntities:e=>e.replace(yt,((e,t)=>vt[t])),onError:T,onWarn:E,comments:!1};function St(e,t={}){const n=function(e,t){const n=f({},bt);let o;for(o in t)n[o]=void 0===t[o]?bt[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Rt(n);return ge(xt(n,0,[]),Vt(n,o))}function xt(e,t,n){const o=Lt(n),r=o?o.ns:0,s=[];for(;!Dt(e,t,n);){const i=e.source;let c;if(0===t||1===t)if(!e.inVPre&&Bt(i,e.options.delimiters[0]))c=Mt(e,t);else if(0===t&&"<"===i[0])if(1===i.length);else if("!"===i[1])c=Bt(i,"\x3c!--")?_t(e):Bt(i,"<!DOCTYPE")?Tt(e):Bt(i,"<![CDATA[")&&0!==r?Nt(e,n):Tt(e);else if("/"===i[1])if(2===i.length);else{if(">"===i[2]){jt(e,3);continue}if(/[a-z]/i.test(i[2])){wt(e,1,o);continue}c=Tt(e)}else/[a-z]/i.test(i[1])?(c=Et(e,n),ht("COMPILER_NATIVE_TEMPLATE",e)&&c&&"template"===c.tag&&!c.props.some((e=>7===e.type&&$t(e.name)))&&(c=c.children)):"?"===i[1]&&(c=Tt(e));if(c||(c=It(e,t)),d(c))for(let e=0;e<c.length;e++)kt(s,c[e]);else kt(s,c)}let i=!1;if(2!==t&&1!==t){const t="preserve"!==e.options.whitespace;for(let n=0;n<s.length;n++){const o=s[n];if(e.inPre||2!==o.type)3!==o.type||e.options.comments||(i=!0,s[n]=null);else if(/[^\t\r\n\f ]/.test(o.content))t&&(o.content=o.content.replace(/[\t\r\n\f ]+/g," "));else{const e=s[n-1],r=s[n+1];!e||!r||t&&(3===e.type||3===r.type||1===e.type&&1===r.type&&/[\r\n]/.test(o.content))?(i=!0,s[n]=null):o.content=" "}}if(e.inPre&&o&&e.options.isPreTag(o.tag)){const e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}}return i?s.filter(Boolean):s}function kt(e,t){if(2===t.type){const n=Lt(e);if(n&&2===n.type&&n.loc.end.offset===t.loc.start.offset)return n.content+=t.content,n.loc.end=t.loc.end,void(n.loc.source+=t.loc.source)}e.push(t)}function Nt(e,t){jt(e,9);const n=xt(e,3,t);return 0===e.source.length||jt(e,3),n}function _t(e){const t=Rt(e);let n;const o=/--(\!)?>/.exec(e.source);if(o){n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,s=0;for(;-1!==(s=t.indexOf("\x3c!--",r));)jt(e,s-r+1),r=s+1;jt(e,o.index+o[0].length-r+1)}else n=e.source.slice(4),jt(e,e.source.length);return{type:3,content:n,loc:Vt(e,t)}}function Tt(e){const t=Rt(e),n="?"===e.source[1]?1:2;let o;const r=e.source.indexOf(">");return-1===r?(o=e.source.slice(n),jt(e,e.source.length)):(o=e.source.slice(n,r),jt(e,r+1)),{type:3,content:o,loc:Vt(e,t)}}function Et(e,t){const n=e.inPre,o=e.inVPre,r=Lt(t),s=wt(e,0,r),i=e.inPre&&!n,c=e.inVPre&&!o;if(s.isSelfClosing||e.options.isVoidTag(s.tag))return i&&(e.inPre=!1),c&&(e.inVPre=!1),s;t.push(s);const l=e.options.getTextMode(s,r),a=xt(e,l,t);t.pop();{const t=s.props.find((e=>6===e.type&&"inline-template"===e.name));if(t&&mt("COMPILER_INLINE_TEMPLATE",e)){const n=Vt(e,s.loc.end);t.value={type:2,content:n.source,loc:n}}}if(s.children=a,Ht(e.source,s.tag))wt(e,1,r);else if(0===e.source.length&&"script"===s.tag.toLowerCase()){const e=a[0];e&&Bt(e.loc.source,"\x3c!--")}return s.loc=Vt(e,s.loc.start),i&&(e.inPre=!1),c&&(e.inVPre=!1),s}const $t=e("if,else,else-if,for,slot");function wt(e,t,n){const o=Rt(e),r=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),s=r[1],i=e.options.getNamespace(s,n);jt(e,r[0].length),At(e);const c=Rt(e),l=e.source;e.options.isPreTag(s)&&(e.inPre=!0);let a=Ot(e,t);0===t&&!e.inVPre&&a.some((e=>7===e.type&&"pre"===e.name))&&(e.inVPre=!0,f(e,c),e.source=l,a=Ot(e,t).filter((e=>"v-pre"!==e.name)));let p=!1;if(0===e.source.length||(p=Bt(e.source,"/>"),jt(e,p?2:1)),1===t)return;let u=0;return e.inVPre||("slot"===s?u=2:"template"===s?a.some((e=>7===e.type&&$t(e.name)))&&(u=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||Le(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let r=0;r<t.length;r++){const e=t[r];if(6===e.type){if("is"===e.name&&e.value){if(e.value.content.startsWith("vue:"))return!0;if(mt("COMPILER_IS_ON_ELEMENT",n))return!0}}else{if("is"===e.name)return!0;if("bind"===e.name&&Ze(e.arg,"is")&&mt("COMPILER_IS_ON_ELEMENT",n))return!0}}}(s,a,e)&&(u=1)),{type:1,ns:i,tag:s,tagType:u,props:a,isSelfClosing:p,children:[],loc:Vt(e,o),codegenNode:void 0}}function Ot(e,t){const n=[],o=new Set;for(;e.source.length>0&&!Bt(e.source,">")&&!Bt(e.source,"/>");){if(Bt(e.source,"/")){jt(e,1),At(e);continue}const r=Ct(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source),At(e)}return n}function Ct(e,t){const n=Rt(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o),t.add(o);{const e=/["'<]/g;let t;for(;t=e.exec(o););}let r;jt(e,o.length),/^[\t\r\n\f ]*=/.test(e.source)&&(At(e),jt(e,1),At(e),r=function(e){const t=Rt(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){jt(e,1);const t=e.source.indexOf(o);-1===t?n=Pt(e,e.source.length,4):(n=Pt(e,t,4),jt(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]););n=Pt(e,t[0].length,4)}return{content:n,isQuoted:r,loc:Vt(e,t)}}(e));const s=Vt(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,c=Bt(o,"."),l=t[1]||(c||Bt(o,":")?"bind":Bt(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,s=o.lastIndexOf(t[2]),c=Vt(e,Ft(e,n,s),Ft(e,n,s+t[2].length+(r&&t[3]||"").length));let a=t[2],p=!0;a.startsWith("[")?(p=!1,a=a.endsWith("]")?a.slice(1,a.length-1):a.slice(1)):r&&(a+=t[3]||""),i={type:4,content:a,isStatic:p,constType:p?3:0,loc:c}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=ze(e.start,r.content),e.source=e.source.slice(1,-1)}const a=t[3]?t[3].slice(1).split("."):[];return c&&a.push("prop"),"bind"===l&&i&&a.includes("sync")&&mt("COMPILER_V_BIND_SYNC",e,0)&&(l="model",a.splice(a.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:a,loc:s}}return!e.inVPre&&Bt(o,"v-"),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:s}}function Mt(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return;const s=Rt(e);jt(e,n.length);const i=Rt(e),c=Rt(e),l=r-n.length,a=e.source.slice(0,l),p=Pt(e,l,t),u=p.trim(),f=p.indexOf(u);f>0&&Ge(i,a,f);return Ge(c,a,l-(p.length-u.length-f)),jt(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:u,loc:Vt(e,i,c)},loc:Vt(e,s)}}function It(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let s=0;s<n.length;s++){const t=e.source.indexOf(n[s],1);-1!==t&&o>t&&(o=t)}const r=Rt(e);return{type:2,content:Pt(e,o,t),loc:Vt(e,r)}}function Pt(e,t,n){const o=e.source.slice(0,t);return jt(e,t),2!==n&&3!==n&&o.includes("&")?e.options.decodeEntities(o,4===n):o}function Rt(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function Vt(e,t,n){return{start:t,end:n=n||Rt(e),source:e.originalSource.slice(t.offset,n.offset)}}function Lt(e){return e[e.length-1]}function Bt(e,t){return e.startsWith(t)}function jt(e,t){const{source:n}=e;Ge(e,n,t),e.source=n.slice(t)}function At(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&jt(e,t[0].length)}function Ft(e,t,n){return ze(t,e.originalSource.slice(t.offset,n),n)}function Dt(e,t,n){const o=e.source;switch(t){case 0:if(Bt(o,"</"))for(let e=n.length-1;e>=0;--e)if(Ht(o,n[e].tag))return!0;break;case 1:case 2:{const e=Lt(n);if(e&&Ht(o,e.tag))return!0;break}case 3:if(Bt(o,"]]>"))return!0}return!o}function Ht(e,t){return Bt(e,"</")&&e.slice(2,2+t.length).toLowerCase()===t.toLowerCase()&&/[\t\r\n\f />]/.test(e[2+t.length]||">")}function Ut(e,t){Jt(e,t,Wt(e,e.children[0]))}function Wt(e,t){const{children:n}=e;return 1===n.length&&1===t.type&&!nt(t)}function Jt(e,t,n=!1){const{children:o}=e,r=o.length;let s=0;for(let i=0;i<o.length;i++){const e=o[i];if(1===e.type&&0===e.tagType){const o=n?0:zt(e,t);if(o>0){if(o>=2){e.codegenNode.patchFlag="-1",e.codegenNode=t.hoist(e.codegenNode),s++;continue}}else{const n=e.codegenNode;if(13===n.type){const o=Zt(n);if((!o||512===o||1===o)&&qt(e,t)>=2){const o=Yt(e);o&&(n.props=t.hoist(o))}n.dynamicProps&&(n.dynamicProps=t.hoist(n.dynamicProps))}}}else 12===e.type&&zt(e.content,t)>=2&&(e.codegenNode=t.hoist(e.codegenNode),s++);if(1===e.type){const n=1===e.tagType;n&&t.scopes.vSlot++,Jt(e,t),n&&t.scopes.vSlot--}else if(11===e.type)Jt(e,t,1===e.children.length);else if(9===e.type)for(let n=0;n<e.branches.length;n++)Jt(e.branches[n],t,1===e.branches[n].children.length)}s&&t.transformHoist&&t.transformHoist(o,t,e),s&&s===r&&1===e.type&&0===e.tagType&&e.codegenNode&&13===e.codegenNode.type&&d(e.codegenNode.children)&&(e.codegenNode.children=t.hoist(ve(e.codegenNode.children)))}function zt(e,t){const{constantCache:n}=t;switch(e.type){case 1:if(0!==e.tagType)return 0;const o=n.get(e);if(void 0!==o)return o;const r=e.codegenNode;if(13!==r.type)return 0;if(r.isBlock&&"svg"!==e.tag&&"foreignObject"!==e.tag)return 0;if(Zt(r))return n.set(e,0),0;{let o=3;const s=qt(e,t);if(0===s)return n.set(e,0),0;s<o&&(o=s);for(let r=0;r<e.children.length;r++){const s=zt(e.children[r],t);if(0===s)return n.set(e,0),0;s<o&&(o=s)}if(o>1)for(let r=0;r<e.props.length;r++){const s=e.props[r];if(7===s.type&&"bind"===s.name&&s.exp){const r=zt(s.exp,t);if(0===r)return n.set(e,0),0;r<o&&(o=r)}}return r.isBlock&&(t.removeHelper(P),t.removeHelper(rt(t.inSSR,r.isComponent)),r.isBlock=!1,t.helper(ot(t.inSSR,r.isComponent))),n.set(e,o),o}case 2:case 3:return 3;case 9:case 11:case 10:default:return 0;case 5:case 12:return zt(e.content,t);case 4:return e.constType;case 8:let s=3;for(let n=0;n<e.children.length;n++){const o=e.children[n];if(h(o)||m(o))continue;const r=zt(o,t);if(0===r)return 0;r<s&&(s=r)}return s}}const Gt=new Set([Z,Q,X,ee]);function Kt(e,t){if(14===e.type&&!h(e.callee)&&Gt.has(e.callee)){const n=e.arguments[0];if(4===n.type)return zt(n,t);if(14===n.type)return Kt(n,t)}return 0}function qt(e,t){let n=3;const o=Yt(e);if(o&&15===o.type){const{properties:e}=o;for(let o=0;o<e.length;o++){const{key:r,value:s}=e[o],i=zt(r,t);if(0===i)return i;let c;if(i<n&&(n=i),c=4===s.type?zt(s,t):14===s.type?Kt(s,t):0,0===c)return c;c<n&&(n=c)}}return n}function Yt(e){const t=e.codegenNode;if(13===t.type)return t.props}function Zt(e){const t=e.patchFlag;return t?parseInt(t,10):void 0}function Qt(e,{filename:t="",prefixIdentifiers:n=!1,hoistStatic:o=!1,cacheHandlers:r=!1,nodeTransforms:s=[],directiveTransforms:i={},transformHoist:a=null,isBuiltInComponent:p=l,isCustomElement:u=l,expressionPlugins:f=[],scopeId:d=null,slotted:m=!0,ssr:g=!1,inSSR:y=!1,ssrCssVars:v="",bindingMetadata:b=c,inline:x=!1,isTS:k=!1,onError:_=T,onWarn:$=E,compatConfig:w}){const O=t.replace(/\?.*$/,"").match(/([^/\\]+)\.\w+$/),C={selfName:O&&N(S(O[1])),prefixIdentifiers:n,hoistStatic:o,cacheHandlers:r,nodeTransforms:s,directiveTransforms:i,transformHoist:a,isBuiltInComponent:p,isCustomElement:u,expressionPlugins:f,scopeId:d,slotted:m,ssr:g,inSSR:y,ssrCssVars:v,bindingMetadata:b,inline:x,isTS:k,onError:_,onWarn:$,compatConfig:w,root:e,helpers:new Map,components:new Set,directives:new Set,hoists:[],imports:[],constantCache:new Map,temps:0,cached:0,identifiers:Object.create(null),scopes:{vFor:0,vSlot:0,vPre:0,vOnce:0},parent:null,currentNode:e,childIndex:0,inVOnce:!1,helper(e){const t=C.helpers.get(e)||0;return C.helpers.set(e,t+1),e},removeHelper(e){const t=C.helpers.get(e);if(t){const n=t-1;n?C.helpers.set(e,n):C.helpers.delete(e)}},helperString:e=>`_${de[C.helper(e)]}`,replaceNode(e){C.parent.children[C.childIndex]=C.currentNode=e},removeNode(e){const t=e?C.parent.children.indexOf(e):C.currentNode?C.childIndex:-1;e&&e!==C.currentNode?C.childIndex>t&&(C.childIndex--,C.onNodeRemoved()):(C.currentNode=null,C.onNodeRemoved()),C.parent.children.splice(t,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){h(e)&&(e=xe(e)),C.hoists.push(e);const t=xe(`_hoisted_${C.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>$e(C.cached++,e,t)};return C.filters=new Set,C}function Xt(e,t){const n=Qt(e,t);en(e,n),t.hoistStatic&&Ut(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(Wt(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&ut(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;e.codegenNode=ye(t,n(w),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function en(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let s=0;s<n.length;s++){const r=n[s](e,t);if(r&&(d(r)?o.push(...r):o.push(r)),!t.currentNode)return;e=t.currentNode}switch(e.type){case 3:t.ssr||t.helper(j);break;case 5:t.ssr||t.helper(q);break;case 9:for(let n=0;n<e.branches.length;n++)en(e.branches[n],t);break;case 10:case 11:case 1:case 0:!function(e,t){let n=0;const o=()=>{n--};for(;n<e.children.length;n++){const r=e.children[n];h(r)||(t.parent=e,t.childIndex=n,t.onNodeRemoved=o,en(r,t))}}(e,t)}t.currentNode=e;let r=o.length;for(;r--;)o[r]()}function tn(e,t){const n=h(e)?t=>t===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(et))return;const s=[];for(let i=0;i<r.length;i++){const c=r[i];if(7===c.type&&n(c.name)){r.splice(i,1),i--;const n=t(e,c,o);n&&s.push(n)}}return s}}}function nn(e,t={}){const n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:o=!1,filename:r="template.vue.html",scopeId:s=null,optimizeImports:i=!1,runtimeGlobalName:c="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:a="vue/server-renderer",ssr:p=!1,isTS:u=!1,inSSR:f=!1}){const d={mode:t,prefixIdentifiers:n,sourceMap:o,filename:r,scopeId:s,optimizeImports:i,runtimeGlobalName:c,runtimeModuleName:l,ssrRuntimeModuleName:a,ssr:p,isTS:u,inSSR:f,source:e.loc.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${de[e]}`,push(e,t){d.code+=e},indent(){h(++d.indentLevel)},deindent(e=!1){e?--d.indentLevel:h(--d.indentLevel)},newline(){h(d.indentLevel)}};function h(e){d.push("\n"+" ".repeat(e))}return d}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:s,indent:i,deindent:c,newline:l,ssr:a}=n,p=e.helpers.length>0,u=!s&&"module"!==o;!function(e,t){const{push:n,newline:o,runtimeGlobalName:r}=t,s=r,i=e=>`${de[e]}: _${de[e]}`;if(e.helpers.length>0&&(n(`const _Vue = ${s}\n`),e.hoists.length)){n(`const { ${[L,B,j,A,F].filter((t=>e.helpers.includes(t))).map(i).join(", ")} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o}=t;o();for(let r=0;r<e.length;r++){const s=e[r];s&&(n(`const _hoisted_${r+1} = `),cn(s,t),o())}t.pure=!1})(e.hoists,t),o(),n("return ")}(e,n);if(r(`function ${a?"ssrRender":"render"}(${(a?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ")}) {`),i(),u&&(r("with (_ctx) {"),i(),p&&(r(`const { ${e.helpers.map((e=>`${de[e]}: _${de[e]}`)).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(on(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(on(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),on(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?cn(e.codegenNode,n):r("null"),u&&(c(),r("}")),c(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function on(e,t,{helper:n,push:o,newline:r,isTS:s}){const i=n("filter"===t?W:"component"===t?D:U);for(let c=0;c<e.length;c++){let n=e[c];const l=n.endsWith("__self");l&&(n=n.slice(0,-6)),o(`const ${lt(n,t)} = ${i}(${JSON.stringify(n)}${l?", true":""})${s?"!":""}`),c<e.length-1&&r()}}function rn(e,t){const n=e.length>3||!1;t.push("["),n&&t.indent(),sn(e,t,n),n&&t.deindent(),t.push("]")}function sn(e,t,n=!1,o=!0){const{push:r,newline:s}=t;for(let i=0;i<e.length;i++){const c=e[i];h(c)?r(c):d(c)?rn(c,t):cn(c,t),i<e.length-1&&(n?(o&&r(","),s()):o&&r(", "))}}function cn(e,t){if(h(e))t.push(e);else if(m(e))t.push(t.helper(e));else switch(e.type){case 1:case 9:case 11:case 12:cn(e.codegenNode,t);break;case 2:!function(e,t){t.push(JSON.stringify(e.content),e)}(e,t);break;case 4:ln(e,t);break;case 5:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n("/*#__PURE__*/");n(`${o(q)}(`),cn(e.content,t),n(")")}(e,t);break;case 8:an(e,t);break;case 3:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n("/*#__PURE__*/");n(`${o(j)}(${JSON.stringify(e.content)})`,e)}(e,t);break;case 13:!function(e,t){const{push:n,helper:o,pure:r}=t,{tag:s,props:i,children:c,patchFlag:l,dynamicProps:a,directives:p,isBlock:u,disableTracking:f,isComponent:d}=e;p&&n(o(J)+"(");u&&n(`(${o(P)}(${f?"true":""}), `);r&&n("/*#__PURE__*/");const h=u?rt(t.inSSR,d):ot(t.inSSR,d);n(o(h)+"(",e),sn(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map((e=>e||"null"))}([s,i,c,l,a]),t),n(")"),u&&n(")");p&&(n(", "),cn(p,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:r}=t,s=h(e.callee)?e.callee:o(e.callee);r&&n("/*#__PURE__*/");n(s+"(",e),sn(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:s}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const c=i.length>1||!1;n(c?"{":"{ "),c&&o();for(let l=0;l<i.length;l++){const{key:e,value:o}=i[l];pn(e,t),n(": "),cn(o,t),l<i.length-1&&(n(","),s())}c&&r(),n(c?"}":" }")}(e,t);break;case 17:!function(e,t){rn(e.elements,t)}(e,t);break;case 18:!function(e,t){const{push:n,indent:o,deindent:r}=t,{params:s,returns:i,body:c,newline:l,isSlot:a}=e;a&&n(`_${de[le]}(`);n("(",e),d(s)?sn(s,t):s&&cn(s,t);n(") => "),(l||c)&&(n("{"),o());i?(l&&n("return "),d(i)?rn(i,t):cn(i,t)):c&&cn(c,t);(l||c)&&(r(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:s}=e,{push:i,indent:c,deindent:l,newline:a}=t;if(4===n.type){const e=!je(n.content);e&&i("("),ln(n,t),e&&i(")")}else i("("),cn(n,t),i(")");s&&c(),t.indentLevel++,s||i(" "),i("? "),cn(o,t),t.indentLevel--,s&&a(),s||i(" "),i(": ");const p=19===r.type;p||t.indentLevel++;cn(r,t),p||t.indentLevel--;s&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:s,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(`${o(se)}(-1),`),i());n(`_cache[${e.index}] = `),cn(e.value,t),e.isVNode&&(n(","),i(),n(`${o(se)}(1),`),i(),n(`_cache[${e.index}]`),s());n(")")}(e,t);break;case 21:sn(e.body,t,!0,!1)}}function ln(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function an(e,t){for(let n=0;n<e.children.length;n++){const o=e.children[n];h(o)?t.push(o):cn(o,t)}}function pn(e,t){const{push:n}=t;if(8===e.type)n("["),an(e,t),n("]");else if(e.isStatic){n(je(e.content)?e.content:JSON.stringify(e.content),e)}else n(`[${e.content}]`,e)}function un(e,t,n=!1,o=[],r=Object.create(null)){}function fn(e,t,n){return!1}function dn(e,t){if(e&&("ObjectProperty"===e.type||"ArrayPattern"===e.type)){let e=t.length;for(;e--;){const n=t[e];if("AssignmentExpression"===n.type)return!0;if("ObjectProperty"!==n.type&&!n.type.endsWith("Pattern"))break}}return!1}function hn(e,t){for(const n of e.params)for(const e of gn(n))t(e)}function mn(e,t){for(const n of e.body)if("VariableDeclaration"===n.type){if(n.declare)continue;for(const e of n.declarations)for(const n of gn(e.id))t(n)}else if("FunctionDeclaration"===n.type||"ClassDeclaration"===n.type){if(n.declare||!n.id)continue;t(n.id)}}function gn(e,t=[]){switch(e.type){case"Identifier":t.push(e);break;case"MemberExpression":let n=e;for(;"MemberExpression"===n.type;)n=n.object;t.push(n);break;case"ObjectPattern":for(const o of e.properties)gn("RestElement"===o.type?o.argument:o.value,t);break;case"ArrayPattern":e.elements.forEach((e=>{e&&gn(e,t)}));break;case"RestElement":gn(e.argument,t);break;case"AssignmentPattern":gn(e.left,t)}return t}const yn=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),vn=e=>e&&("ObjectProperty"===e.type||"ObjectMethod"===e.type)&&!e.computed,bn=(e,t)=>vn(t)&&t.key===e,Sn=(e,t)=>{if(5===e.type)e.content=xn(e.content,t);else if(1===e.type)for(let n=0;n<e.props.length;n++){const o=e.props[n];if(7===o.type&&"for"!==o.name){const e=o.exp,n=o.arg;!e||4!==e.type||"on"===o.name&&n||(o.exp=xn(e,t,"slot"===o.name)),n&&4===n.type&&!n.isStatic&&(o.arg=xn(n,t))}}};function xn(e,t,n=!1,o=!1,r=Object.create(t.identifiers)){return e}const kn=tn(/^(if|else|else-if)$/,((e,t,n)=>Nn(e,t,n,((e,t,o)=>{const r=n.parent.children;let s=r.indexOf(e),i=0;for(;s-- >=0;){const e=r[s];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=Tn(t,i,n);else{const o=function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode);o.alternate=Tn(t,i+e.branches.length-1,n)}}}))));function Nn(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){t.exp=xe("true",!1,t.exp?t.exp.loc:e.loc)}if("if"===t.name){const r=_n(e,t),s={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(s),o)return o(s,r,!0)}else{const r=n.parent.children;let s=r.indexOf(e);for(;s-- >=-1;){const i=r[s];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){n.removeNode();const r=_n(e,t);i.branches.push(r);const s=o&&o(i,r,!1);en(r,n),s&&s(),n.currentNode=null}break}n.removeNode(i)}}}function _n(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||qe(e,"for")?[e]:e.children,userKey:Ye(e,"key")}}function Tn(e,t,n){return e.condition?Ee(e.condition,En(e,t,n),_e(n.helper(j),['""',"true"])):En(e,t,n)}function En(e,t,n){const{helper:o}=n,r=Se("key",xe(`${t}`,!1,me,2)),{children:s}=e,i=s[0];if(1!==s.length||1!==i.type){if(1===s.length&&11===i.type){const e=i.codegenNode;return ct(e,r,n),e}{let t=64;return ye(n,o(w),be([r]),s,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=i.codegenNode,t=pt(e);return 13===t.type&&ut(t,n),ct(t,r,n),e}}const $n=tn("for",((e,t,n)=>{const{helper:o,removeHelper:r}=n;return wn(e,t,n,(t=>{const s=_e(o(z),[t.source]),i=tt(e),c=qe(e,"memo"),l=Ye(e,"key"),a=l&&(6===l.type?xe(l.value.content,!0):l.exp),p=l?Se("key",a):null,u=4===t.source.type&&t.source.constType>0,f=u?64:l?128:256;return t.codegenNode=ye(n,o(w),void 0,s,f+"",void 0,void 0,!0,!u,!1,e.loc),()=>{let l;const{children:f}=t,d=1!==f.length||1!==f[0].type,h=nt(e)?e:i&&1===e.children.length&&nt(e.children[0])?e.children[0]:null;if(h?(l=h.codegenNode,i&&p&&ct(l,p,n)):d?l=ye(n,o(w),p?be([p]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(l=f[0].codegenNode,i&&p&&ct(l,p,n),l.isBlock!==!u&&(l.isBlock?(r(P),r(rt(n.inSSR,l.isComponent))):r(ot(n.inSSR,l.isComponent))),l.isBlock=!u,l.isBlock?(o(P),o(rt(n.inSSR,l.isComponent))):o(ot(n.inSSR,l.isComponent))),c){const e=Te(Rn(t.parseResult,[xe("_cached")]));e.body=we([Ne(["const _memo = (",c.exp,")"]),Ne(["if (_cached",...a?[" && _cached.key === ",a]:[],` && ${n.helperString(fe)}(_cached, _memo)) return _cached`]),Ne(["const _item = ",l]),xe("_item.memo = _memo"),xe("return _item")]),s.arguments.push(e,xe("_cache"),xe(String(n.cached++)))}else s.arguments.push(Te(Rn(t.parseResult),l,!0))}}))}));function wn(e,t,n,o){if(!t.exp)return;const r=In(t.exp);if(!r)return;const{scopes:s}=n,{source:i,value:c,key:l,index:a}=r,p={type:11,loc:t.loc,source:i,valueAlias:c,keyAlias:l,objectIndexAlias:a,parseResult:r,children:tt(e)?e.children:[e]};n.replaceNode(p),s.vFor++;const u=o&&o(p);return()=>{s.vFor--,u&&u()}}const On=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,Cn=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,Mn=/^\(|\)$/g;function In(e,t){const n=e.loc,o=e.content,r=o.match(On);if(!r)return;const[,s,i]=r,c={source:Pn(n,i.trim(),o.indexOf(i,s.length)),value:void 0,key:void 0,index:void 0};let l=s.trim().replace(Mn,"").trim();const a=s.indexOf(l),p=l.match(Cn);if(p){l=l.replace(Cn,"").trim();const e=p[1].trim();let t;if(e&&(t=o.indexOf(e,a+l.length),c.key=Pn(n,e,t)),p[2]){const r=p[2].trim();r&&(c.index=Pn(n,r,o.indexOf(r,c.key?t+e.length:a+l.length)))}}return l&&(c.value=Pn(n,l,a)),c}function Pn(e,t,n){return xe(t,!1,Je(e,n,t.length))}function Rn({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map(((e,t)=>e||xe("_".repeat(t+1),!1)))}([e,t,n,...o])}const Vn=xe("undefined",!1),Ln=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=qe(e,"slot");if(n)return t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},Bn=(e,t)=>{let n;if(tt(e)&&e.props.some(et)&&(n=qe(e,"for"))){const e=n.parseResult=In(n.exp);if(e){const{value:n,key:o,index:r}=e,{addIdentifiers:s,removeIdentifiers:i}=t;return n&&s(n),o&&s(o),r&&s(r),()=>{n&&i(n),o&&i(o),r&&i(r)}}}},jn=(e,t,n)=>Te(e,t,!1,!0,t.length?t[0].loc:n);function An(e,t,n=jn){t.helper(le);const{children:o,loc:r}=e,s=[],i=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const l=qe(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!Re(e)&&(c=!0),s.push(Se(e||xe("default",!0),n(t,o,r)))}let a=!1,p=!1;const u=[],f=new Set;for(let m=0;m<o.length;m++){const e=o[m];let r;if(!tt(e)||!(r=qe(e,"slot",!0))){3!==e.type&&u.push(e);continue}if(l)break;a=!0;const{children:d,loc:h}=e,{arg:g=xe("default",!0),exp:y}=r;let v;Re(g)?v=g?g.content:"default":c=!0;const b=n(y,d,h);let S,x,k;if(S=qe(e,"if"))c=!0,i.push(Ee(S.exp,Fn(g,b),Vn));else if(x=qe(e,/^else(-if)?$/,!0)){let e,t=m;for(;t--&&(e=o[t],3===e.type););if(e&&tt(e)&&qe(e,"if")){o.splice(m,1),m--;let e=i[i.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=x.exp?Ee(x.exp,Fn(g,b),Vn):Fn(g,b)}}else if(k=qe(e,"for")){c=!0;const e=k.parseResult||In(k.exp);e&&i.push(_e(t.helper(z),[e.source,Te(Rn(e),Fn(g,b),!0)]))}else{if(v){if(f.has(v))continue;f.add(v),"default"===v&&(p=!0)}s.push(Se(g,b))}}if(!l){const e=(e,o)=>{const s=n(e,o,r);return t.compatConfig&&(s.isNonScopedSlot=!0),Se("default",s)};a?u.length&&u.some((e=>Hn(e)))&&(p||s.push(e(void 0,u))):s.push(e(void 0,o))}const d=c?2:Dn(e.children)?3:1;let h=be(s.concat(Se("_",xe(d+"",!1))),r);return i.length&&(h=_e(t.helper(K),[h,ve(i)])),{slots:h,hasDynamicSlots:c}}function Fn(e,t){return be([Se("name",e),Se("fn",t)])}function Dn(e){for(let t=0;t<e.length;t++){const n=e[t];switch(n.type){case 1:if(2===n.tagType||Dn(n.children))return!0;break;case 9:if(Dn(n.branches))return!0;break;case 10:case 11:if(Dn(n.children))return!0}}return!1}function Hn(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():Hn(e.content))}const Un=new WeakMap,Wn=(e,t)=>function(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,r=1===e.tagType;let s=r?Jn(e,t):`"${n}"`;let i,c,l,a,p,u,f=0,d=g(s)&&s.callee===H||s===O||s===C||!r&&("svg"===n||"foreignObject"===n);if(o.length>0){const n=zn(e,t);i=n.props,f=n.patchFlag,p=n.dynamicPropNames;const o=n.directives;u=o&&o.length?ve(o.map((e=>function(e,t){const n=[],o=Un.get(e);o?n.push(t.helperString(o)):(t.helper(U),t.directives.add(e.name),n.push(lt(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=xe("true",!1,r);n.push(be(e.modifiers.map((e=>Se(e,t))),r))}return ve(n,e.loc)}(e,t)))):void 0,n.shouldUseBlock&&(d=!0)}if(e.children.length>0){s===M&&(d=!0,f|=1024);if(r&&s!==O&&s!==M){const{slots:n,hasDynamicSlots:o}=An(e,t);c=n,o&&(f|=1024)}else if(1===e.children.length&&s!==O){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===zt(n,t)&&(f|=1),c=r||2===o?n:e.children}else c=e.children}0!==f&&(l=String(f),p&&p.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n<o;n++)t+=JSON.stringify(e[n]),n<o-1&&(t+=", ");return t+"]"}(p))),e.codegenNode=ye(t,s,i,c,l,a,u,!!d,!1,r,e.loc)};function Jn(e,t,n=!1){let{tag:o}=e;const r=qn(o),s=Ye(e,"is");if(s)if(r||ht("COMPILER_IS_ON_ELEMENT",t)){const e=6===s.type?s.value&&xe(s.value.content,!0):s.exp;if(e)return _e(t.helper(H),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(o=s.value.content.slice(4));const i=!r&&qe(e,"is");if(i&&i.exp)return _e(t.helper(H),[i.exp]);const c=Le(o)||t.isBuiltInComponent(o);return c?(n||t.helper(c),c):(t.helper(D),t.components.add(o),lt(o,"component"))}function zn(e,t,n=e.props,o=!1){const{tag:r,loc:s,children:i}=e,c=1===e.tagType;let l=[];const a=[],p=[],f=i.length>0;let d=!1,h=0,g=!1,v=!1,b=!1,S=!1,x=!1,k=!1;const N=[],_=({key:e,value:n})=>{if(Re(e)){const o=e.content,r=u(o);if(c||!r||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||y(o)||(S=!0),r&&y(o)&&(k=!0),20===n.type||(4===n.type||8===n.type)&&zt(n,t)>0)return;"ref"===o?g=!0:"class"===o?v=!0:"style"===o?b=!0:"key"===o||N.includes(o)||N.push(o),!c||"class"!==o&&"style"!==o||N.includes(o)||N.push(o)}else x=!0};for(let u=0;u<n.length;u++){const i=n[u];if(6===i.type){const{loc:e,name:n,value:o}=i;let s=!0;if("ref"===n&&(g=!0,t.scopes.vFor>0&&l.push(Se(xe("ref_for",!0),xe("true")))),"is"===n&&(qn(r)||o&&o.content.startsWith("vue:")||ht("COMPILER_IS_ON_ELEMENT",t)))continue;l.push(Se(xe(n,!0,Je(e,0,n.length)),xe(o?o.content:"",s,o?o.loc:e)))}else{const{name:n,arg:c,exp:u,loc:h}=i,g="bind"===n,y="on"===n;if("slot"===n)continue;if("once"===n||"memo"===n)continue;if("is"===n||g&&Ze(c,"is")&&(qn(r)||ht("COMPILER_IS_ON_ELEMENT",t)))continue;if(y&&o)continue;if((g&&Ze(c,"key")||y&&f&&Ze(c,"vue:before-update"))&&(d=!0),g&&Ze(c,"ref")&&t.scopes.vFor>0&&l.push(Se(xe("ref_for",!0),xe("true"))),!c&&(g||y)){if(x=!0,u)if(l.length&&(a.push(be(Gn(l),s)),l=[]),g){if(ht("COMPILER_V_BIND_OBJECT_ORDER",t)){a.unshift(u);continue}a.push(u)}else a.push({type:14,loc:h,callee:t.helper(te),arguments:[u]});continue}const v=t.directiveTransforms[n];if(v){const{props:n,needRuntime:r}=v(i,e,t);!o&&n.forEach(_),l.push(...n),r&&(p.push(i),m(r)&&Un.set(i,r))}else p.push(i),f&&(d=!0)}}let T;if(a.length?(l.length&&a.push(be(Gn(l),s)),T=a.length>1?_e(t.helper(Y),a,s):a[0]):l.length&&(T=be(Gn(l),s)),x?h|=16:(v&&!c&&(h|=2),b&&!c&&(h|=4),N.length&&(h|=8),S&&(h|=32)),d||0!==h&&32!==h||!(g||k||p.length>0)||(h|=512),!t.inSSR&&T)switch(T.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t<T.properties.length;t++){const r=T.properties[t].key;Re(r)?"class"===r.content?e=t:"style"===r.content&&(n=t):r.isHandlerKey||(o=!0)}const r=T.properties[e],s=T.properties[n];o?T=_e(t.helper(X),[T]):(r&&!Re(r.value)&&(r.value=_e(t.helper(Z),[r.value])),!s||Re(s.value)||!b&&17!==s.value.type||(s.value=_e(t.helper(Q),[s.value])));break;case 14:break;default:T=_e(t.helper(X),[_e(t.helper(ee),[T])])}return{props:T,directives:p,patchFlag:h,dynamicPropNames:N,shouldUseBlock:d}}function Gn(e){const t=new Map,n=[];for(let o=0;o<e.length;o++){const r=e[o];if(8===r.key.type||!r.key.isStatic){n.push(r);continue}const s=r.key.content,i=t.get(s);i?("style"===s||"class"===s||u(s))&&Kn(i,r):(t.set(s,r),n.push(r))}return n}function Kn(e,t){17===e.value.type?e.value.elements.push(t.value):e.value=ve([e.value,t.value],e.loc)}function qn(e){return"component"===e||"Component"===e}const Yn=(e,t)=>{if(nt(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:s}=Zn(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let c=2;s&&(i[2]=s,c=3),n.length&&(i[3]=Te([],n,!1,!1,o),c=4),t.scopeId&&!t.slotted&&(c=5),i.splice(c),e.codegenNode=_e(t.helper(G),i,o)}};function Zn(e,t){let n,o='"default"';const r=[];for(let s=0;s<e.props.length;s++){const t=e.props[s];6===t.type?t.value&&("name"===t.name?o=JSON.stringify(t.value.content):(t.name=S(t.name),r.push(t))):"bind"===t.name&&Ze(t.arg,"name")?t.exp&&(o=t.exp):("bind"===t.name&&t.arg&&Re(t.arg)&&(t.arg.content=S(t.arg.content)),r.push(t))}if(r.length>0){const{props:o,directives:s}=zn(e,t,r);n=o}return{slotName:o,slotProps:n}}const Qn=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,Xn=(e,t,n,o)=>{const{loc:r,modifiers:s,arg:i}=e;let c;if(4===i.type)if(i.isStatic){let e=i.content;e.startsWith("vue:")&&(e=`vnode-${e.slice(4)}`),c=xe(_(S(e)),!0,i.loc)}else c=Ne([`${n.helperString(re)}(`,i,")"]);else c=i,c.children.unshift(`${n.helperString(re)}(`),c.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let a=n.cacheHandlers&&!l&&!n.inVOnce;if(l){const e=We(l.content),t=!(e||Qn.test(l.content)),n=l.content.includes(";");(t||a&&e)&&(l=Ne([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let p={props:[Se(c,l||xe("() => {}",!1,r))]};return o&&(p=o(p)),a&&(p.props[0].value=n.cache(p.props[0].value)),p.props.forEach((e=>e.key.isHandlerKey=!0)),p},eo=(e,t,n)=>{const{exp:o,modifiers:r,loc:s}=e,i=e.arg;return 4!==i.type?(i.children.unshift("("),i.children.push(') || ""')):i.isStatic||(i.content=`${i.content} || ""`),r.includes("camel")&&(4===i.type?i.content=i.isStatic?S(i.content):`${n.helperString(ne)}(${i.content})`:(i.children.unshift(`${n.helperString(ne)}(`),i.children.push(")"))),n.inSSR||(r.includes("prop")&&to(i,"."),r.includes("attr")&&to(i,"^")),!o||4===o.type&&!o.content.trim()?{props:[Se(i,xe("",!0,s))]}:{props:[Se(i,o)]}},to=(e,t)=>{4===e.type?e.content=e.isStatic?t+e.content:`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},no=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o,r=!1;for(let e=0;e<n.length;e++){const t=n[e];if(Xe(t)){r=!0;for(let r=e+1;r<n.length;r++){const s=n[r];if(!Xe(s)){o=void 0;break}o||(o=n[e]={type:8,loc:t.loc,children:[t]}),o.children.push(" + ",s),n.splice(r,1),r--}}}if(r&&(1!==n.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find((e=>7===e.type&&!t.directiveTransforms[e.name]))||"template"===e.tag)))for(let e=0;e<n.length;e++){const o=n[e];if(Xe(o)||8===o.type){const r=[];2===o.type&&" "===o.content||r.push(o),t.ssr||0!==zt(o,t)||r.push("1"),n[e]={type:12,content:o,loc:o.loc,codegenNode:_e(t.helper(A),r)}}}}},oo=new WeakSet,ro=(e,t)=>{if(1===e.type&&qe(e,"once",!0)){if(oo.has(e)||t.inVOnce)return;return oo.add(e),t.inVOnce=!0,t.helper(se),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},so=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return io();const s=o.loc.source,i=4===o.type?o.content:s;if(!i.trim()||!We(i))return io();const c=r||xe("modelValue",!0),l=r?Re(r)?`onUpdate:${r.content}`:Ne(['"onUpdate:" + ',r]):"onUpdate:modelValue";let a;a=Ne([`${n.isTS?"($event: any)":"$event"} => ((`,o,") = $event)"]);const p=[Se(c,e.exp),Se(l,a)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map((e=>(je(e)?e:JSON.stringify(e))+": true")).join(", "),n=r?Re(r)?`${r.content}Modifiers`:Ne([r,' + "Modifiers"']):"modelModifiers";p.push(Se(n,xe(`{ ${t} }`,!1,e.loc,2)))}return io(p)};function io(e=[]){return{props:e}}const co=/[\w).+\-_$\]]/,lo=(e,t)=>{ht("COMPILER_FILTER",t)&&(5===e.type&&ao(e.content,t),1===e.type&&e.props.forEach((e=>{7===e.type&&"for"!==e.name&&e.exp&&ao(e.exp,t)})))};function ao(e,t){if(4===e.type)po(e,t);else for(let n=0;n<e.children.length;n++){const o=e.children[n];"object"==typeof o&&(4===o.type?po(o,t):8===o.type?ao(e,t):5===o.type&&ao(o.content,t))}}function po(e,t){const n=e.content;let o,r,s,i,c=!1,l=!1,a=!1,p=!1,u=0,f=0,d=0,h=0,m=[];for(s=0;s<n.length;s++)if(r=o,o=n.charCodeAt(s),c)39===o&&92!==r&&(c=!1);else if(l)34===o&&92!==r&&(l=!1);else if(a)96===o&&92!==r&&(a=!1);else if(p)47===o&&92!==r&&(p=!1);else if(124!==o||124===n.charCodeAt(s+1)||124===n.charCodeAt(s-1)||u||f||d){switch(o){case 34:l=!0;break;case 39:c=!0;break;case 96:a=!0;break;case 40:d++;break;case 41:d--;break;case 91:f++;break;case 93:f--;break;case 123:u++;break;case 125:u--}if(47===o){let e,t=s-1;for(;t>=0&&(e=n.charAt(t)," "===e);t--);e&&co.test(e)||(p=!0)}}else void 0===i?(h=s+1,i=n.slice(0,s).trim()):g();function g(){m.push(n.slice(h,s).trim()),h=s+1}if(void 0===i?i=n.slice(0,s).trim():0!==h&&g(),m.length){for(s=0;s<m.length;s++)i=uo(i,m[s],t);e.content=i}}function uo(e,t,n){n.helper(W);const o=t.indexOf("(");if(o<0)return n.filters.add(t),`${lt(t,"filter")}(${e})`;{const r=t.slice(0,o),s=t.slice(o+1);return n.filters.add(r),`${lt(r,"filter")}(${e}${")"!==s?","+s:s}`}}const fo=new WeakSet,ho=(e,t)=>{if(1===e.type){const n=qe(e,"memo");if(!n||fo.has(e))return;return fo.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&ut(o,t),e.codegenNode=_e(t.helper(ue),[n.exp,Te(void 0,o),"_cache",String(t.cached++)]))}}};function mo(e){return[[ro,kn,ho,$n,lo,Yn,Wn,Ln,no],{on:Xn,bind:eo,model:so}]}function go(e,t={}){const n=t.onError||T,o="module"===t.mode;!0===t.prefixIdentifiers?n($(46)):o&&n($(47));t.cacheHandlers&&n($(48)),t.scopeId&&!o&&n($(49));const r=h(e)?St(e,t):e,[s,i]=mo();return Xt(r,f({},t,{prefixIdentifiers:false,nodeTransforms:[...s,...t.nodeTransforms||[]],directiveTransforms:f({},i,t.directiveTransforms||{})})),nn(r,f({},t,{prefixIdentifiers:false}))}const yo=()=>({props:[]}),vo=Symbol(""),bo=Symbol(""),So=Symbol(""),xo=Symbol(""),ko=Symbol(""),No=Symbol(""),_o=Symbol(""),To=Symbol(""),Eo=Symbol(""),$o=Symbol("");let wo;he({[vo]:"vModelRadio",[bo]:"vModelCheckbox",[So]:"vModelText",[xo]:"vModelSelect",[ko]:"vModelDynamic",[No]:"withModifiers",[_o]:"withKeys",[To]:"vShow",[Eo]:"Transition",[$o]:"TransitionGroup"});const Oo=e("style,iframe,script,noscript",!0),Co={isVoidTag:i,isNativeTag:e=>r(e)||s(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return wo||(wo=document.createElement("div")),t?(wo.innerHTML=`<div foo="${e.replace(/"/g,"&quot;")}">`,wo.children[0].getAttribute("foo")):(wo.innerHTML=e,wo.textContent)},isBuiltInComponent:e=>Ve(e,"Transition")?Eo:Ve(e,"TransitionGroup")?$o:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some((e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content)))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if(Oo(e))return 2}return 0}},Mo=e=>{1===e.type&&e.props.forEach(((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:xe("style",!0,t.loc),exp:Io(t.value.content,t.loc),modifiers:[],loc:t.loc})}))},Io=(e,t)=>{const r=function(e){const t={};return e.split(n).forEach((e=>{if(e){const n=e.split(o);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}(e);return xe(JSON.stringify(r),!1,t,3)};function Po(e,t){return $(e,t)}const Ro=e("passive,once,capture"),Vo=e("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),Lo=e("left,right"),Bo=e("onkeyup,onkeydown,onkeypress",!0),jo=(e,t)=>Re(e)&&"onclick"===e.content.toLowerCase()?xe(t,!0):4!==e.type?Ne(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,Ao=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||t.removeNode()},Fo=[Mo],Do={cloak:yo,html:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Se(xe("innerHTML",!0,r),o||xe("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[Se(xe("textContent",!0),o?_e(n.helperString(q),[o],r):xe("",!0))]}},model:(e,t,n)=>{const o=so(e,t,n);if(!o.props.length||1===t.tagType)return o;const{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let e=So,i=!1;if("input"===r||s){const n=Ye(t,"type");if(n){if(7===n.type)e=ko;else if(n.value)switch(n.value.content){case"radio":e=vo;break;case"checkbox":e=bo;break;case"file":i=!0}}else Qe(t)&&(e=ko)}else"select"===r&&(e=xo);i||(o.needRuntime=n.helper(e))}return o.props=o.props.filter((e=>!(4===e.key.type&&"modelValue"===e.key.content))),o},on:(e,t,n)=>Xn(e,0,n,(t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:r,value:s}=t.props[0];const{keyModifiers:i,nonKeyModifiers:c,eventOptionModifiers:l}=((e,t,n,o)=>{const r=[],s=[],i=[];for(let c=0;c<t.length;c++){const o=t[c];"native"===o&&mt("COMPILER_V_ON_NATIVE",n)||Ro(o)?i.push(o):Lo(o)?Re(e)?Bo(e.content)?r.push(o):s.push(o):(r.push(o),s.push(o)):Vo(o)?s.push(o):r.push(o)}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:i}})(r,o,n);if(c.includes("right")&&(r=jo(r,"onContextmenu")),c.includes("middle")&&(r=jo(r,"onMouseup")),c.length&&(s=_e(n.helper(No),[s,JSON.stringify(c)])),!i.length||Re(r)&&!Bo(r.content)||(s=_e(n.helper(_o),[s,JSON.stringify(i)])),l.length){const e=l.map(N).join("");r=Re(r)?xe(`${r.content}${e}`,!0):Ne(["(",r,`) + "${e}"`])}return{props:[Se(r,s)]}})),show:(e,t,n)=>({props:[],needRuntime:n.helper(To)})};function Ho(e,t={}){return go(e,f({},Co,t,{nodeTransforms:[Ao,...Fo,...t.nodeTransforms||[]],directiveTransforms:f({},Do,t.directiveTransforms||{}),transformHoist:null}))}function Uo(e,t={}){return St(e,f({},Co,t))}export{I as BASE_TRANSITION,ne as CAMELIZE,oe as CAPITALIZE,R as CREATE_BLOCK,j as CREATE_COMMENT,V as CREATE_ELEMENT_BLOCK,B as CREATE_ELEMENT_VNODE,K as CREATE_SLOTS,F as CREATE_STATIC,A as CREATE_TEXT,L as CREATE_VNODE,Do as DOMDirectiveTransforms,Fo as DOMNodeTransforms,w as FRAGMENT,ee as GUARD_REACTIVE_PROPS,fe as IS_MEMO_SAME,pe as IS_REF,M as KEEP_ALIVE,Y as MERGE_PROPS,Z as NORMALIZE_CLASS,X as NORMALIZE_PROPS,Q as NORMALIZE_STYLE,P as OPEN_BLOCK,ce as POP_SCOPE_ID,ie as PUSH_SCOPE_ID,z as RENDER_LIST,G as RENDER_SLOT,D as RESOLVE_COMPONENT,U as RESOLVE_DIRECTIVE,H as RESOLVE_DYNAMIC_COMPONENT,W as RESOLVE_FILTER,se as SET_BLOCK_TRACKING,C as SUSPENSE,O as TELEPORT,q as TO_DISPLAY_STRING,te as TO_HANDLERS,re as TO_HANDLER_KEY,Eo as TRANSITION,$o as TRANSITION_GROUP,ae as UNREF,bo as V_MODEL_CHECKBOX,ko as V_MODEL_DYNAMIC,vo as V_MODEL_RADIO,xo as V_MODEL_SELECT,So as V_MODEL_TEXT,_o as V_ON_WITH_KEYS,No as V_ON_WITH_MODIFIERS,To as V_SHOW,le as WITH_CTX,J as WITH_DIRECTIVES,ue as WITH_MEMO,ze as advancePositionWithClone,Ge as advancePositionWithMutation,Ke as assert,go as baseCompile,St as baseParse,zn as buildProps,An as buildSlots,mt as checkCompatEnabled,Ho as compile,ve as createArrayExpression,Me as createAssignmentExpression,we as createBlockStatement,$e as createCacheExpression,_e as createCallExpression,$ as createCompilerError,Ne as createCompoundExpression,Ee as createConditionalExpression,Po as createDOMCompilerError,Rn as createForLoopParams,Te as createFunctionExpression,Ce as createIfStatement,ke as createInterpolation,be as createObjectExpression,Se as createObjectProperty,Pe as createReturnStatement,ge as createRoot,Ie as createSequenceExpression,xe as createSimpleExpression,tn as createStructuralDirectiveTransform,Oe as createTemplateLiteral,Qt as createTransformContext,ye as createVNodeCall,gn as extractIdentifiers,qe as findDir,Ye as findProp,nn as generate,t as generateCodeFrame,mo as getBaseTransformPreset,Je as getInnerRange,pt as getMemoedVNodeCall,rt as getVNodeBlockHelper,ot as getVNodeHelper,Qe as hasDynamicKeyVBind,at as hasScopeRef,de as helperNameMap,ct as injectProp,Ve as isBuiltInType,Le as isCoreComponent,yn as isFunctionType,dn as isInDestructureAssignment,We as isMemberExpression,He as isMemberExpressionBrowser,Ue as isMemberExpressionNode,fn as isReferencedIdentifier,je as isSimpleIdentifier,nt as isSlotOutlet,Ze as isStaticArgOf,Re as isStaticExp,vn as isStaticProperty,bn as isStaticPropertyKey,tt as isTemplateNode,Xe as isText,et as isVSlot,me as locStub,ut as makeBlock,yo as noopDirectiveTransform,Uo as parse,Co as parserOptions,xn as processExpression,wn as processFor,Nn as processIf,Zn as processSlotOutlet,he as registerRuntimeHelpers,Jn as resolveComponentType,lt as toValidAssetId,Ln as trackSlotScopes,Bn as trackVForSlotScopes,Xt as transform,eo as transformBind,Wn as transformElement,Sn as transformExpression,so as transformModel,Xn as transformOn,Mo as transformStyle,en as traverseNode,mn as walkBlockDeclarations,hn as walkFunctionParams,un as walkIdentifiers,gt as warnDeprecation};
@@ -126,8 +126,20 @@ var VueCompilerDOM = (function (exports) {
126
126
  'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +
127
127
  'text,textPath,title,tspan,unknown,use,view';
128
128
  const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';
129
+ /**
130
+ * Compiler only.
131
+ * Do NOT use in runtime code paths unless behind `true` flag.
132
+ */
129
133
  const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);
134
+ /**
135
+ * Compiler only.
136
+ * Do NOT use in runtime code paths unless behind `true` flag.
137
+ */
130
138
  const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);
139
+ /**
140
+ * Compiler only.
141
+ * Do NOT use in runtime code paths unless behind `true` flag.
142
+ */
131
143
  const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
132
144
 
133
145
  const EMPTY_OBJ = Object.freeze({})
@@ -147,7 +159,7 @@ var VueCompilerDOM = (function (exports) {
147
159
  const isObject = (val) => val !== null && typeof val === 'object';
148
160
  const isReservedProp = /*#__PURE__*/ makeMap(
149
161
  // the leading comma is intentional so empty string "" is also included
150
- ',key,ref,' +
162
+ ',key,ref,ref_for,ref_key,' +
151
163
  'onVnodeBeforeMount,onVnodeMounted,' +
152
164
  'onVnodeBeforeUpdate,onVnodeUpdated,' +
153
165
  'onVnodeBeforeUnmount,onVnodeUnmounted');
@@ -689,12 +701,12 @@ var VueCompilerDOM = (function (exports) {
689
701
  }
690
702
  else if (p.name === 'bind' &&
691
703
  (p.exp || allowEmpty) &&
692
- isBindKey(p.arg, name)) {
704
+ isStaticArgOf(p.arg, name)) {
693
705
  return p;
694
706
  }
695
707
  }
696
708
  }
697
- function isBindKey(arg, name) {
709
+ function isStaticArgOf(arg, name) {
698
710
  return !!(arg && isStaticExp(arg) && arg.content === name);
699
711
  }
700
712
  function hasDynamicKeyVBind(node) {
@@ -927,11 +939,6 @@ var VueCompilerDOM = (function (exports) {
927
939
  `data source.`,
928
940
  link: `https://v3.vuejs.org/guide/migration/v-if-v-for.html`
929
941
  },
930
- ["COMPILER_V_FOR_REF" /* COMPILER_V_FOR_REF */]: {
931
- message: `Ref usage on v-for no longer creates array ref values in Vue 3. ` +
932
- `Consider using function refs or refactor to avoid ref usage altogether.`,
933
- link: `https://v3.vuejs.org/guide/migration/array-refs.html`
934
- },
935
942
  ["COMPILER_NATIVE_TEMPLATE" /* COMPILER_NATIVE_TEMPLATE */]: {
936
943
  message: `<template> with no special directives will render as a native template ` +
937
944
  `element instead of its inner content in Vue 3.`
@@ -1449,7 +1456,7 @@ var VueCompilerDOM = (function (exports) {
1449
1456
  else if (
1450
1457
  // :is on plain element - only treat as component in compat mode
1451
1458
  p.name === 'bind' &&
1452
- isBindKey(p.arg, 'is') &&
1459
+ isStaticArgOf(p.arg, 'is') &&
1453
1460
  true &&
1454
1461
  checkCompatEnabled("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context, p.loc)) {
1455
1462
  return true;
@@ -1474,7 +1481,7 @@ var VueCompilerDOM = (function (exports) {
1474
1481
  }
1475
1482
  const attr = parseAttribute(context, attributeNames);
1476
1483
  // Trim whitespace between class
1477
- // https://github.com/vuejs/vue-next/issues/4251
1484
+ // https://github.com/vuejs/core/issues/4251
1478
1485
  if (attr.type === 6 /* ATTRIBUTE */ &&
1479
1486
  attr.value &&
1480
1487
  attr.name === 'class') {
@@ -1710,7 +1717,7 @@ var VueCompilerDOM = (function (exports) {
1710
1717
  advanceBy(context, length);
1711
1718
  if (mode === 2 /* RAWTEXT */ ||
1712
1719
  mode === 3 /* CDATA */ ||
1713
- rawText.indexOf('&') === -1) {
1720
+ !rawText.includes('&')) {
1714
1721
  return rawText;
1715
1722
  }
1716
1723
  else {
@@ -1907,6 +1914,11 @@ var VueCompilerDOM = (function (exports) {
1907
1914
  if (codegenNode.type !== 13 /* VNODE_CALL */) {
1908
1915
  return 0 /* NOT_CONSTANT */;
1909
1916
  }
1917
+ if (codegenNode.isBlock &&
1918
+ node.tag !== 'svg' &&
1919
+ node.tag !== 'foreignObject') {
1920
+ return 0 /* NOT_CONSTANT */;
1921
+ }
1910
1922
  const flag = getPatchFlag(codegenNode);
1911
1923
  if (!flag) {
1912
1924
  let returnType = 3 /* CAN_STRINGIFY */;
@@ -2043,7 +2055,7 @@ var VueCompilerDOM = (function (exports) {
2043
2055
  else if (value.type === 14 /* JS_CALL_EXPRESSION */) {
2044
2056
  // some helper calls can be hoisted,
2045
2057
  // such as the `normalizeProps` generated by the compiler for pre-normalize class,
2046
- // in this case we need to respect the ConstantType of the helper's argments
2058
+ // in this case we need to respect the ConstantType of the helper's arguments
2047
2059
  valueType = getConstantTypeOfHelperCall(value, context);
2048
2060
  }
2049
2061
  else {
@@ -3323,6 +3335,7 @@ var VueCompilerDOM = (function (exports) {
3323
3335
  const renderExp = createCallExpression(helper(RENDER_LIST), [
3324
3336
  forNode.source
3325
3337
  ]);
3338
+ const isTemplate = isTemplateNode(node);
3326
3339
  const memo = findDir(node, 'memo');
3327
3340
  const keyProp = findProp(node, `key`);
3328
3341
  const keyExp = keyProp &&
@@ -3342,7 +3355,6 @@ var VueCompilerDOM = (function (exports) {
3342
3355
  return () => {
3343
3356
  // finish the codegen now that all children have been traversed
3344
3357
  let childBlock;
3345
- const isTemplate = isTemplateNode(node);
3346
3358
  const { children } = forNode;
3347
3359
  // check <template v-for> key placement
3348
3360
  if (isTemplate) {
@@ -3829,10 +3841,7 @@ var VueCompilerDOM = (function (exports) {
3829
3841
  // updates inside get proper isSVG flag at runtime. (#639, #643)
3830
3842
  // This is technically web-specific, but splitting the logic out of core
3831
3843
  // leads to too much unnecessary complexity.
3832
- (tag === 'svg' ||
3833
- tag === 'foreignObject' ||
3834
- // #938: elements with dynamic keys should be forced into blocks
3835
- findProp(node, 'key', true)));
3844
+ (tag === 'svg' || tag === 'foreignObject'));
3836
3845
  // props
3837
3846
  if (props.length > 0) {
3838
3847
  const propsBuildResult = buildProps(node, context);
@@ -3844,6 +3853,9 @@ var VueCompilerDOM = (function (exports) {
3844
3853
  directives && directives.length
3845
3854
  ? createArrayExpression(directives.map(dir => buildDirectiveArgs(dir, context)))
3846
3855
  : undefined;
3856
+ if (propsBuildResult.shouldUseBlock) {
3857
+ shouldUseBlock = true;
3858
+ }
3847
3859
  }
3848
3860
  // children
3849
3861
  if (node.children.length > 0) {
@@ -3972,11 +3984,13 @@ var VueCompilerDOM = (function (exports) {
3972
3984
  return toValidAssetId(tag, `component`);
3973
3985
  }
3974
3986
  function buildProps(node, context, props = node.props, ssr = false) {
3975
- const { tag, loc: elementLoc } = node;
3987
+ const { tag, loc: elementLoc, children } = node;
3976
3988
  const isComponent = node.tagType === 1 /* COMPONENT */;
3977
3989
  let properties = [];
3978
3990
  const mergeArgs = [];
3979
3991
  const runtimeDirectives = [];
3992
+ const hasChildren = children.length > 0;
3993
+ let shouldUseBlock = false;
3980
3994
  // patchFlag analysis
3981
3995
  let patchFlag = 0;
3982
3996
  let hasRef = false;
@@ -4039,9 +4053,12 @@ var VueCompilerDOM = (function (exports) {
4039
4053
  const prop = props[i];
4040
4054
  if (prop.type === 6 /* ATTRIBUTE */) {
4041
4055
  const { loc, name, value } = prop;
4042
- let valueNode = createSimpleExpression(value ? value.content : '', true, value ? value.loc : loc);
4056
+ let isStatic = true;
4043
4057
  if (name === 'ref') {
4044
4058
  hasRef = true;
4059
+ if (context.scopes.vFor > 0) {
4060
+ properties.push(createObjectProperty(createSimpleExpression('ref_for', true), createSimpleExpression('true')));
4061
+ }
4045
4062
  }
4046
4063
  // skip is on <component>, or is="vue:xxx"
4047
4064
  if (name === 'is' &&
@@ -4050,7 +4067,7 @@ var VueCompilerDOM = (function (exports) {
4050
4067
  (isCompatEnabled("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context)))) {
4051
4068
  continue;
4052
4069
  }
4053
- properties.push(createObjectProperty(createSimpleExpression(name, true, getInnerRange(loc, 0, name.length)), valueNode));
4070
+ properties.push(createObjectProperty(createSimpleExpression(name, true, getInnerRange(loc, 0, name.length)), createSimpleExpression(value ? value.content : '', isStatic, value ? value.loc : loc)));
4054
4071
  }
4055
4072
  else {
4056
4073
  // directives
@@ -4071,7 +4088,7 @@ var VueCompilerDOM = (function (exports) {
4071
4088
  // skip v-is and :is on <component>
4072
4089
  if (name === 'is' ||
4073
4090
  (isVBind &&
4074
- isBindKey(arg, 'is') &&
4091
+ isStaticArgOf(arg, 'is') &&
4075
4092
  (isComponentTag(tag) ||
4076
4093
  (isCompatEnabled("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context))))) {
4077
4094
  continue;
@@ -4080,6 +4097,17 @@ var VueCompilerDOM = (function (exports) {
4080
4097
  if (isVOn && ssr) {
4081
4098
  continue;
4082
4099
  }
4100
+ if (
4101
+ // #938: elements with dynamic keys should be forced into blocks
4102
+ (isVBind && isStaticArgOf(arg, 'key')) ||
4103
+ // inline before-update hooks need to force block so that it is invoked
4104
+ // before children
4105
+ (isVOn && hasChildren && isStaticArgOf(arg, 'vue:before-update'))) {
4106
+ shouldUseBlock = true;
4107
+ }
4108
+ if (isVBind && isStaticArgOf(arg, 'ref') && context.scopes.vFor > 0) {
4109
+ properties.push(createObjectProperty(createSimpleExpression('ref_for', true), createSimpleExpression('true')));
4110
+ }
4083
4111
  // special case for v-bind and v-on with no argument
4084
4112
  if (!arg && (isVBind || isVOn)) {
4085
4113
  hasDynamicKeys = true;
@@ -4153,14 +4181,13 @@ var VueCompilerDOM = (function (exports) {
4153
4181
  else {
4154
4182
  // no built-in transform, this is a user custom directive.
4155
4183
  runtimeDirectives.push(prop);
4184
+ // custom dirs may use beforeUpdate so they need to force blocks
4185
+ // to ensure before-update gets called before children update
4186
+ if (hasChildren) {
4187
+ shouldUseBlock = true;
4188
+ }
4156
4189
  }
4157
4190
  }
4158
- if (prop.type === 6 /* ATTRIBUTE */ &&
4159
- prop.name === 'ref' &&
4160
- context.scopes.vFor > 0 &&
4161
- checkCompatEnabled("COMPILER_V_FOR_REF" /* COMPILER_V_FOR_REF */, context, prop.loc)) {
4162
- properties.push(createObjectProperty(createSimpleExpression('refInFor', true), createSimpleExpression('true', false)));
4163
- }
4164
4191
  }
4165
4192
  let propsExpression = undefined;
4166
4193
  // has v-bind="object" or v-on="object", wrap with mergeProps
@@ -4197,7 +4224,8 @@ var VueCompilerDOM = (function (exports) {
4197
4224
  patchFlag |= 32 /* HYDRATE_EVENTS */;
4198
4225
  }
4199
4226
  }
4200
- if ((patchFlag === 0 || patchFlag === 32 /* HYDRATE_EVENTS */) &&
4227
+ if (!shouldUseBlock &&
4228
+ (patchFlag === 0 || patchFlag === 32 /* HYDRATE_EVENTS */) &&
4201
4229
  (hasRef || hasVnodeHook || runtimeDirectives.length > 0)) {
4202
4230
  patchFlag |= 512 /* NEED_PATCH */;
4203
4231
  }
@@ -4264,7 +4292,8 @@ var VueCompilerDOM = (function (exports) {
4264
4292
  props: propsExpression,
4265
4293
  directives: runtimeDirectives,
4266
4294
  patchFlag,
4267
- dynamicPropNames
4295
+ dynamicPropNames,
4296
+ shouldUseBlock
4268
4297
  };
4269
4298
  }
4270
4299
  // Dedupe props in an object literal.
@@ -4400,7 +4429,7 @@ var VueCompilerDOM = (function (exports) {
4400
4429
  }
4401
4430
  }
4402
4431
  else {
4403
- if (p.name === 'bind' && isBindKey(p.arg, 'name')) {
4432
+ if (p.name === 'bind' && isStaticArgOf(p.arg, 'name')) {
4404
4433
  if (p.exp)
4405
4434
  slotName = p.exp;
4406
4435
  }
@@ -4434,7 +4463,11 @@ var VueCompilerDOM = (function (exports) {
4434
4463
  let eventName;
4435
4464
  if (arg.type === 4 /* SIMPLE_EXPRESSION */) {
4436
4465
  if (arg.isStatic) {
4437
- const rawName = arg.content;
4466
+ let rawName = arg.content;
4467
+ // TODO deprecate @vnodeXXX usage
4468
+ if (rawName.startsWith('vue:')) {
4469
+ rawName = `vnode-${rawName.slice(4)}`;
4470
+ }
4438
4471
  // for all event listeners, auto convert it to camelCase. See issue #2249
4439
4472
  eventName = createSimpleExpression(toHandlerKey(camelize(rawName)), true, arg.loc);
4440
4473
  }
@@ -5531,7 +5564,6 @@ var VueCompilerDOM = (function (exports) {
5531
5564
  exports.hasScopeRef = hasScopeRef;
5532
5565
  exports.helperNameMap = helperNameMap;
5533
5566
  exports.injectProp = injectProp;
5534
- exports.isBindKey = isBindKey;
5535
5567
  exports.isBuiltInType = isBuiltInType;
5536
5568
  exports.isCoreComponent = isCoreComponent;
5537
5569
  exports.isFunctionType = isFunctionType;
@@ -5542,6 +5574,7 @@ var VueCompilerDOM = (function (exports) {
5542
5574
  exports.isReferencedIdentifier = isReferencedIdentifier;
5543
5575
  exports.isSimpleIdentifier = isSimpleIdentifier;
5544
5576
  exports.isSlotOutlet = isSlotOutlet;
5577
+ exports.isStaticArgOf = isStaticArgOf;
5545
5578
  exports.isStaticExp = isStaticExp;
5546
5579
  exports.isStaticProperty = isStaticProperty;
5547
5580
  exports.isStaticPropertyKey = isStaticPropertyKey;
@@ -1 +1 @@
1
- var VueCompilerDOM=function(e){"use strict";function t(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r<o.length;r++)n[o[r]]=!0;return t?e=>!!n[e.toLowerCase()]:e=>!!n[e]}const n=/;(?![^(]*\))/g,o=/:(.+)/;const r=t("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"),s=t("svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"),i=t("area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr"),c={},l=()=>{},a=()=>!1,p=/^on[^a-z]/,u=e=>p.test(e),f=Object.assign,d=Array.isArray,h=e=>"string"==typeof e,m=e=>"symbol"==typeof e,g=e=>null!==e&&"object"==typeof e,y=t(",key,ref,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),v=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},S=/-(\w)/g,b=v((e=>e.replace(S,((e,t)=>t?t.toUpperCase():"")))),E=/\B([A-Z])/g,_=v((e=>e.replace(E,"-$1").toLowerCase())),N=v((e=>e.charAt(0).toUpperCase()+e.slice(1))),x=v((e=>e?`on${N(e)}`:""));function T(e){throw e}function O(e){}function k(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const C=Symbol(""),I=Symbol(""),M=Symbol(""),R=Symbol(""),P=Symbol(""),w=Symbol(""),$=Symbol(""),L=Symbol(""),V=Symbol(""),A=Symbol(""),D=Symbol(""),B=Symbol(""),F=Symbol(""),j=Symbol(""),H=Symbol(""),W=Symbol(""),K=Symbol(""),U=Symbol(""),J=Symbol(""),G=Symbol(""),z=Symbol(""),Y=Symbol(""),q=Symbol(""),Z=Symbol(""),X=Symbol(""),Q=Symbol(""),ee=Symbol(""),te=Symbol(""),ne=Symbol(""),oe=Symbol(""),re=Symbol(""),se=Symbol(""),ie=Symbol(""),ce=Symbol(""),le=Symbol(""),ae=Symbol(""),pe=Symbol(""),ue=Symbol(""),fe=Symbol(""),de={[C]:"Fragment",[I]:"Teleport",[M]:"Suspense",[R]:"KeepAlive",[P]:"BaseTransition",[w]:"openBlock",[$]:"createBlock",[L]:"createElementBlock",[V]:"createVNode",[A]:"createElementVNode",[D]:"createCommentVNode",[B]:"createTextVNode",[F]:"createStaticVNode",[j]:"resolveComponent",[H]:"resolveDynamicComponent",[W]:"resolveDirective",[K]:"resolveFilter",[U]:"withDirectives",[J]:"renderList",[G]:"renderSlot",[z]:"createSlots",[Y]:"toDisplayString",[q]:"mergeProps",[Z]:"normalizeClass",[X]:"normalizeStyle",[Q]:"normalizeProps",[ee]:"guardReactiveProps",[te]:"toHandlers",[ne]:"camelize",[oe]:"capitalize",[re]:"toHandlerKey",[se]:"setBlockTracking",[ie]:"pushScopeId",[ce]:"popScopeId",[le]:"withCtx",[ae]:"unref",[pe]:"isRef",[ue]:"withMemo",[fe]:"isMemoSame"};function he(e){Object.getOwnPropertySymbols(e).forEach((t=>{de[t]=e[t]}))}const me={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function ge(e,t=me){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}function ye(e,t,n,o,r,s,i,c=!1,l=!1,a=!1,p=me){return e&&(c?(e.helper(w),e.helper(Ze(e.inSSR,a))):e.helper(qe(e.inSSR,a)),i&&e.helper(U)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:s,directives:i,isBlock:c,disableTracking:l,isComponent:a,loc:p}}function ve(e,t=me){return{type:17,loc:t,elements:e}}function Se(e,t=me){return{type:15,loc:t,properties:e}}function be(e,t){return{type:16,loc:me,key:h(e)?Ee(e,!0):e,value:t}}function Ee(e,t=!1,n=me,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function _e(e,t=me){return{type:8,loc:t,children:e}}function Ne(e,t=[],n=me){return{type:14,loc:n,callee:e,arguments:t}}function xe(e,t,n=!1,o=!1,r=me){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Te(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:me}}function Oe(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:me}}function ke(e){return{type:21,body:e,loc:me}}const Ce=e=>4===e.type&&e.isStatic,Ie=(e,t)=>e===t||e===_(t);function Me(e){return Ie(e,"Teleport")?I:Ie(e,"Suspense")?M:Ie(e,"KeepAlive")?R:Ie(e,"BaseTransition")?P:void 0}const Re=/^\d|[^\$\w]/,Pe=e=>!Re.test(e),we=/[A-Za-z_$\xA0-\uFFFF]/,$e=/[\.\?\w$\xA0-\uFFFF]/,Le=/\s+[.[]\s*|\s*[.[]\s+/g,Ve=e=>{e=e.trim().replace(Le,(e=>e.trim()));let t=0,n=[],o=0,r=0,s=null;for(let i=0;i<e.length;i++){const c=e.charAt(i);switch(t){case 0:if("["===c)n.push(t),t=1,o++;else if("("===c)n.push(t),t=2,r++;else if(!(0===i?we:$e).test(c))return!1;break;case 1:"'"===c||'"'===c||"`"===c?(n.push(t),t=3,s=c):"["===c?o++:"]"===c&&(--o||(t=n.pop()));break;case 2:if("'"===c||'"'===c||"`"===c)n.push(t),t=3,s=c;else if("("===c)r++;else if(")"===c){if(i===e.length-1)return!1;--r||(t=n.pop())}break;case 3:c===s&&(t=n.pop(),s=null)}}return!o&&!r},Ae=l,De=Ve;function Be(e,t,n){const o={source:e.source.slice(t,t+n),start:Fe(e.start,e.source,t),end:e.end};return null!=n&&(o.end=Fe(e.start,e.source,t+n)),o}function Fe(e,t,n=t.length){return je(f({},e),t,n)}function je(e,t,n=t.length){let o=0,r=-1;for(let s=0;s<n;s++)10===t.charCodeAt(s)&&(o++,r=s);return e.offset+=n,e.line+=o,e.column=-1===r?e.column+n:n-r,e}function He(e,t,n=!1){for(let o=0;o<e.props.length;o++){const r=e.props[o];if(7===r.type&&(n||r.exp)&&(h(t)?r.name===t:t.test(r.name)))return r}}function We(e,t,n=!1,o=!1){for(let r=0;r<e.props.length;r++){const s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||o))return s}else if("bind"===s.name&&(s.exp||o)&&Ke(s.arg,t))return s}}function Ke(e,t){return!(!e||!Ce(e)||e.content!==t)}function Ue(e){return e.props.some((e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic)))}function Je(e){return 5===e.type||2===e.type}function Ge(e){return 7===e.type&&"slot"===e.name}function ze(e){return 1===e.type&&3===e.tagType}function Ye(e){return 1===e.type&&2===e.tagType}function qe(e,t){return e||t?V:A}function Ze(e,t){return e||t?$:L}const Xe=new Set([Q,ee]);function Qe(e,t=[]){if(e&&!h(e)&&14===e.type){const n=e.callee;if(!h(n)&&Xe.has(n))return Qe(e.arguments[0],t.concat(e))}return[e,t]}function et(e,t,n){let o,r,s=13===e.type?e.props:e.arguments[2],i=[];if(s&&!h(s)&&14===s.type){const e=Qe(s);s=e[0],i=e[1],r=i[i.length-1]}if(null==s||h(s))o=Se([t]);else if(14===s.type){const e=s.arguments[0];h(e)||15!==e.type?s.callee===te?o=Ne(n.helper(q),[Se([t]),s]):s.arguments.unshift(Se([t])):e.properties.unshift(t),!o&&(o=s)}else if(15===s.type){let e=!1;if(4===t.key.type){const n=t.key.content;e=s.properties.some((e=>4===e.key.type&&e.key.content===n))}e||s.properties.unshift(t),o=s}else o=Ne(n.helper(q),[Se([t]),s]),r&&r.callee===ee&&(r=i[i.length-2]);13===e.type?r?r.arguments[0]=o:e.props=o:r?r.arguments[0]=o:e.arguments[2]=o}function tt(e,t){return`_${t}_${e.replace(/[^\w]/g,((t,n)=>"-"===t?"_":e.charCodeAt(n).toString()))}`}function nt(e){return 14===e.type&&e.callee===ue?e.arguments[1].returns:e}function ot(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(qe(o,e.isComponent)),t(w),t(Ze(o,e.isComponent)))}const rt={COMPILER_IS_ON_ELEMENT:{message:'Platform-native elements with "is" prop will no longer be treated as components in Vue 3 unless the "is" value is explicitly prefixed with "vue:".',link:"https://v3.vuejs.org/guide/migration/custom-elements-interop.html"},COMPILER_V_BIND_SYNC:{message:e=>`.sync modifier for v-bind has been removed. Use v-model with argument instead. \`v-bind:${e}.sync\` should be changed to \`v-model:${e}\`.`,link:"https://v3.vuejs.org/guide/migration/v-model.html"},COMPILER_V_BIND_PROP:{message:".prop modifier for v-bind has been removed and no longer necessary. Vue 3 will automatically set a binding as DOM property when appropriate."},COMPILER_V_BIND_OBJECT_ORDER:{message:'v-bind="obj" usage is now order sensitive and behaves like JavaScript object spread: it will now overwrite an existing non-mergeable attribute that appears before v-bind in the case of conflict. To retain 2.x behavior, move v-bind to make it the first attribute. You can also suppress this warning if the usage is intended.',link:"https://v3.vuejs.org/guide/migration/v-bind.html"},COMPILER_V_ON_NATIVE:{message:".native modifier for v-on has been removed as is no longer necessary.",link:"https://v3.vuejs.org/guide/migration/v-on-native-modifier-removed.html"},COMPILER_V_IF_V_FOR_PRECEDENCE:{message:"v-if / v-for precedence when used on the same element has changed in Vue 3: v-if now takes higher precedence and will no longer have access to v-for scope variables. It is best to avoid the ambiguity with <template> tags or use a computed property that filters v-for data source.",link:"https://v3.vuejs.org/guide/migration/v-if-v-for.html"},COMPILER_V_FOR_REF:{message:"Ref usage on v-for no longer creates array ref values in Vue 3. Consider using function refs or refactor to avoid ref usage altogether.",link:"https://v3.vuejs.org/guide/migration/array-refs.html"},COMPILER_NATIVE_TEMPLATE:{message:"<template> with no special directives will render as a native template element instead of its inner content in Vue 3."},COMPILER_INLINE_TEMPLATE:{message:'"inline-template" has been removed in Vue 3.',link:"https://v3.vuejs.org/guide/migration/inline-template-attribute.html"},COMPILER_FILTER:{message:'filters have been removed in Vue 3. The "|" symbol will be treated as native JavaScript bitwise OR operator. Use method calls or computed properties instead.',link:"https://v3.vuejs.org/guide/migration/filters.html"}};function st(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function it(e,t){const n=st("MODE",t),o=st(e,t);return 3===n?!0===o:!1!==o}function ct(e,t,n,...o){return it(e,t)}const lt=/&(gt|lt|amp|apos|quot);/g,at={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},pt={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:a,isPreTag:a,isCustomElement:a,decodeEntities:e=>e.replace(lt,((e,t)=>at[t])),onError:T,onWarn:O,comments:!1};function ut(e,t={}){const n=function(e,t){const n=f({},pt);let o;for(o in t)n[o]=void 0===t[o]?pt[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Tt(n);return ge(ft(n,0,[]),Ot(n,o))}function ft(e,t,n){const o=kt(n),r=o?o.ns:0,s=[];for(;!Pt(e,t,n);){const i=e.source;let c;if(0===t||1===t)if(!e.inVPre&&Ct(i,e.options.delimiters[0]))c=_t(e,t);else if(0===t&&"<"===i[0])if(1===i.length);else if("!"===i[1])c=Ct(i,"\x3c!--")?mt(e):Ct(i,"<!DOCTYPE")?gt(e):Ct(i,"<![CDATA[")&&0!==r?ht(e,n):gt(e);else if("/"===i[1])if(2===i.length);else{if(">"===i[2]){It(e,3);continue}if(/[a-z]/i.test(i[2])){St(e,1,o);continue}c=gt(e)}else/[a-z]/i.test(i[1])?(c=yt(e,n),it("COMPILER_NATIVE_TEMPLATE",e)&&c&&"template"===c.tag&&!c.props.some((e=>7===e.type&&vt(e.name)))&&(c=c.children)):"?"===i[1]&&(c=gt(e));if(c||(c=Nt(e,t)),d(c))for(let e=0;e<c.length;e++)dt(s,c[e]);else dt(s,c)}let i=!1;if(2!==t&&1!==t){const t="preserve"!==e.options.whitespace;for(let n=0;n<s.length;n++){const o=s[n];if(e.inPre||2!==o.type)3!==o.type||e.options.comments||(i=!0,s[n]=null);else if(/[^\t\r\n\f ]/.test(o.content))t&&(o.content=o.content.replace(/[\t\r\n\f ]+/g," "));else{const e=s[n-1],r=s[n+1];!e||!r||t&&(3===e.type||3===r.type||1===e.type&&1===r.type&&/[\r\n]/.test(o.content))?(i=!0,s[n]=null):o.content=" "}}if(e.inPre&&o&&e.options.isPreTag(o.tag)){const e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}}return i?s.filter(Boolean):s}function dt(e,t){if(2===t.type){const n=kt(e);if(n&&2===n.type&&n.loc.end.offset===t.loc.start.offset)return n.content+=t.content,n.loc.end=t.loc.end,void(n.loc.source+=t.loc.source)}e.push(t)}function ht(e,t){It(e,9);const n=ft(e,3,t);return 0===e.source.length||It(e,3),n}function mt(e){const t=Tt(e);let n;const o=/--(\!)?>/.exec(e.source);if(o){n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,s=0;for(;-1!==(s=t.indexOf("\x3c!--",r));)It(e,s-r+1),r=s+1;It(e,o.index+o[0].length-r+1)}else n=e.source.slice(4),It(e,e.source.length);return{type:3,content:n,loc:Ot(e,t)}}function gt(e){const t=Tt(e),n="?"===e.source[1]?1:2;let o;const r=e.source.indexOf(">");return-1===r?(o=e.source.slice(n),It(e,e.source.length)):(o=e.source.slice(n,r),It(e,r+1)),{type:3,content:o,loc:Ot(e,t)}}function yt(e,t){const n=e.inPre,o=e.inVPre,r=kt(t),s=St(e,0,r),i=e.inPre&&!n,c=e.inVPre&&!o;if(s.isSelfClosing||e.options.isVoidTag(s.tag))return i&&(e.inPre=!1),c&&(e.inVPre=!1),s;t.push(s);const l=e.options.getTextMode(s,r),a=ft(e,l,t);t.pop();{const t=s.props.find((e=>6===e.type&&"inline-template"===e.name));if(t&&ct("COMPILER_INLINE_TEMPLATE",e)){const n=Ot(e,s.loc.end);t.value={type:2,content:n.source,loc:n}}}if(s.children=a,wt(e.source,s.tag))St(e,1,r);else if(0===e.source.length&&"script"===s.tag.toLowerCase()){const e=a[0];e&&Ct(e.loc.source,"\x3c!--")}return s.loc=Ot(e,s.loc.start),i&&(e.inPre=!1),c&&(e.inVPre=!1),s}const vt=t("if,else,else-if,for,slot");function St(e,t,n){const o=Tt(e),r=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),s=r[1],i=e.options.getNamespace(s,n);It(e,r[0].length),Mt(e);const c=Tt(e),l=e.source;e.options.isPreTag(s)&&(e.inPre=!0);let a=bt(e,t);0===t&&!e.inVPre&&a.some((e=>7===e.type&&"pre"===e.name))&&(e.inVPre=!0,f(e,c),e.source=l,a=bt(e,t).filter((e=>"v-pre"!==e.name)));let p=!1;if(0===e.source.length||(p=Ct(e.source,"/>"),It(e,p?2:1)),1===t)return;let u=0;return e.inVPre||("slot"===s?u=2:"template"===s?a.some((e=>7===e.type&&vt(e.name)))&&(u=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||Me(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let r=0;r<t.length;r++){const e=t[r];if(6===e.type){if("is"===e.name&&e.value){if(e.value.content.startsWith("vue:"))return!0;if(ct("COMPILER_IS_ON_ELEMENT",n))return!0}}else{if("is"===e.name)return!0;if("bind"===e.name&&Ke(e.arg,"is")&&ct("COMPILER_IS_ON_ELEMENT",n))return!0}}}(s,a,e)&&(u=1)),{type:1,ns:i,tag:s,tagType:u,props:a,isSelfClosing:p,children:[],loc:Ot(e,o),codegenNode:void 0}}function bt(e,t){const n=[],o=new Set;for(;e.source.length>0&&!Ct(e.source,">")&&!Ct(e.source,"/>");){if(Ct(e.source,"/")){It(e,1),Mt(e);continue}const r=Et(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source),Mt(e)}return n}function Et(e,t){const n=Tt(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o),t.add(o);{const e=/["'<]/g;let t;for(;t=e.exec(o););}let r;It(e,o.length),/^[\t\r\n\f ]*=/.test(e.source)&&(Mt(e),It(e,1),Mt(e),r=function(e){const t=Tt(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){It(e,1);const t=e.source.indexOf(o);-1===t?n=xt(e,e.source.length,4):(n=xt(e,t,4),It(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]););n=xt(e,t[0].length,4)}return{content:n,isQuoted:r,loc:Ot(e,t)}}(e));const s=Ot(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,c=Ct(o,"."),l=t[1]||(c||Ct(o,":")?"bind":Ct(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,s=o.lastIndexOf(t[2]),c=Ot(e,Rt(e,n,s),Rt(e,n,s+t[2].length+(r&&t[3]||"").length));let a=t[2],p=!0;a.startsWith("[")?(p=!1,a=a.endsWith("]")?a.slice(1,a.length-1):a.slice(1)):r&&(a+=t[3]||""),i={type:4,content:a,isStatic:p,constType:p?3:0,loc:c}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=Fe(e.start,r.content),e.source=e.source.slice(1,-1)}const a=t[3]?t[3].slice(1).split("."):[];return c&&a.push("prop"),"bind"===l&&i&&a.includes("sync")&&ct("COMPILER_V_BIND_SYNC",e,0)&&(l="model",a.splice(a.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:a,loc:s}}return!e.inVPre&&Ct(o,"v-"),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:s}}function _t(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return;const s=Tt(e);It(e,n.length);const i=Tt(e),c=Tt(e),l=r-n.length,a=e.source.slice(0,l),p=xt(e,l,t),u=p.trim(),f=p.indexOf(u);f>0&&je(i,a,f);return je(c,a,l-(p.length-u.length-f)),It(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:u,loc:Ot(e,i,c)},loc:Ot(e,s)}}function Nt(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let s=0;s<n.length;s++){const t=e.source.indexOf(n[s],1);-1!==t&&o>t&&(o=t)}const r=Tt(e);return{type:2,content:xt(e,o,t),loc:Ot(e,r)}}function xt(e,t,n){const o=e.source.slice(0,t);return It(e,t),2===n||3===n||-1===o.indexOf("&")?o:e.options.decodeEntities(o,4===n)}function Tt(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function Ot(e,t,n){return{start:t,end:n=n||Tt(e),source:e.originalSource.slice(t.offset,n.offset)}}function kt(e){return e[e.length-1]}function Ct(e,t){return e.startsWith(t)}function It(e,t){const{source:n}=e;je(e,n,t),e.source=n.slice(t)}function Mt(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&It(e,t[0].length)}function Rt(e,t,n){return Fe(t,e.originalSource.slice(t.offset,n),n)}function Pt(e,t,n){const o=e.source;switch(t){case 0:if(Ct(o,"</"))for(let e=n.length-1;e>=0;--e)if(wt(o,n[e].tag))return!0;break;case 1:case 2:{const e=kt(n);if(e&&wt(o,e.tag))return!0;break}case 3:if(Ct(o,"]]>"))return!0}return!o}function wt(e,t){return Ct(e,"</")&&e.slice(2,2+t.length).toLowerCase()===t.toLowerCase()&&/[\t\r\n\f />]/.test(e[2+t.length]||">")}function $t(e,t){Vt(e,t,Lt(e,e.children[0]))}function Lt(e,t){const{children:n}=e;return 1===n.length&&1===t.type&&!Ye(t)}function Vt(e,t,n=!1){const{children:o}=e,r=o.length;let s=0;for(let i=0;i<o.length;i++){const e=o[i];if(1===e.type&&0===e.tagType){const o=n?0:At(e,t);if(o>0){if(o>=2){e.codegenNode.patchFlag="-1",e.codegenNode=t.hoist(e.codegenNode),s++;continue}}else{const n=e.codegenNode;if(13===n.type){const o=Ht(n);if((!o||512===o||1===o)&&Ft(e,t)>=2){const o=jt(e);o&&(n.props=t.hoist(o))}n.dynamicProps&&(n.dynamicProps=t.hoist(n.dynamicProps))}}}else 12===e.type&&At(e.content,t)>=2&&(e.codegenNode=t.hoist(e.codegenNode),s++);if(1===e.type){const n=1===e.tagType;n&&t.scopes.vSlot++,Vt(e,t),n&&t.scopes.vSlot--}else if(11===e.type)Vt(e,t,1===e.children.length);else if(9===e.type)for(let n=0;n<e.branches.length;n++)Vt(e.branches[n],t,1===e.branches[n].children.length)}s&&t.transformHoist&&t.transformHoist(o,t,e),s&&s===r&&1===e.type&&0===e.tagType&&e.codegenNode&&13===e.codegenNode.type&&d(e.codegenNode.children)&&(e.codegenNode.children=t.hoist(ve(e.codegenNode.children)))}function At(e,t){const{constantCache:n}=t;switch(e.type){case 1:if(0!==e.tagType)return 0;const o=n.get(e);if(void 0!==o)return o;const r=e.codegenNode;if(13!==r.type)return 0;if(Ht(r))return n.set(e,0),0;{let o=3;const s=Ft(e,t);if(0===s)return n.set(e,0),0;s<o&&(o=s);for(let r=0;r<e.children.length;r++){const s=At(e.children[r],t);if(0===s)return n.set(e,0),0;s<o&&(o=s)}if(o>1)for(let r=0;r<e.props.length;r++){const s=e.props[r];if(7===s.type&&"bind"===s.name&&s.exp){const r=At(s.exp,t);if(0===r)return n.set(e,0),0;r<o&&(o=r)}}return r.isBlock&&(t.removeHelper(w),t.removeHelper(Ze(t.inSSR,r.isComponent)),r.isBlock=!1,t.helper(qe(t.inSSR,r.isComponent))),n.set(e,o),o}case 2:case 3:return 3;default:return 0;case 5:case 12:return At(e.content,t);case 4:return e.constType;case 8:let s=3;for(let n=0;n<e.children.length;n++){const o=e.children[n];if(h(o)||m(o))continue;const r=At(o,t);if(0===r)return 0;r<s&&(s=r)}return s}}const Dt=new Set([Z,X,Q,ee]);function Bt(e,t){if(14===e.type&&!h(e.callee)&&Dt.has(e.callee)){const n=e.arguments[0];if(4===n.type)return At(n,t);if(14===n.type)return Bt(n,t)}return 0}function Ft(e,t){let n=3;const o=jt(e);if(o&&15===o.type){const{properties:e}=o;for(let o=0;o<e.length;o++){const{key:r,value:s}=e[o],i=At(r,t);if(0===i)return i;let c;if(i<n&&(n=i),c=4===s.type?At(s,t):14===s.type?Bt(s,t):0,0===c)return c;c<n&&(n=c)}}return n}function jt(e){const t=e.codegenNode;if(13===t.type)return t.props}function Ht(e){const t=e.patchFlag;return t?parseInt(t,10):void 0}function Wt(e,{filename:t="",prefixIdentifiers:n=!1,hoistStatic:o=!1,cacheHandlers:r=!1,nodeTransforms:s=[],directiveTransforms:i={},transformHoist:a=null,isBuiltInComponent:p=l,isCustomElement:u=l,expressionPlugins:f=[],scopeId:d=null,slotted:m=!0,ssr:g=!1,inSSR:y=!1,ssrCssVars:v="",bindingMetadata:S=c,inline:E=!1,isTS:_=!1,onError:x=T,onWarn:k=O,compatConfig:C}){const I=t.replace(/\?.*$/,"").match(/([^/\\]+)\.\w+$/),M={selfName:I&&N(b(I[1])),prefixIdentifiers:n,hoistStatic:o,cacheHandlers:r,nodeTransforms:s,directiveTransforms:i,transformHoist:a,isBuiltInComponent:p,isCustomElement:u,expressionPlugins:f,scopeId:d,slotted:m,ssr:g,inSSR:y,ssrCssVars:v,bindingMetadata:S,inline:E,isTS:_,onError:x,onWarn:k,compatConfig:C,root:e,helpers:new Map,components:new Set,directives:new Set,hoists:[],imports:[],constantCache:new Map,temps:0,cached:0,identifiers:Object.create(null),scopes:{vFor:0,vSlot:0,vPre:0,vOnce:0},parent:null,currentNode:e,childIndex:0,inVOnce:!1,helper(e){const t=M.helpers.get(e)||0;return M.helpers.set(e,t+1),e},removeHelper(e){const t=M.helpers.get(e);if(t){const n=t-1;n?M.helpers.set(e,n):M.helpers.delete(e)}},helperString:e=>`_${de[M.helper(e)]}`,replaceNode(e){M.parent.children[M.childIndex]=M.currentNode=e},removeNode(e){const t=e?M.parent.children.indexOf(e):M.currentNode?M.childIndex:-1;e&&e!==M.currentNode?M.childIndex>t&&(M.childIndex--,M.onNodeRemoved()):(M.currentNode=null,M.onNodeRemoved()),M.parent.children.splice(t,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){h(e)&&(e=Ee(e)),M.hoists.push(e);const t=Ee(`_hoisted_${M.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>Oe(M.cached++,e,t)};return M.filters=new Set,M}function Kt(e,t){const n=Wt(e,t);Ut(e,n),t.hoistStatic&&$t(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(Lt(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&ot(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;e.codegenNode=ye(t,n(C),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function Ut(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let s=0;s<n.length;s++){const r=n[s](e,t);if(r&&(d(r)?o.push(...r):o.push(r)),!t.currentNode)return;e=t.currentNode}switch(e.type){case 3:t.ssr||t.helper(D);break;case 5:t.ssr||t.helper(Y);break;case 9:for(let n=0;n<e.branches.length;n++)Ut(e.branches[n],t);break;case 10:case 11:case 1:case 0:!function(e,t){let n=0;const o=()=>{n--};for(;n<e.children.length;n++){const r=e.children[n];h(r)||(t.parent=e,t.childIndex=n,t.onNodeRemoved=o,Ut(r,t))}}(e,t)}t.currentNode=e;let r=o.length;for(;r--;)o[r]()}function Jt(e,t){const n=h(e)?t=>t===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(Ge))return;const s=[];for(let i=0;i<r.length;i++){const c=r[i];if(7===c.type&&n(c.name)){r.splice(i,1),i--;const n=t(e,c,o);n&&s.push(n)}}return s}}}const Gt="/*#__PURE__*/";function zt(e,t={}){const n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:o=!1,filename:r="template.vue.html",scopeId:s=null,optimizeImports:i=!1,runtimeGlobalName:c="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:a="vue/server-renderer",ssr:p=!1,isTS:u=!1,inSSR:f=!1}){const d={mode:t,prefixIdentifiers:n,sourceMap:o,filename:r,scopeId:s,optimizeImports:i,runtimeGlobalName:c,runtimeModuleName:l,ssrRuntimeModuleName:a,ssr:p,isTS:u,inSSR:f,source:e.loc.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${de[e]}`,push(e,t){d.code+=e},indent(){h(++d.indentLevel)},deindent(e=!1){e?--d.indentLevel:h(--d.indentLevel)},newline(){h(d.indentLevel)}};function h(e){d.push("\n"+" ".repeat(e))}return d}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:s,indent:i,deindent:c,newline:l,ssr:a}=n,p=e.helpers.length>0,u=!s&&"module"!==o;!function(e,t){const{push:n,newline:o,runtimeGlobalName:r}=t,s=r,i=e=>`${de[e]}: _${de[e]}`;if(e.helpers.length>0&&(n(`const _Vue = ${s}\n`),e.hoists.length)){n(`const { ${[V,A,D,B,F].filter((t=>e.helpers.includes(t))).map(i).join(", ")} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o}=t;o();for(let r=0;r<e.length;r++){const s=e[r];s&&(n(`const _hoisted_${r+1} = `),Xt(s,t),o())}t.pure=!1})(e.hoists,t),o(),n("return ")}(e,n);if(r(`function ${a?"ssrRender":"render"}(${(a?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ")}) {`),i(),u&&(r("with (_ctx) {"),i(),p&&(r(`const { ${e.helpers.map((e=>`${de[e]}: _${de[e]}`)).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(Yt(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(Yt(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),Yt(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?Xt(e.codegenNode,n):r("null"),u&&(c(),r("}")),c(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function Yt(e,t,{helper:n,push:o,newline:r,isTS:s}){const i=n("filter"===t?K:"component"===t?j:W);for(let c=0;c<e.length;c++){let n=e[c];const l=n.endsWith("__self");l&&(n=n.slice(0,-6)),o(`const ${tt(n,t)} = ${i}(${JSON.stringify(n)}${l?", true":""})${s?"!":""}`),c<e.length-1&&r()}}function qt(e,t){const n=e.length>3||!1;t.push("["),n&&t.indent(),Zt(e,t,n),n&&t.deindent(),t.push("]")}function Zt(e,t,n=!1,o=!0){const{push:r,newline:s}=t;for(let i=0;i<e.length;i++){const c=e[i];h(c)?r(c):d(c)?qt(c,t):Xt(c,t),i<e.length-1&&(n?(o&&r(","),s()):o&&r(", "))}}function Xt(e,t){if(h(e))t.push(e);else if(m(e))t.push(t.helper(e));else switch(e.type){case 1:case 9:case 11:case 12:Xt(e.codegenNode,t);break;case 2:!function(e,t){t.push(JSON.stringify(e.content),e)}(e,t);break;case 4:Qt(e,t);break;case 5:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(Gt);n(`${o(Y)}(`),Xt(e.content,t),n(")")}(e,t);break;case 8:en(e,t);break;case 3:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(Gt);n(`${o(D)}(${JSON.stringify(e.content)})`,e)}(e,t);break;case 13:!function(e,t){const{push:n,helper:o,pure:r}=t,{tag:s,props:i,children:c,patchFlag:l,dynamicProps:a,directives:p,isBlock:u,disableTracking:f,isComponent:d}=e;p&&n(o(U)+"(");u&&n(`(${o(w)}(${f?"true":""}), `);r&&n(Gt);const h=u?Ze(t.inSSR,d):qe(t.inSSR,d);n(o(h)+"(",e),Zt(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map((e=>e||"null"))}([s,i,c,l,a]),t),n(")"),u&&n(")");p&&(n(", "),Xt(p,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:r}=t,s=h(e.callee)?e.callee:o(e.callee);r&&n(Gt);n(s+"(",e),Zt(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:s}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const c=i.length>1||!1;n(c?"{":"{ "),c&&o();for(let l=0;l<i.length;l++){const{key:e,value:o}=i[l];tn(e,t),n(": "),Xt(o,t),l<i.length-1&&(n(","),s())}c&&r(),n(c?"}":" }")}(e,t);break;case 17:!function(e,t){qt(e.elements,t)}(e,t);break;case 18:!function(e,t){const{push:n,indent:o,deindent:r}=t,{params:s,returns:i,body:c,newline:l,isSlot:a}=e;a&&n(`_${de[le]}(`);n("(",e),d(s)?Zt(s,t):s&&Xt(s,t);n(") => "),(l||c)&&(n("{"),o());i?(l&&n("return "),d(i)?qt(i,t):Xt(i,t)):c&&Xt(c,t);(l||c)&&(r(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:s}=e,{push:i,indent:c,deindent:l,newline:a}=t;if(4===n.type){const e=!Pe(n.content);e&&i("("),Qt(n,t),e&&i(")")}else i("("),Xt(n,t),i(")");s&&c(),t.indentLevel++,s||i(" "),i("? "),Xt(o,t),t.indentLevel--,s&&a(),s||i(" "),i(": ");const p=19===r.type;p||t.indentLevel++;Xt(r,t),p||t.indentLevel--;s&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:s,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(`${o(se)}(-1),`),i());n(`_cache[${e.index}] = `),Xt(e.value,t),e.isVNode&&(n(","),i(),n(`${o(se)}(1),`),i(),n(`_cache[${e.index}]`),s());n(")")}(e,t);break;case 21:Zt(e.body,t,!0,!1)}}function Qt(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function en(e,t){for(let n=0;n<e.children.length;n++){const o=e.children[n];h(o)?t.push(o):Xt(o,t)}}function tn(e,t){const{push:n}=t;if(8===e.type)n("["),en(e,t),n("]");else if(e.isStatic){n(Pe(e.content)?e.content:JSON.stringify(e.content),e)}else n(`[${e.content}]`,e)}function nn(e,t=[]){switch(e.type){case"Identifier":t.push(e);break;case"MemberExpression":let n=e;for(;"MemberExpression"===n.type;)n=n.object;t.push(n);break;case"ObjectPattern":for(const o of e.properties)nn("RestElement"===o.type?o.argument:o.value,t);break;case"ArrayPattern":e.elements.forEach((e=>{e&&nn(e,t)}));break;case"RestElement":nn(e.argument,t);break;case"AssignmentPattern":nn(e.left,t)}return t}const on=e=>e&&("ObjectProperty"===e.type||"ObjectMethod"===e.type)&&!e.computed;function rn(e,t,n=!1,o=!1,r=Object.create(t.identifiers)){return e}const sn=Jt(/^(if|else|else-if)$/,((e,t,n)=>cn(e,t,n,((e,t,o)=>{const r=n.parent.children;let s=r.indexOf(e),i=0;for(;s-- >=0;){const e=r[s];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=an(t,i,n);else{const o=function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode);o.alternate=an(t,i+e.branches.length-1,n)}}}))));function cn(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){t.exp=Ee("true",!1,t.exp?t.exp.loc:e.loc)}if("if"===t.name){const r=ln(e,t),s={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(s),o)return o(s,r,!0)}else{const r=n.parent.children;let s=r.indexOf(e);for(;s-- >=-1;){const i=r[s];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){n.removeNode();const r=ln(e,t);i.branches.push(r);const s=o&&o(i,r,!1);Ut(r,n),s&&s(),n.currentNode=null}break}n.removeNode(i)}}}function ln(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||He(e,"for")?[e]:e.children,userKey:We(e,"key")}}function an(e,t,n){return e.condition?Te(e.condition,pn(e,t,n),Ne(n.helper(D),['""',"true"])):pn(e,t,n)}function pn(e,t,n){const{helper:o}=n,r=be("key",Ee(`${t}`,!1,me,2)),{children:s}=e,i=s[0];if(1!==s.length||1!==i.type){if(1===s.length&&11===i.type){const e=i.codegenNode;return et(e,r,n),e}{let t=64;return ye(n,o(C),Se([r]),s,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=i.codegenNode,t=nt(e);return 13===t.type&&ot(t,n),et(t,r,n),e}}const un=Jt("for",((e,t,n)=>{const{helper:o,removeHelper:r}=n;return fn(e,t,n,(t=>{const s=Ne(o(J),[t.source]),i=He(e,"memo"),c=We(e,"key"),l=c&&(6===c.type?Ee(c.value.content,!0):c.exp),a=c?be("key",l):null,p=4===t.source.type&&t.source.constType>0,u=p?64:c?128:256;return t.codegenNode=ye(n,o(C),void 0,s,u+"",void 0,void 0,!0,!p,!1,e.loc),()=>{let c;const u=ze(e),{children:f}=t,d=1!==f.length||1!==f[0].type,h=Ye(e)?e:u&&1===e.children.length&&Ye(e.children[0])?e.children[0]:null;if(h?(c=h.codegenNode,u&&a&&et(c,a,n)):d?c=ye(n,o(C),a?Se([a]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(c=f[0].codegenNode,u&&a&&et(c,a,n),c.isBlock!==!p&&(c.isBlock?(r(w),r(Ze(n.inSSR,c.isComponent))):r(qe(n.inSSR,c.isComponent))),c.isBlock=!p,c.isBlock?(o(w),o(Ze(n.inSSR,c.isComponent))):o(qe(n.inSSR,c.isComponent))),i){const e=xe(vn(t.parseResult,[Ee("_cached")]));e.body=ke([_e(["const _memo = (",i.exp,")"]),_e(["if (_cached",...l?[" && _cached.key === ",l]:[],` && ${n.helperString(fe)}(_cached, _memo)) return _cached`]),_e(["const _item = ",c]),Ee("_item.memo = _memo"),Ee("return _item")]),s.arguments.push(e,Ee("_cache"),Ee(String(n.cached++)))}else s.arguments.push(xe(vn(t.parseResult),c,!0))}}))}));function fn(e,t,n,o){if(!t.exp)return;const r=gn(t.exp);if(!r)return;const{scopes:s}=n,{source:i,value:c,key:l,index:a}=r,p={type:11,loc:t.loc,source:i,valueAlias:c,keyAlias:l,objectIndexAlias:a,parseResult:r,children:ze(e)?e.children:[e]};n.replaceNode(p),s.vFor++;const u=o&&o(p);return()=>{s.vFor--,u&&u()}}const dn=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,hn=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,mn=/^\(|\)$/g;function gn(e,t){const n=e.loc,o=e.content,r=o.match(dn);if(!r)return;const[,s,i]=r,c={source:yn(n,i.trim(),o.indexOf(i,s.length)),value:void 0,key:void 0,index:void 0};let l=s.trim().replace(mn,"").trim();const a=s.indexOf(l),p=l.match(hn);if(p){l=l.replace(hn,"").trim();const e=p[1].trim();let t;if(e&&(t=o.indexOf(e,a+l.length),c.key=yn(n,e,t)),p[2]){const r=p[2].trim();r&&(c.index=yn(n,r,o.indexOf(r,c.key?t+e.length:a+l.length)))}}return l&&(c.value=yn(n,l,a)),c}function yn(e,t,n){return Ee(t,!1,Be(e,n,t.length))}function vn({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map(((e,t)=>e||Ee("_".repeat(t+1),!1)))}([e,t,n,...o])}const Sn=Ee("undefined",!1),bn=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=He(e,"slot");if(n)return t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},En=(e,t,n)=>xe(e,t,!1,!0,t.length?t[0].loc:n);function _n(e,t,n=En){t.helper(le);const{children:o,loc:r}=e,s=[],i=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const l=He(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!Ce(e)&&(c=!0),s.push(be(e||Ee("default",!0),n(t,o,r)))}let a=!1,p=!1;const u=[],f=new Set;for(let m=0;m<o.length;m++){const e=o[m];let r;if(!ze(e)||!(r=He(e,"slot",!0))){3!==e.type&&u.push(e);continue}if(l)break;a=!0;const{children:d,loc:h}=e,{arg:g=Ee("default",!0),exp:y}=r;let v;Ce(g)?v=g?g.content:"default":c=!0;const S=n(y,d,h);let b,E,_;if(b=He(e,"if"))c=!0,i.push(Te(b.exp,Nn(g,S),Sn));else if(E=He(e,/^else(-if)?$/,!0)){let e,t=m;for(;t--&&(e=o[t],3===e.type););if(e&&ze(e)&&He(e,"if")){o.splice(m,1),m--;let e=i[i.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=E.exp?Te(E.exp,Nn(g,S),Sn):Nn(g,S)}}else if(_=He(e,"for")){c=!0;const e=_.parseResult||gn(_.exp);e&&i.push(Ne(t.helper(J),[e.source,xe(vn(e),Nn(g,S),!0)]))}else{if(v){if(f.has(v))continue;f.add(v),"default"===v&&(p=!0)}s.push(be(g,S))}}if(!l){const e=(e,o)=>{const s=n(e,o,r);return t.compatConfig&&(s.isNonScopedSlot=!0),be("default",s)};a?u.length&&u.some((e=>Tn(e)))&&(p||s.push(e(void 0,u))):s.push(e(void 0,o))}const d=c?2:xn(e.children)?3:1;let h=Se(s.concat(be("_",Ee(d+"",!1))),r);return i.length&&(h=Ne(t.helper(z),[h,ve(i)])),{slots:h,hasDynamicSlots:c}}function Nn(e,t){return Se([be("name",e),be("fn",t)])}function xn(e){for(let t=0;t<e.length;t++){const n=e[t];switch(n.type){case 1:if(2===n.tagType||xn(n.children))return!0;break;case 9:if(xn(n.branches))return!0;break;case 10:case 11:if(xn(n.children))return!0}}return!1}function Tn(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():Tn(e.content))}const On=new WeakMap,kn=(e,t)=>function(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,r=1===e.tagType;let s=r?Cn(e,t):`"${n}"`;let i,c,l,a,p,u,f=0,d=g(s)&&s.callee===H||s===I||s===M||!r&&("svg"===n||"foreignObject"===n||We(e,"key",!0));if(o.length>0){const n=In(e,t);i=n.props,f=n.patchFlag,p=n.dynamicPropNames;const o=n.directives;u=o&&o.length?ve(o.map((e=>function(e,t){const n=[],o=On.get(e);o?n.push(t.helperString(o)):(t.helper(W),t.directives.add(e.name),n.push(tt(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=Ee("true",!1,r);n.push(Se(e.modifiers.map((e=>be(e,t))),r))}return ve(n,e.loc)}(e,t)))):void 0}if(e.children.length>0){s===R&&(d=!0,f|=1024);if(r&&s!==I&&s!==R){const{slots:n,hasDynamicSlots:o}=_n(e,t);c=n,o&&(f|=1024)}else if(1===e.children.length&&s!==I){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===At(n,t)&&(f|=1),c=r||2===o?n:e.children}else c=e.children}0!==f&&(l=String(f),p&&p.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n<o;n++)t+=JSON.stringify(e[n]),n<o-1&&(t+=", ");return t+"]"}(p))),e.codegenNode=ye(t,s,i,c,l,a,u,!!d,!1,r,e.loc)};function Cn(e,t,n=!1){let{tag:o}=e;const r=Pn(o),s=We(e,"is");if(s)if(r||it("COMPILER_IS_ON_ELEMENT",t)){const e=6===s.type?s.value&&Ee(s.value.content,!0):s.exp;if(e)return Ne(t.helper(H),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(o=s.value.content.slice(4));const i=!r&&He(e,"is");if(i&&i.exp)return Ne(t.helper(H),[i.exp]);const c=Me(o)||t.isBuiltInComponent(o);return c?(n||t.helper(c),c):(t.helper(j),t.components.add(o),tt(o,"component"))}function In(e,t,n=e.props,o=!1){const{tag:r,loc:s}=e,i=1===e.tagType;let c=[];const l=[],a=[];let p=0,f=!1,d=!1,h=!1,g=!1,v=!1,S=!1;const b=[],E=({key:e,value:n})=>{if(Ce(e)){const o=e.content,r=u(o);if(i||!r||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||y(o)||(g=!0),r&&y(o)&&(S=!0),20===n.type||(4===n.type||8===n.type)&&At(n,t)>0)return;"ref"===o?f=!0:"class"===o?d=!0:"style"===o?h=!0:"key"===o||b.includes(o)||b.push(o),!i||"class"!==o&&"style"!==o||b.includes(o)||b.push(o)}else v=!0};for(let u=0;u<n.length;u++){const i=n[u];if(6===i.type){const{loc:e,name:n,value:o}=i;let s=Ee(o?o.content:"",!0,o?o.loc:e);if("ref"===n&&(f=!0),"is"===n&&(Pn(r)||o&&o.content.startsWith("vue:")||it("COMPILER_IS_ON_ELEMENT",t)))continue;c.push(be(Ee(n,!0,Be(e,0,n.length)),s))}else{const{name:n,arg:p,exp:u,loc:f}=i,d="bind"===n,h="on"===n;if("slot"===n)continue;if("once"===n||"memo"===n)continue;if("is"===n||d&&Ke(p,"is")&&(Pn(r)||it("COMPILER_IS_ON_ELEMENT",t)))continue;if(h&&o)continue;if(!p&&(d||h)){if(v=!0,u)if(c.length&&(l.push(Se(Mn(c),s)),c=[]),d){if(it("COMPILER_V_BIND_OBJECT_ORDER",t)){l.unshift(u);continue}l.push(u)}else l.push({type:14,loc:f,callee:t.helper(te),arguments:[u]});continue}const g=t.directiveTransforms[n];if(g){const{props:n,needRuntime:r}=g(i,e,t);!o&&n.forEach(E),c.push(...n),r&&(a.push(i),m(r)&&On.set(i,r))}else a.push(i)}6===i.type&&"ref"===i.name&&t.scopes.vFor>0&&ct("COMPILER_V_FOR_REF",t)&&c.push(be(Ee("refInFor",!0),Ee("true",!1)))}let _;if(l.length?(c.length&&l.push(Se(Mn(c),s)),_=l.length>1?Ne(t.helper(q),l,s):l[0]):c.length&&(_=Se(Mn(c),s)),v?p|=16:(d&&!i&&(p|=2),h&&!i&&(p|=4),b.length&&(p|=8),g&&(p|=32)),0!==p&&32!==p||!(f||S||a.length>0)||(p|=512),!t.inSSR&&_)switch(_.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t<_.properties.length;t++){const r=_.properties[t].key;Ce(r)?"class"===r.content?e=t:"style"===r.content&&(n=t):r.isHandlerKey||(o=!0)}const r=_.properties[e],s=_.properties[n];o?_=Ne(t.helper(Q),[_]):(r&&!Ce(r.value)&&(r.value=Ne(t.helper(Z),[r.value])),!s||Ce(s.value)||!h&&17!==s.value.type||(s.value=Ne(t.helper(X),[s.value])));break;case 14:break;default:_=Ne(t.helper(Q),[Ne(t.helper(ee),[_])])}return{props:_,directives:a,patchFlag:p,dynamicPropNames:b}}function Mn(e){const t=new Map,n=[];for(let o=0;o<e.length;o++){const r=e[o];if(8===r.key.type||!r.key.isStatic){n.push(r);continue}const s=r.key.content,i=t.get(s);i?("style"===s||"class"===s||u(s))&&Rn(i,r):(t.set(s,r),n.push(r))}return n}function Rn(e,t){17===e.value.type?e.value.elements.push(t.value):e.value=ve([e.value,t.value],e.loc)}function Pn(e){return"component"===e||"Component"===e}const wn=(e,t)=>{if(Ye(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:s}=$n(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let c=2;s&&(i[2]=s,c=3),n.length&&(i[3]=xe([],n,!1,!1,o),c=4),t.scopeId&&!t.slotted&&(c=5),i.splice(c),e.codegenNode=Ne(t.helper(G),i,o)}};function $n(e,t){let n,o='"default"';const r=[];for(let s=0;s<e.props.length;s++){const t=e.props[s];6===t.type?t.value&&("name"===t.name?o=JSON.stringify(t.value.content):(t.name=b(t.name),r.push(t))):"bind"===t.name&&Ke(t.arg,"name")?t.exp&&(o=t.exp):("bind"===t.name&&t.arg&&Ce(t.arg)&&(t.arg.content=b(t.arg.content)),r.push(t))}if(r.length>0){const{props:o,directives:s}=In(e,t,r);n=o}return{slotName:o,slotProps:n}}const Ln=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,Vn=(e,t,n,o)=>{const{loc:r,modifiers:s,arg:i}=e;let c;if(4===i.type)if(i.isStatic){c=Ee(x(b(i.content)),!0,i.loc)}else c=_e([`${n.helperString(re)}(`,i,")"]);else c=i,c.children.unshift(`${n.helperString(re)}(`),c.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let a=n.cacheHandlers&&!l&&!n.inVOnce;if(l){const e=De(l.content),t=!(e||Ln.test(l.content)),n=l.content.includes(";");(t||a&&e)&&(l=_e([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let p={props:[be(c,l||Ee("() => {}",!1,r))]};return o&&(p=o(p)),a&&(p.props[0].value=n.cache(p.props[0].value)),p.props.forEach((e=>e.key.isHandlerKey=!0)),p},An=(e,t,n)=>{const{exp:o,modifiers:r,loc:s}=e,i=e.arg;return 4!==i.type?(i.children.unshift("("),i.children.push(') || ""')):i.isStatic||(i.content=`${i.content} || ""`),r.includes("camel")&&(4===i.type?i.content=i.isStatic?b(i.content):`${n.helperString(ne)}(${i.content})`:(i.children.unshift(`${n.helperString(ne)}(`),i.children.push(")"))),n.inSSR||(r.includes("prop")&&Dn(i,"."),r.includes("attr")&&Dn(i,"^")),!o||4===o.type&&!o.content.trim()?{props:[be(i,Ee("",!0,s))]}:{props:[be(i,o)]}},Dn=(e,t)=>{4===e.type?e.content=e.isStatic?t+e.content:`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},Bn=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o,r=!1;for(let e=0;e<n.length;e++){const t=n[e];if(Je(t)){r=!0;for(let r=e+1;r<n.length;r++){const s=n[r];if(!Je(s)){o=void 0;break}o||(o=n[e]={type:8,loc:t.loc,children:[t]}),o.children.push(" + ",s),n.splice(r,1),r--}}}if(r&&(1!==n.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find((e=>7===e.type&&!t.directiveTransforms[e.name]))||"template"===e.tag)))for(let e=0;e<n.length;e++){const o=n[e];if(Je(o)||8===o.type){const r=[];2===o.type&&" "===o.content||r.push(o),t.ssr||0!==At(o,t)||r.push("1"),n[e]={type:12,content:o,loc:o.loc,codegenNode:Ne(t.helper(B),r)}}}}},Fn=new WeakSet,jn=(e,t)=>{if(1===e.type&&He(e,"once",!0)){if(Fn.has(e)||t.inVOnce)return;return Fn.add(e),t.inVOnce=!0,t.helper(se),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},Hn=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return Wn();const s=o.loc.source,i=4===o.type?o.content:s;if(!i.trim()||!De(i))return Wn();const c=r||Ee("modelValue",!0),l=r?Ce(r)?`onUpdate:${r.content}`:_e(['"onUpdate:" + ',r]):"onUpdate:modelValue";let a;a=_e([`${n.isTS?"($event: any)":"$event"} => ((`,o,") = $event)"]);const p=[be(c,e.exp),be(l,a)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map((e=>(Pe(e)?e:JSON.stringify(e))+": true")).join(", "),n=r?Ce(r)?`${r.content}Modifiers`:_e([r,' + "Modifiers"']):"modelModifiers";p.push(be(n,Ee(`{ ${t} }`,!1,e.loc,2)))}return Wn(p)};function Wn(e=[]){return{props:e}}const Kn=/[\w).+\-_$\]]/,Un=(e,t)=>{it("COMPILER_FILTER",t)&&(5===e.type&&Jn(e.content,t),1===e.type&&e.props.forEach((e=>{7===e.type&&"for"!==e.name&&e.exp&&Jn(e.exp,t)})))};function Jn(e,t){if(4===e.type)Gn(e,t);else for(let n=0;n<e.children.length;n++){const o=e.children[n];"object"==typeof o&&(4===o.type?Gn(o,t):8===o.type?Jn(e,t):5===o.type&&Jn(o.content,t))}}function Gn(e,t){const n=e.content;let o,r,s,i,c=!1,l=!1,a=!1,p=!1,u=0,f=0,d=0,h=0,m=[];for(s=0;s<n.length;s++)if(r=o,o=n.charCodeAt(s),c)39===o&&92!==r&&(c=!1);else if(l)34===o&&92!==r&&(l=!1);else if(a)96===o&&92!==r&&(a=!1);else if(p)47===o&&92!==r&&(p=!1);else if(124!==o||124===n.charCodeAt(s+1)||124===n.charCodeAt(s-1)||u||f||d){switch(o){case 34:l=!0;break;case 39:c=!0;break;case 96:a=!0;break;case 40:d++;break;case 41:d--;break;case 91:f++;break;case 93:f--;break;case 123:u++;break;case 125:u--}if(47===o){let e,t=s-1;for(;t>=0&&(e=n.charAt(t)," "===e);t--);e&&Kn.test(e)||(p=!0)}}else void 0===i?(h=s+1,i=n.slice(0,s).trim()):g();function g(){m.push(n.slice(h,s).trim()),h=s+1}if(void 0===i?i=n.slice(0,s).trim():0!==h&&g(),m.length){for(s=0;s<m.length;s++)i=zn(i,m[s],t);e.content=i}}function zn(e,t,n){n.helper(K);const o=t.indexOf("(");if(o<0)return n.filters.add(t),`${tt(t,"filter")}(${e})`;{const r=t.slice(0,o),s=t.slice(o+1);return n.filters.add(r),`${tt(r,"filter")}(${e}${")"!==s?","+s:s}`}}const Yn=new WeakSet,qn=(e,t)=>{if(1===e.type){const n=He(e,"memo");if(!n||Yn.has(e))return;return Yn.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&ot(o,t),e.codegenNode=Ne(t.helper(ue),[n.exp,xe(void 0,o),"_cache",String(t.cached++)]))}}};function Zn(e){return[[jn,sn,qn,un,Un,wn,kn,bn,Bn],{on:Vn,bind:An,model:Hn}]}function Xn(e,t={}){const n=t.onError||T,o="module"===t.mode;!0===t.prefixIdentifiers?n(k(46)):o&&n(k(47));t.cacheHandlers&&n(k(48)),t.scopeId&&!o&&n(k(49));const r=h(e)?ut(e,t):e,[s,i]=Zn();return Kt(r,f({},t,{prefixIdentifiers:false,nodeTransforms:[...s,...t.nodeTransforms||[]],directiveTransforms:f({},i,t.directiveTransforms||{})})),zt(r,f({},t,{prefixIdentifiers:false}))}const Qn=()=>({props:[]}),eo=Symbol(""),to=Symbol(""),no=Symbol(""),oo=Symbol(""),ro=Symbol(""),so=Symbol(""),io=Symbol(""),co=Symbol(""),lo=Symbol(""),ao=Symbol("");let po;he({[eo]:"vModelRadio",[to]:"vModelCheckbox",[no]:"vModelText",[oo]:"vModelSelect",[ro]:"vModelDynamic",[so]:"withModifiers",[io]:"withKeys",[co]:"vShow",[lo]:"Transition",[ao]:"TransitionGroup"});const uo=t("style,iframe,script,noscript",!0),fo={isVoidTag:i,isNativeTag:e=>r(e)||s(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return po||(po=document.createElement("div")),t?(po.innerHTML=`<div foo="${e.replace(/"/g,"&quot;")}">`,po.children[0].getAttribute("foo")):(po.innerHTML=e,po.textContent)},isBuiltInComponent:e=>Ie(e,"Transition")?lo:Ie(e,"TransitionGroup")?ao:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some((e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content)))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if(uo(e))return 2}return 0}},ho=e=>{1===e.type&&e.props.forEach(((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:Ee("style",!0,t.loc),exp:mo(t.value.content,t.loc),modifiers:[],loc:t.loc})}))},mo=(e,t)=>{const r=function(e){const t={};return e.split(n).forEach((e=>{if(e){const n=e.split(o);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}(e);return Ee(JSON.stringify(r),!1,t,3)};function go(e,t){return k(e,t)}const yo=t("passive,once,capture"),vo=t("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),So=t("left,right"),bo=t("onkeyup,onkeydown,onkeypress",!0),Eo=(e,t)=>Ce(e)&&"onclick"===e.content.toLowerCase()?Ee(t,!0):4!==e.type?_e(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,_o=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||t.removeNode()},No=[ho],xo={cloak:Qn,html:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[be(Ee("innerHTML",!0,r),o||Ee("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[be(Ee("textContent",!0),o?Ne(n.helperString(Y),[o],r):Ee("",!0))]}},model:(e,t,n)=>{const o=Hn(e,t,n);if(!o.props.length||1===t.tagType)return o;const{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let e=no,i=!1;if("input"===r||s){const n=We(t,"type");if(n){if(7===n.type)e=ro;else if(n.value)switch(n.value.content){case"radio":e=eo;break;case"checkbox":e=to;break;case"file":i=!0}}else Ue(t)&&(e=ro)}else"select"===r&&(e=oo);i||(o.needRuntime=n.helper(e))}return o.props=o.props.filter((e=>!(4===e.key.type&&"modelValue"===e.key.content))),o},on:(e,t,n)=>Vn(e,0,n,(t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:r,value:s}=t.props[0];const{keyModifiers:i,nonKeyModifiers:c,eventOptionModifiers:l}=((e,t,n,o)=>{const r=[],s=[],i=[];for(let c=0;c<t.length;c++){const o=t[c];"native"===o&&ct("COMPILER_V_ON_NATIVE",n)||yo(o)?i.push(o):So(o)?Ce(e)?bo(e.content)?r.push(o):s.push(o):(r.push(o),s.push(o)):vo(o)?s.push(o):r.push(o)}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:i}})(r,o,n);if(c.includes("right")&&(r=Eo(r,"onContextmenu")),c.includes("middle")&&(r=Eo(r,"onMouseup")),c.length&&(s=Ne(n.helper(so),[s,JSON.stringify(c)])),!i.length||Ce(r)&&!bo(r.content)||(s=Ne(n.helper(io),[s,JSON.stringify(i)])),l.length){const e=l.map(N).join("");r=Ce(r)?Ee(`${r.content}${e}`,!0):_e(["(",r,`) + "${e}"`])}return{props:[be(r,s)]}})),show:(e,t,n)=>({props:[],needRuntime:n.helper(co)})};return e.BASE_TRANSITION=P,e.CAMELIZE=ne,e.CAPITALIZE=oe,e.CREATE_BLOCK=$,e.CREATE_COMMENT=D,e.CREATE_ELEMENT_BLOCK=L,e.CREATE_ELEMENT_VNODE=A,e.CREATE_SLOTS=z,e.CREATE_STATIC=F,e.CREATE_TEXT=B,e.CREATE_VNODE=V,e.DOMDirectiveTransforms=xo,e.DOMNodeTransforms=No,e.FRAGMENT=C,e.GUARD_REACTIVE_PROPS=ee,e.IS_MEMO_SAME=fe,e.IS_REF=pe,e.KEEP_ALIVE=R,e.MERGE_PROPS=q,e.NORMALIZE_CLASS=Z,e.NORMALIZE_PROPS=Q,e.NORMALIZE_STYLE=X,e.OPEN_BLOCK=w,e.POP_SCOPE_ID=ce,e.PUSH_SCOPE_ID=ie,e.RENDER_LIST=J,e.RENDER_SLOT=G,e.RESOLVE_COMPONENT=j,e.RESOLVE_DIRECTIVE=W,e.RESOLVE_DYNAMIC_COMPONENT=H,e.RESOLVE_FILTER=K,e.SET_BLOCK_TRACKING=se,e.SUSPENSE=M,e.TELEPORT=I,e.TO_DISPLAY_STRING=Y,e.TO_HANDLERS=te,e.TO_HANDLER_KEY=re,e.TRANSITION=lo,e.TRANSITION_GROUP=ao,e.UNREF=ae,e.V_MODEL_CHECKBOX=to,e.V_MODEL_DYNAMIC=ro,e.V_MODEL_RADIO=eo,e.V_MODEL_SELECT=oo,e.V_MODEL_TEXT=no,e.V_ON_WITH_KEYS=io,e.V_ON_WITH_MODIFIERS=so,e.V_SHOW=co,e.WITH_CTX=le,e.WITH_DIRECTIVES=U,e.WITH_MEMO=ue,e.advancePositionWithClone=Fe,e.advancePositionWithMutation=je,e.assert=function(e,t){if(!e)throw new Error(t||"unexpected compiler condition")},e.baseCompile=Xn,e.baseParse=ut,e.buildProps=In,e.buildSlots=_n,e.checkCompatEnabled=ct,e.compile=function(e,t={}){return Xn(e,f({},fo,t,{nodeTransforms:[_o,...No,...t.nodeTransforms||[]],directiveTransforms:f({},xo,t.directiveTransforms||{}),transformHoist:null}))},e.createArrayExpression=ve,e.createAssignmentExpression=function(e,t){return{type:24,left:e,right:t,loc:me}},e.createBlockStatement=ke,e.createCacheExpression=Oe,e.createCallExpression=Ne,e.createCompilerError=k,e.createCompoundExpression=_e,e.createConditionalExpression=Te,e.createDOMCompilerError=go,e.createForLoopParams=vn,e.createFunctionExpression=xe,e.createIfStatement=function(e,t,n){return{type:23,test:e,consequent:t,alternate:n,loc:me}},e.createInterpolation=function(e,t){return{type:5,loc:t,content:h(e)?Ee(e,!1,t):e}},e.createObjectExpression=Se,e.createObjectProperty=be,e.createReturnStatement=function(e){return{type:26,returns:e,loc:me}},e.createRoot=ge,e.createSequenceExpression=function(e){return{type:25,expressions:e,loc:me}},e.createSimpleExpression=Ee,e.createStructuralDirectiveTransform=Jt,e.createTemplateLiteral=function(e){return{type:22,elements:e,loc:me}},e.createTransformContext=Wt,e.createVNodeCall=ye,e.extractIdentifiers=nn,e.findDir=He,e.findProp=We,e.generate=zt,e.generateCodeFrame=function(e,t=0,n=e.length){let o=e.split(/(\r?\n)/);const r=o.filter(((e,t)=>t%2==1));o=o.filter(((e,t)=>t%2==0));let s=0;const i=[];for(let c=0;c<o.length;c++)if(s+=o[c].length+(r[c]&&r[c].length||0),s>=t){for(let e=c-2;e<=c+2||n>s;e++){if(e<0||e>=o.length)continue;const l=e+1;i.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${o[e]}`);const a=o[e].length,p=r[e]&&r[e].length||0;if(e===c){const e=t-(s-(a+p)),o=Math.max(1,n>s?a-e:n-t);i.push(" | "+" ".repeat(e)+"^".repeat(o))}else if(e>c){if(n>s){const e=Math.max(Math.min(n-s,a),1);i.push(" | "+"^".repeat(e))}s+=a+p}}break}return i.join("\n")},e.getBaseTransformPreset=Zn,e.getInnerRange=Be,e.getMemoedVNodeCall=nt,e.getVNodeBlockHelper=Ze,e.getVNodeHelper=qe,e.hasDynamicKeyVBind=Ue,e.hasScopeRef=function e(t,n){if(!t||0===Object.keys(n).length)return!1;switch(t.type){case 1:for(let o=0;o<t.props.length;o++){const r=t.props[o];if(7===r.type&&(e(r.arg,n)||e(r.exp,n)))return!0}return t.children.some((t=>e(t,n)));case 11:return!!e(t.source,n)||t.children.some((t=>e(t,n)));case 9:return t.branches.some((t=>e(t,n)));case 10:return!!e(t.condition,n)||t.children.some((t=>e(t,n)));case 4:return!t.isStatic&&Pe(t.content)&&!!n[t.content];case 8:return t.children.some((t=>g(t)&&e(t,n)));case 5:case 12:return e(t.content,n);default:return!1}},e.helperNameMap=de,e.injectProp=et,e.isBindKey=Ke,e.isBuiltInType=Ie,e.isCoreComponent=Me,e.isFunctionType=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),e.isInDestructureAssignment=function(e,t){if(e&&("ObjectProperty"===e.type||"ArrayPattern"===e.type)){let e=t.length;for(;e--;){const n=t[e];if("AssignmentExpression"===n.type)return!0;if("ObjectProperty"!==n.type&&!n.type.endsWith("Pattern"))break}}return!1},e.isMemberExpression=De,e.isMemberExpressionBrowser=Ve,e.isMemberExpressionNode=Ae,e.isReferencedIdentifier=function(e,t,n){return!1},e.isSimpleIdentifier=Pe,e.isSlotOutlet=Ye,e.isStaticExp=Ce,e.isStaticProperty=on,e.isStaticPropertyKey=(e,t)=>on(t)&&t.key===e,e.isTemplateNode=ze,e.isText=Je,e.isVSlot=Ge,e.locStub=me,e.makeBlock=ot,e.noopDirectiveTransform=Qn,e.parse=function(e,t={}){return ut(e,f({},fo,t))},e.parserOptions=fo,e.processExpression=rn,e.processFor=fn,e.processIf=cn,e.processSlotOutlet=$n,e.registerRuntimeHelpers=he,e.resolveComponentType=Cn,e.toValidAssetId=tt,e.trackSlotScopes=bn,e.trackVForSlotScopes=(e,t)=>{let n;if(ze(e)&&e.props.some(Ge)&&(n=He(e,"for"))){const e=n.parseResult=gn(n.exp);if(e){const{value:n,key:o,index:r}=e,{addIdentifiers:s,removeIdentifiers:i}=t;return n&&s(n),o&&s(o),r&&s(r),()=>{n&&i(n),o&&i(o),r&&i(r)}}}},e.transform=Kt,e.transformBind=An,e.transformElement=kn,e.transformExpression=(e,t)=>{if(5===e.type)e.content=rn(e.content,t);else if(1===e.type)for(let n=0;n<e.props.length;n++){const o=e.props[n];if(7===o.type&&"for"!==o.name){const e=o.exp,n=o.arg;!e||4!==e.type||"on"===o.name&&n||(o.exp=rn(e,t,"slot"===o.name)),n&&4===n.type&&!n.isStatic&&(o.arg=rn(n,t))}}},e.transformModel=Hn,e.transformOn=Vn,e.transformStyle=ho,e.traverseNode=Ut,e.walkBlockDeclarations=function(e,t){for(const n of e.body)if("VariableDeclaration"===n.type){if(n.declare)continue;for(const e of n.declarations)for(const n of nn(e.id))t(n)}else if("FunctionDeclaration"===n.type||"ClassDeclaration"===n.type){if(n.declare||!n.id)continue;t(n.id)}},e.walkFunctionParams=function(e,t){for(const n of e.params)for(const e of nn(n))t(e)},e.walkIdentifiers=function(e,t,n=!1,o=[],r=Object.create(null)){},e.warnDeprecation=function(e,t,n,...o){if("suppress-warning"===st(e,t))return;const{message:r,link:s}=rt[e],i=`(deprecation ${e}) ${"function"==typeof r?r(...o):r}${s?`\n Details: ${s}`:""}`,c=new SyntaxError(i);c.code=e,n&&(c.loc=n),t.onWarn(c)},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
1
+ var VueCompilerDOM=function(e){"use strict";function t(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r<o.length;r++)n[o[r]]=!0;return t?e=>!!n[e.toLowerCase()]:e=>!!n[e]}const n=/;(?![^(]*\))/g,o=/:(.+)/;const r=t("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"),s=t("svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"),i=t("area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr"),c={},l=()=>{},a=()=>!1,p=/^on[^a-z]/,u=e=>p.test(e),f=Object.assign,d=Array.isArray,h=e=>"string"==typeof e,m=e=>"symbol"==typeof e,g=e=>null!==e&&"object"==typeof e,y=t(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),v=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},S=/-(\w)/g,b=v((e=>e.replace(S,((e,t)=>t?t.toUpperCase():"")))),E=/\B([A-Z])/g,N=v((e=>e.replace(E,"-$1").toLowerCase())),_=v((e=>e.charAt(0).toUpperCase()+e.slice(1))),x=v((e=>e?`on${_(e)}`:""));function T(e){throw e}function O(e){}function k(e,t,n,o){const r=new SyntaxError(String(e));return r.code=e,r.loc=t,r}const C=Symbol(""),I=Symbol(""),M=Symbol(""),R=Symbol(""),P=Symbol(""),w=Symbol(""),$=Symbol(""),L=Symbol(""),V=Symbol(""),A=Symbol(""),D=Symbol(""),B=Symbol(""),F=Symbol(""),j=Symbol(""),H=Symbol(""),W=Symbol(""),K=Symbol(""),U=Symbol(""),J=Symbol(""),G=Symbol(""),z=Symbol(""),Y=Symbol(""),q=Symbol(""),Z=Symbol(""),X=Symbol(""),Q=Symbol(""),ee=Symbol(""),te=Symbol(""),ne=Symbol(""),oe=Symbol(""),re=Symbol(""),se=Symbol(""),ie=Symbol(""),ce=Symbol(""),le=Symbol(""),ae=Symbol(""),pe=Symbol(""),ue=Symbol(""),fe=Symbol(""),de={[C]:"Fragment",[I]:"Teleport",[M]:"Suspense",[R]:"KeepAlive",[P]:"BaseTransition",[w]:"openBlock",[$]:"createBlock",[L]:"createElementBlock",[V]:"createVNode",[A]:"createElementVNode",[D]:"createCommentVNode",[B]:"createTextVNode",[F]:"createStaticVNode",[j]:"resolveComponent",[H]:"resolveDynamicComponent",[W]:"resolveDirective",[K]:"resolveFilter",[U]:"withDirectives",[J]:"renderList",[G]:"renderSlot",[z]:"createSlots",[Y]:"toDisplayString",[q]:"mergeProps",[Z]:"normalizeClass",[X]:"normalizeStyle",[Q]:"normalizeProps",[ee]:"guardReactiveProps",[te]:"toHandlers",[ne]:"camelize",[oe]:"capitalize",[re]:"toHandlerKey",[se]:"setBlockTracking",[ie]:"pushScopeId",[ce]:"popScopeId",[le]:"withCtx",[ae]:"unref",[pe]:"isRef",[ue]:"withMemo",[fe]:"isMemoSame"};function he(e){Object.getOwnPropertySymbols(e).forEach((t=>{de[t]=e[t]}))}const me={source:"",start:{line:1,column:1,offset:0},end:{line:1,column:1,offset:0}};function ge(e,t=me){return{type:0,children:e,helpers:[],components:[],directives:[],hoists:[],imports:[],cached:0,temps:0,codegenNode:void 0,loc:t}}function ye(e,t,n,o,r,s,i,c=!1,l=!1,a=!1,p=me){return e&&(c?(e.helper(w),e.helper(Ze(e.inSSR,a))):e.helper(qe(e.inSSR,a)),i&&e.helper(U)),{type:13,tag:t,props:n,children:o,patchFlag:r,dynamicProps:s,directives:i,isBlock:c,disableTracking:l,isComponent:a,loc:p}}function ve(e,t=me){return{type:17,loc:t,elements:e}}function Se(e,t=me){return{type:15,loc:t,properties:e}}function be(e,t){return{type:16,loc:me,key:h(e)?Ee(e,!0):e,value:t}}function Ee(e,t=!1,n=me,o=0){return{type:4,loc:n,content:e,isStatic:t,constType:t?3:o}}function Ne(e,t=me){return{type:8,loc:t,children:e}}function _e(e,t=[],n=me){return{type:14,loc:n,callee:e,arguments:t}}function xe(e,t,n=!1,o=!1,r=me){return{type:18,params:e,returns:t,newline:n,isSlot:o,loc:r}}function Te(e,t,n,o=!0){return{type:19,test:e,consequent:t,alternate:n,newline:o,loc:me}}function Oe(e,t,n=!1){return{type:20,index:e,value:t,isVNode:n,loc:me}}function ke(e){return{type:21,body:e,loc:me}}const Ce=e=>4===e.type&&e.isStatic,Ie=(e,t)=>e===t||e===N(t);function Me(e){return Ie(e,"Teleport")?I:Ie(e,"Suspense")?M:Ie(e,"KeepAlive")?R:Ie(e,"BaseTransition")?P:void 0}const Re=/^\d|[^\$\w]/,Pe=e=>!Re.test(e),we=/[A-Za-z_$\xA0-\uFFFF]/,$e=/[\.\?\w$\xA0-\uFFFF]/,Le=/\s+[.[]\s*|\s*[.[]\s+/g,Ve=e=>{e=e.trim().replace(Le,(e=>e.trim()));let t=0,n=[],o=0,r=0,s=null;for(let i=0;i<e.length;i++){const c=e.charAt(i);switch(t){case 0:if("["===c)n.push(t),t=1,o++;else if("("===c)n.push(t),t=2,r++;else if(!(0===i?we:$e).test(c))return!1;break;case 1:"'"===c||'"'===c||"`"===c?(n.push(t),t=3,s=c):"["===c?o++:"]"===c&&(--o||(t=n.pop()));break;case 2:if("'"===c||'"'===c||"`"===c)n.push(t),t=3,s=c;else if("("===c)r++;else if(")"===c){if(i===e.length-1)return!1;--r||(t=n.pop())}break;case 3:c===s&&(t=n.pop(),s=null)}}return!o&&!r},Ae=l,De=Ve;function Be(e,t,n){const o={source:e.source.slice(t,t+n),start:Fe(e.start,e.source,t),end:e.end};return null!=n&&(o.end=Fe(e.start,e.source,t+n)),o}function Fe(e,t,n=t.length){return je(f({},e),t,n)}function je(e,t,n=t.length){let o=0,r=-1;for(let s=0;s<n;s++)10===t.charCodeAt(s)&&(o++,r=s);return e.offset+=n,e.line+=o,e.column=-1===r?e.column+n:n-r,e}function He(e,t,n=!1){for(let o=0;o<e.props.length;o++){const r=e.props[o];if(7===r.type&&(n||r.exp)&&(h(t)?r.name===t:t.test(r.name)))return r}}function We(e,t,n=!1,o=!1){for(let r=0;r<e.props.length;r++){const s=e.props[r];if(6===s.type){if(n)continue;if(s.name===t&&(s.value||o))return s}else if("bind"===s.name&&(s.exp||o)&&Ke(s.arg,t))return s}}function Ke(e,t){return!(!e||!Ce(e)||e.content!==t)}function Ue(e){return e.props.some((e=>!(7!==e.type||"bind"!==e.name||e.arg&&4===e.arg.type&&e.arg.isStatic)))}function Je(e){return 5===e.type||2===e.type}function Ge(e){return 7===e.type&&"slot"===e.name}function ze(e){return 1===e.type&&3===e.tagType}function Ye(e){return 1===e.type&&2===e.tagType}function qe(e,t){return e||t?V:A}function Ze(e,t){return e||t?$:L}const Xe=new Set([Q,ee]);function Qe(e,t=[]){if(e&&!h(e)&&14===e.type){const n=e.callee;if(!h(n)&&Xe.has(n))return Qe(e.arguments[0],t.concat(e))}return[e,t]}function et(e,t,n){let o,r,s=13===e.type?e.props:e.arguments[2],i=[];if(s&&!h(s)&&14===s.type){const e=Qe(s);s=e[0],i=e[1],r=i[i.length-1]}if(null==s||h(s))o=Se([t]);else if(14===s.type){const e=s.arguments[0];h(e)||15!==e.type?s.callee===te?o=_e(n.helper(q),[Se([t]),s]):s.arguments.unshift(Se([t])):e.properties.unshift(t),!o&&(o=s)}else if(15===s.type){let e=!1;if(4===t.key.type){const n=t.key.content;e=s.properties.some((e=>4===e.key.type&&e.key.content===n))}e||s.properties.unshift(t),o=s}else o=_e(n.helper(q),[Se([t]),s]),r&&r.callee===ee&&(r=i[i.length-2]);13===e.type?r?r.arguments[0]=o:e.props=o:r?r.arguments[0]=o:e.arguments[2]=o}function tt(e,t){return`_${t}_${e.replace(/[^\w]/g,((t,n)=>"-"===t?"_":e.charCodeAt(n).toString()))}`}function nt(e){return 14===e.type&&e.callee===ue?e.arguments[1].returns:e}function ot(e,{helper:t,removeHelper:n,inSSR:o}){e.isBlock||(e.isBlock=!0,n(qe(o,e.isComponent)),t(w),t(Ze(o,e.isComponent)))}const rt={COMPILER_IS_ON_ELEMENT:{message:'Platform-native elements with "is" prop will no longer be treated as components in Vue 3 unless the "is" value is explicitly prefixed with "vue:".',link:"https://v3.vuejs.org/guide/migration/custom-elements-interop.html"},COMPILER_V_BIND_SYNC:{message:e=>`.sync modifier for v-bind has been removed. Use v-model with argument instead. \`v-bind:${e}.sync\` should be changed to \`v-model:${e}\`.`,link:"https://v3.vuejs.org/guide/migration/v-model.html"},COMPILER_V_BIND_PROP:{message:".prop modifier for v-bind has been removed and no longer necessary. Vue 3 will automatically set a binding as DOM property when appropriate."},COMPILER_V_BIND_OBJECT_ORDER:{message:'v-bind="obj" usage is now order sensitive and behaves like JavaScript object spread: it will now overwrite an existing non-mergeable attribute that appears before v-bind in the case of conflict. To retain 2.x behavior, move v-bind to make it the first attribute. You can also suppress this warning if the usage is intended.',link:"https://v3.vuejs.org/guide/migration/v-bind.html"},COMPILER_V_ON_NATIVE:{message:".native modifier for v-on has been removed as is no longer necessary.",link:"https://v3.vuejs.org/guide/migration/v-on-native-modifier-removed.html"},COMPILER_V_IF_V_FOR_PRECEDENCE:{message:"v-if / v-for precedence when used on the same element has changed in Vue 3: v-if now takes higher precedence and will no longer have access to v-for scope variables. It is best to avoid the ambiguity with <template> tags or use a computed property that filters v-for data source.",link:"https://v3.vuejs.org/guide/migration/v-if-v-for.html"},COMPILER_NATIVE_TEMPLATE:{message:"<template> with no special directives will render as a native template element instead of its inner content in Vue 3."},COMPILER_INLINE_TEMPLATE:{message:'"inline-template" has been removed in Vue 3.',link:"https://v3.vuejs.org/guide/migration/inline-template-attribute.html"},COMPILER_FILTER:{message:'filters have been removed in Vue 3. The "|" symbol will be treated as native JavaScript bitwise OR operator. Use method calls or computed properties instead.',link:"https://v3.vuejs.org/guide/migration/filters.html"}};function st(e,t){const n=t.options?t.options.compatConfig:t.compatConfig,o=n&&n[e];return"MODE"===e?o||3:o}function it(e,t){const n=st("MODE",t),o=st(e,t);return 3===n?!0===o:!1!==o}function ct(e,t,n,...o){return it(e,t)}const lt=/&(gt|lt|amp|apos|quot);/g,at={gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},pt={delimiters:["{{","}}"],getNamespace:()=>0,getTextMode:()=>0,isVoidTag:a,isPreTag:a,isCustomElement:a,decodeEntities:e=>e.replace(lt,((e,t)=>at[t])),onError:T,onWarn:O,comments:!1};function ut(e,t={}){const n=function(e,t){const n=f({},pt);let o;for(o in t)n[o]=void 0===t[o]?pt[o]:t[o];return{options:n,column:1,line:1,offset:0,originalSource:e,source:e,inPre:!1,inVPre:!1,onWarn:n.onWarn}}(e,t),o=Tt(n);return ge(ft(n,0,[]),Ot(n,o))}function ft(e,t,n){const o=kt(n),r=o?o.ns:0,s=[];for(;!Pt(e,t,n);){const i=e.source;let c;if(0===t||1===t)if(!e.inVPre&&Ct(i,e.options.delimiters[0]))c=Nt(e,t);else if(0===t&&"<"===i[0])if(1===i.length);else if("!"===i[1])c=Ct(i,"\x3c!--")?mt(e):Ct(i,"<!DOCTYPE")?gt(e):Ct(i,"<![CDATA[")&&0!==r?ht(e,n):gt(e);else if("/"===i[1])if(2===i.length);else{if(">"===i[2]){It(e,3);continue}if(/[a-z]/i.test(i[2])){St(e,1,o);continue}c=gt(e)}else/[a-z]/i.test(i[1])?(c=yt(e,n),it("COMPILER_NATIVE_TEMPLATE",e)&&c&&"template"===c.tag&&!c.props.some((e=>7===e.type&&vt(e.name)))&&(c=c.children)):"?"===i[1]&&(c=gt(e));if(c||(c=_t(e,t)),d(c))for(let e=0;e<c.length;e++)dt(s,c[e]);else dt(s,c)}let i=!1;if(2!==t&&1!==t){const t="preserve"!==e.options.whitespace;for(let n=0;n<s.length;n++){const o=s[n];if(e.inPre||2!==o.type)3!==o.type||e.options.comments||(i=!0,s[n]=null);else if(/[^\t\r\n\f ]/.test(o.content))t&&(o.content=o.content.replace(/[\t\r\n\f ]+/g," "));else{const e=s[n-1],r=s[n+1];!e||!r||t&&(3===e.type||3===r.type||1===e.type&&1===r.type&&/[\r\n]/.test(o.content))?(i=!0,s[n]=null):o.content=" "}}if(e.inPre&&o&&e.options.isPreTag(o.tag)){const e=s[0];e&&2===e.type&&(e.content=e.content.replace(/^\r?\n/,""))}}return i?s.filter(Boolean):s}function dt(e,t){if(2===t.type){const n=kt(e);if(n&&2===n.type&&n.loc.end.offset===t.loc.start.offset)return n.content+=t.content,n.loc.end=t.loc.end,void(n.loc.source+=t.loc.source)}e.push(t)}function ht(e,t){It(e,9);const n=ft(e,3,t);return 0===e.source.length||It(e,3),n}function mt(e){const t=Tt(e);let n;const o=/--(\!)?>/.exec(e.source);if(o){n=e.source.slice(4,o.index);const t=e.source.slice(0,o.index);let r=1,s=0;for(;-1!==(s=t.indexOf("\x3c!--",r));)It(e,s-r+1),r=s+1;It(e,o.index+o[0].length-r+1)}else n=e.source.slice(4),It(e,e.source.length);return{type:3,content:n,loc:Ot(e,t)}}function gt(e){const t=Tt(e),n="?"===e.source[1]?1:2;let o;const r=e.source.indexOf(">");return-1===r?(o=e.source.slice(n),It(e,e.source.length)):(o=e.source.slice(n,r),It(e,r+1)),{type:3,content:o,loc:Ot(e,t)}}function yt(e,t){const n=e.inPre,o=e.inVPre,r=kt(t),s=St(e,0,r),i=e.inPre&&!n,c=e.inVPre&&!o;if(s.isSelfClosing||e.options.isVoidTag(s.tag))return i&&(e.inPre=!1),c&&(e.inVPre=!1),s;t.push(s);const l=e.options.getTextMode(s,r),a=ft(e,l,t);t.pop();{const t=s.props.find((e=>6===e.type&&"inline-template"===e.name));if(t&&ct("COMPILER_INLINE_TEMPLATE",e)){const n=Ot(e,s.loc.end);t.value={type:2,content:n.source,loc:n}}}if(s.children=a,wt(e.source,s.tag))St(e,1,r);else if(0===e.source.length&&"script"===s.tag.toLowerCase()){const e=a[0];e&&Ct(e.loc.source,"\x3c!--")}return s.loc=Ot(e,s.loc.start),i&&(e.inPre=!1),c&&(e.inVPre=!1),s}const vt=t("if,else,else-if,for,slot");function St(e,t,n){const o=Tt(e),r=/^<\/?([a-z][^\t\r\n\f />]*)/i.exec(e.source),s=r[1],i=e.options.getNamespace(s,n);It(e,r[0].length),Mt(e);const c=Tt(e),l=e.source;e.options.isPreTag(s)&&(e.inPre=!0);let a=bt(e,t);0===t&&!e.inVPre&&a.some((e=>7===e.type&&"pre"===e.name))&&(e.inVPre=!0,f(e,c),e.source=l,a=bt(e,t).filter((e=>"v-pre"!==e.name)));let p=!1;if(0===e.source.length||(p=Ct(e.source,"/>"),It(e,p?2:1)),1===t)return;let u=0;return e.inVPre||("slot"===s?u=2:"template"===s?a.some((e=>7===e.type&&vt(e.name)))&&(u=3):function(e,t,n){const o=n.options;if(o.isCustomElement(e))return!1;if("component"===e||/^[A-Z]/.test(e)||Me(e)||o.isBuiltInComponent&&o.isBuiltInComponent(e)||o.isNativeTag&&!o.isNativeTag(e))return!0;for(let r=0;r<t.length;r++){const e=t[r];if(6===e.type){if("is"===e.name&&e.value){if(e.value.content.startsWith("vue:"))return!0;if(ct("COMPILER_IS_ON_ELEMENT",n))return!0}}else{if("is"===e.name)return!0;if("bind"===e.name&&Ke(e.arg,"is")&&ct("COMPILER_IS_ON_ELEMENT",n))return!0}}}(s,a,e)&&(u=1)),{type:1,ns:i,tag:s,tagType:u,props:a,isSelfClosing:p,children:[],loc:Ot(e,o),codegenNode:void 0}}function bt(e,t){const n=[],o=new Set;for(;e.source.length>0&&!Ct(e.source,">")&&!Ct(e.source,"/>");){if(Ct(e.source,"/")){It(e,1),Mt(e);continue}const r=Et(e,o);6===r.type&&r.value&&"class"===r.name&&(r.value.content=r.value.content.replace(/\s+/g," ").trim()),0===t&&n.push(r),/^[^\t\r\n\f />]/.test(e.source),Mt(e)}return n}function Et(e,t){const n=Tt(e),o=/^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(e.source)[0];t.has(o),t.add(o);{const e=/["'<]/g;let t;for(;t=e.exec(o););}let r;It(e,o.length),/^[\t\r\n\f ]*=/.test(e.source)&&(Mt(e),It(e,1),Mt(e),r=function(e){const t=Tt(e);let n;const o=e.source[0],r='"'===o||"'"===o;if(r){It(e,1);const t=e.source.indexOf(o);-1===t?n=xt(e,e.source.length,4):(n=xt(e,t,4),It(e,1))}else{const t=/^[^\t\r\n\f >]+/.exec(e.source);if(!t)return;const o=/["'<=`]/g;let r;for(;r=o.exec(t[0]););n=xt(e,t[0].length,4)}return{content:n,isQuoted:r,loc:Ot(e,t)}}(e));const s=Ot(e,n);if(!e.inVPre&&/^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(o)){const t=/(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(o);let i,c=Ct(o,"."),l=t[1]||(c||Ct(o,":")?"bind":Ct(o,"@")?"on":"slot");if(t[2]){const r="slot"===l,s=o.lastIndexOf(t[2]),c=Ot(e,Rt(e,n,s),Rt(e,n,s+t[2].length+(r&&t[3]||"").length));let a=t[2],p=!0;a.startsWith("[")?(p=!1,a=a.endsWith("]")?a.slice(1,a.length-1):a.slice(1)):r&&(a+=t[3]||""),i={type:4,content:a,isStatic:p,constType:p?3:0,loc:c}}if(r&&r.isQuoted){const e=r.loc;e.start.offset++,e.start.column++,e.end=Fe(e.start,r.content),e.source=e.source.slice(1,-1)}const a=t[3]?t[3].slice(1).split("."):[];return c&&a.push("prop"),"bind"===l&&i&&a.includes("sync")&&ct("COMPILER_V_BIND_SYNC",e,0)&&(l="model",a.splice(a.indexOf("sync"),1)),{type:7,name:l,exp:r&&{type:4,content:r.content,isStatic:!1,constType:0,loc:r.loc},arg:i,modifiers:a,loc:s}}return!e.inVPre&&Ct(o,"v-"),{type:6,name:o,value:r&&{type:2,content:r.content,loc:r.loc},loc:s}}function Nt(e,t){const[n,o]=e.options.delimiters,r=e.source.indexOf(o,n.length);if(-1===r)return;const s=Tt(e);It(e,n.length);const i=Tt(e),c=Tt(e),l=r-n.length,a=e.source.slice(0,l),p=xt(e,l,t),u=p.trim(),f=p.indexOf(u);f>0&&je(i,a,f);return je(c,a,l-(p.length-u.length-f)),It(e,o.length),{type:5,content:{type:4,isStatic:!1,constType:0,content:u,loc:Ot(e,i,c)},loc:Ot(e,s)}}function _t(e,t){const n=3===t?["]]>"]:["<",e.options.delimiters[0]];let o=e.source.length;for(let s=0;s<n.length;s++){const t=e.source.indexOf(n[s],1);-1!==t&&o>t&&(o=t)}const r=Tt(e);return{type:2,content:xt(e,o,t),loc:Ot(e,r)}}function xt(e,t,n){const o=e.source.slice(0,t);return It(e,t),2!==n&&3!==n&&o.includes("&")?e.options.decodeEntities(o,4===n):o}function Tt(e){const{column:t,line:n,offset:o}=e;return{column:t,line:n,offset:o}}function Ot(e,t,n){return{start:t,end:n=n||Tt(e),source:e.originalSource.slice(t.offset,n.offset)}}function kt(e){return e[e.length-1]}function Ct(e,t){return e.startsWith(t)}function It(e,t){const{source:n}=e;je(e,n,t),e.source=n.slice(t)}function Mt(e){const t=/^[\t\r\n\f ]+/.exec(e.source);t&&It(e,t[0].length)}function Rt(e,t,n){return Fe(t,e.originalSource.slice(t.offset,n),n)}function Pt(e,t,n){const o=e.source;switch(t){case 0:if(Ct(o,"</"))for(let e=n.length-1;e>=0;--e)if(wt(o,n[e].tag))return!0;break;case 1:case 2:{const e=kt(n);if(e&&wt(o,e.tag))return!0;break}case 3:if(Ct(o,"]]>"))return!0}return!o}function wt(e,t){return Ct(e,"</")&&e.slice(2,2+t.length).toLowerCase()===t.toLowerCase()&&/[\t\r\n\f />]/.test(e[2+t.length]||">")}function $t(e,t){Vt(e,t,Lt(e,e.children[0]))}function Lt(e,t){const{children:n}=e;return 1===n.length&&1===t.type&&!Ye(t)}function Vt(e,t,n=!1){const{children:o}=e,r=o.length;let s=0;for(let i=0;i<o.length;i++){const e=o[i];if(1===e.type&&0===e.tagType){const o=n?0:At(e,t);if(o>0){if(o>=2){e.codegenNode.patchFlag="-1",e.codegenNode=t.hoist(e.codegenNode),s++;continue}}else{const n=e.codegenNode;if(13===n.type){const o=Ht(n);if((!o||512===o||1===o)&&Ft(e,t)>=2){const o=jt(e);o&&(n.props=t.hoist(o))}n.dynamicProps&&(n.dynamicProps=t.hoist(n.dynamicProps))}}}else 12===e.type&&At(e.content,t)>=2&&(e.codegenNode=t.hoist(e.codegenNode),s++);if(1===e.type){const n=1===e.tagType;n&&t.scopes.vSlot++,Vt(e,t),n&&t.scopes.vSlot--}else if(11===e.type)Vt(e,t,1===e.children.length);else if(9===e.type)for(let n=0;n<e.branches.length;n++)Vt(e.branches[n],t,1===e.branches[n].children.length)}s&&t.transformHoist&&t.transformHoist(o,t,e),s&&s===r&&1===e.type&&0===e.tagType&&e.codegenNode&&13===e.codegenNode.type&&d(e.codegenNode.children)&&(e.codegenNode.children=t.hoist(ve(e.codegenNode.children)))}function At(e,t){const{constantCache:n}=t;switch(e.type){case 1:if(0!==e.tagType)return 0;const o=n.get(e);if(void 0!==o)return o;const r=e.codegenNode;if(13!==r.type)return 0;if(r.isBlock&&"svg"!==e.tag&&"foreignObject"!==e.tag)return 0;if(Ht(r))return n.set(e,0),0;{let o=3;const s=Ft(e,t);if(0===s)return n.set(e,0),0;s<o&&(o=s);for(let r=0;r<e.children.length;r++){const s=At(e.children[r],t);if(0===s)return n.set(e,0),0;s<o&&(o=s)}if(o>1)for(let r=0;r<e.props.length;r++){const s=e.props[r];if(7===s.type&&"bind"===s.name&&s.exp){const r=At(s.exp,t);if(0===r)return n.set(e,0),0;r<o&&(o=r)}}return r.isBlock&&(t.removeHelper(w),t.removeHelper(Ze(t.inSSR,r.isComponent)),r.isBlock=!1,t.helper(qe(t.inSSR,r.isComponent))),n.set(e,o),o}case 2:case 3:return 3;case 9:case 11:case 10:default:return 0;case 5:case 12:return At(e.content,t);case 4:return e.constType;case 8:let s=3;for(let n=0;n<e.children.length;n++){const o=e.children[n];if(h(o)||m(o))continue;const r=At(o,t);if(0===r)return 0;r<s&&(s=r)}return s}}const Dt=new Set([Z,X,Q,ee]);function Bt(e,t){if(14===e.type&&!h(e.callee)&&Dt.has(e.callee)){const n=e.arguments[0];if(4===n.type)return At(n,t);if(14===n.type)return Bt(n,t)}return 0}function Ft(e,t){let n=3;const o=jt(e);if(o&&15===o.type){const{properties:e}=o;for(let o=0;o<e.length;o++){const{key:r,value:s}=e[o],i=At(r,t);if(0===i)return i;let c;if(i<n&&(n=i),c=4===s.type?At(s,t):14===s.type?Bt(s,t):0,0===c)return c;c<n&&(n=c)}}return n}function jt(e){const t=e.codegenNode;if(13===t.type)return t.props}function Ht(e){const t=e.patchFlag;return t?parseInt(t,10):void 0}function Wt(e,{filename:t="",prefixIdentifiers:n=!1,hoistStatic:o=!1,cacheHandlers:r=!1,nodeTransforms:s=[],directiveTransforms:i={},transformHoist:a=null,isBuiltInComponent:p=l,isCustomElement:u=l,expressionPlugins:f=[],scopeId:d=null,slotted:m=!0,ssr:g=!1,inSSR:y=!1,ssrCssVars:v="",bindingMetadata:S=c,inline:E=!1,isTS:N=!1,onError:x=T,onWarn:k=O,compatConfig:C}){const I=t.replace(/\?.*$/,"").match(/([^/\\]+)\.\w+$/),M={selfName:I&&_(b(I[1])),prefixIdentifiers:n,hoistStatic:o,cacheHandlers:r,nodeTransforms:s,directiveTransforms:i,transformHoist:a,isBuiltInComponent:p,isCustomElement:u,expressionPlugins:f,scopeId:d,slotted:m,ssr:g,inSSR:y,ssrCssVars:v,bindingMetadata:S,inline:E,isTS:N,onError:x,onWarn:k,compatConfig:C,root:e,helpers:new Map,components:new Set,directives:new Set,hoists:[],imports:[],constantCache:new Map,temps:0,cached:0,identifiers:Object.create(null),scopes:{vFor:0,vSlot:0,vPre:0,vOnce:0},parent:null,currentNode:e,childIndex:0,inVOnce:!1,helper(e){const t=M.helpers.get(e)||0;return M.helpers.set(e,t+1),e},removeHelper(e){const t=M.helpers.get(e);if(t){const n=t-1;n?M.helpers.set(e,n):M.helpers.delete(e)}},helperString:e=>`_${de[M.helper(e)]}`,replaceNode(e){M.parent.children[M.childIndex]=M.currentNode=e},removeNode(e){const t=e?M.parent.children.indexOf(e):M.currentNode?M.childIndex:-1;e&&e!==M.currentNode?M.childIndex>t&&(M.childIndex--,M.onNodeRemoved()):(M.currentNode=null,M.onNodeRemoved()),M.parent.children.splice(t,1)},onNodeRemoved:()=>{},addIdentifiers(e){},removeIdentifiers(e){},hoist(e){h(e)&&(e=Ee(e)),M.hoists.push(e);const t=Ee(`_hoisted_${M.hoists.length}`,!1,e.loc,2);return t.hoisted=e,t},cache:(e,t=!1)=>Oe(M.cached++,e,t)};return M.filters=new Set,M}function Kt(e,t){const n=Wt(e,t);Ut(e,n),t.hoistStatic&&$t(e,n),t.ssr||function(e,t){const{helper:n}=t,{children:o}=e;if(1===o.length){const n=o[0];if(Lt(e,n)&&n.codegenNode){const o=n.codegenNode;13===o.type&&ot(o,t),e.codegenNode=o}else e.codegenNode=n}else if(o.length>1){let o=64;e.codegenNode=ye(t,n(C),void 0,e.children,o+"",void 0,void 0,!0,void 0,!1)}}(e,n),e.helpers=[...n.helpers.keys()],e.components=[...n.components],e.directives=[...n.directives],e.imports=n.imports,e.hoists=n.hoists,e.temps=n.temps,e.cached=n.cached,e.filters=[...n.filters]}function Ut(e,t){t.currentNode=e;const{nodeTransforms:n}=t,o=[];for(let s=0;s<n.length;s++){const r=n[s](e,t);if(r&&(d(r)?o.push(...r):o.push(r)),!t.currentNode)return;e=t.currentNode}switch(e.type){case 3:t.ssr||t.helper(D);break;case 5:t.ssr||t.helper(Y);break;case 9:for(let n=0;n<e.branches.length;n++)Ut(e.branches[n],t);break;case 10:case 11:case 1:case 0:!function(e,t){let n=0;const o=()=>{n--};for(;n<e.children.length;n++){const r=e.children[n];h(r)||(t.parent=e,t.childIndex=n,t.onNodeRemoved=o,Ut(r,t))}}(e,t)}t.currentNode=e;let r=o.length;for(;r--;)o[r]()}function Jt(e,t){const n=h(e)?t=>t===e:t=>e.test(t);return(e,o)=>{if(1===e.type){const{props:r}=e;if(3===e.tagType&&r.some(Ge))return;const s=[];for(let i=0;i<r.length;i++){const c=r[i];if(7===c.type&&n(c.name)){r.splice(i,1),i--;const n=t(e,c,o);n&&s.push(n)}}return s}}}const Gt="/*#__PURE__*/";function zt(e,t={}){const n=function(e,{mode:t="function",prefixIdentifiers:n="module"===t,sourceMap:o=!1,filename:r="template.vue.html",scopeId:s=null,optimizeImports:i=!1,runtimeGlobalName:c="Vue",runtimeModuleName:l="vue",ssrRuntimeModuleName:a="vue/server-renderer",ssr:p=!1,isTS:u=!1,inSSR:f=!1}){const d={mode:t,prefixIdentifiers:n,sourceMap:o,filename:r,scopeId:s,optimizeImports:i,runtimeGlobalName:c,runtimeModuleName:l,ssrRuntimeModuleName:a,ssr:p,isTS:u,inSSR:f,source:e.loc.source,code:"",column:1,line:1,offset:0,indentLevel:0,pure:!1,map:void 0,helper:e=>`_${de[e]}`,push(e,t){d.code+=e},indent(){h(++d.indentLevel)},deindent(e=!1){e?--d.indentLevel:h(--d.indentLevel)},newline(){h(d.indentLevel)}};function h(e){d.push("\n"+" ".repeat(e))}return d}(e,t);t.onContextCreated&&t.onContextCreated(n);const{mode:o,push:r,prefixIdentifiers:s,indent:i,deindent:c,newline:l,ssr:a}=n,p=e.helpers.length>0,u=!s&&"module"!==o;!function(e,t){const{push:n,newline:o,runtimeGlobalName:r}=t,s=r,i=e=>`${de[e]}: _${de[e]}`;if(e.helpers.length>0&&(n(`const _Vue = ${s}\n`),e.hoists.length)){n(`const { ${[V,A,D,B,F].filter((t=>e.helpers.includes(t))).map(i).join(", ")} } = _Vue\n`)}(function(e,t){if(!e.length)return;t.pure=!0;const{push:n,newline:o}=t;o();for(let r=0;r<e.length;r++){const s=e[r];s&&(n(`const _hoisted_${r+1} = `),Xt(s,t),o())}t.pure=!1})(e.hoists,t),o(),n("return ")}(e,n);if(r(`function ${a?"ssrRender":"render"}(${(a?["_ctx","_push","_parent","_attrs"]:["_ctx","_cache"]).join(", ")}) {`),i(),u&&(r("with (_ctx) {"),i(),p&&(r(`const { ${e.helpers.map((e=>`${de[e]}: _${de[e]}`)).join(", ")} } = _Vue`),r("\n"),l())),e.components.length&&(Yt(e.components,"component",n),(e.directives.length||e.temps>0)&&l()),e.directives.length&&(Yt(e.directives,"directive",n),e.temps>0&&l()),e.filters&&e.filters.length&&(l(),Yt(e.filters,"filter",n),l()),e.temps>0){r("let ");for(let t=0;t<e.temps;t++)r(`${t>0?", ":""}_temp${t}`)}return(e.components.length||e.directives.length||e.temps)&&(r("\n"),l()),a||r("return "),e.codegenNode?Xt(e.codegenNode,n):r("null"),u&&(c(),r("}")),c(),r("}"),{ast:e,code:n.code,preamble:"",map:n.map?n.map.toJSON():void 0}}function Yt(e,t,{helper:n,push:o,newline:r,isTS:s}){const i=n("filter"===t?K:"component"===t?j:W);for(let c=0;c<e.length;c++){let n=e[c];const l=n.endsWith("__self");l&&(n=n.slice(0,-6)),o(`const ${tt(n,t)} = ${i}(${JSON.stringify(n)}${l?", true":""})${s?"!":""}`),c<e.length-1&&r()}}function qt(e,t){const n=e.length>3||!1;t.push("["),n&&t.indent(),Zt(e,t,n),n&&t.deindent(),t.push("]")}function Zt(e,t,n=!1,o=!0){const{push:r,newline:s}=t;for(let i=0;i<e.length;i++){const c=e[i];h(c)?r(c):d(c)?qt(c,t):Xt(c,t),i<e.length-1&&(n?(o&&r(","),s()):o&&r(", "))}}function Xt(e,t){if(h(e))t.push(e);else if(m(e))t.push(t.helper(e));else switch(e.type){case 1:case 9:case 11:case 12:Xt(e.codegenNode,t);break;case 2:!function(e,t){t.push(JSON.stringify(e.content),e)}(e,t);break;case 4:Qt(e,t);break;case 5:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(Gt);n(`${o(Y)}(`),Xt(e.content,t),n(")")}(e,t);break;case 8:en(e,t);break;case 3:!function(e,t){const{push:n,helper:o,pure:r}=t;r&&n(Gt);n(`${o(D)}(${JSON.stringify(e.content)})`,e)}(e,t);break;case 13:!function(e,t){const{push:n,helper:o,pure:r}=t,{tag:s,props:i,children:c,patchFlag:l,dynamicProps:a,directives:p,isBlock:u,disableTracking:f,isComponent:d}=e;p&&n(o(U)+"(");u&&n(`(${o(w)}(${f?"true":""}), `);r&&n(Gt);const h=u?Ze(t.inSSR,d):qe(t.inSSR,d);n(o(h)+"(",e),Zt(function(e){let t=e.length;for(;t--&&null==e[t];);return e.slice(0,t+1).map((e=>e||"null"))}([s,i,c,l,a]),t),n(")"),u&&n(")");p&&(n(", "),Xt(p,t),n(")"))}(e,t);break;case 14:!function(e,t){const{push:n,helper:o,pure:r}=t,s=h(e.callee)?e.callee:o(e.callee);r&&n(Gt);n(s+"(",e),Zt(e.arguments,t),n(")")}(e,t);break;case 15:!function(e,t){const{push:n,indent:o,deindent:r,newline:s}=t,{properties:i}=e;if(!i.length)return void n("{}",e);const c=i.length>1||!1;n(c?"{":"{ "),c&&o();for(let l=0;l<i.length;l++){const{key:e,value:o}=i[l];tn(e,t),n(": "),Xt(o,t),l<i.length-1&&(n(","),s())}c&&r(),n(c?"}":" }")}(e,t);break;case 17:!function(e,t){qt(e.elements,t)}(e,t);break;case 18:!function(e,t){const{push:n,indent:o,deindent:r}=t,{params:s,returns:i,body:c,newline:l,isSlot:a}=e;a&&n(`_${de[le]}(`);n("(",e),d(s)?Zt(s,t):s&&Xt(s,t);n(") => "),(l||c)&&(n("{"),o());i?(l&&n("return "),d(i)?qt(i,t):Xt(i,t)):c&&Xt(c,t);(l||c)&&(r(),n("}"));a&&(e.isNonScopedSlot&&n(", undefined, true"),n(")"))}(e,t);break;case 19:!function(e,t){const{test:n,consequent:o,alternate:r,newline:s}=e,{push:i,indent:c,deindent:l,newline:a}=t;if(4===n.type){const e=!Pe(n.content);e&&i("("),Qt(n,t),e&&i(")")}else i("("),Xt(n,t),i(")");s&&c(),t.indentLevel++,s||i(" "),i("? "),Xt(o,t),t.indentLevel--,s&&a(),s||i(" "),i(": ");const p=19===r.type;p||t.indentLevel++;Xt(r,t),p||t.indentLevel--;s&&l(!0)}(e,t);break;case 20:!function(e,t){const{push:n,helper:o,indent:r,deindent:s,newline:i}=t;n(`_cache[${e.index}] || (`),e.isVNode&&(r(),n(`${o(se)}(-1),`),i());n(`_cache[${e.index}] = `),Xt(e.value,t),e.isVNode&&(n(","),i(),n(`${o(se)}(1),`),i(),n(`_cache[${e.index}]`),s());n(")")}(e,t);break;case 21:Zt(e.body,t,!0,!1)}}function Qt(e,t){const{content:n,isStatic:o}=e;t.push(o?JSON.stringify(n):n,e)}function en(e,t){for(let n=0;n<e.children.length;n++){const o=e.children[n];h(o)?t.push(o):Xt(o,t)}}function tn(e,t){const{push:n}=t;if(8===e.type)n("["),en(e,t),n("]");else if(e.isStatic){n(Pe(e.content)?e.content:JSON.stringify(e.content),e)}else n(`[${e.content}]`,e)}function nn(e,t=[]){switch(e.type){case"Identifier":t.push(e);break;case"MemberExpression":let n=e;for(;"MemberExpression"===n.type;)n=n.object;t.push(n);break;case"ObjectPattern":for(const o of e.properties)nn("RestElement"===o.type?o.argument:o.value,t);break;case"ArrayPattern":e.elements.forEach((e=>{e&&nn(e,t)}));break;case"RestElement":nn(e.argument,t);break;case"AssignmentPattern":nn(e.left,t)}return t}const on=e=>e&&("ObjectProperty"===e.type||"ObjectMethod"===e.type)&&!e.computed;function rn(e,t,n=!1,o=!1,r=Object.create(t.identifiers)){return e}const sn=Jt(/^(if|else|else-if)$/,((e,t,n)=>cn(e,t,n,((e,t,o)=>{const r=n.parent.children;let s=r.indexOf(e),i=0;for(;s-- >=0;){const e=r[s];e&&9===e.type&&(i+=e.branches.length)}return()=>{if(o)e.codegenNode=an(t,i,n);else{const o=function(e){for(;;)if(19===e.type){if(19!==e.alternate.type)return e;e=e.alternate}else 20===e.type&&(e=e.value)}(e.codegenNode);o.alternate=an(t,i+e.branches.length-1,n)}}}))));function cn(e,t,n,o){if(!("else"===t.name||t.exp&&t.exp.content.trim())){t.exp=Ee("true",!1,t.exp?t.exp.loc:e.loc)}if("if"===t.name){const r=ln(e,t),s={type:9,loc:e.loc,branches:[r]};if(n.replaceNode(s),o)return o(s,r,!0)}else{const r=n.parent.children;let s=r.indexOf(e);for(;s-- >=-1;){const i=r[s];if(!i||2!==i.type||i.content.trim().length){if(i&&9===i.type){n.removeNode();const r=ln(e,t);i.branches.push(r);const s=o&&o(i,r,!1);Ut(r,n),s&&s(),n.currentNode=null}break}n.removeNode(i)}}}function ln(e,t){return{type:10,loc:e.loc,condition:"else"===t.name?void 0:t.exp,children:3!==e.tagType||He(e,"for")?[e]:e.children,userKey:We(e,"key")}}function an(e,t,n){return e.condition?Te(e.condition,pn(e,t,n),_e(n.helper(D),['""',"true"])):pn(e,t,n)}function pn(e,t,n){const{helper:o}=n,r=be("key",Ee(`${t}`,!1,me,2)),{children:s}=e,i=s[0];if(1!==s.length||1!==i.type){if(1===s.length&&11===i.type){const e=i.codegenNode;return et(e,r,n),e}{let t=64;return ye(n,o(C),Se([r]),s,t+"",void 0,void 0,!0,!1,!1,e.loc)}}{const e=i.codegenNode,t=nt(e);return 13===t.type&&ot(t,n),et(t,r,n),e}}const un=Jt("for",((e,t,n)=>{const{helper:o,removeHelper:r}=n;return fn(e,t,n,(t=>{const s=_e(o(J),[t.source]),i=ze(e),c=He(e,"memo"),l=We(e,"key"),a=l&&(6===l.type?Ee(l.value.content,!0):l.exp),p=l?be("key",a):null,u=4===t.source.type&&t.source.constType>0,f=u?64:l?128:256;return t.codegenNode=ye(n,o(C),void 0,s,f+"",void 0,void 0,!0,!u,!1,e.loc),()=>{let l;const{children:f}=t,d=1!==f.length||1!==f[0].type,h=Ye(e)?e:i&&1===e.children.length&&Ye(e.children[0])?e.children[0]:null;if(h?(l=h.codegenNode,i&&p&&et(l,p,n)):d?l=ye(n,o(C),p?Se([p]):void 0,e.children,"64",void 0,void 0,!0,void 0,!1):(l=f[0].codegenNode,i&&p&&et(l,p,n),l.isBlock!==!u&&(l.isBlock?(r(w),r(Ze(n.inSSR,l.isComponent))):r(qe(n.inSSR,l.isComponent))),l.isBlock=!u,l.isBlock?(o(w),o(Ze(n.inSSR,l.isComponent))):o(qe(n.inSSR,l.isComponent))),c){const e=xe(vn(t.parseResult,[Ee("_cached")]));e.body=ke([Ne(["const _memo = (",c.exp,")"]),Ne(["if (_cached",...a?[" && _cached.key === ",a]:[],` && ${n.helperString(fe)}(_cached, _memo)) return _cached`]),Ne(["const _item = ",l]),Ee("_item.memo = _memo"),Ee("return _item")]),s.arguments.push(e,Ee("_cache"),Ee(String(n.cached++)))}else s.arguments.push(xe(vn(t.parseResult),l,!0))}}))}));function fn(e,t,n,o){if(!t.exp)return;const r=gn(t.exp);if(!r)return;const{scopes:s}=n,{source:i,value:c,key:l,index:a}=r,p={type:11,loc:t.loc,source:i,valueAlias:c,keyAlias:l,objectIndexAlias:a,parseResult:r,children:ze(e)?e.children:[e]};n.replaceNode(p),s.vFor++;const u=o&&o(p);return()=>{s.vFor--,u&&u()}}const dn=/([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/,hn=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,mn=/^\(|\)$/g;function gn(e,t){const n=e.loc,o=e.content,r=o.match(dn);if(!r)return;const[,s,i]=r,c={source:yn(n,i.trim(),o.indexOf(i,s.length)),value:void 0,key:void 0,index:void 0};let l=s.trim().replace(mn,"").trim();const a=s.indexOf(l),p=l.match(hn);if(p){l=l.replace(hn,"").trim();const e=p[1].trim();let t;if(e&&(t=o.indexOf(e,a+l.length),c.key=yn(n,e,t)),p[2]){const r=p[2].trim();r&&(c.index=yn(n,r,o.indexOf(r,c.key?t+e.length:a+l.length)))}}return l&&(c.value=yn(n,l,a)),c}function yn(e,t,n){return Ee(t,!1,Be(e,n,t.length))}function vn({value:e,key:t,index:n},o=[]){return function(e){let t=e.length;for(;t--&&!e[t];);return e.slice(0,t+1).map(((e,t)=>e||Ee("_".repeat(t+1),!1)))}([e,t,n,...o])}const Sn=Ee("undefined",!1),bn=(e,t)=>{if(1===e.type&&(1===e.tagType||3===e.tagType)){const n=He(e,"slot");if(n)return t.scopes.vSlot++,()=>{t.scopes.vSlot--}}},En=(e,t,n)=>xe(e,t,!1,!0,t.length?t[0].loc:n);function Nn(e,t,n=En){t.helper(le);const{children:o,loc:r}=e,s=[],i=[];let c=t.scopes.vSlot>0||t.scopes.vFor>0;const l=He(e,"slot",!0);if(l){const{arg:e,exp:t}=l;e&&!Ce(e)&&(c=!0),s.push(be(e||Ee("default",!0),n(t,o,r)))}let a=!1,p=!1;const u=[],f=new Set;for(let m=0;m<o.length;m++){const e=o[m];let r;if(!ze(e)||!(r=He(e,"slot",!0))){3!==e.type&&u.push(e);continue}if(l)break;a=!0;const{children:d,loc:h}=e,{arg:g=Ee("default",!0),exp:y}=r;let v;Ce(g)?v=g?g.content:"default":c=!0;const S=n(y,d,h);let b,E,N;if(b=He(e,"if"))c=!0,i.push(Te(b.exp,_n(g,S),Sn));else if(E=He(e,/^else(-if)?$/,!0)){let e,t=m;for(;t--&&(e=o[t],3===e.type););if(e&&ze(e)&&He(e,"if")){o.splice(m,1),m--;let e=i[i.length-1];for(;19===e.alternate.type;)e=e.alternate;e.alternate=E.exp?Te(E.exp,_n(g,S),Sn):_n(g,S)}}else if(N=He(e,"for")){c=!0;const e=N.parseResult||gn(N.exp);e&&i.push(_e(t.helper(J),[e.source,xe(vn(e),_n(g,S),!0)]))}else{if(v){if(f.has(v))continue;f.add(v),"default"===v&&(p=!0)}s.push(be(g,S))}}if(!l){const e=(e,o)=>{const s=n(e,o,r);return t.compatConfig&&(s.isNonScopedSlot=!0),be("default",s)};a?u.length&&u.some((e=>Tn(e)))&&(p||s.push(e(void 0,u))):s.push(e(void 0,o))}const d=c?2:xn(e.children)?3:1;let h=Se(s.concat(be("_",Ee(d+"",!1))),r);return i.length&&(h=_e(t.helper(z),[h,ve(i)])),{slots:h,hasDynamicSlots:c}}function _n(e,t){return Se([be("name",e),be("fn",t)])}function xn(e){for(let t=0;t<e.length;t++){const n=e[t];switch(n.type){case 1:if(2===n.tagType||xn(n.children))return!0;break;case 9:if(xn(n.branches))return!0;break;case 10:case 11:if(xn(n.children))return!0}}return!1}function Tn(e){return 2!==e.type&&12!==e.type||(2===e.type?!!e.content.trim():Tn(e.content))}const On=new WeakMap,kn=(e,t)=>function(){if(1!==(e=t.currentNode).type||0!==e.tagType&&1!==e.tagType)return;const{tag:n,props:o}=e,r=1===e.tagType;let s=r?Cn(e,t):`"${n}"`;let i,c,l,a,p,u,f=0,d=g(s)&&s.callee===H||s===I||s===M||!r&&("svg"===n||"foreignObject"===n);if(o.length>0){const n=In(e,t);i=n.props,f=n.patchFlag,p=n.dynamicPropNames;const o=n.directives;u=o&&o.length?ve(o.map((e=>function(e,t){const n=[],o=On.get(e);o?n.push(t.helperString(o)):(t.helper(W),t.directives.add(e.name),n.push(tt(e.name,"directive")));const{loc:r}=e;e.exp&&n.push(e.exp);e.arg&&(e.exp||n.push("void 0"),n.push(e.arg));if(Object.keys(e.modifiers).length){e.arg||(e.exp||n.push("void 0"),n.push("void 0"));const t=Ee("true",!1,r);n.push(Se(e.modifiers.map((e=>be(e,t))),r))}return ve(n,e.loc)}(e,t)))):void 0,n.shouldUseBlock&&(d=!0)}if(e.children.length>0){s===R&&(d=!0,f|=1024);if(r&&s!==I&&s!==R){const{slots:n,hasDynamicSlots:o}=Nn(e,t);c=n,o&&(f|=1024)}else if(1===e.children.length&&s!==I){const n=e.children[0],o=n.type,r=5===o||8===o;r&&0===At(n,t)&&(f|=1),c=r||2===o?n:e.children}else c=e.children}0!==f&&(l=String(f),p&&p.length&&(a=function(e){let t="[";for(let n=0,o=e.length;n<o;n++)t+=JSON.stringify(e[n]),n<o-1&&(t+=", ");return t+"]"}(p))),e.codegenNode=ye(t,s,i,c,l,a,u,!!d,!1,r,e.loc)};function Cn(e,t,n=!1){let{tag:o}=e;const r=Pn(o),s=We(e,"is");if(s)if(r||it("COMPILER_IS_ON_ELEMENT",t)){const e=6===s.type?s.value&&Ee(s.value.content,!0):s.exp;if(e)return _e(t.helper(H),[e])}else 6===s.type&&s.value.content.startsWith("vue:")&&(o=s.value.content.slice(4));const i=!r&&He(e,"is");if(i&&i.exp)return _e(t.helper(H),[i.exp]);const c=Me(o)||t.isBuiltInComponent(o);return c?(n||t.helper(c),c):(t.helper(j),t.components.add(o),tt(o,"component"))}function In(e,t,n=e.props,o=!1){const{tag:r,loc:s,children:i}=e,c=1===e.tagType;let l=[];const a=[],p=[],f=i.length>0;let d=!1,h=0,g=!1,v=!1,S=!1,b=!1,E=!1,N=!1;const _=[],x=({key:e,value:n})=>{if(Ce(e)){const o=e.content,r=u(o);if(c||!r||"onclick"===o.toLowerCase()||"onUpdate:modelValue"===o||y(o)||(b=!0),r&&y(o)&&(N=!0),20===n.type||(4===n.type||8===n.type)&&At(n,t)>0)return;"ref"===o?g=!0:"class"===o?v=!0:"style"===o?S=!0:"key"===o||_.includes(o)||_.push(o),!c||"class"!==o&&"style"!==o||_.includes(o)||_.push(o)}else E=!0};for(let u=0;u<n.length;u++){const i=n[u];if(6===i.type){const{loc:e,name:n,value:o}=i;let s=!0;if("ref"===n&&(g=!0,t.scopes.vFor>0&&l.push(be(Ee("ref_for",!0),Ee("true")))),"is"===n&&(Pn(r)||o&&o.content.startsWith("vue:")||it("COMPILER_IS_ON_ELEMENT",t)))continue;l.push(be(Ee(n,!0,Be(e,0,n.length)),Ee(o?o.content:"",s,o?o.loc:e)))}else{const{name:n,arg:c,exp:u,loc:h}=i,g="bind"===n,y="on"===n;if("slot"===n)continue;if("once"===n||"memo"===n)continue;if("is"===n||g&&Ke(c,"is")&&(Pn(r)||it("COMPILER_IS_ON_ELEMENT",t)))continue;if(y&&o)continue;if((g&&Ke(c,"key")||y&&f&&Ke(c,"vue:before-update"))&&(d=!0),g&&Ke(c,"ref")&&t.scopes.vFor>0&&l.push(be(Ee("ref_for",!0),Ee("true"))),!c&&(g||y)){if(E=!0,u)if(l.length&&(a.push(Se(Mn(l),s)),l=[]),g){if(it("COMPILER_V_BIND_OBJECT_ORDER",t)){a.unshift(u);continue}a.push(u)}else a.push({type:14,loc:h,callee:t.helper(te),arguments:[u]});continue}const v=t.directiveTransforms[n];if(v){const{props:n,needRuntime:r}=v(i,e,t);!o&&n.forEach(x),l.push(...n),r&&(p.push(i),m(r)&&On.set(i,r))}else p.push(i),f&&(d=!0)}}let T;if(a.length?(l.length&&a.push(Se(Mn(l),s)),T=a.length>1?_e(t.helper(q),a,s):a[0]):l.length&&(T=Se(Mn(l),s)),E?h|=16:(v&&!c&&(h|=2),S&&!c&&(h|=4),_.length&&(h|=8),b&&(h|=32)),d||0!==h&&32!==h||!(g||N||p.length>0)||(h|=512),!t.inSSR&&T)switch(T.type){case 15:let e=-1,n=-1,o=!1;for(let t=0;t<T.properties.length;t++){const r=T.properties[t].key;Ce(r)?"class"===r.content?e=t:"style"===r.content&&(n=t):r.isHandlerKey||(o=!0)}const r=T.properties[e],s=T.properties[n];o?T=_e(t.helper(Q),[T]):(r&&!Ce(r.value)&&(r.value=_e(t.helper(Z),[r.value])),!s||Ce(s.value)||!S&&17!==s.value.type||(s.value=_e(t.helper(X),[s.value])));break;case 14:break;default:T=_e(t.helper(Q),[_e(t.helper(ee),[T])])}return{props:T,directives:p,patchFlag:h,dynamicPropNames:_,shouldUseBlock:d}}function Mn(e){const t=new Map,n=[];for(let o=0;o<e.length;o++){const r=e[o];if(8===r.key.type||!r.key.isStatic){n.push(r);continue}const s=r.key.content,i=t.get(s);i?("style"===s||"class"===s||u(s))&&Rn(i,r):(t.set(s,r),n.push(r))}return n}function Rn(e,t){17===e.value.type?e.value.elements.push(t.value):e.value=ve([e.value,t.value],e.loc)}function Pn(e){return"component"===e||"Component"===e}const wn=(e,t)=>{if(Ye(e)){const{children:n,loc:o}=e,{slotName:r,slotProps:s}=$n(e,t),i=[t.prefixIdentifiers?"_ctx.$slots":"$slots",r,"{}","undefined","true"];let c=2;s&&(i[2]=s,c=3),n.length&&(i[3]=xe([],n,!1,!1,o),c=4),t.scopeId&&!t.slotted&&(c=5),i.splice(c),e.codegenNode=_e(t.helper(G),i,o)}};function $n(e,t){let n,o='"default"';const r=[];for(let s=0;s<e.props.length;s++){const t=e.props[s];6===t.type?t.value&&("name"===t.name?o=JSON.stringify(t.value.content):(t.name=b(t.name),r.push(t))):"bind"===t.name&&Ke(t.arg,"name")?t.exp&&(o=t.exp):("bind"===t.name&&t.arg&&Ce(t.arg)&&(t.arg.content=b(t.arg.content)),r.push(t))}if(r.length>0){const{props:o,directives:s}=In(e,t,r);n=o}return{slotName:o,slotProps:n}}const Ln=/^\s*([\w$_]+|(async\s*)?\([^)]*?\))\s*=>|^\s*(async\s+)?function(?:\s+[\w$]+)?\s*\(/,Vn=(e,t,n,o)=>{const{loc:r,modifiers:s,arg:i}=e;let c;if(4===i.type)if(i.isStatic){let e=i.content;e.startsWith("vue:")&&(e=`vnode-${e.slice(4)}`),c=Ee(x(b(e)),!0,i.loc)}else c=Ne([`${n.helperString(re)}(`,i,")"]);else c=i,c.children.unshift(`${n.helperString(re)}(`),c.children.push(")");let l=e.exp;l&&!l.content.trim()&&(l=void 0);let a=n.cacheHandlers&&!l&&!n.inVOnce;if(l){const e=De(l.content),t=!(e||Ln.test(l.content)),n=l.content.includes(";");(t||a&&e)&&(l=Ne([`${t?"$event":"(...args)"} => ${n?"{":"("}`,l,n?"}":")"]))}let p={props:[be(c,l||Ee("() => {}",!1,r))]};return o&&(p=o(p)),a&&(p.props[0].value=n.cache(p.props[0].value)),p.props.forEach((e=>e.key.isHandlerKey=!0)),p},An=(e,t,n)=>{const{exp:o,modifiers:r,loc:s}=e,i=e.arg;return 4!==i.type?(i.children.unshift("("),i.children.push(') || ""')):i.isStatic||(i.content=`${i.content} || ""`),r.includes("camel")&&(4===i.type?i.content=i.isStatic?b(i.content):`${n.helperString(ne)}(${i.content})`:(i.children.unshift(`${n.helperString(ne)}(`),i.children.push(")"))),n.inSSR||(r.includes("prop")&&Dn(i,"."),r.includes("attr")&&Dn(i,"^")),!o||4===o.type&&!o.content.trim()?{props:[be(i,Ee("",!0,s))]}:{props:[be(i,o)]}},Dn=(e,t)=>{4===e.type?e.content=e.isStatic?t+e.content:`\`${t}\${${e.content}}\``:(e.children.unshift(`'${t}' + (`),e.children.push(")"))},Bn=(e,t)=>{if(0===e.type||1===e.type||11===e.type||10===e.type)return()=>{const n=e.children;let o,r=!1;for(let e=0;e<n.length;e++){const t=n[e];if(Je(t)){r=!0;for(let r=e+1;r<n.length;r++){const s=n[r];if(!Je(s)){o=void 0;break}o||(o=n[e]={type:8,loc:t.loc,children:[t]}),o.children.push(" + ",s),n.splice(r,1),r--}}}if(r&&(1!==n.length||0!==e.type&&(1!==e.type||0!==e.tagType||e.props.find((e=>7===e.type&&!t.directiveTransforms[e.name]))||"template"===e.tag)))for(let e=0;e<n.length;e++){const o=n[e];if(Je(o)||8===o.type){const r=[];2===o.type&&" "===o.content||r.push(o),t.ssr||0!==At(o,t)||r.push("1"),n[e]={type:12,content:o,loc:o.loc,codegenNode:_e(t.helper(B),r)}}}}},Fn=new WeakSet,jn=(e,t)=>{if(1===e.type&&He(e,"once",!0)){if(Fn.has(e)||t.inVOnce)return;return Fn.add(e),t.inVOnce=!0,t.helper(se),()=>{t.inVOnce=!1;const e=t.currentNode;e.codegenNode&&(e.codegenNode=t.cache(e.codegenNode,!0))}}},Hn=(e,t,n)=>{const{exp:o,arg:r}=e;if(!o)return Wn();const s=o.loc.source,i=4===o.type?o.content:s;if(!i.trim()||!De(i))return Wn();const c=r||Ee("modelValue",!0),l=r?Ce(r)?`onUpdate:${r.content}`:Ne(['"onUpdate:" + ',r]):"onUpdate:modelValue";let a;a=Ne([`${n.isTS?"($event: any)":"$event"} => ((`,o,") = $event)"]);const p=[be(c,e.exp),be(l,a)];if(e.modifiers.length&&1===t.tagType){const t=e.modifiers.map((e=>(Pe(e)?e:JSON.stringify(e))+": true")).join(", "),n=r?Ce(r)?`${r.content}Modifiers`:Ne([r,' + "Modifiers"']):"modelModifiers";p.push(be(n,Ee(`{ ${t} }`,!1,e.loc,2)))}return Wn(p)};function Wn(e=[]){return{props:e}}const Kn=/[\w).+\-_$\]]/,Un=(e,t)=>{it("COMPILER_FILTER",t)&&(5===e.type&&Jn(e.content,t),1===e.type&&e.props.forEach((e=>{7===e.type&&"for"!==e.name&&e.exp&&Jn(e.exp,t)})))};function Jn(e,t){if(4===e.type)Gn(e,t);else for(let n=0;n<e.children.length;n++){const o=e.children[n];"object"==typeof o&&(4===o.type?Gn(o,t):8===o.type?Jn(e,t):5===o.type&&Jn(o.content,t))}}function Gn(e,t){const n=e.content;let o,r,s,i,c=!1,l=!1,a=!1,p=!1,u=0,f=0,d=0,h=0,m=[];for(s=0;s<n.length;s++)if(r=o,o=n.charCodeAt(s),c)39===o&&92!==r&&(c=!1);else if(l)34===o&&92!==r&&(l=!1);else if(a)96===o&&92!==r&&(a=!1);else if(p)47===o&&92!==r&&(p=!1);else if(124!==o||124===n.charCodeAt(s+1)||124===n.charCodeAt(s-1)||u||f||d){switch(o){case 34:l=!0;break;case 39:c=!0;break;case 96:a=!0;break;case 40:d++;break;case 41:d--;break;case 91:f++;break;case 93:f--;break;case 123:u++;break;case 125:u--}if(47===o){let e,t=s-1;for(;t>=0&&(e=n.charAt(t)," "===e);t--);e&&Kn.test(e)||(p=!0)}}else void 0===i?(h=s+1,i=n.slice(0,s).trim()):g();function g(){m.push(n.slice(h,s).trim()),h=s+1}if(void 0===i?i=n.slice(0,s).trim():0!==h&&g(),m.length){for(s=0;s<m.length;s++)i=zn(i,m[s],t);e.content=i}}function zn(e,t,n){n.helper(K);const o=t.indexOf("(");if(o<0)return n.filters.add(t),`${tt(t,"filter")}(${e})`;{const r=t.slice(0,o),s=t.slice(o+1);return n.filters.add(r),`${tt(r,"filter")}(${e}${")"!==s?","+s:s}`}}const Yn=new WeakSet,qn=(e,t)=>{if(1===e.type){const n=He(e,"memo");if(!n||Yn.has(e))return;return Yn.add(e),()=>{const o=e.codegenNode||t.currentNode.codegenNode;o&&13===o.type&&(1!==e.tagType&&ot(o,t),e.codegenNode=_e(t.helper(ue),[n.exp,xe(void 0,o),"_cache",String(t.cached++)]))}}};function Zn(e){return[[jn,sn,qn,un,Un,wn,kn,bn,Bn],{on:Vn,bind:An,model:Hn}]}function Xn(e,t={}){const n=t.onError||T,o="module"===t.mode;!0===t.prefixIdentifiers?n(k(46)):o&&n(k(47));t.cacheHandlers&&n(k(48)),t.scopeId&&!o&&n(k(49));const r=h(e)?ut(e,t):e,[s,i]=Zn();return Kt(r,f({},t,{prefixIdentifiers:false,nodeTransforms:[...s,...t.nodeTransforms||[]],directiveTransforms:f({},i,t.directiveTransforms||{})})),zt(r,f({},t,{prefixIdentifiers:false}))}const Qn=()=>({props:[]}),eo=Symbol(""),to=Symbol(""),no=Symbol(""),oo=Symbol(""),ro=Symbol(""),so=Symbol(""),io=Symbol(""),co=Symbol(""),lo=Symbol(""),ao=Symbol("");let po;he({[eo]:"vModelRadio",[to]:"vModelCheckbox",[no]:"vModelText",[oo]:"vModelSelect",[ro]:"vModelDynamic",[so]:"withModifiers",[io]:"withKeys",[co]:"vShow",[lo]:"Transition",[ao]:"TransitionGroup"});const uo=t("style,iframe,script,noscript",!0),fo={isVoidTag:i,isNativeTag:e=>r(e)||s(e),isPreTag:e=>"pre"===e,decodeEntities:function(e,t=!1){return po||(po=document.createElement("div")),t?(po.innerHTML=`<div foo="${e.replace(/"/g,"&quot;")}">`,po.children[0].getAttribute("foo")):(po.innerHTML=e,po.textContent)},isBuiltInComponent:e=>Ie(e,"Transition")?lo:Ie(e,"TransitionGroup")?ao:void 0,getNamespace(e,t){let n=t?t.ns:0;if(t&&2===n)if("annotation-xml"===t.tag){if("svg"===e)return 1;t.props.some((e=>6===e.type&&"encoding"===e.name&&null!=e.value&&("text/html"===e.value.content||"application/xhtml+xml"===e.value.content)))&&(n=0)}else/^m(?:[ions]|text)$/.test(t.tag)&&"mglyph"!==e&&"malignmark"!==e&&(n=0);else t&&1===n&&("foreignObject"!==t.tag&&"desc"!==t.tag&&"title"!==t.tag||(n=0));if(0===n){if("svg"===e)return 1;if("math"===e)return 2}return n},getTextMode({tag:e,ns:t}){if(0===t){if("textarea"===e||"title"===e)return 1;if(uo(e))return 2}return 0}},ho=e=>{1===e.type&&e.props.forEach(((t,n)=>{6===t.type&&"style"===t.name&&t.value&&(e.props[n]={type:7,name:"bind",arg:Ee("style",!0,t.loc),exp:mo(t.value.content,t.loc),modifiers:[],loc:t.loc})}))},mo=(e,t)=>{const r=function(e){const t={};return e.split(n).forEach((e=>{if(e){const n=e.split(o);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}(e);return Ee(JSON.stringify(r),!1,t,3)};function go(e,t){return k(e,t)}const yo=t("passive,once,capture"),vo=t("stop,prevent,self,ctrl,shift,alt,meta,exact,middle"),So=t("left,right"),bo=t("onkeyup,onkeydown,onkeypress",!0),Eo=(e,t)=>Ce(e)&&"onclick"===e.content.toLowerCase()?Ee(t,!0):4!==e.type?Ne(["(",e,`) === "onClick" ? "${t}" : (`,e,")"]):e,No=(e,t)=>{1!==e.type||0!==e.tagType||"script"!==e.tag&&"style"!==e.tag||t.removeNode()},_o=[ho],xo={cloak:Qn,html:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[be(Ee("innerHTML",!0,r),o||Ee("",!0))]}},text:(e,t,n)=>{const{exp:o,loc:r}=e;return t.children.length&&(t.children.length=0),{props:[be(Ee("textContent",!0),o?_e(n.helperString(Y),[o],r):Ee("",!0))]}},model:(e,t,n)=>{const o=Hn(e,t,n);if(!o.props.length||1===t.tagType)return o;const{tag:r}=t,s=n.isCustomElement(r);if("input"===r||"textarea"===r||"select"===r||s){let e=no,i=!1;if("input"===r||s){const n=We(t,"type");if(n){if(7===n.type)e=ro;else if(n.value)switch(n.value.content){case"radio":e=eo;break;case"checkbox":e=to;break;case"file":i=!0}}else Ue(t)&&(e=ro)}else"select"===r&&(e=oo);i||(o.needRuntime=n.helper(e))}return o.props=o.props.filter((e=>!(4===e.key.type&&"modelValue"===e.key.content))),o},on:(e,t,n)=>Vn(e,0,n,(t=>{const{modifiers:o}=e;if(!o.length)return t;let{key:r,value:s}=t.props[0];const{keyModifiers:i,nonKeyModifiers:c,eventOptionModifiers:l}=((e,t,n,o)=>{const r=[],s=[],i=[];for(let c=0;c<t.length;c++){const o=t[c];"native"===o&&ct("COMPILER_V_ON_NATIVE",n)||yo(o)?i.push(o):So(o)?Ce(e)?bo(e.content)?r.push(o):s.push(o):(r.push(o),s.push(o)):vo(o)?s.push(o):r.push(o)}return{keyModifiers:r,nonKeyModifiers:s,eventOptionModifiers:i}})(r,o,n);if(c.includes("right")&&(r=Eo(r,"onContextmenu")),c.includes("middle")&&(r=Eo(r,"onMouseup")),c.length&&(s=_e(n.helper(so),[s,JSON.stringify(c)])),!i.length||Ce(r)&&!bo(r.content)||(s=_e(n.helper(io),[s,JSON.stringify(i)])),l.length){const e=l.map(_).join("");r=Ce(r)?Ee(`${r.content}${e}`,!0):Ne(["(",r,`) + "${e}"`])}return{props:[be(r,s)]}})),show:(e,t,n)=>({props:[],needRuntime:n.helper(co)})};return e.BASE_TRANSITION=P,e.CAMELIZE=ne,e.CAPITALIZE=oe,e.CREATE_BLOCK=$,e.CREATE_COMMENT=D,e.CREATE_ELEMENT_BLOCK=L,e.CREATE_ELEMENT_VNODE=A,e.CREATE_SLOTS=z,e.CREATE_STATIC=F,e.CREATE_TEXT=B,e.CREATE_VNODE=V,e.DOMDirectiveTransforms=xo,e.DOMNodeTransforms=_o,e.FRAGMENT=C,e.GUARD_REACTIVE_PROPS=ee,e.IS_MEMO_SAME=fe,e.IS_REF=pe,e.KEEP_ALIVE=R,e.MERGE_PROPS=q,e.NORMALIZE_CLASS=Z,e.NORMALIZE_PROPS=Q,e.NORMALIZE_STYLE=X,e.OPEN_BLOCK=w,e.POP_SCOPE_ID=ce,e.PUSH_SCOPE_ID=ie,e.RENDER_LIST=J,e.RENDER_SLOT=G,e.RESOLVE_COMPONENT=j,e.RESOLVE_DIRECTIVE=W,e.RESOLVE_DYNAMIC_COMPONENT=H,e.RESOLVE_FILTER=K,e.SET_BLOCK_TRACKING=se,e.SUSPENSE=M,e.TELEPORT=I,e.TO_DISPLAY_STRING=Y,e.TO_HANDLERS=te,e.TO_HANDLER_KEY=re,e.TRANSITION=lo,e.TRANSITION_GROUP=ao,e.UNREF=ae,e.V_MODEL_CHECKBOX=to,e.V_MODEL_DYNAMIC=ro,e.V_MODEL_RADIO=eo,e.V_MODEL_SELECT=oo,e.V_MODEL_TEXT=no,e.V_ON_WITH_KEYS=io,e.V_ON_WITH_MODIFIERS=so,e.V_SHOW=co,e.WITH_CTX=le,e.WITH_DIRECTIVES=U,e.WITH_MEMO=ue,e.advancePositionWithClone=Fe,e.advancePositionWithMutation=je,e.assert=function(e,t){if(!e)throw new Error(t||"unexpected compiler condition")},e.baseCompile=Xn,e.baseParse=ut,e.buildProps=In,e.buildSlots=Nn,e.checkCompatEnabled=ct,e.compile=function(e,t={}){return Xn(e,f({},fo,t,{nodeTransforms:[No,..._o,...t.nodeTransforms||[]],directiveTransforms:f({},xo,t.directiveTransforms||{}),transformHoist:null}))},e.createArrayExpression=ve,e.createAssignmentExpression=function(e,t){return{type:24,left:e,right:t,loc:me}},e.createBlockStatement=ke,e.createCacheExpression=Oe,e.createCallExpression=_e,e.createCompilerError=k,e.createCompoundExpression=Ne,e.createConditionalExpression=Te,e.createDOMCompilerError=go,e.createForLoopParams=vn,e.createFunctionExpression=xe,e.createIfStatement=function(e,t,n){return{type:23,test:e,consequent:t,alternate:n,loc:me}},e.createInterpolation=function(e,t){return{type:5,loc:t,content:h(e)?Ee(e,!1,t):e}},e.createObjectExpression=Se,e.createObjectProperty=be,e.createReturnStatement=function(e){return{type:26,returns:e,loc:me}},e.createRoot=ge,e.createSequenceExpression=function(e){return{type:25,expressions:e,loc:me}},e.createSimpleExpression=Ee,e.createStructuralDirectiveTransform=Jt,e.createTemplateLiteral=function(e){return{type:22,elements:e,loc:me}},e.createTransformContext=Wt,e.createVNodeCall=ye,e.extractIdentifiers=nn,e.findDir=He,e.findProp=We,e.generate=zt,e.generateCodeFrame=function(e,t=0,n=e.length){let o=e.split(/(\r?\n)/);const r=o.filter(((e,t)=>t%2==1));o=o.filter(((e,t)=>t%2==0));let s=0;const i=[];for(let c=0;c<o.length;c++)if(s+=o[c].length+(r[c]&&r[c].length||0),s>=t){for(let e=c-2;e<=c+2||n>s;e++){if(e<0||e>=o.length)continue;const l=e+1;i.push(`${l}${" ".repeat(Math.max(3-String(l).length,0))}| ${o[e]}`);const a=o[e].length,p=r[e]&&r[e].length||0;if(e===c){const e=t-(s-(a+p)),o=Math.max(1,n>s?a-e:n-t);i.push(" | "+" ".repeat(e)+"^".repeat(o))}else if(e>c){if(n>s){const e=Math.max(Math.min(n-s,a),1);i.push(" | "+"^".repeat(e))}s+=a+p}}break}return i.join("\n")},e.getBaseTransformPreset=Zn,e.getInnerRange=Be,e.getMemoedVNodeCall=nt,e.getVNodeBlockHelper=Ze,e.getVNodeHelper=qe,e.hasDynamicKeyVBind=Ue,e.hasScopeRef=function e(t,n){if(!t||0===Object.keys(n).length)return!1;switch(t.type){case 1:for(let o=0;o<t.props.length;o++){const r=t.props[o];if(7===r.type&&(e(r.arg,n)||e(r.exp,n)))return!0}return t.children.some((t=>e(t,n)));case 11:return!!e(t.source,n)||t.children.some((t=>e(t,n)));case 9:return t.branches.some((t=>e(t,n)));case 10:return!!e(t.condition,n)||t.children.some((t=>e(t,n)));case 4:return!t.isStatic&&Pe(t.content)&&!!n[t.content];case 8:return t.children.some((t=>g(t)&&e(t,n)));case 5:case 12:return e(t.content,n);default:return!1}},e.helperNameMap=de,e.injectProp=et,e.isBuiltInType=Ie,e.isCoreComponent=Me,e.isFunctionType=e=>/Function(?:Expression|Declaration)$|Method$/.test(e.type),e.isInDestructureAssignment=function(e,t){if(e&&("ObjectProperty"===e.type||"ArrayPattern"===e.type)){let e=t.length;for(;e--;){const n=t[e];if("AssignmentExpression"===n.type)return!0;if("ObjectProperty"!==n.type&&!n.type.endsWith("Pattern"))break}}return!1},e.isMemberExpression=De,e.isMemberExpressionBrowser=Ve,e.isMemberExpressionNode=Ae,e.isReferencedIdentifier=function(e,t,n){return!1},e.isSimpleIdentifier=Pe,e.isSlotOutlet=Ye,e.isStaticArgOf=Ke,e.isStaticExp=Ce,e.isStaticProperty=on,e.isStaticPropertyKey=(e,t)=>on(t)&&t.key===e,e.isTemplateNode=ze,e.isText=Je,e.isVSlot=Ge,e.locStub=me,e.makeBlock=ot,e.noopDirectiveTransform=Qn,e.parse=function(e,t={}){return ut(e,f({},fo,t))},e.parserOptions=fo,e.processExpression=rn,e.processFor=fn,e.processIf=cn,e.processSlotOutlet=$n,e.registerRuntimeHelpers=he,e.resolveComponentType=Cn,e.toValidAssetId=tt,e.trackSlotScopes=bn,e.trackVForSlotScopes=(e,t)=>{let n;if(ze(e)&&e.props.some(Ge)&&(n=He(e,"for"))){const e=n.parseResult=gn(n.exp);if(e){const{value:n,key:o,index:r}=e,{addIdentifiers:s,removeIdentifiers:i}=t;return n&&s(n),o&&s(o),r&&s(r),()=>{n&&i(n),o&&i(o),r&&i(r)}}}},e.transform=Kt,e.transformBind=An,e.transformElement=kn,e.transformExpression=(e,t)=>{if(5===e.type)e.content=rn(e.content,t);else if(1===e.type)for(let n=0;n<e.props.length;n++){const o=e.props[n];if(7===o.type&&"for"!==o.name){const e=o.exp,n=o.arg;!e||4!==e.type||"on"===o.name&&n||(o.exp=rn(e,t,"slot"===o.name)),n&&4===n.type&&!n.isStatic&&(o.arg=rn(n,t))}}},e.transformModel=Hn,e.transformOn=Vn,e.transformStyle=ho,e.traverseNode=Ut,e.walkBlockDeclarations=function(e,t){for(const n of e.body)if("VariableDeclaration"===n.type){if(n.declare)continue;for(const e of n.declarations)for(const n of nn(e.id))t(n)}else if("FunctionDeclaration"===n.type||"ClassDeclaration"===n.type){if(n.declare||!n.id)continue;t(n.id)}},e.walkFunctionParams=function(e,t){for(const n of e.params)for(const e of nn(n))t(e)},e.walkIdentifiers=function(e,t,n=!1,o=[],r=Object.create(null)){},e.warnDeprecation=function(e,t,n,...o){if("suppress-warning"===st(e,t))return;const{message:r,link:s}=rt[e],i=`(deprecation ${e}) ${"function"==typeof r?r(...o):r}${s?`\n Details: ${s}`:""}`,c=new SyntaxError(i);c.code=e,n&&(c.loc=n),t.onWarn(c)},Object.defineProperty(e,"__esModule",{value:!0}),e}({});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/compiler-dom",
3
- "version": "3.2.24",
3
+ "version": "3.2.28",
4
4
  "description": "@vue/compiler-dom",
5
5
  "main": "index.js",
6
6
  "module": "dist/compiler-dom.esm-bundler.js",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "git+https://github.com/vuejs/vue-next.git",
27
+ "url": "git+https://github.com/vuejs/core.git",
28
28
  "directory": "packages/compiler-dom"
29
29
  },
30
30
  "keywords": [
@@ -33,11 +33,11 @@
33
33
  "author": "Evan You",
34
34
  "license": "MIT",
35
35
  "bugs": {
36
- "url": "https://github.com/vuejs/vue-next/issues"
36
+ "url": "https://github.com/vuejs/core/issues"
37
37
  },
38
- "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
38
+ "homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
39
39
  "dependencies": {
40
- "@vue/shared": "3.2.24",
41
- "@vue/compiler-core": "3.2.24"
40
+ "@vue/shared": "3.2.28",
41
+ "@vue/compiler-core": "3.2.28"
42
42
  }
43
43
  }