usage-board 3.1.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1 -1
- package/dist/public/_nuxt/{BuL2_OVR.js → B6C9KBQ4.js} +1 -1
- package/dist/public/_nuxt/{CbwePq4F.js → Bv6agYS5.js} +1 -1
- package/dist/public/_nuxt/{LYzk-FvL.js → BvRyOET7.js} +1 -1
- package/dist/public/_nuxt/{CF27djws.js → CMWftE4h.js} +1 -1
- package/dist/public/_nuxt/{CoVMsEv_.js → COIbUy5w.js} +1 -1
- package/dist/public/_nuxt/{DS17D0R7.js → CXLmM1yO.js} +1 -1
- package/dist/public/_nuxt/{Bz0aA7IQ.js → DFqWEFN4.js} +1 -1
- package/dist/public/_nuxt/{WjVGlVHF.js → DUoLvn3A.js} +1 -1
- package/dist/public/_nuxt/{Dzuxw4nD.js → D_W11Quh.js} +1 -1
- package/dist/public/_nuxt/{D7Qebc1i.js → DgKrPjze.js} +2 -2
- package/dist/public/_nuxt/{CEZpUSPI.js → DkxY2YMp.js} +1 -1
- package/dist/public/_nuxt/{Dr4nyTE3.js → DtbPvE6R.js} +1 -1
- package/dist/public/_nuxt/{BJUAqwzD.js → HiqUua3-.js} +1 -1
- package/dist/public/_nuxt/builds/latest.json +1 -1
- package/dist/public/_nuxt/builds/meta/6f98f1cb-266c-475e-a249-dad346a55f24.json +1 -0
- package/dist/public/_nuxt/error-404.CFBEg71j.css +1 -0
- package/dist/public/_nuxt/error-500.BqCnH31G.css +1 -0
- package/dist/public/_nuxt/{Cd5S9Sm2.js → uHQwCIHg.js} +1 -1
- package/dist/server/chunks/_/error-500.mjs +2 -20
- package/dist/server/chunks/build/client.precomputed.mjs +1 -1
- package/dist/server/chunks/nitro/nitro.mjs +1885 -3648
- package/dist/server/chunks/routes/api/analysis/agent/session.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/agent/token.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/cache.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/hot-project.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/model.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/overview-cards.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/session.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/token/daily.json.mjs +8 -9
- package/dist/server/chunks/routes/api/analysis/token.json.mjs +8 -9
- package/dist/server/chunks/routes/api/payload.json.mjs +8 -9
- package/dist/server/chunks/routes/api/projects/_project/modules.get.mjs +8 -9
- package/dist/server/chunks/routes/api/projects/catalog.get.mjs +8 -9
- package/dist/server/chunks/routes/renderer.mjs +17 -39183
- package/dist/server/chunks/routes/ws.mjs +8 -9
- package/dist/server/index.mjs +9 -10
- package/dist/server/node_modules/@babel/parser/lib/index.js +14582 -0
- package/dist/server/node_modules/@babel/parser/package.json +50 -0
- package/dist/server/node_modules/@iconify/utils/lib/colors/index.js +292 -0
- package/dist/server/node_modules/@iconify/utils/lib/colors/keywords.js +702 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/common.js +76 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/format.js +40 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/icon.js +52 -0
- package/dist/server/node_modules/@iconify/utils/lib/css/icons.js +133 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/bool.js +20 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/defaults.js +15 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/flip.js +18 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/merge.js +18 -0
- package/dist/server/node_modules/@iconify/utils/lib/customisations/rotate.js +31 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +80 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/convert.js +102 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/data.js +29 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/format.js +60 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/parse.js +50 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +204 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +35 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +134 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +167 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +81 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +94 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +28 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/components.js +78 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +68 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/name.js +47 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +105 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +38 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +94 -0
- package/dist/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +64 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/defaults.js +26 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/merge.js +18 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/name.js +58 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/square.js +34 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon/transformations.js +13 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +126 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/expand.js +21 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +27 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +38 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/minify.js +93 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/parse.js +48 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/tree.js +24 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +44 -0
- package/dist/server/node_modules/@iconify/utils/lib/icon-set/validate.js +125 -0
- package/dist/server/node_modules/@iconify/utils/lib/index.js +53 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/custom.js +32 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/loader.js +28 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/modern.js +42 -0
- package/dist/server/node_modules/@iconify/utils/lib/loader/utils.js +63 -0
- package/dist/server/node_modules/@iconify/utils/lib/misc/objects.js +27 -0
- package/dist/server/node_modules/@iconify/utils/lib/misc/strings.js +27 -0
- package/dist/server/node_modules/@iconify/utils/lib/misc/title.js +10 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/build.js +115 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/defs.js +32 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +15 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/html.js +10 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/id.js +42 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/inner-html.js +23 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/parse.js +69 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/pretty.js +55 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/size.js +28 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/trim.js +8 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/url.js +23 -0
- package/dist/server/node_modules/@iconify/utils/lib/svg/viewbox.js +9 -0
- package/dist/server/node_modules/@iconify/utils/package.json +118 -0
- package/dist/server/node_modules/@lonewolfyx/utils/dist/index.mjs +63 -0
- package/dist/server/node_modules/@lonewolfyx/utils/package.json +64 -0
- package/dist/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6763 -0
- package/dist/server/node_modules/@vue/compiler-core/package.json +58 -0
- package/dist/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +689 -0
- package/dist/server/node_modules/@vue/compiler-dom/package.json +57 -0
- package/dist/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1413 -0
- package/dist/server/node_modules/@vue/compiler-ssr/package.json +34 -0
- package/dist/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1877 -0
- package/dist/server/node_modules/@vue/reactivity/package.json +55 -0
- package/dist/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6856 -0
- package/dist/server/node_modules/@vue/runtime-core/package.json +52 -0
- package/dist/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1796 -0
- package/dist/server/node_modules/@vue/runtime-dom/package.json +60 -0
- package/dist/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +883 -0
- package/dist/server/node_modules/@vue/server-renderer/package.json +55 -0
- package/dist/server/{chunks/_/shared.cjs.prod.mjs → node_modules/@vue/shared/dist/shared.cjs.prod.js} +76 -81
- package/dist/server/node_modules/@vue/shared/package.json +47 -0
- package/dist/server/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/dist/server/node_modules/better-sqlite3/lib/database.js +90 -0
- package/dist/server/node_modules/better-sqlite3/lib/index.js +3 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
- package/dist/server/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/dist/server/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/dist/server/node_modules/better-sqlite3/lib/util.js +12 -0
- package/dist/server/node_modules/better-sqlite3/package.json +59 -0
- package/dist/server/node_modules/bindings/bindings.js +221 -0
- package/dist/server/node_modules/bindings/package.json +28 -0
- package/dist/server/node_modules/chokidar/handler.js +632 -0
- package/dist/server/node_modules/chokidar/index.js +822 -0
- package/dist/server/node_modules/chokidar/package.json +63 -0
- package/dist/server/{chunks/_ → node_modules/consola/dist/chunks}/prompt.mjs +2 -1
- package/dist/server/node_modules/consola/dist/core.mjs +512 -0
- package/dist/server/node_modules/consola/dist/index.mjs +651 -0
- package/dist/server/node_modules/consola/dist/shared/consola.DRwqZj3T.mjs +72 -0
- package/dist/server/node_modules/consola/dist/shared/consola.DXBYu-KD.mjs +288 -0
- package/dist/server/node_modules/consola/package.json +136 -0
- package/dist/server/node_modules/devalue/index.js +4 -0
- package/dist/server/node_modules/devalue/package.json +40 -0
- package/dist/server/node_modules/devalue/src/base64.js +60 -0
- package/dist/server/node_modules/devalue/src/constants.js +7 -0
- package/dist/server/node_modules/devalue/src/parse.js +268 -0
- package/dist/server/node_modules/devalue/src/stringify.js +335 -0
- package/dist/server/node_modules/devalue/src/uneval.js +552 -0
- package/dist/server/node_modules/devalue/src/utils.js +144 -0
- package/dist/server/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/dist/server/node_modules/entities/dist/commonjs/decode.js +568 -0
- package/dist/server/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
- package/dist/server/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/dist/server/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/dist/server/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
- package/dist/server/node_modules/entities/dist/commonjs/package.json +3 -0
- package/dist/server/node_modules/entities/package.json +120 -0
- package/dist/server/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
- package/dist/server/node_modules/estree-walker/package.json +37 -0
- package/dist/server/node_modules/file-uri-to-path/index.js +66 -0
- package/dist/server/node_modules/file-uri-to-path/package.json +32 -0
- package/dist/server/node_modules/glob/dist/esm/index.min.js +4 -0
- package/dist/server/node_modules/glob/dist/esm/package.json +3 -0
- package/dist/server/node_modules/glob/package.json +98 -0
- package/dist/server/node_modules/hookable/dist/index.mjs +257 -0
- package/dist/server/node_modules/hookable/package.json +53 -0
- package/dist/server/node_modules/md5-typescript/dist/bundles/bundle.umd.js +208 -0
- package/dist/server/node_modules/md5-typescript/package.json +31 -0
- package/dist/server/node_modules/path-type/index.js +42 -0
- package/dist/server/node_modules/path-type/package.json +51 -0
- package/dist/server/node_modules/readdirp/index.js +272 -0
- package/dist/server/node_modules/readdirp/package.json +66 -0
- package/dist/server/node_modules/source-map-js/lib/array-set.js +121 -0
- package/dist/server/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/dist/server/node_modules/source-map-js/lib/base64.js +67 -0
- package/dist/server/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/dist/server/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/dist/server/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/dist/server/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/dist/server/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/dist/server/node_modules/source-map-js/lib/source-node.js +413 -0
- package/dist/server/node_modules/source-map-js/lib/util.js +594 -0
- package/dist/server/node_modules/source-map-js/package.json +71 -0
- package/dist/server/node_modules/source-map-js/source-map.js +8 -0
- package/dist/server/node_modules/ufo/dist/index.mjs +645 -0
- package/dist/server/node_modules/ufo/package.json +48 -0
- package/dist/server/node_modules/unhead/dist/parser.mjs +508 -0
- package/dist/server/node_modules/unhead/dist/plugins.mjs +101 -0
- package/dist/server/node_modules/unhead/dist/server.mjs +180 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.B5FWS6X0.mjs +207 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.BYvz9V1x.mjs +43 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.CbpEuj3y.mjs +71 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.Ct24BOby.mjs +182 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.D4vSFytZ.mjs +236 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.DQc16pHI.mjs +196 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.TxTMM7cM.mjs +166 -0
- package/dist/server/node_modules/unhead/dist/shared/unhead.yem5I2v_.mjs +38 -0
- package/dist/server/node_modules/unhead/dist/utils.mjs +5 -0
- package/dist/server/node_modules/unhead/package.json +105 -0
- package/dist/server/node_modules/vue/dist/vue.cjs.js +80 -0
- package/dist/server/node_modules/vue/dist/vue.cjs.prod.js +66 -0
- package/dist/server/node_modules/vue/index.js +7 -0
- package/dist/server/node_modules/vue/index.mjs +1 -0
- package/dist/server/node_modules/vue/package.json +112 -0
- package/dist/server/node_modules/vue/server-renderer/index.mjs +1 -0
- package/dist/server/node_modules/vue-bundle-renderer/dist/runtime.mjs +301 -0
- package/dist/server/node_modules/vue-bundle-renderer/package.json +55 -0
- package/dist/server/package.json +37 -0
- package/package.json +3 -1
- package/dist/public/_nuxt/builds/meta/5b933d30-47b4-45ca-8d5a-cba3255174fa.json +0 -1
- package/dist/public/_nuxt/error-404.B0EXnOcv.css +0 -1
- package/dist/public/_nuxt/error-500.CnSNZoEG.css +0 -1
package/dist/index.mjs
CHANGED
|
@@ -756,7 +756,7 @@ defineLazyProperty(apps, "safari", () => detectPlatformBinary({ darwin: "Safari"
|
|
|
756
756
|
//#endregion
|
|
757
757
|
//#region package.json
|
|
758
758
|
var name = "usage-board";
|
|
759
|
-
var version = "3.1.
|
|
759
|
+
var version = "3.1.1";
|
|
760
760
|
//#endregion
|
|
761
761
|
//#region src/index.ts
|
|
762
762
|
const cli = cac(name);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{y as c,W as h,g as u}from"./
|
|
1
|
+
import{y as c,W as h,g as u}from"./DgKrPjze.js";function s(r){return typeof r=="string"?`'${r}'`:new g().serialize(r)}const g=(function(){class r{#e=new Map;compare(e,t){const i=typeof e,n=typeof t;return i==="string"&&n==="string"?e.localeCompare(t):i==="number"&&n==="number"?e-t:String.prototype.localeCompare.call(this.serialize(e,!0),this.serialize(t,!0))}serialize(e,t){if(e===null)return"null";switch(typeof e){case"string":return t?e:`'${e}'`;case"bigint":return`${e}n`;case"object":return this.$object(e);case"function":return this.$function(e)}return String(e)}serializeObject(e){const t=Object.prototype.toString.call(e);if(t!=="[object Object]")return this.serializeBuiltInType(t.length<10?`unknown:${t}`:t.slice(8,-1),e);const i=e.constructor,n=i===Object||i===void 0?"":i.name;if(n!==""&&globalThis[n]===i)return this.serializeBuiltInType(n,e);if(typeof e.toJSON=="function"){const o=e.toJSON();return n+(o!==null&&typeof o=="object"?this.$object(o):`(${this.serialize(o)})`)}return this.serializeObjectEntries(n,Object.entries(e))}serializeBuiltInType(e,t){const i=this["$"+e];if(i)return i.call(this,t);if(typeof t?.entries=="function")return this.serializeObjectEntries(e,t.entries());throw new Error(`Cannot serialize ${e}`)}serializeObjectEntries(e,t){const i=Array.from(t).sort((o,a)=>this.compare(o[0],a[0]));let n=`${e}{`;for(let o=0;o<i.length;o++){const[a,f]=i[o];n+=`${this.serialize(a,!0)}:${this.serialize(f)}`,o<i.length-1&&(n+=",")}return n+"}"}$object(e){let t=this.#e.get(e);return t===void 0&&(this.#e.set(e,`#${this.#e.size}`),t=this.serializeObject(e),this.#e.set(e,t)),t}$function(e){const t=Function.prototype.toString.call(e);return t.slice(-15)==="[native code] }"?`${e.name||""}()[native]`:`${e.name}(${e.length})${t.replace(/\s*\n\s*/g,"")}`}$Array(e){let t="[";for(let i=0;i<e.length;i++)t+=this.serialize(e[i]),i<e.length-1&&(t+=",");return t+"]"}$Date(e){try{return`Date(${e.toISOString()})`}catch{return"Date(null)"}}$ArrayBuffer(e){return`ArrayBuffer[${new Uint8Array(e).join(",")}]`}$Set(e){return`Set${this.$Array(Array.from(e).sort((t,i)=>this.compare(t,i)))}`}$Map(e){return this.serializeObjectEntries("Map",e.entries())}}for(const l of["Error","RegExp","URL"])r.prototype["$"+l]=function(e){return`${l}(${e})`};for(const l of["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array"])r.prototype["$"+l]=function(e){return`${l}[${e.join(",")}]`};for(const l of["BigInt64Array","BigUint64Array"])r.prototype["$"+l]=function(e){return`${l}[${e.join("n,")}${e.length>0?"n":""}]`};return r})();function _(r,l){return r===l||s(r)===s(l)}const d={claude_code:'<svg fill="#D97757" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Claude</title><path d="m4.7144 15.9555 4.7174-2.6471.079-.2307-.079-.1275h-.2307l-.7893-.0486-2.6956-.0729-2.3375-.0971-2.2646-.1214-.5707-.1215-.5343-.7042.0546-.3522.4797-.3218.686.0608 1.5179.1032 2.2767.1578 1.6514.0972 2.4468.255h.3886l.0546-.1579-.1336-.0971-.1032-.0972L6.973 9.8356l-2.55-1.6879-1.3356-.9714-.7225-.4918-.3643-.4614-.1578-1.0078.6557-.7225.8803.0607.2246.0607.8925.686 1.9064 1.4754 2.4893 1.8336.3643.3035.1457-.1032.0182-.0728-.164-.2733-1.3539-2.4467-1.445-2.4893-.6435-1.032-.17-.6194c-.0607-.255-.1032-.4674-.1032-.7285L6.287.1335 6.6997 0l.9957.1336.419.3642.6192 1.4147 1.0018 2.2282 1.5543 3.0296.4553.8985.2429.8318.091.255h.1579v-.1457l.1275-1.706.2368-2.0947.2307-2.6957.0789-.7589.3764-.9107.7468-.4918.5828.2793.4797.686-.0668.4433-.2853 1.8517-.5586 2.9021-.3643 1.9429h.2125l.2429-.2429.9835-1.3053 1.6514-2.0643.7286-.8196.85-.9046.5464-.4311h1.0321l.759 1.1293-.34 1.1657-1.0625 1.3478-.8804 1.1414-1.2628 1.7-.7893 1.36.0729.1093.1882-.0183 2.8535-.607 1.5421-.2794 1.8396-.3157.8318.3886.091.3946-.3278.8075-1.967.4857-2.3072.4614-3.4364.8136-.0425.0304.0486.0607 1.5482.1457.6618.0364h1.621l3.0175.2247.7892.522.4736.6376-.079.4857-1.2142.6193-1.6393-.3886-3.825-.9107-1.3113-.3279h-.1822v.1093l1.0929 1.0686 2.0035 1.8092 2.5075 2.3314.1275.5768-.3218.4554-.34-.0486-2.2039-1.6575-.85-.7468-1.9246-1.621h-.1275v.17l.4432.6496 2.3436 3.5214.1214 1.0807-.17.3521-.6071.2125-.6679-.1214-1.3721-1.9246L14.38 17.959l-1.1414-1.9428-.1397.079-.674 7.2552-.3156.3703-.7286.2793-.6071-.4614-.3218-.7468.3218-1.4753.3886-1.9246.3157-1.53.2853-1.9004.17-.6314-.0121-.0425-.1397.0182-1.4328 1.9672-2.1796 2.9446-1.7243 1.8456-.4128.164-.7164-.3704.0667-.6618.4008-.5889 2.386-3.0357 1.4389-1.882.929-1.0868-.0062-.1579h-.0546l-6.3385 4.1164-1.1293.1457-.4857-.4554.0608-.7467.2307-.2429 1.9064-1.3114Z"/></svg>',codebuff:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><title>Codebuff</title><rect width="24" height="24" rx="6" fill="#14B8A6"/><path d="M8 7.5h5.25a3.75 3.75 0 1 1 0 7.5H8z" fill="#fff"/><path d="M9.75 11.25h4.25a1.75 1.75 0 0 1 0 3.5H9.75z" fill="#14B8A6"/></svg>',codex:`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" fill-rule="evenodd">
|
|
2
2
|
<title>Codex (OpenAI)</title>
|
|
3
3
|
<path clip-rule="evenodd"
|
|
4
4
|
d="M8.086.457a6.105 6.105 0 013.046-.415c1.333.153 2.521.72 3.564 1.7a.117.117 0 00.107.029c1.408-.346 2.762-.224 4.061.366l.063.03.154.076c1.357.703 2.33 1.77 2.918 3.198.278.679.418 1.388.421 2.126a5.655 5.655 0 01-.18 1.631.167.167 0 00.04.155 5.982 5.982 0 011.578 2.891c.385 1.901-.01 3.615-1.183 5.14l-.182.22a6.063 6.063 0 01-2.934 1.851.162.162 0 00-.108.102c-.255.736-.511 1.364-.987 1.992-1.199 1.582-2.962 2.462-4.948 2.451-1.583-.008-2.986-.587-4.21-1.736a.145.145 0 00-.14-.032c-.518.167-1.04.191-1.604.185a5.924 5.924 0 01-2.595-.622 6.058 6.058 0 01-2.146-1.781c-.203-.269-.404-.522-.551-.821a7.74 7.74 0 01-.495-1.283 6.11 6.11 0 01-.017-3.064.166.166 0 00.008-.074.115.115 0 00-.037-.064 5.958 5.958 0 01-1.38-2.202 5.196 5.196 0 01-.333-1.589 6.915 6.915 0 01.188-2.132c.45-1.484 1.309-2.648 2.577-3.493.282-.188.55-.334.802-.438.286-.12.573-.22.861-.304a.129.129 0 00.087-.087A6.016 6.016 0 015.635 2.31C6.315 1.464 7.132.846 8.086.457zm-.804 7.85a.848.848 0 00-1.473.842l1.694 2.965-1.688 2.848a.849.849 0 001.46.864l1.94-3.272a.849.849 0 00.007-.854l-1.94-3.393zm5.446 6.24a.849.849 0 000 1.695h4.848a.849.849 0 000-1.696h-4.848z" />
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{_ as Qt}from"./
|
|
1
|
+
import{_ as Qt}from"./BvRyOET7.js";import{M as ye,N as _e,O as kt,Q as K,R as xe,U as Ft,W as ot,X as q,Y as z,Z as Gt,$ as F,a0 as bt,a1 as ut,a2 as St,a3 as It,a4 as B,a5 as ke,a6 as Yt,a7 as Se,a8 as Ae,a9 as $e,aa as te,ab as Z,ac as ee,ad as De,ae as Ce,af as it,ag as At,ah as we,ai as Rt,aj as Te,ak as Xt,al as _t,am as Me,an as Re,ao as Ee,ap as ae,aq as Le,ar as Pe,as as Ue,at as je,au as Oe,av as Ut,aw as jt,ax as Ve,ay as He,az as ne,K as xt,_ as se,S as Be,f as qt,z as oe,m as $t,g as Et,j as ie,q as Dt,E as We,v as Ne,w as ze,x as Fe,y as Ge,F as Ie,B as Ye,l as ft,H as Xe,I as qe,J as Ze}from"./DtbPvE6R.js";import{j as Je,k as Zt,l as Ke,m as Jt,n as Qe,o as Kt,u as ta,i as Ct,_ as ea,a as aa,b as na}from"./CXLmM1yO.js";import{y as et,E as sa,m as oa,h as ht,s as Ot,o as T,c as O,B as ia,r as Vt,D as ra,af as wt,ad as Tt,ab as re,N as le,n as ce,g as L,A as N,w as D,t as U,H as Q,a as M,b as y,C as x,I as pt,P as Ht,V as la,d as W,a2 as ca,G as de,a3 as da}from"./DgKrPjze.js";import{u as Mt}from"./DUoLvn3A.js";const ua=Object.assign(Object.assign({},ye),{tooltip:void 0,annotations:void 0});class ha extends _e{constructor(e,t,s){var r;super(e),this._defaultConfig=ua,this.config=this._defaultConfig,t&&(this.updateContainer(t,!0),this.component=t.component),s&&this.setData(s,!0),!((r=this.component)===null||r===void 0)&&r.datamodel.data&&this.render()}setData(e,t){var s;const{config:r}=this;this.component&&this.component.setData(e),t||this.render(),(s=r.tooltip)===null||s===void 0||s.hide()}updateContainer(e,t){super.updateContainer(e),this._removeAllChildren(),this.component=e.component,e.sizing&&(this.component.sizing=e.sizing),this.element.appendChild(this.component.element);const s=e.tooltip;s&&(s.hasContainer()||s.setContainer(this._container),s.setComponents([this.component]));const r=e.annotations;r&&this.element.appendChild(r.element),this.element.appendChild(this._svgDefs.node()),this.element.appendChild(this._svgDefsExternal.node()),t||this.render()}updateComponent(e,t){this.component.setConfig(e),t||this.render()}update(e,t,s){e&&this.updateContainer(e,!0),t&&this.updateComponent(t,!0),s&&this.setData(s,!0),this.render()}getFitWidthScale(){const{config:e,component:t}=this,s=t;if(!s.getWidth)return 1;const r=s.getWidth()+e.margin.left+e.margin.right;return this.width/r}_preRender(){var e,t;super._preRender(),this.component.setSize(this.width,this.height,this.containerWidth,this.containerHeight),this.component.setContainerMargin(this.config.margin),(e=this.config.annotations)===null||e===void 0||e.setSize(this.width,this.height,this.containerWidth,this.containerHeight),(t=this.config.annotations)===null||t===void 0||t.setContainerMargin(this.config.margin)}_render(e){var t,s;const{config:r,component:l}=this;super._render(e),l.g.attr("transform",`translate(${r.margin.left},${r.margin.top})`),l.render(e),(t=r.annotations)===null||t===void 0||t.render(e),r.tooltip&&r.tooltip.update(),(s=r.onRenderComplete)===null||s===void 0||s.call(r,this.svg.node(),r.margin,this.containerWidth,this.containerHeight,this.width,this.height)}render(e=this.config.duration){const{config:t,component:s}=this;if(t.sizing===kt.Extend||t.sizing===kt.FitWidth){const r=t.sizing===kt.FitWidth,l=s,n=l.getWidth()+t.margin.left+t.margin.right,a=l.getHeight()+t.margin.top+t.margin.bottom,d=r?this.getFitWidthScale():1,i=this.svg.attr("width"),o=this.svg.attr("height"),m=n*d,f=a*d,g=i||o;K(this.svg,g?e:0).attr("width",m).attr("height",f).attr("viewBox",`0 0 ${n} ${r?f:a}`).attr("preserveAspectRatio","xMinYMin")}else this.svg.attr("width",this.config.width||this.containerWidth).attr("height",this.config.height||this.containerHeight);this._resizeObserver||this._setUpResizeObserver(),cancelAnimationFrame(this._renderAnimationFrameId),this._renderAnimationFrameId=requestAnimationFrame(()=>{this._preRender(),this._render(e)})}_onResize(){var e;const{config:t}=this;super._onResize(),(e=t.tooltip)===null||e===void 0||e.hide()}destroy(){var e,t;const{component:s,config:r}=this;super.destroy(),s?.destroy(),(e=r.tooltip)===null||e===void 0||e.destroy(),(t=r.annotations)===null||t===void 0||t.destroy()}}function ga(u){return u.innerRadius}function fa(u){return u.outerRadius}function ma(u){return u.startAngle}function pa(u){return u.endAngle}function va(u){return u&&u.padAngle}function ba(u,e,t,s,r,l,n,a){var d=t-u,i=s-e,o=n-r,m=a-l,f=m*d-o*i;if(!(f*f<F))return f=(o*(e-l)-m*(u-r))/f,[u+f*d,e+f*i]}function vt(u,e,t,s,r,l,n){var a=u-t,d=e-s,i=(n?l:-l)/ut(a*a+d*d),o=i*d,m=-i*a,f=u+o,g=e+m,h=t+o,b=s+m,c=(f+h)/2,k=(g+b)/2,S=h-f,E=b-g,P=S*S+E*E,v=r-l,p=f*b-h*g,C=(E<0?-1:1)*ut(ke(0,v*v*P-p*p)),j=(p*E-S*C)/P,V=(-p*S-E*C)/P,A=(p*E+S*C)/P,R=(-p*S+E*C)/P,H=j-c,_=V-k,w=A-c,G=R-k;return H*H+_*_>w*w+G*G&&(j=A,V=R),{cx:j,cy:V,x01:-o,y01:-m,x11:j*(r/v-1),y11:V*(r/v-1)}}function ya(){var u=ga,e=fa,t=z(0),s=null,r=ma,l=pa,n=va,a=null,d=xe(i);function i(){var o,m,f=+u.apply(this,arguments),g=+e.apply(this,arguments),h=r.apply(this,arguments)-Gt,b=l.apply(this,arguments)-Gt,c=It(b-h),k=b>h;if(a||(a=o=d()),g<f&&(m=g,g=f,f=m),!(g>F))a.moveTo(0,0);else if(c>bt-F)a.moveTo(g*ot(h),g*q(h)),a.arc(0,0,g,h,b,!k),f>F&&(a.moveTo(f*ot(b),f*q(b)),a.arc(0,0,f,b,h,k));else{var S=h,E=b,P=h,v=b,p=c,C=c,j=n.apply(this,arguments)/2,V=j>F&&(s?+s.apply(this,arguments):ut(f*f+g*g)),A=St(It(g-f)/2,+t.apply(this,arguments)),R=A,H=A,_,w;if(V>F){var G=Yt(V/f*q(j)),J=Yt(V/g*q(j));(p-=G*2)>F?(G*=k?1:-1,P+=G,v-=G):(p=0,P=v=(h+b)/2),(C-=J*2)>F?(J*=k?1:-1,S+=J,E-=J):(C=0,S=E=(h+b)/2)}var X=g*ot(S),at=g*q(S),rt=f*ot(v),tt=f*q(v);if(A>F){var lt=g*ot(E),nt=g*q(E),ct=f*ot(P),gt=f*q(P),Y;if(c<Ft)if(Y=ba(X,at,ct,gt,lt,nt,rt,tt)){var dt=X-Y[0],$=at-Y[1],I=lt-Y[0],st=nt-Y[1],Nt=1/q(Se((dt*I+$*st)/(ut(dt*dt+$*$)*ut(I*I+st*st)))/2),zt=ut(Y[0]*Y[0]+Y[1]*Y[1]);R=St(A,(f-zt)/(Nt-1)),H=St(A,(g-zt)/(Nt+1))}else R=H=0}C>F?H>F?(_=vt(ct,gt,X,at,g,H,k),w=vt(lt,nt,rt,tt,g,H,k),a.moveTo(_.cx+_.x01,_.cy+_.y01),H<A?a.arc(_.cx,_.cy,H,B(_.y01,_.x01),B(w.y01,w.x01),!k):(a.arc(_.cx,_.cy,H,B(_.y01,_.x01),B(_.y11,_.x11),!k),a.arc(0,0,g,B(_.cy+_.y11,_.cx+_.x11),B(w.cy+w.y11,w.cx+w.x11),!k),a.arc(w.cx,w.cy,H,B(w.y11,w.x11),B(w.y01,w.x01),!k))):(a.moveTo(X,at),a.arc(0,0,g,S,E,!k)):a.moveTo(X,at),!(f>F)||!(p>F)?a.lineTo(rt,tt):R>F?(_=vt(rt,tt,lt,nt,f,-R,k),w=vt(X,at,ct,gt,f,-R,k),a.lineTo(_.cx+_.x01,_.cy+_.y01),R<A?a.arc(_.cx,_.cy,R,B(_.y01,_.x01),B(w.y01,w.x01),!k):(a.arc(_.cx,_.cy,R,B(_.y01,_.x01),B(_.y11,_.x11),!k),a.arc(0,0,f,B(_.cy+_.y11,_.cx+_.x11),B(w.cy+w.y11,w.cx+w.x11),k),a.arc(w.cx,w.cy,R,B(w.y11,w.x11),B(w.y01,w.x01),!k))):a.arc(0,0,f,v,P,k)}if(a.closePath(),o)return a=null,o+""||null}return i.centroid=function(){var o=(+u.apply(this,arguments)+ +e.apply(this,arguments))/2,m=(+r.apply(this,arguments)+ +l.apply(this,arguments))/2-Ft/2;return[ot(m)*o,q(m)*o]},i.innerRadius=function(o){return arguments.length?(u=typeof o=="function"?o:z(+o),i):u},i.outerRadius=function(o){return arguments.length?(e=typeof o=="function"?o:z(+o),i):e},i.cornerRadius=function(o){return arguments.length?(t=typeof o=="function"?o:z(+o),i):t},i.padRadius=function(o){return arguments.length?(s=o==null?null:typeof o=="function"?o:z(+o),i):s},i.startAngle=function(o){return arguments.length?(r=typeof o=="function"?o:z(+o),i):r},i.endAngle=function(o){return arguments.length?(l=typeof o=="function"?o:z(+o),i):l},i.padAngle=function(o){return arguments.length?(n=typeof o=="function"?o:z(+o),i):n},i.context=function(o){return arguments.length?(a=o??null,i):a},i}function _a(u,e){return e<u?-1:e>u?1:e>=u?0:NaN}function xa(u){return u}function ka(){var u=xa,e=_a,t=null,s=z(0),r=z(bt),l=z(0);function n(a){var d,i=(a=Ae(a)).length,o,m,f=0,g=new Array(i),h=new Array(i),b=+s.apply(this,arguments),c=Math.min(bt,Math.max(-bt,r.apply(this,arguments)-b)),k,S=Math.min(Math.abs(c)/i,l.apply(this,arguments)),E=S*(c<0?-1:1),P;for(d=0;d<i;++d)(P=h[g[d]=d]=+u(a[d],d,a))>0&&(f+=P);for(e!=null?g.sort(function(v,p){return e(h[v],h[p])}):t!=null&&g.sort(function(v,p){return t(a[v],a[p])}),d=0,m=f?(c-i*E)/f:0;d<i;++d,b=k)o=g[d],P=h[o],k=b+(P>0?P*m:0)+E,h[o]={data:a[o],index:d,value:P,startAngle:b,endAngle:k,padAngle:S};return h}return n.value=function(a){return arguments.length?(u=typeof a=="function"?a:z(+a),n):u},n.sortValues=function(a){return arguments.length?(e=a,t=null,n):e},n.sort=function(a){return arguments.length?(t=a,e=null,n):t},n.startAngle=function(a){return arguments.length?(s=typeof a=="function"?a:z(+a),n):s},n.endAngle=function(a){return arguments.length?(r=typeof a=="function"?a:z(+a),n):r},n.padAngle=function(a){return arguments.length?(l=typeof a=="function"?a:z(+a),n):l},n}function Sa({x:u,y:e,w:t,h:s,tl:r=!1,tr:l=!1,bl:n=!1,br:a=!1,r:d=0}){let i;i=`M${u+d},${e}h${t-2*d}`;let o=l?d:0,m=l?0:d;return i+=`a${o},${o} 0 0 1 ${o},${o}`,i+=`h${m}v${m}`,i+=`v${s-2*d}`,o=a?d:0,m=a?0:d,i+=`a${o},${o} 0 0 1 ${-o},${o}`,i+=`v${m}h${-m}`,i+=`h${2*d-t}`,o=n?d:0,m=n?0:d,i+=`a${o},${o} 0 0 1 ${-o},${-o}`,i+=`h${-m}v${-m}`,i+=`v${2*d-s}`,o=r?d:0,m=r?0:d,i+=`a${o},${o} 0 0 1 ${o},${-o}`,i+=`v${-m}h${m}`,i+="z",i}const Aa=Object.assign(Object.assign({},$e),{color:void 0,barMaxWidth:void 0,barWidth:void 0,dataStep:void 0,barPadding:0,roundedCorners:2,cursor:null,barMinHeight1Px:!1,barMinHeightZeroValue:null,orientation:te.Vertical}),ue=Z`
|
|
2
2
|
label: stacked-bar-component;
|
|
3
3
|
`,$a=ee`
|
|
4
4
|
:root {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{H as Ye,y as Z,aU as qe,J as Je,aV as Xe,W as ne,o as Ae,c as He,V as Pe,C as K,A as Ke,w as Qe,B as Ze}from"./D7Qebc1i.js";function Ie(e){return e?e.flatMap(t=>t.type===Ye?Ie(t.children):[t]):[]}const er=Z({name:"PrimitiveSlot",inheritAttrs:!1,setup(e,{attrs:t,slots:r}){return()=>{if(!r.default)return null;const o=Ie(r.default()),a=o.findIndex(d=>d.type!==qe);if(a===-1)return o;const l=o[a];delete l.props?.ref;const i=l.props?Je(t,l.props):t,p=Xe({...l,props:{}},i);return o.length===1?p:(o[a]=p,o)}}}),rr=["area","img","input"],or=Z({name:"Primitive",inheritAttrs:!1,props:{asChild:{type:Boolean,default:!1},as:{type:[String,Object],default:"div"}},setup(e,{attrs:t,slots:r}){const o=e.asChild?"template":e.as;return typeof o=="string"&&rr.includes(o)?()=>ne(o,t):o!=="template"?()=>ne(e.as,t,{default:r.default}):()=>ne(er,t,{default:r.default})}});function Re(e){var t,r,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(r=Re(e[t]))&&(o&&(o+=" "),o+=r)}else for(r in e)e[r]&&(o&&(o+=" "),o+=r);return o}function Me(){for(var e,t,r=0,o="",a=arguments.length;r<a;r++)(e=arguments[r])&&(t=Re(e))&&(o&&(o+=" "),o+=t);return o}const tr=(e,t)=>{const r=new Array(e.length+t.length);for(let o=0;o<e.length;o++)r[o]=e[o];for(let o=0;o<t.length;o++)r[e.length+o]=t[o];return r},sr=(e,t)=>({classGroupId:e,validator:t}),Ge=(e=new Map,t=null,r)=>({nextPart:e,validators:t,classGroupId:r}),Q="-",ve=[],nr="arbitrary..",ar=e=>{const t=lr(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:o}=e;return{getClassGroupId:i=>{if(i.startsWith("[")&&i.endsWith("]"))return ir(i);const p=i.split(Q),d=p[0]===""&&p.length>1?1:0;return Te(p,d,t)},getConflictingClassGroupIds:(i,p)=>{if(p){const d=o[i],b=r[i];return d?b?tr(b,d):d:b||ve}return r[i]||ve}}},Te=(e,t,r)=>{if(e.length-t===0)return r.classGroupId;const a=e[t],l=r.nextPart.get(a);if(l){const b=Te(e,t+1,l);if(b)return b}const i=r.validators;if(i===null)return;const p=t===0?e.join(Q):e.slice(t).join(Q),d=i.length;for(let b=0;b<d;b++){const f=i[b];if(f.validator(p))return f.classGroupId}},ir=e=>e.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const t=e.slice(1,-1),r=t.indexOf(":"),o=t.slice(0,r);return o?nr+o:void 0})(),lr=e=>{const{theme:t,classGroups:r}=e;return cr(r,t)},cr=(e,t)=>{const r=Ge();for(const o in e){const a=e[o];le(a,r,o,t)}return r},le=(e,t,r,o)=>{const a=e.length;for(let l=0;l<a;l++){const i=e[l];dr(i,t,r,o)}},dr=(e,t,r,o)=>{if(typeof e=="string"){mr(e,t,r);return}if(typeof e=="function"){ur(e,t,r,o);return}pr(e,t,r,o)},mr=(e,t,r)=>{const o=e===""?t:Ne(t,e);o.classGroupId=r},ur=(e,t,r,o)=>{if(br(e)){le(e(o),t,r,o);return}t.validators===null&&(t.validators=[]),t.validators.push(sr(r,e))},pr=(e,t,r,o)=>{const a=Object.entries(e),l=a.length;for(let i=0;i<l;i++){const[p,d]=a[i];le(d,Ne(t,p),r,o)}},Ne=(e,t)=>{let r=e;const o=t.split(Q),a=o.length;for(let l=0;l<a;l++){const i=o[l];let p=r.nextPart.get(i);p||(p=Ge(),r.nextPart.set(i,p)),r=p}return r},br=e=>"isThemeGetter"in e&&e.isThemeGetter===!0,fr=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=Object.create(null),o=Object.create(null);const a=(l,i)=>{r[l]=i,t++,t>e&&(t=0,o=r,r=Object.create(null))};return{get(l){let i=r[l];if(i!==void 0)return i;if((i=o[l])!==void 0)return a(l,i),i},set(l,i){l in r?r[l]=i:a(l,i)}}},ie="!",xe=":",gr=[],ye=(e,t,r,o,a)=>({modifiers:e,hasImportantModifier:t,baseClassName:r,maybePostfixModifierPosition:o,isExternal:a}),hr=e=>{const{prefix:t,experimentalParseClassName:r}=e;let o=a=>{const l=[];let i=0,p=0,d=0,b;const f=a.length;for(let z=0;z<f;z++){const y=a[z];if(i===0&&p===0){if(y===xe){l.push(a.slice(d,z)),d=z+1;continue}if(y==="/"){b=z;continue}}y==="["?i++:y==="]"?i--:y==="("?p++:y===")"&&p--}const v=l.length===0?a:a.slice(d);let x=v,A=!1;v.endsWith(ie)?(x=v.slice(0,-1),A=!0):v.startsWith(ie)&&(x=v.slice(1),A=!0);const P=b&&b>d?b-d:void 0;return ye(l,A,x,P)};if(t){const a=t+xe,l=o;o=i=>i.startsWith(a)?l(i.slice(a.length)):ye(gr,!1,i,void 0,!0)}if(r){const a=o;o=l=>r({className:l,parseClassName:a})}return o},vr=e=>{const t=new Map;return e.orderSensitiveModifiers.forEach((r,o)=>{t.set(r,1e6+o)}),r=>{const o=[];let a=[];for(let l=0;l<r.length;l++){const i=r[l],p=i[0]==="[",d=t.has(i);p||d?(a.length>0&&(a.sort(),o.push(...a),a=[]),o.push(i)):a.push(i)}return a.length>0&&(a.sort(),o.push(...a)),o}},xr=e=>({cache:fr(e.cacheSize),parseClassName:hr(e),sortModifiers:vr(e),...ar(e)}),yr=/\s+/,kr=(e,t)=>{const{parseClassName:r,getClassGroupId:o,getConflictingClassGroupIds:a,sortModifiers:l}=t,i=[],p=e.trim().split(yr);let d="";for(let b=p.length-1;b>=0;b-=1){const f=p[b],{isExternal:v,modifiers:x,hasImportantModifier:A,baseClassName:P,maybePostfixModifierPosition:z}=r(f);if(v){d=f+(d.length>0?" "+d:d);continue}let y=!!z,T=o(y?P.substring(0,z):P);if(!T){if(!y){d=f+(d.length>0?" "+d:d);continue}if(T=o(P),!T){d=f+(d.length>0?" "+d:d);continue}y=!1}const $=x.length===0?"":x.length===1?x[0]:l(x).join(":"),E=A?$+ie:$,L=E+T;if(i.indexOf(L)>-1)continue;i.push(L);const _=a(T,y);for(let N=0;N<_.length;++N){const F=_[N];i.push(E+F)}d=f+(d.length>0?" "+d:d)}return d},wr=(...e)=>{let t=0,r,o,a="";for(;t<e.length;)(r=e[t++])&&(o=Oe(r))&&(a&&(a+=" "),a+=o);return a},Oe=e=>{if(typeof e=="string")return e;let t,r="";for(let o=0;o<e.length;o++)e[o]&&(t=Oe(e[o]))&&(r&&(r+=" "),r+=t);return r},zr=(e,...t)=>{let r,o,a,l;const i=d=>{const b=t.reduce((f,v)=>v(f),e());return r=xr(b),o=r.cache.get,a=r.cache.set,l=p,p(d)},p=d=>{const b=o(d);if(b)return b;const f=kr(d,r);return a(d,f),f};return l=i,(...d)=>l(wr(...d))},Cr=[],g=e=>{const t=r=>r[e]||Cr;return t.isThemeGetter=!0,t},Ve=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,je=/^\((?:(\w[\w-]*):)?(.+)\)$/i,Sr=/^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/,Ar=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Pr=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,Ir=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,Rr=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,Mr=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,R=e=>Sr.test(e),u=e=>!!e&&!Number.isNaN(Number(e)),M=e=>!!e&&Number.isInteger(Number(e)),ae=e=>e.endsWith("%")&&u(e.slice(0,-1)),I=e=>Ar.test(e),Le=()=>!0,Gr=e=>Pr.test(e)&&!Ir.test(e),ce=()=>!1,Tr=e=>Rr.test(e),Nr=e=>Mr.test(e),Or=e=>!s(e)&&!n(e),Vr=e=>G(e,Ee,ce),s=e=>Ve.test(e),V=e=>G(e,Fe,Gr),ke=e=>G(e,$r,u),jr=e=>G(e,$e,Le),Lr=e=>G(e,We,ce),we=e=>G(e,_e,ce),_r=e=>G(e,Be,Nr),X=e=>G(e,Ue,Tr),n=e=>je.test(e),W=e=>j(e,Fe),Br=e=>j(e,We),ze=e=>j(e,_e),Er=e=>j(e,Ee),Fr=e=>j(e,Be),H=e=>j(e,Ue,!0),Wr=e=>j(e,$e,!0),G=(e,t,r)=>{const o=Ve.exec(e);return o?o[1]?t(o[1]):r(o[2]):!1},j=(e,t,r=!1)=>{const o=je.exec(e);return o?o[1]?t(o[1]):r:!1},_e=e=>e==="position"||e==="percentage",Be=e=>e==="image"||e==="url",Ee=e=>e==="length"||e==="size"||e==="bg-size",Fe=e=>e==="length",$r=e=>e==="number",We=e=>e==="family-name",$e=e=>e==="number"||e==="weight",Ue=e=>e==="shadow",Ur=()=>{const e=g("color"),t=g("font"),r=g("text"),o=g("font-weight"),a=g("tracking"),l=g("leading"),i=g("breakpoint"),p=g("container"),d=g("spacing"),b=g("radius"),f=g("shadow"),v=g("inset-shadow"),x=g("text-shadow"),A=g("drop-shadow"),P=g("blur"),z=g("perspective"),y=g("aspect"),T=g("ease"),$=g("animate"),E=()=>["auto","avoid","all","avoid-page","page","left","right","column"],L=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],_=()=>[...L(),n,s],N=()=>["auto","hidden","clip","visible","scroll"],F=()=>["auto","contain","none"],c=()=>[n,s,d],C=()=>[R,"full","auto",...c()],de=()=>[M,"none","subgrid",n,s],me=()=>["auto",{span:["full",M,n,s]},M,n,s],U=()=>[M,"auto",n,s],ue=()=>["auto","min","max","fr",n,s],ee=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],B=()=>["start","end","center","stretch","center-safe","end-safe"],S=()=>["auto",...c()],O=()=>[R,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...c()],re=()=>[R,"screen","full","dvw","lvw","svw","min","max","fit",...c()],oe=()=>[R,"screen","full","lh","dvh","lvh","svh","min","max","fit",...c()],m=()=>[e,n,s],pe=()=>[...L(),ze,we,{position:[n,s]}],be=()=>["no-repeat",{repeat:["","x","y","space","round"]}],fe=()=>["auto","cover","contain",Er,Vr,{size:[n,s]}],te=()=>[ae,W,V],k=()=>["","none","full",b,n,s],w=()=>["",u,W,V],D=()=>["solid","dashed","dotted","double"],ge=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],h=()=>[u,ae,ze,we],he=()=>["","none",P,n,s],Y=()=>["none",u,n,s],q=()=>["none",u,n,s],se=()=>[u,n,s],J=()=>[R,"full",...c()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[I],breakpoint:[I],color:[Le],container:[I],"drop-shadow":[I],ease:["in","out","in-out"],font:[Or],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[I],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[I],shadow:[I],spacing:["px",u],text:[I],"text-shadow":[I],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",R,s,n,y]}],container:["container"],columns:[{columns:[u,s,n,p]}],"break-after":[{"break-after":E()}],"break-before":[{"break-before":E()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:_()}],overflow:[{overflow:N()}],"overflow-x":[{"overflow-x":N()}],"overflow-y":[{"overflow-y":N()}],overscroll:[{overscroll:F()}],"overscroll-x":[{"overscroll-x":F()}],"overscroll-y":[{"overscroll-y":F()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:C()}],"inset-x":[{"inset-x":C()}],"inset-y":[{"inset-y":C()}],start:[{"inset-s":C(),start:C()}],end:[{"inset-e":C(),end:C()}],"inset-bs":[{"inset-bs":C()}],"inset-be":[{"inset-be":C()}],top:[{top:C()}],right:[{right:C()}],bottom:[{bottom:C()}],left:[{left:C()}],visibility:["visible","invisible","collapse"],z:[{z:[M,"auto",n,s]}],basis:[{basis:[R,"full","auto",p,...c()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[u,R,"auto","initial","none",s]}],grow:[{grow:["",u,n,s]}],shrink:[{shrink:["",u,n,s]}],order:[{order:[M,"first","last","none",n,s]}],"grid-cols":[{"grid-cols":de()}],"col-start-end":[{col:me()}],"col-start":[{"col-start":U()}],"col-end":[{"col-end":U()}],"grid-rows":[{"grid-rows":de()}],"row-start-end":[{row:me()}],"row-start":[{"row-start":U()}],"row-end":[{"row-end":U()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":ue()}],"auto-rows":[{"auto-rows":ue()}],gap:[{gap:c()}],"gap-x":[{"gap-x":c()}],"gap-y":[{"gap-y":c()}],"justify-content":[{justify:[...ee(),"normal"]}],"justify-items":[{"justify-items":[...B(),"normal"]}],"justify-self":[{"justify-self":["auto",...B()]}],"align-content":[{content:["normal",...ee()]}],"align-items":[{items:[...B(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...B(),{baseline:["","last"]}]}],"place-content":[{"place-content":ee()}],"place-items":[{"place-items":[...B(),"baseline"]}],"place-self":[{"place-self":["auto",...B()]}],p:[{p:c()}],px:[{px:c()}],py:[{py:c()}],ps:[{ps:c()}],pe:[{pe:c()}],pbs:[{pbs:c()}],pbe:[{pbe:c()}],pt:[{pt:c()}],pr:[{pr:c()}],pb:[{pb:c()}],pl:[{pl:c()}],m:[{m:S()}],mx:[{mx:S()}],my:[{my:S()}],ms:[{ms:S()}],me:[{me:S()}],mbs:[{mbs:S()}],mbe:[{mbe:S()}],mt:[{mt:S()}],mr:[{mr:S()}],mb:[{mb:S()}],ml:[{ml:S()}],"space-x":[{"space-x":c()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":c()}],"space-y-reverse":["space-y-reverse"],size:[{size:O()}],"inline-size":[{inline:["auto",...re()]}],"min-inline-size":[{"min-inline":["auto",...re()]}],"max-inline-size":[{"max-inline":["none",...re()]}],"block-size":[{block:["auto",...oe()]}],"min-block-size":[{"min-block":["auto",...oe()]}],"max-block-size":[{"max-block":["none",...oe()]}],w:[{w:[p,"screen",...O()]}],"min-w":[{"min-w":[p,"screen","none",...O()]}],"max-w":[{"max-w":[p,"screen","none","prose",{screen:[i]},...O()]}],h:[{h:["screen","lh",...O()]}],"min-h":[{"min-h":["screen","lh","none",...O()]}],"max-h":[{"max-h":["screen","lh",...O()]}],"font-size":[{text:["base",r,W,V]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[o,Wr,jr]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",ae,s]}],"font-family":[{font:[Br,Lr,t]}],"font-features":[{"font-features":[s]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[a,n,s]}],"line-clamp":[{"line-clamp":[u,"none",n,ke]}],leading:[{leading:[l,...c()]}],"list-image":[{"list-image":["none",n,s]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",n,s]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:m()}],"text-color":[{text:m()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...D(),"wavy"]}],"text-decoration-thickness":[{decoration:[u,"from-font","auto",n,V]}],"text-decoration-color":[{decoration:m()}],"underline-offset":[{"underline-offset":[u,"auto",n,s]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:c()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",n,s]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",n,s]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:pe()}],"bg-repeat":[{bg:be()}],"bg-size":[{bg:fe()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},M,n,s],radial:["",n,s],conic:[M,n,s]},Fr,_r]}],"bg-color":[{bg:m()}],"gradient-from-pos":[{from:te()}],"gradient-via-pos":[{via:te()}],"gradient-to-pos":[{to:te()}],"gradient-from":[{from:m()}],"gradient-via":[{via:m()}],"gradient-to":[{to:m()}],rounded:[{rounded:k()}],"rounded-s":[{"rounded-s":k()}],"rounded-e":[{"rounded-e":k()}],"rounded-t":[{"rounded-t":k()}],"rounded-r":[{"rounded-r":k()}],"rounded-b":[{"rounded-b":k()}],"rounded-l":[{"rounded-l":k()}],"rounded-ss":[{"rounded-ss":k()}],"rounded-se":[{"rounded-se":k()}],"rounded-ee":[{"rounded-ee":k()}],"rounded-es":[{"rounded-es":k()}],"rounded-tl":[{"rounded-tl":k()}],"rounded-tr":[{"rounded-tr":k()}],"rounded-br":[{"rounded-br":k()}],"rounded-bl":[{"rounded-bl":k()}],"border-w":[{border:w()}],"border-w-x":[{"border-x":w()}],"border-w-y":[{"border-y":w()}],"border-w-s":[{"border-s":w()}],"border-w-e":[{"border-e":w()}],"border-w-bs":[{"border-bs":w()}],"border-w-be":[{"border-be":w()}],"border-w-t":[{"border-t":w()}],"border-w-r":[{"border-r":w()}],"border-w-b":[{"border-b":w()}],"border-w-l":[{"border-l":w()}],"divide-x":[{"divide-x":w()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":w()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...D(),"hidden","none"]}],"divide-style":[{divide:[...D(),"hidden","none"]}],"border-color":[{border:m()}],"border-color-x":[{"border-x":m()}],"border-color-y":[{"border-y":m()}],"border-color-s":[{"border-s":m()}],"border-color-e":[{"border-e":m()}],"border-color-bs":[{"border-bs":m()}],"border-color-be":[{"border-be":m()}],"border-color-t":[{"border-t":m()}],"border-color-r":[{"border-r":m()}],"border-color-b":[{"border-b":m()}],"border-color-l":[{"border-l":m()}],"divide-color":[{divide:m()}],"outline-style":[{outline:[...D(),"none","hidden"]}],"outline-offset":[{"outline-offset":[u,n,s]}],"outline-w":[{outline:["",u,W,V]}],"outline-color":[{outline:m()}],shadow:[{shadow:["","none",f,H,X]}],"shadow-color":[{shadow:m()}],"inset-shadow":[{"inset-shadow":["none",v,H,X]}],"inset-shadow-color":[{"inset-shadow":m()}],"ring-w":[{ring:w()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:m()}],"ring-offset-w":[{"ring-offset":[u,V]}],"ring-offset-color":[{"ring-offset":m()}],"inset-ring-w":[{"inset-ring":w()}],"inset-ring-color":[{"inset-ring":m()}],"text-shadow":[{"text-shadow":["none",x,H,X]}],"text-shadow-color":[{"text-shadow":m()}],opacity:[{opacity:[u,n,s]}],"mix-blend":[{"mix-blend":[...ge(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":ge()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[u]}],"mask-image-linear-from-pos":[{"mask-linear-from":h()}],"mask-image-linear-to-pos":[{"mask-linear-to":h()}],"mask-image-linear-from-color":[{"mask-linear-from":m()}],"mask-image-linear-to-color":[{"mask-linear-to":m()}],"mask-image-t-from-pos":[{"mask-t-from":h()}],"mask-image-t-to-pos":[{"mask-t-to":h()}],"mask-image-t-from-color":[{"mask-t-from":m()}],"mask-image-t-to-color":[{"mask-t-to":m()}],"mask-image-r-from-pos":[{"mask-r-from":h()}],"mask-image-r-to-pos":[{"mask-r-to":h()}],"mask-image-r-from-color":[{"mask-r-from":m()}],"mask-image-r-to-color":[{"mask-r-to":m()}],"mask-image-b-from-pos":[{"mask-b-from":h()}],"mask-image-b-to-pos":[{"mask-b-to":h()}],"mask-image-b-from-color":[{"mask-b-from":m()}],"mask-image-b-to-color":[{"mask-b-to":m()}],"mask-image-l-from-pos":[{"mask-l-from":h()}],"mask-image-l-to-pos":[{"mask-l-to":h()}],"mask-image-l-from-color":[{"mask-l-from":m()}],"mask-image-l-to-color":[{"mask-l-to":m()}],"mask-image-x-from-pos":[{"mask-x-from":h()}],"mask-image-x-to-pos":[{"mask-x-to":h()}],"mask-image-x-from-color":[{"mask-x-from":m()}],"mask-image-x-to-color":[{"mask-x-to":m()}],"mask-image-y-from-pos":[{"mask-y-from":h()}],"mask-image-y-to-pos":[{"mask-y-to":h()}],"mask-image-y-from-color":[{"mask-y-from":m()}],"mask-image-y-to-color":[{"mask-y-to":m()}],"mask-image-radial":[{"mask-radial":[n,s]}],"mask-image-radial-from-pos":[{"mask-radial-from":h()}],"mask-image-radial-to-pos":[{"mask-radial-to":h()}],"mask-image-radial-from-color":[{"mask-radial-from":m()}],"mask-image-radial-to-color":[{"mask-radial-to":m()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":L()}],"mask-image-conic-pos":[{"mask-conic":[u]}],"mask-image-conic-from-pos":[{"mask-conic-from":h()}],"mask-image-conic-to-pos":[{"mask-conic-to":h()}],"mask-image-conic-from-color":[{"mask-conic-from":m()}],"mask-image-conic-to-color":[{"mask-conic-to":m()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:pe()}],"mask-repeat":[{mask:be()}],"mask-size":[{mask:fe()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",n,s]}],filter:[{filter:["","none",n,s]}],blur:[{blur:he()}],brightness:[{brightness:[u,n,s]}],contrast:[{contrast:[u,n,s]}],"drop-shadow":[{"drop-shadow":["","none",A,H,X]}],"drop-shadow-color":[{"drop-shadow":m()}],grayscale:[{grayscale:["",u,n,s]}],"hue-rotate":[{"hue-rotate":[u,n,s]}],invert:[{invert:["",u,n,s]}],saturate:[{saturate:[u,n,s]}],sepia:[{sepia:["",u,n,s]}],"backdrop-filter":[{"backdrop-filter":["","none",n,s]}],"backdrop-blur":[{"backdrop-blur":he()}],"backdrop-brightness":[{"backdrop-brightness":[u,n,s]}],"backdrop-contrast":[{"backdrop-contrast":[u,n,s]}],"backdrop-grayscale":[{"backdrop-grayscale":["",u,n,s]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[u,n,s]}],"backdrop-invert":[{"backdrop-invert":["",u,n,s]}],"backdrop-opacity":[{"backdrop-opacity":[u,n,s]}],"backdrop-saturate":[{"backdrop-saturate":[u,n,s]}],"backdrop-sepia":[{"backdrop-sepia":["",u,n,s]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":c()}],"border-spacing-x":[{"border-spacing-x":c()}],"border-spacing-y":[{"border-spacing-y":c()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",n,s]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[u,"initial",n,s]}],ease:[{ease:["linear","initial",T,n,s]}],delay:[{delay:[u,n,s]}],animate:[{animate:["none",$,n,s]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[z,n,s]}],"perspective-origin":[{"perspective-origin":_()}],rotate:[{rotate:Y()}],"rotate-x":[{"rotate-x":Y()}],"rotate-y":[{"rotate-y":Y()}],"rotate-z":[{"rotate-z":Y()}],scale:[{scale:q()}],"scale-x":[{"scale-x":q()}],"scale-y":[{"scale-y":q()}],"scale-z":[{"scale-z":q()}],"scale-3d":["scale-3d"],skew:[{skew:se()}],"skew-x":[{"skew-x":se()}],"skew-y":[{"skew-y":se()}],transform:[{transform:[n,s,"","none","gpu","cpu"]}],"transform-origin":[{origin:_()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:J()}],"translate-x":[{"translate-x":J()}],"translate-y":[{"translate-y":J()}],"translate-z":[{"translate-z":J()}],"translate-none":["translate-none"],accent:[{accent:m()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:m()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",n,s]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":c()}],"scroll-mx":[{"scroll-mx":c()}],"scroll-my":[{"scroll-my":c()}],"scroll-ms":[{"scroll-ms":c()}],"scroll-me":[{"scroll-me":c()}],"scroll-mbs":[{"scroll-mbs":c()}],"scroll-mbe":[{"scroll-mbe":c()}],"scroll-mt":[{"scroll-mt":c()}],"scroll-mr":[{"scroll-mr":c()}],"scroll-mb":[{"scroll-mb":c()}],"scroll-ml":[{"scroll-ml":c()}],"scroll-p":[{"scroll-p":c()}],"scroll-px":[{"scroll-px":c()}],"scroll-py":[{"scroll-py":c()}],"scroll-ps":[{"scroll-ps":c()}],"scroll-pe":[{"scroll-pe":c()}],"scroll-pbs":[{"scroll-pbs":c()}],"scroll-pbe":[{"scroll-pbe":c()}],"scroll-pt":[{"scroll-pt":c()}],"scroll-pr":[{"scroll-pr":c()}],"scroll-pb":[{"scroll-pb":c()}],"scroll-pl":[{"scroll-pl":c()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",n,s]}],fill:[{fill:["none",...m()]}],"stroke-w":[{stroke:[u,W,V,ke]}],stroke:[{stroke:["none",...m()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","inset-bs","inset-be","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pbs","pbe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mbs","mbe","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-bs","border-w-be","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-bs","border-color-be","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mbs","scroll-mbe","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pbs","scroll-pbe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},Dr=zr(Ur);function De(...e){return Dr(Me(e))}const Xr=Z({__name:"Skeleton",props:{class:{type:[Boolean,null,String,Object,Array]}},setup(e){const t=e;return(r,o)=>(Ae(),He("div",{"data-slot":"skeleton",class:Pe(K(De)("animate-pulse rounded-md bg-primary/10",t.class))},null,2))}}),Ce=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,Se=Me,Yr=(e,t)=>r=>{var o;if(t?.variants==null)return Se(e,r?.class,r?.className);const{variants:a,defaultVariants:l}=t,i=Object.keys(a).map(b=>{const f=r?.[b],v=l?.[b];if(f===null)return null;const x=Ce(f)||Ce(v);return a[b][x]}),p=r&&Object.entries(r).reduce((b,f)=>{let[v,x]=f;return x===void 0||(b[v]=x),b},{}),d=t==null||(o=t.compoundVariants)===null||o===void 0?void 0:o.reduce((b,f)=>{let{class:v,className:x,...A}=f;return Object.entries(A).every(P=>{let[z,y]=P;return Array.isArray(y)?y.includes({...l,...p}[z]):{...l,...p}[z]===y})?[...b,v,x]:b},[]);return Se(e,i,d,r?.class,r?.className)},Hr=Z({__name:"Button",props:{variant:{},size:{},class:{type:[Boolean,null,String,Object,Array]},asChild:{type:Boolean},as:{default:"button"}},setup(e){const t=e;return(r,o)=>(Ae(),Ke(K(or),{"data-slot":"button","data-variant":e.variant,"data-size":e.size,as:e.as,"as-child":e.asChild,class:Pe(K(De)(K(qr)({variant:e.variant,size:e.size}),t.class))},{default:Qe(()=>[Ze(r.$slots,"default")]),_:3},8,["data-variant","data-size","as","as-child","class"]))}}),qr=Yr("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/90",destructive:"bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",outline:"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2 has-[>svg]:px-3",sm:"h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",lg:"h-10 rounded-md px-6 has-[>svg]:px-4",icon:"size-9","icon-sm":"size-8","icon-lg":"size-10"}},defaultVariants:{variant:"default",size:"default"}});export{or as P,er as S,Xr as _,Hr as a,De as c,Ie as r};
|
|
1
|
+
import{H as Ye,y as Z,aU as qe,J as Je,aV as Xe,W as ne,o as Ae,c as He,V as Pe,C as K,A as Ke,w as Qe,B as Ze}from"./DgKrPjze.js";function Ie(e){return e?e.flatMap(t=>t.type===Ye?Ie(t.children):[t]):[]}const er=Z({name:"PrimitiveSlot",inheritAttrs:!1,setup(e,{attrs:t,slots:r}){return()=>{if(!r.default)return null;const o=Ie(r.default()),a=o.findIndex(d=>d.type!==qe);if(a===-1)return o;const l=o[a];delete l.props?.ref;const i=l.props?Je(t,l.props):t,p=Xe({...l,props:{}},i);return o.length===1?p:(o[a]=p,o)}}}),rr=["area","img","input"],or=Z({name:"Primitive",inheritAttrs:!1,props:{asChild:{type:Boolean,default:!1},as:{type:[String,Object],default:"div"}},setup(e,{attrs:t,slots:r}){const o=e.asChild?"template":e.as;return typeof o=="string"&&rr.includes(o)?()=>ne(o,t):o!=="template"?()=>ne(e.as,t,{default:r.default}):()=>ne(er,t,{default:r.default})}});function Re(e){var t,r,o="";if(typeof e=="string"||typeof e=="number")o+=e;else if(typeof e=="object")if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(r=Re(e[t]))&&(o&&(o+=" "),o+=r)}else for(r in e)e[r]&&(o&&(o+=" "),o+=r);return o}function Me(){for(var e,t,r=0,o="",a=arguments.length;r<a;r++)(e=arguments[r])&&(t=Re(e))&&(o&&(o+=" "),o+=t);return o}const tr=(e,t)=>{const r=new Array(e.length+t.length);for(let o=0;o<e.length;o++)r[o]=e[o];for(let o=0;o<t.length;o++)r[e.length+o]=t[o];return r},sr=(e,t)=>({classGroupId:e,validator:t}),Ge=(e=new Map,t=null,r)=>({nextPart:e,validators:t,classGroupId:r}),Q="-",ve=[],nr="arbitrary..",ar=e=>{const t=lr(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:o}=e;return{getClassGroupId:i=>{if(i.startsWith("[")&&i.endsWith("]"))return ir(i);const p=i.split(Q),d=p[0]===""&&p.length>1?1:0;return Te(p,d,t)},getConflictingClassGroupIds:(i,p)=>{if(p){const d=o[i],b=r[i];return d?b?tr(b,d):d:b||ve}return r[i]||ve}}},Te=(e,t,r)=>{if(e.length-t===0)return r.classGroupId;const a=e[t],l=r.nextPart.get(a);if(l){const b=Te(e,t+1,l);if(b)return b}const i=r.validators;if(i===null)return;const p=t===0?e.join(Q):e.slice(t).join(Q),d=i.length;for(let b=0;b<d;b++){const f=i[b];if(f.validator(p))return f.classGroupId}},ir=e=>e.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const t=e.slice(1,-1),r=t.indexOf(":"),o=t.slice(0,r);return o?nr+o:void 0})(),lr=e=>{const{theme:t,classGroups:r}=e;return cr(r,t)},cr=(e,t)=>{const r=Ge();for(const o in e){const a=e[o];le(a,r,o,t)}return r},le=(e,t,r,o)=>{const a=e.length;for(let l=0;l<a;l++){const i=e[l];dr(i,t,r,o)}},dr=(e,t,r,o)=>{if(typeof e=="string"){mr(e,t,r);return}if(typeof e=="function"){ur(e,t,r,o);return}pr(e,t,r,o)},mr=(e,t,r)=>{const o=e===""?t:Ne(t,e);o.classGroupId=r},ur=(e,t,r,o)=>{if(br(e)){le(e(o),t,r,o);return}t.validators===null&&(t.validators=[]),t.validators.push(sr(r,e))},pr=(e,t,r,o)=>{const a=Object.entries(e),l=a.length;for(let i=0;i<l;i++){const[p,d]=a[i];le(d,Ne(t,p),r,o)}},Ne=(e,t)=>{let r=e;const o=t.split(Q),a=o.length;for(let l=0;l<a;l++){const i=o[l];let p=r.nextPart.get(i);p||(p=Ge(),r.nextPart.set(i,p)),r=p}return r},br=e=>"isThemeGetter"in e&&e.isThemeGetter===!0,fr=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=Object.create(null),o=Object.create(null);const a=(l,i)=>{r[l]=i,t++,t>e&&(t=0,o=r,r=Object.create(null))};return{get(l){let i=r[l];if(i!==void 0)return i;if((i=o[l])!==void 0)return a(l,i),i},set(l,i){l in r?r[l]=i:a(l,i)}}},ie="!",xe=":",gr=[],ye=(e,t,r,o,a)=>({modifiers:e,hasImportantModifier:t,baseClassName:r,maybePostfixModifierPosition:o,isExternal:a}),hr=e=>{const{prefix:t,experimentalParseClassName:r}=e;let o=a=>{const l=[];let i=0,p=0,d=0,b;const f=a.length;for(let z=0;z<f;z++){const y=a[z];if(i===0&&p===0){if(y===xe){l.push(a.slice(d,z)),d=z+1;continue}if(y==="/"){b=z;continue}}y==="["?i++:y==="]"?i--:y==="("?p++:y===")"&&p--}const v=l.length===0?a:a.slice(d);let x=v,A=!1;v.endsWith(ie)?(x=v.slice(0,-1),A=!0):v.startsWith(ie)&&(x=v.slice(1),A=!0);const P=b&&b>d?b-d:void 0;return ye(l,A,x,P)};if(t){const a=t+xe,l=o;o=i=>i.startsWith(a)?l(i.slice(a.length)):ye(gr,!1,i,void 0,!0)}if(r){const a=o;o=l=>r({className:l,parseClassName:a})}return o},vr=e=>{const t=new Map;return e.orderSensitiveModifiers.forEach((r,o)=>{t.set(r,1e6+o)}),r=>{const o=[];let a=[];for(let l=0;l<r.length;l++){const i=r[l],p=i[0]==="[",d=t.has(i);p||d?(a.length>0&&(a.sort(),o.push(...a),a=[]),o.push(i)):a.push(i)}return a.length>0&&(a.sort(),o.push(...a)),o}},xr=e=>({cache:fr(e.cacheSize),parseClassName:hr(e),sortModifiers:vr(e),...ar(e)}),yr=/\s+/,kr=(e,t)=>{const{parseClassName:r,getClassGroupId:o,getConflictingClassGroupIds:a,sortModifiers:l}=t,i=[],p=e.trim().split(yr);let d="";for(let b=p.length-1;b>=0;b-=1){const f=p[b],{isExternal:v,modifiers:x,hasImportantModifier:A,baseClassName:P,maybePostfixModifierPosition:z}=r(f);if(v){d=f+(d.length>0?" "+d:d);continue}let y=!!z,T=o(y?P.substring(0,z):P);if(!T){if(!y){d=f+(d.length>0?" "+d:d);continue}if(T=o(P),!T){d=f+(d.length>0?" "+d:d);continue}y=!1}const $=x.length===0?"":x.length===1?x[0]:l(x).join(":"),E=A?$+ie:$,L=E+T;if(i.indexOf(L)>-1)continue;i.push(L);const _=a(T,y);for(let N=0;N<_.length;++N){const F=_[N];i.push(E+F)}d=f+(d.length>0?" "+d:d)}return d},wr=(...e)=>{let t=0,r,o,a="";for(;t<e.length;)(r=e[t++])&&(o=Oe(r))&&(a&&(a+=" "),a+=o);return a},Oe=e=>{if(typeof e=="string")return e;let t,r="";for(let o=0;o<e.length;o++)e[o]&&(t=Oe(e[o]))&&(r&&(r+=" "),r+=t);return r},zr=(e,...t)=>{let r,o,a,l;const i=d=>{const b=t.reduce((f,v)=>v(f),e());return r=xr(b),o=r.cache.get,a=r.cache.set,l=p,p(d)},p=d=>{const b=o(d);if(b)return b;const f=kr(d,r);return a(d,f),f};return l=i,(...d)=>l(wr(...d))},Cr=[],g=e=>{const t=r=>r[e]||Cr;return t.isThemeGetter=!0,t},Ve=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,je=/^\((?:(\w[\w-]*):)?(.+)\)$/i,Sr=/^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/,Ar=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Pr=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,Ir=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,Rr=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,Mr=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,R=e=>Sr.test(e),u=e=>!!e&&!Number.isNaN(Number(e)),M=e=>!!e&&Number.isInteger(Number(e)),ae=e=>e.endsWith("%")&&u(e.slice(0,-1)),I=e=>Ar.test(e),Le=()=>!0,Gr=e=>Pr.test(e)&&!Ir.test(e),ce=()=>!1,Tr=e=>Rr.test(e),Nr=e=>Mr.test(e),Or=e=>!s(e)&&!n(e),Vr=e=>G(e,Ee,ce),s=e=>Ve.test(e),V=e=>G(e,Fe,Gr),ke=e=>G(e,$r,u),jr=e=>G(e,$e,Le),Lr=e=>G(e,We,ce),we=e=>G(e,_e,ce),_r=e=>G(e,Be,Nr),X=e=>G(e,Ue,Tr),n=e=>je.test(e),W=e=>j(e,Fe),Br=e=>j(e,We),ze=e=>j(e,_e),Er=e=>j(e,Ee),Fr=e=>j(e,Be),H=e=>j(e,Ue,!0),Wr=e=>j(e,$e,!0),G=(e,t,r)=>{const o=Ve.exec(e);return o?o[1]?t(o[1]):r(o[2]):!1},j=(e,t,r=!1)=>{const o=je.exec(e);return o?o[1]?t(o[1]):r:!1},_e=e=>e==="position"||e==="percentage",Be=e=>e==="image"||e==="url",Ee=e=>e==="length"||e==="size"||e==="bg-size",Fe=e=>e==="length",$r=e=>e==="number",We=e=>e==="family-name",$e=e=>e==="number"||e==="weight",Ue=e=>e==="shadow",Ur=()=>{const e=g("color"),t=g("font"),r=g("text"),o=g("font-weight"),a=g("tracking"),l=g("leading"),i=g("breakpoint"),p=g("container"),d=g("spacing"),b=g("radius"),f=g("shadow"),v=g("inset-shadow"),x=g("text-shadow"),A=g("drop-shadow"),P=g("blur"),z=g("perspective"),y=g("aspect"),T=g("ease"),$=g("animate"),E=()=>["auto","avoid","all","avoid-page","page","left","right","column"],L=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],_=()=>[...L(),n,s],N=()=>["auto","hidden","clip","visible","scroll"],F=()=>["auto","contain","none"],c=()=>[n,s,d],C=()=>[R,"full","auto",...c()],de=()=>[M,"none","subgrid",n,s],me=()=>["auto",{span:["full",M,n,s]},M,n,s],U=()=>[M,"auto",n,s],ue=()=>["auto","min","max","fr",n,s],ee=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],B=()=>["start","end","center","stretch","center-safe","end-safe"],S=()=>["auto",...c()],O=()=>[R,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...c()],re=()=>[R,"screen","full","dvw","lvw","svw","min","max","fit",...c()],oe=()=>[R,"screen","full","lh","dvh","lvh","svh","min","max","fit",...c()],m=()=>[e,n,s],pe=()=>[...L(),ze,we,{position:[n,s]}],be=()=>["no-repeat",{repeat:["","x","y","space","round"]}],fe=()=>["auto","cover","contain",Er,Vr,{size:[n,s]}],te=()=>[ae,W,V],k=()=>["","none","full",b,n,s],w=()=>["",u,W,V],D=()=>["solid","dashed","dotted","double"],ge=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],h=()=>[u,ae,ze,we],he=()=>["","none",P,n,s],Y=()=>["none",u,n,s],q=()=>["none",u,n,s],se=()=>[u,n,s],J=()=>[R,"full",...c()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[I],breakpoint:[I],color:[Le],container:[I],"drop-shadow":[I],ease:["in","out","in-out"],font:[Or],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[I],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[I],shadow:[I],spacing:["px",u],text:[I],"text-shadow":[I],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",R,s,n,y]}],container:["container"],columns:[{columns:[u,s,n,p]}],"break-after":[{"break-after":E()}],"break-before":[{"break-before":E()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:_()}],overflow:[{overflow:N()}],"overflow-x":[{"overflow-x":N()}],"overflow-y":[{"overflow-y":N()}],overscroll:[{overscroll:F()}],"overscroll-x":[{"overscroll-x":F()}],"overscroll-y":[{"overscroll-y":F()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:C()}],"inset-x":[{"inset-x":C()}],"inset-y":[{"inset-y":C()}],start:[{"inset-s":C(),start:C()}],end:[{"inset-e":C(),end:C()}],"inset-bs":[{"inset-bs":C()}],"inset-be":[{"inset-be":C()}],top:[{top:C()}],right:[{right:C()}],bottom:[{bottom:C()}],left:[{left:C()}],visibility:["visible","invisible","collapse"],z:[{z:[M,"auto",n,s]}],basis:[{basis:[R,"full","auto",p,...c()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[u,R,"auto","initial","none",s]}],grow:[{grow:["",u,n,s]}],shrink:[{shrink:["",u,n,s]}],order:[{order:[M,"first","last","none",n,s]}],"grid-cols":[{"grid-cols":de()}],"col-start-end":[{col:me()}],"col-start":[{"col-start":U()}],"col-end":[{"col-end":U()}],"grid-rows":[{"grid-rows":de()}],"row-start-end":[{row:me()}],"row-start":[{"row-start":U()}],"row-end":[{"row-end":U()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":ue()}],"auto-rows":[{"auto-rows":ue()}],gap:[{gap:c()}],"gap-x":[{"gap-x":c()}],"gap-y":[{"gap-y":c()}],"justify-content":[{justify:[...ee(),"normal"]}],"justify-items":[{"justify-items":[...B(),"normal"]}],"justify-self":[{"justify-self":["auto",...B()]}],"align-content":[{content:["normal",...ee()]}],"align-items":[{items:[...B(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...B(),{baseline:["","last"]}]}],"place-content":[{"place-content":ee()}],"place-items":[{"place-items":[...B(),"baseline"]}],"place-self":[{"place-self":["auto",...B()]}],p:[{p:c()}],px:[{px:c()}],py:[{py:c()}],ps:[{ps:c()}],pe:[{pe:c()}],pbs:[{pbs:c()}],pbe:[{pbe:c()}],pt:[{pt:c()}],pr:[{pr:c()}],pb:[{pb:c()}],pl:[{pl:c()}],m:[{m:S()}],mx:[{mx:S()}],my:[{my:S()}],ms:[{ms:S()}],me:[{me:S()}],mbs:[{mbs:S()}],mbe:[{mbe:S()}],mt:[{mt:S()}],mr:[{mr:S()}],mb:[{mb:S()}],ml:[{ml:S()}],"space-x":[{"space-x":c()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":c()}],"space-y-reverse":["space-y-reverse"],size:[{size:O()}],"inline-size":[{inline:["auto",...re()]}],"min-inline-size":[{"min-inline":["auto",...re()]}],"max-inline-size":[{"max-inline":["none",...re()]}],"block-size":[{block:["auto",...oe()]}],"min-block-size":[{"min-block":["auto",...oe()]}],"max-block-size":[{"max-block":["none",...oe()]}],w:[{w:[p,"screen",...O()]}],"min-w":[{"min-w":[p,"screen","none",...O()]}],"max-w":[{"max-w":[p,"screen","none","prose",{screen:[i]},...O()]}],h:[{h:["screen","lh",...O()]}],"min-h":[{"min-h":["screen","lh","none",...O()]}],"max-h":[{"max-h":["screen","lh",...O()]}],"font-size":[{text:["base",r,W,V]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[o,Wr,jr]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",ae,s]}],"font-family":[{font:[Br,Lr,t]}],"font-features":[{"font-features":[s]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[a,n,s]}],"line-clamp":[{"line-clamp":[u,"none",n,ke]}],leading:[{leading:[l,...c()]}],"list-image":[{"list-image":["none",n,s]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",n,s]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:m()}],"text-color":[{text:m()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...D(),"wavy"]}],"text-decoration-thickness":[{decoration:[u,"from-font","auto",n,V]}],"text-decoration-color":[{decoration:m()}],"underline-offset":[{"underline-offset":[u,"auto",n,s]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:c()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",n,s]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",n,s]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:pe()}],"bg-repeat":[{bg:be()}],"bg-size":[{bg:fe()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},M,n,s],radial:["",n,s],conic:[M,n,s]},Fr,_r]}],"bg-color":[{bg:m()}],"gradient-from-pos":[{from:te()}],"gradient-via-pos":[{via:te()}],"gradient-to-pos":[{to:te()}],"gradient-from":[{from:m()}],"gradient-via":[{via:m()}],"gradient-to":[{to:m()}],rounded:[{rounded:k()}],"rounded-s":[{"rounded-s":k()}],"rounded-e":[{"rounded-e":k()}],"rounded-t":[{"rounded-t":k()}],"rounded-r":[{"rounded-r":k()}],"rounded-b":[{"rounded-b":k()}],"rounded-l":[{"rounded-l":k()}],"rounded-ss":[{"rounded-ss":k()}],"rounded-se":[{"rounded-se":k()}],"rounded-ee":[{"rounded-ee":k()}],"rounded-es":[{"rounded-es":k()}],"rounded-tl":[{"rounded-tl":k()}],"rounded-tr":[{"rounded-tr":k()}],"rounded-br":[{"rounded-br":k()}],"rounded-bl":[{"rounded-bl":k()}],"border-w":[{border:w()}],"border-w-x":[{"border-x":w()}],"border-w-y":[{"border-y":w()}],"border-w-s":[{"border-s":w()}],"border-w-e":[{"border-e":w()}],"border-w-bs":[{"border-bs":w()}],"border-w-be":[{"border-be":w()}],"border-w-t":[{"border-t":w()}],"border-w-r":[{"border-r":w()}],"border-w-b":[{"border-b":w()}],"border-w-l":[{"border-l":w()}],"divide-x":[{"divide-x":w()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":w()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...D(),"hidden","none"]}],"divide-style":[{divide:[...D(),"hidden","none"]}],"border-color":[{border:m()}],"border-color-x":[{"border-x":m()}],"border-color-y":[{"border-y":m()}],"border-color-s":[{"border-s":m()}],"border-color-e":[{"border-e":m()}],"border-color-bs":[{"border-bs":m()}],"border-color-be":[{"border-be":m()}],"border-color-t":[{"border-t":m()}],"border-color-r":[{"border-r":m()}],"border-color-b":[{"border-b":m()}],"border-color-l":[{"border-l":m()}],"divide-color":[{divide:m()}],"outline-style":[{outline:[...D(),"none","hidden"]}],"outline-offset":[{"outline-offset":[u,n,s]}],"outline-w":[{outline:["",u,W,V]}],"outline-color":[{outline:m()}],shadow:[{shadow:["","none",f,H,X]}],"shadow-color":[{shadow:m()}],"inset-shadow":[{"inset-shadow":["none",v,H,X]}],"inset-shadow-color":[{"inset-shadow":m()}],"ring-w":[{ring:w()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:m()}],"ring-offset-w":[{"ring-offset":[u,V]}],"ring-offset-color":[{"ring-offset":m()}],"inset-ring-w":[{"inset-ring":w()}],"inset-ring-color":[{"inset-ring":m()}],"text-shadow":[{"text-shadow":["none",x,H,X]}],"text-shadow-color":[{"text-shadow":m()}],opacity:[{opacity:[u,n,s]}],"mix-blend":[{"mix-blend":[...ge(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":ge()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[u]}],"mask-image-linear-from-pos":[{"mask-linear-from":h()}],"mask-image-linear-to-pos":[{"mask-linear-to":h()}],"mask-image-linear-from-color":[{"mask-linear-from":m()}],"mask-image-linear-to-color":[{"mask-linear-to":m()}],"mask-image-t-from-pos":[{"mask-t-from":h()}],"mask-image-t-to-pos":[{"mask-t-to":h()}],"mask-image-t-from-color":[{"mask-t-from":m()}],"mask-image-t-to-color":[{"mask-t-to":m()}],"mask-image-r-from-pos":[{"mask-r-from":h()}],"mask-image-r-to-pos":[{"mask-r-to":h()}],"mask-image-r-from-color":[{"mask-r-from":m()}],"mask-image-r-to-color":[{"mask-r-to":m()}],"mask-image-b-from-pos":[{"mask-b-from":h()}],"mask-image-b-to-pos":[{"mask-b-to":h()}],"mask-image-b-from-color":[{"mask-b-from":m()}],"mask-image-b-to-color":[{"mask-b-to":m()}],"mask-image-l-from-pos":[{"mask-l-from":h()}],"mask-image-l-to-pos":[{"mask-l-to":h()}],"mask-image-l-from-color":[{"mask-l-from":m()}],"mask-image-l-to-color":[{"mask-l-to":m()}],"mask-image-x-from-pos":[{"mask-x-from":h()}],"mask-image-x-to-pos":[{"mask-x-to":h()}],"mask-image-x-from-color":[{"mask-x-from":m()}],"mask-image-x-to-color":[{"mask-x-to":m()}],"mask-image-y-from-pos":[{"mask-y-from":h()}],"mask-image-y-to-pos":[{"mask-y-to":h()}],"mask-image-y-from-color":[{"mask-y-from":m()}],"mask-image-y-to-color":[{"mask-y-to":m()}],"mask-image-radial":[{"mask-radial":[n,s]}],"mask-image-radial-from-pos":[{"mask-radial-from":h()}],"mask-image-radial-to-pos":[{"mask-radial-to":h()}],"mask-image-radial-from-color":[{"mask-radial-from":m()}],"mask-image-radial-to-color":[{"mask-radial-to":m()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":L()}],"mask-image-conic-pos":[{"mask-conic":[u]}],"mask-image-conic-from-pos":[{"mask-conic-from":h()}],"mask-image-conic-to-pos":[{"mask-conic-to":h()}],"mask-image-conic-from-color":[{"mask-conic-from":m()}],"mask-image-conic-to-color":[{"mask-conic-to":m()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:pe()}],"mask-repeat":[{mask:be()}],"mask-size":[{mask:fe()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",n,s]}],filter:[{filter:["","none",n,s]}],blur:[{blur:he()}],brightness:[{brightness:[u,n,s]}],contrast:[{contrast:[u,n,s]}],"drop-shadow":[{"drop-shadow":["","none",A,H,X]}],"drop-shadow-color":[{"drop-shadow":m()}],grayscale:[{grayscale:["",u,n,s]}],"hue-rotate":[{"hue-rotate":[u,n,s]}],invert:[{invert:["",u,n,s]}],saturate:[{saturate:[u,n,s]}],sepia:[{sepia:["",u,n,s]}],"backdrop-filter":[{"backdrop-filter":["","none",n,s]}],"backdrop-blur":[{"backdrop-blur":he()}],"backdrop-brightness":[{"backdrop-brightness":[u,n,s]}],"backdrop-contrast":[{"backdrop-contrast":[u,n,s]}],"backdrop-grayscale":[{"backdrop-grayscale":["",u,n,s]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[u,n,s]}],"backdrop-invert":[{"backdrop-invert":["",u,n,s]}],"backdrop-opacity":[{"backdrop-opacity":[u,n,s]}],"backdrop-saturate":[{"backdrop-saturate":[u,n,s]}],"backdrop-sepia":[{"backdrop-sepia":["",u,n,s]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":c()}],"border-spacing-x":[{"border-spacing-x":c()}],"border-spacing-y":[{"border-spacing-y":c()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",n,s]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[u,"initial",n,s]}],ease:[{ease:["linear","initial",T,n,s]}],delay:[{delay:[u,n,s]}],animate:[{animate:["none",$,n,s]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[z,n,s]}],"perspective-origin":[{"perspective-origin":_()}],rotate:[{rotate:Y()}],"rotate-x":[{"rotate-x":Y()}],"rotate-y":[{"rotate-y":Y()}],"rotate-z":[{"rotate-z":Y()}],scale:[{scale:q()}],"scale-x":[{"scale-x":q()}],"scale-y":[{"scale-y":q()}],"scale-z":[{"scale-z":q()}],"scale-3d":["scale-3d"],skew:[{skew:se()}],"skew-x":[{"skew-x":se()}],"skew-y":[{"skew-y":se()}],transform:[{transform:[n,s,"","none","gpu","cpu"]}],"transform-origin":[{origin:_()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:J()}],"translate-x":[{"translate-x":J()}],"translate-y":[{"translate-y":J()}],"translate-z":[{"translate-z":J()}],"translate-none":["translate-none"],accent:[{accent:m()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:m()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",n,s]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":c()}],"scroll-mx":[{"scroll-mx":c()}],"scroll-my":[{"scroll-my":c()}],"scroll-ms":[{"scroll-ms":c()}],"scroll-me":[{"scroll-me":c()}],"scroll-mbs":[{"scroll-mbs":c()}],"scroll-mbe":[{"scroll-mbe":c()}],"scroll-mt":[{"scroll-mt":c()}],"scroll-mr":[{"scroll-mr":c()}],"scroll-mb":[{"scroll-mb":c()}],"scroll-ml":[{"scroll-ml":c()}],"scroll-p":[{"scroll-p":c()}],"scroll-px":[{"scroll-px":c()}],"scroll-py":[{"scroll-py":c()}],"scroll-ps":[{"scroll-ps":c()}],"scroll-pe":[{"scroll-pe":c()}],"scroll-pbs":[{"scroll-pbs":c()}],"scroll-pbe":[{"scroll-pbe":c()}],"scroll-pt":[{"scroll-pt":c()}],"scroll-pr":[{"scroll-pr":c()}],"scroll-pb":[{"scroll-pb":c()}],"scroll-pl":[{"scroll-pl":c()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",n,s]}],fill:[{fill:["none",...m()]}],"stroke-w":[{stroke:[u,W,V,ke]}],stroke:[{stroke:["none",...m()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","inset-bs","inset-be","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pbs","pbe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mbs","mbe","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-bs","border-w-be","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-bs","border-color-be","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mbs","scroll-mbe","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pbs","scroll-pbe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},Dr=zr(Ur);function De(...e){return Dr(Me(e))}const Xr=Z({__name:"Skeleton",props:{class:{type:[Boolean,null,String,Object,Array]}},setup(e){const t=e;return(r,o)=>(Ae(),He("div",{"data-slot":"skeleton",class:Pe(K(De)("animate-pulse rounded-md bg-primary/10",t.class))},null,2))}}),Ce=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,Se=Me,Yr=(e,t)=>r=>{var o;if(t?.variants==null)return Se(e,r?.class,r?.className);const{variants:a,defaultVariants:l}=t,i=Object.keys(a).map(b=>{const f=r?.[b],v=l?.[b];if(f===null)return null;const x=Ce(f)||Ce(v);return a[b][x]}),p=r&&Object.entries(r).reduce((b,f)=>{let[v,x]=f;return x===void 0||(b[v]=x),b},{}),d=t==null||(o=t.compoundVariants)===null||o===void 0?void 0:o.reduce((b,f)=>{let{class:v,className:x,...A}=f;return Object.entries(A).every(P=>{let[z,y]=P;return Array.isArray(y)?y.includes({...l,...p}[z]):{...l,...p}[z]===y})?[...b,v,x]:b},[]);return Se(e,i,d,r?.class,r?.className)},Hr=Z({__name:"Button",props:{variant:{},size:{},class:{type:[Boolean,null,String,Object,Array]},asChild:{type:Boolean},as:{default:"button"}},setup(e){const t=e;return(r,o)=>(Ae(),Ke(K(or),{"data-slot":"button","data-variant":e.variant,"data-size":e.size,as:e.as,"as-child":e.asChild,class:Pe(K(De)(K(qr)({variant:e.variant,size:e.size}),t.class))},{default:Qe(()=>[Ze(r.$slots,"default")]),_:3},8,["data-variant","data-size","as","as-child","class"]))}}),qr=Yr("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/90",destructive:"bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",outline:"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2 has-[>svg]:px-3",sm:"h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",lg:"h-10 rounded-md px-6 has-[>svg]:px-4",icon:"size-9","icon-sm":"size-8","icon-lg":"size-10"}},defaultVariants:{variant:"default",size:"default"}});export{or as P,er as S,Xr as _,Hr as a,De as c,Ie as r};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{y as b,o as l,A as p,w,B as N,J as U,C as h,g as x,Q as J,R as X,_ as P,c as k,a as A,D as R,ay as W,p as g,az as Y,aA as Q7,b as f,t as T,X as t7,U as e7,aB as s7,a8 as o7,H as q,I as n7,V as a7,aC as r7,aD as i7,d as O}from"./D7Qebc1i.js";import{d as c7,u as l7,_ as D}from"./WjVGlVHF.js";import{P as A7,_ as u7,a as V,c as E}from"./LYzk-FvL.js";import{_ as I}from"./Bz0aA7IQ.js";import{s as _7,_ as d7}from"./BuL2_OVR.js";const f7=[1779033703,-1150833019,1013904242,-1521486534,1359893119,-1694144372,528734635,1541459225],p7=[1116352408,1899447441,-1245643825,-373957723,961987163,1508970993,-1841331548,-1424204075,-670586216,310598401,607225278,1426881987,1925078388,-2132889090,-1680079193,-1046744716,-459576895,-272742522,264347078,604807628,770255983,1249150122,1555081692,1996064986,-1740746414,-1473132947,-1341970488,-1084653625,-958395405,-710438585,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,-2117940946,-1838011259,-1564481375,-1474664885,-1035236496,-949202525,-778901479,-694614492,-200395387,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,-2067236844,-1933114872,-1866530822,-1538233109,-1090935817,-965641998],h7="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",v=[];class m7{_data=new M;_hash=new M([...f7]);_nDataBytes=0;_minBufferSize=0;finalize(e){e&&this._append(e);const t=this._nDataBytes*8,Q=this._data.sigBytes*8;return this._data.words[Q>>>5]|=128<<24-Q%32,this._data.words[(Q+64>>>9<<4)+14]=Math.floor(t/4294967296),this._data.words[(Q+64>>>9<<4)+15]=t,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}_doProcessBlock(e,t){const Q=this._hash.words;let s=Q[0],o=Q[1],a=Q[2],r=Q[3],i=Q[4],u=Q[5],d=Q[6],y=Q[7];for(let c=0;c<64;c++){if(c<16)v[c]=e[t+c]|0;else{const L=v[c-15],F=(L<<25|L>>>7)^(L<<14|L>>>18)^L>>>3,m=v[c-2],$=(m<<15|m>>>17)^(m<<13|m>>>19)^m>>>10;v[c]=F+v[c-7]+$+v[c-16]}const S=i&u^~i&d,_=s&o^s&a^o&a,Z=(s<<30|s>>>2)^(s<<19|s>>>13)^(s<<10|s>>>22),C=(i<<26|i>>>6)^(i<<21|i>>>11)^(i<<7|i>>>25),z=y+C+S+p7[c]+v[c],j=Z+_;y=d,d=u,u=i,i=r+z|0,r=a,a=o,o=s,s=z+j|0}Q[0]=Q[0]+s|0,Q[1]=Q[1]+o|0,Q[2]=Q[2]+a|0,Q[3]=Q[3]+r|0,Q[4]=Q[4]+i|0,Q[5]=Q[5]+u|0,Q[6]=Q[6]+d|0,Q[7]=Q[7]+y|0}_append(e){typeof e=="string"&&(e=M.fromUtf8(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes}_process(e){let t,Q=this._data.sigBytes/64;e?Q=Math.ceil(Q):Q=Math.max((Q|0)-this._minBufferSize,0);const s=Q*16,o=Math.min(s*4,this._data.sigBytes);if(s){for(let a=0;a<s;a+=16)this._doProcessBlock(this._data.words,a);t=this._data.words.splice(0,s),this._data.sigBytes-=o}return new M(t,o)}}class M{words;sigBytes;constructor(e,t){e=this.words=e||[],this.sigBytes=t===void 0?e.length*4:t}static fromUtf8(e){const t=unescape(encodeURIComponent(e)),Q=t.length,s=[];for(let o=0;o<Q;o++)s[o>>>2]|=(t.charCodeAt(o)&255)<<24-o%4*8;return new M(s,Q)}toBase64(){const e=[];for(let t=0;t<this.sigBytes;t+=3){const Q=this.words[t>>>2]>>>24-t%4*8&255,s=this.words[t+1>>>2]>>>24-(t+1)%4*8&255,o=this.words[t+2>>>2]>>>24-(t+2)%4*8&255,a=Q<<16|s<<8|o;for(let r=0;r<4&&t*8+r*6<this.sigBytes*8;r++)e.push(h7.charAt(a>>>6*(3-r)&63))}return e.join("")}concat(e){if(this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4),this.sigBytes%4)for(let t=0;t<e.sigBytes;t++){const Q=e.words[t>>>2]>>>24-t%4*8&255;this.words[this.sigBytes+t>>>2]|=Q<<24-(this.sigBytes+t)%4*8}else for(let t=0;t<e.sigBytes;t+=4)this.words[this.sigBytes+t>>>2]=e.words[t>>>2];this.sigBytes+=e.sigBytes}}function g7(n){return new m7().finalize(n).toBase64()}function B(n){return g7(_7(n))}var y7=b({__name:"BaseSeparator",props:{orientation:{type:String,required:!1,default:"horizontal"},decorative:{type:Boolean,required:!1},asChild:{type:Boolean,required:!1},as:{type:null,required:!1}},setup(n){const e=n,t=["horizontal","vertical"];function Q(r){return t.includes(r)}const s=x(()=>Q(e.orientation)?e.orientation:"horizontal"),o=x(()=>s.value==="vertical"?e.orientation:void 0),a=x(()=>e.decorative?{role:"none"}:{"aria-orientation":o.value,role:"separator"});return(r,i)=>(l(),p(h(A7),U({as:r.as,"as-child":r.asChild,"data-orientation":s.value},a.value),{default:w(()=>[N(r.$slots,"default")]),_:3},16,["as","as-child","data-orientation"]))}}),L7=y7,v7=b({__name:"Separator",props:{orientation:{type:String,required:!1,default:"horizontal"},decorative:{type:Boolean,required:!1},asChild:{type:Boolean,required:!1},as:{type:null,required:!1}},setup(n){const e=n;return(t,Q)=>(l(),p(L7,J(X(e)),{default:w(()=>[N(t.$slots,"default")]),_:3},16))}}),x7=v7;const w7={},b7={viewBox:"0 0 943.321 115.367",xmlns:"http://www.w3.org/2000/svg"};function B7(n,e){return l(),k("svg",b7,[...e[0]||(e[0]=[A("g",{"fill-rule":"nonzero","font-size":"9pt","stroke-linecap":"round","stroke-width":"0.5"},[A("path",{d:"M 307.596 53.852 L 320.571 14.102 A 14.618 14.618 0 0 0 321.355 10.214 Q 321.359 10.1 321.359 9.99 A 4.485 4.485 0 0 0 321.058 8.252 Q 320.271 6.377 317.721 6.377 Q 316.221 6.377 314.571 7.127 Q 312.921 7.877 310.971 9.415 Q 309.021 10.952 306.846 13.202 Q 305.796 14.177 304.896 14.177 Q 303.996 14.177 303.021 13.202 Q 302.046 12.302 302.008 11.402 A 1.609 1.609 0 0 1 302.007 11.335 A 3.157 3.157 0 0 1 302.946 9.377 Q 305.196 6.527 307.858 4.427 Q 310.521 2.327 313.408 1.202 Q 316.296 0.077 319.071 0.077 A 8.519 8.519 0 0 1 326.231 2.986 A 7.583 7.583 0 0 1 327.021 4.24 A 10.207 10.207 0 0 1 328.017 8.892 Q 328.017 11.299 327.211 14.274 A 32.828 32.828 0 0 1 326.796 15.677 L 314.646 53.402 Q 312.693 59.405 312.693 63.246 A 14.642 14.642 0 0 0 312.696 63.527 Q 312.771 67.427 315.058 69.19 A 10.163 10.163 0 0 0 320.813 70.925 A 21.612 21.612 0 0 0 321.921 70.952 Q 324.396 70.952 326.908 70.352 Q 329.421 69.752 331.746 68.552 Q 334.071 67.352 336.208 65.665 Q 338.346 63.977 340.258 61.765 Q 342.171 59.552 343.746 57.002 L 361.671 2.477 Q 362.046 1.427 362.946 0.94 Q 363.846 0.452 365.496 0.452 Q 367.221 0.452 368.008 0.977 A 1.154 1.154 0 0 1 368.542 1.998 A 2.381 2.381 0 0 1 368.421 2.702 L 348.846 62.027 Q 347.871 65.102 347.683 67.165 Q 347.496 69.227 348.246 70.315 Q 348.996 71.402 350.496 71.402 Q 352.371 71.402 353.871 70.052 A 21.608 21.608 0 0 0 357.129 66.029 A 44.647 44.647 0 0 0 357.246 65.852 Q 358.071 64.577 358.933 64.202 A 1.855 1.855 0 0 1 359.68 64.058 A 4.061 4.061 0 0 1 361.221 64.427 Q 362.421 64.952 362.758 65.852 Q 363.096 66.752 362.496 68.027 Q 361.146 70.577 359.721 72.415 Q 358.296 74.252 356.683 75.415 Q 355.071 76.577 353.421 77.14 Q 351.771 77.702 350.121 77.702 Q 347.121 77.702 345.058 76.577 Q 342.996 75.452 342.021 73.352 A 11.033 11.033 0 0 1 341.115 68.676 A 16.965 16.965 0 0 1 341.121 68.252 L 341.121 67.802 L 341.121 67.352 Q 339.021 69.677 336.546 71.552 Q 334.071 73.427 331.296 74.777 Q 328.521 76.127 325.633 76.84 Q 322.746 77.552 319.746 77.552 A 17.617 17.617 0 0 1 311.363 75.77 A 11.287 11.287 0 0 1 309.921 74.852 Q 306.321 72.152 305.721 66.865 A 19.129 19.129 0 0 1 305.604 64.709 Q 305.604 60.07 307.596 53.852 Z M 784.146 4.99 Q 785.121 7.352 785.121 10.652 Q 785.121 13.877 783.921 18.04 Q 782.721 22.202 780.508 26.927 Q 778.296 31.652 775.258 36.64 Q 772.221 41.627 768.658 46.615 Q 765.096 51.602 761.158 56.177 Q 757.221 60.752 753.208 64.652 Q 749.196 68.552 745.183 71.477 Q 741.171 74.402 737.458 76.052 Q 733.746 77.702 730.521 77.702 Q 729.096 77.702 728.646 76.84 A 2.511 2.511 0 0 1 728.361 75.661 A 3.283 3.283 0 0 1 728.458 74.89 Q 728.721 73.802 729.658 72.94 Q 730.596 72.077 731.946 72.077 Q 734.496 72.077 737.608 70.577 Q 740.721 69.077 744.096 66.415 Q 747.471 63.752 750.921 60.227 Q 754.371 56.702 757.746 52.502 Q 761.121 48.302 764.196 43.802 Q 767.271 39.302 769.896 34.727 Q 772.521 30.152 774.433 25.802 Q 776.346 21.452 777.433 17.552 Q 778.521 13.652 778.521 10.652 Q 778.521 9.527 779.496 8.965 Q 780.471 8.402 781.783 8.402 Q 783.096 8.402 784.108 8.965 Q 785.121 9.527 785.121 10.652 Q 785.121 7.352 784.146 4.99 Q 783.171 2.627 781.296 1.315 Q 779.421 0.002 776.871 0.002 Q 772.671 0.002 769.671 2.665 A 11.889 11.889 0 0 0 768.066 4.426 A 23.694 23.694 0 0 0 764.721 11.327 L 747.771 63.827 Q 746.946 66.452 746.608 68.927 A 13.237 13.237 0 0 0 746.482 70.715 A 9.786 9.786 0 0 0 746.833 73.39 Q 747.396 75.377 749.121 76.54 Q 750.846 77.702 754.146 77.702 Q 756.546 77.702 758.421 76.727 Q 760.296 75.752 761.683 74.29 Q 763.071 72.827 763.821 71.477 Q 764.196 70.652 764.233 69.827 A 1.037 1.037 0 0 0 764.234 69.78 A 1.99 1.99 0 0 0 762.996 68.252 A 3.137 3.137 0 0 0 761.368 67.647 A 1.371 1.371 0 0 0 760.896 67.727 Q 760.071 68.027 759.696 68.627 Q 759.246 69.302 758.533 70.127 Q 757.821 70.952 756.883 71.515 Q 755.946 72.077 754.821 72.077 Q 753.471 72.077 753.096 71.29 A 2.937 2.937 0 0 1 752.828 70.012 A 4.371 4.371 0 0 1 752.871 69.415 Q 753.021 68.327 753.321 67.502 L 771.096 12.002 Q 771.771 9.902 772.558 8.702 Q 773.346 7.502 774.133 6.94 Q 774.921 6.377 775.671 6.377 Q 776.646 6.377 777.246 6.865 Q 777.846 7.352 778.183 8.29 Q 778.521 9.227 778.521 10.652 Q 778.521 12.077 779.496 12.752 Q 780.471 13.427 781.783 13.427 Q 783.096 13.427 784.108 12.752 Q 785.121 12.077 785.121 10.652 M 614.871 53.777 L 594.246 53.777 Q 589.821 60.452 586.296 64.84 A 64.665 64.665 0 0 1 580.828 70.936 A 35.318 35.318 0 0 1 579.921 71.777 Q 577.071 74.327 574.633 75.64 Q 572.196 76.952 570.096 77.327 Q 567.996 77.702 565.971 77.702 Q 564.171 77.702 562.521 77.402 Q 560.871 77.102 559.483 76.652 Q 558.096 76.202 557.121 75.677 Q 556.221 75.227 556.071 74.215 A 3.182 3.182 0 0 1 556.037 73.748 A 5.296 5.296 0 0 1 556.446 71.852 Q 557.046 70.577 557.758 70.09 Q 558.471 69.602 559.296 70.052 Q 560.721 70.727 562.483 71.177 Q 564.246 71.627 565.746 71.627 Q 567.696 71.627 569.571 71.177 Q 571.446 70.727 573.696 69.302 Q 575.946 67.877 578.646 64.99 A 69.935 69.935 0 0 0 583.16 59.541 A 127.654 127.654 0 0 0 584.871 57.227 Q 588.396 52.352 592.896 45.04 A 409.391 409.391 0 0 0 599.004 34.742 A 650.559 650.559 0 0 0 603.133 27.452 Q 608.871 17.177 616.146 3.452 Q 617.121 1.727 618.171 1.015 Q 619.221 0.302 621.171 0.302 Q 623.571 0.302 624.508 1.09 Q 625.446 1.877 625.296 3.827 Q 624.546 9.602 623.908 15.415 Q 623.271 21.227 622.783 26.965 Q 622.296 32.702 621.921 38.252 Q 621.546 43.802 621.358 49.09 Q 621.171 54.377 621.171 59.177 Q 621.171 62.552 621.508 64.952 Q 621.846 67.352 622.521 68.852 Q 623.196 70.352 624.246 71.027 Q 625.296 71.702 626.721 71.702 Q 628.746 71.702 630.696 69.977 Q 632.646 68.252 634.558 64.802 A 57.003 57.003 0 0 0 637.876 57.444 A 92.043 92.043 0 0 0 638.346 56.177 Q 638.721 55.277 639.621 54.902 Q 640.521 54.527 641.871 55.052 Q 643.221 55.577 643.746 56.365 A 1.78 1.78 0 0 1 644.052 57.373 A 2.468 2.468 0 0 1 643.896 58.202 A 62.392 62.392 0 0 1 639.347 68.152 A 42.304 42.304 0 0 1 639.021 68.702 Q 636.396 73.052 633.171 75.377 Q 629.946 77.702 626.121 77.702 Q 623.196 77.702 621.021 76.577 Q 618.846 75.452 617.496 73.165 Q 616.146 70.877 615.471 67.39 Q 614.796 63.902 614.796 59.177 L 614.796 56.477 Q 614.796 55.127 614.871 53.777 Z M 597.921 48.002 L 615.021 48.002 Q 615.321 42.302 615.771 36.302 Q 616.221 30.302 616.821 24.077 Q 617.421 17.852 618.171 11.552 A 615.217 615.217 0 0 1 610.431 26.278 A 428.7 428.7 0 0 1 607.183 32.14 Q 602.121 41.102 597.921 48.002 Z M 797.421 79.877 L 800.196 71.327 Q 798.696 72.827 797.046 74.065 Q 795.396 75.302 793.671 76.09 Q 791.946 76.877 790.183 77.29 Q 788.421 77.702 786.696 77.702 Q 782.496 77.702 779.983 75.865 Q 777.471 74.027 776.796 70.69 A 11.371 11.371 0 0 1 776.579 68.432 A 18.086 18.086 0 0 1 777.546 62.927 L 782.496 47.102 A 5.578 5.578 0 0 0 782.827 45.379 A 2.174 2.174 0 0 0 782.608 44.365 Q 782.121 43.427 780.771 43.427 Q 779.571 43.427 778.558 44.102 Q 777.546 44.777 776.533 46.165 Q 775.521 47.552 774.321 49.802 Q 773.796 50.702 773.233 51.19 A 2.582 2.582 0 0 1 771.554 51.612 A 7.686 7.686 0 0 1 771.171 51.602 Q 769.671 51.452 769.221 50.477 A 2.272 2.272 0 0 1 769.013 49.513 A 3.39 3.39 0 0 1 769.296 48.227 Q 770.496 45.302 772.296 42.94 Q 774.096 40.577 776.383 39.19 Q 778.671 37.802 781.296 37.802 Q 783.696 37.802 785.383 38.627 Q 787.071 39.452 788.008 40.99 Q 788.946 42.527 789.021 44.702 Q 789.096 46.877 788.271 49.502 L 784.146 62.927 A 15.598 15.598 0 0 0 783.328 67.393 A 7.153 7.153 0 0 0 783.358 68.065 Q 783.546 70.052 784.933 70.952 Q 786.321 71.852 789.021 71.852 Q 790.821 71.852 792.733 71.102 Q 794.646 70.352 796.596 68.927 Q 798.546 67.502 800.308 65.515 Q 802.071 63.527 803.496 61.052 L 810.246 40.202 Q 810.771 38.702 811.483 38.252 Q 812.196 37.802 813.621 37.802 A 4.527 4.527 0 0 1 816.505 38.436 A 1.117 1.117 0 0 1 816.583 38.515 Q 817.221 39.227 816.696 40.727 L 798.921 95.327 Q 797.121 100.802 795.208 104.627 Q 793.296 108.452 791.008 110.815 Q 788.721 113.177 786.058 114.265 Q 783.396 115.352 780.171 115.352 Q 775.521 115.352 772.821 112.765 Q 770.121 110.177 770.121 106.202 Q 770.121 102.677 771.583 99.677 Q 773.046 96.677 775.746 93.94 Q 778.446 91.202 782.083 88.69 Q 785.721 86.177 790.071 83.777 Q 791.346 83.177 792.546 82.502 Q 793.746 81.827 794.983 81.152 Q 796.221 80.477 797.421 79.877 Z M 792.546 95.177 L 795.096 87.227 Q 794.346 87.602 793.708 87.977 Q 793.071 88.352 792.471 88.652 Q 791.871 88.952 791.271 89.327 Q 787.971 91.277 785.308 93.227 Q 782.646 95.177 780.696 97.127 Q 778.746 99.077 777.733 101.065 Q 776.721 103.052 776.721 105.227 Q 776.721 106.727 777.283 107.665 Q 777.846 108.602 778.858 109.09 Q 779.871 109.577 781.146 109.577 Q 783.396 109.577 785.533 107.927 Q 787.671 106.277 789.471 103.052 Q 791.271 99.827 792.546 95.177 Z M 801.096 84.227 Q 802.671 83.402 804.246 82.502 Q 805.821 81.602 807.433 80.777 Q 809.046 79.952 810.621 79.202 Q 812.196 78.452 813.696 77.777 Q 814.596 77.402 814.896 76.39 Q 815.196 75.377 815.008 74.365 Q 814.821 73.352 814.146 72.752 A 1.336 1.336 0 0 0 813.227 72.409 A 2.396 2.396 0 0 0 812.346 72.602 Q 810.996 73.127 809.196 73.99 Q 807.396 74.852 805.483 75.827 Q 803.571 76.802 801.771 77.852 L 801.096 84.227 Z M 21.771 60.602 L 38.871 7.577 L 28.971 7.577 Q 24.771 7.577 21.883 8.44 Q 18.996 9.302 17.158 11.027 Q 15.321 12.752 14.421 15.377 Q 13.971 16.727 12.921 17.102 Q 11.871 17.477 10.146 17.102 Q 9.246 16.877 8.871 16.202 A 1.905 1.905 0 0 1 8.662 15.267 A 4.482 4.482 0 0 1 8.796 14.252 Q 9.546 11.402 11.308 9.077 Q 13.071 6.752 15.733 5.065 Q 18.396 3.377 21.808 2.477 Q 25.221 1.577 29.196 1.577 L 69.996 1.577 Q 71.121 1.577 71.383 2.215 A 1.292 1.292 0 0 1 71.463 2.704 A 6.172 6.172 0 0 1 71.046 4.577 Q 70.521 6.227 69.846 6.902 Q 69.171 7.577 68.046 7.577 L 45.621 7.577 L 28.671 60.002 A 53.01 53.01 0 0 1 24.792 69.248 A 34.449 34.449 0 0 1 24.508 69.752 Q 22.221 73.727 19.221 75.715 Q 16.221 77.702 12.096 77.702 Q 9.321 77.702 6.883 76.54 Q 4.446 75.377 2.758 73.54 Q 1.071 71.702 0.246 69.527 A 3.87 3.87 0 0 1 0 68.248 A 2.306 2.306 0 0 1 0.171 67.352 Q 0.546 66.452 1.671 65.927 Q 2.946 65.327 3.733 65.665 Q 4.521 66.002 5.496 67.202 Q 6.471 68.627 7.596 69.565 Q 8.721 70.502 9.996 70.915 Q 11.271 71.327 12.696 71.327 Q 15.696 71.327 17.758 69.002 A 16.367 16.367 0 0 0 20.292 64.631 A 46.735 46.735 0 0 0 21.771 60.602 Z M 81.621 39.377 L 81.471 42.677 Q 77.121 42.677 73.933 44.59 Q 70.746 46.502 68.646 49.577 Q 66.546 52.652 65.533 56.102 Q 64.521 59.552 64.521 62.702 Q 64.521 65.627 65.533 67.69 Q 66.546 69.752 68.421 70.802 Q 70.296 71.852 72.846 71.852 Q 76.521 71.852 79.296 69.902 Q 82.071 67.952 83.946 64.915 Q 85.821 61.877 86.796 58.54 Q 87.771 55.202 87.771 52.352 Q 87.771 49.427 86.796 47.477 Q 85.821 45.527 83.983 44.515 Q 82.146 43.502 79.671 43.502 Q 76.596 43.502 74.721 44.552 Q 72.846 45.602 72.846 47.252 Q 72.846 48.302 73.596 49.052 Q 74.346 49.802 75.733 50.177 Q 77.121 50.552 79.146 50.552 Q 81.921 50.552 85.296 49.615 Q 88.671 48.677 92.608 46.84 Q 96.546 45.002 100.971 42.302 A 2.767 2.767 0 0 1 102.349 41.835 A 1.326 1.326 0 0 1 102.846 41.927 Q 103.596 42.227 103.933 43.052 A 3.129 3.129 0 0 1 104.167 44.249 A 3.581 3.581 0 0 1 104.121 44.815 Q 103.971 45.752 103.146 46.352 Q 98.346 49.577 94.033 51.64 Q 89.721 53.702 85.821 54.64 Q 81.921 55.577 78.246 55.577 Q 74.571 55.577 72.021 54.565 Q 69.471 53.552 68.121 51.79 Q 66.771 50.027 66.771 47.702 Q 66.771 44.777 68.721 42.452 Q 70.671 40.127 73.783 38.815 Q 76.896 37.502 80.346 37.502 Q 84.996 37.502 88.183 39.265 Q 91.371 41.027 92.983 44.215 Q 94.596 47.402 94.596 51.602 Q 94.596 54.602 93.733 58.165 Q 92.871 61.727 91.108 65.215 Q 89.346 68.702 86.646 71.552 Q 83.946 74.402 80.308 76.127 Q 76.671 77.852 72.096 77.852 Q 67.446 77.852 64.221 75.977 Q 60.996 74.102 59.383 70.765 Q 57.771 67.427 57.771 63.227 Q 57.771 59.252 59.346 55.052 Q 60.921 50.852 63.996 47.29 Q 67.071 43.727 71.496 41.552 Q 75.921 39.377 81.621 39.377 Z M 101.571 75.077 L 122.196 11.327 Q 123.546 7.277 125.271 4.802 Q 126.996 2.327 129.283 1.165 Q 131.571 0.002 134.346 0.002 Q 136.821 0.002 138.658 1.202 Q 140.496 2.402 141.546 4.54 Q 142.596 6.677 142.596 9.602 Q 142.596 12.227 141.808 15.152 Q 141.021 18.077 139.483 21.302 Q 137.946 24.527 135.771 27.865 Q 133.596 31.202 130.821 34.69 Q 128.046 38.177 124.783 41.665 Q 121.521 45.152 117.808 48.677 Q 114.096 52.202 110.046 55.577 L 111.246 52.802 Q 114.021 49.877 116.646 46.54 Q 119.271 43.202 121.708 39.752 Q 124.146 36.302 126.321 32.815 Q 128.496 29.327 130.258 26.027 Q 132.021 22.727 133.296 19.765 Q 134.571 16.802 135.283 14.252 Q 135.996 11.702 135.996 9.902 Q 135.996 8.777 135.621 7.99 Q 135.246 7.202 134.646 6.79 Q 134.046 6.377 133.146 6.377 Q 132.321 6.377 131.571 6.902 Q 130.821 7.427 130.071 8.665 Q 129.321 9.902 128.571 12.002 L 107.946 75.602 Q 107.646 76.577 106.896 77.065 Q 106.146 77.552 104.421 77.552 Q 103.221 77.552 102.171 77.027 Q 101.121 76.502 101.571 75.077 Z M 113.121 59.927 A 108.72 108.72 0 0 0 113.763 62.674 A 57.208 57.208 0 0 0 115.746 69.227 A 41.561 41.561 0 0 0 115.915 69.661 A 21.301 21.301 0 0 0 118.521 74.627 Q 119.946 76.502 121.596 77.177 Q 123.246 77.852 125.196 77.852 Q 126.696 77.852 129.321 76.84 A 10.751 10.751 0 0 0 130.358 76.371 A 24.574 24.574 0 0 0 135.471 72.602 Q 136.371 71.777 136.258 70.84 Q 136.146 69.902 135.471 69.077 Q 134.796 68.327 133.971 68.177 A 1.687 1.687 0 0 0 133.668 68.15 A 2.392 2.392 0 0 0 132.246 68.702 Q 130.746 69.902 129.021 70.99 Q 127.296 72.077 126.171 72.077 Q 125.121 72.077 124.221 71.59 Q 123.321 71.102 122.533 69.79 Q 121.746 68.477 120.883 66.077 A 43.647 43.647 0 0 1 120.829 65.926 A 89.48 89.48 0 0 1 118.971 59.852 Q 121.521 59.327 124.183 58.502 Q 126.846 57.677 129.396 56.44 Q 131.946 55.202 134.008 53.515 Q 136.071 51.827 137.271 49.615 Q 138.471 47.402 138.471 44.552 Q 138.471 41.252 136.558 39.415 Q 134.646 37.577 131.721 37.577 Q 129.546 37.577 126.658 39.265 Q 123.771 40.952 120.771 43.915 Q 117.771 46.877 115.221 50.702 L 113.946 54.752 Q 117.021 51.227 119.871 48.715 Q 122.721 46.202 125.158 44.89 Q 127.596 43.577 129.321 43.577 Q 130.596 43.577 131.271 44.252 Q 131.946 44.927 131.946 46.127 Q 131.946 48.002 130.408 49.652 Q 128.871 51.302 126.283 52.652 Q 123.696 54.002 120.546 54.827 Q 117.396 55.652 114.171 55.877 L 112.821 59.927 L 113.121 59.927 Z M 177.021 75.077 L 186.021 47.102 A 5.578 5.578 0 0 0 186.352 45.379 A 2.174 2.174 0 0 0 186.133 44.365 Q 185.646 43.427 184.296 43.427 Q 183.096 43.427 182.083 44.102 Q 181.071 44.777 180.058 46.165 Q 179.046 47.552 177.846 49.802 Q 177.321 50.702 176.758 51.19 A 2.582 2.582 0 0 1 175.079 51.612 A 7.686 7.686 0 0 1 174.696 51.602 Q 173.196 51.452 172.746 50.477 A 2.272 2.272 0 0 1 172.538 49.513 A 3.39 3.39 0 0 1 172.821 48.227 Q 174.021 45.302 175.821 42.94 Q 177.621 40.577 179.908 39.19 Q 182.196 37.802 184.821 37.802 Q 186.696 37.802 188.158 38.29 Q 189.621 38.777 190.596 39.715 Q 191.571 40.652 192.096 42.04 Q 192.621 43.427 192.621 45.152 L 192.621 45.452 Q 194.346 43.577 196.183 42.115 Q 198.021 40.652 200.008 39.602 Q 201.996 38.552 204.096 38.027 Q 206.196 37.502 208.296 37.502 A 10.298 10.298 0 0 1 214.565 39.167 A 6.237 6.237 0 0 1 215.046 39.565 Q 217.296 41.627 217.633 45.19 Q 217.971 48.752 216.471 53.327 L 211.971 67.502 Q 211.746 68.327 211.558 69.415 A 4.075 4.075 0 0 0 211.496 70.106 A 2.719 2.719 0 0 0 211.746 71.29 Q 212.121 72.077 213.471 72.077 Q 214.596 72.077 215.533 71.515 Q 216.471 70.952 217.183 70.127 Q 217.896 69.302 218.346 68.627 Q 218.796 68.027 219.583 67.727 A 1.267 1.267 0 0 1 220.038 67.647 A 3.12 3.12 0 0 1 221.646 68.252 Q 222.921 69.002 222.921 69.827 Q 222.921 70.652 222.471 71.477 Q 221.721 72.827 220.333 74.29 Q 218.946 75.752 217.071 76.727 Q 215.196 77.702 212.796 77.702 Q 209.496 77.702 207.771 76.54 Q 206.046 75.377 205.483 73.39 A 9.73 9.73 0 0 1 205.132 70.73 A 12.871 12.871 0 0 1 205.258 68.965 Q 205.596 66.527 206.421 63.977 L 210.771 50.627 A 9.775 9.775 0 0 0 211.306 47.669 A 5.353 5.353 0 0 0 211.221 46.69 Q 210.921 45.077 209.608 44.252 Q 208.296 43.427 205.971 43.427 Q 203.796 43.427 201.621 44.215 Q 199.446 45.002 197.346 46.502 Q 195.246 48.002 193.446 50.065 Q 191.646 52.127 190.146 54.677 L 183.396 75.602 Q 183.096 76.577 182.308 77.065 Q 181.521 77.552 179.796 77.552 Q 178.596 77.552 177.583 77.027 Q 176.571 76.502 177.021 75.077 Z M 646.971 75.077 L 655.971 47.102 A 5.578 5.578 0 0 0 656.302 45.379 A 2.174 2.174 0 0 0 656.083 44.365 Q 655.596 43.427 654.246 43.427 Q 653.046 43.427 652.033 44.102 Q 651.021 44.777 650.008 46.165 Q 648.996 47.552 647.796 49.802 Q 647.271 50.702 646.708 51.19 A 2.582 2.582 0 0 1 645.029 51.612 A 7.686 7.686 0 0 1 644.646 51.602 Q 643.146 51.452 642.696 50.477 A 2.272 2.272 0 0 1 642.488 49.513 A 3.39 3.39 0 0 1 642.771 48.227 Q 643.971 45.302 645.771 42.94 Q 647.571 40.577 649.858 39.19 Q 652.146 37.802 654.771 37.802 Q 656.646 37.802 658.108 38.29 Q 659.571 38.777 660.546 39.715 Q 661.521 40.652 662.046 42.04 Q 662.571 43.427 662.571 45.152 L 662.571 45.452 Q 664.296 43.577 666.133 42.115 Q 667.971 40.652 669.958 39.602 Q 671.946 38.552 674.046 38.027 Q 676.146 37.502 678.246 37.502 A 10.298 10.298 0 0 1 684.515 39.167 A 6.237 6.237 0 0 1 684.996 39.565 Q 687.246 41.627 687.583 45.19 Q 687.921 48.752 686.421 53.327 L 681.921 67.502 Q 681.696 68.327 681.508 69.415 A 4.075 4.075 0 0 0 681.446 70.106 A 2.719 2.719 0 0 0 681.696 71.29 Q 682.071 72.077 683.421 72.077 Q 684.546 72.077 685.483 71.515 Q 686.421 70.952 687.133 70.127 Q 687.846 69.302 688.296 68.627 Q 688.746 68.027 689.533 67.727 A 1.267 1.267 0 0 1 689.988 67.647 A 3.12 3.12 0 0 1 691.596 68.252 Q 692.871 69.002 692.871 69.827 Q 692.871 70.652 692.421 71.477 Q 691.671 72.827 690.283 74.29 Q 688.896 75.752 687.021 76.727 Q 685.146 77.702 682.746 77.702 Q 679.446 77.702 677.721 76.54 Q 675.996 75.377 675.433 73.39 A 9.73 9.73 0 0 1 675.082 70.73 A 12.871 12.871 0 0 1 675.208 68.965 Q 675.546 66.527 676.371 63.977 L 680.721 50.627 A 9.775 9.775 0 0 0 681.256 47.669 A 5.353 5.353 0 0 0 681.171 46.69 Q 680.871 45.077 679.558 44.252 Q 678.246 43.427 675.921 43.427 Q 673.746 43.427 671.571 44.215 Q 669.396 45.002 667.296 46.502 Q 665.196 48.002 663.396 50.065 Q 661.596 52.127 660.096 54.677 L 653.346 75.602 Q 653.046 76.577 652.258 77.065 Q 651.471 77.552 649.746 77.552 Q 648.546 77.552 647.533 77.027 Q 646.521 76.502 646.971 75.077 Z M 159.471 77.852 Q 156.921 77.852 154.558 76.952 Q 152.196 76.052 150.246 74.402 Q 148.296 72.752 146.833 70.465 Q 145.371 68.177 144.583 65.327 Q 143.796 62.477 143.796 59.177 Q 143.796 56.252 144.508 53.215 Q 145.221 50.177 146.646 47.365 Q 148.071 44.552 150.171 42.34 Q 152.271 40.127 155.083 38.815 Q 157.896 37.502 161.346 37.502 Q 164.571 37.502 166.671 38.74 Q 168.771 39.977 169.821 42.04 Q 170.871 44.102 170.871 46.727 Q 170.871 51.302 168.846 55.352 A 29.452 29.452 0 0 1 168.62 55.793 A 30.604 30.604 0 0 1 163.558 62.815 Q 160.296 66.227 156.621 68.777 Q 152.646 71.477 148.183 73.502 Q 143.721 75.527 139.221 76.615 Q 134.721 77.702 130.671 77.702 Q 129.621 77.702 129.171 76.84 Q 128.721 75.977 128.946 74.89 Q 129.171 73.802 130.033 72.94 Q 130.896 72.077 132.471 72.077 Q 136.071 72.077 139.821 71.027 Q 143.571 69.977 147.096 68.102 Q 150.621 66.227 153.621 63.902 Q 156.096 62.027 158.496 59.477 Q 160.896 56.927 162.508 54.002 Q 164.121 51.077 164.121 48.002 Q 164.121 45.752 163.146 44.627 Q 162.171 43.502 159.996 43.502 Q 157.671 43.502 155.908 45.04 Q 154.146 46.577 152.946 48.94 Q 151.746 51.302 151.108 53.927 Q 150.471 56.552 150.471 58.802 Q 150.471 61.802 151.296 64.202 Q 152.121 66.602 153.583 68.327 Q 155.046 70.052 156.846 70.952 Q 158.646 71.852 160.596 71.852 Q 162.396 71.852 164.083 71.215 Q 165.771 70.577 167.421 69.452 Q 169.071 68.327 170.646 67.052 A 2.8 2.8 0 0 1 172.423 66.252 A 1.759 1.759 0 0 1 172.633 66.265 Q 173.571 66.377 174.396 67.202 Q 175.446 68.177 175.596 69.227 A 1.959 1.959 0 0 1 175.616 69.505 A 2.271 2.271 0 0 1 174.771 71.177 Q 172.371 73.427 169.896 74.927 Q 167.421 76.427 164.833 77.14 Q 162.246 77.852 159.471 77.852 Z M 520.746 77.852 Q 518.196 77.852 515.833 76.952 Q 513.471 76.052 511.521 74.402 Q 509.571 72.752 508.108 70.465 Q 506.646 68.177 505.858 65.327 Q 505.071 62.477 505.071 59.177 Q 505.071 56.252 505.783 53.215 Q 506.496 50.177 507.921 47.365 Q 509.346 44.552 511.446 42.34 Q 513.546 40.127 516.358 38.815 Q 519.171 37.502 522.621 37.502 Q 525.846 37.502 527.946 38.74 Q 530.046 39.977 531.096 42.04 Q 532.146 44.102 532.146 46.727 Q 532.146 51.302 530.121 55.352 A 29.452 29.452 0 0 1 529.895 55.793 A 30.604 30.604 0 0 1 524.833 62.815 Q 521.571 66.227 517.896 68.777 Q 513.921 71.477 509.458 73.502 Q 504.996 75.527 500.496 76.615 Q 495.996 77.702 491.946 77.702 Q 490.896 77.702 490.446 76.84 Q 489.996 75.977 490.221 74.89 Q 490.446 73.802 491.308 72.94 Q 492.171 72.077 493.746 72.077 Q 497.346 72.077 501.096 71.027 Q 504.846 69.977 508.371 68.102 Q 511.896 66.227 514.896 63.902 Q 517.371 62.027 519.771 59.477 Q 522.171 56.927 523.783 54.002 Q 525.396 51.077 525.396 48.002 Q 525.396 45.752 524.421 44.627 Q 523.446 43.502 521.271 43.502 Q 518.946 43.502 517.183 45.04 Q 515.421 46.577 514.221 48.94 Q 513.021 51.302 512.383 53.927 Q 511.746 56.552 511.746 58.802 Q 511.746 61.802 512.571 64.202 Q 513.396 66.602 514.858 68.327 Q 516.321 70.052 518.121 70.952 Q 519.921 71.852 521.871 71.852 Q 523.671 71.852 525.358 71.215 Q 527.046 70.577 528.696 69.452 Q 530.346 68.327 531.921 67.052 A 2.8 2.8 0 0 1 533.698 66.252 A 1.759 1.759 0 0 1 533.908 66.265 Q 534.846 66.377 535.671 67.202 Q 536.721 68.177 536.871 69.227 A 1.959 1.959 0 0 1 536.891 69.505 A 2.271 2.271 0 0 1 536.046 71.177 Q 533.646 73.427 531.171 74.927 Q 528.696 76.427 526.108 77.14 Q 523.521 77.852 520.746 77.852 Z M 479.121 79.877 L 481.896 71.252 Q 479.646 73.877 477.396 75.265 Q 475.146 76.652 473.121 77.177 Q 471.096 77.702 469.446 77.702 Q 465.996 77.702 463.558 76.202 Q 461.121 74.702 459.808 71.852 Q 458.496 69.002 458.496 65.102 Q 458.496 61.802 459.396 58.052 Q 460.296 54.302 462.133 50.665 Q 463.971 47.027 466.821 44.027 Q 469.671 41.027 473.571 39.265 Q 477.471 37.502 482.496 37.502 Q 484.221 37.502 485.871 37.877 Q 487.521 38.252 489.021 38.89 Q 490.521 39.527 491.871 40.427 L 491.946 40.127 Q 492.471 38.627 493.071 38.215 Q 493.671 37.802 495.321 37.802 A 4.527 4.527 0 0 1 498.205 38.436 A 1.117 1.117 0 0 1 498.283 38.515 Q 498.921 39.227 498.396 40.727 L 480.621 95.327 A 62.786 62.786 0 0 1 477.188 104.143 A 39.987 39.987 0 0 1 476.946 104.627 Q 474.996 108.452 472.746 110.815 Q 470.496 113.177 467.796 114.265 Q 465.096 115.352 461.871 115.352 Q 458.796 115.352 456.508 114.152 Q 454.221 112.952 453.021 110.89 Q 451.821 108.827 451.821 106.202 Q 451.821 102.677 453.283 99.677 Q 454.746 96.677 457.446 93.94 Q 460.146 91.202 463.783 88.69 Q 467.421 86.177 471.771 83.777 Q 473.046 83.177 474.246 82.502 Q 475.446 81.827 476.683 81.152 Q 477.921 80.477 479.121 79.877 Z M 485.421 60.602 L 490.371 45.302 Q 488.421 44.252 486.621 43.84 Q 484.821 43.427 482.946 43.427 Q 478.971 43.427 476.008 44.852 Q 473.046 46.277 470.983 48.64 Q 468.921 51.002 467.646 53.815 Q 466.371 56.627 465.808 59.402 Q 465.246 62.177 465.246 64.427 Q 465.246 66.827 465.958 68.44 Q 466.671 70.052 468.096 70.877 Q 469.521 71.702 471.621 71.702 Q 474.096 71.702 476.496 70.352 Q 478.896 69.002 481.146 66.527 Q 483.396 64.052 485.421 60.602 Z M 474.246 95.177 L 476.796 87.227 Q 476.046 87.602 475.408 87.977 Q 474.771 88.352 474.171 88.652 Q 473.571 88.952 472.971 89.327 Q 469.671 91.277 467.008 93.227 Q 464.346 95.177 462.396 97.127 Q 460.446 99.077 459.433 101.065 Q 458.421 103.052 458.421 105.227 Q 458.421 106.727 458.983 107.665 Q 459.546 108.602 460.558 109.09 Q 461.571 109.577 462.846 109.577 Q 464.571 109.577 466.071 108.752 Q 467.571 107.927 468.996 106.202 Q 470.421 104.477 471.733 101.74 Q 473.046 99.002 474.246 95.177 Z M 482.121 84.977 Q 483.621 84.152 485.271 83.327 Q 486.921 82.502 488.571 81.752 Q 490.221 81.002 491.796 80.252 Q 493.371 79.502 494.871 78.827 Q 495.771 78.452 496.071 77.477 Q 496.371 76.502 496.221 75.452 Q 496.071 74.402 495.433 73.84 Q 494.796 73.277 493.671 73.652 Q 492.546 74.027 491.271 74.59 Q 489.996 75.152 488.608 75.79 Q 487.221 76.427 485.758 77.14 Q 484.296 77.852 482.871 78.602 L 482.121 84.977 Z M 826.821 63.077 L 832.671 44.927 L 826.746 44.927 Q 825.921 44.927 825.621 44.177 A 2.199 2.199 0 0 1 825.487 43.362 A 6.055 6.055 0 0 1 825.696 41.927 Q 826.146 40.427 826.858 39.677 Q 827.571 38.927 828.396 38.927 L 834.621 38.927 L 839.421 24.077 Q 839.871 22.577 840.583 22.127 Q 841.296 21.677 842.796 21.677 A 4.527 4.527 0 0 1 845.68 22.311 A 1.117 1.117 0 0 1 845.758 22.39 Q 846.396 23.102 845.871 24.602 L 841.296 38.927 L 850.746 38.927 Q 851.571 38.927 851.871 39.64 A 2.085 2.085 0 0 1 852.004 40.443 A 6.589 6.589 0 0 1 851.796 41.927 Q 851.346 43.352 850.596 44.14 Q 849.846 44.927 849.021 44.927 L 839.421 44.927 L 832.371 66.677 A 9.907 9.907 0 0 0 831.837 69.556 A 3.677 3.677 0 0 0 831.996 70.69 Q 832.446 72.077 834.021 72.077 Q 836.496 72.077 838.221 70.502 Q 839.946 68.927 840.921 67.727 Q 841.371 67.127 842.158 66.827 Q 842.946 66.527 844.146 67.352 Q 845.421 68.102 845.458 68.89 Q 845.496 69.677 845.046 70.502 Q 844.071 72.077 842.458 73.765 Q 840.846 75.452 838.521 76.577 Q 836.196 77.702 832.896 77.702 A 8.773 8.773 0 0 1 827.653 76.393 A 4.384 4.384 0 0 1 826.858 75.64 A 7.031 7.031 0 0 1 825.369 71.037 A 11.165 11.165 0 0 1 825.396 70.277 Q 825.621 66.977 826.821 63.077 Z M 889.746 77.852 Q 884.796 77.852 881.646 75.94 Q 878.496 74.027 876.958 70.727 Q 875.421 67.427 875.421 63.077 Q 875.421 59.177 876.883 54.752 Q 878.346 50.327 881.196 46.39 Q 884.046 42.452 888.283 39.977 Q 892.521 37.502 897.996 37.502 Q 902.421 37.502 905.458 38.852 Q 908.496 40.202 910.746 42.827 A 3.052 3.052 0 0 1 911.611 44.66 A 1.332 1.332 0 0 1 911.533 45.115 Q 911.196 46.052 910.296 46.877 Q 909.321 47.627 908.346 47.74 A 1.545 1.545 0 0 1 908.168 47.75 A 2.441 2.441 0 0 1 906.396 46.727 Q 904.971 45.152 902.871 44.327 Q 900.771 43.502 897.396 43.502 Q 893.646 43.502 890.796 45.452 Q 887.946 47.402 886.033 50.44 Q 884.121 53.477 883.146 56.777 Q 882.171 60.077 882.171 62.852 Q 882.171 65.702 883.183 67.727 Q 884.196 69.752 886.071 70.802 Q 887.946 71.852 890.496 71.852 Q 893.046 71.852 894.658 71.177 Q 896.271 70.502 897.696 69.227 Q 899.121 67.952 900.996 66.077 A 2.751 2.751 0 0 1 902.768 65.306 A 1.977 1.977 0 0 1 903.058 65.327 Q 904.071 65.477 904.971 66.302 Q 906.096 67.277 906.133 68.177 A 1.89 1.89 0 0 1 906.135 68.256 A 3.411 3.411 0 0 1 905.346 70.202 Q 903.021 73.352 900.133 75.002 Q 897.246 76.652 894.508 77.252 Q 891.771 77.852 889.746 77.852 Z M 445.146 40.502 L 445.221 40.202 Q 445.746 38.702 446.458 38.252 Q 447.171 37.802 448.596 37.802 A 4.809 4.809 0 0 1 451.467 38.387 A 1.05 1.05 0 0 1 451.596 38.515 A 1.608 1.608 0 0 1 451.938 39.586 A 4.031 4.031 0 0 1 451.746 40.727 L 442.971 67.502 Q 442.746 68.327 442.558 69.415 A 4.075 4.075 0 0 0 442.496 70.106 A 2.719 2.719 0 0 0 442.746 71.29 Q 443.121 72.077 444.471 72.077 Q 445.596 72.077 446.533 71.515 Q 447.471 70.952 448.183 70.127 Q 448.896 69.302 449.346 68.627 Q 449.796 68.027 450.621 67.727 Q 451.446 67.427 452.646 68.252 Q 453.921 69.002 453.921 69.827 Q 453.921 70.652 453.471 71.477 Q 452.721 72.827 451.371 74.29 Q 450.021 75.752 448.146 76.727 Q 446.271 77.702 443.871 77.702 Q 441.771 77.702 440.308 77.215 Q 438.846 76.727 437.946 75.827 Q 437.046 74.927 436.596 73.727 Q 436.146 72.527 436.146 71.102 L 436.146 70.69 L 436.146 70.352 Q 433.746 73.352 431.271 74.965 Q 428.796 76.577 426.583 77.14 Q 424.371 77.702 422.646 77.702 Q 419.196 77.702 416.758 76.202 Q 414.321 74.702 413.008 71.852 Q 411.696 69.002 411.696 65.102 Q 411.696 61.802 412.596 58.052 Q 413.496 54.302 415.333 50.665 Q 417.171 47.027 420.021 44.027 Q 422.871 41.027 426.771 39.265 Q 430.671 37.502 435.696 37.502 Q 438.321 37.502 440.721 38.327 Q 443.121 39.152 445.146 40.502 Z M 438.471 60.752 L 443.571 45.377 Q 441.621 44.252 439.858 43.84 Q 438.096 43.427 436.146 43.427 Q 432.171 43.427 429.208 44.852 Q 426.246 46.277 424.183 48.64 Q 422.121 51.002 420.846 53.815 Q 419.571 56.627 419.008 59.402 Q 418.446 62.177 418.446 64.427 Q 418.446 66.827 419.158 68.44 Q 419.871 70.052 421.296 70.877 Q 422.721 71.702 424.821 71.702 Q 427.296 71.702 429.658 70.39 Q 432.021 69.077 434.271 66.602 Q 436.521 64.127 438.471 60.752 Z M 730.746 40.502 L 730.821 40.202 Q 731.346 38.702 732.058 38.252 Q 732.771 37.802 734.196 37.802 A 4.809 4.809 0 0 1 737.067 38.387 A 1.05 1.05 0 0 1 737.196 38.515 A 1.608 1.608 0 0 1 737.538 39.586 A 4.031 4.031 0 0 1 737.346 40.727 L 728.571 67.502 Q 728.346 68.327 728.158 69.415 A 4.075 4.075 0 0 0 728.096 70.106 A 2.719 2.719 0 0 0 728.346 71.29 Q 728.721 72.077 730.071 72.077 Q 731.196 72.077 732.133 71.515 Q 733.071 70.952 733.783 70.127 Q 734.496 69.302 734.946 68.627 Q 735.396 68.027 736.221 67.727 Q 737.046 67.427 738.246 68.252 Q 739.521 69.002 739.521 69.827 Q 739.521 70.652 739.071 71.477 Q 738.321 72.827 736.971 74.29 Q 735.621 75.752 733.746 76.727 Q 731.871 77.702 729.471 77.702 Q 727.371 77.702 725.908 77.215 Q 724.446 76.727 723.546 75.827 Q 722.646 74.927 722.196 73.727 Q 721.746 72.527 721.746 71.102 L 721.746 70.69 L 721.746 70.352 Q 719.346 73.352 716.871 74.965 Q 714.396 76.577 712.183 77.14 Q 709.971 77.702 708.246 77.702 Q 704.796 77.702 702.358 76.202 Q 699.921 74.702 698.608 71.852 Q 697.296 69.002 697.296 65.102 Q 697.296 61.802 698.196 58.052 Q 699.096 54.302 700.933 50.665 Q 702.771 47.027 705.621 44.027 Q 708.471 41.027 712.371 39.265 Q 716.271 37.502 721.296 37.502 Q 723.921 37.502 726.321 38.327 Q 728.721 39.152 730.746 40.502 Z M 724.071 60.752 L 729.171 45.377 Q 727.221 44.252 725.458 43.84 Q 723.696 43.427 721.746 43.427 Q 717.771 43.427 714.808 44.852 Q 711.846 46.277 709.783 48.64 Q 707.721 51.002 706.446 53.815 Q 705.171 56.627 704.608 59.402 Q 704.046 62.177 704.046 64.427 Q 704.046 66.827 704.758 68.44 Q 705.471 70.052 706.896 70.877 Q 708.321 71.702 710.421 71.702 Q 712.896 71.702 715.258 70.39 Q 717.621 69.077 719.871 66.602 Q 722.121 64.127 724.071 60.752 Z M 242.421 77.852 Q 238.671 77.852 235.896 76.652 Q 233.121 75.452 231.621 73.952 Q 230.946 73.352 230.908 72.565 A 1.152 1.152 0 0 1 230.907 72.51 A 3.293 3.293 0 0 1 231.921 70.577 Q 232.746 69.677 233.533 69.602 Q 234.321 69.527 235.296 70.202 Q 236.346 70.952 238.221 71.815 Q 240.096 72.677 242.421 72.677 Q 246.396 72.677 248.196 70.615 Q 249.996 68.552 249.996 64.802 Q 249.996 62.927 249.321 60.902 Q 248.646 58.877 247.521 56.777 Q 246.396 54.677 245.196 52.615 Q 243.996 50.552 242.871 48.565 Q 241.746 46.577 241.071 44.852 Q 240.396 43.127 240.396 41.702 A 17.574 17.574 0 0 1 241.254 35.66 A 7.883 7.883 0 0 1 241.671 34.727 Q 242.946 32.327 246.171 32.327 Q 247.896 32.327 248.721 33.377 Q 249.546 34.427 249.546 35.702 Q 249.546 36.977 248.833 38.365 A 25.805 25.805 0 0 1 246.639 41.683 A 67.377 67.377 0 0 1 246.171 42.302 Q 246.171 43.802 246.921 45.415 Q 247.671 47.027 248.833 48.752 Q 249.996 50.477 251.346 52.315 Q 252.696 54.152 253.858 56.14 Q 255.021 58.127 255.771 60.265 Q 256.521 62.402 256.521 64.802 A 12.046 12.046 0 0 1 252.644 74.462 A 10.935 10.935 0 0 1 252.583 74.515 Q 248.646 77.852 242.421 77.852 Z M 242.346 39.602 A 488.515 488.515 0 0 1 238.475 46.053 A 291.453 291.453 0 0 1 232.821 54.977 A 190.964 190.964 0 0 1 230.58 58.286 A 104.291 104.291 0 0 1 225.583 64.99 A 49.297 49.297 0 0 1 224.438 66.335 A 24.065 24.065 0 0 1 219.996 70.427 Q 217.521 72.077 215.346 72.077 Q 213.921 72.077 212.983 72.94 Q 212.046 73.802 211.746 74.89 Q 211.446 75.977 211.896 76.84 Q 212.346 77.702 213.771 77.702 A 14.878 14.878 0 0 0 220.971 75.827 A 17.158 17.158 0 0 0 221.837 75.322 A 29.409 29.409 0 0 0 228.133 69.752 A 58.885 58.885 0 0 0 230.519 66.86 A 105.633 105.633 0 0 0 236.233 58.615 A 203.555 203.555 0 0 0 239.677 52.953 A 343.035 343.035 0 0 0 246.096 41.477 L 242.346 39.602 Z M 385.521 77.852 Q 381.771 77.852 378.996 76.652 Q 376.221 75.452 374.721 73.952 Q 374.046 73.352 374.008 72.565 A 1.152 1.152 0 0 1 374.007 72.51 A 3.293 3.293 0 0 1 375.021 70.577 Q 375.846 69.677 376.633 69.602 Q 377.421 69.527 378.396 70.202 Q 379.446 70.952 381.321 71.815 Q 383.196 72.677 385.521 72.677 Q 389.496 72.677 391.296 70.615 Q 393.096 68.552 393.096 64.802 Q 393.096 62.927 392.421 60.902 Q 391.746 58.877 390.621 56.777 Q 389.496 54.677 388.296 52.615 Q 387.096 50.552 385.971 48.565 Q 384.846 46.577 384.171 44.852 Q 383.496 43.127 383.496 41.702 A 17.574 17.574 0 0 1 384.354 35.66 A 7.883 7.883 0 0 1 384.771 34.727 Q 386.046 32.327 389.271 32.327 Q 390.996 32.327 391.821 33.377 Q 392.646 34.427 392.646 35.702 Q 392.646 36.977 391.933 38.365 A 25.805 25.805 0 0 1 389.739 41.683 A 67.377 67.377 0 0 1 389.271 42.302 Q 389.271 43.802 390.021 45.415 Q 390.771 47.027 391.933 48.752 Q 393.096 50.477 394.446 52.315 Q 395.796 54.152 396.958 56.14 Q 398.121 58.127 398.871 60.265 Q 399.621 62.402 399.621 64.802 A 12.046 12.046 0 0 1 395.744 74.462 A 10.935 10.935 0 0 1 395.683 74.515 Q 391.746 77.852 385.521 77.852 Z M 385.446 39.602 A 488.515 488.515 0 0 1 381.575 46.053 A 291.453 291.453 0 0 1 375.921 54.977 A 190.964 190.964 0 0 1 373.68 58.286 A 104.291 104.291 0 0 1 368.683 64.99 A 49.297 49.297 0 0 1 367.538 66.335 A 24.065 24.065 0 0 1 363.096 70.427 Q 360.621 72.077 358.446 72.077 Q 357.021 72.077 356.083 72.94 Q 355.146 73.802 354.846 74.89 Q 354.546 75.977 354.996 76.84 Q 355.446 77.702 356.871 77.702 A 14.878 14.878 0 0 0 364.071 75.827 A 17.158 17.158 0 0 0 364.937 75.322 A 29.409 29.409 0 0 0 371.233 69.752 A 58.885 58.885 0 0 0 373.619 66.86 A 105.633 105.633 0 0 0 379.333 58.615 A 203.555 203.555 0 0 0 382.777 52.953 A 343.035 343.035 0 0 0 389.196 41.477 L 385.446 39.602 Z M 929.196 77.852 Q 925.446 77.852 922.671 76.652 Q 919.896 75.452 918.396 73.952 Q 917.721 73.352 917.683 72.565 A 1.152 1.152 0 0 1 917.682 72.51 A 3.293 3.293 0 0 1 918.696 70.577 Q 919.521 69.677 920.308 69.602 Q 921.096 69.527 922.071 70.202 Q 923.121 70.952 924.996 71.815 Q 926.871 72.677 929.196 72.677 Q 933.171 72.677 934.971 70.615 Q 936.771 68.552 936.771 64.802 Q 936.771 62.927 936.096 60.902 Q 935.421 58.877 934.296 56.777 Q 933.171 54.677 931.971 52.615 Q 930.771 50.552 929.646 48.565 Q 928.521 46.577 927.846 44.852 Q 927.171 43.127 927.171 41.702 A 17.574 17.574 0 0 1 928.029 35.66 A 7.883 7.883 0 0 1 928.446 34.727 Q 929.721 32.327 932.946 32.327 Q 934.671 32.327 935.496 33.377 Q 936.321 34.427 936.321 35.702 Q 936.321 36.977 935.608 38.365 A 25.805 25.805 0 0 1 933.414 41.683 A 67.377 67.377 0 0 1 932.946 42.302 Q 932.946 43.802 933.696 45.415 Q 934.446 47.027 935.608 48.752 Q 936.771 50.477 938.121 52.315 Q 939.471 54.152 940.633 56.14 Q 941.796 58.127 942.546 60.265 Q 943.296 62.402 943.296 64.802 A 12.046 12.046 0 0 1 939.419 74.462 A 10.935 10.935 0 0 1 939.358 74.515 Q 935.421 77.852 929.196 77.852 Z M 929.121 39.602 A 488.515 488.515 0 0 1 925.25 46.053 A 291.453 291.453 0 0 1 919.596 54.977 A 190.964 190.964 0 0 1 917.355 58.286 A 104.291 104.291 0 0 1 912.358 64.99 A 49.297 49.297 0 0 1 911.213 66.335 A 24.065 24.065 0 0 1 906.771 70.427 Q 904.296 72.077 902.121 72.077 Q 900.696 72.077 899.758 72.94 Q 898.821 73.802 898.521 74.89 Q 898.221 75.977 898.671 76.84 Q 899.121 77.702 900.546 77.702 A 14.878 14.878 0 0 0 907.746 75.827 A 17.158 17.158 0 0 0 908.612 75.322 A 29.409 29.409 0 0 0 914.908 69.752 A 58.885 58.885 0 0 0 917.294 66.86 A 105.633 105.633 0 0 0 923.008 58.615 A 203.555 203.555 0 0 0 926.452 52.953 A 343.035 343.035 0 0 0 932.871 41.477 L 929.121 39.602 Z M 853.671 65.177 L 861.771 40.202 Q 862.221 38.702 862.933 38.252 Q 863.646 37.802 865.146 37.802 A 4.527 4.527 0 0 1 868.03 38.436 A 1.117 1.117 0 0 1 868.108 38.515 Q 868.746 39.227 868.221 40.727 L 859.671 67.127 Q 858.921 69.527 859.296 70.802 A 1.732 1.732 0 0 0 861.171 72.077 Q 862.296 72.077 863.271 71.515 Q 864.246 70.952 864.958 70.127 Q 865.671 69.302 866.121 68.627 Q 866.571 68.027 867.396 67.727 Q 868.221 67.427 869.421 68.252 Q 870.696 69.002 870.696 69.827 Q 870.696 70.652 870.246 71.477 Q 869.496 72.827 868.071 74.29 Q 866.646 75.752 864.733 76.727 Q 862.821 77.702 860.421 77.702 A 7.414 7.414 0 0 1 854.096 75.147 A 6.119 6.119 0 0 1 853.596 74.365 Q 851.796 71.027 853.671 65.177 Z M 87.846 77.702 Q 86.421 77.702 85.821 76.84 A 2.928 2.928 0 0 1 85.287 75.129 A 3.472 3.472 0 0 1 85.296 74.89 Q 85.371 73.802 86.158 72.94 Q 86.946 72.077 88.371 72.077 Q 90.321 72.077 92.308 71.027 Q 94.296 69.977 96.733 67.615 Q 99.171 65.252 102.433 61.24 A 259.028 259.028 0 0 0 107.939 54.187 A 424.856 424.856 0 0 0 110.046 51.377 A 1.677 1.677 0 0 1 111.325 50.534 A 1.151 1.151 0 0 1 111.771 50.627 Q 112.671 51.002 112.971 52.202 A 2.371 2.371 0 0 1 113.041 52.779 A 3.678 3.678 0 0 1 112.296 54.827 A 326.88 326.88 0 0 1 106.143 63.172 A 184.724 184.724 0 0 1 104.083 65.815 A 82.724 82.724 0 0 1 98.759 71.964 A 44.276 44.276 0 0 1 97.896 72.827 Q 95.196 75.452 92.796 76.577 Q 90.396 77.702 87.846 77.702 Z M 869.796 26.252 Q 868.296 26.252 867.208 25.277 Q 866.121 24.302 866.121 22.427 Q 866.121 20.402 867.471 18.602 Q 868.821 16.802 871.596 16.802 Q 873.096 16.802 874.183 17.74 Q 875.271 18.677 875.271 20.627 Q 875.271 22.652 873.958 24.452 Q 872.646 26.252 869.796 26.252 Z"})],-1)])])}const M7=Object.assign(P(w7,[["render",B7]]),{__name:"SiteLogo"});function k7(n){const e=[g(n.method)?.toUpperCase()||"GET",g(n.baseURL)];for(const t of[n.query||n.params]){const Q=g(t);if(!Q)continue;const s={};for(const[o,a]of Object.entries(Q))s[g(o)]=g(a);e.push(s)}if(n.body){const t=g(n.body);if(!t)e.push(B(t));else if(t instanceof ArrayBuffer)e.push(B(Object.fromEntries([...new Uint8Array(t).entries()].map(([Q,s])=>[Q,s.toString()]))));else if(t instanceof FormData){const Q={};for(const s of t.entries()){const[o,a]=s;Q[o]=a instanceof File?a.name:a}e.push(B(Q))}else if(Y(t))e.push(B(R(t)));else try{e.push(B(t))}catch{console.warn("[useFetch] Failed to hash body",t)}}return e}const G=c7({name:"createUseFetch",factory(n={}){function e(t,Q,s){const[o={},a]=typeof Q=="string"?[{},Q]:[Q,s],r=x(()=>g(t)),i=x(()=>g(o.key)||"$f"+B([a,typeof r.value=="string"?r.value:"",...k7(o)]));if(!o.baseURL&&typeof r.value=="string"&&r.value[0]==="/"&&r.value[1]==="/")throw new Error('[nuxt] [useFetch] the request URL must not start with "//".');const u=typeof n=="function"?n(o):n,{server:d,lazy:y,default:c,transform:S,pick:_,watch:Z,immediate:C,getCachedData:z,deep:j,dedupe:L,timeout:F,...m}={...typeof n=="function"?{}:u,...o,...typeof n=="function"?u:{}},$=R({...W,...m,cache:typeof m.cache=="boolean"?void 0:m.cache}),H={server:d,lazy:y,default:c,transform:S,pick:_,immediate:C,getCachedData:z,deep:j,dedupe:L,timeout:F,watch:Z===!1?[]:[...Z||[],$]};return l7(Z===!1?i.value:i,(Y7,{signal:K})=>(o.$fetch||globalThis.$fetch)(r.value,{signal:K,...$}),H)}return e}});G.__nuxt_factory();const S7=G.__nuxt_factory({lazy:!0,_functionName:"useLazyFetch"}),Z7={key:1,class:"text-muted-foreground w-8 text-xs tabular-nums"},z7=b({__name:"GitHubLink",setup(n){const e=Q7(),{data:t,pending:Q}=S7(`https://ungh.cc/repos/${e.github.repo}`,"$5jzG0y0vUx"),s=x(()=>{const o=t.value?.repo?.stars;return o?o>=1e3?`${(o/1e3).toFixed(1)}k`:o.toLocaleString():"∞"});return(o,a)=>{const r=D,i=u7,u=I,d=V;return l(),p(d,{"as-child":"",class:"h-8 shadow-none",size:"sm",variant:"ghost"},{default:w(()=>[f(u,{to:h(e).github.link,rel:"noreferrer",target:"_blank"},{default:w(()=>[f(r,{name:"mdi:github"}),h(Q)?(l(),p(i,{key:0,class:"h-4 w-8"})):(l(),k("span",Z7,T(h(s)),1))]),_:1},8,["to"])]),_:1})}}}),$7=Object.assign(z7,{__name:"GitHubLink"}),C7=b({__name:"ModeSwitcher",setup(n){const e=t7({selector:"html",attribute:"class",storageKey:"app-color-mode",onChanged(t,Q){const s=document,o=window.matchMedia("(prefers-reduced-motion: reduce)").matches;if(!s.startViewTransition||o){Q(t);return}s.startViewTransition(()=>{Q(t)})}});return(t,Q)=>{const s=D,o=V;return l(),p(o,{variant:"ghost",size:"icon",class:"group/toggle extend-touch-target size-8",title:"Toggle theme",onClick:Q[0]||(Q[0]=a=>e.value=h(e)==="light"?"dark":"light")},{default:w(()=>[h(e)==="dark"?(l(),p(s,{key:0,name:"lucide:moon",mode:"svg"})):(l(),p(s,{key:1,name:"lucide:sun",mode:"svg"})),Q[1]||(Q[1]=A("span",{class:"sr-only"},"Toggle theme",-1))]),_:1})}}}),j7=Object.assign(C7,{__name:"ModeSwitcher"}),F7=b({__name:"Separator",props:{orientation:{default:"horizontal"},decorative:{type:Boolean,default:!0},asChild:{type:Boolean},as:{},class:{type:[Boolean,null,String,Object,Array]}},setup(n){const e=n,t=e7(e,"class");return(Q,s)=>(l(),p(h(x7),U({"data-slot":"separator"},h(t),{class:h(E)("bg-border shrink-0 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px",e.class)}),null,16,["class"]))}}),O7=s7("/logo.svg"),N7={class:"flex flex-col border-b z-10 mb-5"},T7={class:"container mx-auto flex items-center justify-between gap-3"},D7={class:"flex flex-col h-14"},I7={class:"flex items-center gap-4 h-full"},U7={class:"flex items-center"},P7={class:"container mx-auto flex items-center justify-between pt-3 pb-1"},R7={class:"capitalize text-xs font-medium font-mono"},q7=b({name:"SiteNavbar",__name:"SiteNavbar",setup(n){const e=[{icon:"solar:home-bold-duotone",iconType:"icon",label:"home",link:"/"},...r7,{icon:"ri:apps-ai-line",iconType:"icon",label:"Project",link:"/project"}],t=o7(),Q=x(()=>t.path);function s(o){const a=Q.value===o.link,r=o.iconFillClass??(o.iconType==="ai"?"[&_svg]:fill-foreground/50":"");return E("relative flex flex-col items-center gap-1.5",a?["after:content-[''] after:absolute after:w-full after:h-px after:bg-amber-500","after:-bottom-1 after:rounded-2xl"]:["text-foreground/50",r])}return(o,a)=>{const r=M7,i=$7,u=j7,d=F7,y=D,c=d7,S=I;return l(),k("header",N7,[A("div",T7,[A("div",D7,[A("div",I7,[a[0]||(a[0]=A("img",{alt:"",class:"size-8",src:O7},null,-1)),f(r,{class:"w-48 fill-foreground"})])]),A("div",U7,[f(i),f(u)])]),f(d),A("div",P7,[(l(),k(q,null,n7(e,_=>f(S,{key:_.label,class:a7(s(_)),to:_.link},{default:w(()=>[_.iconType==="icon"?(l(),p(y,{key:0,name:_.icon,class:"size-5",mode:"svg"},null,8,["name"])):(l(),p(c,{key:1,name:_.icon},null,8,["name"])),A("span",R7,T(_.label),1)]),_:2},1032,["class","to"])),64))])])}}}),V7=Object.assign(q7,{__name:"SiteNavbar"}),E7={class:"mt-8 border-t"},G7={class:"container mx-auto flex flex-col items-center justify-between gap-2 py-4 text-center text-xs text-muted-foreground sm:flex-row sm:text-left"},H7=b({name:"SiteFooter",__name:"SiteFooter",setup(n){const{public:{appVersion:e}}=i7();return(t,Q)=>{const s=I;return l(),k("footer",E7,[A("div",G7,[A("p",null,[Q[1]||(Q[1]=O(" Copyright © 2026 ",-1)),f(s,{class:"font-medium text-foreground underline-offset-4 transition-colors hover:text-amber-600 hover:underline",rel:"noreferrer",target:"_blank",to:"https://github.com/lonewolfyx"},{default:w(()=>[...Q[0]||(Q[0]=[O(" lonewolfyx ",-1)])]),_:1}),Q[2]||(Q[2]=O(". ",-1))]),A("p",null," Built with Nuxt, extended from ccusage, and released under the MIT License. Version "+T(h(e))+". ",1)])])}}}),K7=Object.assign(H7,{__name:"SiteFooter"}),J7={};function X7(n,e){const t=V7,Q=K7;return l(),k(q,null,[f(t),N(n.$slots,"default"),f(Q)],64)}const a2=P(J7,[["render",X7]]);export{a2 as default};
|
|
1
|
+
import{y as b,o as l,A as p,w,B as N,J as U,C as h,g as x,Q as J,R as X,_ as P,c as k,a as A,D as R,ay as W,p as g,az as Y,aA as Q7,b as f,t as T,X as t7,U as e7,aB as s7,a8 as o7,H as q,I as n7,V as a7,aC as r7,aD as i7,d as O}from"./DgKrPjze.js";import{d as c7,u as l7,_ as D}from"./DUoLvn3A.js";import{P as A7,_ as u7,a as V,c as E}from"./BvRyOET7.js";import{_ as I}from"./DFqWEFN4.js";import{s as _7,_ as d7}from"./B6C9KBQ4.js";const f7=[1779033703,-1150833019,1013904242,-1521486534,1359893119,-1694144372,528734635,1541459225],p7=[1116352408,1899447441,-1245643825,-373957723,961987163,1508970993,-1841331548,-1424204075,-670586216,310598401,607225278,1426881987,1925078388,-2132889090,-1680079193,-1046744716,-459576895,-272742522,264347078,604807628,770255983,1249150122,1555081692,1996064986,-1740746414,-1473132947,-1341970488,-1084653625,-958395405,-710438585,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,-2117940946,-1838011259,-1564481375,-1474664885,-1035236496,-949202525,-778901479,-694614492,-200395387,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,-2067236844,-1933114872,-1866530822,-1538233109,-1090935817,-965641998],h7="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_",v=[];class m7{_data=new M;_hash=new M([...f7]);_nDataBytes=0;_minBufferSize=0;finalize(e){e&&this._append(e);const t=this._nDataBytes*8,Q=this._data.sigBytes*8;return this._data.words[Q>>>5]|=128<<24-Q%32,this._data.words[(Q+64>>>9<<4)+14]=Math.floor(t/4294967296),this._data.words[(Q+64>>>9<<4)+15]=t,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}_doProcessBlock(e,t){const Q=this._hash.words;let s=Q[0],o=Q[1],a=Q[2],r=Q[3],i=Q[4],u=Q[5],d=Q[6],y=Q[7];for(let c=0;c<64;c++){if(c<16)v[c]=e[t+c]|0;else{const L=v[c-15],F=(L<<25|L>>>7)^(L<<14|L>>>18)^L>>>3,m=v[c-2],$=(m<<15|m>>>17)^(m<<13|m>>>19)^m>>>10;v[c]=F+v[c-7]+$+v[c-16]}const S=i&u^~i&d,_=s&o^s&a^o&a,Z=(s<<30|s>>>2)^(s<<19|s>>>13)^(s<<10|s>>>22),C=(i<<26|i>>>6)^(i<<21|i>>>11)^(i<<7|i>>>25),z=y+C+S+p7[c]+v[c],j=Z+_;y=d,d=u,u=i,i=r+z|0,r=a,a=o,o=s,s=z+j|0}Q[0]=Q[0]+s|0,Q[1]=Q[1]+o|0,Q[2]=Q[2]+a|0,Q[3]=Q[3]+r|0,Q[4]=Q[4]+i|0,Q[5]=Q[5]+u|0,Q[6]=Q[6]+d|0,Q[7]=Q[7]+y|0}_append(e){typeof e=="string"&&(e=M.fromUtf8(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes}_process(e){let t,Q=this._data.sigBytes/64;e?Q=Math.ceil(Q):Q=Math.max((Q|0)-this._minBufferSize,0);const s=Q*16,o=Math.min(s*4,this._data.sigBytes);if(s){for(let a=0;a<s;a+=16)this._doProcessBlock(this._data.words,a);t=this._data.words.splice(0,s),this._data.sigBytes-=o}return new M(t,o)}}class M{words;sigBytes;constructor(e,t){e=this.words=e||[],this.sigBytes=t===void 0?e.length*4:t}static fromUtf8(e){const t=unescape(encodeURIComponent(e)),Q=t.length,s=[];for(let o=0;o<Q;o++)s[o>>>2]|=(t.charCodeAt(o)&255)<<24-o%4*8;return new M(s,Q)}toBase64(){const e=[];for(let t=0;t<this.sigBytes;t+=3){const Q=this.words[t>>>2]>>>24-t%4*8&255,s=this.words[t+1>>>2]>>>24-(t+1)%4*8&255,o=this.words[t+2>>>2]>>>24-(t+2)%4*8&255,a=Q<<16|s<<8|o;for(let r=0;r<4&&t*8+r*6<this.sigBytes*8;r++)e.push(h7.charAt(a>>>6*(3-r)&63))}return e.join("")}concat(e){if(this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4),this.sigBytes%4)for(let t=0;t<e.sigBytes;t++){const Q=e.words[t>>>2]>>>24-t%4*8&255;this.words[this.sigBytes+t>>>2]|=Q<<24-(this.sigBytes+t)%4*8}else for(let t=0;t<e.sigBytes;t+=4)this.words[this.sigBytes+t>>>2]=e.words[t>>>2];this.sigBytes+=e.sigBytes}}function g7(n){return new m7().finalize(n).toBase64()}function B(n){return g7(_7(n))}var y7=b({__name:"BaseSeparator",props:{orientation:{type:String,required:!1,default:"horizontal"},decorative:{type:Boolean,required:!1},asChild:{type:Boolean,required:!1},as:{type:null,required:!1}},setup(n){const e=n,t=["horizontal","vertical"];function Q(r){return t.includes(r)}const s=x(()=>Q(e.orientation)?e.orientation:"horizontal"),o=x(()=>s.value==="vertical"?e.orientation:void 0),a=x(()=>e.decorative?{role:"none"}:{"aria-orientation":o.value,role:"separator"});return(r,i)=>(l(),p(h(A7),U({as:r.as,"as-child":r.asChild,"data-orientation":s.value},a.value),{default:w(()=>[N(r.$slots,"default")]),_:3},16,["as","as-child","data-orientation"]))}}),L7=y7,v7=b({__name:"Separator",props:{orientation:{type:String,required:!1,default:"horizontal"},decorative:{type:Boolean,required:!1},asChild:{type:Boolean,required:!1},as:{type:null,required:!1}},setup(n){const e=n;return(t,Q)=>(l(),p(L7,J(X(e)),{default:w(()=>[N(t.$slots,"default")]),_:3},16))}}),x7=v7;const w7={},b7={viewBox:"0 0 943.321 115.367",xmlns:"http://www.w3.org/2000/svg"};function B7(n,e){return l(),k("svg",b7,[...e[0]||(e[0]=[A("g",{"fill-rule":"nonzero","font-size":"9pt","stroke-linecap":"round","stroke-width":"0.5"},[A("path",{d:"M 307.596 53.852 L 320.571 14.102 A 14.618 14.618 0 0 0 321.355 10.214 Q 321.359 10.1 321.359 9.99 A 4.485 4.485 0 0 0 321.058 8.252 Q 320.271 6.377 317.721 6.377 Q 316.221 6.377 314.571 7.127 Q 312.921 7.877 310.971 9.415 Q 309.021 10.952 306.846 13.202 Q 305.796 14.177 304.896 14.177 Q 303.996 14.177 303.021 13.202 Q 302.046 12.302 302.008 11.402 A 1.609 1.609 0 0 1 302.007 11.335 A 3.157 3.157 0 0 1 302.946 9.377 Q 305.196 6.527 307.858 4.427 Q 310.521 2.327 313.408 1.202 Q 316.296 0.077 319.071 0.077 A 8.519 8.519 0 0 1 326.231 2.986 A 7.583 7.583 0 0 1 327.021 4.24 A 10.207 10.207 0 0 1 328.017 8.892 Q 328.017 11.299 327.211 14.274 A 32.828 32.828 0 0 1 326.796 15.677 L 314.646 53.402 Q 312.693 59.405 312.693 63.246 A 14.642 14.642 0 0 0 312.696 63.527 Q 312.771 67.427 315.058 69.19 A 10.163 10.163 0 0 0 320.813 70.925 A 21.612 21.612 0 0 0 321.921 70.952 Q 324.396 70.952 326.908 70.352 Q 329.421 69.752 331.746 68.552 Q 334.071 67.352 336.208 65.665 Q 338.346 63.977 340.258 61.765 Q 342.171 59.552 343.746 57.002 L 361.671 2.477 Q 362.046 1.427 362.946 0.94 Q 363.846 0.452 365.496 0.452 Q 367.221 0.452 368.008 0.977 A 1.154 1.154 0 0 1 368.542 1.998 A 2.381 2.381 0 0 1 368.421 2.702 L 348.846 62.027 Q 347.871 65.102 347.683 67.165 Q 347.496 69.227 348.246 70.315 Q 348.996 71.402 350.496 71.402 Q 352.371 71.402 353.871 70.052 A 21.608 21.608 0 0 0 357.129 66.029 A 44.647 44.647 0 0 0 357.246 65.852 Q 358.071 64.577 358.933 64.202 A 1.855 1.855 0 0 1 359.68 64.058 A 4.061 4.061 0 0 1 361.221 64.427 Q 362.421 64.952 362.758 65.852 Q 363.096 66.752 362.496 68.027 Q 361.146 70.577 359.721 72.415 Q 358.296 74.252 356.683 75.415 Q 355.071 76.577 353.421 77.14 Q 351.771 77.702 350.121 77.702 Q 347.121 77.702 345.058 76.577 Q 342.996 75.452 342.021 73.352 A 11.033 11.033 0 0 1 341.115 68.676 A 16.965 16.965 0 0 1 341.121 68.252 L 341.121 67.802 L 341.121 67.352 Q 339.021 69.677 336.546 71.552 Q 334.071 73.427 331.296 74.777 Q 328.521 76.127 325.633 76.84 Q 322.746 77.552 319.746 77.552 A 17.617 17.617 0 0 1 311.363 75.77 A 11.287 11.287 0 0 1 309.921 74.852 Q 306.321 72.152 305.721 66.865 A 19.129 19.129 0 0 1 305.604 64.709 Q 305.604 60.07 307.596 53.852 Z M 784.146 4.99 Q 785.121 7.352 785.121 10.652 Q 785.121 13.877 783.921 18.04 Q 782.721 22.202 780.508 26.927 Q 778.296 31.652 775.258 36.64 Q 772.221 41.627 768.658 46.615 Q 765.096 51.602 761.158 56.177 Q 757.221 60.752 753.208 64.652 Q 749.196 68.552 745.183 71.477 Q 741.171 74.402 737.458 76.052 Q 733.746 77.702 730.521 77.702 Q 729.096 77.702 728.646 76.84 A 2.511 2.511 0 0 1 728.361 75.661 A 3.283 3.283 0 0 1 728.458 74.89 Q 728.721 73.802 729.658 72.94 Q 730.596 72.077 731.946 72.077 Q 734.496 72.077 737.608 70.577 Q 740.721 69.077 744.096 66.415 Q 747.471 63.752 750.921 60.227 Q 754.371 56.702 757.746 52.502 Q 761.121 48.302 764.196 43.802 Q 767.271 39.302 769.896 34.727 Q 772.521 30.152 774.433 25.802 Q 776.346 21.452 777.433 17.552 Q 778.521 13.652 778.521 10.652 Q 778.521 9.527 779.496 8.965 Q 780.471 8.402 781.783 8.402 Q 783.096 8.402 784.108 8.965 Q 785.121 9.527 785.121 10.652 Q 785.121 7.352 784.146 4.99 Q 783.171 2.627 781.296 1.315 Q 779.421 0.002 776.871 0.002 Q 772.671 0.002 769.671 2.665 A 11.889 11.889 0 0 0 768.066 4.426 A 23.694 23.694 0 0 0 764.721 11.327 L 747.771 63.827 Q 746.946 66.452 746.608 68.927 A 13.237 13.237 0 0 0 746.482 70.715 A 9.786 9.786 0 0 0 746.833 73.39 Q 747.396 75.377 749.121 76.54 Q 750.846 77.702 754.146 77.702 Q 756.546 77.702 758.421 76.727 Q 760.296 75.752 761.683 74.29 Q 763.071 72.827 763.821 71.477 Q 764.196 70.652 764.233 69.827 A 1.037 1.037 0 0 0 764.234 69.78 A 1.99 1.99 0 0 0 762.996 68.252 A 3.137 3.137 0 0 0 761.368 67.647 A 1.371 1.371 0 0 0 760.896 67.727 Q 760.071 68.027 759.696 68.627 Q 759.246 69.302 758.533 70.127 Q 757.821 70.952 756.883 71.515 Q 755.946 72.077 754.821 72.077 Q 753.471 72.077 753.096 71.29 A 2.937 2.937 0 0 1 752.828 70.012 A 4.371 4.371 0 0 1 752.871 69.415 Q 753.021 68.327 753.321 67.502 L 771.096 12.002 Q 771.771 9.902 772.558 8.702 Q 773.346 7.502 774.133 6.94 Q 774.921 6.377 775.671 6.377 Q 776.646 6.377 777.246 6.865 Q 777.846 7.352 778.183 8.29 Q 778.521 9.227 778.521 10.652 Q 778.521 12.077 779.496 12.752 Q 780.471 13.427 781.783 13.427 Q 783.096 13.427 784.108 12.752 Q 785.121 12.077 785.121 10.652 M 614.871 53.777 L 594.246 53.777 Q 589.821 60.452 586.296 64.84 A 64.665 64.665 0 0 1 580.828 70.936 A 35.318 35.318 0 0 1 579.921 71.777 Q 577.071 74.327 574.633 75.64 Q 572.196 76.952 570.096 77.327 Q 567.996 77.702 565.971 77.702 Q 564.171 77.702 562.521 77.402 Q 560.871 77.102 559.483 76.652 Q 558.096 76.202 557.121 75.677 Q 556.221 75.227 556.071 74.215 A 3.182 3.182 0 0 1 556.037 73.748 A 5.296 5.296 0 0 1 556.446 71.852 Q 557.046 70.577 557.758 70.09 Q 558.471 69.602 559.296 70.052 Q 560.721 70.727 562.483 71.177 Q 564.246 71.627 565.746 71.627 Q 567.696 71.627 569.571 71.177 Q 571.446 70.727 573.696 69.302 Q 575.946 67.877 578.646 64.99 A 69.935 69.935 0 0 0 583.16 59.541 A 127.654 127.654 0 0 0 584.871 57.227 Q 588.396 52.352 592.896 45.04 A 409.391 409.391 0 0 0 599.004 34.742 A 650.559 650.559 0 0 0 603.133 27.452 Q 608.871 17.177 616.146 3.452 Q 617.121 1.727 618.171 1.015 Q 619.221 0.302 621.171 0.302 Q 623.571 0.302 624.508 1.09 Q 625.446 1.877 625.296 3.827 Q 624.546 9.602 623.908 15.415 Q 623.271 21.227 622.783 26.965 Q 622.296 32.702 621.921 38.252 Q 621.546 43.802 621.358 49.09 Q 621.171 54.377 621.171 59.177 Q 621.171 62.552 621.508 64.952 Q 621.846 67.352 622.521 68.852 Q 623.196 70.352 624.246 71.027 Q 625.296 71.702 626.721 71.702 Q 628.746 71.702 630.696 69.977 Q 632.646 68.252 634.558 64.802 A 57.003 57.003 0 0 0 637.876 57.444 A 92.043 92.043 0 0 0 638.346 56.177 Q 638.721 55.277 639.621 54.902 Q 640.521 54.527 641.871 55.052 Q 643.221 55.577 643.746 56.365 A 1.78 1.78 0 0 1 644.052 57.373 A 2.468 2.468 0 0 1 643.896 58.202 A 62.392 62.392 0 0 1 639.347 68.152 A 42.304 42.304 0 0 1 639.021 68.702 Q 636.396 73.052 633.171 75.377 Q 629.946 77.702 626.121 77.702 Q 623.196 77.702 621.021 76.577 Q 618.846 75.452 617.496 73.165 Q 616.146 70.877 615.471 67.39 Q 614.796 63.902 614.796 59.177 L 614.796 56.477 Q 614.796 55.127 614.871 53.777 Z M 597.921 48.002 L 615.021 48.002 Q 615.321 42.302 615.771 36.302 Q 616.221 30.302 616.821 24.077 Q 617.421 17.852 618.171 11.552 A 615.217 615.217 0 0 1 610.431 26.278 A 428.7 428.7 0 0 1 607.183 32.14 Q 602.121 41.102 597.921 48.002 Z M 797.421 79.877 L 800.196 71.327 Q 798.696 72.827 797.046 74.065 Q 795.396 75.302 793.671 76.09 Q 791.946 76.877 790.183 77.29 Q 788.421 77.702 786.696 77.702 Q 782.496 77.702 779.983 75.865 Q 777.471 74.027 776.796 70.69 A 11.371 11.371 0 0 1 776.579 68.432 A 18.086 18.086 0 0 1 777.546 62.927 L 782.496 47.102 A 5.578 5.578 0 0 0 782.827 45.379 A 2.174 2.174 0 0 0 782.608 44.365 Q 782.121 43.427 780.771 43.427 Q 779.571 43.427 778.558 44.102 Q 777.546 44.777 776.533 46.165 Q 775.521 47.552 774.321 49.802 Q 773.796 50.702 773.233 51.19 A 2.582 2.582 0 0 1 771.554 51.612 A 7.686 7.686 0 0 1 771.171 51.602 Q 769.671 51.452 769.221 50.477 A 2.272 2.272 0 0 1 769.013 49.513 A 3.39 3.39 0 0 1 769.296 48.227 Q 770.496 45.302 772.296 42.94 Q 774.096 40.577 776.383 39.19 Q 778.671 37.802 781.296 37.802 Q 783.696 37.802 785.383 38.627 Q 787.071 39.452 788.008 40.99 Q 788.946 42.527 789.021 44.702 Q 789.096 46.877 788.271 49.502 L 784.146 62.927 A 15.598 15.598 0 0 0 783.328 67.393 A 7.153 7.153 0 0 0 783.358 68.065 Q 783.546 70.052 784.933 70.952 Q 786.321 71.852 789.021 71.852 Q 790.821 71.852 792.733 71.102 Q 794.646 70.352 796.596 68.927 Q 798.546 67.502 800.308 65.515 Q 802.071 63.527 803.496 61.052 L 810.246 40.202 Q 810.771 38.702 811.483 38.252 Q 812.196 37.802 813.621 37.802 A 4.527 4.527 0 0 1 816.505 38.436 A 1.117 1.117 0 0 1 816.583 38.515 Q 817.221 39.227 816.696 40.727 L 798.921 95.327 Q 797.121 100.802 795.208 104.627 Q 793.296 108.452 791.008 110.815 Q 788.721 113.177 786.058 114.265 Q 783.396 115.352 780.171 115.352 Q 775.521 115.352 772.821 112.765 Q 770.121 110.177 770.121 106.202 Q 770.121 102.677 771.583 99.677 Q 773.046 96.677 775.746 93.94 Q 778.446 91.202 782.083 88.69 Q 785.721 86.177 790.071 83.777 Q 791.346 83.177 792.546 82.502 Q 793.746 81.827 794.983 81.152 Q 796.221 80.477 797.421 79.877 Z M 792.546 95.177 L 795.096 87.227 Q 794.346 87.602 793.708 87.977 Q 793.071 88.352 792.471 88.652 Q 791.871 88.952 791.271 89.327 Q 787.971 91.277 785.308 93.227 Q 782.646 95.177 780.696 97.127 Q 778.746 99.077 777.733 101.065 Q 776.721 103.052 776.721 105.227 Q 776.721 106.727 777.283 107.665 Q 777.846 108.602 778.858 109.09 Q 779.871 109.577 781.146 109.577 Q 783.396 109.577 785.533 107.927 Q 787.671 106.277 789.471 103.052 Q 791.271 99.827 792.546 95.177 Z M 801.096 84.227 Q 802.671 83.402 804.246 82.502 Q 805.821 81.602 807.433 80.777 Q 809.046 79.952 810.621 79.202 Q 812.196 78.452 813.696 77.777 Q 814.596 77.402 814.896 76.39 Q 815.196 75.377 815.008 74.365 Q 814.821 73.352 814.146 72.752 A 1.336 1.336 0 0 0 813.227 72.409 A 2.396 2.396 0 0 0 812.346 72.602 Q 810.996 73.127 809.196 73.99 Q 807.396 74.852 805.483 75.827 Q 803.571 76.802 801.771 77.852 L 801.096 84.227 Z M 21.771 60.602 L 38.871 7.577 L 28.971 7.577 Q 24.771 7.577 21.883 8.44 Q 18.996 9.302 17.158 11.027 Q 15.321 12.752 14.421 15.377 Q 13.971 16.727 12.921 17.102 Q 11.871 17.477 10.146 17.102 Q 9.246 16.877 8.871 16.202 A 1.905 1.905 0 0 1 8.662 15.267 A 4.482 4.482 0 0 1 8.796 14.252 Q 9.546 11.402 11.308 9.077 Q 13.071 6.752 15.733 5.065 Q 18.396 3.377 21.808 2.477 Q 25.221 1.577 29.196 1.577 L 69.996 1.577 Q 71.121 1.577 71.383 2.215 A 1.292 1.292 0 0 1 71.463 2.704 A 6.172 6.172 0 0 1 71.046 4.577 Q 70.521 6.227 69.846 6.902 Q 69.171 7.577 68.046 7.577 L 45.621 7.577 L 28.671 60.002 A 53.01 53.01 0 0 1 24.792 69.248 A 34.449 34.449 0 0 1 24.508 69.752 Q 22.221 73.727 19.221 75.715 Q 16.221 77.702 12.096 77.702 Q 9.321 77.702 6.883 76.54 Q 4.446 75.377 2.758 73.54 Q 1.071 71.702 0.246 69.527 A 3.87 3.87 0 0 1 0 68.248 A 2.306 2.306 0 0 1 0.171 67.352 Q 0.546 66.452 1.671 65.927 Q 2.946 65.327 3.733 65.665 Q 4.521 66.002 5.496 67.202 Q 6.471 68.627 7.596 69.565 Q 8.721 70.502 9.996 70.915 Q 11.271 71.327 12.696 71.327 Q 15.696 71.327 17.758 69.002 A 16.367 16.367 0 0 0 20.292 64.631 A 46.735 46.735 0 0 0 21.771 60.602 Z M 81.621 39.377 L 81.471 42.677 Q 77.121 42.677 73.933 44.59 Q 70.746 46.502 68.646 49.577 Q 66.546 52.652 65.533 56.102 Q 64.521 59.552 64.521 62.702 Q 64.521 65.627 65.533 67.69 Q 66.546 69.752 68.421 70.802 Q 70.296 71.852 72.846 71.852 Q 76.521 71.852 79.296 69.902 Q 82.071 67.952 83.946 64.915 Q 85.821 61.877 86.796 58.54 Q 87.771 55.202 87.771 52.352 Q 87.771 49.427 86.796 47.477 Q 85.821 45.527 83.983 44.515 Q 82.146 43.502 79.671 43.502 Q 76.596 43.502 74.721 44.552 Q 72.846 45.602 72.846 47.252 Q 72.846 48.302 73.596 49.052 Q 74.346 49.802 75.733 50.177 Q 77.121 50.552 79.146 50.552 Q 81.921 50.552 85.296 49.615 Q 88.671 48.677 92.608 46.84 Q 96.546 45.002 100.971 42.302 A 2.767 2.767 0 0 1 102.349 41.835 A 1.326 1.326 0 0 1 102.846 41.927 Q 103.596 42.227 103.933 43.052 A 3.129 3.129 0 0 1 104.167 44.249 A 3.581 3.581 0 0 1 104.121 44.815 Q 103.971 45.752 103.146 46.352 Q 98.346 49.577 94.033 51.64 Q 89.721 53.702 85.821 54.64 Q 81.921 55.577 78.246 55.577 Q 74.571 55.577 72.021 54.565 Q 69.471 53.552 68.121 51.79 Q 66.771 50.027 66.771 47.702 Q 66.771 44.777 68.721 42.452 Q 70.671 40.127 73.783 38.815 Q 76.896 37.502 80.346 37.502 Q 84.996 37.502 88.183 39.265 Q 91.371 41.027 92.983 44.215 Q 94.596 47.402 94.596 51.602 Q 94.596 54.602 93.733 58.165 Q 92.871 61.727 91.108 65.215 Q 89.346 68.702 86.646 71.552 Q 83.946 74.402 80.308 76.127 Q 76.671 77.852 72.096 77.852 Q 67.446 77.852 64.221 75.977 Q 60.996 74.102 59.383 70.765 Q 57.771 67.427 57.771 63.227 Q 57.771 59.252 59.346 55.052 Q 60.921 50.852 63.996 47.29 Q 67.071 43.727 71.496 41.552 Q 75.921 39.377 81.621 39.377 Z M 101.571 75.077 L 122.196 11.327 Q 123.546 7.277 125.271 4.802 Q 126.996 2.327 129.283 1.165 Q 131.571 0.002 134.346 0.002 Q 136.821 0.002 138.658 1.202 Q 140.496 2.402 141.546 4.54 Q 142.596 6.677 142.596 9.602 Q 142.596 12.227 141.808 15.152 Q 141.021 18.077 139.483 21.302 Q 137.946 24.527 135.771 27.865 Q 133.596 31.202 130.821 34.69 Q 128.046 38.177 124.783 41.665 Q 121.521 45.152 117.808 48.677 Q 114.096 52.202 110.046 55.577 L 111.246 52.802 Q 114.021 49.877 116.646 46.54 Q 119.271 43.202 121.708 39.752 Q 124.146 36.302 126.321 32.815 Q 128.496 29.327 130.258 26.027 Q 132.021 22.727 133.296 19.765 Q 134.571 16.802 135.283 14.252 Q 135.996 11.702 135.996 9.902 Q 135.996 8.777 135.621 7.99 Q 135.246 7.202 134.646 6.79 Q 134.046 6.377 133.146 6.377 Q 132.321 6.377 131.571 6.902 Q 130.821 7.427 130.071 8.665 Q 129.321 9.902 128.571 12.002 L 107.946 75.602 Q 107.646 76.577 106.896 77.065 Q 106.146 77.552 104.421 77.552 Q 103.221 77.552 102.171 77.027 Q 101.121 76.502 101.571 75.077 Z M 113.121 59.927 A 108.72 108.72 0 0 0 113.763 62.674 A 57.208 57.208 0 0 0 115.746 69.227 A 41.561 41.561 0 0 0 115.915 69.661 A 21.301 21.301 0 0 0 118.521 74.627 Q 119.946 76.502 121.596 77.177 Q 123.246 77.852 125.196 77.852 Q 126.696 77.852 129.321 76.84 A 10.751 10.751 0 0 0 130.358 76.371 A 24.574 24.574 0 0 0 135.471 72.602 Q 136.371 71.777 136.258 70.84 Q 136.146 69.902 135.471 69.077 Q 134.796 68.327 133.971 68.177 A 1.687 1.687 0 0 0 133.668 68.15 A 2.392 2.392 0 0 0 132.246 68.702 Q 130.746 69.902 129.021 70.99 Q 127.296 72.077 126.171 72.077 Q 125.121 72.077 124.221 71.59 Q 123.321 71.102 122.533 69.79 Q 121.746 68.477 120.883 66.077 A 43.647 43.647 0 0 1 120.829 65.926 A 89.48 89.48 0 0 1 118.971 59.852 Q 121.521 59.327 124.183 58.502 Q 126.846 57.677 129.396 56.44 Q 131.946 55.202 134.008 53.515 Q 136.071 51.827 137.271 49.615 Q 138.471 47.402 138.471 44.552 Q 138.471 41.252 136.558 39.415 Q 134.646 37.577 131.721 37.577 Q 129.546 37.577 126.658 39.265 Q 123.771 40.952 120.771 43.915 Q 117.771 46.877 115.221 50.702 L 113.946 54.752 Q 117.021 51.227 119.871 48.715 Q 122.721 46.202 125.158 44.89 Q 127.596 43.577 129.321 43.577 Q 130.596 43.577 131.271 44.252 Q 131.946 44.927 131.946 46.127 Q 131.946 48.002 130.408 49.652 Q 128.871 51.302 126.283 52.652 Q 123.696 54.002 120.546 54.827 Q 117.396 55.652 114.171 55.877 L 112.821 59.927 L 113.121 59.927 Z M 177.021 75.077 L 186.021 47.102 A 5.578 5.578 0 0 0 186.352 45.379 A 2.174 2.174 0 0 0 186.133 44.365 Q 185.646 43.427 184.296 43.427 Q 183.096 43.427 182.083 44.102 Q 181.071 44.777 180.058 46.165 Q 179.046 47.552 177.846 49.802 Q 177.321 50.702 176.758 51.19 A 2.582 2.582 0 0 1 175.079 51.612 A 7.686 7.686 0 0 1 174.696 51.602 Q 173.196 51.452 172.746 50.477 A 2.272 2.272 0 0 1 172.538 49.513 A 3.39 3.39 0 0 1 172.821 48.227 Q 174.021 45.302 175.821 42.94 Q 177.621 40.577 179.908 39.19 Q 182.196 37.802 184.821 37.802 Q 186.696 37.802 188.158 38.29 Q 189.621 38.777 190.596 39.715 Q 191.571 40.652 192.096 42.04 Q 192.621 43.427 192.621 45.152 L 192.621 45.452 Q 194.346 43.577 196.183 42.115 Q 198.021 40.652 200.008 39.602 Q 201.996 38.552 204.096 38.027 Q 206.196 37.502 208.296 37.502 A 10.298 10.298 0 0 1 214.565 39.167 A 6.237 6.237 0 0 1 215.046 39.565 Q 217.296 41.627 217.633 45.19 Q 217.971 48.752 216.471 53.327 L 211.971 67.502 Q 211.746 68.327 211.558 69.415 A 4.075 4.075 0 0 0 211.496 70.106 A 2.719 2.719 0 0 0 211.746 71.29 Q 212.121 72.077 213.471 72.077 Q 214.596 72.077 215.533 71.515 Q 216.471 70.952 217.183 70.127 Q 217.896 69.302 218.346 68.627 Q 218.796 68.027 219.583 67.727 A 1.267 1.267 0 0 1 220.038 67.647 A 3.12 3.12 0 0 1 221.646 68.252 Q 222.921 69.002 222.921 69.827 Q 222.921 70.652 222.471 71.477 Q 221.721 72.827 220.333 74.29 Q 218.946 75.752 217.071 76.727 Q 215.196 77.702 212.796 77.702 Q 209.496 77.702 207.771 76.54 Q 206.046 75.377 205.483 73.39 A 9.73 9.73 0 0 1 205.132 70.73 A 12.871 12.871 0 0 1 205.258 68.965 Q 205.596 66.527 206.421 63.977 L 210.771 50.627 A 9.775 9.775 0 0 0 211.306 47.669 A 5.353 5.353 0 0 0 211.221 46.69 Q 210.921 45.077 209.608 44.252 Q 208.296 43.427 205.971 43.427 Q 203.796 43.427 201.621 44.215 Q 199.446 45.002 197.346 46.502 Q 195.246 48.002 193.446 50.065 Q 191.646 52.127 190.146 54.677 L 183.396 75.602 Q 183.096 76.577 182.308 77.065 Q 181.521 77.552 179.796 77.552 Q 178.596 77.552 177.583 77.027 Q 176.571 76.502 177.021 75.077 Z M 646.971 75.077 L 655.971 47.102 A 5.578 5.578 0 0 0 656.302 45.379 A 2.174 2.174 0 0 0 656.083 44.365 Q 655.596 43.427 654.246 43.427 Q 653.046 43.427 652.033 44.102 Q 651.021 44.777 650.008 46.165 Q 648.996 47.552 647.796 49.802 Q 647.271 50.702 646.708 51.19 A 2.582 2.582 0 0 1 645.029 51.612 A 7.686 7.686 0 0 1 644.646 51.602 Q 643.146 51.452 642.696 50.477 A 2.272 2.272 0 0 1 642.488 49.513 A 3.39 3.39 0 0 1 642.771 48.227 Q 643.971 45.302 645.771 42.94 Q 647.571 40.577 649.858 39.19 Q 652.146 37.802 654.771 37.802 Q 656.646 37.802 658.108 38.29 Q 659.571 38.777 660.546 39.715 Q 661.521 40.652 662.046 42.04 Q 662.571 43.427 662.571 45.152 L 662.571 45.452 Q 664.296 43.577 666.133 42.115 Q 667.971 40.652 669.958 39.602 Q 671.946 38.552 674.046 38.027 Q 676.146 37.502 678.246 37.502 A 10.298 10.298 0 0 1 684.515 39.167 A 6.237 6.237 0 0 1 684.996 39.565 Q 687.246 41.627 687.583 45.19 Q 687.921 48.752 686.421 53.327 L 681.921 67.502 Q 681.696 68.327 681.508 69.415 A 4.075 4.075 0 0 0 681.446 70.106 A 2.719 2.719 0 0 0 681.696 71.29 Q 682.071 72.077 683.421 72.077 Q 684.546 72.077 685.483 71.515 Q 686.421 70.952 687.133 70.127 Q 687.846 69.302 688.296 68.627 Q 688.746 68.027 689.533 67.727 A 1.267 1.267 0 0 1 689.988 67.647 A 3.12 3.12 0 0 1 691.596 68.252 Q 692.871 69.002 692.871 69.827 Q 692.871 70.652 692.421 71.477 Q 691.671 72.827 690.283 74.29 Q 688.896 75.752 687.021 76.727 Q 685.146 77.702 682.746 77.702 Q 679.446 77.702 677.721 76.54 Q 675.996 75.377 675.433 73.39 A 9.73 9.73 0 0 1 675.082 70.73 A 12.871 12.871 0 0 1 675.208 68.965 Q 675.546 66.527 676.371 63.977 L 680.721 50.627 A 9.775 9.775 0 0 0 681.256 47.669 A 5.353 5.353 0 0 0 681.171 46.69 Q 680.871 45.077 679.558 44.252 Q 678.246 43.427 675.921 43.427 Q 673.746 43.427 671.571 44.215 Q 669.396 45.002 667.296 46.502 Q 665.196 48.002 663.396 50.065 Q 661.596 52.127 660.096 54.677 L 653.346 75.602 Q 653.046 76.577 652.258 77.065 Q 651.471 77.552 649.746 77.552 Q 648.546 77.552 647.533 77.027 Q 646.521 76.502 646.971 75.077 Z M 159.471 77.852 Q 156.921 77.852 154.558 76.952 Q 152.196 76.052 150.246 74.402 Q 148.296 72.752 146.833 70.465 Q 145.371 68.177 144.583 65.327 Q 143.796 62.477 143.796 59.177 Q 143.796 56.252 144.508 53.215 Q 145.221 50.177 146.646 47.365 Q 148.071 44.552 150.171 42.34 Q 152.271 40.127 155.083 38.815 Q 157.896 37.502 161.346 37.502 Q 164.571 37.502 166.671 38.74 Q 168.771 39.977 169.821 42.04 Q 170.871 44.102 170.871 46.727 Q 170.871 51.302 168.846 55.352 A 29.452 29.452 0 0 1 168.62 55.793 A 30.604 30.604 0 0 1 163.558 62.815 Q 160.296 66.227 156.621 68.777 Q 152.646 71.477 148.183 73.502 Q 143.721 75.527 139.221 76.615 Q 134.721 77.702 130.671 77.702 Q 129.621 77.702 129.171 76.84 Q 128.721 75.977 128.946 74.89 Q 129.171 73.802 130.033 72.94 Q 130.896 72.077 132.471 72.077 Q 136.071 72.077 139.821 71.027 Q 143.571 69.977 147.096 68.102 Q 150.621 66.227 153.621 63.902 Q 156.096 62.027 158.496 59.477 Q 160.896 56.927 162.508 54.002 Q 164.121 51.077 164.121 48.002 Q 164.121 45.752 163.146 44.627 Q 162.171 43.502 159.996 43.502 Q 157.671 43.502 155.908 45.04 Q 154.146 46.577 152.946 48.94 Q 151.746 51.302 151.108 53.927 Q 150.471 56.552 150.471 58.802 Q 150.471 61.802 151.296 64.202 Q 152.121 66.602 153.583 68.327 Q 155.046 70.052 156.846 70.952 Q 158.646 71.852 160.596 71.852 Q 162.396 71.852 164.083 71.215 Q 165.771 70.577 167.421 69.452 Q 169.071 68.327 170.646 67.052 A 2.8 2.8 0 0 1 172.423 66.252 A 1.759 1.759 0 0 1 172.633 66.265 Q 173.571 66.377 174.396 67.202 Q 175.446 68.177 175.596 69.227 A 1.959 1.959 0 0 1 175.616 69.505 A 2.271 2.271 0 0 1 174.771 71.177 Q 172.371 73.427 169.896 74.927 Q 167.421 76.427 164.833 77.14 Q 162.246 77.852 159.471 77.852 Z M 520.746 77.852 Q 518.196 77.852 515.833 76.952 Q 513.471 76.052 511.521 74.402 Q 509.571 72.752 508.108 70.465 Q 506.646 68.177 505.858 65.327 Q 505.071 62.477 505.071 59.177 Q 505.071 56.252 505.783 53.215 Q 506.496 50.177 507.921 47.365 Q 509.346 44.552 511.446 42.34 Q 513.546 40.127 516.358 38.815 Q 519.171 37.502 522.621 37.502 Q 525.846 37.502 527.946 38.74 Q 530.046 39.977 531.096 42.04 Q 532.146 44.102 532.146 46.727 Q 532.146 51.302 530.121 55.352 A 29.452 29.452 0 0 1 529.895 55.793 A 30.604 30.604 0 0 1 524.833 62.815 Q 521.571 66.227 517.896 68.777 Q 513.921 71.477 509.458 73.502 Q 504.996 75.527 500.496 76.615 Q 495.996 77.702 491.946 77.702 Q 490.896 77.702 490.446 76.84 Q 489.996 75.977 490.221 74.89 Q 490.446 73.802 491.308 72.94 Q 492.171 72.077 493.746 72.077 Q 497.346 72.077 501.096 71.027 Q 504.846 69.977 508.371 68.102 Q 511.896 66.227 514.896 63.902 Q 517.371 62.027 519.771 59.477 Q 522.171 56.927 523.783 54.002 Q 525.396 51.077 525.396 48.002 Q 525.396 45.752 524.421 44.627 Q 523.446 43.502 521.271 43.502 Q 518.946 43.502 517.183 45.04 Q 515.421 46.577 514.221 48.94 Q 513.021 51.302 512.383 53.927 Q 511.746 56.552 511.746 58.802 Q 511.746 61.802 512.571 64.202 Q 513.396 66.602 514.858 68.327 Q 516.321 70.052 518.121 70.952 Q 519.921 71.852 521.871 71.852 Q 523.671 71.852 525.358 71.215 Q 527.046 70.577 528.696 69.452 Q 530.346 68.327 531.921 67.052 A 2.8 2.8 0 0 1 533.698 66.252 A 1.759 1.759 0 0 1 533.908 66.265 Q 534.846 66.377 535.671 67.202 Q 536.721 68.177 536.871 69.227 A 1.959 1.959 0 0 1 536.891 69.505 A 2.271 2.271 0 0 1 536.046 71.177 Q 533.646 73.427 531.171 74.927 Q 528.696 76.427 526.108 77.14 Q 523.521 77.852 520.746 77.852 Z M 479.121 79.877 L 481.896 71.252 Q 479.646 73.877 477.396 75.265 Q 475.146 76.652 473.121 77.177 Q 471.096 77.702 469.446 77.702 Q 465.996 77.702 463.558 76.202 Q 461.121 74.702 459.808 71.852 Q 458.496 69.002 458.496 65.102 Q 458.496 61.802 459.396 58.052 Q 460.296 54.302 462.133 50.665 Q 463.971 47.027 466.821 44.027 Q 469.671 41.027 473.571 39.265 Q 477.471 37.502 482.496 37.502 Q 484.221 37.502 485.871 37.877 Q 487.521 38.252 489.021 38.89 Q 490.521 39.527 491.871 40.427 L 491.946 40.127 Q 492.471 38.627 493.071 38.215 Q 493.671 37.802 495.321 37.802 A 4.527 4.527 0 0 1 498.205 38.436 A 1.117 1.117 0 0 1 498.283 38.515 Q 498.921 39.227 498.396 40.727 L 480.621 95.327 A 62.786 62.786 0 0 1 477.188 104.143 A 39.987 39.987 0 0 1 476.946 104.627 Q 474.996 108.452 472.746 110.815 Q 470.496 113.177 467.796 114.265 Q 465.096 115.352 461.871 115.352 Q 458.796 115.352 456.508 114.152 Q 454.221 112.952 453.021 110.89 Q 451.821 108.827 451.821 106.202 Q 451.821 102.677 453.283 99.677 Q 454.746 96.677 457.446 93.94 Q 460.146 91.202 463.783 88.69 Q 467.421 86.177 471.771 83.777 Q 473.046 83.177 474.246 82.502 Q 475.446 81.827 476.683 81.152 Q 477.921 80.477 479.121 79.877 Z M 485.421 60.602 L 490.371 45.302 Q 488.421 44.252 486.621 43.84 Q 484.821 43.427 482.946 43.427 Q 478.971 43.427 476.008 44.852 Q 473.046 46.277 470.983 48.64 Q 468.921 51.002 467.646 53.815 Q 466.371 56.627 465.808 59.402 Q 465.246 62.177 465.246 64.427 Q 465.246 66.827 465.958 68.44 Q 466.671 70.052 468.096 70.877 Q 469.521 71.702 471.621 71.702 Q 474.096 71.702 476.496 70.352 Q 478.896 69.002 481.146 66.527 Q 483.396 64.052 485.421 60.602 Z M 474.246 95.177 L 476.796 87.227 Q 476.046 87.602 475.408 87.977 Q 474.771 88.352 474.171 88.652 Q 473.571 88.952 472.971 89.327 Q 469.671 91.277 467.008 93.227 Q 464.346 95.177 462.396 97.127 Q 460.446 99.077 459.433 101.065 Q 458.421 103.052 458.421 105.227 Q 458.421 106.727 458.983 107.665 Q 459.546 108.602 460.558 109.09 Q 461.571 109.577 462.846 109.577 Q 464.571 109.577 466.071 108.752 Q 467.571 107.927 468.996 106.202 Q 470.421 104.477 471.733 101.74 Q 473.046 99.002 474.246 95.177 Z M 482.121 84.977 Q 483.621 84.152 485.271 83.327 Q 486.921 82.502 488.571 81.752 Q 490.221 81.002 491.796 80.252 Q 493.371 79.502 494.871 78.827 Q 495.771 78.452 496.071 77.477 Q 496.371 76.502 496.221 75.452 Q 496.071 74.402 495.433 73.84 Q 494.796 73.277 493.671 73.652 Q 492.546 74.027 491.271 74.59 Q 489.996 75.152 488.608 75.79 Q 487.221 76.427 485.758 77.14 Q 484.296 77.852 482.871 78.602 L 482.121 84.977 Z M 826.821 63.077 L 832.671 44.927 L 826.746 44.927 Q 825.921 44.927 825.621 44.177 A 2.199 2.199 0 0 1 825.487 43.362 A 6.055 6.055 0 0 1 825.696 41.927 Q 826.146 40.427 826.858 39.677 Q 827.571 38.927 828.396 38.927 L 834.621 38.927 L 839.421 24.077 Q 839.871 22.577 840.583 22.127 Q 841.296 21.677 842.796 21.677 A 4.527 4.527 0 0 1 845.68 22.311 A 1.117 1.117 0 0 1 845.758 22.39 Q 846.396 23.102 845.871 24.602 L 841.296 38.927 L 850.746 38.927 Q 851.571 38.927 851.871 39.64 A 2.085 2.085 0 0 1 852.004 40.443 A 6.589 6.589 0 0 1 851.796 41.927 Q 851.346 43.352 850.596 44.14 Q 849.846 44.927 849.021 44.927 L 839.421 44.927 L 832.371 66.677 A 9.907 9.907 0 0 0 831.837 69.556 A 3.677 3.677 0 0 0 831.996 70.69 Q 832.446 72.077 834.021 72.077 Q 836.496 72.077 838.221 70.502 Q 839.946 68.927 840.921 67.727 Q 841.371 67.127 842.158 66.827 Q 842.946 66.527 844.146 67.352 Q 845.421 68.102 845.458 68.89 Q 845.496 69.677 845.046 70.502 Q 844.071 72.077 842.458 73.765 Q 840.846 75.452 838.521 76.577 Q 836.196 77.702 832.896 77.702 A 8.773 8.773 0 0 1 827.653 76.393 A 4.384 4.384 0 0 1 826.858 75.64 A 7.031 7.031 0 0 1 825.369 71.037 A 11.165 11.165 0 0 1 825.396 70.277 Q 825.621 66.977 826.821 63.077 Z M 889.746 77.852 Q 884.796 77.852 881.646 75.94 Q 878.496 74.027 876.958 70.727 Q 875.421 67.427 875.421 63.077 Q 875.421 59.177 876.883 54.752 Q 878.346 50.327 881.196 46.39 Q 884.046 42.452 888.283 39.977 Q 892.521 37.502 897.996 37.502 Q 902.421 37.502 905.458 38.852 Q 908.496 40.202 910.746 42.827 A 3.052 3.052 0 0 1 911.611 44.66 A 1.332 1.332 0 0 1 911.533 45.115 Q 911.196 46.052 910.296 46.877 Q 909.321 47.627 908.346 47.74 A 1.545 1.545 0 0 1 908.168 47.75 A 2.441 2.441 0 0 1 906.396 46.727 Q 904.971 45.152 902.871 44.327 Q 900.771 43.502 897.396 43.502 Q 893.646 43.502 890.796 45.452 Q 887.946 47.402 886.033 50.44 Q 884.121 53.477 883.146 56.777 Q 882.171 60.077 882.171 62.852 Q 882.171 65.702 883.183 67.727 Q 884.196 69.752 886.071 70.802 Q 887.946 71.852 890.496 71.852 Q 893.046 71.852 894.658 71.177 Q 896.271 70.502 897.696 69.227 Q 899.121 67.952 900.996 66.077 A 2.751 2.751 0 0 1 902.768 65.306 A 1.977 1.977 0 0 1 903.058 65.327 Q 904.071 65.477 904.971 66.302 Q 906.096 67.277 906.133 68.177 A 1.89 1.89 0 0 1 906.135 68.256 A 3.411 3.411 0 0 1 905.346 70.202 Q 903.021 73.352 900.133 75.002 Q 897.246 76.652 894.508 77.252 Q 891.771 77.852 889.746 77.852 Z M 445.146 40.502 L 445.221 40.202 Q 445.746 38.702 446.458 38.252 Q 447.171 37.802 448.596 37.802 A 4.809 4.809 0 0 1 451.467 38.387 A 1.05 1.05 0 0 1 451.596 38.515 A 1.608 1.608 0 0 1 451.938 39.586 A 4.031 4.031 0 0 1 451.746 40.727 L 442.971 67.502 Q 442.746 68.327 442.558 69.415 A 4.075 4.075 0 0 0 442.496 70.106 A 2.719 2.719 0 0 0 442.746 71.29 Q 443.121 72.077 444.471 72.077 Q 445.596 72.077 446.533 71.515 Q 447.471 70.952 448.183 70.127 Q 448.896 69.302 449.346 68.627 Q 449.796 68.027 450.621 67.727 Q 451.446 67.427 452.646 68.252 Q 453.921 69.002 453.921 69.827 Q 453.921 70.652 453.471 71.477 Q 452.721 72.827 451.371 74.29 Q 450.021 75.752 448.146 76.727 Q 446.271 77.702 443.871 77.702 Q 441.771 77.702 440.308 77.215 Q 438.846 76.727 437.946 75.827 Q 437.046 74.927 436.596 73.727 Q 436.146 72.527 436.146 71.102 L 436.146 70.69 L 436.146 70.352 Q 433.746 73.352 431.271 74.965 Q 428.796 76.577 426.583 77.14 Q 424.371 77.702 422.646 77.702 Q 419.196 77.702 416.758 76.202 Q 414.321 74.702 413.008 71.852 Q 411.696 69.002 411.696 65.102 Q 411.696 61.802 412.596 58.052 Q 413.496 54.302 415.333 50.665 Q 417.171 47.027 420.021 44.027 Q 422.871 41.027 426.771 39.265 Q 430.671 37.502 435.696 37.502 Q 438.321 37.502 440.721 38.327 Q 443.121 39.152 445.146 40.502 Z M 438.471 60.752 L 443.571 45.377 Q 441.621 44.252 439.858 43.84 Q 438.096 43.427 436.146 43.427 Q 432.171 43.427 429.208 44.852 Q 426.246 46.277 424.183 48.64 Q 422.121 51.002 420.846 53.815 Q 419.571 56.627 419.008 59.402 Q 418.446 62.177 418.446 64.427 Q 418.446 66.827 419.158 68.44 Q 419.871 70.052 421.296 70.877 Q 422.721 71.702 424.821 71.702 Q 427.296 71.702 429.658 70.39 Q 432.021 69.077 434.271 66.602 Q 436.521 64.127 438.471 60.752 Z M 730.746 40.502 L 730.821 40.202 Q 731.346 38.702 732.058 38.252 Q 732.771 37.802 734.196 37.802 A 4.809 4.809 0 0 1 737.067 38.387 A 1.05 1.05 0 0 1 737.196 38.515 A 1.608 1.608 0 0 1 737.538 39.586 A 4.031 4.031 0 0 1 737.346 40.727 L 728.571 67.502 Q 728.346 68.327 728.158 69.415 A 4.075 4.075 0 0 0 728.096 70.106 A 2.719 2.719 0 0 0 728.346 71.29 Q 728.721 72.077 730.071 72.077 Q 731.196 72.077 732.133 71.515 Q 733.071 70.952 733.783 70.127 Q 734.496 69.302 734.946 68.627 Q 735.396 68.027 736.221 67.727 Q 737.046 67.427 738.246 68.252 Q 739.521 69.002 739.521 69.827 Q 739.521 70.652 739.071 71.477 Q 738.321 72.827 736.971 74.29 Q 735.621 75.752 733.746 76.727 Q 731.871 77.702 729.471 77.702 Q 727.371 77.702 725.908 77.215 Q 724.446 76.727 723.546 75.827 Q 722.646 74.927 722.196 73.727 Q 721.746 72.527 721.746 71.102 L 721.746 70.69 L 721.746 70.352 Q 719.346 73.352 716.871 74.965 Q 714.396 76.577 712.183 77.14 Q 709.971 77.702 708.246 77.702 Q 704.796 77.702 702.358 76.202 Q 699.921 74.702 698.608 71.852 Q 697.296 69.002 697.296 65.102 Q 697.296 61.802 698.196 58.052 Q 699.096 54.302 700.933 50.665 Q 702.771 47.027 705.621 44.027 Q 708.471 41.027 712.371 39.265 Q 716.271 37.502 721.296 37.502 Q 723.921 37.502 726.321 38.327 Q 728.721 39.152 730.746 40.502 Z M 724.071 60.752 L 729.171 45.377 Q 727.221 44.252 725.458 43.84 Q 723.696 43.427 721.746 43.427 Q 717.771 43.427 714.808 44.852 Q 711.846 46.277 709.783 48.64 Q 707.721 51.002 706.446 53.815 Q 705.171 56.627 704.608 59.402 Q 704.046 62.177 704.046 64.427 Q 704.046 66.827 704.758 68.44 Q 705.471 70.052 706.896 70.877 Q 708.321 71.702 710.421 71.702 Q 712.896 71.702 715.258 70.39 Q 717.621 69.077 719.871 66.602 Q 722.121 64.127 724.071 60.752 Z M 242.421 77.852 Q 238.671 77.852 235.896 76.652 Q 233.121 75.452 231.621 73.952 Q 230.946 73.352 230.908 72.565 A 1.152 1.152 0 0 1 230.907 72.51 A 3.293 3.293 0 0 1 231.921 70.577 Q 232.746 69.677 233.533 69.602 Q 234.321 69.527 235.296 70.202 Q 236.346 70.952 238.221 71.815 Q 240.096 72.677 242.421 72.677 Q 246.396 72.677 248.196 70.615 Q 249.996 68.552 249.996 64.802 Q 249.996 62.927 249.321 60.902 Q 248.646 58.877 247.521 56.777 Q 246.396 54.677 245.196 52.615 Q 243.996 50.552 242.871 48.565 Q 241.746 46.577 241.071 44.852 Q 240.396 43.127 240.396 41.702 A 17.574 17.574 0 0 1 241.254 35.66 A 7.883 7.883 0 0 1 241.671 34.727 Q 242.946 32.327 246.171 32.327 Q 247.896 32.327 248.721 33.377 Q 249.546 34.427 249.546 35.702 Q 249.546 36.977 248.833 38.365 A 25.805 25.805 0 0 1 246.639 41.683 A 67.377 67.377 0 0 1 246.171 42.302 Q 246.171 43.802 246.921 45.415 Q 247.671 47.027 248.833 48.752 Q 249.996 50.477 251.346 52.315 Q 252.696 54.152 253.858 56.14 Q 255.021 58.127 255.771 60.265 Q 256.521 62.402 256.521 64.802 A 12.046 12.046 0 0 1 252.644 74.462 A 10.935 10.935 0 0 1 252.583 74.515 Q 248.646 77.852 242.421 77.852 Z M 242.346 39.602 A 488.515 488.515 0 0 1 238.475 46.053 A 291.453 291.453 0 0 1 232.821 54.977 A 190.964 190.964 0 0 1 230.58 58.286 A 104.291 104.291 0 0 1 225.583 64.99 A 49.297 49.297 0 0 1 224.438 66.335 A 24.065 24.065 0 0 1 219.996 70.427 Q 217.521 72.077 215.346 72.077 Q 213.921 72.077 212.983 72.94 Q 212.046 73.802 211.746 74.89 Q 211.446 75.977 211.896 76.84 Q 212.346 77.702 213.771 77.702 A 14.878 14.878 0 0 0 220.971 75.827 A 17.158 17.158 0 0 0 221.837 75.322 A 29.409 29.409 0 0 0 228.133 69.752 A 58.885 58.885 0 0 0 230.519 66.86 A 105.633 105.633 0 0 0 236.233 58.615 A 203.555 203.555 0 0 0 239.677 52.953 A 343.035 343.035 0 0 0 246.096 41.477 L 242.346 39.602 Z M 385.521 77.852 Q 381.771 77.852 378.996 76.652 Q 376.221 75.452 374.721 73.952 Q 374.046 73.352 374.008 72.565 A 1.152 1.152 0 0 1 374.007 72.51 A 3.293 3.293 0 0 1 375.021 70.577 Q 375.846 69.677 376.633 69.602 Q 377.421 69.527 378.396 70.202 Q 379.446 70.952 381.321 71.815 Q 383.196 72.677 385.521 72.677 Q 389.496 72.677 391.296 70.615 Q 393.096 68.552 393.096 64.802 Q 393.096 62.927 392.421 60.902 Q 391.746 58.877 390.621 56.777 Q 389.496 54.677 388.296 52.615 Q 387.096 50.552 385.971 48.565 Q 384.846 46.577 384.171 44.852 Q 383.496 43.127 383.496 41.702 A 17.574 17.574 0 0 1 384.354 35.66 A 7.883 7.883 0 0 1 384.771 34.727 Q 386.046 32.327 389.271 32.327 Q 390.996 32.327 391.821 33.377 Q 392.646 34.427 392.646 35.702 Q 392.646 36.977 391.933 38.365 A 25.805 25.805 0 0 1 389.739 41.683 A 67.377 67.377 0 0 1 389.271 42.302 Q 389.271 43.802 390.021 45.415 Q 390.771 47.027 391.933 48.752 Q 393.096 50.477 394.446 52.315 Q 395.796 54.152 396.958 56.14 Q 398.121 58.127 398.871 60.265 Q 399.621 62.402 399.621 64.802 A 12.046 12.046 0 0 1 395.744 74.462 A 10.935 10.935 0 0 1 395.683 74.515 Q 391.746 77.852 385.521 77.852 Z M 385.446 39.602 A 488.515 488.515 0 0 1 381.575 46.053 A 291.453 291.453 0 0 1 375.921 54.977 A 190.964 190.964 0 0 1 373.68 58.286 A 104.291 104.291 0 0 1 368.683 64.99 A 49.297 49.297 0 0 1 367.538 66.335 A 24.065 24.065 0 0 1 363.096 70.427 Q 360.621 72.077 358.446 72.077 Q 357.021 72.077 356.083 72.94 Q 355.146 73.802 354.846 74.89 Q 354.546 75.977 354.996 76.84 Q 355.446 77.702 356.871 77.702 A 14.878 14.878 0 0 0 364.071 75.827 A 17.158 17.158 0 0 0 364.937 75.322 A 29.409 29.409 0 0 0 371.233 69.752 A 58.885 58.885 0 0 0 373.619 66.86 A 105.633 105.633 0 0 0 379.333 58.615 A 203.555 203.555 0 0 0 382.777 52.953 A 343.035 343.035 0 0 0 389.196 41.477 L 385.446 39.602 Z M 929.196 77.852 Q 925.446 77.852 922.671 76.652 Q 919.896 75.452 918.396 73.952 Q 917.721 73.352 917.683 72.565 A 1.152 1.152 0 0 1 917.682 72.51 A 3.293 3.293 0 0 1 918.696 70.577 Q 919.521 69.677 920.308 69.602 Q 921.096 69.527 922.071 70.202 Q 923.121 70.952 924.996 71.815 Q 926.871 72.677 929.196 72.677 Q 933.171 72.677 934.971 70.615 Q 936.771 68.552 936.771 64.802 Q 936.771 62.927 936.096 60.902 Q 935.421 58.877 934.296 56.777 Q 933.171 54.677 931.971 52.615 Q 930.771 50.552 929.646 48.565 Q 928.521 46.577 927.846 44.852 Q 927.171 43.127 927.171 41.702 A 17.574 17.574 0 0 1 928.029 35.66 A 7.883 7.883 0 0 1 928.446 34.727 Q 929.721 32.327 932.946 32.327 Q 934.671 32.327 935.496 33.377 Q 936.321 34.427 936.321 35.702 Q 936.321 36.977 935.608 38.365 A 25.805 25.805 0 0 1 933.414 41.683 A 67.377 67.377 0 0 1 932.946 42.302 Q 932.946 43.802 933.696 45.415 Q 934.446 47.027 935.608 48.752 Q 936.771 50.477 938.121 52.315 Q 939.471 54.152 940.633 56.14 Q 941.796 58.127 942.546 60.265 Q 943.296 62.402 943.296 64.802 A 12.046 12.046 0 0 1 939.419 74.462 A 10.935 10.935 0 0 1 939.358 74.515 Q 935.421 77.852 929.196 77.852 Z M 929.121 39.602 A 488.515 488.515 0 0 1 925.25 46.053 A 291.453 291.453 0 0 1 919.596 54.977 A 190.964 190.964 0 0 1 917.355 58.286 A 104.291 104.291 0 0 1 912.358 64.99 A 49.297 49.297 0 0 1 911.213 66.335 A 24.065 24.065 0 0 1 906.771 70.427 Q 904.296 72.077 902.121 72.077 Q 900.696 72.077 899.758 72.94 Q 898.821 73.802 898.521 74.89 Q 898.221 75.977 898.671 76.84 Q 899.121 77.702 900.546 77.702 A 14.878 14.878 0 0 0 907.746 75.827 A 17.158 17.158 0 0 0 908.612 75.322 A 29.409 29.409 0 0 0 914.908 69.752 A 58.885 58.885 0 0 0 917.294 66.86 A 105.633 105.633 0 0 0 923.008 58.615 A 203.555 203.555 0 0 0 926.452 52.953 A 343.035 343.035 0 0 0 932.871 41.477 L 929.121 39.602 Z M 853.671 65.177 L 861.771 40.202 Q 862.221 38.702 862.933 38.252 Q 863.646 37.802 865.146 37.802 A 4.527 4.527 0 0 1 868.03 38.436 A 1.117 1.117 0 0 1 868.108 38.515 Q 868.746 39.227 868.221 40.727 L 859.671 67.127 Q 858.921 69.527 859.296 70.802 A 1.732 1.732 0 0 0 861.171 72.077 Q 862.296 72.077 863.271 71.515 Q 864.246 70.952 864.958 70.127 Q 865.671 69.302 866.121 68.627 Q 866.571 68.027 867.396 67.727 Q 868.221 67.427 869.421 68.252 Q 870.696 69.002 870.696 69.827 Q 870.696 70.652 870.246 71.477 Q 869.496 72.827 868.071 74.29 Q 866.646 75.752 864.733 76.727 Q 862.821 77.702 860.421 77.702 A 7.414 7.414 0 0 1 854.096 75.147 A 6.119 6.119 0 0 1 853.596 74.365 Q 851.796 71.027 853.671 65.177 Z M 87.846 77.702 Q 86.421 77.702 85.821 76.84 A 2.928 2.928 0 0 1 85.287 75.129 A 3.472 3.472 0 0 1 85.296 74.89 Q 85.371 73.802 86.158 72.94 Q 86.946 72.077 88.371 72.077 Q 90.321 72.077 92.308 71.027 Q 94.296 69.977 96.733 67.615 Q 99.171 65.252 102.433 61.24 A 259.028 259.028 0 0 0 107.939 54.187 A 424.856 424.856 0 0 0 110.046 51.377 A 1.677 1.677 0 0 1 111.325 50.534 A 1.151 1.151 0 0 1 111.771 50.627 Q 112.671 51.002 112.971 52.202 A 2.371 2.371 0 0 1 113.041 52.779 A 3.678 3.678 0 0 1 112.296 54.827 A 326.88 326.88 0 0 1 106.143 63.172 A 184.724 184.724 0 0 1 104.083 65.815 A 82.724 82.724 0 0 1 98.759 71.964 A 44.276 44.276 0 0 1 97.896 72.827 Q 95.196 75.452 92.796 76.577 Q 90.396 77.702 87.846 77.702 Z M 869.796 26.252 Q 868.296 26.252 867.208 25.277 Q 866.121 24.302 866.121 22.427 Q 866.121 20.402 867.471 18.602 Q 868.821 16.802 871.596 16.802 Q 873.096 16.802 874.183 17.74 Q 875.271 18.677 875.271 20.627 Q 875.271 22.652 873.958 24.452 Q 872.646 26.252 869.796 26.252 Z"})],-1)])])}const M7=Object.assign(P(w7,[["render",B7]]),{__name:"SiteLogo"});function k7(n){const e=[g(n.method)?.toUpperCase()||"GET",g(n.baseURL)];for(const t of[n.query||n.params]){const Q=g(t);if(!Q)continue;const s={};for(const[o,a]of Object.entries(Q))s[g(o)]=g(a);e.push(s)}if(n.body){const t=g(n.body);if(!t)e.push(B(t));else if(t instanceof ArrayBuffer)e.push(B(Object.fromEntries([...new Uint8Array(t).entries()].map(([Q,s])=>[Q,s.toString()]))));else if(t instanceof FormData){const Q={};for(const s of t.entries()){const[o,a]=s;Q[o]=a instanceof File?a.name:a}e.push(B(Q))}else if(Y(t))e.push(B(R(t)));else try{e.push(B(t))}catch{console.warn("[useFetch] Failed to hash body",t)}}return e}const G=c7({name:"createUseFetch",factory(n={}){function e(t,Q,s){const[o={},a]=typeof Q=="string"?[{},Q]:[Q,s],r=x(()=>g(t)),i=x(()=>g(o.key)||"$f"+B([a,typeof r.value=="string"?r.value:"",...k7(o)]));if(!o.baseURL&&typeof r.value=="string"&&r.value[0]==="/"&&r.value[1]==="/")throw new Error('[nuxt] [useFetch] the request URL must not start with "//".');const u=typeof n=="function"?n(o):n,{server:d,lazy:y,default:c,transform:S,pick:_,watch:Z,immediate:C,getCachedData:z,deep:j,dedupe:L,timeout:F,...m}={...typeof n=="function"?{}:u,...o,...typeof n=="function"?u:{}},$=R({...W,...m,cache:typeof m.cache=="boolean"?void 0:m.cache}),H={server:d,lazy:y,default:c,transform:S,pick:_,immediate:C,getCachedData:z,deep:j,dedupe:L,timeout:F,watch:Z===!1?[]:[...Z||[],$]};return l7(Z===!1?i.value:i,(Y7,{signal:K})=>(o.$fetch||globalThis.$fetch)(r.value,{signal:K,...$}),H)}return e}});G.__nuxt_factory();const S7=G.__nuxt_factory({lazy:!0,_functionName:"useLazyFetch"}),Z7={key:1,class:"text-muted-foreground w-8 text-xs tabular-nums"},z7=b({__name:"GitHubLink",setup(n){const e=Q7(),{data:t,pending:Q}=S7(`https://ungh.cc/repos/${e.github.repo}`,"$5jzG0y0vUx"),s=x(()=>{const o=t.value?.repo?.stars;return o?o>=1e3?`${(o/1e3).toFixed(1)}k`:o.toLocaleString():"∞"});return(o,a)=>{const r=D,i=u7,u=I,d=V;return l(),p(d,{"as-child":"",class:"h-8 shadow-none",size:"sm",variant:"ghost"},{default:w(()=>[f(u,{to:h(e).github.link,rel:"noreferrer",target:"_blank"},{default:w(()=>[f(r,{name:"mdi:github"}),h(Q)?(l(),p(i,{key:0,class:"h-4 w-8"})):(l(),k("span",Z7,T(h(s)),1))]),_:1},8,["to"])]),_:1})}}}),$7=Object.assign(z7,{__name:"GitHubLink"}),C7=b({__name:"ModeSwitcher",setup(n){const e=t7({selector:"html",attribute:"class",storageKey:"app-color-mode",onChanged(t,Q){const s=document,o=window.matchMedia("(prefers-reduced-motion: reduce)").matches;if(!s.startViewTransition||o){Q(t);return}s.startViewTransition(()=>{Q(t)})}});return(t,Q)=>{const s=D,o=V;return l(),p(o,{variant:"ghost",size:"icon",class:"group/toggle extend-touch-target size-8",title:"Toggle theme",onClick:Q[0]||(Q[0]=a=>e.value=h(e)==="light"?"dark":"light")},{default:w(()=>[h(e)==="dark"?(l(),p(s,{key:0,name:"lucide:moon",mode:"svg"})):(l(),p(s,{key:1,name:"lucide:sun",mode:"svg"})),Q[1]||(Q[1]=A("span",{class:"sr-only"},"Toggle theme",-1))]),_:1})}}}),j7=Object.assign(C7,{__name:"ModeSwitcher"}),F7=b({__name:"Separator",props:{orientation:{default:"horizontal"},decorative:{type:Boolean,default:!0},asChild:{type:Boolean},as:{},class:{type:[Boolean,null,String,Object,Array]}},setup(n){const e=n,t=e7(e,"class");return(Q,s)=>(l(),p(h(x7),U({"data-slot":"separator"},h(t),{class:h(E)("bg-border shrink-0 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px",e.class)}),null,16,["class"]))}}),O7=s7("/logo.svg"),N7={class:"flex flex-col border-b z-10 mb-5"},T7={class:"container mx-auto flex items-center justify-between gap-3"},D7={class:"flex flex-col h-14"},I7={class:"flex items-center gap-4 h-full"},U7={class:"flex items-center"},P7={class:"container mx-auto flex items-center justify-between pt-3 pb-1"},R7={class:"capitalize text-xs font-medium font-mono"},q7=b({name:"SiteNavbar",__name:"SiteNavbar",setup(n){const e=[{icon:"solar:home-bold-duotone",iconType:"icon",label:"home",link:"/"},...r7,{icon:"ri:apps-ai-line",iconType:"icon",label:"Project",link:"/project"}],t=o7(),Q=x(()=>t.path);function s(o){const a=Q.value===o.link,r=o.iconFillClass??(o.iconType==="ai"?"[&_svg]:fill-foreground/50":"");return E("relative flex flex-col items-center gap-1.5",a?["after:content-[''] after:absolute after:w-full after:h-px after:bg-amber-500","after:-bottom-1 after:rounded-2xl"]:["text-foreground/50",r])}return(o,a)=>{const r=M7,i=$7,u=j7,d=F7,y=D,c=d7,S=I;return l(),k("header",N7,[A("div",T7,[A("div",D7,[A("div",I7,[a[0]||(a[0]=A("img",{alt:"",class:"size-8",src:O7},null,-1)),f(r,{class:"w-48 fill-foreground"})])]),A("div",U7,[f(i),f(u)])]),f(d),A("div",P7,[(l(),k(q,null,n7(e,_=>f(S,{key:_.label,class:a7(s(_)),to:_.link},{default:w(()=>[_.iconType==="icon"?(l(),p(y,{key:0,name:_.icon,class:"size-5",mode:"svg"},null,8,["name"])):(l(),p(c,{key:1,name:_.icon},null,8,["name"])),A("span",R7,T(_.label),1)]),_:2},1032,["class","to"])),64))])])}}}),V7=Object.assign(q7,{__name:"SiteNavbar"}),E7={class:"mt-8 border-t"},G7={class:"container mx-auto flex flex-col items-center justify-between gap-2 py-4 text-center text-xs text-muted-foreground sm:flex-row sm:text-left"},H7=b({name:"SiteFooter",__name:"SiteFooter",setup(n){const{public:{appVersion:e}}=i7();return(t,Q)=>{const s=I;return l(),k("footer",E7,[A("div",G7,[A("p",null,[Q[1]||(Q[1]=O(" Copyright © 2026 ",-1)),f(s,{class:"font-medium text-foreground underline-offset-4 transition-colors hover:text-amber-600 hover:underline",rel:"noreferrer",target:"_blank",to:"https://github.com/lonewolfyx"},{default:w(()=>[...Q[0]||(Q[0]=[O(" lonewolfyx ",-1)])]),_:1}),Q[2]||(Q[2]=O(". ",-1))]),A("p",null," Built with Nuxt, extended from ccusage, and released under the MIT License. Version "+T(h(e))+". ",1)])])}}}),K7=Object.assign(H7,{__name:"SiteFooter"}),J7={};function X7(n,e){const t=V7,Q=K7;return l(),k(q,null,[f(t),N(n.$slots,"default"),f(Q)],64)}const a2=P(J7,[["render",X7]]);export{a2 as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{_ as o,u as s,o as a,c as i,a as t,t as r}from"./
|
|
1
|
+
import{_ as o,u as s,o as a,c as i,a as t,t as r}from"./DgKrPjze.js";const u={class:"antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide"},c={class:"max-w-520px text-center"},l=["textContent"],d=["textContent"],p=["textContent"],f={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},status:{type:Number,default:500},statusText:{type:String,default:"Internal server error"},description:{type:String,default:"This page is temporarily unavailable."},refresh:{type:String,default:"Refresh this page"}},setup(e){const n=e;return s({title:`${n.status} - ${n.statusText} | ${n.appName}`,script:[{innerHTML:`!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))r(e);new MutationObserver(e=>{for(const o of e)if("childList"===o.type)for(const e of o.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&r(e)}).observe(document,{childList:!0,subtree:!0})}function r(e){if(e.ep)return;e.ep=!0;const r=function(e){const r={};return e.integrity&&(r.integrity=e.integrity),e.referrerPolicy&&(r.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?r.credentials="include":"anonymous"===e.crossOrigin?r.credentials="omit":r.credentials="same-origin",r}(e);fetch(e.href,r)}}();`}],style:[{innerHTML:'*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}h1,h2{font-size:inherit;font-weight:inherit}h1,h2,p{margin:0}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }'}]}),(h,m)=>(a(),i("div",u,[t("div",c,[t("h1",{class:"font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]",textContent:r(e.status)},null,8,l),t("h2",{class:"font-semibold mb-2 sm:text-3xl text-2xl",textContent:r(e.statusText)},null,8,d),t("p",{class:"mb-4 px-2 text-[#64748B] text-md",textContent:r(e.description)},null,8,p)])]))}},b=o(f,[["__scopeId","data-v-9403453c"]]);export{b as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{K as se,_ as ve,S as be,C as ke,f as ce,z as xe,A as _e,j as we,g as $,k as de,m as H}from"./
|
|
1
|
+
import{K as se,_ as ve,S as be,C as ke,f as ce,z as xe,A as _e,j as we,g as $,k as de,m as H}from"./DtbPvE6R.js";import{y as re,Z as Te,o as g,A as K,w as Q,a as s,b as Y,C as u,G as O,c as k,P as L,t as p,H as I,I as E,Y as Me,g as l,a3 as oe,V as ae,ag as Ce,h as me}from"./DgKrPjze.js";import{_ as $e}from"./DUoLvn3A.js";const De={key:0,class:"pointer-events-none absolute inset-0 z-10"},Se={class:"mt-4 flex flex-wrap items-center justify-center gap-3 text-xs text-muted-foreground"},Ue={class:"font-medium text-foreground tabular-nums"},je=288,Pe=re({name:"StatisticalAnalysisModelUsagePanel",__name:"ModelUsagePanel",props:{monthlyItems:{},year:{}},setup(o){const n=o,h=["#2563eb","#f97316","#0891b2","#8b5cf6","#059669","#f43f5e"],m={bottom:32,left:56,right:12,top:8},_=[0,void 0],D=Me("chartRoot"),{width:B}=Te(D),S=oe(null),f=oe(null),U=l(()=>n.year??he(n.monthlyItems)??new Date().getFullYear()),v=l(()=>Array.from({length:12},(e,i)=>{const c=`${i+1}`.padStart(2,"0");return`${U.value}-${c}`})),z=l(()=>[0,Math.max(v.value.length-1,0)]),y=l(()=>v.value.map((e,i)=>i)),F=l(()=>n.monthlyItems.filter(e=>e.month.startsWith(`${U.value}-`))),Z=l(()=>Array.from(new Set(F.value.map(e=>e.model)))),N=l(()=>v.value.map((e,i)=>{const c=Object.fromEntries(Z.value.map(d=>[d,F.value.find(b=>b.month===e&&b.model===d)?.tokenTotal??0]));return{month:e,monthIndex:i,tokensByModel:c,totalTokens:Object.values(c).reduce((d,b)=>d+b,0)}})),C=l(()=>Z.value.map((e,i)=>{const c=te(i),d=N.value.reduce((b,X)=>b+(X.tokensByModel[e]??0),0);return{color:c,model:e,totalLabel:$(d),totalTokens:d}}).sort((e,i)=>i.totalTokens-e.totalTokens)),G=l(()=>C.value.map(e=>i=>i.tokensByModel[e.model]??0)),J=l(()=>Object.fromEntries(C.value.map(e=>[e.model,{color:e.color,label:e.model}]))),ee=l(()=>C.value.map(e=>`
|
|
2
2
|
<linearGradient id="${ie(e.model)}" x1="0" y1="0" x2="0" y2="1">
|
|
3
3
|
<stop offset="0%" stop-color="${e.color}" stop-opacity="0.45" />
|
|
4
4
|
<stop offset="100%" stop-color="${e.color}" stop-opacity="0.08" />
|