@hbis-uni/components 2.0.0 → 2.0.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.cjs.js CHANGED
@@ -1,2 +1,13 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),B=e.defineComponent({__name:"C1",props:{title:{default:"C1 Component"},primary:{type:Boolean,default:!1}},setup(o){return(c,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["c1-container",{"c1-primary":o.primary}])},[e.renderSlot(c.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(o.title),1)],!0)],2))}}),k=(o,c)=>{const s=o.__vccOpts||o;for(const[u,d]of c)s[u]=d;return s},S=k(B,[["__scopeId","data-v-e2250793"]]),w={class:"c2-container"},N={class:"c2-title"},T={class:"c2-content"},E=e.defineComponent({__name:"C2",props:{title:{default:"C2 Component"},showButton:{type:Boolean,default:!0},buttonText:{default:"Click Me"}},emits:["click"],setup(o,{emit:c}){const s=c,u=d=>{s("click",d)};return(d,m)=>(e.openBlock(),e.createElementBlock("div",w,[e.createElementVNode("h2",N,e.toDisplayString(o.title),1),e.createElementVNode("div",T,[e.renderSlot(d.$slots,"default",{},void 0,!0)]),o.showButton?(e.openBlock(),e.createElementBlock("button",{key:0,class:"c2-button",onClick:u},e.toDisplayString(o.buttonText),1)):e.createCommentVNode("",!0)]))}}),V=k(E,[["__scopeId","data-v-ed1086ed"]]),W={key:0},$={class:"hbis-date-strip__weekdays"},z={class:"hbis-date-strip__dates"},F=["onClick"],L={class:"hbis-date-strip__date-number"},M={class:"hbis-date-strip__date-slot"},I={key:1,class:"hbis-date-strip__scroll-wrapper"},x={class:"hbis-date-strip__scroll-container"},H={class:"hbis-date-strip__weekdays"},O={class:"hbis-date-strip__dates"},P=["onClick"],j={class:"hbis-date-strip__date-number"},A={class:"hbis-date-strip__date-slot"},Y=e.defineComponent({__name:"hbis-dateStrip",props:{modelValue:{default:()=>new Date},startDate:{default:()=>new Date},endDate:{default:()=>{const o=new Date;return o.setDate(o.getDate()+30),o}},highlightType:{default:"bg"},showToday:{type:Boolean,default:!0},disablePast:{type:Boolean,default:!1},disableFuture:{type:Boolean,default:!1},selectedColor:{default:"#ffffff"},normalColor:{default:"#666666"},selectedBgColor:{default:"#1890ff"},normalBgColor:{default:"transparent"},scrollable:{type:Boolean,default:!1},visibleDays:{default:7}},emits:["update:modelValue","dateClick"],setup(o,{emit:c}){const s=o,u=c,d=e.computed(()=>{if(console.log("props:",{startDate:s.startDate,endDate:s.endDate,scrollable:s.scrollable}),s.scrollable)return console.log("显式设置了scrollable为true,允许滚动"),!0;try{const t=new Date(s.startDate);t.setHours(0,0,0,0);const l=new Date(s.endDate);if(l.setHours(0,0,0,0),isNaN(t.getTime())||isNaN(l.getTime()))return console.log("无效的日期对象,使用默认滚动行为"),!1;const a=l.getTime()-t.getTime(),n=Math.ceil(a/(1e3*60*60*24)),i=n+1;return console.log("日期范围天数计算:",{start:t.toLocaleDateString(),end:l.toLocaleDateString(),diffTime:a,diffDays:n,totalDays:i,shouldScroll:i>7}),i>7}catch(t){return console.error("计算日期范围时出错:",t),!1}}),m=[{value:0,label:"日",isWeekend:!0},{value:1,label:"一",isWeekend:!1},{value:2,label:"二",isWeekend:!1},{value:3,label:"三",isWeekend:!1},{value:4,label:"四",isWeekend:!1},{value:5,label:"五",isWeekend:!1},{value:6,label:"六",isWeekend:!0}],b=e.computed(()=>{const t=g.value[0];if(!t)return m;const l=t.weekday,a=[];for(let n=0;n<7;n++){const i=(l+n)%7;a.push(m[i])}return a}),D=()=>{const t=s.startDate||new Date,l=t.getDay(),a=t.getDate()-(l===0?6:l-1),n=new Date(t);return n.setDate(a),n};e.ref(D()),e.onMounted(()=>{console.log("props:",s),console.log("highlightType:",s.highlightType)}),e.watch(()=>s.highlightType,t=>{console.log("highlightType changed:",t)}),e.watch(()=>s.modelValue,t=>{console.log("modelValue changed:",t)});const v=e.computed(()=>{const t=[];try{const l=s.startDate,a=s.endDate;if(isNaN(l.getTime())||isNaN(a.getTime()))return console.log("无效的日期对象,返回空数组"),t;const n=Math.ceil((a.getTime()-l.getTime())/(1e3*60*60*24))+1;for(let i=0;i<n;i++){const r=new Date(l);r.setDate(l.getDate()+i),isNaN(r.getTime())||t.push({date:r,dateString:f(r),day:r.getDate(),month:r.getMonth()+1,year:r.getFullYear(),isWeekend:r.getDay()===0||r.getDay()===6,weekday:r.getDay()})}}catch(l){console.error("生成日期数组时出错:",l)}return t}),g=e.computed(()=>v.value.filter(t=>!!(t&&t.date&&t.dateString&&!isNaN(t.date.getTime())&&typeof t.dateString=="string"&&typeof t.day=="number"))),f=t=>`${t.getFullYear()}-${String(t.getMonth()+1).padStart(2,"0")}-${String(t.getDate()).padStart(2,"0")}`,h=t=>{const l=t.dateString;return s.modelValue?Array.isArray(s.modelValue)?s.modelValue.some(a=>!a||isNaN(a.getTime())?!1:f(a)===l):isNaN(s.modelValue.getTime())?!1:f(s.modelValue)===l:!1},y=t=>{const l=f(new Date);return t.dateString===l},p=t=>{const l=t.date;return s.disablePast&&l<new Date(new Date().setHours(0,0,0,0))||s.disableFuture&&l>new Date(new Date().setHours(23,59,59,999))?!1:l>=s.startDate&&l<=s.endDate},C=t=>{var l;return((l=m.find(a=>a.value===t))==null?void 0:l.label)||""},_=t=>{p(t)&&(u("dateClick",t),u("update:modelValue",t.date))};return(t,l)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["hbis-date-strip",{"hbis-date-strip--highlight-bg":o.highlightType==="bg","hbis-date-strip--highlight-dot":o.highlightType==="dot","hbis-date-strip--highlight-round":o.highlightType==="round","hbis-date-strip--scrollable":d.value}])},[d.value?(e.openBlock(),e.createElementBlock("div",I,[e.createElementVNode("div",x,[e.createElementVNode("div",H,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,a=>(e.openBlock(),e.createElementBlock("div",{key:a.dateString+"-weekday",class:e.normalizeClass(["hbis-date-strip__weekday",{"hbis-date-strip__weekday--weekend":a.isWeekend}])},e.toDisplayString(C(a.weekday)),3))),128))]),e.createElementVNode("div",O,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,a=>(e.openBlock(),e.createElementBlock("div",{key:a.dateString,class:e.normalizeClass(["hbis-date-strip__date",{"hbis-date-strip__date--selected":h(a),"hbis-date-strip__date--today":y(a),"hbis-date-strip__date--disabled":!p(a),"hbis-date-strip__date--weekend":a.isWeekend}]),style:e.normalizeStyle({color:h(a)?o.selectedColor:o.normalColor,backgroundColor:h(a)?o.selectedBgColor:o.normalBgColor}),onClick:n=>_(a)},[e.createElementVNode("div",j,e.toDisplayString(a.day),1),e.createElementVNode("div",A,[e.renderSlot(t.$slots,"default",{date:a},void 0,!0)])],14,P))),128))])])])):(e.openBlock(),e.createElementBlock("div",W,[e.createElementVNode("div",$,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.value,a=>(e.openBlock(),e.createElementBlock("div",{key:a.value,class:e.normalizeClass(["hbis-date-strip__weekday",{"hbis-date-strip__weekday--weekend":a.isWeekend}])},e.toDisplayString(a.label),3))),128))]),e.createElementVNode("div",z,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,a=>(e.openBlock(),e.createElementBlock("div",{key:a.dateString,class:e.normalizeClass(["hbis-date-strip__date",{"hbis-date-strip__date--selected":h(a),"hbis-date-strip__date--today":y(a),"hbis-date-strip__date--disabled":!p(a),"hbis-date-strip__date--weekend":a.isWeekend}]),style:e.normalizeStyle({color:h(a)?o.selectedColor:o.normalColor,backgroundColor:h(a)?o.selectedBgColor:o.normalBgColor}),onClick:n=>_(a)},[e.createElementVNode("div",L,e.toDisplayString(a.day),1),e.createElementVNode("div",M,[e.renderSlot(t.$slots,"default",{date:a},void 0,!0)])],14,F))),128))])]))],2))}}),q=k(Y,[["__scopeId","data-v-f7fe6423"]]);exports.C1=S;exports.C2=V;exports.hbisDateStrip=q;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const vue=require("vue"),_sfc_main$3=vue.defineComponent({__name:"C1",props:{title:{default:"C1 Component"},primary:{type:Boolean,default:!1}},setup(c){return(y,i)=>(vue.openBlock(),vue.createElementBlock("div",{class:vue.normalizeClass(["c1-container",{"c1-primary":c.primary}])},[vue.renderSlot(y.$slots,"default",{},()=>[vue.createTextVNode(vue.toDisplayString(c.title),1)],!0)],2))}}),_export_sfc=(c,y)=>{const i=c.__vccOpts||c;for(const[r,n]of y)i[r]=n;return i},C1=_export_sfc(_sfc_main$3,[["__scopeId","data-v-e2028f64"]]),_hoisted_1$1={class:"c2-container"},_hoisted_2$1={class:"c2-title"},_hoisted_3$1={class:"c2-content"},_sfc_main$2=vue.defineComponent({__name:"C2",props:{title:{default:"C2 Component"},showButton:{type:Boolean,default:!0},buttonText:{default:"Click Me"}},emits:["click"],setup(c,{emit:y}){const i=y,r=n=>{i("click",n)};return(n,m)=>(vue.openBlock(),vue.createElementBlock("div",_hoisted_1$1,[vue.createElementVNode("h2",_hoisted_2$1,vue.toDisplayString(c.title),1),vue.createElementVNode("div",_hoisted_3$1,[vue.renderSlot(n.$slots,"default",{},void 0,!0)]),c.showButton?(vue.openBlock(),vue.createElementBlock("button",{key:0,class:"c2-button",onClick:r},vue.toDisplayString(c.buttonText),1)):vue.createCommentVNode("",!0)]))}}),C2=_export_sfc(_sfc_main$2,[["__scopeId","data-v-b1d573ae"]]),_hoisted_1={key:0},_hoisted_2={class:"hbis-date-strip__weekdays"},_hoisted_3={class:"hbis-date-strip__dates"},_hoisted_4=["onClick"],_hoisted_5={class:"hbis-date-strip__date-number"},_hoisted_6={class:"hbis-date-strip__date-slot"},_hoisted_7={key:1,class:"hbis-date-strip__scroll-wrapper"},_hoisted_8={class:"hbis-date-strip__scroll-container"},_hoisted_9={class:"hbis-date-strip__weekdays"},_hoisted_10={class:"hbis-date-strip__dates"},_hoisted_11=["onClick"],_hoisted_12={class:"hbis-date-strip__date-number"},_hoisted_13={class:"hbis-date-strip__date-slot"},_sfc_main$1=vue.defineComponent({__name:"hbis-dateStrip",props:{modelValue:{default:()=>new Date},startDate:{default:()=>new Date},endDate:{default:()=>{const c=new Date;return c.setDate(c.getDate()+30),c}},highlightType:{default:"bg"},showToday:{type:Boolean,default:!0},disablePast:{type:Boolean,default:!1},disableFuture:{type:Boolean,default:!1},selectedColor:{default:"#ffffff"},normalColor:{default:"#666666"},selectedBgColor:{default:"#1890ff"},normalBgColor:{default:"transparent"},scrollable:{type:Boolean,default:!1},visibleDays:{default:7}},emits:["update:modelValue","dateClick"],setup(c,{emit:y}){const i=c,r=y,n=vue.computed(()=>{if(console.log("props:",{startDate:i.startDate,endDate:i.endDate,scrollable:i.scrollable}),i.scrollable)return console.log("显式设置了scrollable为true,允许滚动"),!0;try{const s=new Date(i.startDate);s.setHours(0,0,0,0);const h=new Date(i.endDate);if(h.setHours(0,0,0,0),isNaN(s.getTime())||isNaN(h.getTime()))return console.log("无效的日期对象,使用默认滚动行为"),!1;const e=h.getTime()-s.getTime(),k=Math.ceil(e/(1e3*60*60*24)),o=k+1;return console.log("日期范围天数计算:",{start:s.toLocaleDateString(),end:h.toLocaleDateString(),diffTime:e,diffDays:k,totalDays:o,shouldScroll:o>7}),o>7}catch(s){return console.error("计算日期范围时出错:",s),!1}}),m=[{value:0,label:"日",isWeekend:!0},{value:1,label:"一",isWeekend:!1},{value:2,label:"二",isWeekend:!1},{value:3,label:"三",isWeekend:!1},{value:4,label:"四",isWeekend:!1},{value:5,label:"五",isWeekend:!1},{value:6,label:"六",isWeekend:!0}],f=vue.computed(()=>{const s=d.value[0];if(!s)return m;const h=s.weekday,e=[];for(let k=0;k<7;k++){const o=(h+k)%7;e.push(m[o])}return e}),v=()=>{const s=i.startDate||new Date,h=s.getDay(),e=s.getDate()-(h===0?6:h-1),k=new Date(s);return k.setDate(e),k};vue.ref(v()),vue.onMounted(()=>{console.log("props:",i),console.log("highlightType:",i.highlightType)}),vue.watch(()=>i.highlightType,s=>{console.log("highlightType changed:",s)}),vue.watch(()=>i.modelValue,s=>{console.log("modelValue changed:",s)});const a=vue.computed(()=>{const s=[];try{const h=i.startDate,e=i.endDate;if(isNaN(h.getTime())||isNaN(e.getTime()))return console.log("无效的日期对象,返回空数组"),s;const k=Math.ceil((e.getTime()-h.getTime())/(1e3*60*60*24))+1;for(let o=0;o<k;o++){const g=new Date(h);g.setDate(h.getDate()+o),isNaN(g.getTime())||s.push({date:g,dateString:l(g),day:g.getDate(),month:g.getMonth()+1,year:g.getFullYear(),isWeekend:g.getDay()===0||g.getDay()===6,weekday:g.getDay()})}}catch(h){console.error("生成日期数组时出错:",h)}return s}),d=vue.computed(()=>a.value.filter(s=>!!(s&&s.date&&s.dateString&&!isNaN(s.date.getTime())&&typeof s.dateString=="string"&&typeof s.day=="number"))),l=s=>`${s.getFullYear()}-${String(s.getMonth()+1).padStart(2,"0")}-${String(s.getDate()).padStart(2,"0")}`,t=s=>{const h=s.dateString;return i.modelValue?Array.isArray(i.modelValue)?i.modelValue.some(e=>!e||isNaN(e.getTime())?!1:l(e)===h):isNaN(i.modelValue.getTime())?!1:l(i.modelValue)===h:!1},u=s=>{const h=l(new Date);return s.dateString===h},p=s=>{const h=s.date;return i.disablePast&&h<new Date(new Date().setHours(0,0,0,0))||i.disableFuture&&h>new Date(new Date().setHours(23,59,59,999))?!1:h>=i.startDate&&h<=i.endDate},x=s=>{var h;return((h=m.find(e=>e.value===s))==null?void 0:h.label)||""},_=s=>{p(s)&&(r("dateClick",s),r("update:modelValue",s.date))};return(s,h)=>(vue.openBlock(),vue.createElementBlock("div",{class:vue.normalizeClass(["hbis-date-strip",{"hbis-date-strip--highlight-bg":c.highlightType==="bg","hbis-date-strip--highlight-dot":c.highlightType==="dot","hbis-date-strip--highlight-round":c.highlightType==="round","hbis-date-strip--scrollable":n.value}])},[n.value?(vue.openBlock(),vue.createElementBlock("div",_hoisted_7,[vue.createElementVNode("div",_hoisted_8,[vue.createElementVNode("div",_hoisted_9,[(vue.openBlock(!0),vue.createElementBlock(vue.Fragment,null,vue.renderList(d.value,e=>(vue.openBlock(),vue.createElementBlock("div",{key:e.dateString+"-weekday",class:vue.normalizeClass(["hbis-date-strip__weekday",{"hbis-date-strip__weekday--weekend":e.isWeekend}])},vue.toDisplayString(x(e.weekday)),3))),128))]),vue.createElementVNode("div",_hoisted_10,[(vue.openBlock(!0),vue.createElementBlock(vue.Fragment,null,vue.renderList(d.value,e=>(vue.openBlock(),vue.createElementBlock("div",{key:e.dateString,class:vue.normalizeClass(["hbis-date-strip__date",{"hbis-date-strip__date--selected":t(e),"hbis-date-strip__date--today":u(e),"hbis-date-strip__date--disabled":!p(e),"hbis-date-strip__date--weekend":e.isWeekend}]),style:vue.normalizeStyle({color:t(e)?c.selectedColor:c.normalColor,backgroundColor:t(e)?c.selectedBgColor:c.normalBgColor}),onClick:k=>_(e)},[vue.createElementVNode("div",_hoisted_12,vue.toDisplayString(e.day),1),vue.createElementVNode("div",_hoisted_13,[vue.renderSlot(s.$slots,"default",{date:e},void 0,!0)])],14,_hoisted_11))),128))])])])):(vue.openBlock(),vue.createElementBlock("div",_hoisted_1,[vue.createElementVNode("div",_hoisted_2,[(vue.openBlock(!0),vue.createElementBlock(vue.Fragment,null,vue.renderList(f.value,e=>(vue.openBlock(),vue.createElementBlock("div",{key:e.value,class:vue.normalizeClass(["hbis-date-strip__weekday",{"hbis-date-strip__weekday--weekend":e.isWeekend}])},vue.toDisplayString(e.label),3))),128))]),vue.createElementVNode("div",_hoisted_3,[(vue.openBlock(!0),vue.createElementBlock(vue.Fragment,null,vue.renderList(d.value,e=>(vue.openBlock(),vue.createElementBlock("div",{key:e.dateString,class:vue.normalizeClass(["hbis-date-strip__date",{"hbis-date-strip__date--selected":t(e),"hbis-date-strip__date--today":u(e),"hbis-date-strip__date--disabled":!p(e),"hbis-date-strip__date--weekend":e.isWeekend}]),style:vue.normalizeStyle({color:t(e)?c.selectedColor:c.normalColor,backgroundColor:t(e)?c.selectedBgColor:c.normalBgColor}),onClick:k=>_(e)},[vue.createElementVNode("div",_hoisted_5,vue.toDisplayString(e.day),1),vue.createElementVNode("div",_hoisted_6,[vue.renderSlot(s.$slots,"default",{date:e},void 0,!0)])],14,_hoisted_4))),128))])]))],2))}}),hbisDateStrip=_export_sfc(_sfc_main$1,[["__scopeId","data-v-2e8258eb"]]);var svga_lite_min={exports:{}};/*!
2
+ * svga.lite
3
+ *
4
+ * Version: 1.6.1
5
+ * Document: https://github.com/svga/SVGAPlayer-Web-Lite
6
+ * (c) 2019 YY.SVGA
7
+ * Released under the MIT License.
8
+ */(function(module,exports$1){(function(c,y){module.exports=y()})(window,function(){return function(c){var y={};function i(r){if(y[r])return y[r].exports;var n=y[r]={i:r,l:!1,exports:{}};return c[r].call(n.exports,n,n.exports,i),n.l=!0,n.exports}return i.m=c,i.c=y,i.d=function(r,n,m){i.o(r,n)||Object.defineProperty(r,n,{enumerable:!0,get:m})},i.r=function(r){typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(r,"__esModule",{value:!0})},i.t=function(r,n){if(1&n&&(r=i(r)),8&n||4&n&&typeof r=="object"&&r&&r.__esModule)return r;var m=Object.create(null);if(i.r(m),Object.defineProperty(m,"default",{enumerable:!0,value:r}),2&n&&typeof r!="string")for(var f in r)i.d(m,f,(function(v){return r[v]}).bind(null,f));return m},i.n=function(r){var n=r&&r.__esModule?function(){return r.default}:function(){return r};return i.d(n,"a",n),n},i.o=function(r,n){return Object.prototype.hasOwnProperty.call(r,n)},i.p="",i(i.s=1)}([function(c,y,i){Object.defineProperty(y,"__esModule",{value:!0});var r=function(n,m,f){this._d=n,this._transform=m,this._styles=f};y.default=r},function(c,y,i){Object.defineProperty(y,"__esModule",{value:!0});var r=i(2),n=i(3),m=i(4),f={Downloader:r.default,Parser:n.default,Player:m.default};y.default=f},function(c,y,i){Object.defineProperty(y,"__esModule",{value:!0});var r=function(){function n(){this.request=null}return n.prototype.get=function(m){var f=this;if(!m)throw new Error("download link undefined");return new Promise(function(v,a){var d=new XMLHttpRequest;d.open("GET",m,!0),d.responseType="arraybuffer",d.onloadend=function(){!d.response||d.status!==200&&d.status!==304?a(d):v(d.response)},d.onerror=function(){return a(d.response)},d.send(),f.request=d})},n.prototype.cancel=function(){this.request&&this.request.abort()},n.prototype.destroy=function(){this.request&&this.request.abort()},n}();y.default=r},function(module,exports$1,__webpack_require__){Object.defineProperty(exports$1,"__esModule",{value:!0});var WORKER=`!function(t){var e={};function r(i){if(e[i])return e[i].exports;var s=e[i]={i:i,l:!1,exports:{}};return t[i].call(s.exports,s,s.exports,r),s.l=!0,s.exports}r.m=t,r.c=e,r.d=function(t,e,i){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(r.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var s in t)r.d(i,s,function(e){return t[e]}.bind(null,s));return i},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=8)}([function(t,e,r){"use strict";var i=t.exports=r(6);i.codegen=r(16),i.toArray=function(t){if(t){for(var e=Object.keys(t),r=new Array(e.length),i=0;i<e.length;)r[i]=t[e[i++]];return r}return[]};var s=/\\\\/g,n=/"/g;i.isReserved=function(t){return/^(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$/.test(t)},i.safeProp=function(t){return!/^[$\\w_]+$/.test(t)||i.isReserved(t)?'["'+t.replace(s,"\\\\\\\\").replace(n,'\\\\"')+'"]':"."+t}},function(t,e,r){"use strict";t.exports=h;var i=r(2);((h.prototype=Object.create(i.prototype)).constructor=h).className="Field";var s,n=r(3),o=r(5),a=r(0),f=/^required|optional|repeated$/;function h(t,e,r,s,n,h,l){if(a.isObject(s)?(l=n,h=s,s=n=void 0):a.isObject(n)&&(l=h,h=n,n=void 0),i.call(this,t,h),!a.isInteger(e)||e<0)throw TypeError("id must be a non-negative integer");if(!a.isString(r))throw TypeError("type must be a string");if(void 0!==s&&!f.test(s=s.toString().toLowerCase()))throw TypeError("rule must be a string rule");if(void 0!==n&&!a.isString(n))throw TypeError("extend must be a string");this.rule=s&&"optional"!==s?s:void 0,this.type=r,this.id=e,this.extend=n||void 0,this.required="required"===s,this.optional=!this.required,this.repeated="repeated"===s,this.map=!1,this.message=null,this.partOf=null,this.typeDefault=null,this.defaultValue=null,this.long=!!a.Long&&void 0!==o.long[r],this.bytes="bytes"===r,this.resolvedType=null,this.extensionField=null,this.declaringField=null,this._packed=null,this.comment=l}h.fromJSON=function(t,e){return new h(t,e.id,e.type,e.rule,e.extend,e.options,e.comment)},h.prototype.setOption=function(t,e,r){return"packed"===t&&(this._packed=null),i.prototype.setOption.call(this,t,e,r)},h.prototype.resolve=function(){if(this.resolved)return this;if(void 0===(this.typeDefault=o.defaults[this.type])&&(this.resolvedType=(this.declaringField?this.declaringField.parent:this.parent).lookupTypeOrEnum(this.type),this.resolvedType instanceof s?this.typeDefault=null:this.typeDefault=this.resolvedType.values[Object.keys(this.resolvedType.values)[0]]),this.options&&null!=this.options.default&&(this.typeDefault=this.options.default,this.resolvedType instanceof n&&"string"==typeof this.typeDefault&&(this.typeDefault=this.resolvedType.values[this.typeDefault])),this.options&&(!0!==this.options.packed&&(void 0===this.options.packed||!this.resolvedType||this.resolvedType instanceof n)||delete this.options.packed,Object.keys(this.options).length||(this.options=void 0)),this.long)this.typeDefault=a.Long.fromNumber(this.typeDefault,"u"===this.type.charAt(0)),Object.freeze&&Object.freeze(this.typeDefault);else if(this.bytes&&"string"==typeof this.typeDefault){var t;a.base64.test(this.typeDefault)?a.base64.decode(this.typeDefault,t=a.newBuffer(a.base64.length(this.typeDefault)),0):a.utf8.write(this.typeDefault,t=a.newBuffer(a.utf8.length(this.typeDefault)),0),this.typeDefault=t}return this.map?this.defaultValue=a.emptyObject:this.repeated?this.defaultValue=a.emptyArray:this.defaultValue=this.typeDefault,this.parent instanceof s&&(this.parent.ctor.prototype[this.name]=this.defaultValue),i.prototype.resolve.call(this)},h._configure=function(t){s=t}},function(t,e,r){"use strict";var i;function s(t,e){this.options=e,this.name=t,this.parent=null,this.resolved=!1,this.comment=null,this.filename=null}t.exports=s,s.className="ReflectionObject",s.prototype.onAdd=function(t){this.parent&&this.parent!==t&&this.parent.remove(this),this.parent=t,this.resolved=!1;var e=t.root;e instanceof i&&e._handleAdd(this)},s.prototype.resolve=function(){return this.resolved?this:(this.root instanceof i&&(this.resolved=!0),this)},s.prototype.getOption=function(t){if(this.options)return this.options[t]},s._configure=function(t){i=t}},function(t,e,r){"use strict";t.exports=s;var i=r(2);function s(t,e,r,s,n){if(i.call(this,t,r),e&&"object"!=typeof e)throw TypeError("values must be an object");if(this.valuesById={},this.values=Object.create(this.valuesById),this.comment=s,this.comments=n||{},this.reserved=void 0,e)for(var o=Object.keys(e),a=0;a<o.length;++a)"number"==typeof e[o[a]]&&(this.valuesById[this.values[o[a]]=e[o[a]]]=o[a])}((s.prototype=Object.create(i.prototype)).constructor=s).className="Enum",s.fromJSON=function(t,e){var r=new s(t,e.values,e.options,e.comment,e.comments);return r.reserved=e.reserved,r}},function(t,e,r){"use strict";t.exports=h;var i=r(2);((h.prototype=Object.create(i.prototype)).constructor=h).className="Namespace";var s,n,o,a=r(1),f=r(0);function h(t,e){i.call(this,t,e),this.nested=void 0,this._nestedArray=null}h.fromJSON=function(t,e){return new h(t,e.options).addJSON(e.nested)},h.isReservedId=function(t,e){if(t)for(var r=0;r<t.length;++r)if("string"!=typeof t[r]&&t[r][0]<=e&&t[r][1]>=e)return!0;return!1},h.isReservedName=function(t,e){if(t)for(var r=0;r<t.length;++r)if(t[r]===e)return!0;return!1},Object.defineProperty(h.prototype,"nestedArray",{get:function(){return this._nestedArray||(this._nestedArray=f.toArray(this.nested))}}),h.prototype.addJSON=function(t){if(t)for(var e,r=Object.keys(t),i=0;i<r.length;++i)e=t[r[i]],this.add((void 0!==e.fields?s.fromJSON:void 0!==e.values?o.fromJSON:void 0!==e.methods?n.fromJSON:void 0!==e.id?a.fromJSON:h.fromJSON)(r[i],e));return this},h.prototype.get=function(t){return this.nested&&this.nested[t]||null},h.prototype.add=function(t){if(!(t instanceof a&&void 0!==t.extend||t instanceof s||t instanceof o||t instanceof n||t instanceof h))throw TypeError("object must be a valid nested object");if(this.nested){var e=this.get(t.name);if(e){if(!(e instanceof h&&t instanceof h)||e instanceof s||e instanceof n)throw Error("duplicate name '"+t.name+"' in "+this);for(var r=e.nestedArray,i=0;i<r.length;++i)t.add(r[i]);this.remove(e),this.nested||(this.nested={}),t.setOptions(e.options,!0)}}else this.nested={};return this.nested[t.name]=t,t.onAdd(this),(f=this)._nestedArray=null,f;var f},h.prototype.lookup=function(t,e,r){if("boolean"==typeof e?(r=e,e=void 0):e&&!Array.isArray(e)&&(e=[e]),f.isString(t)&&t.length){if("."===t)return this.root;t=t.split(".")}else if(!t.length)return this;if(""===t[0])return this.root.lookup(t.slice(1),e);var i=this.get(t[0]);if(i){if(1===t.length){if(!e||e.indexOf(i.constructor)>-1)return i}else if(i instanceof h&&(i=i.lookup(t.slice(1),e,!0)))return i}else for(var s=0;s<this.nestedArray.length;++s)if(this._nestedArray[s]instanceof h&&(i=this._nestedArray[s].lookup(t,e,!0)))return i;return null===this.parent||r?null:this.parent.lookup(t,e)},h.prototype.lookupType=function(t){var e=this.lookup(t,[s]);if(!e)throw Error("no such type: "+t);return e},h.prototype.lookupTypeOrEnum=function(t){var e=this.lookup(t,[s,o]);if(!e)throw Error("no such Type or Enum '"+t+"' in "+this);return e},h._configure=function(t,e,r){s=t,n=e,o=r}},function(t,e,r){"use strict";var i=e,s=r(0),n=["double","float","int32","uint32","sint32","fixed32","sfixed32","int64","uint64","sint64","fixed64","sfixed64","bool","string","bytes"];function o(t,e){var r=0,i={};for(e|=0;r<t.length;)i[n[r+e]]=t[r++];return i}i.basic=o([1,5,0,0,0,5,5,0,0,0,1,1,0,2,2]),i.defaults=o([0,0,0,0,0,0,0,0,0,0,0,0,!1,"",s.emptyArray,null]),i.long=o([0,0,0,1,1],7),i.mapKey=o([0,0,0,5,5,0,0,0,1,1,0,2],2),i.packed=o([1,5,0,0,0,5,5,0,0,0,1,1,0])},function(t,e,r){"use strict";var i=e;i.float=r(14),i.utf8=r(15),i.emptyArray=Object.freeze?Object.freeze([]):[],i.emptyObject=Object.freeze?Object.freeze({}):{},i.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},i.isString=function(t){return"string"==typeof t||t instanceof String},i.isObject=function(t){return t&&"object"==typeof t},i.Array="undefined"!=typeof Uint8Array?Uint8Array:Array,i._configure=function(){var t=i.Buffer;t?(i._Buffer_from=t.from!==Uint8Array.from&&t.from||function(e,r){return new t(e,r)},i._Buffer_allocUnsafe=t.allocUnsafe||function(e){return new t(e)}):i._Buffer_from=i._Buffer_allocUnsafe=null}},function(t,e,r){"use strict";t.exports=s;var i=r(4);function s(t,e){i.call(this,t,e),this.methods={},this._methodsArray=null}((s.prototype=Object.create(i.prototype)).constructor=s).className="Service"},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),r(9);var i,s=r(10),n=r(23),o=r(24),a=r(25),f=r(26);self.document?((i=self.SVGAParserMockWorker={}).disableWorker=!0,i.postMessage=function(t){i.onmessageCallback&&i.onmessageCallback(t)}):i=self;var h=s.Root.fromJSON(n.default).lookupType("com.opensource.svga.MovieEntity");i.onmessage=function(t){var e=new o.Zlib.Inflate(new Uint8Array(t.data)).decompress(),r=h.decode(e),s={};for(var n in r.images){var l=r.images[n],u=a.default(l);s[n]=btoa(u)}var p=new f.default(r,s);i.postMessage(p)}},function(t,e,r){"use strict";var i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";!self.btoa&&(self.btoa=function(t){for(var e,r,s,n,o="",a=0,f=(t=String(t)).length%3;a<t.length;){if((r=t.charCodeAt(a++))>255||(s=t.charCodeAt(a++))>255||(n=t.charCodeAt(a++))>255)throw new TypeError("Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range.");o+=i.charAt((e=r<<16|s<<8|n)>>18&63)+i.charAt(e>>12&63)+i.charAt(e>>6&63)+i.charAt(63&e)}return f?o.slice(0,f-3)+"===".substring(f):o})},function(t,e,r){"use strict";t.exports=r(11)},function(t,e,r){"use strict";(t.exports=r(12)).build="full"},function(t,e,r){"use strict";var i=t.exports=r(13);i.build="light",i.ReflectionObject=r(2),i.Namespace=r(4),i.Root=r(17),i.Enum=r(3),i.Type=r(19),i.Field=r(1),i.Service=r(7),i.ReflectionObject._configure(i.Root),i.Namespace._configure(i.Type,i.Service,i.Enum),i.Root._configure(i.Type),i.Field._configure(i.Type)},function(t,e,r){"use strict";e.build="minimal"},function(t,e,r){"use strict";function i(t){return"undefined"!=typeof Float32Array?function(){var e=new Float32Array([-0]),r=new Uint8Array(e.buffer),i=128===r[3];function s(t,i,s){e[0]=t,i[s]=r[0],i[s+1]=r[1],i[s+2]=r[2],i[s+3]=r[3]}function n(t,i,s){e[0]=t,i[s]=r[3],i[s+1]=r[2],i[s+2]=r[1],i[s+3]=r[0]}function o(t,i){return r[0]=t[i],r[1]=t[i+1],r[2]=t[i+2],r[3]=t[i+3],e[0]}function a(t,i){return r[3]=t[i],r[2]=t[i+1],r[1]=t[i+2],r[0]=t[i+3],e[0]}t.writeFloatLE=i?s:n,t.writeFloatBE=i?n:s,t.readFloatLE=i?o:a,t.readFloatBE=i?a:o}():function(){function e(t,e,r,i){var s=e<0?1:0;if(s&&(e=-e),0===e)t(1/e>0?0:2147483648,r,i);else if(isNaN(e))t(2143289344,r,i);else if(e>34028234663852886e22)t((s<<31|2139095040)>>>0,r,i);else if(e<11754943508222875e-54)t((s<<31|Math.round(e/1401298464324817e-60))>>>0,r,i);else{var n=Math.floor(Math.log(e)/Math.LN2);t((s<<31|n+127<<23|8388607&Math.round(e*Math.pow(2,-n)*8388608))>>>0,r,i)}}function r(t,e,r){var i=t(e,r),s=2*(i>>31)+1,n=i>>>23&255,o=8388607&i;return 255===n?o?NaN:s*(1/0):0===n?1401298464324817e-60*s*o:s*Math.pow(2,n-150)*(o+8388608)}t.writeFloatLE=e.bind(null,s),t.writeFloatBE=e.bind(null,n),t.readFloatLE=r.bind(null,o),t.readFloatBE=r.bind(null,a)}(),"undefined"!=typeof Float64Array?function(){var e=new Float64Array([-0]),r=new Uint8Array(e.buffer),i=128===r[7];function s(t,i,s){e[0]=t,i[s]=r[0],i[s+1]=r[1],i[s+2]=r[2],i[s+3]=r[3],i[s+4]=r[4],i[s+5]=r[5],i[s+6]=r[6],i[s+7]=r[7]}function n(t,i,s){e[0]=t,i[s]=r[7],i[s+1]=r[6],i[s+2]=r[5],i[s+3]=r[4],i[s+4]=r[3],i[s+5]=r[2],i[s+6]=r[1],i[s+7]=r[0]}function o(t,i){return r[0]=t[i],r[1]=t[i+1],r[2]=t[i+2],r[3]=t[i+3],r[4]=t[i+4],r[5]=t[i+5],r[6]=t[i+6],r[7]=t[i+7],e[0]}function a(t,i){return r[7]=t[i],r[6]=t[i+1],r[5]=t[i+2],r[4]=t[i+3],r[3]=t[i+4],r[2]=t[i+5],r[1]=t[i+6],r[0]=t[i+7],e[0]}t.writeDoubleLE=i?s:n,t.writeDoubleBE=i?n:s,t.readDoubleLE=i?o:a,t.readDoubleBE=i?a:o}():function(){function e(t,e,r,i,s,n){var o=i<0?1:0;if(o&&(i=-i),0===i)t(0,s,n+e),t(1/i>0?0:2147483648,s,n+r);else if(isNaN(i))t(0,s,n+e),t(2146959360,s,n+r);else if(i>17976931348623157e292)t(0,s,n+e),t((o<<31|2146435072)>>>0,s,n+r);else{var a;if(i<22250738585072014e-324)t((a=i/5e-324)>>>0,s,n+e),t((o<<31|a/4294967296)>>>0,s,n+r);else{var f=Math.floor(Math.log(i)/Math.LN2);1024===f&&(f=1023),t(4503599627370496*(a=i*Math.pow(2,-f))>>>0,s,n+e),t((o<<31|f+1023<<20|1048576*a&1048575)>>>0,s,n+r)}}}function r(t,e,r,i,s){var n=t(i,s+e),o=t(i,s+r),a=2*(o>>31)+1,f=o>>>20&2047,h=4294967296*(1048575&o)+n;return 2047===f?h?NaN:a*(1/0):0===f?5e-324*a*h:a*Math.pow(2,f-1075)*(h+4503599627370496)}t.writeDoubleLE=e.bind(null,s,0,4),t.writeDoubleBE=e.bind(null,n,4,0),t.readDoubleLE=r.bind(null,o,0,4),t.readDoubleBE=r.bind(null,a,4,0)}(),t}function s(t,e,r){e[r]=255&t,e[r+1]=t>>>8&255,e[r+2]=t>>>16&255,e[r+3]=t>>>24}function n(t,e,r){e[r]=t>>>24,e[r+1]=t>>>16&255,e[r+2]=t>>>8&255,e[r+3]=255&t}function o(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24)>>>0}function a(t,e){return(t[e]<<24|t[e+1]<<16|t[e+2]<<8|t[e+3])>>>0}t.exports=i(i)},function(t,e,r){"use strict";var i=e;i.length=function(t){for(var e=0,r=0,i=0;i<t.length;++i)(r=t.charCodeAt(i))<128?e+=1:r<2048?e+=2:55296==(64512&r)&&56320==(64512&t.charCodeAt(i+1))?(++i,e+=4):e+=3;return e},i.read=function(t,e,r){if(r-e<1)return"";for(var i,s=null,n=[],o=0;e<r;)(i=t[e++])<128?n[o++]=i:i>191&&i<224?n[o++]=(31&i)<<6|63&t[e++]:i>239&&i<365?(i=((7&i)<<18|(63&t[e++])<<12|(63&t[e++])<<6|63&t[e++])-65536,n[o++]=55296+(i>>10),n[o++]=56320+(1023&i)):n[o++]=(15&i)<<12|(63&t[e++])<<6|63&t[e++],o>8191&&((s||(s=[])).push(String.fromCharCode.apply(String,n)),o=0);return s?(o&&s.push(String.fromCharCode.apply(String,n.slice(0,o))),s.join("")):String.fromCharCode.apply(String,n.slice(0,o))},i.write=function(t,e,r){for(var i,s,n=r,o=0;o<t.length;++o)(i=t.charCodeAt(o))<128?e[r++]=i:i<2048?(e[r++]=i>>6|192,e[r++]=63&i|128):55296==(64512&i)&&56320==(64512&(s=t.charCodeAt(o+1)))?(i=65536+((1023&i)<<10)+(1023&s),++o,e[r++]=i>>18|240,e[r++]=i>>12&63|128,e[r++]=i>>6&63|128,e[r++]=63&i|128):(e[r++]=i>>12|224,e[r++]=i>>6&63|128,e[r++]=63&i|128);return r-n}},function(t,e,r){"use strict";function i(t,e){"string"==typeof t&&(e=t,t=void 0);var r=[];function s(t){if("string"!=typeof t){var e=n();if(i.verbose&&console.log("codegen: "+e),e="return "+e,t){for(var o=Object.keys(t),a=new Array(o.length+1),f=new Array(o.length),h=0;h<o.length;)a[h]=o[h],f[h]=t[o[h++]];return a[h]=e,Function.apply(null,a).apply(null,f)}return Function(e)()}for(var l=new Array(arguments.length-1),u=0;u<l.length;)l[u]=arguments[++u];if(u=0,t=t.replace(/%([%dfijs])/g,function(t,e){var r=l[u++];switch(e){case"d":case"f":return String(Number(r));case"i":return String(Math.floor(r));case"j":return JSON.stringify(r);case"s":return String(r)}return"%"}),u!==l.length)throw Error("parameter count mismatch");return r.push(t),s}function n(i){return"function "+(i||e||"")+"("+(t&&t.join(",")||"")+"){\\n "+r.join("\\n ")+"\\n}"}return s.toString=n,s}t.exports=i,i.verbose=!1},function(t,e,r){"use strict";t.exports=f;var i=r(4);((f.prototype=Object.create(i.prototype)).constructor=f).className="Root";var s,n=r(1),o=r(3),a=r(18);function f(t){i.call(this,"",t),this.deferred=[],this.files=[]}f.fromJSON=function(t,e){return e||(e=new f),t.options&&e.setOptions(t.options),e.addJSON(t.nested)};var h=/^[A-Z]/;function l(t,e){var r=e.parent.lookup(e.extend);if(r){var i=new n(e.fullName,e.id,e.type,e.rule,void 0,e.options);return i.declaringField=e,e.extensionField=i,r.add(i),!0}return!1}f.prototype._handleAdd=function(t){if(t instanceof n)void 0===t.extend||t.extensionField||l(0,t)||this.deferred.push(t);else if(t instanceof o)h.test(t.name)&&(t.parent[t.name]=t.values);else if(!(t instanceof a)){if(t instanceof s)for(var e=0;e<this.deferred.length;)l(0,this.deferred[e])?this.deferred.splice(e,1):++e;for(var r=0;r<t.nestedArray.length;++r)this._handleAdd(t._nestedArray[r]);h.test(t.name)&&(t.parent[t.name]=t)}},f._configure=function(t,e,r){s=t,e,r}},function(t,e,r){"use strict";t.exports=o;var i=r(2);((o.prototype=Object.create(i.prototype)).constructor=o).className="OneOf";var s=r(1),n=r(0);function o(t,e,r,s){if(Array.isArray(e)||(r=e,e=void 0),i.call(this,t,r),void 0!==e&&!Array.isArray(e))throw TypeError("fieldNames must be an Array");this.oneof=e||[],this.fieldsArray=[],this.comment=s}function a(t){if(t.parent)for(var e=0;e<t.fieldsArray.length;++e)t.fieldsArray[e].parent||t.parent.add(t.fieldsArray[e])}o.fromJSON=function(t,e){return new o(t,e.oneof,e.options,e.comment)},o.prototype.toJSON=function(t){var e=!!t&&Boolean(t.keepComments);return n.toObject(["options",this.options,"oneof",this.oneof,"comment",e?this.comment:void 0])},o.prototype.add=function(t){if(!(t instanceof s))throw TypeError("field must be a Field");return t.parent&&t.parent!==this.parent&&t.parent.remove(t),this.oneof.push(t.name),this.fieldsArray.push(t),t.partOf=this,a(this),this},o.prototype.remove=function(t){if(!(t instanceof s))throw TypeError("field must be a Field");var e=this.fieldsArray.indexOf(t);if(e<0)throw Error(t+" is not a member of "+this);return this.fieldsArray.splice(e,1),(e=this.oneof.indexOf(t.name))>-1&&this.oneof.splice(e,1),t.partOf=null,this},o.prototype.onAdd=function(t){i.prototype.onAdd.call(this,t);for(var e=0;e<this.oneof.length;++e){var r=t.get(this.oneof[e]);r&&!r.partOf&&(r.partOf=this,this.fieldsArray.push(r))}a(this)},o.prototype.onRemove=function(t){for(var e,r=0;r<this.fieldsArray.length;++r)(e=this.fieldsArray[r]).parent&&e.parent.remove(e);i.prototype.onRemove.call(this,t)},o.d=function(){for(var t=new Array(arguments.length),e=0;e<arguments.length;)t[e]=arguments[e++];return function(e,r){n.decorateType(e.constructor).add(new o(r,t)),Object.defineProperty(e,r,{get:n.oneOfGetter(t),set:n.oneOfSetter(t)})}}},function(t,e,r){"use strict";t.exports=u;var i=r(4);((u.prototype=Object.create(i.prototype)).constructor=u).className="Type";var s=r(3),n=r(1),o=r(20),a=r(7),f=r(21),h=r(0),l=r(22);function u(t,e){i.call(this,t,e),this.fields={},this.oneofs=void 0,this.extensions=void 0,this.reserved=void 0,this.group=void 0,this._fieldsById=null,this._fieldsArray=null,this._oneofsArray=null,this._ctor=null}Object.defineProperties(u.prototype,{fieldsById:{get:function(){if(this._fieldsById)return this._fieldsById;this._fieldsById={};for(var t=Object.keys(this.fields),e=0;e<t.length;++e){var r=this.fields[t[e]],i=r.id;if(this._fieldsById[i])throw Error("duplicate id "+i+" in "+this);this._fieldsById[i]=r}return this._fieldsById}},fieldsArray:{get:function(){return this._fieldsArray||(this._fieldsArray=h.toArray(this.fields))}},oneofsArray:{get:function(){return this._oneofsArray||(this._oneofsArray=h.toArray(this.oneofs))}},ctor:{get:function(){return this._ctor||(this.ctor=u.generateConstructor(this)())},set:function(t){t.prototype;t.$type=t.prototype.$type=this,this._ctor=t;for(var e=0;e<this.fieldsArray.length;++e)this._fieldsArray[e].resolve();var r={};for(e=0;e<this.oneofsArray.length;++e)r[this._oneofsArray[e].resolve().name]={get:h.oneOfGetter(this._oneofsArray[e].oneof),set:h.oneOfSetter(this._oneofsArray[e].oneof)};e&&Object.defineProperties(t.prototype,r)}}}),u.generateConstructor=function(t){for(var e,r=h.codegen(["p"],t.name),i=0;i<t.fieldsArray.length;++i)(e=t._fieldsArray[i]).map?r("this%s={}",h.safeProp(e.name)):e.repeated&&r("this%s=[]",h.safeProp(e.name));return r("if(p)for(var ks=Object.keys(p),i=0;i<ks.length;++i)if(p[ks[i]]!=null)")("this[ks[i]]=p[ks[i]]")},u.fromJSON=function(t,e){var r=new u(t,e.options);r.extensions=e.extensions,r.reserved=e.reserved;for(var f=Object.keys(e.fields),h=0;h<f.length;++h)r.add((void 0!==e.fields[f[h]].keyType?o.fromJSON:n.fromJSON)(f[h],e.fields[f[h]]));if(e.nested)for(f=Object.keys(e.nested),h=0;h<f.length;++h){var l=e.nested[f[h]];r.add((void 0!==l.id?n.fromJSON:void 0!==l.fields?u.fromJSON:void 0!==l.values?s.fromJSON:void 0!==l.methods?a.fromJSON:i.fromJSON)(f[h],l))}return e.extensions&&e.extensions.length&&(r.extensions=e.extensions),e.reserved&&e.reserved.length&&(r.reserved=e.reserved),e.group&&(r.group=!0),e.comment&&(r.comment=e.comment),r},u.prototype.add=function(t){if(this.get(t.name))throw Error("duplicate name '"+t.name+"' in "+this);if(t instanceof n&&void 0===t.extend){if(this._fieldsById?this._fieldsById[t.id]:this.fieldsById[t.id])throw Error("duplicate id "+t.id+" in "+this);if(this.isReservedId(t.id))throw Error("id "+t.id+" is reserved in "+this);if(this.isReservedName(t.name))throw Error("name '"+t.name+"' is reserved in "+this);return t.parent&&t.parent.remove(t),this.fields[t.name]=t,t.message=this,t.onAdd(this),(e=this)._fieldsById=e._fieldsArray=e._oneofsArray=null,delete e.encode,delete e.decode,delete e.verify,e}var e;return i.prototype.add.call(this,t)},u.prototype.isReservedId=function(t){return i.isReservedId(this.reserved,t)},u.prototype.isReservedName=function(t){return i.isReservedName(this.reserved,t)},u.prototype.setup=function(){this.fullName;for(var t=[],e=0;e<this.fieldsArray.length;++e)t.push(this._fieldsArray[e].resolve().resolvedType);return this.decode=l(this)({Reader:f,types:t,util:h}),this},u.prototype.decode=function(t,e){return this.setup().decode(t,e)}},function(t,e,r){"use strict";t.exports=n;var i=r(1);((n.prototype=Object.create(i.prototype)).constructor=n).className="MapField";r(5);var s=r(0);function n(t,e,r,n,o,a){if(i.call(this,t,e,n,void 0,void 0,o,a),!s.isString(r))throw TypeError("keyType must be a string");this.keyType=r,this.resolvedKeyType=null,this.map=!0}n.fromJSON=function(t,e){return new n(t,e.id,e.keyType,e.type,e.options,e.comment)}},function(t,e,r){"use strict";t.exports=o;var i=r(6),s=(i.LongBits,i.utf8);function n(t,e){return RangeError("index out of range: "+t.pos+" + "+(e||1)+" > "+t.len)}function o(t){this.buf=t,this.pos=0,this.len=t.length}var a,f="undefined"!=typeof Uint8Array?function(t){if(t instanceof Uint8Array||Array.isArray(t))return new o(t);throw Error("illegal buffer")}:function(t){if(Array.isArray(t))return new o(t);throw Error("illegal buffer")};function h(t,e){return(t[e-4]|t[e-3]<<8|t[e-2]<<16|t[e-1]<<24)>>>0}o.create=i.Buffer?function(t){return(o.create=function(t){return i.Buffer.isBuffer(t)?new(void 0)(t):f(t)})(t)}:f,o.prototype._slice=i.Array.prototype.subarray||i.Array.prototype.slice,o.prototype.uint32=(a=4294967295,function(){if(a=(127&this.buf[this.pos])>>>0,this.buf[this.pos++]<128)return a;if(a=(a|(127&this.buf[this.pos])<<7)>>>0,this.buf[this.pos++]<128)return a;if(a=(a|(127&this.buf[this.pos])<<14)>>>0,this.buf[this.pos++]<128)return a;if(a=(a|(127&this.buf[this.pos])<<21)>>>0,this.buf[this.pos++]<128)return a;if(a=(a|(15&this.buf[this.pos])<<28)>>>0,this.buf[this.pos++]<128)return a;if((this.pos+=5)>this.len)throw this.pos=this.len,n(this,10);return a}),o.prototype.int32=function(){return 0|this.uint32()},o.prototype.sint32=function(){var t=this.uint32();return t>>>1^-(1&t)|0},o.prototype.bool=function(){return 0!==this.uint32()},o.prototype.fixed32=function(){if(this.pos+4>this.len)throw n(this,4);return h(this.buf,this.pos+=4)},o.prototype.sfixed32=function(){if(this.pos+4>this.len)throw n(this,4);return 0|h(this.buf,this.pos+=4)},o.prototype.float=function(){if(this.pos+4>this.len)throw n(this,4);var t=i.float.readFloatLE(this.buf,this.pos);return this.pos+=4,t},o.prototype.double=function(){if(this.pos+8>this.len)throw n(this,4);var t=i.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,t},o.prototype.bytes=function(){var t=this.uint32(),e=this.pos,r=this.pos+t;if(r>this.len)throw n(this,t);return this.pos+=t,Array.isArray(this.buf)?this.buf.slice(e,r):e===r?new this.buf.constructor(0):this._slice.call(this.buf,e,r)},o.prototype.string=function(){var t=this.bytes();return s.read(t,0,t.length)},o.prototype.skip=function(t){if("number"==typeof t){if(this.pos+t>this.len)throw n(this,t);this.pos+=t}else do{if(this.pos>=this.len)throw n(this)}while(128&this.buf[this.pos++]);return this},o.prototype.skipType=function(t){switch(t){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;4!=(t=7&this.uint32());)this.skipType(t);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+t+" at offset "+this.pos)}return this}},function(t,e,r){"use strict";t.exports=function(t){var e=n.codegen(["r","l"],t.name+"$decode")("if(!(r instanceof Reader))")("r=Reader.create(r)")("var c=l===undefined?r.len:r.pos+l,m=new this.ctor"+(t.fieldsArray.filter(function(t){return t.map}).length?",k":""))("while(r.pos<c){")("var t=r.uint32()");t.group&&e("if((t&7)===4)")("break");e("switch(t>>>3){");for(var r=0;r<t.fieldsArray.length;++r){var a=t._fieldsArray[r].resolve(),f=a.resolvedType instanceof i?"int32":a.type,h="m"+n.safeProp(a.name);e("case %i:",a.id),a.map?(e("r.skip().pos++")("if(%s===util.emptyObject)",h)("%s={}",h)("k=r.%s()",a.keyType)("r.pos++"),void 0!==s.long[a.keyType]?void 0===s.basic[f]?e('%s[typeof k==="object"?util.longToHash(k):k]=types[%i].decode(r,r.uint32())',h,r):e('%s[typeof k==="object"?util.longToHash(k):k]=r.%s()',h,f):void 0===s.basic[f]?e("%s[k]=types[%i].decode(r,r.uint32())",h,r):e("%s[k]=r.%s()",h,f)):a.repeated?(e("if(!(%s&&%s.length))",h,h)("%s=[]",h),void 0!==s.packed[f]&&e("if((t&7)===2){")("var c2=r.uint32()+r.pos")("while(r.pos<c2)")("%s.push(r.%s())",h,f)("}else"),void 0===s.basic[f]?e(a.resolvedType.group?"%s.push(types[%i].decode(r))":"%s.push(types[%i].decode(r,r.uint32()))",h,r):e("%s.push(r.%s())",h,f)):void 0===s.basic[f]?e(a.resolvedType.group?"%s=types[%i].decode(r)":"%s=types[%i].decode(r,r.uint32())",h,r):e("%s=r.%s()",h,f),e("break")}for(e("default:")("r.skipType(t&7)")("break")("}")("}"),r=0;r<t._fieldsArray.length;++r){var l=t._fieldsArray[r];l.required&&e("if(!m.hasOwnProperty(%j))",l.name)("throw util.ProtocolError(%j,{instance:m})",o(l))}return e("return m")};var i=r(3),s=r(5),n=r(0);function o(t){return"missing required '"+t.name+"'"}},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={nested:{com:{nested:{opensource:{nested:{svga:{options:{objc_class_prefix:"SVGAProto",java_package:"com.opensource.svgaplayer"},nested:{MovieParams:{fields:{viewBoxWidth:{type:"float",id:1},viewBoxHeight:{type:"float",id:2},fps:{type:"int32",id:3},frames:{type:"int32",id:4}}},SpriteEntity:{fields:{imageKey:{type:"string",id:1},frames:{rule:"repeated",type:"FrameEntity",id:2}}},Layout:{fields:{x:{type:"float",id:1},y:{type:"float",id:2},width:{type:"float",id:3},height:{type:"float",id:4}}},Transform:{fields:{a:{type:"float",id:1},b:{type:"float",id:2},c:{type:"float",id:3},d:{type:"float",id:4},tx:{type:"float",id:5},ty:{type:"float",id:6}}},ShapeEntity:{oneofs:{args:{oneof:["shape","rect","ellipse"]}},fields:{type:{type:"ShapeType",id:1},shape:{type:"ShapeArgs",id:2},rect:{type:"RectArgs",id:3},ellipse:{type:"EllipseArgs",id:4},styles:{type:"ShapeStyle",id:10},transform:{type:"Transform",id:11}},nested:{ShapeType:{values:{SHAPE:0,RECT:1,ELLIPSE:2,KEEP:3}},ShapeArgs:{fields:{d:{type:"string",id:1}}},RectArgs:{fields:{x:{type:"float",id:1},y:{type:"float",id:2},width:{type:"float",id:3},height:{type:"float",id:4},cornerRadius:{type:"float",id:5}}},EllipseArgs:{fields:{x:{type:"float",id:1},y:{type:"float",id:2},radiusX:{type:"float",id:3},radiusY:{type:"float",id:4}}},ShapeStyle:{fields:{fill:{type:"RGBAColor",id:1},stroke:{type:"RGBAColor",id:2},strokeWidth:{type:"float",id:3},lineCap:{type:"LineCap",id:4},lineJoin:{type:"LineJoin",id:5},miterLimit:{type:"float",id:6},lineDashI:{type:"float",id:7},lineDashII:{type:"float",id:8},lineDashIII:{type:"float",id:9}},nested:{RGBAColor:{fields:{r:{type:"float",id:1},g:{type:"float",id:2},b:{type:"float",id:3},a:{type:"float",id:4}}},LineCap:{values:{LineCap_BUTT:0,LineCap_ROUND:1,LineCap_SQUARE:2}},LineJoin:{values:{LineJoin_MITER:0,LineJoin_ROUND:1,LineJoin_BEVEL:2}}}}}},FrameEntity:{fields:{alpha:{type:"float",id:1},layout:{type:"Layout",id:2},transform:{type:"Transform",id:3},clipPath:{type:"string",id:4},shapes:{rule:"repeated",type:"ShapeEntity",id:5}}},MovieEntity:{fields:{version:{type:"string",id:1},params:{type:"MovieParams",id:2},images:{keyType:"string",type:"bytes",id:3},sprites:{rule:"repeated",type:"SpriteEntity",id:4}}}}}}}}}}}},function(t,e){
9
+ /** @license zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License */
10
+ (function(){"use strict";var t=void 0,e=this;function r(r,i){var s,n=r.split("."),o=e;!(n[0]in o)&&o.execScript&&o.execScript("var "+n[0]);for(;n.length&&(s=n.shift());)n.length||i===t?o=o[s]?o[s]:o[s]={}:o[s]=i}var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array&&"undefined"!=typeof DataView;function s(t){var e,r,s,n,o,a,f,h,l,u,p=t.length,d=0,c=Number.POSITIVE_INFINITY;for(h=0;h<p;++h)t[h]>d&&(d=t[h]),t[h]<c&&(c=t[h]);for(e=1<<d,r=new(i?Uint32Array:Array)(e),s=1,n=0,o=2;s<=d;){for(h=0;h<p;++h)if(t[h]===s){for(a=0,f=n,l=0;l<s;++l)a=a<<1|1&f,f>>=1;for(u=s<<16|h,l=a;l<e;l+=o)r[l]=u;++n}++s,n<<=1,o<<=1}return[r,d,c]}function n(t,e){switch(this.g=[],this.h=32768,this.d=this.f=this.a=this.l=0,this.input=i?new Uint8Array(t):t,this.m=!1,this.i=a,this.r=!1,!e&&(e={})||(e.index&&(this.a=e.index),e.bufferSize&&(this.h=e.bufferSize),e.bufferType&&(this.i=e.bufferType),e.resize&&(this.r=e.resize)),this.i){case o:this.b=32768,this.c=new(i?Uint8Array:Array)(32768+this.h+258);break;case a:this.b=0,this.c=new(i?Uint8Array:Array)(this.h),this.e=this.z,this.n=this.v,this.j=this.w;break;default:throw Error("invalid inflate mode")}}var o=0,a=1,f={t:o,s:a};n.prototype.k=function(){for(;!this.m;){var e=S(this,3);switch(1&e&&(this.m=!0),e>>>=1){case 0:var r=this.input,n=this.a,f=this.c,h=this.b,l=r.length,u=t,d=f.length,c=t;if(this.d=this.f=0,n+1>=l)throw Error("invalid uncompressed block header: LEN");if(u=r[n++]|r[n++]<<8,n+1>=l)throw Error("invalid uncompressed block header: NLEN");if(u===~(r[n++]|r[n++]<<8))throw Error("invalid uncompressed block header: length verify");if(n+u>r.length)throw Error("input buffer is broken");switch(this.i){case o:for(;h+u>f.length;){if(u-=c=d-h,i)f.set(r.subarray(n,n+c),h),h+=c,n+=c;else for(;c--;)f[h++]=r[n++];this.b=h,f=this.e(),h=this.b}break;case a:for(;h+u>f.length;)f=this.e({p:2});break;default:throw Error("invalid inflate mode")}if(i)f.set(r.subarray(n,n+u),h),h+=u,n+=u;else for(;u--;)f[h++]=r[n++];this.a=n,this.b=h,this.c=f;break;case 1:this.j(_,x);break;case 2:var y,v,m,b,g=S(this,5)+257,A=S(this,5)+1,w=S(this,4)+4,k=new(i?Uint8Array:Array)(p.length),O=t,E=t,T=t,N=t,I=t;for(I=0;I<w;++I)k[p[I]]=S(this,3);if(!i)for(I=w,w=k.length;I<w;++I)k[p[I]]=0;for(y=s(k),O=new(i?Uint8Array:Array)(g+A),I=0,b=g+A;I<b;)switch(E=j(this,y),E){case 16:for(N=3+S(this,2);N--;)O[I++]=T;break;case 17:for(N=3+S(this,3);N--;)O[I++]=0;T=0;break;case 18:for(N=11+S(this,7);N--;)O[I++]=0;T=0;break;default:T=O[I++]=E}v=s(i?O.subarray(0,g):O.slice(0,g)),m=s(i?O.subarray(g):O.slice(g)),this.j(v,m);break;default:throw Error("unknown BTYPE: "+e)}}return this.n()};var h,l,u=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],p=i?new Uint16Array(u):u,d=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,258,258],c=i?new Uint16Array(d):d,y=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0],v=i?new Uint8Array(y):y,m=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577],b=i?new Uint16Array(m):m,g=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],A=i?new Uint8Array(g):g,w=new(i?Uint8Array:Array)(288);for(h=0,l=w.length;h<l;++h)w[h]=143>=h?8:255>=h?9:279>=h?7:8;var k,O,_=s(w),E=new(i?Uint8Array:Array)(30);for(k=0,O=E.length;k<O;++k)E[k]=5;var x=s(E);function S(t,e){for(var r,i=t.f,s=t.d,n=t.input,o=t.a,a=n.length;s<e;){if(o>=a)throw Error("input buffer is broken");i|=n[o++]<<s,s+=8}return r=i&(1<<e)-1,t.f=i>>>e,t.d=s-e,t.a=o,r}function j(t,e){for(var r,i,s=t.f,n=t.d,o=t.input,a=t.a,f=o.length,h=e[0],l=e[1];n<l&&!(a>=f);)s|=o[a++]<<n,n+=8;if((i=(r=h[s&(1<<l)-1])>>>16)>n)throw Error("invalid code length: "+i);return t.f=s>>i,t.d=n-i,t.a=a,65535&r}function T(t,e){var r,i;switch(this.input=t,this.a=0,!e&&(e={})||(e.index&&(this.a=e.index),e.verify&&(this.A=e.verify)),r=t[this.a++],i=t[this.a++],15&r){case N:this.method=N;break;default:throw Error("unsupported compression method")}if(0!=((r<<8)+i)%31)throw Error("invalid fcheck flag:"+((r<<8)+i)%31);if(32&i)throw Error("fdict flag is not supported");this.q=new n(t,{index:this.a,bufferSize:e.bufferSize,bufferType:e.bufferType,resize:e.resize})}n.prototype.j=function(t,e){var r=this.c,i=this.b;this.o=t;for(var s,n,o,a,f=r.length-258;256!==(s=j(this,t));)if(256>s)i>=f&&(this.b=i,r=this.e(),i=this.b),r[i++]=s;else for(a=c[n=s-257],0<v[n]&&(a+=S(this,v[n])),s=j(this,e),o=b[s],0<A[s]&&(o+=S(this,A[s])),i>=f&&(this.b=i,r=this.e(),i=this.b);a--;)r[i]=r[i++-o];for(;8<=this.d;)this.d-=8,this.a--;this.b=i},n.prototype.w=function(t,e){var r=this.c,i=this.b;this.o=t;for(var s,n,o,a,f=r.length;256!==(s=j(this,t));)if(256>s)i>=f&&(f=(r=this.e()).length),r[i++]=s;else for(a=c[n=s-257],0<v[n]&&(a+=S(this,v[n])),s=j(this,e),o=b[s],0<A[s]&&(o+=S(this,A[s])),i+a>f&&(f=(r=this.e()).length);a--;)r[i]=r[i++-o];for(;8<=this.d;)this.d-=8,this.a--;this.b=i},n.prototype.e=function(){var t,e,r=new(i?Uint8Array:Array)(this.b-32768),s=this.b-32768,n=this.c;if(i)r.set(n.subarray(32768,r.length));else for(t=0,e=r.length;t<e;++t)r[t]=n[t+32768];if(this.g.push(r),this.l+=r.length,i)n.set(n.subarray(s,s+32768));else for(t=0;32768>t;++t)n[t]=n[s+t];return this.b=32768,n},n.prototype.z=function(t){var e,r,s,n=this.input.length/this.a+1|0,o=this.input,a=this.c;return t&&("number"==typeof t.p&&(n=t.p),"number"==typeof t.u&&(n+=t.u)),2>n?r=(s=(o.length-this.a)/this.o[2]/2*258|0)<a.length?a.length+s:a.length<<1:r=a.length*n,i?(e=new Uint8Array(r)).set(a):e=a,this.c=e},n.prototype.n=function(){var t,e,r,s,n,o=0,a=this.c,f=this.g,h=new(i?Uint8Array:Array)(this.l+(this.b-32768));if(0===f.length)return i?this.c.subarray(32768,this.b):this.c.slice(32768,this.b);for(e=0,r=f.length;e<r;++e)for(s=0,n=(t=f[e]).length;s<n;++s)h[o++]=t[s];for(e=32768,r=this.b;e<r;++e)h[o++]=a[e];return this.g=[],this.buffer=h},n.prototype.v=function(){var t,e=this.b;return i?this.r?(t=new Uint8Array(e)).set(this.c.subarray(0,e)):t=this.c.subarray(0,e):(this.c.length>e&&(this.c.length=e),t=this.c),this.buffer=t},T.prototype.k=function(){var t,e,r=this.input;if(t=this.q.k(),this.a=this.q.a,this.A){e=(r[this.a++]<<24|r[this.a++]<<16|r[this.a++]<<8|r[this.a++])>>>0;var i=t;if("string"==typeof i){var s,n,o=i.split("");for(s=0,n=o.length;s<n;s++)o[s]=(255&o[s].charCodeAt(0))>>>0;i=o}for(var a,f=1,h=0,l=i.length,u=0;0<l;){l-=a=1024<l?1024:l;do{h+=f+=i[u++]}while(--a);f%=65521,h%=65521}if(e!==(h<<16|f)>>>0)throw Error("invalid adler-32 checksum")}return t};var N=8;r("Zlib.Inflate",T),r("Zlib.Inflate.prototype.decompress",T.prototype.k);var I,B,F,D,M={ADAPTIVE:f.s,BLOCK:f.t};if(Object.keys)I=Object.keys(M);else for(B in I=[],F=0,M)I[F++]=B;for(F=0,D=I.length;F<D;++F)r("Zlib.Inflate.BufferType."+(B=I[F]),M[B])}).call(this)},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(t){for(var e=[],r=0;r<t.length;r+=32768)e.push(String.fromCharCode.apply(null,t.subarray(r,r+32768)));return e.join("")}},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=r(27),s=function(t,e){this.videoSize={width:0,height:0},this.images={},this.dynamicElements={},this.sprites=[],this.version=t.version,this.videoSize.width=t.params.viewBoxWidth||0,this.videoSize.height=t.params.viewBoxHeight||0,this.FPS=t.params.fps||20,this.frames=t.params.frames||0,t.sprites instanceof Array&&(this.sprites=t.sprites.map(function(t){return new i.default(t)})),e&&(this.images=e)};e.default=s},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=r(28),s=function(t){this.frames=[],this.imageKey=t.imageKey,t.frames&&(this.frames=t.frames.map(function(t){return new i.default(t)}))};e.default=s},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=r(29),s=function(t,e,r,i,s,n){return{a:t,b:e,c:r,d:i,tx:s,ty:n}},n=function(t,e,r,i){return{x:t,y:e,width:r,height:i}},o=function(){function t(e){this.alpha=0,this.transform=s(1,0,0,1,0,0),this.nx=0,this.ny=0,this.layout=n(0,0,0,0),this.shapes=[],this.alpha=parseFloat(e.alpha)||0,e.layout&&(this.layout=n(parseFloat(e.layout.x)||0,parseFloat(e.layout.y)||0,parseFloat(e.layout.width)||0,parseFloat(e.layout.height)||0)),e.transform&&(this.transform=s(parseFloat(e.transform.a)||1,parseFloat(e.transform.b)||0,parseFloat(e.transform.c)||0,parseFloat(e.transform.d)||1,parseFloat(e.transform.tx)||0,parseFloat(e.transform.ty)||0)),e.clipPath&&e.clipPath.length>0&&(this.maskPath=new i.default(e.clipPath,void 0,{fill:"#000000"})),e.shapes&&(e.shapes instanceof Array&&e.shapes.forEach(function(t){switch(t.pathArgs=t.args,t.type){case 0:t.type="shape",t.pathArgs=t.shape;break;case 1:t.type="rect",t.pathArgs=t.rect;break;case 2:t.type="ellipse",t.pathArgs=t.ellipse;break;case 3:t.type="keep"}if(t.styles){t.styles.fill&&("number"==typeof t.styles.fill.r&&(t.styles.fill[0]=t.styles.fill.r),"number"==typeof t.styles.fill.g&&(t.styles.fill[1]=t.styles.fill.g),"number"==typeof t.styles.fill.b&&(t.styles.fill[2]=t.styles.fill.b),"number"==typeof t.styles.fill.a&&(t.styles.fill[3]=t.styles.fill.a)),t.styles.stroke&&("number"==typeof t.styles.stroke.r&&(t.styles.stroke[0]=t.styles.stroke.r),"number"==typeof t.styles.stroke.g&&(t.styles.stroke[1]=t.styles.stroke.g),"number"==typeof t.styles.stroke.b&&(t.styles.stroke[2]=t.styles.stroke.b),"number"==typeof t.styles.stroke.a&&(t.styles.stroke[3]=t.styles.stroke.a));var e=t.styles.lineDash||[];switch(t.styles.lineDashI>0&&e.push(t.styles.lineDashI),t.styles.lineDashII>0&&(e.length<1&&e.push(0),e.push(t.styles.lineDashII),e.push(0)),t.styles.lineDashIII>0&&(e.length<2&&(e.push(0),e.push(0)),e[2]=t.styles.lineDashIII),t.styles.lineDash=e,t.styles.lineJoin){case 0:t.styles.lineJoin="miter";break;case 1:t.styles.lineJoin="round";break;case 2:t.styles.lineJoin="bevel"}switch(t.styles.lineCap){case 0:t.styles.lineCap="butt";break;case 1:t.styles.lineCap="round";break;case 2:t.styles.lineCap="square"}}}),e.shapes[0]&&"keep"===e.shapes[0].type?this.shapes=t.lastShapes:(t.lastShapes=e.shapes,this.shapes=e.shapes));var r=this.transform.a*this.layout.x+this.transform.c*this.layout.y+this.transform.tx,o=this.transform.a*(this.layout.x+this.layout.width)+this.transform.c*this.layout.y+this.transform.tx,a=this.transform.a*this.layout.x+this.transform.c*(this.layout.y+this.layout.height)+this.transform.tx,f=this.transform.a*(this.layout.x+this.layout.width)+this.transform.c*(this.layout.y+this.layout.height)+this.transform.tx,h=this.transform.b*this.layout.x+this.transform.d*this.layout.y+this.transform.ty,l=this.transform.b*(this.layout.x+this.layout.width)+this.transform.d*this.layout.y+this.transform.ty,u=this.transform.b*this.layout.x+this.transform.d*(this.layout.y+this.layout.height)+this.transform.ty,p=this.transform.b*(this.layout.x+this.layout.width)+this.transform.d*(this.layout.y+this.layout.height)+this.transform.ty;this.nx=Math.min(Math.min(a,f),Math.min(r,o)),this.ny=Math.min(Math.min(u,p),Math.min(h,l))}return t.lastShapes="",t}();e.default=o},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=function(t,e,r){this._d=t,this._transform=e,this._styles=r};e.default=i}]);`,Parser=function(){function Parser(_a){var disableWorker=(_a===void 0?{disableWorker:!1}:_a).disableWorker;disableWorker?(eval(WORKER),this.worker=window.SVGAParserMockWorker):this.worker=new Worker(window.URL.createObjectURL(new Blob([WORKER])))}return Parser.prototype.do=function(c){var y=this,i=new Uint8Array(c,0,4);if(i[0]==80&&i[1]==75&&i[2]==3&&i[3]==4)throw"this parser not support version@1.x of svga.";if(!c)throw new Error("Parser Data not found");if(!this.worker)throw new Error("Parser Worker not found");return new Promise(function(r,n){var m;y.worker.disableWorker?((m=y.worker).onmessageCallback=function(f){r(f)},m.onmessage({data:c})):((m=y.worker).postMessage(c),m.onmessage=function(f){var v=f.data;r(v)})})},Parser.prototype.destroy=function(){var c=this.worker;c.terminate&&c.terminate()},Parser}();exports$1.default=Parser},function(c,y,i){Object.defineProperty(y,"__esModule",{value:!0});var r,n,m,f=i(5),v=i(9);(function(l){l.START="start",l.RESUME="resume",l.PROCESS="process",l.PAUSE="pause",l.STOP="stop",l.END="end",l.CLEAR="clear"})(r||(r={})),function(l){l.FORWARDS="forwards",l.BACKWARDS="backwards"}(n||(n={})),function(l){l.FORWARDS="forwards",l.FALLBACKS="fallbacks"}(m||(m={}));var a=typeof window<"u"&&"IntersectionObserver"in window,d=function(){function l(t,u,p){if(this.videoItem=u,this.loop=!0,this.fillMode=n.FORWARDS,this.playMode=m.FORWARDS,this.progress=0,this.currentFrame=0,this.totalFramesCount=0,this.startFrame=0,this.endFrame=0,this.cacheFrames=!1,this.intersectionObserverRender=!1,this.intersectionObserverRenderShow=!0,this._intersectionObserver=null,this.$onEvent={start:function(){},resume:function(){},process:function(){},pause:function(){},stop:function(){},end:function(){},clear:function(){}},this.container=typeof t=="string"?document.body.querySelector(t):t,!this.container)throw new Error("container undefined.");if(!this.container.getContext)throw new Error("container should be HTMLCanvasElement.");this._renderer=new f.default(this),this._animator=new v.default,this.videoItem&&this.mount(u),p&&this.set(p)}return l.prototype.set=function(t){var u=this;t.loop!==void 0&&(this.loop=t.loop),t.fillMode&&(this.fillMode=t.fillMode),t.playMode&&(this.playMode=t.playMode),t.cacheFrames!==void 0&&(this.cacheFrames=t.cacheFrames),this.startFrame=t.startFrame?t.startFrame:this.startFrame,this.endFrame=t.endFrame?t.endFrame:this.endFrame,t.intersectionObserverRender!==void 0&&(this.intersectionObserverRender=t.intersectionObserverRender),a&&this.intersectionObserverRender?(this._intersectionObserver=new IntersectionObserver(function(p){p[0].intersectionRatio<=0?u.intersectionObserverRenderShow&&(u.intersectionObserverRenderShow=!1):!u.intersectionObserverRenderShow&&(u.intersectionObserverRenderShow=!0)},{rootMargin:"0px",threshold:[0,.5,1]}),this._intersectionObserver.observe(this.container)):(this._intersectionObserver&&this._intersectionObserver.disconnect(),this.intersectionObserverRender=!1,this.intersectionObserverRenderShow=!0),this._animator.noExecutionDelay=t.noExecutionDelay},l.prototype.mount=function(t){var u=this;return new Promise(function(p,x){u.currentFrame=0,u.progress=0,u.totalFramesCount=t.frames-1,u.videoItem=t,u._renderer.prepare().then(p),u._renderer.clear(),u._setSize()})},l.prototype.start=function(){if(!this.videoItem)throw new Error("video item undefined.");this._renderer.clear(),this._startAnimation(),this.$onEvent.start()},l.prototype.resume=function(){if(!this.videoItem)throw new Error("video item undefined.");this._startAnimation(),this.$onEvent.resume()},l.prototype.pause=function(){this._animator&&this._animator.stop(),this.$onEvent.pause()},l.prototype.stop=function(){this._animator&&this._animator.stop(),this.currentFrame=0,this._renderer.drawFrame(this.currentFrame),this.$onEvent.stop()},l.prototype.clear=function(){this._animator&&this._animator.stop(),this._renderer.clear(),this.$onEvent.clear()},l.prototype.destroy=function(){this._animator&&this._animator.stop(),this._renderer.clear(),this._animator=null,this._renderer=null,this.videoItem=null},l.prototype.$on=function(t,u){var p=this;return this.$onEvent[t]=u,t==="end"&&(this._animator.onEnd=function(){return p.$onEvent.end()}),this},l.prototype._startAnimation=function(){var t=this,u=this,p=u.playMode,x=u.totalFramesCount,_=u.startFrame,s=u.endFrame,h=u.videoItem;this.currentFrame===x&&(this.currentFrame=_||0),this._animator.startValue=p==="fallbacks"?s||x:_||0,this._animator.endValue=p==="fallbacks"?_||0:s||x;var e=h.frames;s>0&&s>_?e=s-_:s<=0&&_>0&&(e=h.frames-_),this._animator.duration=e*(1/h.FPS)*1e3,this._animator.loop=this.loop===!0||this.loop<=0?1/0:this.loop===!1?1:this.loop,this._animator.fillRule=this.fillMode==="backwards"?1:0,this._animator.onUpdate=function(k){k=Math.floor(k),t.currentFrame!==k&&(t.currentFrame=k,t.progress=parseFloat((k+1).toString())/parseFloat(h.frames.toString())*100,t._renderer.drawFrame(t.currentFrame),t.$onEvent.process())},this._animator.start(this.currentFrame)},l.prototype._setSize=function(){var t=this.videoItem.videoSize;this.container.width=t.width,this.container.height=t.height},l}();y.default=d},function(c,y,i){Object.defineProperty(y,"__esModule",{value:!0});var r=i(6),n=function(){function m(f){this._bitmapCache={},this._dynamicElements={},this._frames={},this._player=f;var v=this._player.container;this._ofsCanvas=window.OffscreenCanvas?new window.OffscreenCanvas(v.width,v.height):document.createElement("canvas")}return m.prototype.prepare=function(){var f=this;return new Promise(function(v,a){if(f._bitmapCache={},f._player.videoItem.images&&Object.keys(f._player.videoItem.images).length!=0){f._player.videoItem.dynamicElements&&(f._dynamicElements=f._player.videoItem.dynamicElements);var d=0,l=0;for(var t in f._player.videoItem.images){var u=f._player.videoItem.images[t];if(typeof u!="string"||u.indexOf("iVBO")!==0&&u.indexOf("/9j/2w")!==0)f._bitmapCache[t]=u;else{d++;var p=document.createElement("img");p.src="data:image/png;base64,"+u,f._bitmapCache[t]=p,p.onload=function(){++l===d&&v()}}}}else v()})},m.prototype.clear=function(){this._player.container.width=this._player.container.width},m.prototype.drawFrame=function(f){var v=this._player;if(!v.intersectionObserverRender||v.intersectionObserverRenderShow){this.clear();var a=v.container.getContext("2d");if(this._player.cacheFrames&&this._frames[f]){var d=this._frames[f];a.drawImage(d,0,0,d.width,d.height,0,0,d.width,d.height)}else{var l=this._ofsCanvas;if(l.width=this._player.container.width,l.height=this._player.container.height,r.default(l,this._bitmapCache,this._dynamicElements,this._player.videoItem,this._player.currentFrame),a.drawImage(l,0,0,l.width,l.height,0,0,l.width,l.height),this._player.cacheFrames)if("toDataURL"in l){var t=l.toDataURL(),u=new Image;u.src=t,this._frames[f]=u}else this._frames[f]=l.transferToImageBitmap()}}},m}();y.default=n},function(c,y,i){Object.defineProperty(y,"__esModule",{value:!0}),y.default=void 0;var r=f(i(0)),n=f(i(7)),m=f(i(8));function f(t){return t&&t.__esModule?t:{default:t}}var v="MLHVCSQRZmlhvcsqrz";function a(t,u){var p=u._styles;p!==void 0&&(p&&p.stroke?t.strokeStyle="rgba(".concat(parseInt((255*p.stroke[0]).toString()),", ").concat(parseInt((255*p.stroke[1]).toString()),", ").concat(parseInt((255*p.stroke[2]).toString()),", ").concat(p.stroke[3],")"):t.strokeStyle="transparent",p&&(t.lineWidth=p.strokeWidth||void 0,t.lineCap=p.lineCap||void 0,t.lineJoin=p.lineJoin||void 0,t.miterLimit=p.miterLimit||void 0),p&&p.fill?t.fillStyle="rgba(".concat(parseInt((255*p.fill[0]).toString()),", ").concat(parseInt((255*p.fill[1]).toString()),", ").concat(parseInt((255*p.fill[2]).toString()),", ").concat(p.fill[3],")"):t.fillStyle="transparent",p&&p.lineDash&&t.setLineDash(p.lineDash))}function d(t,u){t.save(),a(t,u),u._transform!==void 0&&u._transform!==null&&t.transform(u._transform.a||1,u._transform.b||0,u._transform.c||0,u._transform.d||1,u._transform.tx||0,u._transform.ty||0);var p={x:0,y:0,x1:0,y1:0,x2:0,y2:0};t.beginPath(),u._d.replace(/([a-zA-Z])/g,"|||$1 ").replace(/,/g," ").split("|||").forEach(function(x){if(x.length!=0){var _=x.substr(0,1);if(v.indexOf(_)>=0){var s=x.substr(1).trim().split(" ");(function(h,e,k,o){switch(k){case"M":e.x=Number(o[0]),e.y=Number(o[1]),h.moveTo(e.x,e.y);break;case"m":e.x+=Number(o[0]),e.y+=Number(o[1]),h.moveTo(e.x,e.y);break;case"L":e.x=Number(o[0]),e.y=Number(o[1]),h.lineTo(e.x,e.y);break;case"l":e.x+=Number(o[0]),e.y+=Number(o[1]),h.lineTo(e.x,e.y);break;case"H":e.x=Number(o[0]),h.lineTo(e.x,e.y);break;case"h":e.x+=Number(o[0]),h.lineTo(e.x,e.y);break;case"V":e.y=Number(o[0]),h.lineTo(e.x,e.y);break;case"v":e.y+=Number(o[0]),h.lineTo(e.x,e.y);break;case"C":e.x1=Number(o[0]),e.y1=Number(o[1]),e.x2=Number(o[2]),e.y2=Number(o[3]),e.x=Number(o[4]),e.y=Number(o[5]),h.bezierCurveTo(e.x1,e.y1,e.x2,e.y2,e.x,e.y);break;case"c":e.x1=e.x+Number(o[0]),e.y1=e.y+Number(o[1]),e.x2=e.x+Number(o[2]),e.y2=e.y+Number(o[3]),e.x+=Number(o[4]),e.y+=Number(o[5]),h.bezierCurveTo(e.x1,e.y1,e.x2,e.y2,e.x,e.y);break;case"S":e.x1&&e.y1&&e.x2&&e.y2?(e.x1=e.x-e.x2+e.x,e.y1=e.y-e.y2+e.y,e.x2=Number(o[0]),e.y2=Number(o[1]),e.x=Number(o[2]),e.y=Number(o[3]),h.bezierCurveTo(e.x1,e.y1,e.x2,e.y2,e.x,e.y)):(e.x1=Number(o[0]),e.y1=Number(o[1]),e.x=Number(o[2]),e.y=Number(o[3]),h.quadraticCurveTo(e.x1,e.y1,e.x,e.y));break;case"s":e.x1&&e.y1&&e.x2&&e.y2?(e.x1=e.x-e.x2+e.x,e.y1=e.y-e.y2+e.y,e.x2=e.x+Number(o[0]),e.y2=e.y+Number(o[1]),e.x+=Number(o[2]),e.y+=Number(o[3]),h.bezierCurveTo(e.x1,e.y1,e.x2,e.y2,e.x,e.y)):(e.x1=e.x+Number(o[0]),e.y1=e.y+Number(o[1]),e.x+=Number(o[2]),e.y+=Number(o[3]),h.quadraticCurveTo(e.x1,e.y1,e.x,e.y));break;case"Q":e.x1=Number(o[0]),e.y1=Number(o[1]),e.x=Number(o[2]),e.y=Number(o[3]),h.quadraticCurveTo(e.x1,e.y1,e.x,e.y);break;case"q":e.x1=e.x+Number(o[0]),e.y1=e.y+Number(o[1]),e.x+=Number(o[2]),e.y+=Number(o[3]),h.quadraticCurveTo(e.x1,e.y1,e.x,e.y);break;case"A":case"a":break;case"Z":case"z":h.closePath()}})(t,p,_,s)}}}),u._styles&&u._styles.fill?t.fill():u._styles&&u._styles.stroke&&t.stroke(),t.restore()}var l=function(t,u,p,x,_){var s=t.getContext("2d");return x.sprites.forEach(function(h){var e=h.frames[_];if(!(e.alpha<.05)){s.save(),s.globalAlpha=e.alpha,s.transform(e.transform.a||1,e.transform.b||0,e.transform.c||0,e.transform.d||1,e.transform.tx||0,e.transform.ty||0);var k=u[h.imageKey];k&&(e.maskPath!==void 0&&e.maskPath!==null&&(e.maskPath._styles=void 0,d(s,e.maskPath),s.clip()),s.drawImage(k,0,0));var o=p[h.imageKey];o&&s.drawImage(o,(e.layout.width-o.width)/2,(e.layout.height-o.height)/2),e.shapes&&e.shapes.forEach(function(g){g.type==="shape"&&g.pathArgs&&g.pathArgs.d?d(s,new r.default(g.pathArgs.d,g.transform,g.styles)):g.type==="ellipse"&&g.pathArgs?function(w,b){w.save(),a(w,b),b._transform!==void 0&&b._transform!==null&&w.transform(b._transform.a||1,b._transform.b||0,b._transform.c||0,b._transform.d||1,b._transform.tx||0,b._transform.ty||0);var A=b._x-b._radiusX,S=b._y-b._radiusY,E=2*b._radiusX,N=2*b._radiusY,O=E/2*.5522848,F=N/2*.5522848,C=A+E,j=S+N,D=A+E/2,T=S+N/2;w.beginPath(),w.moveTo(A,T),w.bezierCurveTo(A,T-F,D-O,S,D,S),w.bezierCurveTo(D+O,S,C,T-F,C,T),w.bezierCurveTo(C,T+F,D+O,j,D,j),w.bezierCurveTo(D-O,j,A,T+F,A,T),b._styles&&b._styles.fill?w.fill():b._styles&&b._styles.stroke&&w.stroke(),w.restore()}(s,new n.default(parseFloat(g.pathArgs.x)||0,parseFloat(g.pathArgs.y)||0,parseFloat(g.pathArgs.radiusX)||0,parseFloat(g.pathArgs.radiusY)||0,g.transform,g.styles)):g.type==="rect"&&g.pathArgs&&function(w,b){w.save(),a(w,b),b._transform!==void 0&&b._transform!==null&&w.transform(b._transform.a||1,b._transform.b||0,b._transform.c||0,b._transform.d||1,b._transform.tx||0,b._transform.ty||0);var A=b._x,S=b._y,E=b._width,N=b._height,O=b._cornerRadius;E<2*O&&(O=E/2),N<2*O&&(O=N/2),w.beginPath(),w.moveTo(A+O,S),w.arcTo(A+E,S,A+E,S+N,O),w.arcTo(A+E,S+N,A,S+N,O),w.arcTo(A,S+N,A,S,O),w.arcTo(A,S,A+E,S,O),w.closePath(),b._styles&&b._styles.fill?w.fill():b._styles&&b._styles.stroke&&w.stroke(),w.restore()}(s,new m.default(parseFloat(g.pathArgs.x)||0,parseFloat(g.pathArgs.y)||0,parseFloat(g.pathArgs.width)||0,parseFloat(g.pathArgs.height)||0,parseFloat(g.pathArgs.cornerRadius)||0,g.transform,g.styles))}),s.restore()}}),t};y.default=l},function(c,y,i){var r,n=(r=function(f,v){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(a,d){a.__proto__=d}||function(a,d){for(var l in d)Object.prototype.hasOwnProperty.call(d,l)&&(a[l]=d[l])})(f,v)},function(f,v){function a(){this.constructor=f}r(f,v),f.prototype=v===null?Object.create(v):(a.prototype=v.prototype,new a)});Object.defineProperty(y,"__esModule",{value:!0});var m=function(f){function v(a,d,l,t,u,p){var x=f.call(this)||this;return x._x=a,x._y=d,x._radiusX=l,x._radiusY=t,x._transform=u,x._styles=p,x}return n(v,f),v}(i(0).default);y.default=m},function(c,y,i){var r,n=(r=function(f,v){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(a,d){a.__proto__=d}||function(a,d){for(var l in d)Object.prototype.hasOwnProperty.call(d,l)&&(a[l]=d[l])})(f,v)},function(f,v){function a(){this.constructor=f}r(f,v),f.prototype=v===null?Object.create(v):(a.prototype=v.prototype,new a)});Object.defineProperty(y,"__esModule",{value:!0});var m=function(f){function v(a,d,l,t,u,p,x){var _=f.call(this)||this;return _._x=a,_._y=d,_._width=l,_._height=t,_._cornerRadius=u,_._transform=p,_._styles=x,_}return n(v,f),v}(i(0).default);y.default=m},function(c,y,i){Object.defineProperty(y,"__esModule",{value:!0});var r=function(){function n(){this._currentTimeMillsecond=function(){return typeof performance>"u"?new Date().getTime():performance.now()},this.noExecutionDelay=!1,this.startValue=0,this.endValue=0,this.duration=0,this.loop=1,this.fillRule=0,this.onStart=function(){},this.onUpdate=function(){},this.onEnd=function(){},this._isRunning=!1,this._mStartTime=0,this._currentFrication=0,this._worker=null}return n.prototype.start=function(m){this.doStart(m)},n.prototype.stop=function(){this._doStop()},Object.defineProperty(n.prototype,"animatedValue",{get:function(){return(this.endValue-this.startValue)*this._currentFrication+this.startValue},enumerable:!1,configurable:!0}),n.prototype.doStart=function(m){this._isRunning=!0,this._mStartTime=this._currentTimeMillsecond(),m&&(this._mStartTime-=m/(this.endValue-this.startValue)*this.duration),this._currentFrication=0,this.noExecutionDelay&&this._worker===null&&(this._worker=new Worker(window.URL.createObjectURL(new Blob([`onmessage = function () {
11
+ setTimeout(function() {postMessage(null)}, 1 / 60)
12
+ }`])))),this.onStart(),this._doFrame()},n.prototype._doStop=function(){this._isRunning=!1,this._worker!==null&&(this._worker.terminate(),this._worker=null)},n.prototype._doFrame=function(){this._isRunning&&(this._doDeltaTime(this._currentTimeMillsecond()-this._mStartTime),this._isRunning&&(this._worker?(this._worker.onmessage=this._doFrame.bind(this),this._worker.postMessage(null)):window.requestAnimationFrame(this._doFrame.bind(this))))},n.prototype._doDeltaTime=function(m){m>=this.duration*this.loop?(this._currentFrication=this.fillRule===1?0:1,this._isRunning=!1):this._currentFrication=m%this.duration/this.duration,this.onUpdate(this.animatedValue),this._isRunning===!1&&(this._worker!==null&&(this._worker.terminate(),this._worker=null),this.onEnd())},n}();y.default=r}]).default})})(svga_lite_min);var svga_lite_minExports=svga_lite_min.exports;const _sfc_main={__name:"hbis-svgaPlayer",props:{src:{type:String,required:!0},autoplay:{type:Boolean,default:!0},loop:{type:Boolean,default:!0},progress:{type:Number,default:0},speed:{type:Number,default:1},width:{type:[Number,String],default:"100%"},height:{type:[Number,String],default:"100%"}},emits:["loaded","play","pause","ended","progress","error"],setup(c,{expose:y,emit:i}){vue.useCssVars(e=>({v5ce75b7f:c.width,v26351a8e:c.height}));const r=c,n=i,m=vue.ref(null),f=vue.ref(null);let v=null,a=null,d=null;const l=async()=>{try{v=new svga_lite_minExports.Parser,d=await v.load(r.src),a=new svga_lite_minExports.Player(f.value),a.loop=r.loop,a.speed=r.speed,a.onStart=()=>n("play"),a.onPause=()=>n("pause"),a.onEnd=()=>n("ended"),a.onFrame=()=>n("progress",a.progress),await a.setAnimationData(d),r.progress>0&&(a.progress=r.progress),r.autoplay&&a.start(),n("loaded")}catch(e){console.error("SVGA 加载失败:",e),n("error",e)}},t=()=>{a&&a.start()},u=()=>{a&&a.pause()},p=()=>{a&&a.stop()},x=()=>{a&&(a.stop(),a.start())},_=e=>{a&&(a.progress=e)},s=e=>{a&&(a.speed=e)},h=e=>{a&&(a.loop=e)};return y({play:t,pause:u,stop:p,restart:x,setProgress:_,setSpeed:s,setLoop:h}),vue.watch(()=>r.src,async e=>{e&&await l()}),vue.watch(()=>r.loop,e=>{h(e)}),vue.watch(()=>r.speed,e=>{s(e)}),vue.watch(()=>r.progress,e=>{_(e)}),vue.onMounted(async()=>{await vue.nextTick(),await l()}),vue.onUnmounted(()=>{a&&(a.stop(),a=null),v&&(v=null),d=null}),(e,k)=>(vue.openBlock(),vue.createElementBlock("div",{ref_key:"containerRef",ref:m,class:"svga-player-container"},[vue.createElementVNode("canvas",{ref_key:"canvasRef",ref:f,class:"svga-player-canvas"},null,512)],512))}},HbisSvgaPlayer=_export_sfc(_sfc_main,[["__scopeId","data-v-6b83dcf1"]]);exports.C1=C1;exports.C2=C2;exports.HbisSvgaPlayer=HbisSvgaPlayer;exports.hbisDateStrip=hbisDateStrip;exports.hbisSvgaPlayer=HbisSvgaPlayer;
2
13
  //# sourceMappingURL=index.cjs.js.map