diff --git a/internal/configloaders/admin_module.go b/internal/configloaders/admin_module.go index a562d552..b372dabe 100644 --- a/internal/configloaders/admin_module.go +++ b/internal/configloaders/admin_module.go @@ -10,15 +10,16 @@ import ( type AdminModuleCode = string const ( - AdminModuleCodeServer AdminModuleCode = "server" // 网站 - AdminModuleCodeNode AdminModuleCode = "node" // 节点 - AdminModuleCodeDNS AdminModuleCode = "dns" // DNS - AdminModuleCodeAdmin AdminModuleCode = "admin" // 系统用户 - AdminModuleCodeUser AdminModuleCode = "user" // 平台用户 - AdminModuleCodeFinance AdminModuleCode = "finance" // 财务 - AdminModuleCodeLog AdminModuleCode = "log" // 日志 - AdminModuleCodeSetting AdminModuleCode = "setting" // 设置 - AdminModuleCodeCommon AdminModuleCode = "common" // 只要登录就可以访问的模块 + AdminModuleCodeDashboard AdminModuleCode = "dashboard" // 看板 + AdminModuleCodeServer AdminModuleCode = "server" // 网站 + AdminModuleCodeNode AdminModuleCode = "node" // 节点 + AdminModuleCodeDNS AdminModuleCode = "dns" // DNS + AdminModuleCodeAdmin AdminModuleCode = "admin" // 系统用户 + AdminModuleCodeUser AdminModuleCode = "user" // 平台用户 + AdminModuleCodeFinance AdminModuleCode = "finance" // 财务 + AdminModuleCodeLog AdminModuleCode = "log" // 日志 + AdminModuleCodeSetting AdminModuleCode = "setting" // 设置 + AdminModuleCodeCommon AdminModuleCode = "common" // 只要登录就可以访问的模块 ) var sharedAdminModuleMapping = map[int64]*AdminModuleList{} // adminId => AdminModuleList @@ -109,7 +110,7 @@ func FindFirstAdminModule(adminId int64) (module AdminModuleCode, ok bool) { list, ok2 := sharedAdminModuleMapping[adminId] if ok2 { if list.IsSuper { - return AdminModuleCodeServer, true + return AdminModuleCodeDashboard, true } else if len(list.Modules) > 0 { return list.Modules[0].Code, true } @@ -132,6 +133,11 @@ func FindAdminFullname(adminId int64) string { // 所有权限列表 func AllModuleMaps() []maps.Map { return []maps.Map{ + { + "name": "看板", + "code": AdminModuleCodeDashboard, + "url": "/dashboard", + }, { "name": "网站服务", "code": AdminModuleCodeServer, diff --git a/internal/utils/numberutils/utils.go b/internal/utils/numberutils/utils.go index ca022a98..ff9a3814 100644 --- a/internal/utils/numberutils/utils.go +++ b/internal/utils/numberutils/utils.go @@ -17,12 +17,26 @@ func FormatBytes(bytes int64) string { if bytes < 1024 { return FormatInt64(bytes) + "B" } else if bytes < 1024*1024 { - return fmt.Sprintf("%.2fK", float64(bytes)/1024) + return fmt.Sprintf("%.2fKB", float64(bytes)/1024) } else if bytes < 1024*1024*1024 { - return fmt.Sprintf("%.2fM", float64(bytes)/1024/1024) + return fmt.Sprintf("%.2fMB", float64(bytes)/1024/1024) } else if bytes < 1024*1024*1024*1024 { - return fmt.Sprintf("%.2fG", float64(bytes)/1024/1024/1024) + return fmt.Sprintf("%.2fGB", float64(bytes)/1024/1024/1024) } else { - return fmt.Sprintf("%.2fP", float64(bytes)/1024/1024/1024/1024) + return fmt.Sprintf("%.2fPB", float64(bytes)/1024/1024/1024/1024) + } +} + +func FormatBits(bits int64) string { + if bits < 1000 { + return FormatInt64(bits) + "B" + } else if bits < 1000*1000 { + return fmt.Sprintf("%.2fKB", float64(bits)/1000) + } else if bits < 1000*1000*1000 { + return fmt.Sprintf("%.2fMB", float64(bits)/1000/1000) + } else if bits < 1000*1000*1000*1000 { + return fmt.Sprintf("%.2fGB", float64(bits)/1000/10001000) + } else { + return fmt.Sprintf("%.2fPB", float64(bits)/1000/1000/1000/1000) } } diff --git a/internal/web/actions/default/dashboard/index.go b/internal/web/actions/default/dashboard/index.go index 6e84e7d2..bb7d216a 100644 --- a/internal/web/actions/default/dashboard/index.go +++ b/internal/web/actions/default/dashboard/index.go @@ -2,7 +2,12 @@ package dashboard import ( "github.com/TeaOSLab/EdgeAdmin/internal/configloaders" + "github.com/TeaOSLab/EdgeAdmin/internal/utils/numberutils" "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils" + "github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb" + "github.com/iwind/TeaGo/maps" + "math" + "regexp" ) type IndexAction struct { @@ -17,13 +22,70 @@ func (this *IndexAction) RunGet(params struct{}) { // 取得用户的权限 module, ok := configloaders.FindFirstAdminModule(this.AdminId()) if ok { - for _, m := range configloaders.AllModuleMaps() { - if m.GetString("code") == module { - this.RedirectURL(m.GetString("url")) - return + if module != "dashboard" { + for _, m := range configloaders.AllModuleMaps() { + if m.GetString("code") == module { + this.RedirectURL(m.GetString("url")) + return + } } } } + // 读取看板数据 + resp, err := this.RPC().AdminRPC().ComposeAdminDashboard(this.AdminContext(), &pb.ComposeAdminDashboardRequest{}) + if err != nil { + this.ErrorPage(err) + return + } + this.Data["dashboard"] = maps.Map{ + "countServers": resp.CountServers, + "countNodeClusters": resp.CountNodeClusters, + "countNodes": resp.CountNodes, + "countUsers": resp.CountUsers, + "countAPINodes": resp.CountAPINodes, + "countDBNodes": resp.CountDBNodes, + "countUserNodes": resp.CountUserNodes, + } + + // 今日流量 + todayTrafficBytes := int64(0) + if len(resp.DailyTrafficStats) > 0 { + todayTrafficBytes = resp.DailyTrafficStats[len(resp.DailyTrafficStats)-1].Bytes + } + todayTrafficString := numberutils.FormatBits(todayTrafficBytes * 8) + result := regexp.MustCompile(`^(?U)(.+)([a-zA-Z]+)$`).FindStringSubmatch(todayTrafficString) + if len(result) > 2 { + this.Data["todayTraffic"] = result[1] + this.Data["todayTrafficUnit"] = result[2] + } else { + this.Data["todayTraffic"] = todayTrafficString + this.Data["todayTrafficUnit"] = "" + } + + // 24小时流量趋势 + { + statMaps := []maps.Map{} + for _, stat := range resp.HourlyTrafficStats { + statMaps = append(statMaps, maps.Map{ + "count": math.Ceil((float64(stat.Bytes)*8/1000/1000/1000)*1000) / 1000, + "hour": stat.Hour[8:], + }) + } + this.Data["hourlyTrafficStats"] = statMaps + } + + // 15天流量趋势 + { + statMaps := []maps.Map{} + for _, stat := range resp.DailyTrafficStats { + statMaps = append(statMaps, maps.Map{ + "count": math.Ceil((float64(stat.Bytes)*8/1000/1000/1000)*1000) / 1000, + "day": stat.Day[4:6] + "月" + stat.Day[6:] + "日", + }) + } + this.Data["dailyTrafficStats"] = statMaps + } + this.Show() } diff --git a/internal/web/actions/default/dashboard/init.go b/internal/web/actions/default/dashboard/init.go index 886bb474..23b5de30 100644 --- a/internal/web/actions/default/dashboard/init.go +++ b/internal/web/actions/default/dashboard/init.go @@ -9,6 +9,7 @@ import ( func init() { TeaGo.BeforeStart(func(server *TeaGo.Server) { server.Prefix("/dashboard"). + Data("teaMenu", "dashboard"). Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeCommon)). GetPost("", new(IndexAction)). EndAll() diff --git a/internal/web/helpers/user_must_auth.go b/internal/web/helpers/user_must_auth.go index ef0dffef..b8ffde77 100644 --- a/internal/web/helpers/user_must_auth.go +++ b/internal/web/helpers/user_must_auth.go @@ -130,6 +130,12 @@ func (this *userMustAuth) BeforeAction(actionPtr actions.ActionWrapper, paramNam // 菜单配置 func (this *userMustAuth) modules(adminId int64) []maps.Map { allMaps := []maps.Map{ + { + "code": "dashboard", + "module": configloaders.AdminModuleCodeDashboard, + "name": "看板", + "icon": "dashboard", + }, { "code": "servers", "module": configloaders.AdminModuleCodeServer, diff --git a/web/public/js/echarts/echarts.min.js b/web/public/js/echarts/echarts.min.js new file mode 100644 index 00000000..edba9776 --- /dev/null +++ b/web/public/js/echarts/echarts.min.js @@ -0,0 +1,16 @@ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use strict";function e(t,e){function n(){this.constructor=t}Ey(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function n(){for(var t=0,e=0,n=arguments.length;n>e;e++)t+=arguments[e].length;for(var i=Array(t),r=0,e=0;n>e;e++)for(var o=arguments[e],a=0,s=o.length;s>a;a++,r++)i[r]=o[a];return i}function i(t,e){var n=e.browser,i=t.match(/Firefox\/([\d.]+)/),r=t.match(/MSIE\s([\d.]+)/)||t.match(/Trident\/.+?rv:(([\d.]+))/),o=t.match(/Edge\/([\d.]+)/),a=/micromessenger/i.test(t);i&&(n.firefox=!0,n.version=i[1]),r&&(n.ie=!0,n.version=r[1]),o&&(n.edge=!0,n.version=o[1]),a&&(n.weChat=!0),e.canvasSupported=!!document.createElement("canvas").getContext,e.svgSupported="undefined"!=typeof SVGRect,e.touchEventsSupported="ontouchstart"in window&&!n.ie&&!n.edge,e.pointerEventsSupported="onpointerdown"in window&&(n.edge||n.ie&&+n.version>=11),e.domSupported="undefined"!=typeof document}function r(t,e){Zy[t]=e}function o(){return Ky++}function a(){for(var t=[],e=0;ei;i++)e[i]=s(t[i])}}else if(Hy[n]){if(!U(t)){var o=t.constructor;if(o.from)e=o.from(t);else{e=new o(t.length);for(var i=0,r=t.length;r>i;i++)e[i]=s(t[i])}}}else if(!Fy[n]&&!U(t)&&!L(t)){e={};for(var a in t)t.hasOwnProperty(a)&&(e[a]=s(t[a]))}return e}function l(t,e,n){if(!A(e)||!A(t))return n?s(e):t;for(var i in e)if(e.hasOwnProperty(i)){var r=t[i],o=e[i];!A(o)||!A(r)||T(o)||T(r)||L(o)||L(r)||D(o)||D(r)||U(o)||U(r)?!n&&i in t||(t[i]=s(e[i])):l(r,o,n)}return t}function u(t,e){for(var n=t[0],i=1,r=t.length;r>i;i++)n=l(n,t[i],e);return n}function h(t,e){if(Object.assign)Object.assign(t,e);else for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}function c(t,e,n){for(var i=w(e),r=0;rn;n++)if(t[n]===e)return n}return-1}function f(t,e){function n(){}var i=t.prototype;n.prototype=e.prototype,t.prototype=new n;for(var r in i)i.hasOwnProperty(r)&&(t.prototype[r]=i[r]);t.prototype.constructor=t,t.superClass=e}function d(t,e,n){if(t="prototype"in t?t.prototype:t,e="prototype"in e?e.prototype:e,Object.getOwnPropertyNames)for(var i=Object.getOwnPropertyNames(e),r=0;ri;i++)e.call(n,t[i],i,t);else for(var o in t)t.hasOwnProperty(o)&&e.call(n,t[o],o,t)}function v(t,e,n){if(!t)return[];if(!e)return H(t);if(t.map&&t.map===Yy)return t.map(e,n);for(var i=[],r=0,o=t.length;o>r;r++)i.push(e.call(n,t[r],r,t));return i}function m(t,e,n,i){if(t&&e){for(var r=0,o=t.length;o>r;r++)n=e.call(i,n,t[r],r,t);return n}}function _(t,e,n){if(!t)return[];if(!e)return H(t);if(t.filter&&t.filter===Xy)return t.filter(e,n);for(var i=[],r=0,o=t.length;o>r;r++)e.call(n,t[r],r,t)&&i.push(t[r]);return i}function x(t,e,n){if(t&&e)for(var i=0,r=t.length;r>i;i++)if(e.call(n,t[i],i,t))return t[i]}function w(t){if(!t)return[];if(Object.keys)return Object.keys(t);var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);return e}function b(t,e){for(var n=[],i=2;in;n++)if(null!=t[n])return t[n]}function N(t,e){return null!=t?t:e}function F(t,e,n){return null!=t?t:null!=e?e:n}function H(t){for(var e=[],n=1;np;p++){var d=1<a;a++)for(var s=0;8>s;s++)null==o[s]&&(o[s]=0),o[s]+=((a+s)%2?-1:1)*me(n,7,0===a?1:0,1<o;o++){var a=document.createElement("div"),s=a.style,l=o%2,u=(o>>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",i[l]+":0",r[u]+":0",i[1-l]+":auto",r[1-u]+":auto",""].join("!important;"),t.appendChild(a),n.push(a)}return n}function Se(t,e,n){for(var i=n?"invTrans":"trans",r=e[i],o=e.srcCoords,a=[],s=[],l=!0,u=0;4>u;u++){var h=t[u].getBoundingClientRect(),c=2*u,p=h.left,f=h.top;a.push(p,f),l=l&&o&&p===o[c]&&f===o[c+1],s.push(t[u].offsetLeft,t[u].offsetTop)}return l&&r?r:(e.srcCoords=a,e[i]=n?_e(s,a):_e(a,s))}function Te(t){return"CANVAS"===t.nodeName.toUpperCase()}function Me(t,e,n,i){return n=n||{},i||!Ny.canvasSupported?Ce(t,e,n):Ny.browser.firefox&&null!=e.layerX&&e.layerX!==e.offsetX?(n.zrX=e.layerX,n.zrY=e.layerY):null!=e.offsetX?(n.zrX=e.offsetX,n.zrY=e.offsetY):Ce(t,e,n),n}function Ce(t,e,n){if(Ny.domSupported&&t.getBoundingClientRect){var i=e.clientX,r=e.clientY;if(Te(t)){var o=t.getBoundingClientRect();return n.zrX=i-o.left,void(n.zrY=r-o.top)}if(we(gv,t,i,r))return n.zrX=gv[0],void(n.zrY=gv[1])}n.zrX=n.zrY=0}function Ie(t){return t||window.event}function ke(t,e,n){if(e=Ie(e),null!=e.zrX)return e;var i=e.type,r=i&&i.indexOf("touch")>=0;if(r){var o="touchend"!==i?e.targetTouches[0]:e.changedTouches[0];o&&Me(t,o,e,n)}else{Me(t,e,e,n);var a=Ae(e);e.zrDelta=a?a/120:-(e.detail||0)/3}var s=e.button;return null==e.which&&void 0!==s&&dv.test(e.type)&&(e.which=1&s?1:2&s?3:4&s?2:0),e}function Ae(t){var e=t.wheelDelta;if(e)return e;var n=t.deltaX,i=t.deltaY;if(null==n||null==i)return e;var r=Math.abs(0!==i?i:n),o=i>0?-1:0>i?1:n>0?-1:1;return 3*r*o}function De(t,e,n,i){fv?t.addEventListener(e,n,i):t.attachEvent("on"+e,n)}function Pe(t,e,n,i){fv?t.removeEventListener(e,n,i):t.detachEvent("on"+e,n)}function Le(t){var e=t[1][0]-t[0][0],n=t[1][1]-t[0][1];return Math.sqrt(e*e+n*n)}function Oe(t){return[(t[0][0]+t[1][0])/2,(t[0][1]+t[1][1])/2]}function Re(t,e,n){return{type:t,event:n,target:e.target,topTarget:e.topTarget,cancelBubble:!1,offsetX:n.zrX,offsetY:n.zrY,gestureEvent:n.gestureEvent,pinchX:n.pinchX,pinchY:n.pinchY,pinchScale:n.pinchScale,wheelDelta:n.zrDelta,zrByTouch:n.zrByTouch,which:n.which,stop:Ee}}function Ee(){yv(this.event)}function Be(t,e,n){if(t[t.rectHover?"rectContain":"contain"](e,n)){for(var i=t,r=void 0,o=!1;i;){if(i.ignoreClip&&(o=!0),!o){var a=i.getClipPath();if(a&&!a.contain(e,n))return!1;i.silent&&(r=!0)}var s=i.__hostTarget;i=s?s:i.parent}return r?_v:!0}return!1}function ze(t,e,n){var i=t.painter;return 0>e||e>i.getWidth()||0>n||n>i.getHeight()}function Ne(){return[1,0,0,1,0,0]}function Fe(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function He(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t}function Ve(t,e,n){var i=e[0]*n[0]+e[2]*n[1],r=e[1]*n[0]+e[3]*n[1],o=e[0]*n[2]+e[2]*n[3],a=e[1]*n[2]+e[3]*n[3],s=e[0]*n[4]+e[2]*n[5]+e[4],l=e[1]*n[4]+e[3]*n[5]+e[5];return t[0]=i,t[1]=r,t[2]=o,t[3]=a,t[4]=s,t[5]=l,t}function Ge(t,e,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4]+n[0],t[5]=e[5]+n[1],t}function We(t,e,n){var i=e[0],r=e[2],o=e[4],a=e[1],s=e[3],l=e[5],u=Math.sin(n),h=Math.cos(n);return t[0]=i*h+a*u,t[1]=-i*u+a*h,t[2]=r*h+s*u,t[3]=-r*u+h*s,t[4]=h*o+u*l,t[5]=h*l-u*o,t}function Xe(t,e,n){var i=n[0],r=n[1];return t[0]=e[0]*i,t[1]=e[1]*r,t[2]=e[2]*i,t[3]=e[3]*r,t[4]=e[4]*i,t[5]=e[5]*r,t}function Ue(t,e){var n=e[0],i=e[2],r=e[4],o=e[1],a=e[3],s=e[5],l=n*a-o*i;return l?(l=1/l,t[0]=a*l,t[1]=-o*l,t[2]=-i*l,t[3]=n*l,t[4]=(i*s-a*r)*l,t[5]=(o*r-n*s)*l,t):null}function Ye(t){var e=Ne();return He(e,t),e}function je(t){return t>kv||-kv>t}function qe(t){return t=Math.round(t),0>t?0:t>255?255:t}function Ze(t){return t=Math.round(t),0>t?0:t>360?360:t}function Ke(t){return 0>t?0:t>1?1:t}function $e(t){var e=t;return qe(e.length&&"%"===e.charAt(e.length-1)?parseFloat(e)/100*255:parseInt(e,10))}function Qe(t){var e=t;return Ke(e.length&&"%"===e.charAt(e.length-1)?parseFloat(e)/100:parseFloat(e))}function Je(t,e,n){return 0>n?n+=1:n>1&&(n-=1),1>6*n?t+(e-t)*n*6:1>2*n?e:2>3*n?t+(e-t)*(2/3-n)*6:t}function tn(t,e,n){return t+(e-t)*n}function en(t,e,n,i,r){return t[0]=e,t[1]=n,t[2]=i,t[3]=r,t}function nn(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}function rn(t,e){Vv&&nn(Vv,e),Vv=Hv.put(t,Vv||e.slice())}function on(t,e){if(t){e=e||[];var n=Hv.get(t);if(n)return nn(e,n);t+="";var i=t.replace(/ /g,"").toLowerCase();if(i in Fv)return nn(e,Fv[i]),rn(t,e),e;var r=i.length;if("#"!==i.charAt(0)){var o=i.indexOf("("),a=i.indexOf(")");if(-1!==o&&a+1===r){var s=i.substr(0,o),l=i.substr(o+1,a-(o+1)).split(","),u=1;switch(s){case"rgba":if(4!==l.length)return 3===l.length?en(e,+l[0],+l[1],+l[2],1):en(e,0,0,0,1);u=Qe(l.pop());case"rgb":return 3!==l.length?void en(e,0,0,0,1):(en(e,$e(l[0]),$e(l[1]),$e(l[2]),u),rn(t,e),e);case"hsla":return 4!==l.length?void en(e,0,0,0,1):(l[3]=Qe(l[3]),an(l,e),rn(t,e),e);case"hsl":return 3!==l.length?void en(e,0,0,0,1):(an(l,e),rn(t,e),e);default:return}}en(e,0,0,0,1)}else{if(4===r||5===r){var h=parseInt(i.slice(1,4),16);return h>=0&&4095>=h?(en(e,(3840&h)>>4|(3840&h)>>8,240&h|(240&h)>>4,15&h|(15&h)<<4,5===r?parseInt(i.slice(4),16)/15:1),rn(t,e),e):void en(e,0,0,0,1)}if(7===r||9===r){var h=parseInt(i.slice(1,7),16);return h>=0&&16777215>=h?(en(e,(16711680&h)>>16,(65280&h)>>8,255&h,9===r?parseInt(i.slice(7),16)/255:1),rn(t,e),e):void en(e,0,0,0,1)}}}}function an(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=Qe(t[1]),r=Qe(t[2]),o=.5>=r?r*(i+1):r+i-r*i,a=2*r-o;return e=e||[],en(e,qe(255*Je(a,o,n+1/3)),qe(255*Je(a,o,n)),qe(255*Je(a,o,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function sn(t){if(t){var e,n,i=t[0]/255,r=t[1]/255,o=t[2]/255,a=Math.min(i,r,o),s=Math.max(i,r,o),l=s-a,u=(s+a)/2;if(0===l)e=0,n=0;else{n=.5>u?l/(s+a):l/(2-s-a);var h=((s-i)/6+l/2)/l,c=((s-r)/6+l/2)/l,p=((s-o)/6+l/2)/l;i===s?e=p-c:r===s?e=1/3+h-p:o===s&&(e=2/3+c-h),0>e&&(e+=1),e>1&&(e-=1)}var f=[360*e,n,u];return null!=t[3]&&f.push(t[3]),f}}function ln(t,e){var n=on(t);if(n){for(var i=0;3>i;i++)n[i]=0>e?n[i]*(1-e)|0:(255-n[i])*e+n[i]|0,n[i]>255?n[i]=255:n[i]<0&&(n[i]=0);return dn(n,4===n.length?"rgba":"rgb")}}function un(t){var e=on(t);return e?((1<<24)+(e[0]<<16)+(e[1]<<8)+ +e[2]).toString(16).slice(1):void 0}function hn(t,e,n){if(e&&e.length&&t>=0&&1>=t){n=n||[];var i=t*(e.length-1),r=Math.floor(i),o=Math.ceil(i),a=e[r],s=e[o],l=i-r;return n[0]=qe(tn(a[0],s[0],l)),n[1]=qe(tn(a[1],s[1],l)),n[2]=qe(tn(a[2],s[2],l)),n[3]=Ke(tn(a[3],s[3],l)),n}}function cn(t,e,n){if(e&&e.length&&t>=0&&1>=t){var i=t*(e.length-1),r=Math.floor(i),o=Math.ceil(i),a=on(e[r]),s=on(e[o]),l=i-r,u=dn([qe(tn(a[0],s[0],l)),qe(tn(a[1],s[1],l)),qe(tn(a[2],s[2],l)),Ke(tn(a[3],s[3],l))],"rgba");return n?{color:u,leftIndex:r,rightIndex:o,value:i}:u}}function pn(t,e,n,i){var r=on(t);return t?(r=sn(r),null!=e&&(r[0]=Ze(e)),null!=n&&(r[1]=Qe(n)),null!=i&&(r[2]=Qe(i)),dn(an(r),"rgba")):void 0}function fn(t,e){var n=on(t);return n&&null!=e?(n[3]=Ke(e),dn(n,"rgba")):void 0}function dn(t,e){if(t&&t.length){var n=t[0]+","+t[1]+","+t[2];return("rgba"===e||"hsva"===e||"hsla"===e)&&(n+=","+t[3]),e+"("+n+")"}}function gn(t,e){var n=on(t);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*e:0}function yn(){var t=Math.round(255*Math.random()),e=Math.round(255*Math.random()),n=Math.round(255*Math.random());return"rgb("+t+","+e+","+n+")"}function vn(t,e,n){return(e-t)*n+t}function mn(t,e,n){return n>.5?e:t}function _n(t,e,n,i){for(var r=e.length,o=0;r>o;o++)t[o]=vn(e[o],n[o],i)}function xn(t,e,n,i){for(var r=e.length,o=r&&e[0].length,a=0;r>a;a++){t[a]||(t[a]=[]);for(var s=0;o>s;s++)t[a][s]=vn(e[a][s],n[a][s],i)}}function wn(t,e,n,i){for(var r=e.length,o=0;r>o;o++)t[o]=e[o]+n[o]*i;return t}function bn(t,e,n,i){for(var r=e.length,o=r&&e[0].length,a=0;r>a;a++){t[a]||(t[a]=[]);for(var s=0;o>s;s++)t[a][s]=e[a][s]+n[a][s]*i}return t}function Sn(t,e,n){var i=t,r=e;if(i.push&&r.push){var o=i.length,a=r.length;if(o!==a){var s=o>a;if(s)i.length=a;else for(var l=o;a>l;l++)i.push(1===n?r[l]:Uv.call(r[l]))}for(var u=i[0]&&i[0].length,l=0;lh;h++)isNaN(i[l][h])&&(i[l][h]=r[l][h])}}function Tn(t,e){var n=t.length;if(n!==e.length)return!1;for(var i=0;n>i;i++)if(t[i]!==e[i])return!1;return!0}function Mn(t,e,n,i,r,o,a){var s=.5*(n-t),l=.5*(i-e);return(2*(e-n)+s+l)*a+(-3*(e-n)-2*s-l)*o+s*r+e}function Cn(t,e,n,i,r,o,a,s){for(var l=e.length,u=0;l>u;u++)t[u]=Mn(e[u],n[u],i[u],r[u],o,a,s)}function In(t,e,n,i,r,o,a,s){for(var l=e.length,u=e[0].length,h=0;l>h;h++){t[h]||(t[1]=[]);for(var c=0;u>c;c++)t[h][c]=Mn(e[h][c],n[h][c],i[h][c],r[h][c],o,a,s)}}function kn(t){if(g(t)){var e=t.length;if(g(t[0])){for(var n=[],i=0;e>i;i++)n.push(Uv.call(t[i]));return n}return Uv.call(t)}return t}function An(t){return t[0]=Math.floor(t[0]),t[1]=Math.floor(t[1]),t[2]=Math.floor(t[2]),"rgba("+t.join(",")+")"}function Dn(t){return g(t&&t[0])?2:1}function Pn(t,e){return Tv||(Tv=$y().getContext("2d")),Mv!==e&&(Mv=Tv.font=e||am),Tv.measureText(t)}function Ln(t,e){e=e||am;var n=om[e];n||(n=om[e]=new Nv(500));var i=n.get(t);return null==i&&(i=sm.measureText(t,e).width,n.put(t,i)),i}function On(t,e,n,i){var r=Ln(t,e),o=zn(e),a=En(0,r,n),s=Bn(0,o,i),l=new rm(a,s,r,o);return l}function Rn(t,e,n,i){var r=((t||"")+"").split("\n"),o=r.length;if(1===o)return On(r[0],e,n,i);for(var a=new rm(0,0,0,0),s=0;s=0?parseFloat(t)/100*e:parseFloat(t):t}function Fn(t,e,n){var i=e.position||"inside",r=null!=e.distance?e.distance:5,o=n.height,a=n.width,s=o/2,l=n.x,u=n.y,h="left",c="top";if(i instanceof Array)l+=Nn(i[0],n.width),u+=Nn(i[1],n.height),h=null,c=null;else switch(i){case"left":l-=r,u+=s,h="right",c="middle";break;case"right":l+=r+a,u+=s,c="middle";break;case"top":l+=a/2,u-=r,h="center",c="bottom";break;case"bottom":l+=a/2,u+=o+r,h="center";break;case"inside":l+=a/2,u+=s,h="center",c="middle";break;case"insideLeft":l+=r,u+=s,c="middle";break;case"insideRight":l+=a-r,u+=s,h="right",c="middle";break;case"insideTop":l+=a/2,u+=r,h="center";break;case"insideBottom":l+=a/2,u+=o-r,h="center",c="bottom";break;case"insideTopLeft":l+=r,u+=r;break;case"insideTopRight":l+=a-r,u+=r,h="right";break;case"insideBottomLeft":l+=r,u+=o-r,c="bottom";break;case"insideBottomRight":l+=a-r,u+=o-r,h="right",c="bottom"}return t=t||{},t.x=l,t.y=u,t.align=h,t.verticalAlign=c,t}function Hn(t,e,n,i,r){n=n||{};var o=[];Xn(t,"",t,e,n,i,o,r);var a=o.length,s=!1,l=n.done,u=n.aborted,h=function(){s=!0,a--,0>=a&&(s?l&&l():u&&u())},c=function(){a--,0>=a&&(s?l&&l():u&&u())};a||l&&l(),o.length>0&&n.during&&o[0].during(function(t,e){n.during(e)});for(var p=0;pi;i++)t[i]=e[i]}function Gn(t){return g(t[0])}function Wn(t,e,n){if(g(e[n]))if(g(t[n])||(t[n]=[]),P(e[n])){var i=e[n].length;t[n].length!==i&&(t[n]=new e[n].constructor(i),Vn(t[n],e[n],i))}else{var r=e[n],o=t[n],a=r.length;if(Gn(r))for(var s=r[0].length,l=0;a>l;l++)o[l]?Vn(o[l],r[l],s):o[l]=Array.prototype.slice.call(r[l]);else Vn(o,r,a);o.length=r.length}else t[n]=e[n]}function Xn(t,e,n,i,r,o,a,s){for(var l=[],u=[],h=w(i),c=r.duration,f=r.delay,d=r.additive,y=r.setToFinal,v=!A(o),m=0;m0||r.force&&!a.length){for(var b=t.animators,S=[],T=0;TT;T++){var _=l[T];k[_]=n[_],y?I[_]=i[_]:n[_]=i[_]}}else if(y){D={};for(var T=0;x>T;T++){var _=l[T];D[_]=kn(n[_]),Wn(n,i,_)}}var P=new qv(n,!1,d?S:null);P.targetName=e,r.scope&&(P.scope=r.scope),y&&I&&P.whenWithKeys(0,I,l),D&&P.whenWithKeys(0,D,l),P.whenWithKeys(null==c?500:c,s?k:i,l).delay(f||0),t.addAnimator(P,e),a.push(P)}}function Un(t){for(var e=0;t>=wm;)e|=1&t,t>>=1;return t+e}function Yn(t,e,n,i){var r=e+1;if(r===n)return 1;if(i(t[r++],t[e])<0){for(;n>r&&i(t[r],t[r-1])<0;)r++;jn(t,e,r)}else for(;n>r&&i(t[r],t[r-1])>=0;)r++;return r-e}function jn(t,e,n){for(n--;n>e;){var i=t[e];t[e++]=t[n],t[n--]=i}}function qn(t,e,n,i,r){for(i===e&&i++;n>i;i++){for(var o,a=t[i],s=e,l=i;l>s;)o=s+l>>>1,r(a,t[o])<0?l=o:s=o+1;var u=i-s;switch(u){case 3:t[s+3]=t[s+2];case 2:t[s+2]=t[s+1];case 1:t[s+1]=t[s];break;default:for(;u>0;)t[s+u]=t[s+u-1],u--}t[s]=a}}function Zn(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])>0){for(s=i-r;s>l&&o(t,e[n+r+l])>0;)a=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s),a+=r,l+=r}else{for(s=r+1;s>l&&o(t,e[n+r-l])<=0;)a=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s);var u=a;a=r-l,l=r-u}for(a++;l>a;){var h=a+(l-a>>>1);o(t,e[n+h])>0?a=h+1:l=h}return l}function Kn(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])<0){for(s=r+1;s>l&&o(t,e[n+r-l])<0;)a=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s);var u=a;a=r-l,l=r-u}else{for(s=i-r;s>l&&o(t,e[n+r+l])>=0;)a=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s),a+=r,l+=r}for(a++;l>a;){var h=a+(l-a>>>1);o(t,e[n+h])<0?l=h:a=h+1}return l}function $n(t,e){function n(t,e){l[c]=t,u[c]=e,c+=1}function i(){for(;c>1;){var t=c-2;if(t>=1&&u[t-1]<=u[t]+u[t+1]||t>=2&&u[t-2]<=u[t]+u[t-1])u[t-1]u[t+1])break;o(t)}}function r(){for(;c>1;){var t=c-2;t>0&&u[t-1]=r?a(i,r,o,h):s(i,r,o,h)))}function a(n,i,r,o){var a=0;for(a=0;i>a;a++)p[a]=t[n+a];var s=0,l=r,u=n;if(t[u++]=t[l++],0!==--o){if(1===i){for(a=0;o>a;a++)t[u+a]=t[l+a];return void(t[u+o]=p[s])}for(var c,f,d,g=h;;){c=0,f=0,d=!1;do if(e(t[l],p[s])<0){if(t[u++]=t[l++],f++,c=0,0===--o){d=!0;break}}else if(t[u++]=p[s++],c++,f=0,1===--i){d=!0;break}while(g>(c|f));if(d)break;do{if(c=Kn(t[l],p,s,i,0,e),0!==c){for(a=0;c>a;a++)t[u+a]=p[s+a];if(u+=c,s+=c,i-=c,1>=i){d=!0;break}}if(t[u++]=t[l++],0===--o){d=!0;break}if(f=Zn(p[s],t,l,o,0,e),0!==f){for(a=0;f>a;a++)t[u+a]=t[l+a];if(u+=f,l+=f,o-=f,0===o){d=!0;break}}if(t[u++]=p[s++],1===--i){d=!0;break}g--}while(c>=bm||f>=bm);if(d)break;0>g&&(g=0),g+=2}if(h=g,1>h&&(h=1),1===i){for(a=0;o>a;a++)t[u+a]=t[l+a];t[u+o]=p[s]}else{if(0===i)throw new Error;for(a=0;i>a;a++)t[u+a]=p[s+a]}}else for(a=0;i>a;a++)t[u+a]=p[s+a]}function s(n,i,r,o){var a=0;for(a=0;o>a;a++)p[a]=t[r+a];var s=n+i-1,l=o-1,u=r+o-1,c=0,f=0;if(t[u--]=t[s--],0!==--i){if(1===o){for(u-=i,s-=i,f=u+1,c=s+1,a=i-1;a>=0;a--)t[f+a]=t[c+a];return void(t[u]=p[l])}for(var d=h;;){var g=0,y=0,v=!1;do if(e(p[l],t[s])<0){if(t[u--]=t[s--],g++,y=0,0===--i){v=!0;break}}else if(t[u--]=p[l--],y++,g=0,1===--o){v=!0;break}while(d>(g|y));if(v)break;do{if(g=i-Kn(p[l],t,n,i,i-1,e),0!==g){for(u-=g,s-=g,i-=g,f=u+1,c=s+1,a=g-1;a>=0;a--)t[f+a]=t[c+a];if(0===i){v=!0;break}}if(t[u--]=p[l--],1===--o){v=!0;break}if(y=o-Zn(t[s],p,0,o,o-1,e),0!==y){for(u-=y,l-=y,o-=y,f=u+1,c=l+1,a=0;y>a;a++)t[f+a]=p[c+a];if(1>=o){v=!0;break}}if(t[u--]=t[s--],0===--i){v=!0;break}d--}while(g>=bm||y>=bm);if(v)break;0>d&&(d=0),d+=2}if(h=d,1>h&&(h=1),1===o){for(u-=i,s-=i,f=u+1,c=s+1,a=i-1;a>=0;a--)t[f+a]=t[c+a];t[u]=p[l]}else{if(0===o)throw new Error;for(c=u-(o-1),a=0;o>a;a++)t[c+a]=p[a]}}else for(c=u-(o-1),a=0;o>a;a++)t[c+a]=p[a]}var l,u,h=bm,c=0,p=[];return l=[],u=[],{mergeRuns:i,forceMergeRuns:r,pushRun:n}}function Qn(t,e,n,i){n||(n=0),i||(i=t.length);var r=i-n;if(!(2>r)){var o=0;if(wm>r)return o=Yn(t,n,i,e),void qn(t,n,i,n+o,e);var a=$n(t,e),s=Un(r);do{if(o=Yn(t,n,i,e),s>o){var l=r;l>s&&(l=s),qn(t,n,n+l,n+o,e),o=l}a.pushRun(n,o),a.mergeRuns(),r-=o,n+=o}while(0!==r);a.forceMergeRuns()}}function Jn(){Sm||(Sm=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function ti(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t.zlevel-e.zlevel}function ei(t){var e=t.pointerType;return"pen"===e||"touch"===e}function ni(t){t.touching=!0,null!=t.touchTimer&&(clearTimeout(t.touchTimer),t.touchTimer=null),t.touchTimer=setTimeout(function(){t.touching=!1,t.touchTimer=null},700)}function ii(t){t&&(t.zrByTouch=!0)}function ri(t,e){return ke(t.dom,new Lm(t,e),!0)}function oi(t,e){for(var n=e,i=!1;n&&9!==n.nodeType&&!(i=n.domBelongToZr||n!==e&&n===t.painterRoot);)n=n.parentNode;return i}function ai(t,e){var n=e.domHandlers;Ny.pointerEventsSupported?y(Am.pointer,function(i){li(e,i,function(e){n[i].call(t,e)})}):(Ny.touchEventsSupported&&y(Am.touch,function(i){li(e,i,function(r){n[i].call(t,r),ni(e)})}),y(Am.mouse,function(i){li(e,i,function(r){r=Ie(r),e.touching||n[i].call(t,r)})}))}function si(t,e){function n(n){function i(i){i=Ie(i),oi(t,i.target)||(i=ri(t,i),e.domHandlers[n].call(t,i))}li(e,n,i,{capture:!0})}Ny.pointerEventsSupported?y(Dm.pointer,n):Ny.touchEventsSupported||y(Dm.mouse,n)}function li(t,e,n,i){t.mounted[e]=n,t.listenerOpts[e]=i,De(t.domTarget,e,n,i)}function ui(t){var e=t.mounted;for(var n in e)e.hasOwnProperty(n)&&Pe(t.domTarget,n,e[n],t.listenerOpts[n]);t.mounted={}}function hi(t,e,n){return Gm.copy(t.getBoundingRect()),t.transform&&Gm.applyTransform(t.transform),Wm.width=e,Wm.height=n,!Gm.intersect(Wm)}function ci(t){return t>-Ym&&Ym>t}function pi(t){return t>Ym||-Ym>t}function fi(t,e,n,i,r){var o=1-r;return o*o*(o*t+3*r*e)+r*r*(r*i+3*o*n)}function di(t,e,n,i,r){var o=1-r;return 3*(((e-t)*o+2*(n-e)*r)*o+(i-n)*r*r)}function gi(t,e,n,i,r,o){var a=i+3*(e-n)-t,s=3*(n-2*e+t),l=3*(e-t),u=t-r,h=s*s-3*a*l,c=s*l-9*a*u,p=l*l-3*s*u,f=0;if(ci(h)&&ci(c))if(ci(s))o[0]=0;else{var d=-l/s;d>=0&&1>=d&&(o[f++]=d)}else{var g=c*c-4*h*p;if(ci(g)){var y=c/h,d=-s/a+y,v=-y/2;d>=0&&1>=d&&(o[f++]=d),v>=0&&1>=v&&(o[f++]=v)}else if(g>0){var m=Um(g),_=h*s+1.5*a*(-c+m),x=h*s+1.5*a*(-c-m);_=0>_?-Xm(-_,Zm):Xm(_,Zm),x=0>x?-Xm(-x,Zm):Xm(x,Zm);var d=(-s-(_+x))/(3*a);d>=0&&1>=d&&(o[f++]=d)}else{var w=(2*h*s-3*a*c)/(2*Um(h*h*h)),b=Math.acos(w)/3,S=Um(h),T=Math.cos(b),d=(-s-2*S*T)/(3*a),v=(-s+S*(T+qm*Math.sin(b)))/(3*a),M=(-s+S*(T-qm*Math.sin(b)))/(3*a);d>=0&&1>=d&&(o[f++]=d),v>=0&&1>=v&&(o[f++]=v),M>=0&&1>=M&&(o[f++]=M)}}return f}function yi(t,e,n,i,r){var o=6*n-12*e+6*t,a=9*e+3*i-3*t-9*n,s=3*e-3*t,l=0;if(ci(a)){if(pi(o)){var u=-s/o;u>=0&&1>=u&&(r[l++]=u)}}else{var h=o*o-4*a*s;if(ci(h))r[0]=-o/(2*a);else if(h>0){var c=Um(h),u=(-o+c)/(2*a),p=(-o-c)/(2*a);u>=0&&1>=u&&(r[l++]=u),p>=0&&1>=p&&(r[l++]=p)}}return l}function vi(t,e,n,i,r,o){var a=(e-t)*r+t,s=(n-e)*r+e,l=(i-n)*r+n,u=(s-a)*r+a,h=(l-s)*r+s,c=(h-u)*r+u;o[0]=t,o[1]=a,o[2]=u,o[3]=c,o[4]=c,o[5]=h,o[6]=l,o[7]=i}function mi(t,e,n,i,r,o,a,s,l,u,h){var c,p,f,d,g,y=.005,v=1/0;Km[0]=l,Km[1]=u;for(var m=0;1>m;m+=.05)$m[0]=fi(t,n,r,a,m),$m[1]=fi(e,i,o,s,m),d=ov(Km,$m),v>d&&(c=m,v=d);v=1/0;for(var _=0;32>_&&!(jm>y);_++)p=c-y,f=c+y,$m[0]=fi(t,n,r,a,p),$m[1]=fi(e,i,o,s,p),d=ov($m,Km),p>=0&&v>d?(c=p,v=d):(Qm[0]=fi(t,n,r,a,f),Qm[1]=fi(e,i,o,s,f),g=ov(Qm,Km),1>=f&&v>g?(c=f,v=g):y*=.5);return h&&(h[0]=fi(t,n,r,a,c),h[1]=fi(e,i,o,s,c)),Um(v)}function _i(t,e,n,i,r,o,a,s,l){for(var u=t,h=e,c=0,p=1/l,f=1;l>=f;f++){var d=f*p,g=fi(t,n,r,a,d),y=fi(e,i,o,s,d),v=g-u,m=y-h;c+=Math.sqrt(v*v+m*m),u=g,h=y}return c}function xi(t,e,n,i){var r=1-i;return r*(r*t+2*i*e)+i*i*n}function wi(t,e,n,i){return 2*((1-i)*(e-t)+i*(n-e))}function bi(t,e,n,i,r){var o=t-2*e+n,a=2*(e-t),s=t-i,l=0;if(ci(o)){if(pi(a)){var u=-s/a;u>=0&&1>=u&&(r[l++]=u)}}else{var h=a*a-4*o*s;if(ci(h)){var u=-a/(2*o);u>=0&&1>=u&&(r[l++]=u)}else if(h>0){var c=Um(h),u=(-a+c)/(2*o),p=(-a-c)/(2*o);u>=0&&1>=u&&(r[l++]=u),p>=0&&1>=p&&(r[l++]=p)}}return l}function Si(t,e,n){var i=t+n-2*e;return 0===i?.5:(t-e)/i}function Ti(t,e,n,i,r){var o=(e-t)*i+t,a=(n-e)*i+e,s=(a-o)*i+o;r[0]=t,r[1]=o,r[2]=s,r[3]=s,r[4]=a,r[5]=n}function Mi(t,e,n,i,r,o,a,s,l){var u,h=.005,c=1/0;Km[0]=a,Km[1]=s;for(var p=0;1>p;p+=.05){$m[0]=xi(t,n,r,p),$m[1]=xi(e,i,o,p);var f=ov(Km,$m);c>f&&(u=p,c=f)}c=1/0;for(var d=0;32>d&&!(jm>h);d++){var g=u-h,y=u+h;$m[0]=xi(t,n,r,g),$m[1]=xi(e,i,o,g);var f=ov($m,Km);if(g>=0&&c>f)u=g,c=f;else{Qm[0]=xi(t,n,r,y),Qm[1]=xi(e,i,o,y);var v=ov(Qm,Km);1>=y&&c>v?(u=y,c=v):h*=.5}}return l&&(l[0]=xi(t,n,r,u),l[1]=xi(e,i,o,u)),Um(c)}function Ci(t,e,n,i,r,o,a){for(var s=t,l=e,u=0,h=1/a,c=1;a>=c;c++){var p=c*h,f=xi(t,n,r,p),d=xi(e,i,o,p),g=f-s,y=d-l;u+=Math.sqrt(g*g+y*y),s=f,l=d}return u}function Ii(t,e,n){if(0!==t.length){for(var i=t[0],r=i[0],o=i[0],a=i[1],s=i[1],l=1;lf;f++){var d=c(t,n,r,a,s_[f]);l[0]=Jm(d,l[0]),u[0]=t_(d,u[0])}p=h(e,i,o,s,l_);for(var f=0;p>f;f++){var g=c(e,i,o,s,l_[f]);l[1]=Jm(g,l[1]),u[1]=t_(g,u[1])}l[0]=Jm(t,l[0]),u[0]=t_(t,u[0]),l[0]=Jm(a,l[0]),u[0]=t_(a,u[0]),l[1]=Jm(e,l[1]),u[1]=t_(e,u[1]),l[1]=Jm(s,l[1]),u[1]=t_(s,u[1])}function Di(t,e,n,i,r,o,a,s){var l=Si,u=xi,h=t_(Jm(l(t,n,r),1),0),c=t_(Jm(l(e,i,o),1),0),p=u(t,n,r,h),f=u(e,i,o,c);a[0]=Jm(t,r,p),a[1]=Jm(e,o,f),s[0]=t_(t,r,p),s[1]=t_(e,o,f)}function Pi(t,e,n,i,r,o,a,s,l){var u=ye,h=ve,c=Math.abs(r-o);if(1e-4>c%i_&&c>1e-4)return s[0]=t-n,s[1]=e-i,l[0]=t+n,void(l[1]=e+i);if(r_[0]=n_(r)*n+t,r_[1]=e_(r)*i+e,o_[0]=n_(o)*n+t,o_[1]=e_(o)*i+e,u(s,r_,o_),h(l,r_,o_),r%=i_,0>r&&(r+=i_),o%=i_,0>o&&(o+=i_),r>o&&!a?o+=i_:o>r&&a&&(r+=i_),a){var p=o;o=r,r=p}for(var f=0;o>f;f+=Math.PI/2)f>r&&(a_[0]=n_(f)*n+t,a_[1]=e_(f)*i+e,u(s,a_,s),h(l,a_,l))}function Li(t){var e=Math.round(t/b_*1e8)/1e8;return e%2*b_}function Oi(t,e){var n=Li(t[0]);0>n&&(n+=S_);var i=n-t[0],r=t[1];r+=i,!e&&r-n>=S_?r=n+S_:e&&n-r>=S_?r=n-S_:!e&&n>r?r=n+(S_-Li(n-r)):e&&r>n&&(r=n-(S_-Li(r-n))),t[0]=n,t[1]=r}function Ri(t,e,n,i,r,o,a){if(0===r)return!1;var s=r,l=0,u=t;if(a>e+s&&a>i+s||e-s>a&&i-s>a||o>t+s&&o>n+s||t-s>o&&n-s>o)return!1;if(t===n)return Math.abs(o-t)<=s/2;l=(e-i)/(t-n),u=(t*i-n*e)/(t-n);var h=l*o-a+u,c=h*h/(l*l+1);return s/2*s/2>=c}function Ei(t,e,n,i,r,o,a,s,l,u,h){if(0===l)return!1;var c=l;if(h>e+c&&h>i+c&&h>o+c&&h>s+c||e-c>h&&i-c>h&&o-c>h&&s-c>h||u>t+c&&u>n+c&&u>r+c&&u>a+c||t-c>u&&n-c>u&&r-c>u&&a-c>u)return!1;var p=mi(t,e,n,i,r,o,a,s,u,h,null);return c/2>=p}function Bi(t,e,n,i,r,o,a,s,l){if(0===a)return!1;var u=a;if(l>e+u&&l>i+u&&l>o+u||e-u>l&&i-u>l&&o-u>l||s>t+u&&s>n+u&&s>r+u||t-u>s&&n-u>s&&r-u>s)return!1;var h=Mi(t,e,n,i,r,o,s,l,null);return u/2>=h}function zi(t){return t%=I_,0>t&&(t+=I_),t}function Ni(t,e,n,i,r,o,a,s,l){if(0===a)return!1;var u=a;s-=t,l-=e;var h=Math.sqrt(s*s+l*l);if(h-u>n||n>h+u)return!1;if(Math.abs(i-r)%k_<1e-4)return!0;if(o){var c=i;i=zi(r),r=zi(c)}else i=zi(i),r=zi(r);i>r&&(r+=k_);var p=Math.atan2(l,s);return 0>p&&(p+=k_),p>=i&&r>=p||p+k_>=i&&r>=p+k_}function Fi(t,e,n,i,r,o){if(o>e&&o>i||e>o&&i>o)return 0;if(i===e)return 0;var a=(o-e)/(i-e),s=e>i?1:-1;(1===a||0===a)&&(s=e>i?.5:-.5);var l=a*(n-t)+t;return l===r?1/0:l>r?s:0}function Hi(t,e){return Math.abs(t-e)e&&u>i&&u>o&&u>s||e>u&&i>u&&o>u&&s>u)return 0;var h=gi(e,i,o,s,u,L_);if(0===h)return 0;for(var c=0,p=-1,f=void 0,d=void 0,g=0;h>g;g++){var y=L_[g],v=0===y||1===y?.5:1,m=fi(t,n,r,a,y);l>m||(0>p&&(p=yi(e,i,o,s,O_),O_[1]1&&Vi(),f=fi(e,i,o,s,O_[0]),p>1&&(d=fi(e,i,o,s,O_[1]))),c+=2===p?yf?v:-v:yd?v:-v:d>s?v:-v:yf?v:-v:f>s?v:-v)}return c}function Wi(t,e,n,i,r,o,a,s){if(s>e&&s>i&&s>o||e>s&&i>s&&o>s)return 0; +var l=bi(e,i,o,s,L_);if(0===l)return 0;var u=Si(e,i,o);if(u>=0&&1>=u){for(var h=0,c=xi(e,i,o,u),p=0;l>p;p++){var f=0===L_[p]||1===L_[p]?.5:1,d=xi(t,n,r,L_[p]);a>d||(h+=L_[p]c?f:-f:c>o?f:-f)}return h}var f=0===L_[0]||1===L_[0]?.5:1,d=xi(t,n,r,L_[0]);return a>d?0:e>o?f:-f}function Xi(t,e,n,i,r,o,a,s){if(s-=e,s>n||-n>s)return 0;var l=Math.sqrt(n*n-s*s);L_[0]=-l,L_[1]=l;var u=Math.abs(i-r);if(1e-4>u)return 0;if(u>=D_-1e-4){i=0,r=D_;var h=o?1:-1;return a>=L_[0]+t&&a<=L_[1]+t?h:0}if(i>r){var c=i;i=r,r=c}0>i&&(i+=D_,r+=D_);for(var p=0,f=0;2>f;f++){var d=L_[f];if(d+t>a){var g=Math.atan2(s,d),h=o?1:-1;0>g&&(g=D_+g),(g>=i&&r>=g||g+D_>=i&&r>=g+D_)&&(g>Math.PI/2&&g<1.5*Math.PI&&(h=-h),p+=h)}}return p}function Ui(t,e,n,i,r){for(var o,a,s=t.data,l=t.len(),u=0,h=0,c=0,p=0,f=0,d=0;l>d;){var g=s[d++],y=1===d;switch(g===A_.M&&d>1&&(n||(u+=Fi(h,c,p,f,i,r))),y&&(h=s[d],c=s[d+1],p=h,f=c),g){case A_.M:p=s[d++],f=s[d++],h=p,c=f;break;case A_.L:if(n){if(Ri(h,c,s[d],s[d+1],e,i,r))return!0}else u+=Fi(h,c,s[d],s[d+1],i,r)||0;h=s[d++],c=s[d++];break;case A_.C:if(n){if(Ei(h,c,s[d++],s[d++],s[d++],s[d++],s[d],s[d+1],e,i,r))return!0}else u+=Gi(h,c,s[d++],s[d++],s[d++],s[d++],s[d],s[d+1],i,r)||0;h=s[d++],c=s[d++];break;case A_.Q:if(n){if(Bi(h,c,s[d++],s[d++],s[d],s[d+1],e,i,r))return!0}else u+=Wi(h,c,s[d++],s[d++],s[d],s[d+1],i,r)||0;h=s[d++],c=s[d++];break;case A_.A:var v=s[d++],m=s[d++],_=s[d++],x=s[d++],w=s[d++],b=s[d++];d+=1;var S=!!(1-s[d++]);o=Math.cos(w)*_+v,a=Math.sin(w)*x+m,y?(p=o,f=a):u+=Fi(h,c,o,a,i,r);var T=(i-v)*x/_+v;if(n){if(Ni(v,m,x,w,w+b,S,e,T,r))return!0}else u+=Xi(v,m,x,w,w+b,S,T,r);h=Math.cos(w+b)*_+v,c=Math.sin(w+b)*x+m;break;case A_.R:p=h=s[d++],f=c=s[d++];var M=s[d++],C=s[d++];if(o=p+M,a=f+C,n){if(Ri(p,f,o,f,e,i,r)||Ri(o,f,o,a,e,i,r)||Ri(o,a,p,a,e,i,r)||Ri(p,a,p,f,e,i,r))return!0}else u+=Fi(o,f,o,a,i,r),u+=Fi(p,a,p,f,i,r);break;case A_.Z:if(n){if(Ri(h,c,p,f,e,i,r))return!0}else u+=Fi(h,c,p,f,i,r);h=p,c=f}}return n||Hi(c,f)||(u+=Fi(h,c,p,f,i,r)||0),0!==u}function Yi(t,e,n){return Ui(t,0,!1,e,n)}function ji(t,e,n,i){return Ui(t,e,!0,n,i)}function qi(t,e){var n,i,r,o,a,s,l=t.data,u=t.len(),h=N_.M,c=N_.C,p=N_.L,f=N_.R,d=N_.A,g=N_.Q;for(r=0,o=0;u>r;){switch(n=l[r++],o=r,i=0,n){case h:i=1;break;case p:i=1;break;case c:i=3;break;case g:i=2;break;case d:var y=e[4],v=e[5],m=H_(e[0]*e[0]+e[1]*e[1]),_=H_(e[2]*e[2]+e[3]*e[3]),x=V_(-e[1]/_,e[0]/m);l[r]*=m,l[r++]+=y,l[r]*=_,l[r++]+=v,l[r++]*=m,l[r++]*=_,l[r++]+=x,l[r++]+=x,r+=2,o=r;break;case f:s[0]=l[r++],s[1]=l[r++],ge(s,s,e),l[o++]=s[0],l[o++]=s[1],s[0]+=l[r++],s[1]+=l[r++],ge(s,s,e),l[o++]=s[0],l[o++]=s[1]}for(a=0;i>a;a++){var w=F_[a];w[0]=l[r++],w[1]=l[r++],ge(w,w,e),l[o++]=w[0],l[o++]=w[1]}}t.increaseVersion()}function Zi(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])}function Ki(t,e){return(t[0]*e[0]+t[1]*e[1])/(Zi(t)*Zi(e))}function $i(t,e){return(t[0]*e[1]1&&(a*=G_(d),s*=G_(d));var g=(r===o?-1:1)*G_((a*a*s*s-a*a*f*f-s*s*p*p)/(a*a*f*f+s*s*p*p))||0,y=g*a*f/s,v=g*-s*p/a,m=(t+n)/2+X_(c)*y-W_(c)*v,_=(e+i)/2+W_(c)*y+X_(c)*v,x=$i([1,0],[(p-y)/a,(f-v)/s]),w=[(p-y)/a,(f-v)/s],b=[(-1*p-y)/a,(-1*f-v)/s],S=$i(w,b);if(Ki(w,b)<=-1&&(S=U_),Ki(w,b)>=1&&(S=0),0>S){var T=Math.round(S/U_*1e6)/1e6;S=2*U_+T%2*U_}h.addData(u,m,_,a,s,x,S,c,o)}function Ji(t){if(!t)return new C_;for(var e,n=0,i=0,r=n,o=i,a=new C_,s=C_.CMD,l=t.match(Y_),u=0;ug;g++)f[g]=parseFloat(f[g]);for(var y=0;d>y;){var v=void 0,m=void 0,_=void 0,x=void 0,w=void 0,b=void 0,S=void 0,T=n,M=i,C=void 0,I=void 0;switch(c){case"l":n+=f[y++],i+=f[y++],p=s.L,a.addData(p,n,i);break;case"L":n=f[y++],i=f[y++],p=s.L,a.addData(p,n,i);break;case"m":n+=f[y++],i+=f[y++],p=s.M,a.addData(p,n,i),r=n,o=i,c="l";break;case"M":n=f[y++],i=f[y++],p=s.M,a.addData(p,n,i),r=n,o=i,c="L";break;case"h":n+=f[y++],p=s.L,a.addData(p,n,i);break;case"H":n=f[y++],p=s.L,a.addData(p,n,i);break;case"v":i+=f[y++],p=s.L,a.addData(p,n,i);break;case"V":i=f[y++],p=s.L,a.addData(p,n,i);break;case"C":p=s.C,a.addData(p,f[y++],f[y++],f[y++],f[y++],f[y++],f[y++]),n=f[y-2],i=f[y-1];break;case"c":p=s.C,a.addData(p,f[y++]+n,f[y++]+i,f[y++]+n,f[y++]+i,f[y++]+n,f[y++]+i),n+=f[y-2],i+=f[y-1];break;case"S":v=n,m=i,C=a.len(),I=a.data,e===s.C&&(v+=n-I[C-4],m+=i-I[C-3]),p=s.C,T=f[y++],M=f[y++],n=f[y++],i=f[y++],a.addData(p,v,m,T,M,n,i);break;case"s":v=n,m=i,C=a.len(),I=a.data,e===s.C&&(v+=n-I[C-4],m+=i-I[C-3]),p=s.C,T=n+f[y++],M=i+f[y++],n+=f[y++],i+=f[y++],a.addData(p,v,m,T,M,n,i);break;case"Q":T=f[y++],M=f[y++],n=f[y++],i=f[y++],p=s.Q,a.addData(p,T,M,n,i);break;case"q":T=f[y++]+n,M=f[y++]+i,n+=f[y++],i+=f[y++],p=s.Q,a.addData(p,T,M,n,i);break;case"T":v=n,m=i,C=a.len(),I=a.data,e===s.Q&&(v+=n-I[C-4],m+=i-I[C-3]),n=f[y++],i=f[y++],p=s.Q,a.addData(p,v,m,n,i);break;case"t":v=n,m=i,C=a.len(),I=a.data,e===s.Q&&(v+=n-I[C-4],m+=i-I[C-3]),n+=f[y++],i+=f[y++],p=s.Q,a.addData(p,v,m,n,i);break;case"A":_=f[y++],x=f[y++],w=f[y++],b=f[y++],S=f[y++],T=n,M=i,n=f[y++],i=f[y++],p=s.A,Qi(T,M,n,i,b,S,_,x,w,p,a);break;case"a":_=f[y++],x=f[y++],w=f[y++],b=f[y++],S=f[y++],T=n,M=i,n+=f[y++],i+=f[y++],p=s.A,Qi(T,M,n,i,b,S,_,x,w,p,a)}}("z"===c||"Z"===c)&&(p=s.Z,a.addData(p),n=r,i=o),e=p}return a.toStatic(),a}function tr(t){return null!=t.setData}function er(t,e){var n=Ji(t),i=h({},e);return i.buildPath=function(t){if(tr(t)){t.setData(n.data);var e=t.getContext();e&&t.rebuildPath(e,1)}else{var e=t;n.rebuildPath(e,1)}},i.applyTransform=function(t){qi(n,t),this.dirtyShape()},i}function nr(t,e){return new q_(er(t,e))}function ir(t,n){var i=er(t,n),r=function(t){function n(e){var n=t.call(this,e)||this;return n.applyTransform=i.applyTransform,n.buildPath=i.buildPath,n}return e(n,t),n}(q_);return r}function rr(t,e){for(var n=[],i=t.length,r=0;i>r;r++){var o=t[r];o.path||o.createPathProxy(),o.shapeChanged()&&o.buildPath(o.path,o.shape,!0),n.push(o.path)}var a=new z_(e);return a.createPathProxy(),a.buildPath=function(t){if(tr(t)){t.appendPath(n);var e=t.getContext();e&&t.rebuildPath(e,1)}},a}function or(t){return!!(t&&"string"!=typeof t&&t.width&&t.height)}function ar(t,e){var n,i,r,o,a=e.x,s=e.y,l=e.width,u=e.height,h=e.r;0>l&&(a+=l,l=-l),0>u&&(s+=u,u=-u),"number"==typeof h?n=i=r=o=h:h instanceof Array?1===h.length?n=i=r=o=h[0]:2===h.length?(n=r=h[0],i=o=h[1]):3===h.length?(n=h[0],i=o=h[1],r=h[2]):(n=h[0],i=h[1],r=h[2],o=h[3]):n=i=r=o=0;var c;n+i>l&&(c=n+i,n*=l/c,i*=l/c),r+o>l&&(c=r+o,r*=l/c,o*=l/c),i+r>u&&(c=i+r,i*=u/c,r*=u/c),n+o>u&&(c=n+o,n*=u/c,o*=u/c),t.moveTo(a+n,s),t.lineTo(a+l-i,s),0!==i&&t.arc(a+l-i,s+i,i,-Math.PI/2,0),t.lineTo(a+l,s+u-r),0!==r&&t.arc(a+l-r,s+u-r,r,0,Math.PI/2),t.lineTo(a+o,s+u),0!==o&&t.arc(a+o,s+u-o,o,Math.PI/2,Math.PI),t.lineTo(a,s+n),0!==n&&t.arc(a+n,s+n,n,Math.PI,1.5*Math.PI)}function sr(t,e,n){if(e){var i=e.x1,r=e.x2,o=e.y1,a=e.y2;t.x1=i,t.x2=r,t.y1=o,t.y2=a;var s=n&&n.lineWidth;return s?(ex(2*i)===ex(2*r)&&(t.x1=t.x2=ur(i,s,!0)),ex(2*o)===ex(2*a)&&(t.y1=t.y2=ur(o,s,!0)),t):t}}function lr(t,e,n){if(e){var i=e.x,r=e.y,o=e.width,a=e.height;t.x=i,t.y=r,t.width=o,t.height=a;var s=n&&n.lineWidth;return s?(t.x=ur(i,s,!0),t.y=ur(r,s,!0),t.width=Math.max(ur(i+o,s,!1)-t.x,0===o?0:1),t.height=Math.max(ur(r+a,s,!1)-t.y,0===a?0:1),t):t}}function ur(t,e,n){if(!e)return t;var i=ex(2*t);return(i+ex(e))%2===0?i/2:(i+(n?1:-1))/2}function hr(t,e,n,i,r,o,a){var s=.5*(n-t),l=.5*(i-e);return(2*(e-n)+s+l)*a+(-3*(e-n)-2*s-l)*o+s*r+e}function cr(t,e){for(var n=t.length,i=[],r=0,o=1;n>o;o++)r+=ce(t[o-1],t[o]);var a=r/2;a=n>a?n:a;for(var o=0;a>o;o++){var s=o/(a-1)*(e?n:n-1),l=Math.floor(s),u=s-l,h=void 0,c=t[l%n],p=void 0,f=void 0;e?(h=t[(l-1+n)%n],p=t[(l+1)%n],f=t[(l+2)%n]):(h=t[0===l?l:l-1],p=t[l>n-2?n-1:l+1],f=t[l>n-3?n-1:l+2]);var d=u*u,g=u*d;i.push([hr(h[0],c[0],p[0],f[0],u,d,g),hr(h[1],c[1],p[1],f[1],u,d,g)])}return i}function pr(t,e,n,i){var r,o,a,s,l=[],u=[],h=[],c=[];if(i){a=[1/0,1/0],s=[-1/0,-1/0];for(var p=0,f=t.length;f>p;p++)ye(a,a,t[p]),ve(s,s,t[p]);ye(a,a,i[0]),ve(s,s,i[1])}for(var p=0,f=t.length;f>p;p++){var d=t[p];if(n)r=t[p?p-1:f-1],o=t[(p+1)%f];else{if(0===p||p===f-1){l.push(J(t[p]));continue}r=t[p-1],o=t[p+1]}ie(u,o,r),ue(u,u,e);var g=ce(d,r),y=ce(d,o),v=g+y;0!==v&&(g/=v,y/=v),ue(h,u,-g),ue(c,u,y);var m=ee([],d,h),_=ee([],d,c);i&&(ve(m,m,a),ye(m,m,s),ve(_,_,a),ye(_,_,s)),l.push(m),l.push(_)}return n&&l.push(l.shift()),l}function fr(t,e,n){var i=e.smooth,r=e.points;if(r&&r.length>=2){if(i&&"spline"!==i){var o=pr(r,i,n,e.smoothConstraint);t.moveTo(r[0][0],r[0][1]);for(var a=r.length,s=0;(n?a:a-1)>s;s++){var l=o[2*s],u=o[2*s+1],h=r[(s+1)%a];t.bezierCurveTo(l[0],l[1],u[0],u[1],h[0],h[1])}}else{"spline"===i&&(r=cr(r,n)),t.moveTo(r[0][0],r[0][1]);for(var s=1,c=r.length;c>s;s++)t.lineTo(r[s][0],r[s][1])}n&&t.closePath()}}function dr(t){if(C(t)){var e=new DOMParser;t=e.parseFromString(t,"text/xml")}var n=t;for(9===n.nodeType&&(n=n.firstChild);"svg"!==n.nodeName.toLowerCase()||1!==n.nodeType;)n=n.nextSibling;return n}function gr(t,e){for(var n=t.firstChild;n;){if(1===n.nodeType){var i=n.getAttribute("offset"),r=void 0;r=i.indexOf("%")>0?parseInt(i,10)/100:i?parseFloat(i):0;var o=n.getAttribute("stop-color")||"#000000";e.colorStops.push({offset:r,color:o})}n=n.nextSibling}}function yr(t,e){t&&t.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),c(e.__inheritedStyle,t.__inheritedStyle))}function vr(t){for(var e=W(t).split(_x),n=[],i=0;i0;o-=2){var a=i[o],s=i[o-1],l=void 0;switch(r=r||Ne(),s){case"translate":l=W(a).split(_x),Ge(r,r,[parseFloat(l[0]),parseFloat(l[1]||"0")]);break;case"scale":l=W(a).split(_x),Xe(r,r,[parseFloat(l[0]),parseFloat(l[1]||l[0])]);break;case"rotate":l=W(a).split(_x),We(r,r,parseFloat(l[0]));break;case"skew":l=W(a).split(_x),console.warn("Skew transform is not supported yet");break;case"matrix":l=W(a).split(_x),r[0]=parseFloat(l[0]),r[1]=parseFloat(l[1]),r[2]=parseFloat(l[2]),r[3]=parseFloat(l[3]),r[4]=parseFloat(l[4]),r[5]=parseFloat(l[5])}}e.setLocalTransform(r)}}function wr(t){var e=t.getAttribute("style"),n={};if(!e)return n;var i={};Mx.lastIndex=0;for(var r;null!=(r=Mx.exec(e));)i[r[1]]=r[2];for(var o in bx)bx.hasOwnProperty(o)&&null!=i[o]&&(n[bx[o]]=i[o]);return n}function br(t,e,n){var i=e/t.width,r=n/t.height,o=Math.min(i,r);return{scale:o,x:-(t.x+t.width/2)*o+e/2,y:-(t.y+t.height/2)*o+n/2}}function Sr(t,e,n,i,r,o,a,s){var l=n-t,u=i-e,h=a-r,c=s-o,p=c*l-h*u;return Bx>p*p?void 0:(p=(h*(e-o)-c*(t-r))/p,[t+p*l,e+p*u])}function Tr(t,e,n,i,r,o,a){var s=t-n,l=e-i,u=(a?o:-o)/Ox(s*s+l*l),h=u*l,c=-u*s,p=t+h,f=e+c,d=n+h,g=i+c,y=(p+d)/2,v=(f+g)/2,m=d-p,_=g-f,x=m*m+_*_,w=r-o,b=p*g-d*f,S=(0>_?-1:1)*Ox(Rx(0,w*w*x-b*b)),T=(b*_-m*S)/x,M=(-b*m-_*S)/x,C=(b*_+m*S)/x,I=(-b*m+_*S)/x,k=T-y,A=M-v,D=C-y,P=I-v;return k*k+A*A>D*D+P*P&&(T=C,M=I),{cx:T,cy:M,x01:-h,y01:-c,x11:T*(r/w-1),y11:M*(r/w-1)}}function Mr(t,e){var n=Rx(e.r,0),i=Rx(e.r0||0,0),r=n>0,o=i>0;if(r||o){if(r||(n=i,i=0),i>n){var a=n;n=i,i=a}var s=!!e.clockwise,l=e.startAngle,u=e.endAngle,h=[l,u];Oi(h,!s);var c=Lx(h[0]-h[1]),p=e.cx,f=e.cy,d=e.cornerRadius||0,g=e.innerCornerRadius||0;if(n>Bx)if(c>Ix-Bx)t.moveTo(p+n*Ax(l),f+n*kx(l)),t.arc(p,f,n,l,u,!s),i>Bx&&(t.moveTo(p+i*Ax(u),f+i*kx(u)),t.arc(p,f,i,u,l,s));else{var y=Lx(n-i)/2,v=Ex(y,d),m=Ex(y,g),_=m,x=v,w=n*Ax(l),b=n*kx(l),S=i*Ax(u),T=i*kx(u),M=void 0,C=void 0,I=void 0,k=void 0;if((v>Bx||m>Bx)&&(M=n*Ax(u),C=n*kx(u),I=i*Ax(l),k=i*kx(l),Cx>c)){var A=Sr(w,b,I,k,M,C,S,T);if(A){var D=w-A[0],P=b-A[1],L=M-A[0],O=C-A[1],R=1/kx(Dx((D*L+P*O)/(Ox(D*D+P*P)*Ox(L*L+O*O)))/2),E=Ox(A[0]*A[0]+A[1]*A[1]);_=Ex(m,(i-E)/(R-1)),x=Ex(v,(n-E)/(R+1))}}if(c>Bx)if(x>Bx){var B=Tr(I,k,w,b,n,x,s),z=Tr(M,C,S,T,n,x,s);t.moveTo(p+B.cx+B.x01,f+B.cy+B.y01),v>x?t.arc(p+B.cx,f+B.cy,x,Px(B.y01,B.x01),Px(z.y01,z.x01),!s):(t.arc(p+B.cx,f+B.cy,x,Px(B.y01,B.x01),Px(B.y11,B.x11),!s),t.arc(p,f,n,Px(B.cy+B.y11,B.cx+B.x11),Px(z.cy+z.y11,z.cx+z.x11),!s),t.arc(p+z.cx,f+z.cy,x,Px(z.y11,z.x11),Px(z.y01,z.x01),!s))}else t.moveTo(p+w,f+b),t.arc(p,f,n,l,u,!s);else t.moveTo(p+w,f+b);if(i>Bx&&c>Bx)if(_>Bx){var B=Tr(S,T,M,C,i,-_,s),z=Tr(w,b,I,k,i,-_,s);t.lineTo(p+B.cx+B.x01,f+B.cy+B.y01),m>_?t.arc(p+B.cx,f+B.cy,_,Px(B.y01,B.x01),Px(z.y01,z.x01),!s):(t.arc(p+B.cx,f+B.cy,_,Px(B.y01,B.x01),Px(B.y11,B.x11),!s),t.arc(p,f,i,Px(B.cy+B.y11,B.cx+B.x11),Px(z.cy+z.y11,z.cx+z.x11),s),t.arc(p+z.cx,f+z.cy,_,Px(z.y11,z.x11),Px(z.y01,z.x01),!s))}else t.lineTo(p+S,f+T),t.arc(p,f,i,u,l,s);else t.lineTo(p+S,f+T)}else t.moveTo(p,f);t.closePath()}}function Cr(t){if("string"==typeof t){var e=Gx.get(t);return e&&e.image}return t}function Ir(t,e,n,i,r){if(t){if("string"==typeof t){if(e&&e.__zrImageSrc===t||!n)return e;var o=Gx.get(t),a={hostEl:n,cb:i,cbPayload:r};return o?(e=o.image,!Ar(e)&&o.pending.push(a)):(e=new Image,e.onload=e.onerror=kr,Gx.put(t,e.__cachedImgObj={image:e,pending:[a]}),e.src=e.__zrImageSrc=t),e}return t}return e}function kr(){var t=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;ea;a++)o[a]=Lr(o[a],r);return o.join("\n")}function Pr(t,e,n,i){i=i||{};var r=h({},i);r.font=e,n=N(n,"..."),r.maxIterations=N(i.maxIterations,2);var o=r.minChar=N(i.minChar,0);r.cnCharWidth=Ln("国",e);var a=r.ascCharWidth=Ln("a",e);r.placeholder=N(i.placeholder,"");for(var s=t=Math.max(0,t-1),l=0;o>l&&s>=a;l++)s-=a;var u=Ln(n,e);return u>s&&(n="",u=0),s=t-u,r.ellipsis=n,r.ellipsisWidth=u,r.contentWidth=s,r.containerWidth=t,r}function Lr(t,e){var n=e.containerWidth,i=e.font,r=e.contentWidth;if(!n)return"";var o=Ln(t,i);if(n>=o)return t;for(var a=0;;a++){if(r>=o||a>=e.maxIterations){t+=e.ellipsis;break}var s=0===a?Or(t,r,e.ascCharWidth,e.cnCharWidth):o>0?Math.floor(t.length*r/o):0;t=t.substr(0,s),o=Ln(t,i)}return""===t&&(t=e.placeholder),t}function Or(t,e,n,i){for(var r=0,o=0,a=t.length;a>o&&e>r;o++){var s=t.charCodeAt(o);r+=s>=0&&127>=s?n:i}return o}function Rr(t,e){null!=t&&(t+="");var n,i=e.overflow,r=e.padding,o=e.font,a="truncate"===i,s=zn(o),l=N(e.lineHeight,s),u="truncate"===e.lineOverflow,h=e.width;n=null!=h&&"break"===i||"breakAll"===i?t?Fr(t,e.font,h,"breakAll"===i,0).lines:[]:t?t.split("\n"):[];var c=n.length*l,p=N(e.height,c);if(c>p&&u){var f=Math.floor(p/l);n=n.slice(0,f)}var d=p,g=h;if(r&&(d+=r[0]+r[2],null!=g&&(g+=r[1]+r[3])),t&&a&&null!=g)for(var y=Pr(h,o,e.ellipsis,{minChar:e.truncateMinChar,placeholder:e.placeholder}),v=0;vu&&Br(i,t.substring(u,h),e,l),Br(i,r[2],e,l,r[1]),u=Wx.lastIndex}ua){w>0?(m.tokens=m.tokens.slice(0,w),n(m,x,_),i.lines=i.lines.slice(0,v+1)):i.lines=i.lines.slice(0,v);break t}var k=S.width,A=null==k||"auto"===k;if("string"==typeof k&&"%"===k.charAt(k.length-1))b.percentWidth=k,c.push(b),b.contentWidth=Ln(b.text,C);else{if(A){var D=S.backgroundColor,P=D&&D.image;P&&(P=Cr(P),Ar(P)&&(b.width=Math.max(b.width,P.width*I/P.height)))}var L=g&&null!=o?o-x:null;null!=L&&LL?(b.text="",b.width=b.contentWidth=0):(b.text=Dr(b.text,L-M,C,e.ellipsis,{minChar:e.truncateMinChar}),b.width=b.contentWidth=Ln(b.text,C)):b.contentWidth=Ln(b.text,C)}b.width+=M,x+=b.width,S&&(_=Math.max(_,b.lineHeight))}n(m,x,_)}i.outerWidth=i.width=N(o,f),i.outerHeight=i.height=N(a,p),i.contentHeight=p,i.contentWidth=f,d&&(i.outerWidth+=d[1]+d[3],i.outerHeight+=d[0]+d[2]);for(var v=0;v0&&d+i.accumWidth>i.width&&(o=e.split("\n"),c=!0),i.accumWidth=d}else{var g=Fr(e,h,i.width,i.breakAll,i.accumWidth);i.accumWidth=g.accumWidth+f,a=g.linesWidths,o=g.lines}}else o=e.split("\n");for(var y=0;y=33&&255>=e}function Nr(t){return zr(t)?jx[t]?!0:!1:!0}function Fr(t,e,n,i,r){for(var o=[],a=[],s="",l="",u=0,h=0,c=0;cn:r+h+f>n)?h?(s||l)&&(d?(s||(s=l,l="",u=0,h=u),o.push(s),a.push(h-u),l+=p,u+=f,s="",h=u):(l&&(s+=l,h+=u,l="",u=0),o.push(s),a.push(h),s=p,h=f)):d?(o.push(l),a.push(u),l=p,u=f):(o.push(p),a.push(f)):(h+=f,d?(l+=p,u+=f):(l&&(s+=l,l="",u=0),s+=p))}else l&&(s+=l,h+=u),o.push(s),a.push(h),s="",l="",u=0,h=0}return o.length||s||(s=t,l="",u=0),l&&(s+=l),s&&(o.push(s),a.push(h)),1===o.length&&(h+=r),{accumWidth:h,lines:o,linesWidths:a}}function Hr(t,e){return"string"==typeof t?t.lastIndexOf("%")>=0?parseFloat(t)/100*e:parseFloat(t):t}function Vr(t){return Gr(t),y(t.rich,Gr),t}function Gr(t){if(t){t.font=$x.makeFont(t);var e=t.align;"middle"===e&&(e="center"),t.align=null==e||Qx[e]?e:"left";var n=t.verticalAlign;"center"===n&&(n="middle"),t.verticalAlign=null==n||Jx[n]?n:"top";var i=t.padding;i&&(t.padding=V(t.padding))}}function Wr(t,e){return null==t||0>=e||"transparent"===t||"none"===t?null:t.image||t.colorStops?"#000":t}function Xr(t){return null==t||"none"===t?null:t.image||t.colorStops?"#000":t}function Ur(t,e,n){return"right"===e?t-n[1]:"center"===e?t+n[3]/2-n[1]/2:t+n[3]}function Yr(t){var e=t.text;return null!=e&&(e+=""),e}function jr(t){return!!(t.backgroundColor||t.borderWidth&&t.borderColor)}function qr(t,e,n){var i=t.cpx2,r=t.cpy2;return null===i||null===r?[(n?di:fi)(t.x1,t.cpx1,t.cpx2,t.x2,e),(n?di:fi)(t.y1,t.cpy1,t.cpy2,t.y2,e)]:[(n?wi:xi)(t.x1,t.cpx1,t.x2,e),(n?wi:xi)(t.y1,t.cpy1,t.y2,e)]}function Zr(t){delete Nw[t]}function Kr(t){if(!t)return!1;if("string"==typeof t)return gn(t,1)r;r++)n+=gn(e[r].color,1);return n/=i,hm>n}return!1}function $r(t,e){var n=new Fw(o(),t,e);return Nw[n.id]=n,n}function Qr(t){t.dispose()}function Jr(){for(var t in Nw)Nw.hasOwnProperty(t)&&Nw[t].dispose();Nw={}}function to(t){return Nw[t]}function eo(t,e){zw[t]=e}function no(t){return t.replace(/^\s+|\s+$/g,"")}function io(t,e,n,i){var r=e[1]-e[0],o=n[1]-n[0];if(0===r)return 0===o?n[0]:(n[0]+n[1])/2;if(i)if(r>0){if(t<=e[0])return n[0];if(t>=e[1])return n[1]}else{if(t>=e[0])return n[0];if(t<=e[1])return n[1]}else{if(t===e[0])return n[0];if(t===e[1])return n[1]}return(t-e[0])/r*o+n[0]}function ro(t,e){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return"string"==typeof t?no(t).match(/%$/)?parseFloat(t)/100*e:parseFloat(t):null==t?0/0:+t}function oo(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t}function ao(t){return t.sort(function(t,e){return t-e}),t}function so(t){if(t=+t,isNaN(t))return 0;for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n}function lo(t){var e=t.toString(),n=e.indexOf("e");if(n>0){var i=+e.slice(n+1);return 0>i?-i:0}var r=e.indexOf(".");return 0>r?0:e.length-1-r}function uo(t,e){var n=Math.log,i=Math.LN10,r=Math.floor(n(t[1]-t[0])/i),o=Math.round(n(Math.abs(e[1]-e[0]))/i),a=Math.min(Math.max(-r+o,0),20);return isFinite(a)?a:20}function ho(t,e,n){if(!t[e])return 0;var i=m(t,function(t,e){return t+(isNaN(e)?0:e)},0);if(0===i)return 0;for(var r=Math.pow(10,n),o=v(t,function(t){return(isNaN(t)?0:t)/i*r*100}),a=100*r,s=v(o,function(t){return Math.floor(t)}),l=m(s,function(t,e){return t+e},0),u=v(o,function(t,e){return t-s[e]});a>l;){for(var h=Number.NEGATIVE_INFINITY,c=null,p=0,f=u.length;f>p;++p)u[p]>h&&(h=u[p],c=p);++s[c],u[c]=0,++l}return s[e]/r}function co(t){var e=2*Math.PI;return(t%e+e)%e}function po(t){return t>-Gw&&Gw>t}function fo(t){if(t instanceof Date)return t;if("string"==typeof t){var e=Xw.exec(t);if(!e)return new Date(0/0);if(e[8]){var n=+e[4]||0;return"Z"!==e[8].toUpperCase()&&(n-=+e[8].slice(0,3)),new Date(Date.UTC(+e[1],+(e[2]||1)-1,+e[3]||1,n,+(e[5]||0),+e[6]||0,+e[7]||0))}return new Date(+e[1],+(e[2]||1)-1,+e[3]||1,+e[4]||0,+(e[5]||0),+e[6]||0,+e[7]||0)}return new Date(null==t?0/0:Math.round(t))}function go(t){return Math.pow(10,yo(t))}function yo(t){if(0===t)return 0;var e=Math.floor(Math.log(t)/Math.LN10);return t/Math.pow(10,e)>=10&&e++,e}function vo(t,e){var n,i=yo(t),r=Math.pow(10,i),o=t/r;return n=e?1.5>o?1:2.5>o?2:4>o?3:7>o?5:10:1>o?1:2>o?2:3>o?3:5>o?5:10,t=n*r,i>=-20?+t.toFixed(0>i?-i:0):t}function mo(t,e){var n=(t.length-1)*e+1,i=Math.floor(n),r=+t[i-1],o=n-i;return o?r+o*(t[i]-r):r}function _o(t){function e(t,n,i){return t.interval[i]s;s++)o[s]<=n&&(o[s]=n,a[s]=s?1:1-i),n=o[s],i=a[s];o[0]===o[1]&&a[0]*a[1]!==1?t.splice(r,1):r++}return t}function xo(t){var e=parseFloat(t);return e==t&&(0!==e||"string"!=typeof t||t.indexOf("x")<=0)?e:0/0}function wo(t){return!isNaN(xo(t))}function bo(){return Math.round(9*Math.random())}function So(t,e){return 0===e?t:So(e,t%e)}function To(t,e){return null==t?e:null==e?t:t*e/So(t,e)}function Mo(t){throw new Error(t)}function Co(t){return t instanceof Array?t:null==t?[]:[t]}function Io(t,e,n){if(t){t[e]=t[e]||{},t.emphasis=t.emphasis||{},t.emphasis[e]=t.emphasis[e]||{};for(var i=0,r=n.length;r>i;i++){var o=n[i];!t.emphasis[e].hasOwnProperty(o)&&t[e].hasOwnProperty(o)&&(t.emphasis[e][o]=t[e][o])}}}function ko(t){return!A(t)||T(t)||t instanceof Date?t:t.value}function Ao(t){return A(t)&&!(t instanceof Array)}function Do(t,e,n){var i="normalMerge"===n,r="replaceMerge"===n,o="replaceAll"===n;t=t||[],e=(e||[]).slice();var a=Y();y(e,function(t,n){return A(t)?void 0:void(e[n]=null)});var s=Po(t,a,n);return(i||r)&&Lo(s,t,a,e),i&&Oo(s,e),i||r?Ro(s,e,r):o&&Eo(s,e),Bo(s),s}function Po(t,e,n){var i=[];if("replaceAll"===n)return i;for(var r=0;rr?n:i;for(var s=[],l=n||[],u=i,h=Math.max(l.length,u.length),c=0;h>c;++c){var p=t.getDimensionInfo(c);if("ordinal"===p.type)s[c]=(1>r?l:u)[c];else{var f=l&&l[c]?l[c]:0,d=u[c],a=null==l?i[c]:vn(f,d,r);s[c]=oo(a,o?Math.max(lo(f),lo(d)):e)}}return s}function Qo(t){var e={main:"",sub:""};if(t){var n=t.split($w);e.main=n[0]||"",e.sub=n[1]||""}return e}function Jo(t){G(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(t),'componentType "'+t+'" illegal')}function ta(t){return!(!t||!t[Jw])}function ea(t){t.$constructor=t,t.extend=function(t){function e(){for(var r=[],o=0;o=0||r&&p(r,s)<0)){var l=n.getShallow(s,e);null!=l&&(o[t[a][0]]=l)}}return o}}function ua(t){return null!=t&&"none"!==t}function ha(t){if("string"!=typeof t)return t;var e=xb.get(t);return e||(e=ln(t,-.1),xb.put(t,e)),e}function ca(t,e,n){t.onHoverStateChange&&(t.hoverState||0)!==n&&t.onHoverStateChange(e),t.hoverState=n}function pa(t){ca(t,"emphasis",hb)}function fa(t){t.hoverState===hb&&ca(t,"normal",lb)}function da(t){ca(t,"blur",ub)}function ga(t){t.hoverState===ub&&ca(t,"normal",lb)}function ya(t){t.selected=!0}function va(t){t.selected=!1}function ma(t,e,n){e(t,n)}function _a(t,e,n){ma(t,e,n),t.isGroup&&t.traverse(function(t){ma(t,e,n)})}function xa(t,e){switch(e){case"emphasis":t.hoverState=hb;break;case"normal":t.hoverState=lb;break;case"blur":t.hoverState=ub;break;case"select":t.selected=!0}}function wa(t,e,n,i){for(var r=t.style,o={},a=0;a=0,o=!1;if(t instanceof z_){var a=sb(t),s=r?a.selectFill||a.normalFill:a.normalFill,l=r?a.selectStroke||a.normalStroke:a.normalStroke; +if(ua(s)||ua(l)){i=i||{};var u=i.style||{};!ua(u.fill)&&ua(s)?(o=!0,i=h({},i),u=h({},u),u.fill=ha(s)):!ua(u.stroke)&&ua(l)&&(o||(i=h({},i),u=h({},u)),u.stroke=ha(l)),i.style=u}}if(i&&null==i.z2){o||(i=h({},i));var c=t.z2EmphasisLift;i.z2=t.z2+(null!=c?c:fb)}return i}function Sa(t,e,n){if(n&&null==n.z2){n=h({},n);var i=t.z2SelectLift;n.z2=t.z2+(null!=i?i:db)}return n}function Ta(t,e,n){var i=p(t.currentStates,e)>=0,r=t.style.opacity,o=i?null:wa(t,["opacity"],e,{opacity:1});n=n||{};var a=n.style||{};return null==a.opacity&&(n=h({},n),a=h({opacity:i?r:.1*o.opacity},a),n.style=a),n}function Ma(t,e){var n=this.states[t];if(this.style){if("emphasis"===t)return ba(this,t,e,n);if("blur"===t)return Ta(this,t,n);if("select"===t)return Sa(this,t,n)}return n}function Ca(t){t.stateProxy=Ma;var e=t.getTextContent(),n=t.getTextGuideLine();e&&(e.stateProxy=Ma),n&&(n.stateProxy=Ma)}function Ia(t,e){!Ea(t,e)&&!t.__highByOuter&&_a(t,pa)}function ka(t,e){!Ea(t,e)&&!t.__highByOuter&&_a(t,fa)}function Aa(t,e){t.__highByOuter|=1<<(e||0),_a(t,pa)}function Da(t,e){!(t.__highByOuter&=~(1<<(e||0)))&&_a(t,fa)}function Pa(t){_a(t,da)}function La(t){_a(t,ga)}function Oa(t){_a(t,ya)}function Ra(t){_a(t,va)}function Ea(t,e){return t.__highDownSilentOnTouch&&e.zrByTouch}function Ba(t){var e=t.getModel();e.eachComponent(function(e,n){var i="series"===e?t.getViewOfSeriesModel(n):t.getViewOfComponentModel(n);i.group.traverse(function(t){ga(t)})})}function za(t,e,n,i,r){function o(t,e){for(var n=0;nu;)s=o.getItemGraphicEl(u++);if(s){var h=rb(s);za(r,h.focus,h.blurScope,n,i)}else{var c=t.get(["emphasis","focus"]),p=t.get(["emphasis","blurScope"]);null!=c&&za(r,c,p,n,i)}}}function Fa(t,e){if(qa(e)){var n=e.dataType,i=t.getData(n),r=Xo(i,e);T(r)||(r=[r]),t[e.type===_b?"toggleSelect":e.type===vb?"select":"unselect"](r,n)}}function Ha(t){var e=t.getAllData();y(e,function(e){var n=e.data,i=e.type;n.eachItemGraphicEl(function(e,n){t.isSelected(n,i)?Oa(e):Ra(e)})})}function Va(t){var e=[];return t.eachSeries(function(t){var n=t.getAllData();y(n,function(n){var i=(n.data,n.type),r=t.getSelectedDataIndices();if(r.length>0){var o={dataIndex:r,seriesIndex:t.seriesIndex};null!=i&&(o.dataType=i),e.push(o)}})}),e}function Ga(t,e,n){Ua(t,!0),_a(t,Ca),Wa(t,e,n)}function Wa(t,e,n){var i=rb(t);null!=e?(i.focus=e,i.blurScope=n):i.focus&&(i.focus=null)}function Xa(t,e,n,i){n=n||"itemStyle";for(var r=0;r=ob&&(e=ab[t]=ob++),e}function qa(t){var e=t.type;return e===vb||e===mb||e===_b}function Za(t){var e=t.type;return e===gb||e===yb}function Ka(t){var e=sb(t);e.normalFill=t.style.fill,e.normalStroke=t.style.stroke;var n=t.states.select||{};e.selectFill=n.style&&n.style.fill||null,e.selectStroke=n.style&&n.style.stroke||null}function $a(t){return z_.extend(t)}function Qa(t,e){return Cb(t,e)}function Ja(t,e){Mb[t]=e}function ts(t){return Mb.hasOwnProperty(t)?Mb[t]:void 0}function es(t,e,n,i){var r=nr(t,e);return n&&("center"===i&&(n=is(n,r.getBoundingRect())),rs(r,n)),r}function ns(t,e,n){var i=new Q_({style:{image:t,x:e.x,y:e.y,width:e.width,height:e.height},onload:function(t){if("center"===n){var r={width:t.width,height:t.height};i.setStyle(is(e,r))}}});return i}function is(t,e){var n,i=e.width/e.height,r=t.height*i;r<=t.width?n=t.height:(r=t.width,n=r/i);var o=t.x+t.width/2,a=t.y+t.height/2;return{x:o-r/2,y:a-n/2,width:r,height:n}}function rs(t,e){if(t.applyTransform){var n=t.getBoundingRect(),i=n.calculateTransform(e);t.applyTransform(i)}}function os(t){return sr(t.shape,t.shape,t.style),t}function as(t){return lr(t.shape,t.shape,t.style),t}function ss(t,e,n,i,r,o,a){var s,l=!1;"function"==typeof r?(a=o,o=r,r=null):A(r)&&(o=r.cb,a=r.during,l=r.isFrom,s=r.removeOpt,r=r.dataIndex);var u,h="update"===t,c="remove"===t;if(i&&i.ecModel){var p=i.ecModel.getUpdatePayload();u=p&&p.animation}var f=i&&i.isAnimationEnabled();if(c||e.stopAnimation("remove"),f){var d=void 0,g=void 0,y=void 0;u?(d=u.duration||0,g=u.easing||"cubicOut",y=u.delay||0):c?(s=s||{},d=N(s.duration,200),g=N(s.easing,"cubicOut"),y=0):(d=i.getShallow(h?"animationDurationUpdate":"animationDuration"),g=i.getShallow(h?"animationEasingUpdate":"animationEasing"),y=i.getShallow(h?"animationDelayUpdate":"animationDelay")),"function"==typeof y&&(y=y(r,i.getAnimationDelayParams?i.getAnimationDelayParams(e,r):null)),"function"==typeof d&&(d=d(r)),d>0?l?e.animateFrom(n,{duration:d,delay:y||0,easing:g,done:o,force:!!o||!!a,scope:t,during:a}):e.animateTo(n,{duration:d,delay:y||0,easing:g,done:o,force:!!o||!!a,setToFinal:!0,scope:t,during:a}):(e.stopAnimation(),!l&&e.attr(n),o&&o())}else e.stopAnimation(),!l&&e.attr(n),a&&a(1),o&&o()}function ls(t,e,n,i,r,o){ss("update",t,e,n,i,r,o)}function us(t,e,n,i,r,o){ss("init",t,e,n,i,r,o)}function hs(t,e,n,i,r,o){fs(t)||ss("remove",t,e,n,i,r,o)}function cs(t,e,n,i){t.removeTextContent(),t.removeTextGuideLine(),hs(t,{style:{opacity:0}},e,n,i)}function ps(t,e,n){function i(){t.parent&&t.parent.remove(t)}t.isGroup?t.traverse(function(t){t.isGroup||cs(t,e,n,i)}):cs(t,e,n,i)}function fs(t){if(!t.__zr)return!0;for(var e=0;eMath.abs(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function vs(t){return!t.isGroup}function ms(t){return null!=t.shape}function _s(t,e,n){function i(t){var e={};return t.traverse(function(t){vs(t)&&t.anid&&(e[t.anid]=t)}),e}function r(t){var e={x:t.x,y:t.y,rotation:t.rotation};return ms(t)&&(e.shape=h({},t.shape)),e}if(t&&e){var o=i(t);e.traverse(function(t){if(vs(t)&&t.anid){var e=o[t.anid];if(e){var i=r(t);t.attr(r(e)),ls(t,i,n,rb(t).dataIndex)}}})}}function xs(t,e){return v(t,function(t){var n=t[0];n=Sb(n,e.x),n=Tb(n,e.x+e.width);var i=t[1];return i=Sb(i,e.y),i=Tb(i,e.y+e.height),[n,i]})}function ws(t,e){var n=Sb(t.x,e.x),i=Tb(t.x+t.width,e.x+e.width),r=Sb(t.y,e.y),o=Tb(t.y+t.height,e.y+e.height);return i>=n&&o>=r?{x:n,y:r,width:i-n,height:o-r}:void 0}function bs(t,e,n){var i=h({rectHover:!0},e),r=i.style={strokeNoScale:!0};return n=n||{x:-1,y:-1,width:2,height:2},t?0===t.indexOf("image://")?(r.image=t.slice(8),c(r,n),new Q_(i)):es(t.replace("path://",""),i,n,"center"):void 0}function Ss(t,e,n,i,r){for(var o=0,a=r[r.length-1];og||g>1)return!1;var y=Ms(f,d,h,c)/p;return 0>y||y>1?!1:!0}function Ms(t,e,n,i){return t*i-n*e}function Cs(t){return 1e-6>=t&&t>=-1e-6}function Is(t,e){for(var n=0;n=0&&n.push(t)}),n}t.topologicalTravel=function(t,e,i,r){function o(t){l[t].entryCount--,0===l[t].entryCount&&u.push(t)}function a(t){h[t]=!0,o(t)}if(t.length){var s=n(e),l=s.graph,u=s.noEntryList,h={};for(y(t,function(t){h[t]=!0});u.length;){var c=u.pop(),p=l[c],f=!!h[c];f&&(i.call(r,c,p.originalDeps.slice()),delete h[c]),y(p.successor,f?a:o)}y(h,function(){var t="";throw new Error(t)})}}}function Gs(t,e){return l(l({},t,!0),e,!0)}function Ws(t,e){t=t.toUpperCase(),Qb[t]=new Xb(e),$b[t]=e}function Xs(t){if(C(t)){var e=$b[t.toUpperCase()]||{};return t===qb||t===Zb?s(e):l(s(e),s($b[Kb]),!1)}return l(s(t),s($b[Kb]),!1)}function Us(t){return Qb[t]}function Ys(){return Qb[Kb]}function js(t,e){return t+="","0000".substr(0,e-t.length)+t}function qs(t){switch(t){case"half-year":case"quarter":return"month";case"week":case"half-week":return"day";case"half-day":case"quarter-day":return"hour";default:return t}}function Zs(t){return t===qs(t)}function Ks(t){switch(t){case"year":case"month":return"day";case"millisecond":return"millisecond";default:return"second"}}function $s(t,e,n,i){var r=fo(t),o=r[el(n)](),a=r[nl(n)]()+1,s=Math.floor((a-1)/4)+1,l=r[il(n)](),u=r["get"+(n?"UTC":"")+"Day"](),h=r[rl(n)](),c=(h-1)%12+1,p=r[ol(n)](),f=r[al(n)](),d=r[sl(n)](),g=i instanceof Xb?i:Us(i||Jb)||Ys(),y=g.getModel("time"),v=y.get("month"),m=y.get("monthAbbr"),_=y.get("dayOfWeek"),x=y.get("dayOfWeekAbbr");return(e||"").replace(/{yyyy}/g,o+"").replace(/{yy}/g,o%100+"").replace(/{Q}/g,s+"").replace(/{MMMM}/g,v[a-1]).replace(/{MMM}/g,m[a-1]).replace(/{MM}/g,js(a,2)).replace(/{M}/g,a+"").replace(/{dd}/g,js(l,2)).replace(/{d}/g,l+"").replace(/{eeee}/g,_[u]).replace(/{ee}/g,x[u]).replace(/{e}/g,u+"").replace(/{HH}/g,js(h,2)).replace(/{H}/g,h+"").replace(/{hh}/g,js(c+"",2)).replace(/{h}/g,c+"").replace(/{mm}/g,js(p,2)).replace(/{m}/g,p+"").replace(/{ss}/g,js(f,2)).replace(/{s}/g,f+"").replace(/{SSS}/g,js(d,3)).replace(/{S}/g,d+"")}function Qs(t,e,n,i,r){var o=null;if("string"==typeof n)o=n;else if("function"==typeof n)o=n(t.value,e,{level:t.level});else{var a=h({},oS);if(t.level>0)for(var s=0;s=0;--s)if(l[u]){o=l[u];break}o=o||a.none}if(T(o)){var f=null==t.level?0:t.level>=0?t.level:o.length+t.level;f=Math.min(f,o.length-1),o=o[f]}}return $s(new Date(t.value),o,r,i)}function Js(t,e){var n=fo(t),i=n[nl(e)]()+1,r=n[il(e)](),o=n[rl(e)](),a=n[ol(e)](),s=n[al(e)](),l=n[sl(e)](),u=0===l,h=u&&0===s,c=h&&0===a,p=c&&0===o,f=p&&1===r,d=f&&1===i;return d?"year":f?"month":p?"day":c?"hour":h?"minute":u?"second":"millisecond"}function tl(t,e,n){var i="number"==typeof t?fo(t):t;switch(e=e||Js(t,n)){case"year":return i[el(n)]();case"half-year":return i[nl(n)]()>=6?1:0;case"quarter":return Math.floor((i[nl(n)]()+1)/4);case"month":return i[nl(n)]();case"day":return i[il(n)]();case"half-day":return i[rl(n)]()/24;case"hour":return i[rl(n)]();case"minute":return i[ol(n)]();case"second":return i[al(n)]();case"millisecond":return i[sl(n)]()}}function el(t){return t?"getUTCFullYear":"getFullYear"}function nl(t){return t?"getUTCMonth":"getMonth"}function il(t){return t?"getUTCDate":"getDate"}function rl(t){return t?"getUTCHours":"getHours"}function ol(t){return t?"getUTCMinutes":"getMinutes"}function al(t){return t?"getUTCSeconds":"getSeconds"}function sl(t){return t?"getUTCSeconds":"getSeconds"}function ll(t){return t?"setUTCFullYear":"setFullYear"}function ul(t){return t?"setUTCMonth":"setMonth"}function hl(t){return t?"setUTCDate":"setDate"}function cl(t){return t?"setUTCHours":"setHours"}function pl(t){return t?"setUTCMinutes":"setMinutes"}function fl(t){return t?"setUTCSeconds":"setSeconds"}function dl(t){return t?"setUTCSeconds":"setSeconds"}function gl(t,e,n,i,r,o,a,s){var l=new $x({style:{text:t,font:e,align:n,verticalAlign:i,padding:r,rich:o,overflow:a?"truncate":null,lineHeight:s}});return l.getBoundingRect()}function yl(t){if(!wo(t))return C(t)?t:"-";var e=(t+"").split(".");return e[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(e.length>1?"."+e[1]:"")}function vl(t,e){return t=(t||"").toLowerCase().replace(/-(.)/g,function(t,e){return e.toUpperCase()}),e&&t&&(t=t.charAt(0).toUpperCase()+t.slice(1)),t}function ml(t){return null==t?"":(t+"").replace(cS,function(t,e){return pS[e]})}function _l(t,e,n){function i(t){return t&&W(t)?t:"-"}function r(t){return!(null==t||isNaN(t)||!isFinite(t))}var o="yyyy-MM-dd hh:mm:ss",a="time"===e,s=t instanceof Date;if(a||s){var l=a?fo(t):t;if(!isNaN(+l))return $s(l,o,n);if(s)return"-"}if("ordinal"===e)return I(t)?i(t):k(t)&&r(t)?t+"":"-";var u=xo(t);return r(u)?yl(u):I(t)?i(t):"-"}function xl(t,e,n){T(e)||(e=[e]);var i=e.length;if(!i)return"";for(var r=e[0].$vars||[],o=0;os;s++)for(var l=0;l':'';var a=n.markerId||"markerX";return{renderMode:o,content:"{"+a+"|} ",style:"subItem"===r?{width:4,height:4,borderRadius:2,backgroundColor:i}:{width:10,height:10,borderRadius:5,backgroundColor:i}}}function Sl(t,e,n){("week"===t||"month"===t||"quarter"===t||"half-year"===t||"year"===t)&&(t="MM-dd\nyyyy");var i=fo(e),r=n?"UTC":"",o=i["get"+r+"FullYear"](),a=i["get"+r+"Month"]()+1,s=i["get"+r+"Date"](),l=i["get"+r+"Hours"](),u=i["get"+r+"Minutes"](),h=i["get"+r+"Seconds"](),c=i["get"+r+"Milliseconds"]();return t=t.replace("MM",js(a,2)).replace("M",a).replace("yyyy",o).replace("yy",o%100+"").replace("dd",js(s,2)).replace("d",s).replace("hh",js(l,2)).replace("h",l).replace("mm",js(u,2)).replace("m",u).replace("ss",js(h,2)).replace("s",h).replace("SSS",js(c,3))}function Tl(t){return t?t.charAt(0).toUpperCase()+t.substr(1):t}function Ml(t,e){return e=e||"transparent",C(t)?t:A(t)?t.colorStops&&(t.colorStops[0]||{}).color||e:e}function Cl(t,e){if("_blank"===e||"blank"===e){var n=window.open();n.opener=null,n.location.href=t}else window.open(t,e)}function Il(t,e,n,i,r){var o=0,a=0;null==i&&(i=1/0),null==r&&(r=1/0);var s=0;e.eachChild(function(l,u){var h,c,p=l.getBoundingRect(),f=e.childAt(u+1),d=f&&f.getBoundingRect();if("horizontal"===t){var g=p.width+(d?-d.x+p.x:0);h=o+g,h>i||l.newline?(o=0,h=g,a+=s+n,s=p.height):s=Math.max(s,p.height)}else{var y=p.height+(d?-d.y+p.y:0);c=a+y,c>r||l.newline?(o+=s+n,a=0,c=y,s=p.width):s=Math.max(s,p.width)}l.newline||(l.x=o,l.y=a,l.markRedraw(),"horizontal"===t?o=h+n:a=c+n)})}function kl(t,e,n){n=hS(n||0);var i=e.width,r=e.height,o=ro(t.left,i),a=ro(t.top,r),s=ro(t.right,i),l=ro(t.bottom,r),u=ro(t.width,i),h=ro(t.height,r),c=n[2]+n[0],p=n[1]+n[3],f=t.aspect;switch(isNaN(u)&&(u=i-s-p-o),isNaN(h)&&(h=r-l-c-a),null!=f&&(isNaN(u)&&isNaN(h)&&(f>i/r?u=.8*i:h=.8*r),isNaN(u)&&(u=f*h),isNaN(h)&&(h=u/f)),isNaN(o)&&(o=i-s-u-p),isNaN(a)&&(a=r-l-h-c),t.left||t.right){case"center":o=i/2-u/2-n[3];break;case"right":o=i-u-p}switch(t.top||t.bottom){case"middle":case"center":a=r/2-h/2-n[0];break;case"bottom":a=r-h-c}o=o||0,a=a||0,isNaN(u)&&(u=i-p-o-(s||0)),isNaN(h)&&(h=r-c-a-(l||0));var d=new rm(o+n[3],a+n[0],u,h);return d.margin=n,d}function Al(t){var e=t.layoutMode||t.constructor.layoutMode;return A(e)?e:e?{type:e}:null}function Dl(t,e,n){function i(n,i){var a={},l=0,u={},h=0,c=2;if(yS(n,function(e){u[e]=t[e]}),yS(n,function(t){r(e,t)&&(a[t]=u[t]=e[t]),o(a,t)&&l++,o(u,t)&&h++}),s[i])return o(e,n[1])?u[n[2]]=null:o(e,n[2])&&(u[n[1]]=null),u;if(h!==c&&l){if(l>=c)return a;for(var p=0;pi;i++)t.push(e+i)}function r(t){var e=t.dimsDef;return e?e.length:1}var o={},a=zl(e);if(!a||!t)return o;var s,l,u=[],h=[],c=e.ecModel,p=zS(c).datasetMap,f=a.uid+"_"+n.seriesLayoutBy;t=t.slice(),y(t,function(e,n){var i=A(e)?e:t[n]={name:e};"ordinal"===i.type&&null==s&&(s=n,l=r(i)),o[i.name]=[]});var d=p.get(f)||p.set(f,{categoryWayDim:l,valueWayDim:0});return y(t,function(t,e){var n=t.name,a=r(t);if(null==s){var l=d.valueWayDim;i(o[n],l,a),i(h,l,a),d.valueWayDim+=a}else if(s===e)i(o[n],0,a),i(u,0,a);else{var l=d.categoryWayDim;i(o[n],l,a),i(h,l,a),d.categoryWayDim+=a}}),u.length&&(o.itemName=u),h.length&&(o.seriesName=h),o}function zl(t){var e=t.get("data",!0);return e?void 0:jo(t.ecModel,"dataset",{index:t.get("datasetIndex",!0),id:t.get("datasetId",!0)},Kw).models[0]}function Nl(t){return t.get("transform",!0)||t.get("fromTransformResult",!0)?jo(t.ecModel,"dataset",{index:t.get("fromDatasetIndex",!0),id:t.get("fromDatasetId",!0)},Kw).models:[]}function Fl(t,e){return Hl(t.data,t.sourceFormat,t.seriesLayoutBy,t.dimensionsDefine,t.startIndex,e)}function Hl(t,e,n,i,r,o){function a(t){var e=C(t);return null!=t&&isFinite(t)&&""!==t?e?BS.Might:BS.Not:e&&"-"!==t?BS.Must:void 0}var s,l=5;if(P(t))return BS.Not;var u,h;if(i){var c=i[o];A(c)?(u=c.name,h=c.type):C(c)&&(u=c)}if(null!=h)return"ordinal"===h?BS.Must:BS.Not;if(e===AS){var p=t;if(n===ES){for(var f=p[o],d=0;d<(f||[]).length&&l>d;d++)if(null!=(s=a(f[r+d])))return s}else for(var d=0;dd;d++){var g=p[r+d];if(g&&null!=(s=a(g[o])))return s}}else if(e===DS){var y=t;if(!u)return BS.Not;for(var d=0;dd;d++){var v=y[d];if(v&&null!=(s=a(v[u])))return s}}else if(e===PS){var m=t;if(!u)return BS.Not;var f=m[u];if(!f||P(f))return BS.Not;for(var d=0;dd;d++)if(null!=(s=a(f[d])))return s}else if(e===kS)for(var _=t,d=0;d<_.length&&l>d;d++){var v=_[d],x=ko(v);if(!T(x))return BS.Not;if(null!=(s=a(x[o])))return s}return BS.Not}function Vl(t,e,n){var i=NS.get(e);if(!i)return n;var r=i(t);return r?n.concat(r):n}function Gl(t,e){for(var n=t.length,i=0;n>i;i++)if(t[i].length>e)return t[i];return t[n-1]}function Wl(t,e,n,i,r,o,a){o=o||t;var s=e(o),l=s.paletteIdx||0,u=s.paletteNameMap=s.paletteNameMap||{};if(u.hasOwnProperty(r))return u[r];var h=null!=a&&i?Gl(i,a):n;if(h=h||n,h&&h.length){var c=h[l];return r&&(u[r]=c),s.paletteIdx=(l+1)%h.length,c}}function Xl(t,e){e(t).paletteIdx=0,e(t).paletteNameMap={}}function Ul(t,e){if(e){var n=e.seriesIndex,i=e.seriesId,r=e.seriesName;return null!=n&&t.componentIndex!==n||null!=i&&t.id!==i||null!=r&&t.name!==r}}function Yl(t,e){var n=t.color&&!t.colorLayer;y(e,function(e,i){"colorLayer"===i&&n||wS.hasClass(i)||("object"==typeof e?t[i]=t[i]?l(t[i],e,!1):s(e):null==t[i]&&(t[i]=e))})}function jl(t,e,n){if(T(e)){var i=Y();return y(e,function(t){if(null!=t){var e=Fo(t,null);null!=e&&i.set(t,!0)}}),_(n,function(e){return e&&i.get(e[t])})}var r=Fo(e,null);return _(n,function(e){return e&&null!=r&&e[t]===r})}function ql(t,e){return e.hasOwnProperty("subType")?_(t,function(t){return t&&t.subType===e.subType}):t}function Zl(t){var e=Y();return t&&y(Co(t.replaceMerge),function(t){e.set(t,!0)}),{replaceMergeMainTypeMap:e}}function Kl(t,e,n){function i(t){y(e,function(e){e(t,n)})}var r,o,a=[],s=t.baseOption,l=t.timeline,u=t.options,h=t.media,c=!!t.media,p=!!(u||l||s&&s.timeline);return s?(o=s,o.timeline||(o.timeline=l)):((p||c)&&(t.options=t.media=null),o=t),c&&T(h)&&y(h,function(t){t&&t.option&&(t.query?a.push(t):r||(r=t))}),i(o),y(u,function(t){return i(t)}),y(a,function(t){return i(t.option)}),{baseOption:o,timelineOptions:u||[],mediaDefault:r,mediaList:a}}function $l(t,e,n){var i={width:e,height:n,aspectratio:e/n},r=!0;return y(t,function(t,e){var n=e.match(QS);if(n&&n[1]&&n[2]){var o=n[1],a=n[2].toLowerCase();Ql(i[a],t,o)||(r=!1)}}),r}function Ql(t,e,n){return"min"===n?t>=e:"max"===n?e>=t:t===e}function Jl(t,e){return t.join(",")===e.join(",")}function tu(t){var e=t&&t.itemStyle;if(e)for(var n=0,i=nT.length;i>n;n++){var r=nT[n],o=e.normal,a=e.emphasis;o&&o[r]&&(t[r]=t[r]||{},t[r].normal?l(t[r].normal,o[r]):t[r].normal=o[r],o[r]=null),a&&a[r]&&(t[r]=t[r]||{},t[r].emphasis?l(t[r].emphasis,a[r]):t[r].emphasis=a[r],a[r]=null)}}function eu(t,e,n){if(t&&t[e]&&(t[e].normal||t[e].emphasis)){var i=t[e].normal,r=t[e].emphasis;i&&(n?(t[e].normal=t[e].emphasis=null,c(t[e],i)):t[e]=i),r&&(t.emphasis=t.emphasis||{},t.emphasis[e]=r,r.focus&&(t.emphasis.focus=r.focus),r.blurScope&&(t.emphasis.blurScope=r.blurScope))}}function nu(t){eu(t,"itemStyle"),eu(t,"lineStyle"),eu(t,"areaStyle"),eu(t,"label"),eu(t,"labelLine"),eu(t,"upperLabel"),eu(t,"edgeLabel")}function iu(t,e){var n=eT(t)&&t[e],i=eT(n)&&n.textStyle;if(i)for(var r=0,o=qw.length;o>r;r++){var a=qw[r];i.hasOwnProperty(a)&&(n[a]=i[a])}}function ru(t){t&&(nu(t),iu(t,"label"),t.emphasis&&iu(t.emphasis,"label"))}function ou(t){if(eT(t)){tu(t),nu(t),iu(t,"label"),iu(t,"upperLabel"),iu(t,"edgeLabel"),t.emphasis&&(iu(t.emphasis,"label"),iu(t.emphasis,"upperLabel"),iu(t.emphasis,"edgeLabel"));var e=t.markPoint;e&&(tu(e),ru(e));var n=t.markLine;n&&(tu(n),ru(n));var i=t.markArea;i&&ru(i);var r=t.data;if("graph"===t.type){r=r||t.nodes;var o=t.links||t.edges;if(o&&!P(o))for(var a=0;a=0;d--){var g=t[d];if(s||(p=g.data.rawIndexOf(g.stackedByDimension,c)),p>=0){var y=g.data.getByRawIndex(g.stackResultDimension,p);if(h>=0&&y>0||0>=h&&0>y){h+=y,f=y;break}}}return i[0]=h,i[1]=f,i});a.hostModel.setData(l),e.data=l})}function xu(t){return t instanceof aT}function wu(t,e,n,i){n=n||Mu(t);var r=e.seriesLayoutBy,o=Cu(t,n,r,e.sourceHeader,e.dimensions),a=new aT({data:t,sourceFormat:n,seriesLayoutBy:r,dimensionsDefine:o.dimensionsDefine,startIndex:o.startIndex,dimensionsDetectedCount:o.dimensionsDetectedCount,encodeDefine:Tu(i),metaRawOption:s(e)});return a}function bu(t){return new aT({data:t,sourceFormat:P(t)?LS:kS})}function Su(t){return new aT({data:t.data,sourceFormat:t.sourceFormat,seriesLayoutBy:t.seriesLayoutBy,dimensionsDefine:s(t.dimensionsDefine),startIndex:t.startIndex,dimensionsDetectedCount:t.dimensionsDetectedCount,encodeDefine:Tu(t.encodeDefine)})}function Tu(t){return t?Y(t):null}function Mu(t){var e=OS;if(P(t))e=LS;else if(T(t)){0===t.length&&(e=AS);for(var n=0,i=t.length;i>n;n++){var r=t[n];if(null!=r){if(T(r)){e=AS;break}if(A(r)){e=DS;break}}}}else if(A(t)){for(var o in t)if(Z(t,o)&&g(t[o])){e=PS;break}}else if(null!=t)throw new Error("Invalid data");return e}function Cu(t,e,n,i,r){var o,a;if(!t)return{dimensionsDefine:ku(r),startIndex:a,dimensionsDetectedCount:o};if(e===AS){var s=t;"auto"===i||null==i?Au(function(t){null!=t&&"-"!==t&&(C(t)?null==a&&(a=1):a=0)},n,s,10):a=k(i)?i:i?1:0,r||1!==a||(r=[],Au(function(t,e){r[e]=null!=t?t+"":""},n,s,1/0)),o=r?r.length:n===ES?s.length:s[0]?s[0].length:null}else if(e===DS)r||(r=Iu(t));else if(e===PS)r||(r=[],y(t,function(t,e){r.push(e)}));else if(e===kS){var l=ko(t[0]);o=T(l)&&l.length||1}return{startIndex:a,dimensionsDefine:ku(r),dimensionsDetectedCount:o}}function Iu(t){for(var e,n=0;nr;r++)t(n[r]?n[r][0]:null,r);else for(var o=n[0]||[],r=0;rr;r++)t(o[r],r)}function Du(t,e){var n=uT[Ou(t,e)];return n}function Pu(t,e){var n=cT[Ou(t,e)];return n}function Lu(t){var e=fT[t];return e}function Ou(t,e){return t===AS?t+"_"+e:t}function Ru(t,e,n){if(t){var i=t.getRawDataItem(e);if(null!=i){var r,o,a=t.getProvider().getSource().sourceFormat,s=t.getDimensionInfo(n);return s&&(r=s.name,o=s.index),Lu(a)(i,o,r)}}}function Eu(t){var e,n;return A(t)?t.type&&(n=t):e=t,{markupText:e,markupFragment:n}}function Bu(t){return new yT(t)}function zu(t,e){var n=e&&e.type;if("ordinal"===n){var i=e&&e.ordinalMeta;return i?i.parseAndCollect(t):t}return"time"===n&&"number"!=typeof t&&null!=t&&"-"!==t&&(t=+fo(t)),null==t||""===t?0/0:+t}function Nu(t,e){var n=new xT,i=t.data,r=n.sourceFormat=t.sourceFormat,o=t.startIndex,a=[],s={},l=t.dimensionsDefine;if(l)y(l,function(t,e){var n=t.name,i={index:e,name:n,displayName:t.displayName};if(a.push(i),null!=n){var r="";Z(s,n)&&Mo(r),s[n]=i}});else for(var u=0;ur;r++)i.push(n[r].slice());return i}if(e===DS){for(var i=[],r=0,o=n.length;o>r;r++)i.push(h({},n[r]));return i}}function Vu(t,e,n){return null!=n?"number"==typeof n||!isNaN(n)&&!Z(e,n)?t[n]:Z(e,n)?e[n]:void 0:void 0}function Gu(t){return s(t)}function Wu(t){t=s(t);var e=t.type,n="";e||Mo(n);var i=e.split(":");2!==i.length&&Mo(n);var r=!1;"echarts"===i[0]&&(e=i[1],r=!0),t.__isBuiltIn=r,wT.set(e,t)}function Xu(t,e,n){var i=Co(t),r=i.length,o="";r||Mo(o);for(var a=0,s=r;s>a;a++){var l=i[a];e=Uu(l,e,n,1===r?null:a),a!==s-1&&(e.length=Math.max(e.length,1))}return e}function Uu(t,e){var n="";e.length||Mo(n),A(t)||Mo(n);var i=t.type,r=wT.get(i);r||Mo(n);var o=v(e,function(t){return Nu(t,r)}),a=Co(r.transform({upstream:o[0],upstreamList:o,config:s(t.config)}));return v(a,function(t){var n="";A(t)||Mo(n);var i=t.data;null!=i?A(i)||g(i)||Mo(n):i=e[0].data;var r=El(e[0],{seriesLayoutBy:RS,sourceHeader:0,dimensions:t.dimensions});return wu(i,r,null,null)})}function Yu(t){var e=t.option.transform;e&&X(t.option.transform)}function ju(t){return"series"===t.mainType}function qu(t){throw new Error(t)}function Zu(t,e){return e.type=t,e}function Ku(t){return Z(DT,t.type)&&DT[t.type]}function $u(t,e,n){var i=[],r=e.blocks||[];G(!r||T(r)),r=r||[];var o=t.orderMode;if(e.sortBlocks&&o){r=r.slice();var a={valueAsc:"asc",valueDesc:"desc"};if(Z(a,o)){var s=new _T(a[o],null);r.sort(function(t,e){return s.evaluate(t.sortParam,e.sortParam)})}else"seriesDesc"===o&&r.reverse()}var l=Ju(e);return y(r,function(e,n){var r=Ku(e).build(t,e,n>0?l.html:0);null!=r&&i.push(r)}),i.length?"richText"===t.renderMode?i.join(l.richText):th(i.join(""),n):void 0}function Qu(t,e,n,i,r){if(t){var o=Ku(t);o.planLayout(t);var a={useUTC:r,renderMode:n,orderMode:i,markupStyleCreator:e};return o.build(a,t,0)}}function Ju(t){var e=t.__gapLevelBetweenSubBlocks;return{html:kT[e],richText:AT[e]}}function th(t,e){var n='
',i="margin: "+e+"px 0 0";return'
'+t+n+"
"}function eh(t,e){var n=e?"margin-left:2px":"";return''+ml(t)+""}function nh(t,e,n){var i=n?"10px":"20px",r=e?"float:right;margin-left:"+i:"";return''+v(t,function(t){return ml(t)}).join("  ")+""}function ih(t,e){return t.markupStyleCreator.wrapRichTextStyle(e,TT)}function rh(t,e,n,i){var r=[CT],o=i?10:20;return n&&r.push({padding:[0,0,0,o],align:"right"}),t.markupStyleCreator.wrapRichTextStyle(e.join(" "),r)}function oh(t,e){var n=t.getData().getItemVisual(e,"style"),i=n[t.visualDrawType];return Ml(i)}function ah(t,e){var n=t.get("padding");return null!=n?n:"richText"===e?[8,10]:10}function sh(t){var e,n,i,r,o=t.series,a=t.dataIndex,s=t.multipleSeries,l=o.getData(),u=l.mapDimensionsAll("defaultedTooltip"),h=u.length,c=o.getRawValue(a),p=T(c),f=oh(o,a);if(h>1||p&&!h){var d=lh(c,o,a,u,f);e=d.inlineValues,n=d.inlineValueTypes,i=d.blocks,r=d.inlineValues[0]}else if(h){var g=l.getDimensionInfo(u[0]);r=e=Ru(l,a,u[0]),n=g.type}else r=e=p?c[0]:c;var y=Ho(o),v=y&&o.name||"",m=l.getName(a),_=s?v:m;return Zu("section",{header:v,noHeader:s||!y,sortParam:r,blocks:[Zu("nameValue",{markerType:"item",markerColor:f,name:_,noName:!W(_),value:e,valueType:n})].concat(i||[])})}function lh(t,e,n,i,r){function o(t,e){var n=a.getDimensionInfo(e);n&&n.otherDims.tooltip!==!1&&(s?h.push(Zu("nameValue",{markerType:"subItem",markerColor:r,name:n.displayName,value:t,valueType:n.type})):(l.push(t),u.push(n.type)))}var a=e.getData(),s=m(t,function(t,e,n){var i=a.getDimensionInfo(n);return t=t||i&&i.tooltip!==!1&&null!=i.displayName},!1),l=[],u=[],h=[];return i.length?y(i,function(t){o(Ru(a,n,t),t)}):y(t,o),{inlineValues:l,inlineValueTypes:u,blocks:h}}function uh(t,e){return t.getName(e)||t.getId(e)}function hh(t){var e=t.name;Ho(t)||(t.name=ch(t)||e)}function ch(t){var e=t.getRawData(),n=e.mapDimensionsAll("seriesName"),i=[];return y(n,function(t){var n=e.getDimensionInfo(t);n.displayName&&i.push(n.displayName)}),i.join(" ")}function ph(t){return t.model.getRawData().count()}function fh(t){var e=t.model;return e.setData(e.getRawData().cloneShallow()),dh}function dh(t,e){e.outputData&&t.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function gh(t,e){y(n(t.CHANGABLE_METHODS,t.DOWNSAMPLE_METHODS),function(n){t.wrapMethod(n,S(yh,e))})}function yh(t,e){var n=vh(t);return n&&n.setOutputEnd((e||this).count()),e}function vh(t){var e=(t.ecModel||{}).scheduler,n=e&&e.getPipeline(t.uid);if(n){var i=n.currentTask;if(i){var r=i.agentStubMap;r&&(i=r.get(t.uid))}return i}}function mh(){var t=Uo();return function(e){var n=t(e),i=e.pipelineContext,r=!!n.large,o=!!n.progressiveRender,a=n.large=!(!i||!i.large),s=n.progressiveRender=!(!i||!i.progressiveRender);return!(r===a&&o===s)&&"reset"}}function _h(t,e,n){t&&("emphasis"===e?Aa:Da)(t,n)}function xh(t,e,n){var i=Xo(t,e),r=e&&null!=e.highlightKey?ja(e.highlightKey):null;null!=i?y(Co(i),function(e){_h(t.getItemGraphicEl(e),n,r)}):t.eachItemGraphicEl(function(t){_h(t,n,r)})}function wh(t){return BT(t.model)}function bh(t){var e=t.model,n=t.ecModel,i=t.api,r=t.payload,o=e.pipelineContext.progressiveRender,a=t.view,s=r&&ET(r).updateMethod,l=o?"incrementalPrepareRender":s&&a[s]?s:"render";return"render"!==l&&a[l](e,n,i,r),FT[l]}function Sh(t,e,n){function i(){h=(new Date).getTime(),c=null,t.apply(a,s||[])}var r,o,a,s,l,u=0,h=0,c=null;e=e||0;var p=function(){for(var t=[],p=0;p=0?i():c=setTimeout(i,-o),u=r};return p.clear=function(){c&&(clearTimeout(c),c=null)},p.debounceNextCall=function(t){l=t},p}function Th(t,e,n,i){var r=t[e];if(r){var o=r[HT]||r,a=r[GT],s=r[VT];if(s!==n||a!==i){if(null==n||!i)return t[e]=o;r=t[e]=Sh(o,n,"debounce"===i),r[HT]=o,r[GT]=i,r[VT]=n}return r}}function Mh(t,e){var n=t.visualStyleMapper||XT[e];return n?n:(console.warn("Unkown style type '"+e+"'."),XT.itemStyle)}function Ch(t,e){var n=t.visualDrawType||UT[e];return n?n:(console.warn("Unkown style type '"+e+"'."),"fill")}function Ih(t,e){e=e||{},c(e,{text:"loading",textColor:"#000",fontSize:"12px",maskColor:"rgba(255, 255, 255, 0.8)",showSpinner:!0,color:"#5470c6",spinnerRadius:10,lineWidth:5,zlevel:0});var n=new Z_,i=new rx({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});n.add(i);var r=e.fontSize+" sans-serif",o=new rx({style:{fill:"none"},textContent:new $x({style:{text:e.text,fill:e.textColor,font:r}}),textConfig:{position:"right",distance:10},zlevel:e.zlevel,z:10001});n.add(o);var a;return e.showSpinner&&(a=new ew({shape:{startAngle:-KT/2,endAngle:-KT/2+.1,r:e.spinnerRadius},style:{stroke:e.color,lineCap:"round",lineWidth:e.lineWidth},zlevel:e.zlevel,z:10001}),a.animateShape(!0).when(1e3,{endAngle:3*KT/2}).start("circularInOut"),a.animateShape(!0).when(1e3,{startAngle:3*KT/2}).delay(300).start("circularInOut"),n.add(a)),n.resize=function(){var n=Ln(e.text,r),s=e.showSpinner?e.spinnerRadius:0,l=(t.getWidth()-2*s-(e.showSpinner&&n?10:0)-n)/2-(e.showSpinner?0:n/2),u=t.getHeight()/2;e.showSpinner&&a.setShape({cx:l,cy:u}),o.setShape({x:l-s,y:u-s,width:2*s,height:2*s}),i.setShape({x:0,y:0,width:t.getWidth(),height:t.getHeight()})},n.resize(),n}function kh(t){t.overallReset(t.ecModel,t.api,t.payload)}function Ah(t){return t.overallProgress&&Dh}function Dh(){this.agent.dirty(),this.getDownstream().dirty()}function Ph(){this.agent&&this.agent.dirty()}function Lh(t){return t.plan?t.plan(t.model,t.ecModel,t.api,t.payload):null}function Oh(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=Co(t.reset(t.model,t.ecModel,t.api,t.payload));return e.length>1?v(e,function(t,e){return Rh(e)}):QT}function Rh(t){return function(e,n){var i=n.data,r=n.resetDefines[t];if(r&&r.dataEach)for(var o=e.start;or&&(r+=yM);var f=Math.atan2(s,a);if(0>f&&(f+=yM),f>=i&&r>=f||f+yM>=i&&r>=f+yM)return l[0]=h,l[1]=c,u-n;var d=n*Math.cos(i)+t,g=n*Math.sin(i)+e,y=n*Math.cos(r)+t,v=n*Math.sin(r)+e,m=(d-a)*(d-a)+(g-s)*(g-s),_=(y-a)*(y-a)+(v-s)*(v-s);return _>m?(l[0]=d,l[1]=g,Math.sqrt(m)):(l[0]=y,l[1]=v,Math.sqrt(_))}function Gh(t,e,n,i,r,o,a,s){var l=r-t,u=o-e,h=n-t,c=i-e,p=Math.sqrt(h*h+c*c);h/=p,c/=p;var f=l*h+u*c,d=f/p;s&&(d=Math.min(Math.max(d,0),1)),d*=p;var g=a[0]=t+d*h,y=a[1]=e+d*c;return Math.sqrt((g-r)*(g-r)+(y-o)*(y-o))}function Wh(t,e,n,i,r,o,a){0>n&&(t+=n,n=-n),0>i&&(e+=i,i=-i);var s=t+n,l=e+i,u=a[0]=Math.min(Math.max(r,t),s),h=a[1]=Math.min(Math.max(o,e),l);return Math.sqrt((u-r)*(u-r)+(h-o)*(h-o))}function Xh(t,e,n){var i=Wh(e.x,e.y,e.width,e.height,t.x,t.y,_M);return n.set(_M[0],_M[1]),i}function Uh(t,e,n){for(var i,r,o=0,a=0,s=0,l=0,u=1/0,h=e.data,c=t.x,p=t.y,f=0;f=f&&(s=i,l=r);var S=(c-y)*_/m+y;g=Vh(y,v,_,x,x+w,b,S,p,_M),o=Math.cos(x+w)*m+y,a=Math.sin(x+w)*_+v;break;case vM.R:s=o=h[f++],l=a=h[f++];var T=h[f++],M=h[f++];g=Wh(s,l,T,M,c,p,_M);break;case vM.Z:g=Gh(o,a,s,l,c,p,_M,!0),o=s,a=l}u>g&&(u=g,n.set(_M[0],_M[1]))}return u}function Yh(t,e){if(t){var n=t.getTextGuideLine(),i=t.getTextContent();if(i&&n){var r=t.textGuideLineConfig||{},o=[[0,0],[0,0],[0,0]],a=r.candidates||mM,s=i.getBoundingRect().clone();s.applyTransform(i.getComputedTransform());var l=1/0,u=r.anchor,h=t.getComputedTransform(),c=h&&Ue([],h),p=e.get("length2")||0;u&&bM.copy(u);for(var f=0;fy&&(l=y,wM.transform(h),bM.transform(h),bM.toArray(o[0]),wM.toArray(o[1]),xM.toArray(o[2]))}jh(o,e.get("minTurnAngle")),n.setShape({points:o})}}}function jh(t,e){if(180>=e&&e>0){e=e/180*Math.PI,xM.fromArray(t[0]),wM.fromArray(t[1]),bM.fromArray(t[2]),Zv.sub(SM,xM,wM),Zv.sub(TM,bM,wM);var n=SM.len(),i=TM.len();if(!(.001>n||.001>i)){SM.scale(1/n),TM.scale(1/i);var r=SM.dot(TM),o=Math.cos(e);if(r>o){var a=Gh(wM.x,wM.y,bM.x,bM.y,xM.x,xM.y,MM,!1);CM.fromArray(MM),CM.scaleAndAdd(TM,a/Math.tan(Math.PI-e));var s=bM.x!==wM.x?(CM.x-wM.x)/(bM.x-wM.x):(CM.y-wM.y)/(bM.y-wM.y);if(isNaN(s))return;0>s?Zv.copy(CM,wM):s>1&&Zv.copy(CM,bM),CM.toArray(t[1])}}}}function qh(t,e,n,i){var r="normal"===n,o=r?t:t.ensureState(n);o.ignore=e;var a=i.get("smooth");a&&a===!0&&(a=.3),o.shape=o.shape||{},a>0&&(o.shape.smooth=a);var s=i.getModel("lineStyle").getLineStyle();r?t.useStyle(s):o.style=s}function Zh(t,e){var n=e.smooth,i=e.points;if(i)if(t.moveTo(i[0][0],i[0][1]),n>0&&i.length>=3){var r=rv(i[0],i[1]),o=rv(i[1],i[2]);if(!r||!o)return t.lineTo(i[1][0],i[1][1]),void t.lineTo(i[2][0],i[2][1]);var a=Math.min(r,o)*n,s=de([],i[1],i[0],a/r),l=de([],i[1],i[2],a/o),u=de([],s,l,.5);t.bezierCurveTo(s[0],s[1],s[0],s[1],u[0],u[1]),t.bezierCurveTo(l[0],l[1],l[0],l[1],i[2][0],i[2][1])}else for(var h=1;ht){var i=Math.min(e,-t);if(i>0){l(i*n,0,c);var r=i+t;0>r&&u(-r*n,1)}else u(-t*n,1)}}function l(n,i,r){0!==n&&(d=!0);for(var o=i;r>o;o++){var a=t[o],s=a.rect;s[e]+=n,a.label[e]+=n}}function u(i,r){for(var o=[],a=0,s=1;c>s;s++){var u=t[s-1].rect,h=Math.max(t[s].rect[e]-u[e]-u[n],0);o.push(h),a+=h}if(a){var p=Math.min(Math.abs(i)/a,r);if(i>0)for(var s=0;c-1>s;s++){var f=o[s]*p;l(f,0,s+1)}else for(var s=c-1;s>0;s--){var f=o[s-1]*p;l(-f,s,c)}}}function h(t){var e=0>t?-1:1;t=Math.abs(t);for(var n=Math.ceil(t/(c-1)),i=0;c-1>i;i++)if(e>0?l(n,0,i+1):l(-n,c-i-1,c),t-=n,0>=t)return}var c=t.length;if(!(2>c)){t.sort(function(t,n){return t.rect[e]-n.rect[e]});for(var p,f=0,d=!1,g=[],y=0,v=0;c>v;v++){var m=t[v],_=m.rect;p=_[e]-f,0>p&&(_[e]-=p,m.label[e]-=p,d=!0);var x=Math.max(-p,0);g.push(x),y+=x,f=_[e]+_[n]}y>0&&o&&l(-y/c,0,c);var w,b,S=t[0],T=t[c-1];return a(),0>w&&u(-w,.8),0>b&&u(b,.8),a(),s(w,b,1),s(b,w,-1),a(),0>w&&h(-w),0>b&&h(b),d}}function tc(t,e,n,i){return Jh(t,"x","width",e,n,i)}function ec(t,e,n,i){return Jh(t,"y","height",e,n,i)}function nc(t){function e(t){if(!t.ignore){var e=t.ensureState("emphasis");null==e.ignore&&(e.ignore=!1)}t.ignore=!0}var n=[];t.sort(function(t,e){return e.priority-t.priority});for(var i=new rm(0,0,0,0),r=0;r0?(e=e||1,"dashed"===t?[4*e,2*e]:"dotted"===t?[e]:k(t)?[t]:T(t)?t:null):null}function fc(t){var e=t.stroke;return!(null==e||"none"===e||!(t.lineWidth>0))}function dc(t){var e=t.fill;return null!=e&&"none"!==e}function gc(t,e){if(null!=e.fillOpacity&&1!==e.fillOpacity){var n=t.globalAlpha;t.globalAlpha=e.fillOpacity*e.opacity,t.fill(),t.globalAlpha=n}else t.fill()}function yc(t,e){if(null!=e.strokeOpacity&&1!==e.strokeOpacity){var n=t.globalAlpha;t.globalAlpha=e.strokeOpacity*e.opacity,t.stroke(),t.globalAlpha=n}else t.stroke()}function vc(t,e,n){var i=Ir(e.image,e.__image,n);if(Ar(i)){var r=t.createPattern(i,e.repeat||"repeat");if("function"==typeof DOMMatrix){var o=new DOMMatrix;o.rotateSelf(0,0,(e.rotation||0)/Math.PI*180),o.scaleSelf(e.scaleX||1,e.scaleY||1),o.translateSelf(e.x||0,e.y||0),r.setTransform(o)}return r}}function mc(t,e,n,i){var r=fc(n),o=dc(n),a=n.strokePercent,s=1>a,l=!e.path;e.silent&&!s||!l||e.createPathProxy();var u=e.path||OM;if(!i){var h=n.fill,c=n.stroke,p=o&&!!h.colorStops,f=r&&!!c.colorStops,d=o&&!!h.image,g=r&&!!c.image,y=void 0,m=void 0,_=void 0,x=void 0,w=void 0;(p||f)&&(w=e.getBoundingRect()),p&&(y=e.__dirty?hc(t,h,w):e.__canvasFillGradient,e.__canvasFillGradient=y),f&&(m=e.__dirty?hc(t,c,w):e.__canvasStrokeGradient,e.__canvasStrokeGradient=m),d&&(_=e.__dirty||!e.__canvasFillPattern?vc(t,h,e):e.__canvasFillPattern,e.__canvasFillPattern=_),g&&(x=e.__dirty||!e.__canvasStrokePattern?vc(t,c,e):e.__canvasStrokePattern,e.__canvasStrokePattern=_),p?t.fillStyle=y:d&&(_?t.fillStyle=_:o=!1),f?t.strokeStyle=m:g&&(x?t.strokeStyle=x:r=!1)}var b=n.lineDash&&n.lineWidth>0&&pc(n.lineDash,n.lineWidth),S=n.lineDashOffset,T=!!t.setLineDash,M=e.getGlobalScale();if(u.setScale(M[0],M[1],e.segmentIgnoreThreshold),b){var C=n.strokeNoScale&&e.getLineScale?e.getLineScale():1;C&&1!==C&&(b=v(b,function(t){return t/C}),S/=C)}var I=!0;(l||e.__dirty&z_.SHAPE_CHANGED_BIT||b&&!T&&r)&&(u.setDPR(t.dpr),s?u.setContext(null):(u.setContext(t),I=!1),u.reset(),b&&!T&&(u.setLineDash(b),u.setLineDashOffset(S)),e.buildPath(u,e.shape,i),u.toStatic(),e.pathUpdated()),I&&u.rebuildPath(t,s?a:1),b&&T&&(t.setLineDash(b),t.lineDashOffset=S),i||(n.strokeFirst?(r&&yc(t,n),o&&gc(t,n)):(o&&gc(t,n),r&&yc(t,n))),b&&T&&t.setLineDash([])}function _c(t,e,n){var i=e.__image=Ir(n.image,e.__image,e,e.onload);if(i&&Ar(i)){var r=n.x||0,o=n.y||0,a=e.getWidth(),s=e.getHeight(),l=i.width/i.height;if(null==a&&null!=s?a=s*l:null==s&&null!=a?s=a/l:null==a&&null==s&&(a=i.width,s=i.height),n.sWidth&&n.sHeight){var u=n.sx||0,h=n.sy||0;t.drawImage(i,u,h,n.sWidth,n.sHeight,r,o,a,s)}else if(n.sx&&n.sy){var u=n.sx,h=n.sy,c=a-u,p=s-h;t.drawImage(i,u,h,c,p,r,o,a,s)}else t.drawImage(i,r,o,a,s)}}function xc(t,e,n){var i=n.text;if(null!=i&&(i+=""),i){t.font=n.font||am,t.textAlign=n.textAlign,t.textBaseline=n.textBaseline;var r=void 0;if(t.setLineDash){var o=n.lineDash&&n.lineWidth>0&&pc(n.lineDash,n.lineWidth),a=n.lineDashOffset;if(o){var s=n.strokeNoScale&&e.getLineScale?e.getLineScale():1;s&&1!==s&&(o=v(o,function(t){return t/s}),a/=s),t.setLineDash(o),t.lineDashOffset=a,r=!0}}n.strokeFirst?(fc(n)&&t.strokeText(i,n.x,n.y),dc(n)&&t.fillText(i,n.x,n.y)):(dc(n)&&t.fillText(i,n.x,n.y),fc(n)&&t.strokeText(i,n.x,n.y)),r&&t.setLineDash([])}}function wc(t,e,n,i,r){var o=!1;if(!i&&(n=n||{},e===n))return!1;(i||e.opacity!==n.opacity)&&(o||(kc(t,r),o=!0),t.globalAlpha=null==e.opacity?Nm.opacity:e.opacity),(i||e.blend!==n.blend)&&(o||(kc(t,r),o=!0),t.globalCompositeOperation=e.blend||Nm.blend);for(var a=0;ao;o++){var l=i[o];l.beforeBrush&&l.beforeBrush(),l.innerBeforeBrush(),Pc(t,l,s,o===a-1),l.innerAfterBrush(),l.afterBrush&&l.afterBrush(),s.prevEl=l}for(var u=0,h=r.length;h>u;u++){var l=r[u];l.beforeBrush&&l.beforeBrush(),l.innerBeforeBrush(),Pc(t,l,s,u===h-1),l.innerAfterBrush(),l.afterBrush&&l.afterBrush(),s.prevEl=l}e.clearTemporalDisplayables(),e.notClear=!0,t.restore()}function Oc(){return!1}function Rc(t,e,n){var i=$y(),r=e.getWidth(),o=e.getHeight(),a=i.style;return a&&(a.position="absolute",a.left="0",a.top="0",a.width=r+"px",a.height=o+"px",i.setAttribute("data-zr-dom-id",t)),i.width=r*n,i.height=o*n,i}function Ec(t){return parseInt(t,10)}function Bc(t){return t?t.__builtin__?!0:"function"!=typeof t.resize||"function"!=typeof t.refresh?!1:!0:!1}function zc(t,e){var n=document.createElement("div");return n.style.cssText=["position:relative","width:"+t+"px","height:"+e+"px","padding:0","margin:0","border-width:0"].join(";")+";",n}function Nc(t,e,n){for(var i;t&&(!e(t)||(i=t,!n));)t=t.__hostTarget||t.parent;return i}function Fc(t,e){if("image"!==this.type){var n=this.style;this.__isEmptyBrush?(n.stroke=t,n.fill=e||"#fff",n.lineWidth=2):n.fill=t,this.markRedraw()}}function Hc(t,e,n,i,r,o,a){var s=0===t.indexOf("empty");s&&(t=t.substr(5,1).toLowerCase()+t.substr(6));var l;return l=0===t.indexOf("image://")?ns(t.slice(8),new rm(e,n,i,r),a?"center":"cover"):0===t.indexOf("path://")?es(t.slice(7),{},new rm(e,n,i,r),a?"center":"cover"):new eC({shape:{symbolType:t,x:e,y:n,width:i,height:r}}),l.__isEmptyBrush=s,l.setColor=Fc,o&&l.setColor(o),l}function Vc(t,e){function n(t){function e(){for(var t=1,e=0,n=m.length;n>e;++e)t=To(t,m[e]);for(var i=1,e=0,n=v.length;n>e;++e)i=To(i,v[e].length);t*=i;var r=_*m.length*v.length;return{width:Math.max(1,Math.min(t,s.maxTileWidth)),height:Math.max(1,Math.min(r,s.maxTileHeight))}}function n(){function t(t,e,n,a,l){var u=o?1:i,h=Hc(l,t*u,e*u,n*u,a*u,s.color,s.symbolKeepAspect);o?w.appendChild(r.painter.paintOne(h)):Dc(d,h)}d&&(d.clearRect(0,0,x.width,x.height),s.backgroundColor&&(d.fillStyle=s.backgroundColor,d.fillRect(0,0,x.width,x.height)));for(var e=0,n=0;n=e))for(var a=-_,l=0,u=0,h=0;a=S)break;if(f%2===0){var T=.5*(1-s.symbolSize),M=p+g[h][f]*T,C=a+y[l]*T,I=g[h][f]*s.symbolSize,k=y[l]*s.symbolSize,A=m/2%v[c].length;t(M,C,I,k,v[c][A])}p+=g[h][f],++m,++f,f===g[h].length&&(f=0)}++h,h===g.length&&(h=0)}a+=y[l],++u,++l,l===y.length&&(l=0)}}for(var a=[i],l=!0,u=0;up;p++){var f=r[p],d=r[p]=h({},A(f)?f:{name:f}),g=d.name,v=l[p]=new HI;null!=g&&null==o.get(g)&&(v.name=v.displayName=g,o.set(g,p)),null!=d.type&&(v.type=d.type),null!=d.displayName&&(v.displayName=d.displayName)}var m=n.encodeDef;!m&&n.encodeDefaulter&&(m=n.encodeDefaulter(e,u));var _=Y(m);_.each(function(t,e){var n=Co(t).slice();if(1===n.length&&!C(n[0])&&n[0]<0)return void _.set(e,!1);var r=_.set(e,[]);y(n,function(t,n){var a=C(t)?o.get(t):t;null!=a&&u>a&&(r[n]=a,i(l[a],e,n))})});var x=0;y(t,function(t){var e,n,r,o;if(C(t))e=t,o={};else{o=t,e=o.name;var a=o.ordinalMeta;o.ordinalMeta=null,o=s(o),o.ordinalMeta=a,n=o.dimsDef,r=o.otherDims,o.name=o.coordDim=o.coordDimIndex=o.dimsDef=o.otherDims=null}var u=_.get(e);if(u!==!1){if(u=Co(u),!u.length)for(var h=0;h<(n&&n.length||1);h++){for(;xM;M++){var v=l[M]=l[M]||new HI,I=v.coordDim;null==I&&(v.coordDim=Dp(T,a,S),v.coordDimIndex=0,(!w||0>=b)&&(v.isExtraCoord=!0),b--),null==v.name&&(v.name=Dp(v.coordDim,o,!1)),null!=v.type||Fl(e,M)!==BS.Must&&(!v.isExtraCoord||null==v.otherDims.itemName&&null==v.otherDims.seriesName)||(v.type="ordinal")}return l}function Ap(t,e,n,i){var r=Math.max(t.dimensionsDetectedCount||1,e.length,n.length,i||0);return y(e,function(t){var e;A(t)&&(e=t.dimsDef)&&(r=Math.max(r,e.length))}),r}function Dp(t,e,n){if(n||null!=e.get(t)){for(var i=0;null!=e.get(t+i);)i++;t+=i}return e.set(t,!0),t}function Pp(t,e){return e=e||{},kp(e.coordDimensions||[],t,{dimsDef:e.dimensionsDefine||t.dimensionsDefine,encodeDef:e.encodeDefine||t.encodeDefine,dimCount:e.dimensionsCount,encodeDefaulter:e.encodeDefaulter,generateCoord:e.generateCoord,generateCoordCount:e.generateCoordCount})}function Lp(t){var e=t.get("coordinateSystem"),n=new tk(e),i=ek[e];return i?(i(t,n,n.axisMap,n.categoryAxisMap),n):void 0}function Op(t){return"category"===t.get("type")}function Rp(t,e,n){n=n||{};var i,r,o,a,s=n.byIndex,l=n.stackedCoordDimension,u=!(!t||!t.get("stack"));if(y(e,function(t,n){C(t)&&(e[n]=t={name:t}),u&&!t.isExtraCoord&&(s||i||!t.ordinalMeta||(i=t),r||"ordinal"===t.type||"time"===t.type||l&&l!==t.coordDim||(r=t))}),!r||s||i||(s=!0),r){o="__\x00ecstackresult",a="__\x00ecstackedover",i&&(i.createInvertedIndices=!0);var h=r.coordDim,c=r.type,p=0;y(e,function(t){t.coordDim===h&&p++}),e.push({name:o,coordDim:h,coordDimIndex:p,type:c,isExtraCoord:!0,isCalculationCoord:!0}),p++,e.push({name:a,coordDim:a,coordDimIndex:p,type:c,isExtraCoord:!0,isCalculationCoord:!0})}return{stackedDimension:r&&r.name,stackedByDimension:i&&i.name,isStackedByIndex:s,stackedOverDimension:a,stackResultDimension:o}}function Ep(t,e){return!!e&&e===t.getCalculationInfo("stackedDimension")}function Bp(t,e){return Ep(t,e)?t.getCalculationInfo("stackResultDimension"):e}function zp(t,e,n){n=n||{},xu(t)||(t=bu(t));var i,r=e.get("coordinateSystem"),o=$S.get(r),a=Lp(e);a&&a.coordSysDims&&(i=v(a.coordSysDims,function(t){var e={name:t},n=a.axisMap.get(t);if(n){var i=n.get("type");e.type=Cp(i)}return e})),i||(i=o&&(o.getDimensionsInfo?o.getDimensionsInfo():o.dimensions.slice())||["x","y"]);var s,l,u=n.useEncodeDefaulter,h=Pp(t,{coordDimensions:i,generateCoord:n.generateCoord,encodeDefaulter:M(u)?u:u?S(Bl,i,e):null});a&&y(h,function(t,e){var n=t.coordDim,i=a.categoryAxisMap.get(n);i&&(null==s&&(s=e),t.ordinalMeta=i.getOrdinalMeta()),null!=t.otherDims.itemName&&(l=!0)}),l||null==s||(h[s].otherDims.itemName=0);var c=Rp(e,h),p=new JI(h,e);p.setCalculationInfo(c);var f=null!=s&&Np(t)?function(t,e,n,i){return i===s?n:this.defaultDimValueGetter(t,e,n,i)}:null;return p.hasItemOption=!1,p.initData(t,null,f),p}function Np(t){if(t.sourceFormat===kS){var e=Fp(t.data||[]);return null!=e&&!T(ko(e))}}function Fp(t){for(var e=0;ea&&(a=r.interval=n),null!=i&&a>i&&(a=r.interval=i);var s=r.intervalPrecision=Gp(a),l=r.niceTickExtent=[rk(Math.ceil(t[0]/a)*a,s),rk(Math.floor(t[1]/a)*a,s)];return Xp(l,t),r}function Gp(t){return lo(t)+2}function Wp(t,e,n){t[e]=Math.max(Math.min(t[e],n[1]),n[0])}function Xp(t,e){!isFinite(t[0])&&(t[0]=e[0]),!isFinite(t[1])&&(t[1]=e[1]),Wp(t,0,e),Wp(t,1,e),t[0]>t[1]&&(t[0]=t[1])}function Up(t,e){return t>=e[0]&&t<=e[1]}function Yp(t,e){return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])}function jp(t,e){return t*(e[1]-e[0])+e[0]}function qp(t){return t.get("stack")||lk+t.seriesIndex}function Zp(t){return t.dim+t.index}function Kp(t,e){var n=[];return e.eachSeriesByType(t,function(t){nf(t)&&!rf(t)&&n.push(t)}),n}function $p(t){var e={};y(t,function(t){var n=t.coordinateSystem,i=n.getBaseAxis();if("time"===i.type||"value"===i.type)for(var r=t.getData(),o=i.dim+"_"+i.index,a=r.mapDimension(i.dim),s=0,l=r.count();l>s;++s){var u=r.get(a,s);e[o]?e[o].push(u):e[o]=[u]}});var n={};for(var i in e)if(e.hasOwnProperty(i)){var r=e[i];if(r){r.sort(function(t,e){return t-e});for(var o=null,a=1;a0&&(o=null===o?s:Math.min(o,s))}n[i]=o}}return n}function Qp(t){var e=$p(t),n=[];return y(t,function(t){var i,r=t.coordinateSystem,o=r.getBaseAxis(),a=o.getExtent();if("category"===o.type)i=o.getBandWidth();else if("value"===o.type||"time"===o.type){var s=o.dim+"_"+o.index,l=e[s],u=Math.abs(a[1]-a[0]),h=o.scale.getExtent(),c=Math.abs(h[1]-h[0]);i=l?u/c*l:u}else{var p=t.getData();i=Math.abs(a[1]-a[0])/p.count()}var f=ro(t.get("barWidth"),i),d=ro(t.get("barMaxWidth"),i),g=ro(t.get("barMinWidth")||1,i),y=t.get("barGap"),v=t.get("barCategoryGap");n.push({bandWidth:i,barWidth:f,barMaxWidth:d,barMinWidth:g,barGap:y,barCategoryGap:v,axisKey:Zp(o),stackId:qp(t)})}),Jp(n)}function Jp(t){var e={};y(t,function(t){var n=t.axisKey,i=t.bandWidth,r=e[n]||{bandWidth:i,remainedWidth:i,autoWidthCount:0,categoryGap:null,gap:"20%",stacks:{}},o=r.stacks;e[n]=r;var a=t.stackId;o[a]||r.autoWidthCount++,o[a]=o[a]||{width:0,maxWidth:0};var s=t.barWidth;s&&!o[a].width&&(o[a].width=s,s=Math.min(r.remainedWidth,s),r.remainedWidth-=s);var l=t.barMaxWidth;l&&(o[a].maxWidth=l);var u=t.barMinWidth;u&&(o[a].minWidth=u);var h=t.barGap;null!=h&&(r.gap=h);var c=t.barCategoryGap;null!=c&&(r.categoryGap=c)});var n={};return y(e,function(t,e){n[e]={};var i=t.stacks,r=t.bandWidth,o=t.categoryGap;if(null==o){var a=w(i).length;o=Math.max(35-4*a,15)+"%"}var s=ro(o,r),l=ro(t.gap,1),u=t.remainedWidth,h=t.autoWidthCount,c=(u-s)/(h+(h-1)*l);c=Math.max(c,0),y(i,function(t){var e=t.maxWidth,n=t.minWidth;if(t.width){var i=t.width;e&&(i=Math.min(i,e)),n&&(i=Math.max(i,n)),t.width=i,u-=i+l*i,h--}else{var i=c;e&&i>e&&(i=Math.min(e,u)),n&&n>i&&(i=n),i!==c&&(t.width=i,u-=i+l*i,h--)}}),c=(u-s)/(h+(h-1)*l),c=Math.max(c,0);var p,f=0;y(i,function(t){t.width||(t.width=c),p=t,f+=t.width*(1+l)}),p&&(f-=p.width*l);var d=-f/2;y(i,function(t,i){n[e][i]=n[e][i]||{bandWidth:r,offset:d,width:t.width},d+=t.width*(1+l)})}),n}function tf(t,e,n){if(t&&e){var i=t[Zp(e)];return null!=i&&null!=n?i[qp(n)]:i}}function ef(t,e){var n=Kp(t,e),i=Qp(n),r={};y(n,function(t){var e=t.getData(),n=t.coordinateSystem,o=n.getBaseAxis(),a=qp(t),s=i[Zp(o)][a],l=s.offset,u=s.width,h=n.getOtherAxis(o),c=t.get("barMinHeight")||0;r[a]=r[a]||[],e.setLayout({bandWidth:s.bandWidth,offset:l,size:u});for(var p=e.mapDimension(h.dim),f=e.mapDimension(o.dim),d=Ep(e,p),g=h.isHorizontal(),y=of(o,h,d),v=0,m=e.count();m>v;v++){var _=e.get(p,v),x=e.get(f,v),w=_>=0?"p":"n",b=y;d&&(r[a][x]||(r[a][x]={p:y,n:y}),b=r[a][x][w]);var S=void 0,T=void 0,M=void 0,C=void 0;if(g){var I=n.dataToPoint([_,x]);S=b,T=I[1]+l,M=I[0]-y,C=u,Math.abs(M)M?-1:1)*c),isNaN(M)||d&&(r[a][x][w]+=M)}else{var I=n.dataToPoint([x,_]);S=I[0]+l,T=b,M=u,C=I[1]-y,Math.abs(C)=C?-1:1)*c),isNaN(C)||d&&(r[a][x][w]+=C)}e.setItemLayout(v,{x:S,y:T,width:M,height:C})}})}function nf(t){return t.coordinateSystem&&"cartesian2d"===t.coordinateSystem.type}function rf(t){return t.pipelineContext&&t.pipelineContext.large}function of(t,e){return e.toGlobalCoord(e.dataToCoord("log"===e.type?1:0))}function af(t,e,n,i){var r=fo(e),o=fo(n),a=function(t){return tl(r,t,i)===tl(o,t,i)},s=function(){return a("year")},l=function(){return s()&&a("month")},u=function(){return l()&&a("day")},h=function(){return u()&&a("hour")},c=function(){return h()&&a("minute")},p=function(){return c()&&a("second")},f=function(){return p()&&a("millisecond")};switch(t){case"year":return s();case"month":return l();case"day":return u();case"hour":return h();case"minute":return c();case"second":return p();case"millisecond":return f()}}function sf(t){return t/=iS,t>16?16:t>7.5?7:t>3.5?4:t>1.5?2:1}function lf(t){var e=30*iS;return t/=e,t>6?6:t>3?3:t>2?2:1}function uf(t){return t/=nS,t>12?12:t>6?6:t>3.5?4:t>2?2:1}function hf(t,e){return t/=e?eS:tS,t>30?30:t>20?20:t>15?15:t>10?10:t>5?5:t>2?2:1}function cf(t){return vo(t,!0)}function pf(t,e,n){var i=new Date(t);switch(qs(e)){case"year":case"month":i[ul(n)](0);case"day":i[hl(n)](1);case"hour":i[cl(n)](0);case"minute":i[pl(n)](0);case"second":i[fl(n)](0),i[dl(n)](0)}return i.getTime()}function ff(t,e,n,i){function r(t,e,n,r,o,a,s){for(var l=new Date(e),u=e,h=l[r]();n>u&&u<=i[1];)s.push({value:u}),h+=t,l[o](h),u=l.getTime();s.push({value:u,notAdd:!0})}function o(t,o,a){var s=[],l=!o.length;if(!af(qs(t),i[0],i[1],n)){l&&(o=[{value:pf(new Date(i[0]),t,n)},{value:i[1]}]);for(var u=0;u1&&0===u&&a.unshift({value:a[0].value-p})}}for(var u=0;u=i[0]&&x<=i[1]&&c++)}var w=(i[1]-i[0])/e;if(c>1.5*w&&p>w/1.5)break;if(u.push(y),c>w||t===s[f])break}h=[]}}}for(var b=_(v(u,function(t){return _(t,function(t){return t.value>=i[0]&&t.value<=i[1]&&!t.notAdd})}),function(t){return t.length>0}),S=[],T=b.length-1,f=0;f0&&i>0||0>n&&0>i)}function bf(t){var e=t.getLabelModel().get("formatter"),n="category"===t.type?t.scale.getExtent()[0]:null;return"time"===t.scale.type?function(e){return function(n,i){return t.scale.getFormattedLabel(n,i,e)}}(e):"string"==typeof e?function(e){return function(n){var i=t.scale.getLabel(n),r=e.replace("{value}",null!=i?i:"");return r}}(e):"function"==typeof e?function(e){return function(i,r){return null!=n&&(r=i.value-n),e(Sf(t,i),r,null!=i.level?{level:i.level}:null)}}(e):function(e){return t.scale.getLabel(e)}}function Sf(t,e){return"category"===t.type?t.scale.getLabel(e):e.value}function Tf(t){var e=t.model,n=t.scale;if(e.get(["axisLabel","show"])&&!n.isBlank()){var i,r,o=n.getExtent();n instanceof ok?r=n.count():(i=n.getTicks(),r=i.length);var a,s=t.getLabelModel(),l=bf(t),u=1;r>40&&(u=Math.ceil(r/40));for(var h=0;r>h;h+=u){var c=i?i[h]:{value:o[0]+h},p=l(c,h),f=s.getTextRect(p),d=Mf(f,s.get("rotate")||0);a?a.union(d):a=d}return a}}function Mf(t,e){var n=e*Math.PI/180,i=t.width,r=t.height,o=i*Math.abs(Math.cos(n))+Math.abs(r*Math.sin(n)),a=i*Math.abs(Math.sin(n))+Math.abs(r*Math.cos(n)),s=new rm(t.x,t.y,o,a);return s}function Cf(t){var e=t.get("interval");return null==e?"auto":e}function If(t){return"category"===t.type&&0===Cf(t.getLabelModel())}function kf(t,e){var n={};return y(t.mapDimensionsAll(e),function(e){n[Bp(t,e)]=!0}),w(n)}function Af(t,e,n){e&&y(kf(e,n),function(n){var i=e.getApproximateExtent(n);i[0]t[1]&&(t[1]=i[1])})}function Df(t){return zp(t.getSource(),t)}function Pf(t,e){var n=e;e instanceof Xb||(n=new Xb(e));var i=xf(n);return i.setExtent(t[0],t[1]),_f(i,n),i}function Lf(t){d(t,kk)}function Of(t,e){return Math.abs(t-e)>1^-(1&s),l=l>>1^-(1&l),s+=r,l+=o,r=s,o=l,i.push([s/n,l/n])}return i}function zf(t,e){return t=Ef(t),v(_(t.features,function(t){return t.geometry&&t.properties&&t.geometry.coordinates.length>0}),function(t){var n=t.properties,i=t.geometry,r=[];if("Polygon"===i.type){var o=i.coordinates;r.push({type:"polygon",exterior:o[0],interiors:o.slice(1)})}if("MultiPolygon"===i.type){var o=i.coordinates;y(o,function(t){t[0]&&r.push({type:"polygon",exterior:t[0],interiors:t.slice(1)})})}var a=new Lk(n[e||"name"],r,n.cp);return a.properties=n,a})}function Nf(t){return"category"===t.type?Hf(t):Wf(t)}function Ff(t,e){return"category"===t.type?Gf(t,e):{ticks:v(t.scale.getTicks(),function(t){return t.value})}}function Hf(t){var e=t.getLabelModel(),n=Vf(t,e);return!e.get("show")||t.scale.isBlank()?{labels:[],labelCategoryInterval:n.labelCategoryInterval}:n}function Vf(t,e){var n=Xf(t,"labels"),i=Cf(e),r=Uf(n,i);if(r)return r;var o,a;return M(i)?o=$f(t,i):(a="auto"===i?jf(t):i,o=Kf(t,a)),Yf(n,i,{labels:o,labelCategoryInterval:a})}function Gf(t,e){var n=Xf(t,"ticks"),i=Cf(e),r=Uf(n,i);if(r)return r;var o,a;if((!e.get("show")||t.scale.isBlank())&&(o=[]),M(i))o=$f(t,i,!0);else if("auto"===i){var s=Vf(t,t.getLabelModel());a=s.labelCategoryInterval,o=v(s.labels,function(t){return t.tickValue})}else a=i,o=Kf(t,a,!0);return Yf(n,i,{ticks:o,tickCategoryInterval:a})}function Wf(t){var e=t.scale.getTicks(),n=bf(t);return{labels:v(e,function(e,i){return{formattedLabel:n(e,i),rawLabel:t.scale.getLabel(e),tickValue:e.value}})}}function Xf(t,e){return Ok(t)[e]||(Ok(t)[e]=[])}function Uf(t,e){for(var n=0;n40&&(s=Math.max(1,Math.floor(a/40)));for(var l=o[0],u=t.dataToCoord(l+1)-t.dataToCoord(l),h=Math.abs(u*Math.cos(i)),c=Math.abs(u*Math.sin(i)),p=0,f=0;l<=o[1];l+=s){var d=0,g=0,y=Rn(n({value:l}),e.font,"center","top");d=1.3*y.width,g=1.3*y.height,p=Math.max(p,d,7),f=Math.max(f,g,7)}var v=p/h,m=f/c;isNaN(v)&&(v=1/0),isNaN(m)&&(m=1/0);var _=Math.max(0,Math.floor(Math.min(v,m))),x=Ok(t.model),w=t.getExtent(),b=x.lastAutoInterval,S=x.lastTickCount;return null!=b&&null!=S&&Math.abs(b-_)<=1&&Math.abs(S-a)<=1&&b>_&&x.axisExtent0===w[0]&&x.axisExtent1===w[1]?_=b:(x.lastTickCount=a,x.lastAutoInterval=_,x.axisExtent0=w[0],x.axisExtent1=w[1]),_}function Zf(t){var e=t.getLabelModel();return{axisRotate:t.getRotate?t.getRotate():t.isHorizontal&&!t.isHorizontal()?90:0,labelRotate:e.get("rotate")||0,font:e.getFont()}}function Kf(t,e,n){function i(t){var e={value:t};l.push(n?t:{formattedLabel:r(e),rawLabel:o.getLabel(e),tickValue:t})}var r=bf(t),o=t.scale,a=o.getExtent(),s=t.getLabelModel(),l=[],u=Math.max((e||0)+1,1),h=a[0],c=o.count();0!==h&&u>1&&c/u>2&&(h=Math.round(Math.ceil(h/u)*u));var p=If(t),f=s.get("showMinLabel")||p,d=s.get("showMaxLabel")||p;f&&h!==a[0]&&i(a[0]);for(var g=h;g<=a[1];g+=u)i(g);return d&&g-u!==a[1]&&i(a[1]),l}function $f(t,e,n){var i=t.scale,r=bf(t),o=[];return y(i.getTicks(),function(t){var a=i.getLabel(t),s=t.value;e(t.value,a)&&o.push(n?s:{formattedLabel:r(t),rawLabel:a,tickValue:s})}),o}function Qf(t,e){var n=t[1]-t[0],i=e,r=n/i/2;t[0]+=r,t[1]-=r}function Jf(t,e,n,i){function r(t,e){return t=oo(t),e=oo(e),p?t>e:e>t}var o=e.length;if(t.onBand&&!n&&o){var a,s,l=t.getExtent();if(1===o)e[0].coord=l[0],a=e[1]={coord:l[0]};else{var u=e[o-1].tickValue-e[0].tickValue,h=(e[o-1].coord-e[0].coord)/u;y(e,function(t){t.coord-=h/2});var c=t.scale.getExtent();s=1+c[1]-e[o-1].tickValue,a={coord:e[o-1].coord+h*s},e.push(a)}var p=l[0]>l[1];r(e[0].coord,l[0])&&(i?e[0].coord=l[0]:e.shift()),i&&r(l[0],e[0].coord)&&e.unshift({coord:l[0]}),r(l[1],a.coord)&&(i?a.coord=l[1]:e.pop()),i&&r(a.coord,l[1])&&e.push({coord:l[1]})}}function td(t){return"interval"===t.type||"time"===t.type}function ed(t,e,n){n=n||{};var i=t.coordinateSystem,r=e.axis,o={},a=r.getAxesOnZeroOf()[0],s=r.position,l=a?"onZero":s,u=r.dim,h=i.getRect(),c=[h.x,h.x+h.width,h.y,h.y+h.height],p={left:0,right:1,top:0,bottom:1,onZero:2},f=e.get("offset")||0,d="x"===u?[c[2]-f,c[3]+f]:[c[0]-f,c[1]+f];if(a){var g=a.toGlobalCoord(a.dataToCoord(0));d[p.onZero]=Math.max(Math.min(g,d[1]),d[0])}o.position=["y"===u?d[p[l]]:c[0],"x"===u?d[p[l]]:c[3]],o.rotation=Math.PI/2*("x"===u?0:1);var y={top:-1,bottom:1,left:-1,right:1};o.labelDirection=o.tickDirection=o.nameDirection=y[s],o.labelOffset=a?d[p[s]]-d[p.onZero]:0,e.get(["axisTick","inside"])&&(o.tickDirection=-o.tickDirection),z(n.labelInside,e.get(["axisLabel","inside"]))&&(o.labelDirection=-o.labelDirection);var v=e.get(["axisLabel","rotate"]);return o.labelRotate="top"===l?-v:v,o.z2=1,o}function nd(t){return"cartesian2d"===t.get("coordinateSystem")}function id(t){var e={xAxisModel:null,yAxisModel:null};return y(e,function(n,i){var r=i.replace(/Model$/,""),o=t.getReferringComponents(r,Kw).models[0];e[i]=o}),e}function rd(t,e){return t.getCoordSysModel()===e}function od(t,e,n,i){function r(t){return t.dim+"_"+t.index}n.getAxesOnZeroOf=function(){return o?[o]:[]};var o,a=t[e],s=n.model,l=s.get(["axisLine","onZero"]),u=s.get(["axisLine","onZeroAxisIndex"]);if(l){if(null!=u)ad(a[u])&&(o=a[u]);else for(var h in a)if(a.hasOwnProperty(h)&&ad(a[h])&&!i[r(a[h])]){o=a[h];break}o&&(i[r(o)]=!0)}}function ad(t){return t&&"category"!==t.type&&"time"!==t.type&&wf(t)}function sd(t,e){var n=t.getExtent(),i=n[0]+n[1];t.toGlobalCoord="x"===t.dim?function(t){return t+e}:function(t){return i-t+e},t.toLocalCoord="x"===t.dim?function(t){return t-e}:function(t){return i-t+e}}function ld(t,e,n,i,r){var o=t.getArea(),a=o.x,s=o.y,l=o.width,u=o.height,h=n.get(["lineStyle","width"])||2;a-=h/2,s-=h/2,l+=h,u+=h,a=Math.floor(a),l=Math.round(l);var c=new rx({shape:{x:a,y:s,width:l,height:u}});if(e){var p=t.getBaseAxis(),f=p.isHorizontal(),d=p.inverse;f?(d&&(c.shape.x+=l),c.shape.width=0):(d||(c.shape.y+=u),c.shape.height=0);var g="function"==typeof r?function(t){r(t,c)}:null;us(c,{shape:{width:l,height:u,x:a,y:s}},n,null,i,g)}return c}function ud(t,e,n){var i=t.getArea(),r=oo(i.r0,1),o=oo(i.r,1),a=new Nx({shape:{cx:oo(t.cx,1),cy:oo(t.cy,1),r0:r,r:o,startAngle:i.startAngle,endAngle:i.endAngle,clockwise:i.clockwise}});if(e){var s="angle"===t.getBaseAxis().dim;s?a.shape.endAngle=i.startAngle:a.shape.r=r,us(a,{shape:{endAngle:i.endAngle,r:o}},n)}return a}function hd(t,e,n,i,r){return t?"polar"===t.type?ud(t,e,n):"cartesian2d"===t.type?ld(t,e,n,i,r):null:null}function cd(t,e){return t.type===e}function pd(t,e){var n=t.mapDimensionsAll("defaultedLabel"),i=n.length;if(1===i)return Ru(t,e,n[0]);if(i){for(var r=[],o=0;o0?"bottom":"top":r.width>0?"left":"right",c=Ds(i);As(t,c,{labelFetcher:o,labelDataIndex:n,defaultText:pd(o.getData(),n),inheritColor:l.fill,defaultOpacity:l.opacity,defaultOutsidePosition:h});var p=t.getTextContent();zs(p,c,o.getRawValue(n),function(t){return fd(e,t)})}var f=i.getModel(["emphasis"]);Ga(t,f.get("focus"),f.get("blurScope")),Xa(t,i),yd(r)&&(t.style.fill="none",t.style.stroke="none",y(t.states,function(t){t.style&&(t.style.fill=t.style.stroke="none")}))}function md(t,e){var n=t.get(Qk)||0,i=isNaN(e.width)?Number.MAX_VALUE:Math.abs(e.width),r=isNaN(e.height)?Number.MAX_VALUE:Math.abs(e.height);return Math.min(n,i,r)}function _d(t,e,n){var i=t.getData(),r=[],o=i.getLayout("valueAxisHorizontal")?1:0;r[1-o]=i.getLayout("valueAxisStart");var a=i.getLayout("largeDataIndices"),s=i.getLayout("barWidth"),l=t.getModel("backgroundStyle"),u=t.get("showBackground",!0);if(u){var h=i.getLayout("largeBackgroundPoints"),c=[];c[1-o]=i.getLayout("backgroundStart");var p=new lA({shape:{points:h},incremental:!!n,silent:!0,z2:0});p.__startPoint=c,p.__baseDimIdx=o,p.__largeDataIndices=a,p.__barWidth=s,bd(p,l,i),e.add(p)}var f=new lA({shape:{points:i.getLayout("largePoints")},incremental:!!n});f.__startPoint=r,f.__baseDimIdx=o,f.__largeDataIndices=a,f.__barWidth=s,e.add(f),wd(f,t,i),rb(f).seriesIndex=t.seriesIndex,t.get("silent")||(f.on("mousedown",uA),f.on("mousemove",uA))}function xd(t,e,n){var i=t.__baseDimIdx,r=1-i,o=t.shape.points,a=t.__largeDataIndices,s=Math.abs(t.__barWidth/2),l=t.__startPoint[r];tA[0]=e,tA[1]=n;for(var u=tA[i],h=tA[1-i],c=u-s,p=u+s,f=0,d=o.length/2;d>f;f++){var g=2*f,y=o[g+i],v=o[g+r];if(y>=c&&p>=y&&(v>=l?h>=l&&v>=h:h>=v&&l>=h))return a[f]}return-1}function wd(t,e,n){var i=n.getVisual("style");t.useStyle(h({},i)),t.style.fill=null,t.style.stroke=i.fill,t.style.lineWidth=n.getLayout("barWidth")}function bd(t,e,n){var i=e.get("borderColor")||e.get("color"),r=e.getItemStyle();t.useStyle(r),t.style.fill=null,t.style.stroke=i,t.style.lineWidth=n.getLayout("barWidth")}function Sd(t,e,n){if(cd(n,"cartesian2d")){var i=e,r=n.getArea();return{x:t?i.x:r.x,y:t?r.y:i.y,width:t?i.width:r.width,height:t?r.height:i.height}}var r=n.getArea(),o=e;return{cx:r.cx,cy:r.cy,r0:t?r.r0:o.r0,r:t?r.r:o.r,startAngle:t?o.startAngle:0,endAngle:t?o.endAngle:2*Math.PI}}function Td(t,e,n){var i="polar"===t.type?Nx:rx;return new i({shape:Sd(e,n,t),silent:!0,z2:0})}function Md(t,n,i){y(yA,function(r,o){var a=l(l({},gA[o],!0),i,!0),s=function(n){function i(){for(var e=[],i=0;ii[1],l="start"===e&&!s||"start"!==e&&s;return po(a-_A/2)?(o=l?"bottom":"top",r="center"):po(a-1.5*_A)?(o=l?"top":"bottom",r="center"):(o="middle",r=1.5*_A>a&&a>_A/2?l?"left":"right":l?"right":"left"),{rotation:a,textAlign:r,textVerticalAlign:o}}function kd(t,e,n){if(!If(t.axis)){var i=t.get(["axisLabel","showMinLabel"]),r=t.get(["axisLabel","showMaxLabel"]);e=e||[],n=n||[];var o=e[0],a=e[1],s=e[e.length-1],l=e[e.length-2],u=n[0],h=n[1],c=n[n.length-1],p=n[n.length-2];i===!1?(Ad(o),Ad(u)):Dd(o,a)&&(i?(Ad(a),Ad(h)):(Ad(o),Ad(u))),r===!1?(Ad(s),Ad(c)):Dd(l,s)&&(r?(Ad(l),Ad(p)):(Ad(s),Ad(c)))}}function Ad(t){t&&(t.ignore=!0)}function Dd(t,e){var n=t&&t.getBoundingRect().clone(),i=e&&e.getBoundingRect().clone();if(n&&i){var r=Fe([]);return We(r,r,-t.rotation),n.applyTransform(Ve([],r,t.getLocalTransform())),i.applyTransform(Ve([],r,e.getLocalTransform())),n.intersect(i)}}function Pd(t){return"middle"===t||"center"===t}function Ld(t,e,n,i,r){for(var o=[],a=[],s=[],l=0;l=0||t===e}function Gd(t){var e=Wd(t);if(e){var n=e.axisPointerModel,i=e.axis.scale,r=n.option,o=n.get("status"),a=n.get("value");null!=a&&(a=i.parse(a));var s=Ud(n);null==o&&(r.status=s?"show":"hide");var l=i.getExtent().slice();l[0]>l[1]&&l.reverse(),(null==a||a>l[1])&&(a=l[1]),aC;C++){var I=p.get(S,C);h.scale.isInExtentRange(I)&&tg(_[0],p.get(T,C))}else for(var C=0;M>C;C++)for(var k=0;x>k;k++){var I=p.get(g[k],C);if(h.scale.isInExtentRange(I)){for(var A=0;b>A;A++)tg(_[A],p.get(m[A],C));break}}y(_,function(t,e){var n=m[e];p.setApproximateExtent(t,n);var i=c.tarExtent=c.tarExtent||Jd();tg(i,t[0]),tg(i,t[1])})}})}function $d(t){t.each(function(t){var e=t.tarExtent;if(e){var n=t.rawExtentResult,i=t.rawExtentInfo;!n.minFixed&&e[0]>n.min&&i.modifyDataMinMax("min",e[0]),!n.maxFixed&&e[1]t[1]&&(t[1]=e)}function eg(t){return{seriesType:t,reset:function(t,e,n){var i=t.getData(),r=t.get("sampling"),o=t.coordinateSystem,a=i.count();if(a>10&&"cartesian2d"===o.type&&r){var s=o.getBaseAxis(),l=o.getOtherAxis(s),u=s.getExtent(),h=n.getDevicePixelRatio(),c=Math.abs(u[1]-u[0])*(h||1),p=Math.round(a/c);if(p>1){"lttb"===r&&t.setData(i.lttbDownSample(i.mapDimension(l.dim),1/p));var f=void 0;"string"==typeof r?f=OA[r]:"function"==typeof r&&(f=r),f&&t.setData(i.downSample(i.mapDimension(l.dim),1/p,f,RA))}}}}}function ng(t,e){this.parent.drift(t,e)}function ig(t,e,n,i){return!(!e||isNaN(e[0])||isNaN(e[1])||i.isIgnore&&i.isIgnore(n)||i.clipShape&&!i.clipShape.contain(e[0],e[1])||"none"===t.getItemVisual(n,"symbol"))}function rg(t){return null==t||A(t)||(t={isIgnore:t}),t||{}}function og(t){var e=t.hostModel,n=e.getModel("emphasis");return{emphasisItemStyle:n.getModel("itemStyle").getItemStyle(),blurItemStyle:e.getModel(["blur","itemStyle"]).getItemStyle(),selectItemStyle:e.getModel(["select","itemStyle"]).getItemStyle(),focus:n.get("focus"),blurScope:n.get("blurScope"),symbolRotate:e.get("symbolRotate"),symbolOffset:e.get("symbolOffset"),hoverScale:n.get("scale"),labelStatesModels:Ds(e),cursorStyle:e.get("cursor")}}function ag(t,e,n){var i=t.getBaseAxis(),r=t.getOtherAxis(i),o=sg(r,n),a=i.dim,s=r.dim,l=e.mapDimension(s),u=e.mapDimension(a),h="x"===s||"radius"===s?1:0,c=v(t.dimensions,function(t){return e.mapDimension(t)}),p=!1,f=e.getCalculationInfo("stackResultDimension");return Ep(e,c[0])&&(p=!0,c[0]=f),Ep(e,c[1])&&(p=!0,c[1]=f),{dataDimsForPoint:c,valueStart:o,valueAxisDim:s,baseAxisDim:a,stacked:!!p,valueDim:l,baseDim:u,baseDataOffset:h,stackedOverDimension:e.getCalculationInfo("stackedOverDimension")}}function sg(t,e){var n=0,i=t.scale.getExtent();return"start"===e?n=i[0]:"end"===e?n=i[1]:i[0]>0?n=i[0]:i[1]<0&&(n=i[1]),n}function lg(t,e,n,i){var r=0/0;t.stacked&&(r=n.get(n.getCalculationInfo("stackedOverDimension"),i)),isNaN(r)&&(r=t.valueStart);var o=t.baseDataOffset,a=[];return a[o]=n.get(t.baseDim,i),a[1-o]=r,e.dataToPoint(a)}function ug(t){return T(t)?NA?new Float32Array(t):t:new FA(t)}function hg(t,e){var n=[];return e.diff(t).add(function(t){n.push({cmd:"+",idx:t})}).update(function(t,e){n.push({cmd:"=",idx:e,idx1:t})}).remove(function(t){n.push({cmd:"-",idx:t})}).execute(),n}function cg(t,e,n,i,r,o,a,s){for(var l=hg(t,e),u=[],h=[],c=[],p=[],f=[],d=[],g=[],y=ag(r,e,a),v=ag(o,t,s),m=t.getLayout("points")||[],_=e.getLayout("points")||[],x=0;xy;y++){var v=e[2*g],m=e[2*g+1];if(g>=r||0>g)break;if(pg(v,m)){if(l){g+=o;continue}break}if(g===n)t[o>0?"moveTo":"lineTo"](v,m),c=v,p=m;else{var _=v-u,x=m-h;if(.5>_*_+x*x){g+=o;continue}if(a>0){var w=g+o,b=e[2*w],S=e[2*w+1],T=y+1;if(l)for(;pg(b,S)&&i>T;)T++,w+=o,b=e[2*w],S=e[2*w+1];var M=.5,C=0,I=0,k=void 0,A=void 0;if(T>=i||pg(b,S))f=v,d=m;else{C=b-u,I=S-h;var D=v-u,P=b-v,L=m-h,O=S-m,R=void 0,E=void 0;"x"===s?(R=Math.abs(D),E=Math.abs(P),f=v-R*a,d=m,k=v+R*a,A=m):"y"===s?(R=Math.abs(L),E=Math.abs(O),f=v,d=m-R*a,k=v,A=m+R*a):(R=Math.sqrt(D*D+L*L),E=Math.sqrt(P*P+O*O),M=E/(E+R),f=v-C*a*(1-M),d=m-I*a*(1-M),k=v+C*a*M,A=m+I*a*M,k=HA(k,VA(b,v)),A=HA(A,VA(S,m)),k=VA(k,HA(b,v)),A=VA(A,HA(S,m)),C=k-v,I=A-m,f=v-C*R/E,d=m-I*R/E,f=HA(f,VA(u,v)),d=HA(d,VA(h,m)),f=VA(f,HA(u,v)),d=VA(d,HA(h,m)),C=v-f,I=m-d,k=v+C*E/R,A=m+I*E/R)}t.bezierCurveTo(c,p,f,d,v,m),c=k,p=A}else t.lineTo(v,m)}u=v,h=m,g+=o}return y}function dg(t,e){if(t.length===e.length){for(var n=0;no;o++){var a=lg(n,t,e,o);r[2*o]=a[0],r[2*o+1]=a[1]}return r}function _g(t,e,n){for(var i=e.getBaseAxis(),r="x"===i.dim||"radius"===i.dim?0:1,o=[],a=0,s=[],l=[],u=[];a=0;o--){var a=n[o].dimension,s=t.dimensions[a],l=t.getDimensionInfo(s);if(i=l&&l.coordDim,"x"===i||"y"===i){r=n[o];break}}if(r){var u=e.getAxis(i),h=v(r.stops,function(t){return{offset:0,coord:u.toGlobalCoord(u.dataToCoord(t.value)),color:t.color}}),c=h.length,p=r.outerColors.slice();c&&h[0].coord>h[c-1].coord&&(h.reverse(),p.reverse());var f=10,d=h[0].coord-f,g=h[c-1].coord+f,m=g-d;if(.001>m)return"transparent";y(h,function(t){t.offset=(t.coord-d)/m}),h.push({offset:c?h[c-1].offset:.5,color:p[1]||"transparent"}),h.unshift({offset:c?h[0].offset:.5,color:p[0]||"transparent"});var _=new gx(0,0,0,0,h,!0);return _[i]=d,_[i+"2"]=g,_}}}function wg(t,e,n){var i=t.get("showAllSymbol"),r="auto"===i;if(!i||r){var o=n.getAxesByScale("ordinal")[0];if(o&&(!r||!bg(o,e))){var a=e.mapDimension(o.dim),s={};return y(o.getViewLabels(),function(t){s[t.tickValue]=1}),function(t){return!s.hasOwnProperty(e.get(a,t))}}}}function bg(t,e){var n=t.getExtent(),i=Math.abs(n[1]-n[0])/t.scale.count();isNaN(i)&&(i=0);for(var r=e.count(),o=Math.max(1,Math.round(r/5)),a=0;r>a;a+=o)if(1.5*BA.getSymbolSize(e,a)[t.isHorizontal()?1:0]>i)return!1;return!0}function Sg(t,e){return isNaN(t)||isNaN(e)}function Tg(t){for(var e=t.length/2;e>0&&Sg(t[2*e-2],t[2*e-1]);e--);return e-1}function Mg(t,e){return[t[2*e],t[2*e+1]]}function Cg(t,e,n){for(var i,r,o=t.length/2,a="x"===n?0:1,s=0,l=-1,u=0;o>u;u++)if(r=t[2*u+a],!isNaN(r)&&!isNaN(t[2*u+1-a]))if(0!==u){if(e>=i&&r>=e||i>=e&&e>=r){l=u;break}s=u,i=r}else i=r;return{range:[s,l],t:(e-i)/(r-i)}}function Ig(t,e,n,i){if(cd(e,"cartesian2d")){var r=i.getModel("endLabel"),o=r.get("show"),a=r.get("valueAnimation"),s=i.getData(),l={lastFrameIndex:0},u=o?function(n,i){t._endLabelOnDuring(n,i,s,l,a,r,e)}:null,h=e.getBaseAxis().isHorizontal(),c=ld(e,n,i,function(){var e=t._endLabel;e&&n&&null!=l.originalX&&e.attr({x:l.originalX,y:l.originalY})},u);if(!i.get("clip",!0)){var p=c.shape,f=Math.max(p.width,p.height);h?(p.y-=f,p.height+=2*f):(p.x-=f,p.width+=2*f)}return u&&u(1,c),c}return ud(e,n,i)}function kg(t,e){var n=e.getBaseAxis(),i=n.isHorizontal(),r=n.inverse,o=i?r?"right":"left":"center",a=i?"middle":r?"top":"bottom";return{normal:{align:t.get("align")||o,verticalAlign:t.get("verticalAlign")||a,padding:t.get("distance")||0}}}function Ag(t,e){return{seriesType:t,plan:mh(),reset:function(t){var n=t.getData(),i=t.coordinateSystem,r=t.pipelineContext,o=e||r.large;if(i){var a=v(i.dimensions,function(t){return n.mapDimension(t)}).slice(0,2),s=a.length,l=n.getCalculationInfo("stackResultDimension");Ep(n,a[0])&&(a[0]=l),Ep(n,a[1])&&(a[1]=l);var u=n.getDimensionInfo(a[0]),h=n.getDimensionInfo(a[1]),c=u&&u.index,p=h&&h.index;return s&&{progress:function(t,e){for(var n=t.end-t.start,r=o&&ug(n*s),a=[],l=[],u=t.start,h=0;ui&&!(e=n[i].states.emphasis);)i++;return e&&e.hoverLayer}function Eg(t,e,n,i){Rg(n)||n.dispatchAction({type:"highlight",seriesName:t,name:e,excludeSeriesId:i})}function Bg(t,e,n,i){Rg(n)||n.dispatchAction({type:"downplay",seriesName:t,name:e,excludeSeriesId:i})}function zg(t){var e=t.findComponents({mainType:"legend"});e&&e.length&&t.filterSeries(function(t){for(var n=0;na||T(a))return{point:[]};var s=o.getItemGraphicEl(a),l=n.coordinateSystem;if(n.getTooltipPosition)i=n.getTooltipPosition(a)||[];else if(l&&l.dataToPoint)if(t.isStacked){var u=l.getBaseAxis(),h=l.getOtherAxis(u),c=h.dim,p=u.dim,f="x"===c||"radius"===c?1:0,d=o.mapDimension(p),g=[];g[f]=o.get(d,a),g[1-f]=o.get(o.getCalculationInfo("stackResultDimension"),a),i=l.dataToPoint(g)||[]}else i=l.dataToPoint(o.getValues(v(l.dimensions,function(t){return o.mapDimension(t)}),a))||[];else if(s){var y=s.getBoundingRect().clone();y.applyTransform(s.transform),i=[y.x+y.width/2,y.y+y.height/2]}return{point:i,el:s}}function Hg(t,e,n){var i=t.currTrigger,r=[t.x,t.y],o=t,a=t.dispatchAction||Qy(n.dispatchAction,n),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){Kg(r)&&(r=Fg({seriesIndex:o.seriesIndex,dataIndex:o.dataIndex},e).point);var l=Kg(r),u=o.axesInfo,h=s.axesInfo,c="leave"===i||Kg(r),p={},f={},d={list:[],map:{}},g={showPointer:S(Wg,f),showTooltip:S(Xg,d)};y(s.coordSysMap,function(t,e){var n=l||t.containPoint(r);y(s.coordSysAxesInfo[e],function(t){var e=t.axis,i=qg(u,t);if(!c&&n&&(!u||i)){var o=i&&i.value;null!=o||l||(o=e.pointToData(r)),null!=o&&Vg(t,o,g,!1,p)}})});var v={};return y(h,function(t,e){var n=t.linkGroup;n&&!f[e]&&y(n.axesInfo,function(e,i){var r=f[i];if(e!==t&&r){var o=r.value;n.mapper&&(o=t.axis.scale.parse(n.mapper(o,Zg(e),Zg(t)))),v[t.key]=o}})}),y(v,function(t,e){Vg(h[e],t,g,!0,p)}),Ug(f,h,p),Yg(d,r,t,a),jg(h,a,n),p}}function Vg(t,e,n,i,r){var o=t.axis;if(!o.scale.isBlank()&&o.containData(e)){if(!t.involveSeries)return void n.showPointer(t,e);var a=Gg(e,t),s=a.payloadBatch,l=a.snapToValue;s[0]&&null==r.seriesIndex&&h(r,s[0]),!i&&t.snap&&o.containData(l)&&null!=l&&(e=l),n.showPointer(t,e,s),n.showTooltip(t,a,l)}}function Gg(t,e){var n=e.axis,i=n.dim,r=t,o=[],a=Number.MAX_VALUE,s=-1;return y(e.seriesModels,function(e){var l,u,h=e.getData().mapDimensionsAll(i);if(e.getAxisTooltipData){var c=e.getAxisTooltipData(h,t,n);u=c.dataIndices,l=c.nestestValue}else{if(u=e.getData().indicesOfNearest(h[0],t,"category"===n.type?.5:null),!u.length)return;l=e.getData().get(h[0],u[0])}if(null!=l&&isFinite(l)){var p=t-l,f=Math.abs(p);a>=f&&((a>f||p>=0&&0>s)&&(a=f,s=p,r=l,o.length=0),y(u,function(t){o.push({seriesIndex:e.seriesIndex,dataIndexInside:t,dataIndex:e.getData().getRawIndex(t)})}))}}),{payloadBatch:o,snapToValue:r}}function Wg(t,e,n,i){t[e.key]={value:n,payloadBatch:i}}function Xg(t,e,n,i){var r=n.payloadBatch,o=e.axis,a=o.model,s=e.axisPointerModel;if(e.triggerTooltip&&r.length){var l=e.coordSys.model,u=Yd(l),h=t.map[u];h||(h=t.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},t.list.push(h)),h.dataByAxis.push({axisDim:o.dim,axisIndex:a.componentIndex,axisType:a.type,axisId:a.id,value:i,valueLabelOpt:{precision:s.get(["label","precision"]),formatter:s.get(["label","formatter"])},seriesDataIndices:r.slice()})}}function Ug(t,e,n){var i=n.axesInfo=[];y(e,function(e,n){var r=e.axisPointerModel.option,o=t[n];o?(!e.useHandle&&(r.status="show"),r.value=o.value,r.seriesDataIndices=(o.payloadBatch||[]).slice()):!e.useHandle&&(r.status="hide"),"show"===r.status&&i.push({axisDim:e.axis.dim,axisIndex:e.axis.model.componentIndex,value:r.value})})}function Yg(t,e,n,i){if(Kg(e)||!t.list.length)return void i({type:"hideTip"});var r=((t.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};i({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:r.dataIndexInside,dataIndex:r.dataIndex,seriesIndex:r.seriesIndex,dataByCoordSys:t.list})}function jg(t,e,n){var i=n.getZr(),r="axisPointerLastHighlights",o=aD(i)[r]||{},a=aD(i)[r]={};y(t,function(t){var e=t.axisPointerModel.option;"show"===e.status&&y(e.seriesDataIndices,function(t){var e=t.seriesIndex+" | "+t.dataIndex;a[e]=t})});var s=[],l=[];y(o,function(t,e){!a[e]&&l.push(t)}),y(a,function(t,e){!o[e]&&s.push(t)}),l.length&&n.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:l}),s.length&&n.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:s})}function qg(t,e){for(var n=0;n<(t||[]).length;n++){var i=t[n];if(e.axis.dim===i.axisDim&&e.axis.model.componentIndex===i.axisIndex)return i}}function Zg(t){var e=t.axis.model,n={},i=n.axisDim=t.axis.dim;return n.axisIndex=n[i+"AxisIndex"]=e.componentIndex,n.axisName=n[i+"AxisName"]=e.name,n.axisId=n[i+"AxisId"]=e.id,n}function Kg(t){return!t||null==t[0]||isNaN(t[0])||null==t[1]||isNaN(t[1])}function $g(t,e,n){if(!Ny.node){var i=e.getZr();sD(i).records||(sD(i).records={}),Qg(i,e);var r=sD(i).records[t]||(sD(i).records[t]={});r.handler=n}}function Qg(t,e){function n(n,i){t.on(n,function(n){var r=ny(e);lD(sD(t).records,function(t){t&&i(t,n,r.dispatchAction)}),Jg(r.pendings,e)})}sD(t).initialized||(sD(t).initialized=!0,n("click",S(ey,"click")),n("mousemove",S(ey,"mousemove")),n("globalout",ty))}function Jg(t,e){var n,i=t.showTip.length,r=t.hideTip.length;i?n=t.showTip[i-1]:r&&(n=t.hideTip[r-1]),n&&(n.dispatchAction=null,e.dispatchAction(n))}function ty(t,e,n){t.handler("leave",null,n)}function ey(t,e,n,i){e.handler(t,n,i)}function ny(t){var e={showTip:[],hideTip:[]},n=function(i){var r=e[i.type];r?r.push(i):(i.dispatchAction=n,t.dispatchAction(i))};return{dispatchAction:n,pendings:e}}function iy(t,e){if(!Ny.node){var n=e.getZr(),i=(sD(n).records||{})[t];i&&(sD(n).records[t]=null)}}function ry(t,e,n,i){oy(hD(n).lastProp,i)||(hD(n).lastProp=i,e?ls(n,i,t):(n.stopAnimation(),n.attr(i)))}function oy(t,e){if(A(t)&&A(e)){var n=!0;return y(e,function(e,i){n=n&&oy(t[i],e)}),!!n}return t===e}function ay(t,e){t[e.get(["label","show"])?"show":"hide"]()}function sy(t){return{x:t.x||0,y:t.y||0,rotation:t.rotation||0}}function ly(t,e,n){var i=e.get("z"),r=e.get("zlevel");t&&t.traverse(function(t){"group"!==t.type&&(null!=i&&(t.z=i),null!=r&&(t.zlevel=r),t.silent=n)})}function uy(t){var e,n=t.get("type"),i=t.getModel(n+"Style");return"line"===n?(e=i.getLineStyle(),e.fill=null):"shadow"===n&&(e=i.getAreaStyle(),e.stroke=null),e}function hy(t,e,n,i,r){var o=n.get("value"),a=py(o,e.axis,e.ecModel,n.get("seriesDataIndices"),{precision:n.get(["label","precision"]),formatter:n.get(["label","formatter"])}),s=n.getModel("label"),l=hS(s.get("padding")||0),u=s.getFont(),h=Rn(a,u),c=r.position,p=h.width+l[1]+l[3],f=h.height+l[0]+l[2],d=r.align;"right"===d&&(c[0]-=p),"center"===d&&(c[0]-=p/2);var g=r.verticalAlign;"bottom"===g&&(c[1]-=f),"middle"===g&&(c[1]-=f/2),cy(c,p,f,i);var y=s.get("backgroundColor");y&&"auto"!==y||(y=e.get(["axisLine","lineStyle","color"])),t.label={x:c[0],y:c[1],style:Ps(s,{text:a,font:u,fill:s.getTextColor(),padding:l,backgroundColor:y}),z2:10}}function cy(t,e,n,i){var r=i.getWidth(),o=i.getHeight();t[0]=Math.min(t[0]+e,r)-e,t[1]=Math.min(t[1]+n,o)-n,t[0]=Math.max(t[0],0),t[1]=Math.max(t[1],0)}function py(t,e,n,i,r){t=e.scale.parse(t);var o=e.scale.getLabel({value:t},{precision:r.precision}),a=r.formatter;if(a){var s={value:Sf(e,{value:t}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};y(i,function(t){var e=n.getSeriesByIndex(t.seriesIndex),i=t.dataIndexInside,r=e&&e.getDataParams(i);r&&s.seriesData.push(r)}),C(a)?o=a.replace("{value}",o):M(a)&&(o=a(s))}return o}function fy(t,e,n){var i=Ne();return We(i,i,n.rotation),Ge(i,i,n.position),gs([t.dataToCoord(e),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],i)}function dy(t,e,n,i,r,o){var a=xA.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=r.get(["label","margin"]),hy(e,i,r,o,{position:fy(i.axis,t,n),align:a.textAlign,verticalAlign:a.textVerticalAlign})}function gy(t,e,n){return n=n||0,{x1:t[n],y1:t[1-n],x2:e[n],y2:e[1-n]}}function yy(t,e,n){return n=n||0,{x:t[n],y:t[1-n],width:e[n],height:e[1-n]}}function vy(t,e){var n={};return n[e.dim+"AxisIndex"]=e.index,t.getCartesian(n)}function my(t){return"x"===t.dim?0:1}function _y(t){var e=t.get("confine");return null!=e?!!e:"richText"===t.get("renderMode")}function xy(t){return t="left"===t?"right":"right"===t?"left":"top"===t?"bottom":"top"}function wy(t,e,n){if(!C(n)||"inside"===n)return"";e=Ml(e);var i=xy(n),r="",o="";p(["left","right"],i)>-1?(r=i+":-6px;top:50%;",o="translateY(-50%) rotate("+("left"===i?-225:-45)+"deg)"):(r=i+":-6px;left:50%;",o="translateX(-50%) rotate("+("top"===i?225:45)+"deg)"),o=v(mD,function(t){return t+"transform:"+o}).join(";");var a=["position:absolute;width:10px;height:10px;",""+r+o+";","border-bottom: "+e+" solid 1px;","border-right: "+e+" solid 1px;","background-color: "+t+";","box-shadow: 8px 8px 16px -3px #000;"];return'
'}function by(t,e){var n="cubic-bezier(0.23, 1, 0.32, 1)",i="opacity "+t/2+"s "+n+",visibility "+t/2+"s "+n;return e||(i+=",left "+t+"s "+n+",top "+t+"s "+n),v(mD,function(t){return t+"transition:"+i}).join(";")}function Sy(t){var e=[],n=t.get("fontSize"),i=t.getTextColor();i&&e.push("color:"+i),e.push("font:"+t.getFont()),n&&e.push("line-height:"+Math.round(3*n/2)+"px");var r=t.get("textShadowColor"),o=t.get("textShadowBlur")||0,a=t.get("textShadowOffsetX")||0,s=t.get("textShadowOffsetY")||0;return r&&o&&e.push("text-shadow:"+a+"px "+s+"px "+o+"px "+r),y(["decoration","align"],function(n){var i=t.get(n);i&&e.push("text-"+n+":"+i)}),e.join(";")}function Ty(t,e,n){var i=[],r=t.get("transitionDuration"),o=t.get("backgroundColor"),a=t.get("shadowBlur"),s=t.get("shadowColor"),l=t.get("shadowOffsetX"),u=t.get("shadowOffsetY"),h=t.getModel("textStyle"),c=ah(t,"html"),p=l+"px "+u+"px "+a+"px "+s;return i.push("box-shadow:"+p),e&&r&&i.push(by(r,n)),o&&(Ny.canvasSupported?i.push("background-Color:"+o):(i.push("background-Color:#"+un(o)),i.push("filter:alpha(opacity=70)"))),y(["width","color","radius"],function(e){var n="border-"+e,r=vl(n),o=t.get(r);null!=o&&i.push(n+":"+o+("color"===e?"":"px"))}),i.push(Sy(h)),null!=c&&i.push("padding:"+hS(c).join("px ")+"px"),i.join(";")+";"}function My(t,e,n,i,r){var o=e&&e.painter;if(n){var a=o&&o.getViewportRoot();a&&xe(t,a,document.body,i,r)}else{t[0]=i,t[1]=r;var s=o&&o.getViewportRootOffset();s&&(t[0]+=s.offsetLeft,t[1]+=s.offsetTop)}t[2]=t[0]/e.getWidth(),t[3]=t[1]/e.getHeight()}function Cy(t){return Math.max(0,t)}function Iy(t){var e=Cy(t.shadowBlur||0),n=Cy(t.shadowOffsetX||0),i=Cy(t.shadowOffsetY||0);return{left:Cy(e-n),right:Cy(e+n),top:Cy(e-i),bottom:Cy(e+i)}}function ky(t,e,n,i){t[0]=n,t[1]=i,t[2]=t[0]/e.getWidth(),t[3]=t[1]/e.getHeight()}function Ay(t){for(var e=t.pop();t.length;){var n=t.pop();n&&(n instanceof Xb&&(n=n.get("tooltip",!0)),C(n)&&(n={formatter:n}),e=new Xb(n,e,e.ecModel))}return e}function Dy(t,e){return t.dispatchAction||Qy(e.dispatchAction,e)}function Py(t,e,n,i,r,o,a){var s=n.getOuterSize(),l=s.width,u=s.height;return null!=o&&(t+l+o+2>i?t-=l+o:t+=o),null!=a&&(e+u+a>r?e-=u+a:e+=a),[t,e]}function Ly(t,e,n,i,r){var o=n.getOuterSize(),a=o.width,s=o.height;return t=Math.min(t+a,i)-a,e=Math.min(e+s,r)-s,t=Math.max(t,0),e=Math.max(e,0),[t,e]}function Oy(t,e,n){var i=n[0],r=n[1],o=10,a=5,s=0,l=0,u=e.width,h=e.height;switch(t){case"inside":s=e.x+u/2-i/2,l=e.y+h/2-r/2;break;case"top":s=e.x+u/2-i/2,l=e.y-r-o;break;case"bottom":s=e.x+u/2-i/2,l=e.y+h+o;break;case"left":s=e.x-i-o-a,l=e.y+h/2-r/2;break;case"right":s=e.x+u+o+a,l=e.y+h/2-r/2}return[s,l]}function Ry(t){return"center"===t||"middle"===t}var Ey=function(t,e){return(Ey=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},By=function(){function t(){this.firefox=!1,this.ie=!1,this.edge=!1,this.weChat=!1}return t}(),zy=function(){function t(){this.browser=new By,this.node=!1,this.wxa=!1,this.worker=!1,this.canvasSupported=!1,this.svgSupported=!1,this.touchEventsSupported=!1,this.pointerEventsSupported=!1,this.domSupported=!1}return t}(),Ny=new zy;"object"==typeof wx&&"function"==typeof wx.getSystemInfoSync?(Ny.wxa=!0,Ny.canvasSupported=!0,Ny.touchEventsSupported=!0):"undefined"==typeof document&&"undefined"!=typeof self?(Ny.worker=!0,Ny.canvasSupported=!0):"undefined"==typeof navigator?(Ny.node=!0,Ny.canvasSupported=!0,Ny.svgSupported=!0):i(navigator.userAgent,Ny);var Fy={"[object Function]":!0,"[object RegExp]":!0,"[object Date]":!0,"[object Error]":!0,"[object CanvasGradient]":!0,"[object CanvasPattern]":!0,"[object Image]":!0,"[object Canvas]":!0},Hy={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0},Vy=Object.prototype.toString,Gy=Array.prototype,Wy=Gy.forEach,Xy=Gy.filter,Uy=Gy.slice,Yy=Gy.map,jy=function(){}.constructor,qy=jy?jy.prototype:null,Zy={},Ky=2311,$y=function(){return Zy.createCanvas()};Zy.createCanvas=function(){return document.createElement("canvas")};var Qy=qy&&M(qy.bind)?qy.call.bind(qy.bind):b,Jy="__ec_primitive__",tv=function(){function t(e){function n(t,e){i?r.set(t,e):r.set(e,t)}this.data={};var i=T(e);this.data={};var r=this;e instanceof t?e.each(n):e&&y(e,n)}return t.prototype.get=function(t){return this.data.hasOwnProperty(t)?this.data[t]:null},t.prototype.set=function(t,e){return this.data[t]=e},t.prototype.each=function(t,e){for(var n in this.data)this.data.hasOwnProperty(n)&&t.call(e,this.data[n],n)},t.prototype.keys=function(){return w(this.data)},t.prototype.removeKey=function(t){delete this.data[t]},t}(),ev=(Object.freeze||Object)({$override:r,guid:o,logError:a,clone:s,merge:l,mergeAll:u,extend:h,defaults:c,createCanvas:$y,indexOf:p,inherits:f,mixin:d,isArrayLike:g,each:y,map:v,reduce:m,filter:_,find:x,keys:w,bind:Qy,curry:S,isArray:T,isFunction:M,isString:C,isStringSafe:I,isNumber:k,isObject:A,isBuiltInObject:D,isTypedArray:P,isDom:L,isGradientObject:O,isPatternObject:R,isRegExp:E,eqNaN:B,retrieve:z,retrieve2:N,retrieve3:F,slice:H,normalizeCssArray:V,assert:G,trim:W,setAsPrimitive:X,isPrimitive:U,HashMap:tv,createHashMap:Y,concatArray:j,createObject:q,hasOwn:Z,noop:K}),nv=re,iv=oe,rv=ce,ov=pe,av=(Object.freeze||Object)({create:$,copy:Q,clone:J,set:te,add:ee,scaleAndAdd:ne,sub:ie,len:re,length:nv,lenSquare:oe,lengthSquare:iv,mul:ae,div:se,dot:le,scale:ue,normalize:he,distance:ce,dist:rv,distanceSquare:pe,distSquare:ov,negate:fe,lerp:de,applyTransform:ge,min:ye,max:ve}),sv=function(){function t(t,e){this.target=t,this.topTarget=e&&e.topTarget}return t}(),lv=function(){function t(t){this.handler=t,t.on("mousedown",this._dragStart,this),t.on("mousemove",this._drag,this),t.on("mouseup",this._dragEnd,this)}return t.prototype._dragStart=function(t){for(var e=t.target;e&&!e.draggable;)e=e.parent; +e&&(this._draggingTarget=e,e.dragging=!0,this._x=t.offsetX,this._y=t.offsetY,this.handler.dispatchToElement(new sv(e,t),"dragstart",t.event))},t.prototype._drag=function(t){var e=this._draggingTarget;if(e){var n=t.offsetX,i=t.offsetY,r=n-this._x,o=i-this._y;this._x=n,this._y=i,e.drift(r,o,t),this.handler.dispatchToElement(new sv(e,t),"drag",t.event);var a=this.handler.findHover(n,i,e).target,s=this._dropTarget;this._dropTarget=a,e!==a&&(s&&a!==s&&this.handler.dispatchToElement(new sv(s,t),"dragleave",t.event),a&&a!==s&&this.handler.dispatchToElement(new sv(a,t),"dragenter",t.event))}},t.prototype._dragEnd=function(t){var e=this._draggingTarget;e&&(e.dragging=!1),this.handler.dispatchToElement(new sv(e,t),"dragend",t.event),this._dropTarget&&this.handler.dispatchToElement(new sv(this._dropTarget,t),"drop",t.event),this._draggingTarget=null,this._dropTarget=null},t}(),uv=function(){function t(t){t&&(this._$eventProcessor=t)}return t.prototype.on=function(t,e,n,i){this._$handlers||(this._$handlers={});var r=this._$handlers;if("function"==typeof e&&(i=n,n=e,e=null),!n||!t)return this;var o=this._$eventProcessor;null!=e&&o&&o.normalizeQuery&&(e=o.normalizeQuery(e)),r[t]||(r[t]=[]);for(var a=0;ar;r++)n[t][r].h!==e&&i.push(n[t][r]);n[t]=i}n[t]&&0===n[t].length&&delete n[t]}else delete n[t];return this},t.prototype.trigger=function(t){for(var e=[],n=1;ns;s++){var l=i[s];if(!r||!r.filter||null==l.query||r.filter(t,l.query))switch(o){case 0:l.h.call(l.ctx);break;case 1:l.h.call(l.ctx,e[0]);break;case 2:l.h.call(l.ctx,e[0],e[1]);break;default:l.h.apply(l.ctx,e)}}return r&&r.afterTrigger&&r.afterTrigger(t),this},t.prototype.triggerWithContext=function(t){if(!this._$handlers)return this;var e=this._$handlers[t],n=this._$eventProcessor;if(e)for(var i=arguments,r=i.length,o=i[r-1],a=e.length,s=0;a>s;s++){var l=e[s];if(!n||!n.filter||null==l.query||n.filter(t,l.query))switch(r){case 0:l.h.call(o);break;case 1:l.h.call(o,i[0]);break;case 2:l.h.call(o,i[0],i[1]);break;default:l.h.apply(o,i.slice(1,r-1))}}return n&&n.afterTrigger&&n.afterTrigger(t),this},t}(),hv=Math.log(2),cv="___zrEVENTSAVED",pv=[],fv="undefined"!=typeof window&&!!window.addEventListener,dv=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,gv=[],yv=fv?function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0}:function(t){t.returnValue=!1,t.cancelBubble=!0},vv=function(){function t(){this._track=[]}return t.prototype.recognize=function(t,e,n){return this._doTrack(t,e,n),this._recognize(t)},t.prototype.clear=function(){return this._track.length=0,this},t.prototype._doTrack=function(t,e,n){var i=t.touches;if(i){for(var r={points:[],touches:[],target:e,event:t},o=0,a=i.length;a>o;o++){var s=i[o],l=Me(n,s,{});r.points.push([l.zrX,l.zrY]),r.touches.push(s)}this._track.push(r)}},t.prototype._recognize=function(t){for(var e in mv)if(mv.hasOwnProperty(e)){var n=mv[e](this._track,t);if(n)return n}},t}(),mv={pinch:function(t,e){var n=t.length;if(n){var i=(t[n-1]||{}).points,r=(t[n-2]||{}).points||i;if(r&&r.length>1&&i&&i.length>1){var o=Le(i)/Le(r);!isFinite(o)&&(o=1),e.pinchScale=o;var a=Oe(i);return e.pinchX=a[0],e.pinchY=a[1],{type:"pinch",target:t[0].target,event:e}}}}},_v="silent",xv=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.handler=null,e}return e(n,t),n.prototype.dispose=function(){},n.prototype.setCursor=function(){},n}(uv),wv=function(){function t(t,e){this.x=t,this.y=e}return t}(),bv=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],Sv=function(t){function n(e,n,i,r){var o=t.call(this)||this;return o._hovered=new wv(0,0),o.storage=e,o.painter=n,o.painterRoot=r,i=i||new xv,o.proxy=null,o.setHandlerProxy(i),o._draggingMgr=new lv(o),o}return e(n,t),n.prototype.setHandlerProxy=function(t){this.proxy&&this.proxy.dispose(),t&&(y(bv,function(e){t.on&&t.on(e,this[e],this)},this),t.handler=this),this.proxy=t},n.prototype.mousemove=function(t){var e=t.zrX,n=t.zrY,i=ze(this,e,n),r=this._hovered,o=r.target;o&&!o.__zr&&(r=this.findHover(r.x,r.y),o=r.target);var a=this._hovered=i?new wv(e,n):this.findHover(e,n),s=a.target,l=this.proxy;l.setCursor&&l.setCursor(s?s.cursor:"default"),o&&s!==o&&this.dispatchToElement(r,"mouseout",t),this.dispatchToElement(a,"mousemove",t),s&&s!==o&&this.dispatchToElement(a,"mouseover",t)},n.prototype.mouseout=function(t){var e=t.zrEventControl,n=t.zrIsToLocalDOM;"only_globalout"!==e&&this.dispatchToElement(this._hovered,"mouseout",t),"no_globalout"!==e&&!n&&this.trigger("globalout",{type:"globalout",event:t})},n.prototype.resize=function(){this._hovered=new wv(0,0)},n.prototype.dispatch=function(t,e){var n=this[t];n&&n.call(this,e)},n.prototype.dispose=function(){this.proxy.dispose(),this.storage=null,this.proxy=null,this.painter=null},n.prototype.setCursorStyle=function(t){var e=this.proxy;e.setCursor&&e.setCursor(t)},n.prototype.dispatchToElement=function(t,e,n){t=t||{};var i=t.target;if(!i||!i.silent){for(var r="on"+e,o=Re(e,t,n);i&&(i[r]&&(o.cancelBubble=!!i[r].call(i,o)),i.trigger(e,o),i=i.__hostTarget?i.__hostTarget:i.parent,!o.cancelBubble););o.cancelBubble||(this.trigger(e,o),this.painter&&this.painter.eachOtherLayer&&this.painter.eachOtherLayer(function(t){"function"==typeof t[r]&&t[r].call(t,o),t.trigger&&t.trigger(e,o)}))}},n.prototype.findHover=function(t,e,n){for(var i=this.storage.getDisplayList(),r=new wv(t,e),o=i.length-1;o>=0;o--){var a=void 0;if(i[o]!==n&&!i[o].ignore&&(a=Be(i[o],t,e))&&(!r.topTarget&&(r.topTarget=i[o]),a!==_v)){r.target=i[o];break}}return r},n.prototype.processGesture=function(t,e){this._gestureMgr||(this._gestureMgr=new vv);var n=this._gestureMgr;"start"===e&&n.clear();var i=n.recognize(t,this.findHover(t.zrX,t.zrY,null).target,this.proxy.dom);if("end"===e&&n.clear(),i){var r=i.type;t.gestureEvent=r;var o=new wv;o.target=i.target,this.dispatchToElement(o,r,i.event)}},n}(uv);y(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],function(t){Sv.prototype[t]=function(e){var n,i,r=e.zrX,o=e.zrY,a=ze(this,r,o);if("mouseup"===t&&a||(n=this.findHover(r,o),i=n.target),"mousedown"===t)this._downEl=i,this._downPoint=[e.zrX,e.zrY],this._upEl=i;else if("mouseup"===t)this._upEl=i;else if("click"===t){if(this._downEl!==this._upEl||!this._downPoint||rv(this._downPoint,[e.zrX,e.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,t,e)}});var Tv,Mv,Cv=(Object.freeze||Object)({create:Ne,identity:Fe,copy:He,mul:Ve,translate:Ge,rotate:We,scale:Xe,invert:Ue,clone:Ye}),Iv=Fe,kv=5e-5,Av=[],Dv=[],Pv=Ne(),Lv=Math.abs,Ov=function(){function t(){}return t.prototype.setPosition=function(t){this.x=t[0],this.y=t[1]},t.prototype.setScale=function(t){this.scaleX=t[0],this.scaleY=t[1]},t.prototype.setOrigin=function(t){this.originX=t[0],this.originY=t[1]},t.prototype.needLocalTransform=function(){return je(this.rotation)||je(this.x)||je(this.y)||je(this.scaleX-1)||je(this.scaleY-1)},t.prototype.updateTransform=function(){var t=this.parent,e=t&&t.transform,n=this.needLocalTransform(),i=this.transform;return n||e?(i=i||Ne(),n?this.getLocalTransform(i):Iv(i),e&&(n?Ve(i,t.transform,i):He(i,t.transform)),this.transform=i,void this._resolveGlobalScaleRatio(i)):void(i&&Iv(i))},t.prototype._resolveGlobalScaleRatio=function(t){var e=this.globalScaleRatio;if(null!=e&&1!==e){this.getGlobalScale(Av);var n=Av[0]<0?-1:1,i=Av[1]<0?-1:1,r=((Av[0]-n)*e+n)/Av[0]||0,o=((Av[1]-i)*e+i)/Av[1]||0;t[0]*=r,t[1]*=r,t[2]*=o,t[3]*=o}this.invTransform=this.invTransform||Ne(),Ue(this.invTransform,t)},t.prototype.getLocalTransform=function(e){return t.getLocalTransform(this,e)},t.prototype.getComputedTransform=function(){for(var t=this,e=[];t;)e.push(t),t=t.parent;for(;t=e.pop();)t.updateTransform();return this.transform},t.prototype.setLocalTransform=function(t){if(t){var e=t[0]*t[0]+t[1]*t[1],n=t[2]*t[2]+t[3]*t[3];je(e-1)&&(e=Math.sqrt(e)),je(n-1)&&(n=Math.sqrt(n)),t[0]<0&&(e=-e),t[3]<0&&(n=-n),this.rotation=Math.atan2(-t[1]/n,t[0]/e),0>e&&0>n&&(this.rotation+=Math.PI,e=-e,n=-n),this.x=t[4],this.y=t[5],this.scaleX=e,this.scaleY=n}},t.prototype.decomposeTransform=function(){if(this.transform){var t=this.parent,e=this.transform;t&&t.transform&&(Ve(Dv,t.invTransform,e),e=Dv);var n=this.originX,i=this.originY;(n||i)&&(Pv[4]=n,Pv[5]=i,Ve(Dv,e,Pv),Dv[4]-=n,Dv[5]-=i,e=Dv),this.setLocalTransform(e)}},t.prototype.getGlobalScale=function(t){var e=this.transform;return t=t||[],e?(t[0]=Math.sqrt(e[0]*e[0]+e[1]*e[1]),t[1]=Math.sqrt(e[2]*e[2]+e[3]*e[3]),e[0]<0&&(t[0]=-t[0]),e[3]<0&&(t[1]=-t[1]),t):(t[0]=1,t[1]=1,t)},t.prototype.transformCoordToLocal=function(t,e){var n=[t,e],i=this.invTransform;return i&&ge(n,n,i),n},t.prototype.transformCoordToGlobal=function(t,e){var n=[t,e],i=this.transform;return i&&ge(n,n,i),n},t.prototype.getLineScale=function(){var t=this.transform;return t&&Lv(t[0]-1)>1e-10&&Lv(t[3]-1)>1e-10?Math.sqrt(Lv(t[0]*t[3]-t[2]*t[1])):1},t.getLocalTransform=function(t,e){e=e||[],Iv(e);var n=t.originX||0,i=t.originY||0,r=t.scaleX,o=t.scaleY,a=t.rotation||0,s=t.x,l=t.y;return e[4]-=n,e[5]-=i,e[0]*=r,e[1]*=o,e[2]*=r,e[3]*=o,e[4]*=r,e[5]*=o,a&&We(e,e,a),e[4]+=n,e[5]+=i,e[4]+=s,e[5]+=l,e},t.initDefaultProps=function(){var e=t.prototype;e.x=0,e.y=0,e.scaleX=1,e.scaleY=1,e.originX=0,e.originY=0,e.rotation=0,e.globalScaleRatio=1}(),t}(),Rv={linear:function(t){return t},quadraticIn:function(t){return t*t},quadraticOut:function(t){return t*(2-t)},quadraticInOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)},cubicIn:function(t){return t*t*t},cubicOut:function(t){return--t*t*t+1},cubicInOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},quarticIn:function(t){return t*t*t*t},quarticOut:function(t){return 1- --t*t*t*t},quarticInOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)},quinticIn:function(t){return t*t*t*t*t},quinticOut:function(t){return--t*t*t*t*t+1},quinticInOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},sinusoidalIn:function(t){return 1-Math.cos(t*Math.PI/2)},sinusoidalOut:function(t){return Math.sin(t*Math.PI/2)},sinusoidalInOut:function(t){return.5*(1-Math.cos(Math.PI*t))},exponentialIn:function(t){return 0===t?0:Math.pow(1024,t-1)},exponentialOut:function(t){return 1===t?1:1-Math.pow(2,-10*t)},exponentialInOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(-Math.pow(2,-10*(t-1))+2)},circularIn:function(t){return 1-Math.sqrt(1-t*t)},circularOut:function(t){return Math.sqrt(1- --t*t)},circularInOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},elasticIn:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||1>n?(n=1,e=i/4):e=i*Math.asin(1/n)/(2*Math.PI),-(n*Math.pow(2,10*(t-=1))*Math.sin(2*(t-e)*Math.PI/i)))},elasticOut:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||1>n?(n=1,e=i/4):e=i*Math.asin(1/n)/(2*Math.PI),n*Math.pow(2,-10*t)*Math.sin(2*(t-e)*Math.PI/i)+1)},elasticInOut:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||1>n?(n=1,e=i/4):e=i*Math.asin(1/n)/(2*Math.PI),(t*=2)<1?-.5*n*Math.pow(2,10*(t-=1))*Math.sin(2*(t-e)*Math.PI/i):n*Math.pow(2,-10*(t-=1))*Math.sin(2*(t-e)*Math.PI/i)*.5+1)},backIn:function(t){var e=1.70158;return t*t*((e+1)*t-e)},backOut:function(t){var e=1.70158;return--t*t*((e+1)*t+e)+1},backInOut:function(t){var e=2.5949095;return(t*=2)<1?.5*t*t*((e+1)*t-e):.5*((t-=2)*t*((e+1)*t+e)+2)},bounceIn:function(t){return 1-Rv.bounceOut(1-t)},bounceOut:function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},bounceInOut:function(t){return.5>t?.5*Rv.bounceIn(2*t):.5*Rv.bounceOut(2*t-1)+.5}},Ev=function(){function t(t){this._initialized=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=t.life||1e3,this._delay=t.delay||0,this.loop=null==t.loop?!1:t.loop,this.gap=t.gap||0,this.easing=t.easing||"linear",this.onframe=t.onframe,this.ondestroy=t.ondestroy,this.onrestart=t.onrestart}return t.prototype.step=function(t,e){if(this._initialized||(this._startTime=t+this._delay,this._initialized=!0),this._paused)return void(this._pausedTime+=e);var n=(t-this._startTime-this._pausedTime)/this._life;0>n&&(n=0),n=Math.min(n,1);var i=this.easing,r="string"==typeof i?Rv[i]:i,o="function"==typeof r?r(n):n;if(this.onframe&&this.onframe(o),1===n){if(!this.loop)return!0;this._restart(t),this.onrestart&&this.onrestart()}return!1},t.prototype._restart=function(t){var e=(t-this._startTime-this._pausedTime)%this._life;this._startTime=t-e+this.gap,this._pausedTime=0},t.prototype.pause=function(){this._paused=!0},t.prototype.resume=function(){this._paused=!1},t}(),Bv=function(){function t(t){this.value=t}return t}(),zv=function(){function t(){this._len=0}return t.prototype.insert=function(t){var e=new Bv(t);return this.insertEntry(e),e},t.prototype.insertEntry=function(t){this.head?(this.tail.next=t,t.prev=this.tail,t.next=null,this.tail=t):this.head=this.tail=t,this._len++},t.prototype.remove=function(t){var e=t.prev,n=t.next;e?e.next=n:this.head=n,n?n.prev=e:this.tail=e,t.next=t.prev=null,this._len--},t.prototype.len=function(){return this._len},t.prototype.clear=function(){this.head=this.tail=null,this._len=0},t}(),Nv=function(){function t(t){this._list=new zv,this._maxSize=10,this._map={},this._maxSize=t}return t.prototype.put=function(t,e){var n=this._list,i=this._map,r=null;if(null==i[t]){var o=n.len(),a=this._lastRemovedEntry;if(o>=this._maxSize&&o>0){var s=n.head;n.remove(s),delete i[s.key],r=s.value,this._lastRemovedEntry=s}a?a.value=e:a=new Bv(e),a.key=t,n.insertEntry(a),i[t]=a}return r},t.prototype.get=function(t){var e=this._map[t],n=this._list;return null!=e?(e!==n.tail&&(n.remove(e),n.insertEntry(e)),e.value):void 0},t.prototype.clear=function(){this._list.clear(),this._map={}},t.prototype.len=function(){return this._list.len()},t}(),Fv={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]},Hv=new Nv(20),Vv=null,Gv=hn,Wv=cn,Xv=(Object.freeze||Object)({parse:on,lift:ln,toHex:un,fastLerp:hn,fastMapToColor:Gv,lerp:cn,mapToColor:Wv,modifyHSL:pn,modifyAlpha:fn,stringify:dn,lum:gn,random:yn}),Uv=Array.prototype.slice,Yv=[0,0,0,0],jv=function(){function t(t){this.keyframes=[],this.maxTime=0,this.arrDim=0,this.interpolable=!0,this._needsSort=!1,this._isAllValueEqual=!0,this._lastFrame=0,this._lastFramePercent=0,this.propName=t}return t.prototype.isFinished=function(){return this._finished},t.prototype.setFinished=function(){this._finished=!0,this._additiveTrack&&this._additiveTrack.setFinished()},t.prototype.needsAnimate=function(){return!this._isAllValueEqual&&this.keyframes.length>=2&&this.interpolable},t.prototype.getAdditiveTrack=function(){return this._additiveTrack},t.prototype.addKeyframe=function(t,e){t>=this.maxTime?this.maxTime=t:this._needsSort=!0;var n=this.keyframes,i=n.length;if(this.interpolable)if(g(e)){var r=Dn(e);if(i>0&&this.arrDim!==r)return void(this.interpolable=!1);if(1===r&&"number"!=typeof e[0]||2===r&&"number"!=typeof e[0][0])return void(this.interpolable=!1);if(i>0){var o=n[i-1];this._isAllValueEqual&&(1===r?Tn(e,o.value)||(this._isAllValueEqual=!1):this._isAllValueEqual=!1)}this.arrDim=r}else{if(this.arrDim>0)return void(this.interpolable=!1);if("string"==typeof e){var a=on(e);a?(e=a,this.isValueColor=!0):this.interpolable=!1}else if("number"!=typeof e)return void(this.interpolable=!1);if(this._isAllValueEqual&&i>0){var o=n[i-1];this.isValueColor&&!Tn(o.value,e)?this._isAllValueEqual=!1:o.value!==e&&(this._isAllValueEqual=!1)}}var s={time:t,value:e,percent:0};return this.keyframes.push(s),s},t.prototype.prepare=function(t){var e=this.keyframes;this._needsSort&&e.sort(function(t,e){return t.time-e.time});for(var n=this.arrDim,i=e.length,r=e[i-1],o=0;i>o;o++)e[o].percent=e[o].time/this.maxTime,n>0&&o!==i-1&&Sn(e[o].value,r.value,n);if(t&&this.needsAnimate()&&t.needsAnimate()&&n===t.arrDim&&this.isValueColor===t.isValueColor&&!t._finished){this._additiveTrack=t;for(var a=e[0].value,o=0;i>o;o++)0===n?e[o].additiveValue=this.isValueColor?wn([],e[o].value,a,-1):e[o].value-a:1===n?e[o].additiveValue=wn([],e[o].value,a,-1):2===n&&(e[o].additiveValue=bn([],e[o].value,a,-1))}},t.prototype.step=function(t,e){if(!this._finished){this._additiveTrack&&this._additiveTrack._finished&&(this._additiveTrack=null);var n,i=null!=this._additiveTrack,r=i?"additiveValue":"value",o=this.keyframes,a=this.keyframes.length,s=this.propName,l=this.arrDim,u=this.isValueColor;if(0>e)n=0;else if(e=0&&!(o[n].percent<=e);n--);n=Math.min(n,a-2)}else{for(n=this._lastFrame;a>n&&!(o[n].percent>e);n++);n=Math.min(n-1,a-2)}var c=o[n+1],p=o[n];if(p&&c){this._lastFrame=n,this._lastFramePercent=e;var f=c.percent-p.percent;if(0!==f){var d=(e-p.percent)/f,g=i?this._additiveValue:u?Yv:t[s];if((l>0||u)&&!g&&(g=this._additiveValue=[]),this.useSpline){var y=o[n][r],v=o[0===n?n:n-1][r],m=o[n>a-2?a-1:n+1][r],_=o[n>a-3?a-1:n+2][r];if(l>0)1===l?Cn(g,v,y,m,_,d,d*d,d*d*d):In(g,v,y,m,_,d,d*d,d*d*d);else if(u)Cn(g,v,y,m,_,d,d*d,d*d*d),i||(t[s]=An(g));else{var x=void 0;x=this.interpolable?Mn(v,y,m,_,d,d*d,d*d*d):m,i?this._additiveValue=x:t[s]=x}}else if(l>0)1===l?_n(g,p[r],c[r],d):xn(g,p[r],c[r],d);else if(u)_n(g,p[r],c[r],d),i||(t[s]=An(g));else{var x=void 0;x=this.interpolable?vn(p[r],c[r],d):mn(p[r],c[r],d),i?this._additiveValue=x:t[s]=x}i&&this._addToTarget(t)}}}},t.prototype._addToTarget=function(t){var e=this.arrDim,n=this.propName,i=this._additiveValue;0===e?this.isValueColor?(on(t[n],Yv),wn(Yv,Yv,i,1),t[n]=An(Yv)):t[n]=t[n]+i:1===e?wn(t[n],t[n],i,1):2===e&&bn(t[n],t[n],i,1)},t}(),qv=function(){function t(t,e,n){return this._tracks={},this._trackKeys=[],this._delay=0,this._maxTime=0,this._paused=!1,this._started=0,this._clip=null,this._target=t,this._loop=e,e&&n?void a("Can' use additive animation on looped animation."):void(this._additiveAnimators=n)}return t.prototype.getTarget=function(){return this._target},t.prototype.changeTarget=function(t){this._target=t},t.prototype.when=function(t,e){return this.whenWithKeys(t,e,w(e))},t.prototype.whenWithKeys=function(t,e,n){for(var i=this._tracks,r=0;rn;n++)t[n].call(this)},t.prototype._abortedCallback=function(){this._setTracksFinished();var t=this.animation,e=this._abortedList;if(t&&t.removeClip(this._clip),this._clip=null,e)for(var n=0;n0)){this._started=1;for(var n=this,i=[],r=0;r1){var a=o.pop();r.addKeyframe(a.time,t[i]),r.prepare(r.getAdditiveTrack())}}}},t}(),Zv=function(){function t(t,e){this.x=t||0,this.y=e||0}return t.prototype.copy=function(t){return this.x=t.x,this.y=t.y,this},t.prototype.clone=function(){return new t(this.x,this.y)},t.prototype.set=function(t,e){return this.x=t,this.y=e,this},t.prototype.equal=function(t){return t.x===this.x&&t.y===this.y},t.prototype.add=function(t){return this.x+=t.x,this.y+=t.y,this},t.prototype.scale=function(t){this.x*=t,this.y*=t},t.prototype.scaleAndAdd=function(t,e){this.x+=t.x*e,this.y+=t.y*e},t.prototype.sub=function(t){return this.x-=t.x,this.y-=t.y,this},t.prototype.dot=function(t){return this.x*t.x+this.y*t.y},t.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},t.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},t.prototype.normalize=function(){var t=this.len();return this.x/=t,this.y/=t,this},t.prototype.distance=function(t){var e=this.x-t.x,n=this.y-t.y;return Math.sqrt(e*e+n*n)},t.prototype.distanceSquare=function(t){var e=this.x-t.x,n=this.y-t.y;return e*e+n*n},t.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},t.prototype.transform=function(t){if(t){var e=this.x,n=this.y;return this.x=t[0]*e+t[2]*n+t[4],this.y=t[1]*e+t[3]*n+t[5],this}},t.prototype.toArray=function(t){return t[0]=this.x,t[1]=this.y,t},t.prototype.fromArray=function(t){this.x=t[0],this.y=t[1]},t.set=function(t,e,n){t.x=e,t.y=n},t.copy=function(t,e){t.x=e.x,t.y=e.y},t.len=function(t){return Math.sqrt(t.x*t.x+t.y*t.y)},t.lenSquare=function(t){return t.x*t.x+t.y*t.y},t.dot=function(t,e){return t.x*e.x+t.y*e.y},t.add=function(t,e,n){t.x=e.x+n.x,t.y=e.y+n.y},t.sub=function(t,e,n){t.x=e.x-n.x,t.y=e.y-n.y},t.scale=function(t,e,n){t.x=e.x*n,t.y=e.y*n},t.scaleAndAdd=function(t,e,n,i){t.x=e.x+n.x*i,t.y=e.y+n.y*i},t.lerp=function(t,e,n,i){var r=1-i;t.x=r*e.x+i*n.x,t.y=r*e.y+i*n.y},t}(),Kv=Math.min,$v=Math.max,Qv=new Zv,Jv=new Zv,tm=new Zv,em=new Zv,nm=new Zv,im=new Zv,rm=function(){function t(t,e,n,i){0>n&&isFinite(n)&&(t+=n,n=-n),0>i&&isFinite(i)&&(e+=i,i=-i),this.x=t,this.y=e,this.width=n,this.height=i}return t.prototype.union=function(t){var e=Kv(t.x,this.x),n=Kv(t.y,this.y);this.width=isFinite(this.x)&&isFinite(this.width)?$v(t.x+t.width,this.x+this.width)-e:t.width,this.height=isFinite(this.y)&&isFinite(this.height)?$v(t.y+t.height,this.y+this.height)-n:t.height,this.x=e,this.y=n},t.prototype.applyTransform=function(e){t.applyTransform(this,this,e)},t.prototype.calculateTransform=function(t){var e=this,n=t.width/e.width,i=t.height/e.height,r=Ne();return Ge(r,r,[-e.x,-e.y]),Xe(r,r,[n,i]),Ge(r,r,[t.x,t.y]),r},t.prototype.intersect=function(e,n){if(!e)return!1;e instanceof t||(e=t.create(e));var i=this,r=i.x,o=i.x+i.width,a=i.y,s=i.y+i.height,l=e.x,u=e.x+e.width,h=e.y,c=e.y+e.height,p=!(l>o||r>u||h>s||a>c);if(n){var f=1/0,d=0,g=Math.abs(o-l),y=Math.abs(u-r),v=Math.abs(s-h),m=Math.abs(c-a),_=Math.min(g,y),x=Math.min(v,m);l>o||r>u?_>d&&(d=_,y>g?Zv.set(im,-g,0):Zv.set(im,y,0)):f>_&&(f=_,y>g?Zv.set(nm,g,0):Zv.set(nm,-y,0)),h>s||a>c?x>d&&(d=x,m>v?Zv.set(im,0,-v):Zv.set(im,0,m)):f>_&&(f=_,m>v?Zv.set(nm,0,v):Zv.set(nm,0,-m))}return n&&Zv.copy(n,p?nm:im),p},t.prototype.contain=function(t,e){var n=this;return t>=n.x&&t<=n.x+n.width&&e>=n.y&&e<=n.y+n.height},t.prototype.clone=function(){return new t(this.x,this.y,this.width,this.height)},t.prototype.copy=function(e){t.copy(this,e)},t.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},t.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},t.prototype.isZero=function(){return 0===this.width||0===this.height},t.create=function(e){return new t(e.x,e.y,e.width,e.height)},t.copy=function(t,e){t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height},t.applyTransform=function(e,n,i){if(!i)return void(e!==n&&t.copy(e,n));if(i[1]<1e-5&&i[1]>-1e-5&&i[2]<1e-5&&i[2]>-1e-5){var r=i[0],o=i[3],a=i[4],s=i[5];return e.x=n.x*r+a,e.y=n.y*o+s,e.width=n.width*r,e.height=n.height*o,e.width<0&&(e.x+=e.width,e.width=-e.width),void(e.height<0&&(e.y+=e.height,e.height=-e.height))}Qv.x=tm.x=n.x,Qv.y=em.y=n.y,Jv.x=em.x=n.x+n.width,Jv.y=tm.y=n.y+n.height,Qv.transform(i),em.transform(i),Jv.transform(i),tm.transform(i),e.x=Kv(Qv.x,Jv.x,tm.x,em.x),e.y=Kv(Qv.y,Jv.y,tm.y,em.y);var l=$v(Qv.x,Jv.x,tm.x,em.x),u=$v(Qv.y,Jv.y,tm.y,em.y);e.width=l-e.x,e.height=u-e.y},t}(),om={},am="12px sans-serif",sm={measureText:Pn},lm=1;"undefined"!=typeof window&&(lm=Math.max(window.devicePixelRatio||window.screen.deviceXDPI/window.screen.logicalXDPI||1,1));var um=lm,hm=.4,cm="#333",pm="#ccc",fm="#eee",dm="__zr_normal__",gm=["x","y","scaleX","scaleY","originX","originY","rotation","ignore"],ym={x:!0,y:!0,scaleX:!0,scaleY:!0,originX:!0,originY:!0,rotation:!0,ignore:!1},vm={},mm=new rm(0,0,0,0),_m=function(){function t(t){this.id=o(),this.animators=[],this.currentStates=[],this.states={},this._init(t)}return t.prototype._init=function(t){this.attr(t)},t.prototype.drift=function(t,e){switch(this.draggable){case"horizontal":e=0;break;case"vertical":t=0}var n=this.transform;n||(n=this.transform=[1,0,0,1,0,0]),n[4]+=t,n[5]+=e,this.decomposeTransform(),this.markRedraw()},t.prototype.beforeUpdate=function(){},t.prototype.afterUpdate=function(){},t.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},t.prototype.updateInnerText=function(t){var e=this._textContent;if(e&&(!e.ignore||t)){this.textConfig||(this.textConfig={});var n=this.textConfig,i=n.local,r=e.attachedTransform,o=void 0,a=void 0,s=!1;r.parent=i?this:null;var l=!1;if(r.x=e.x,r.y=e.y,r.originX=e.originX,r.originY=e.originY,r.rotation=e.rotation,r.scaleX=e.scaleX,r.scaleY=e.scaleY,null!=n.position){var u=mm;u.copy(n.layoutRect?n.layoutRect:this.getBoundingRect()),i||u.applyTransform(this.transform),this.calculateTextPosition?this.calculateTextPosition(vm,n,u):Fn(vm,n,u),r.x=vm.x,r.y=vm.y,o=vm.align,a=vm.verticalAlign;var h=n.origin;if(h&&null!=n.rotation){var c=void 0,p=void 0;"center"===h?(c=.5*u.width,p=.5*u.height):(c=Nn(h[0],u.width),p=Nn(h[1],u.height)),l=!0,r.originX=-r.x+c+(i?0:u.x),r.originY=-r.y+p+(i?0:u.y)}}null!=n.rotation&&(r.rotation=n.rotation);var f=n.offset;f&&(r.x+=f[0],r.y+=f[1],l||(r.originX=-f[0],r.originY=-f[1])); +var d=null==n.inside?"string"==typeof n.position&&n.position.indexOf("inside")>=0:n.inside,g=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={}),y=void 0,v=void 0,m=void 0;d&&this.canBeInsideText()?(y=n.insideFill,v=n.insideStroke,(null==y||"auto"===y)&&(y=this.getInsideTextFill()),(null==v||"auto"===v)&&(v=this.getInsideTextStroke(y),m=!0)):(y=n.outsideFill,v=n.outsideStroke,(null==y||"auto"===y)&&(y=this.getOutsideFill()),(null==v||"auto"===v)&&(v=this.getOutsideStroke(y),m=!0)),y=y||"#000",(y!==g.fill||v!==g.stroke||m!==g.autoStroke||o!==g.align||a!==g.verticalAlign)&&(s=!0,g.fill=y,g.stroke=v,g.autoStroke=m,g.align=o,g.verticalAlign=a,e.setDefaultTextStyle(g)),s&&e.dirtyStyle(),e.markRedraw()}},t.prototype.canBeInsideText=function(){return!0},t.prototype.getInsideTextFill=function(){return"#fff"},t.prototype.getInsideTextStroke=function(){return"#000"},t.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?pm:cm},t.prototype.getOutsideStroke=function(){var t=this.__zr&&this.__zr.getBackgroundColor(),e="string"==typeof t&&on(t);e||(e=[255,255,255,1]);for(var n=e[3],i=this.__zr.isDarkMode(),r=0;3>r;r++)e[r]=e[r]*n+(i?0:255)*(1-n);return e[3]=1,dn(e,"rgba")},t.prototype.traverse=function(){},t.prototype.attrKV=function(t,e){"textConfig"===t?this.setTextConfig(e):"textContent"===t?this.setTextContent(e):"clipPath"===t?this.setClipPath(e):"extra"===t?(this.extra=this.extra||{},h(this.extra,e)):this[t]=e},t.prototype.hide=function(){this.ignore=!0,this.markRedraw()},t.prototype.show=function(){this.ignore=!1,this.markRedraw()},t.prototype.attr=function(t,e){if("string"==typeof t)this.attrKV(t,e);else if(A(t))for(var n=t,i=w(n),r=0;r0},t.prototype.getState=function(t){return this.states[t]},t.prototype.ensureState=function(t){var e=this.states;return e[t]||(e[t]={}),e[t]},t.prototype.clearStates=function(t){this.useState(dm,!1,t)},t.prototype.useState=function(e,n,i){var r=e===dm,o=this.hasState();if(o||!r){var s=this.currentStates,l=this.stateTransition;if(!(p(s,e)>=0)||!n&&1!==s.length){var u;if(this.stateProxy&&!r&&(u=this.stateProxy(e)),u||(u=this.states&&this.states[e]),!u&&!r)return void a("State "+e+" not exists.");r||this.saveCurrentToNormalState(u);var h=!(!u||!u.hoverLayer);return h&&this._toggleHoverLayerFlag(!0),this._applyStateObj(e,u,this._normalState,n,!i&&!this.__inHover&&l&&l.duration>0,l),this._textContent&&this._textContent.useState(e,n),this._textGuide&&this._textGuide.useState(e,n),r?(this.currentStates=[],this._normalState={}):n?this.currentStates.push(e):this.currentStates=[e],this._updateAnimationTargets(),this.markRedraw(),!h&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~t.REDARAW_BIT),u}}},t.prototype.useStates=function(e,n){if(e.length){var i=[],r=this.currentStates,o=e.length,a=o===r.length;if(a)for(var s=0;o>s;s++)if(e[s]!==r[s]){a=!1;break}if(a)return;for(var s=0;o>s;s++){var l=e[s],u=void 0;this.stateProxy&&(u=this.stateProxy(l,e)),u||(u=this.states[l]),u&&i.push(u)}var h=!(!i[o-1]||!i[o-1].hoverLayer);h&&this._toggleHoverLayerFlag(!0);var c=this._mergeStates(i),p=this.stateTransition;this.saveCurrentToNormalState(c),this._applyStateObj(e.join(","),c,this._normalState,!1,!n&&!this.__inHover&&p&&p.duration>0,p),this._textContent&&this._textContent.useStates(e),this._textGuide&&this._textGuide.useStates(e),this._updateAnimationTargets(),this.currentStates=e.slice(),this.markRedraw(),!h&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=~t.REDARAW_BIT)}else this.clearStates()},t.prototype._updateAnimationTargets=function(){for(var t=0;t=0){var n=this.currentStates.slice();n.splice(e,1),this.useStates(n)}},t.prototype.replaceState=function(t,e,n){var i=this.currentStates.slice(),r=p(i,t),o=p(i,e)>=0;r>=0?o?i.splice(r,1):i[r]=e:n&&!o&&i.push(e),this.useStates(i)},t.prototype.toggleState=function(t,e){e?this.useState(t,!0):this.removeState(t)},t.prototype._mergeStates=function(t){for(var e,n={},i=0;i=0&&e.splice(n,1)}),this.animators.push(t),n&&n.animation.addAnimator(t),n&&n.wakeUp()},t.prototype.updateDuringAnimation=function(){this.markRedraw()},t.prototype.stopAnimation=function(t,e){for(var n=this.animators,i=n.length,r=[],o=0;i>o;o++){var a=n[o];t&&t!==a.scope?r.push(a):a.stop(e)}return this.animators=r,this},t.prototype.animateTo=function(t,e,n){Hn(this,t,e,n)},t.prototype.animateFrom=function(t,e,n){Hn(this,t,e,n,!0)},t.prototype._transitionState=function(t,e,n,i){for(var r=Hn(this,e,n,i),o=0;o8)&&(n("position","_legacyPos","x","y"),n("scale","_legacyScale","scaleX","scaleY"),n("origin","_legacyOrigin","originX","originY"))}(),t}();d(_m,uv),d(_m,Ov);var xm,wm=32,bm=7,Sm=!1,Tm=function(){function t(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=ti}return t.prototype.traverse=function(t,e){for(var n=0;ni;i++)this._updateAndAddDisplayable(e[i],null,t);n.length=this._displayListLen,Ny.canvasSupported&&Qn(n,ti)},t.prototype._updateAndAddDisplayable=function(t,e,n){if(!t.ignore||n){t.beforeUpdate(),t.update(),t.afterUpdate();var i=t.getClipPath();if(t.ignoreClip)e=null;else if(i){e=e?e.slice():[];for(var r=i,o=t;r;)r.parent=o,r.updateTransform(),e.push(r),o=r,r=r.getClipPath()}if(t.childrenRef){for(var a=t.childrenRef(),s=0;s0&&(u.__clipPaths=[]),isNaN(u.z)&&(Jn(),u.z=0),isNaN(u.z2)&&(Jn(),u.z2=0),isNaN(u.zlevel)&&(Jn(),u.zlevel=0),this._displayList[this._displayListLen++]=u}var h=t.getDecalElement&&t.getDecalElement();h&&this._updateAndAddDisplayable(h,e,n);var c=t.getTextGuideLine();c&&this._updateAndAddDisplayable(c,e,n);var p=t.getTextContent();p&&this._updateAndAddDisplayable(p,e,n)}},t.prototype.addRoot=function(t){t.__zr&&t.__zr.storage===this||this._roots.push(t)},t.prototype.delRoot=function(t){if(t instanceof Array)for(var e=0,n=t.length;n>e;e++)this.delRoot(t[e]);else{var i=p(this._roots,t);i>=0&&this._roots.splice(i,1)}},t.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},t.prototype.getRoots=function(){return this._roots},t.prototype.dispose=function(){this._displayList=null,this._roots=null},t}();xm="undefined"!=typeof window&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(t){return setTimeout(t,16)};var Mm=xm,Cm=function(t){function n(e){var n=t.call(this)||this;return n._running=!1,n._time=0,n._pausedTime=0,n._pauseStart=0,n._paused=!1,e=e||{},n.stage=e.stage||{},n.onframe=e.onframe||function(){},n}return e(n,t),n.prototype.addClip=function(t){t.animation&&this.removeClip(t),this._clipsHead?(this._clipsTail.next=t,t.prev=this._clipsTail,t.next=null,this._clipsTail=t):this._clipsHead=this._clipsTail=t,t.animation=this},n.prototype.addAnimator=function(t){t.animation=this;var e=t.getClip();e&&this.addClip(e)},n.prototype.removeClip=function(t){if(t.animation){var e=t.prev,n=t.next;e?e.next=n:this._clipsHead=n,n?n.prev=e:this._clipsTail=e,t.next=t.prev=t.animation=null}},n.prototype.removeAnimator=function(t){var e=t.getClip();e&&this.removeClip(e),t.animation=null},n.prototype.update=function(t){for(var e=(new Date).getTime()-this._pausedTime,n=e-this._time,i=this._clipsHead;i;){var r=i.next,o=i.step(e,n);o?(i.ondestroy&&i.ondestroy(),this.removeClip(i),i=r):i=r}this._time=e,t||(this.onframe(n),this.trigger("frame",n),this.stage.update&&this.stage.update())},n.prototype._startLoop=function(){function t(){e._running&&(Mm(t),!e._paused&&e.update())}var e=this;this._running=!0,Mm(t)},n.prototype.start=function(){this._running||(this._time=(new Date).getTime(),this._pausedTime=0,this._startLoop())},n.prototype.stop=function(){this._running=!1},n.prototype.pause=function(){this._paused||(this._pauseStart=(new Date).getTime(),this._paused=!0)},n.prototype.resume=function(){this._paused&&(this._pausedTime+=(new Date).getTime()-this._pauseStart,this._paused=!1)},n.prototype.clear=function(){for(var t=this._clipsHead;t;){var e=t.next;t.prev=t.next=t.animation=null,t=e}this._clipsHead=this._clipsTail=null},n.prototype.isFinished=function(){return null==this._clipsHead},n.prototype.animate=function(t,e){e=e||{},this.start();var n=new qv(t,e.loop);return this.addAnimator(n),n},n}(uv),Im=300,km=Ny.domSupported,Am=function(){var t=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],e=["touchstart","touchend","touchmove"],n={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},i=v(t,function(t){var e=t.replace("mouse","pointer");return n.hasOwnProperty(e)?e:t});return{mouse:t,touch:e,pointer:i}}(),Dm={mouse:["mousemove","mouseup"],pointer:["pointermove","pointerup"]},Pm=!1,Lm=function(){function t(t,e){this.stopPropagation=K,this.stopImmediatePropagation=K,this.preventDefault=K,this.type=e.type,this.target=this.currentTarget=t.dom,this.pointerType=e.pointerType,this.clientX=e.clientX,this.clientY=e.clientY}return t}(),Om={mousedown:function(t){t=ke(this.dom,t),this.__mayPointerCapture=[t.zrX,t.zrY],this.trigger("mousedown",t)},mousemove:function(t){t=ke(this.dom,t);var e=this.__mayPointerCapture;!e||t.zrX===e[0]&&t.zrY===e[1]||this.__togglePointerCapture(!0),this.trigger("mousemove",t)},mouseup:function(t){t=ke(this.dom,t),this.__togglePointerCapture(!1),this.trigger("mouseup",t)},mouseout:function(t){if(t.target===this.dom){t=ke(this.dom,t),this.__pointerCapturing&&(t.zrEventControl="no_globalout");var e=t.toElement||t.relatedTarget;t.zrIsToLocalDOM=oi(this,e),this.trigger("mouseout",t)}},wheel:function(t){Pm=!0,t=ke(this.dom,t),this.trigger("mousewheel",t)},mousewheel:function(t){Pm||(t=ke(this.dom,t),this.trigger("mousewheel",t))},touchstart:function(t){t=ke(this.dom,t),ii(t),this.__lastTouchMoment=new Date,this.handler.processGesture(t,"start"),Om.mousemove.call(this,t),Om.mousedown.call(this,t)},touchmove:function(t){t=ke(this.dom,t),ii(t),this.handler.processGesture(t,"change"),Om.mousemove.call(this,t)},touchend:function(t){t=ke(this.dom,t),ii(t),this.handler.processGesture(t,"end"),Om.mouseup.call(this,t),+new Date-+this.__lastTouchMoment0&&(this._ux=w_(n/um/t)||0,this._uy=w_(n/um/e)||0)},t.prototype.setDPR=function(t){this.dpr=t},t.prototype.setContext=function(t){this._ctx=t},t.prototype.getContext=function(){return this._ctx},t.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},t.prototype.reset=function(){this._saveData&&(this._len=0),this._lineDash&&(this._lineDash=null,this._dashOffset=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},t.prototype.moveTo=function(t,e){return this.addData(u_.M,t,e),this._ctx&&this._ctx.moveTo(t,e),this._x0=t,this._y0=e,this._xi=t,this._yi=e,this},t.prototype.lineTo=function(t,e){var n=w_(t-this._xi)>this._ux||w_(e-this._yi)>this._uy||this._len<5;return this.addData(u_.L,t,e),this._ctx&&n&&(this._needsDash?this._dashedLineTo(t,e):this._ctx.lineTo(t,e)),n&&(this._xi=t,this._yi=e),this},t.prototype.bezierCurveTo=function(t,e,n,i,r,o){return this.addData(u_.C,t,e,n,i,r,o),this._ctx&&(this._needsDash?this._dashedBezierTo(t,e,n,i,r,o):this._ctx.bezierCurveTo(t,e,n,i,r,o)),this._xi=r,this._yi=o,this},t.prototype.quadraticCurveTo=function(t,e,n,i){return this.addData(u_.Q,t,e,n,i),this._ctx&&(this._needsDash?this._dashedQuadraticTo(t,e,n,i):this._ctx.quadraticCurveTo(t,e,n,i)),this._xi=n,this._yi=i,this},t.prototype.arc=function(t,e,n,i,r,o){M_[0]=i,M_[1]=r,Oi(M_,o),i=M_[0],r=M_[1];var a=r-i;return this.addData(u_.A,t,e,n,n,i,a,0,o?0:1),this._ctx&&this._ctx.arc(t,e,n,i,r,o),this._xi=m_(r)*n+t,this._yi=__(r)*n+e,this},t.prototype.arcTo=function(t,e,n,i,r){return this._ctx&&this._ctx.arcTo(t,e,n,i,r),this},t.prototype.rect=function(t,e,n,i){return this._ctx&&this._ctx.rect(t,e,n,i),this.addData(u_.R,t,e,n,i),this},t.prototype.closePath=function(){this.addData(u_.Z);var t=this._ctx,e=this._x0,n=this._y0;return t&&(this._needsDash&&this._dashedLineTo(e,n),t.closePath()),this._xi=e,this._yi=n,this},t.prototype.fill=function(t){t&&t.fill(),this.toStatic()},t.prototype.stroke=function(t){t&&t.stroke(),this.toStatic()},t.prototype.setLineDash=function(t){if(t instanceof Array){this._lineDash=t,this._dashIdx=0;for(var e=0,n=0;nn;n++)this.data[n]=t[n];this._len=e},t.prototype.appendPath=function(t){t instanceof Array||(t=[t]);for(var e=t.length,n=0,i=this._len,r=0;e>r;r++)n+=t[r].len();T_&&this.data instanceof Float32Array&&(this.data=new Float32Array(i+n));for(var r=0;e>r;r++)for(var o=t[r].data,a=0;at.length&&(this._expandData(),t=this.data);for(var e=0;es&&(s=r+s),s%=r,f-=s*h,d-=s*c;h>0&&t>=f||0>h&&f>=t||0===h&&(c>0&&e>=d||0>c&&d>=e);)i=this._dashIdx,n=o[i],f+=h*n,d+=c*n,this._dashIdx=(i+1)%g,h>0&&l>f||0>h&&f>l||c>0&&u>d||0>c&&d>u||a[i%2?"moveTo":"lineTo"](h>=0?y_(f,t):v_(f,t),c>=0?y_(d,e):v_(d,e));h=f-t,c=d-e,this._dashOffset=-x_(h*h+c*c)},t.prototype._dashedBezierTo=function(t,e,n,i,r,o){var a,s,l,u,h,c=this._ctx,p=this._dashSum,f=this._dashOffset,d=this._lineDash,g=this._xi,y=this._yi,v=0,m=this._dashIdx,_=d.length,x=0;for(0>f&&(f=p+f),f%=p,a=0;1>a;a+=.1)s=fi(g,t,n,r,a+.1)-fi(g,t,n,r,a),l=fi(y,e,i,o,a+.1)-fi(y,e,i,o,a),v+=x_(s*s+l*l);for(;_>m&&(x+=d[m],!(x>f));m++);for(a=(x-f)/v;1>=a;)u=fi(g,t,n,r,a),h=fi(y,e,i,o,a),m%2?c.moveTo(u,h):c.lineTo(u,h),a+=d[m]/v,m=(m+1)%_;m%2!==0&&c.lineTo(r,o),s=r-u,l=o-h,this._dashOffset=-x_(s*s+l*l)},t.prototype._dashedQuadraticTo=function(t,e,n,i){var r=n,o=i;n=(n+2*t)/3,i=(i+2*e)/3,t=(this._xi+2*t)/3,e=(this._yi+2*e)/3,this._dashedBezierTo(t,e,n,i,r,o)},t.prototype.toStatic=function(){if(this._saveData){var t=this.data;t instanceof Array&&(t.length=this._len,T_&&this._len>11&&(this.data=new Float32Array(t)))}},t.prototype.getBoundingRect=function(){p_[0]=p_[1]=d_[0]=d_[1]=Number.MAX_VALUE,f_[0]=f_[1]=g_[0]=g_[1]=-Number.MAX_VALUE;var t,e=this.data,n=0,i=0,r=0,o=0;for(t=0;tc;){var p=t[c++],f=1===c;f&&(r=t[c],o=t[c+1],a=r,s=o);var d=-1;switch(p){case u_.M:r=a=t[c++],o=s=t[c++];break;case u_.L:var g=t[c++],y=t[c++],v=g-r,m=y-o;(w_(v)>n||w_(m)>i||c===e-1)&&(d=Math.sqrt(v*v+m*m),r=g,o=y);break;case u_.C:var _=t[c++],x=t[c++],g=t[c++],y=t[c++],w=t[c++],b=t[c++];d=_i(r,o,_,x,g,y,w,b,10),r=w,o=b;break;case u_.Q:var _=t[c++],x=t[c++],g=t[c++],y=t[c++];d=Ci(r,o,_,x,g,y,10),r=g,o=y;break;case u_.A:var S=t[c++],T=t[c++],M=t[c++],C=t[c++],I=t[c++],k=t[c++],A=k+I;c+=1;{!t[c++]}f&&(a=m_(I)*M+S,s=__(I)*C+T),d=v_(M,C)*y_(S_,Math.abs(k)),r=m_(A)*M+S,o=__(A)*C+T;break;case u_.R:a=r=t[c++],s=o=t[c++];var D=t[c++],P=t[c++];d=2*D+2*P;break;case u_.Z:var v=a-r,m=s-o;d=Math.sqrt(v*v+m*m),r=a,o=s}d>=0&&(l[h++]=d,u+=d)}return this._pathLen=u,u},t.prototype.rebuildPath=function(t,e){var n,i,r,o,a,s,l,u,h,c=this.data,p=this._ux,f=this._uy,d=this._len,g=1>e,y=0,v=0;if(!g||(this._pathSegLen||this._calculateLength(),l=this._pathSegLen,u=this._pathLen,h=e*u))t:for(var m=0;d>m;){var _=c[m++],x=1===m;switch(x&&(r=c[m],o=c[m+1],n=r,i=o),_){case u_.M:n=r=c[m++],i=o=c[m++],t.moveTo(r,o);break;case u_.L:if(a=c[m++],s=c[m++],w_(a-r)>p||w_(s-o)>f||m===d-1){if(g){var w=l[v++];if(y+w>h){var b=(h-y)/w;t.lineTo(r*(1-b)+a*b,o*(1-b)+s*b);break t}y+=w}t.lineTo(a,s),r=a,o=s}break;case u_.C:var S=c[m++],T=c[m++],M=c[m++],C=c[m++],I=c[m++],k=c[m++];if(g){var w=l[v++];if(y+w>h){var b=(h-y)/w;vi(r,S,M,I,b,h_),vi(o,T,C,k,b,c_),t.bezierCurveTo(h_[1],c_[1],h_[2],c_[2],h_[3],c_[3]);break t}y+=w}t.bezierCurveTo(S,T,M,C,I,k),r=I,o=k;break;case u_.Q:var S=c[m++],T=c[m++],M=c[m++],C=c[m++];if(g){var w=l[v++];if(y+w>h){var b=(h-y)/w;Ti(r,S,M,b,h_),Ti(o,T,C,b,c_),t.quadraticCurveTo(h_[1],c_[1],h_[2],c_[2]);break t}y+=w}t.quadraticCurveTo(S,T,M,C),r=M,o=C;break;case u_.A:var A=c[m++],D=c[m++],P=c[m++],L=c[m++],O=c[m++],R=c[m++],E=c[m++],B=!c[m++],z=P>L?P:L,N=w_(P-L)>.001,F=O+R,H=!1;if(g){var w=l[v++];y+w>h&&(F=O+R*(h-y)/w,H=!0),y+=w}if(N&&t.ellipse?t.ellipse(A,D,P,L,E,O,F,B):t.arc(A,D,z,O,F,B),H)break t;x&&(n=m_(O)*P+A,i=__(O)*L+D),r=m_(F)*P+A,o=__(F)*L+D;break;case u_.R:n=r=c[m],i=o=c[m+1],a=c[m++],s=c[m++];var V=c[m++],G=c[m++];if(g){var w=l[v++];if(y+w>h){var W=h-y;t.moveTo(a,s),t.lineTo(a+y_(W,V),s),W-=V,W>0&&t.lineTo(a+V,s+y_(W,G)),W-=G,W>0&&t.lineTo(a+v_(V-W,0),s+G),W-=V,W>0&&t.lineTo(a,s+v_(G-W,0));break t}y+=w}t.rect(a,s,V,G);break;case u_.Z:if(g){var w=l[v++];if(y+w>h){var b=(h-y)/w;t.lineTo(r*(1-b)+n*b,o*(1-b)+i*b);break t}y+=w}t.closePath(),r=n,o=i}}},t.CMD=u_,t.initDefaultProps=function(){var e=t.prototype;e._saveData=!0,e._needsDash=!1,e._dashOffset=0,e._dashIdx=0,e._dashSum=0,e._ux=0,e._uy=0}(),t}(),I_=2*Math.PI,k_=2*Math.PI,A_=C_.CMD,D_=2*Math.PI,P_=1e-4,L_=[-1,-1,-1],O_=[-1,-1],R_=c({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},Nm),E_={style:c({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},Fm.style)},B_=["x","y","rotation","scaleX","scaleY","originX","originY","invisible","culling","z","z2","zlevel","parent"],z_=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.update=function(){var e=this;t.prototype.update.call(this);var i=this.style;if(i.decal){var r=this._decalEl=this._decalEl||new n;r.buildPath===n.prototype.buildPath&&(r.buildPath=function(t){e.buildPath(t,e.shape)}),r.silent=!0;var o=r.style;for(var a in i)o[a]!==i[a]&&(o[a]=i[a]);o.fill=i.fill?i.decal:null,o.decal=null,o.shadowColor=null,i.strokeFirst&&(o.stroke=null); +for(var s=0;s.5?cm:e>.2?fm:pm}if(t)return pm}return cm},n.prototype.getInsideTextStroke=function(t){var e=this.style.fill;if(C(e)){var n=this.__zr,i=!(!n||!n.isDarkMode()),r=gn(t,0)0))},n.prototype.hasFill=function(){var t=this.style,e=t.fill;return null!=e&&"none"!==e},n.prototype.getBoundingRect=function(){var t=this._rect,e=this.style,i=!t;if(i){var r=!1;this.path||(r=!0,this.createPathProxy());var o=this.path;(r||this.__dirty&n.SHAPE_CHANGED_BIT)&&(o.beginPath(),this.buildPath(o,this.shape,!1),this.pathUpdated()),t=o.getBoundingRect()}if(this._rect=t,this.hasStroke()&&this.path&&this.path.len()>0){var a=this._rectWithStroke||(this._rectWithStroke=t.clone());if(this.__dirty||i){a.copy(t);var s=e.strokeNoScale?this.getLineScale():1,l=e.lineWidth;if(!this.hasFill()){var u=this.strokeContainThreshold;l=Math.max(l,null==u?4:u)}s>1e-10&&(a.width+=l/s,a.height+=l/s,a.x-=l/s/2,a.y-=l/s/2)}return a}return t},n.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect(),r=this.style;if(t=n[0],e=n[1],i.contain(t,e)){var o=this.path;if(this.hasStroke()){var a=r.lineWidth,s=r.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(this.hasFill()||(a=Math.max(a,this.strokeContainThreshold)),ji(o,a/s,t,e)))return!0}if(this.hasFill())return Yi(o,t,e)}return!1},n.prototype.dirtyShape=function(){this.__dirty|=n.SHAPE_CHANGED_BIT,this._rect&&(this._rect=null),this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},n.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},n.prototype.animateShape=function(t){return this.animate("shape",t)},n.prototype.updateDuringAnimation=function(t){"style"===t?this.dirtyStyle():"shape"===t?this.dirtyShape():this.markRedraw()},n.prototype.attrKV=function(e,n){"shape"===e?this.setShape(n):t.prototype.attrKV.call(this,e,n)},n.prototype.setShape=function(t,e){var n=this.shape;return n||(n=this.shape={}),"string"==typeof t?n[t]=e:h(n,t),this.dirtyShape(),this},n.prototype.shapeChanged=function(){return!!(this.__dirty&n.SHAPE_CHANGED_BIT)},n.prototype.createStyle=function(t){return q(R_,t)},n.prototype._innerSaveToNormal=function(e){t.prototype._innerSaveToNormal.call(this,e);var n=this._normalState;e.shape&&!n.shape&&(n.shape=h({},this.shape))},n.prototype._applyStateObj=function(e,n,i,r,o,a){t.prototype._applyStateObj.call(this,e,n,i,r,o,a);var s,l=!(n&&r);if(n&&n.shape?o?r?s=n.shape:(s=h({},i.shape),h(s,n.shape)):(s=h({},r?this.shape:i.shape),h(s,n.shape)):l&&(s=i.shape),s)if(o){this.shape=h({},this.shape);for(var u={},c=w(s),p=0;p=0&&(n.splice(i,0,t),this._doAdd(t))}return this},n.prototype.replaceAt=function(t,e){var n=this._children,i=n[e];if(t&&t!==this&&t.parent!==this&&t!==i){n[e]=t,i.parent=null;var r=this.__zr;r&&i.removeSelfFromZr(r),this._doAdd(t)}return this},n.prototype._doAdd=function(t){t.parent&&t.parent.remove(t),t.parent=this;var e=this.__zr;e&&e!==t.__zr&&t.addSelfToZr(e),e&&e.refresh()},n.prototype.remove=function(t){var e=this.__zr,n=this._children,i=p(n,t);return 0>i?this:(n.splice(i,1),t.parent=null,e&&t.removeSelfFromZr(e),e&&e.refresh(),this)},n.prototype.removeAll=function(){for(var t=this._children,e=this.__zr,n=0;ns&&(r=n*(1-s)+r*s,o=i*(1-s)+o*s),t.lineTo(r,o))},n.prototype.pointAt=function(t){var e=this.shape;return[e.x1*(1-t)+e.x2*t,e.y1*(1-t)+e.y2*t]},n}(z_);ux.prototype.type="line";var hx=function(){function t(){this.points=null,this.smooth=0,this.smoothConstraint=null}return t}(),cx=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultShape=function(){return new hx},n.prototype.buildPath=function(t,e){fr(t,e,!0)},n}(z_);cx.prototype.type="polygon";var px=function(){function t(){this.points=null,this.percent=1,this.smooth=0,this.smoothConstraint=null}return t}(),fx=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},n.prototype.getDefaultShape=function(){return new px},n.prototype.buildPath=function(t,e){fr(t,e,!1)},n}(z_);fx.prototype.type="polyline";var dx=function(){function t(t){this.colorStops=t||[]}return t.prototype.addColorStop=function(t,e){this.colorStops.push({offset:t,color:e})},t}(),gx=function(t){function n(e,n,i,r,o,a){var s=t.call(this,o)||this;return s.x=null==e?0:e,s.y=null==n?0:n,s.x2=null==i?1:i,s.y2=null==r?0:r,s.type="linear",s.global=a||!1,s}return e(n,t),n}(dx),yx=c({strokeFirst:!0,font:am,x:0,y:0,textAlign:"left",textBaseline:"top",miterLimit:2},R_),vx=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e(n,t),n.prototype.hasStroke=function(){var t=this.style,e=t.stroke;return null!=e&&"none"!==e&&t.lineWidth>0},n.prototype.hasFill=function(){var t=this.style,e=t.fill;return null!=e&&"none"!==e},n.prototype.createStyle=function(t){return q(yx,t)},n.prototype.setBoundingRect=function(t){this._rect=t},n.prototype.getBoundingRect=function(){var t=this.style;if(!this._rect){var e=t.text;null!=e?e+="":e="";var n=Rn(e,t.font,t.textAlign,t.textBaseline);if(n.x+=t.x||0,n.y+=t.y||0,this.hasStroke()){var i=t.lineWidth;n.x-=i/2,n.y-=i/2,n.width+=i,n.height+=i}this._rect=n}return this._rect},n.initDefaultProps=function(){var t=n.prototype;t.dirtyRectTolerance=10}(),n}(Vm);vx.prototype.type="tspan";var mx,_x=/[\s,]+/,xx=(function(){function t(){this._defs={},this._root=null,this._isDefine=!1,this._isText=!1}return t.prototype.parse=function(t,e){e=e||{};var n=dr(t);if(!n)throw new Error("Illegal svg");var i=new Z_;this._root=i;var r=n.getAttribute("viewBox")||"",o=parseFloat(n.getAttribute("width")||e.width),a=parseFloat(n.getAttribute("height")||e.height);isNaN(o)&&(o=null),isNaN(a)&&(a=null),mr(n,i,null,!0);for(var s=n.firstChild;s;)this._parseNode(s,i),s=s.nextSibling;var l,u;if(r){var h=W(r).split(_x);h.length>=4&&(l={x:parseFloat(h[0]||0),y:parseFloat(h[1]||0),width:parseFloat(h[2]),height:parseFloat(h[3])})}if(l&&null!=o&&null!=a&&(u=br(l,o,a),!e.ignoreViewBox)){var c=i;i=new Z_,i.add(c),c.scaleX=c.scaleY=u.scale,c.x=u.x,c.y=u.y}return e.ignoreRootClip||null==o||null==a||i.setClipPath(new rx({shape:{x:0,y:0,width:o,height:a}})),{root:i,width:o,height:a,viewBoxRect:l,viewBoxTransform:u}},t.prototype._parseNode=function(t,e){var n=t.nodeName.toLowerCase();"defs"===n?this._isDefine=!0:"text"===n&&(this._isText=!0);var i;if(this._isDefine){var r=xx[n];if(r){var o=r.call(this,t),a=t.getAttribute("id");a&&(this._defs[a]=o)}}else{var r=mx[n];r&&(i=r.call(this,t,e),e.add(i))}if(i)for(var s=t.firstChild;s;)1===s.nodeType&&this._parseNode(s,i),3===s.nodeType&&this._isText&&this._parseText(s,i),s=s.nextSibling;"defs"===n?this._isDefine=!1:"text"===n&&(this._isText=!1)},t.prototype._parseText=function(t,e){if(1===t.nodeType){var n=t.getAttribute("dx")||0,i=t.getAttribute("dy")||0;this._textX+=parseFloat(n),this._textY+=parseFloat(i)}var r=new vx({style:{text:t.textContent},x:this._textX||0,y:this._textY||0});yr(e,r),mr(t,r,this._defs);var o=r.style,a=o.fontSize;a&&9>a&&(o.fontSize=9,r.scaleX*=a/9,r.scaleY*=a/9);var s=(o.fontSize||o.fontFamily)&&[o.fontStyle,o.fontWeight,(o.fontSize||12)+"px",o.fontFamily||"sans-serif"].join(" ");o.font=s;var l=r.getBoundingRect();return this._textX+=l.width,e.add(r),r},t.internalField=function(){mx={g:function(t,e){var n=new Z_;return yr(e,n),mr(t,n,this._defs),n},rect:function(t,e){var n=new rx;return yr(e,n),mr(t,n,this._defs),n.setShape({x:parseFloat(t.getAttribute("x")||"0"),y:parseFloat(t.getAttribute("y")||"0"),width:parseFloat(t.getAttribute("width")||"0"),height:parseFloat(t.getAttribute("height")||"0")}),n},circle:function(t,e){var n=new tx;return yr(e,n),mr(t,n,this._defs),n.setShape({cx:parseFloat(t.getAttribute("cx")||"0"),cy:parseFloat(t.getAttribute("cy")||"0"),r:parseFloat(t.getAttribute("r")||"0")}),n},line:function(t,e){var n=new ux;return yr(e,n),mr(t,n,this._defs),n.setShape({x1:parseFloat(t.getAttribute("x1")||"0"),y1:parseFloat(t.getAttribute("y1")||"0"),x2:parseFloat(t.getAttribute("x2")||"0"),y2:parseFloat(t.getAttribute("y2")||"0")}),n},ellipse:function(t,e){var n=new ax;return yr(e,n),mr(t,n,this._defs),n.setShape({cx:parseFloat(t.getAttribute("cx")||"0"),cy:parseFloat(t.getAttribute("cy")||"0"),rx:parseFloat(t.getAttribute("rx")||"0"),ry:parseFloat(t.getAttribute("ry")||"0")}),n},polygon:function(t,e){var n,i=t.getAttribute("points");i&&(n=vr(i));var r=new cx({shape:{points:n||[]}});return yr(e,r),mr(t,r,this._defs),r},polyline:function(t,e){var n=new z_;yr(e,n),mr(t,n,this._defs);var i,r=t.getAttribute("points");r&&(i=vr(r));var o=new fx({shape:{points:i||[]}});return o},image:function(t,e){var n=new Q_;return yr(e,n),mr(t,n,this._defs),n.setStyle({image:t.getAttribute("xlink:href"),x:+t.getAttribute("x"),y:+t.getAttribute("y"),width:+t.getAttribute("width"),height:+t.getAttribute("height")}),n},text:function(t,e){var n=t.getAttribute("x")||"0",i=t.getAttribute("y")||"0",r=t.getAttribute("dx")||"0",o=t.getAttribute("dy")||"0";this._textX=parseFloat(n)+parseFloat(r),this._textY=parseFloat(i)+parseFloat(o);var a=new Z_;return yr(e,a),mr(t,a,this._defs),a},tspan:function(t,e){var n=t.getAttribute("x"),i=t.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=i&&(this._textY=parseFloat(i));var r=t.getAttribute("dx")||0,o=t.getAttribute("dy")||0,a=new Z_;return yr(e,a),mr(t,a,this._defs),this._textX+=r,this._textY+=o,a},path:function(t,e){var n=t.getAttribute("d")||"",i=nr(n);return yr(e,i),mr(t,i,this._defs),i}}}(),t}(),{lineargradient:function(t){var e=parseInt(t.getAttribute("x1")||"0",10),n=parseInt(t.getAttribute("y1")||"0",10),i=parseInt(t.getAttribute("x2")||"10",10),r=parseInt(t.getAttribute("y2")||"0",10),o=new gx(e,n,i,r);return gr(t,o),o}}),bx={fill:"fill",stroke:"stroke","stroke-width":"lineWidth",opacity:"opacity","fill-opacity":"fillOpacity","stroke-opacity":"strokeOpacity","stroke-dasharray":"lineDash","stroke-dashoffset":"lineDashOffset","stroke-linecap":"lineCap","stroke-linejoin":"lineJoin","stroke-miterlimit":"miterLimit","font-family":"fontFamily","font-size":"fontSize","font-style":"fontStyle","font-weight":"fontWeight","text-align":"textAlign","alignment-baseline":"textBaseline"},Sx=/url\(\s*#(.*?)\)/,Tx=/(translate|scale|rotate|skewX|skewY|matrix)\(([\-\s0-9\.e,]*)\)/g,Mx=/([^\s:;]+)\s*:\s*([^:;]+)/g,Cx=Math.PI,Ix=2*Cx,kx=Math.sin,Ax=Math.cos,Dx=Math.acos,Px=Math.atan2,Lx=Math.abs,Ox=Math.sqrt,Rx=Math.max,Ex=Math.min,Bx=1e-4,zx=function(){function t(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0,this.cornerRadius=0,this.innerCornerRadius=0}return t}(),Nx=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultShape=function(){return new zx},n.prototype.buildPath=function(t,e){Mr(t,e)},n.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},n}(z_);Nx.prototype.type="sector";var Fx=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="compound",e}return e(n,t),n.prototype._updatePathDirty=function(){for(var t=this.shape.paths,e=this.shapeChanged(),n=0;n0,M=null!=t.width&&("truncate"===t.overflow||"break"===t.overflow||"breakAll"===t.overflow),C=r.calculatedLineHeight,I=0;IT&&(k=x[T],!k.align||"left"===k.align);)this._placeToken(k,t,b,g,M,"left",v),S-=k.width,M+=k.width,T++;for(;I>=0&&(k=x[I],"right"===k.align);)this._placeToken(k,t,b,g,C,"right",v),S-=k.width,C-=k.width,I--;for(M+=(i-(M-d)-(y-C)-S)/2;I>=T;)k=x[T],this._placeToken(k,t,b,g,M+k.width/2,"center",v),M+=k.width,T++;g+=b}},n.prototype._placeToken=function(t,e,n,i,r,o,a){var s=e.rich[t.styleName]||{};s.text=t.text;var l=t.verticalAlign,u=i+n/2;"top"===l?u=i+t.height/2:"bottom"===l&&(u=i+n-t.height/2);var h=!t.isLineHolder&&jr(s);h&&this._renderBackground(s,e,"right"===o?r-t.width:"center"===o?r-t.width/2:r,u-t.height/2,t.width,t.height);var c=!!s.backgroundColor,p=t.textPadding;p&&(r=Ur(r,o,p),u-=t.height/2-p[0]-t.innerHeight/2);var f=this._getOrCreateChild(vx),d=f.createStyle();f.useStyle(d);var g=this._defaultStyle,y=!1,v=0,m=Wr("fill"in s?s.fill:"fill"in e?e.fill:(y=!0,g.fill)),_=Wr("stroke"in s?s.stroke:"stroke"in e?e.stroke:c||a||g.autoStroke&&!y?null:(v=Zx,g.stroke)),x=s.textShadowBlur>0||e.textShadowBlur>0;d.text=t.text,d.x=r,d.y=u,x&&(d.shadowBlur=s.textShadowBlur||e.textShadowBlur||0,d.shadowColor=s.textShadowColor||e.textShadowColor||"transparent",d.shadowOffsetX=s.textShadowOffsetX||e.textShadowOffsetX||0,d.shadowOffsetY=s.textShadowOffsetY||e.textShadowOffsetY||0),d.textAlign=o,d.textBaseline="middle",d.font=t.font||am,d.opacity=F(s.opacity,e.opacity,1),_&&(d.lineWidth=F(s.lineWidth,e.lineWidth,v),d.lineDash=N(s.lineDash,e.lineDash),d.lineDashOffset=e.lineDashOffset||0,d.stroke=_),m&&(d.fill=m);var w=t.contentWidth,b=t.contentHeight;f.setBoundingRect(new rm(En(d.x,w,d.textAlign),Bn(d.y,b,d.textBaseline),w,b))},n.prototype._renderBackground=function(t,e,n,i,r,o){var a,s,l=t.backgroundColor,u=t.borderWidth,h=t.borderColor,c=C(l),p=t.borderRadius,f=this;if(c||u&&h){a=this._getOrCreateChild(rx),a.useStyle(a.createStyle()),a.style.fill=null;var d=a.shape;d.x=n,d.y=i,d.width=r,d.height=o,d.r=p,a.dirtyShape()}if(c){var g=a.style;g.fill=l||null,g.fillOpacity=N(t.fillOpacity,1)}else if(l&&l.image){s=this._getOrCreateChild(Q_),s.onload=function(){f.dirtyStyle()};var y=s.style;y.image=l.image,y.x=n,y.y=i,y.width=r,y.height=o}if(u&&h){var g=a.style;g.lineWidth=u,g.stroke=h,g.strokeOpacity=N(t.strokeOpacity,1),g.lineDash=t.borderDash,g.lineDashOffset=t.borderDashOffset||0,a.strokeContainThreshold=0,a.hasFill()&&a.hasStroke()&&(g.strokeFirst=!0,g.lineWidth*=2)}var v=(a||s).style;v.shadowBlur=t.shadowBlur||0,v.shadowColor=t.shadowColor||"transparent",v.shadowOffsetX=t.shadowOffsetX||0,v.shadowOffsetY=t.shadowOffsetY||0,v.opacity=F(t.opacity,e.opacity,1)},n.makeFont=function(t){var e="";if(t.fontSize||t.fontFamily||t.fontWeight){var n="";n="string"!=typeof t.fontSize||-1===t.fontSize.indexOf("px")&&-1===t.fontSize.indexOf("rem")&&-1===t.fontSize.indexOf("em")?isNaN(+t.fontSize)?"12px":t.fontSize+"px":t.fontSize,e=[t.fontStyle,t.fontWeight,n,t.fontFamily||"sans-serif"].join(" ")}return e&&W(e)||t.textFont||t.font},n}(Vm),Qx={left:!0,right:1,center:1},Jx={top:1,bottom:1,middle:1},tw=function(){function t(){this.cx=0,this.cy=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0}return t}(),ew=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},n.prototype.getDefaultShape=function(){return new tw},n.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r,0),o=e.startAngle,a=e.endAngle,s=e.clockwise,l=Math.cos(o),u=Math.sin(o);t.moveTo(l*r+n,u*r+i),t.arc(n,i,r,o,a,!s)},n}(z_);ew.prototype.type="arc";var nw=[],iw=function(){function t(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.percent=1}return t}(),rw=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},n.prototype.getDefaultShape=function(){return new iw},n.prototype.buildPath=function(t,e){var n=e.x1,i=e.y1,r=e.x2,o=e.y2,a=e.cpx1,s=e.cpy1,l=e.cpx2,u=e.cpy2,h=e.percent;0!==h&&(t.moveTo(n,i),null==l||null==u?(1>h&&(Ti(n,a,r,h,nw),a=nw[1],r=nw[2],Ti(i,s,o,h,nw),s=nw[1],o=nw[2]),t.quadraticCurveTo(a,s,r,o)):(1>h&&(vi(n,a,l,r,h,nw),a=nw[1],l=nw[2],r=nw[3],vi(i,s,u,o,h,nw),s=nw[1],u=nw[2],o=nw[3]),t.bezierCurveTo(a,s,l,u,r,o)))},n.prototype.pointAt=function(t){return qr(this.shape,t,!1)},n.prototype.tangentAt=function(t){var e=qr(this.shape,t,!0);return he(e,e)},n}(z_);rw.prototype.type="bezier-curve";var ow=function(){function t(){this.cx=0,this.cy=0,this.width=0,this.height=0}return t}(),aw=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultShape=function(){return new ow},n.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=e.width,o=e.height;t.moveTo(n,i+r),t.bezierCurveTo(n+r,i+r,n+3*r/2,i-r/3,n,i-o),t.bezierCurveTo(n-3*r/2,i-r/3,n-r,i+r,n,i+r),t.closePath()},n}(z_);aw.prototype.type="droplet";var sw=function(){function t(){this.cx=0,this.cy=0,this.width=0,this.height=0}return t}(),lw=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultShape=function(){return new sw},n.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=e.width,o=e.height;t.moveTo(n,i),t.bezierCurveTo(n+r/2,i-2*o/3,n+2*r,i+o/3,n,i+o),t.bezierCurveTo(n-2*r,i+o/3,n-r/2,i-2*o/3,n,i)},n}(z_);lw.prototype.type="heart";var uw=Math.PI,hw=Math.sin,cw=Math.cos,pw=function(){function t(){this.x=0,this.y=0,this.r=0,this.n=0}return t}(),fw=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultShape=function(){return new pw},n.prototype.buildPath=function(t,e){var n=e.n;if(n&&!(2>n)){var i=e.x,r=e.y,o=e.r,a=2*uw/n,s=-uw/2;t.moveTo(i+o*cw(s),r+o*hw(s));for(var l=0,u=n-1;u>l;l++)s+=a,t.lineTo(i+o*cw(s),r+o*hw(s));t.closePath()}},n}(z_);fw.prototype.type="isogon";var dw=function(){function t(){this.cx=0,this.cy=0,this.r=0,this.r0=0}return t}(),gw=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultShape=function(){return new dw},n.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=2*Math.PI;t.moveTo(n+e.r,i),t.arc(n,i,e.r,0,r,!1),t.moveTo(n+e.r0,i),t.arc(n,i,e.r0,0,r,!0)},n}(z_);gw.prototype.type="ring";var yw=Math.sin,vw=Math.cos,mw=Math.PI/180,_w=function(){function t(){this.cx=0,this.cy=0,this.r=[],this.k=0,this.n=1}return t}(),xw=function(t){function n(e){return t.call(this,e)||this +}return e(n,t),n.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},n.prototype.getDefaultShape=function(){return new _w},n.prototype.buildPath=function(t,e){var n,i,r,o=e.r,a=e.k,s=e.n,l=e.cx,u=e.cy;t.moveTo(l,u);for(var h=0,c=o.length;c>h;h++){r=o[h];for(var p=0;360*s>=p;p++)n=r*yw(a/s*p%360*mw)*vw(p*mw)+l,i=r*yw(a/s*p%360*mw)*yw(p*mw)+u,t.lineTo(n,i)}},n}(z_);xw.prototype.type="rose";var ww=Math.PI,bw=Math.cos,Sw=Math.sin,Tw=function(){function t(){this.cx=0,this.cy=0,this.n=3,this.r=0}return t}(),Mw=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultShape=function(){return new Tw},n.prototype.buildPath=function(t,e){var n=e.n;if(n&&!(2>n)){var i=e.cx,r=e.cy,o=e.r,a=e.r0;null==a&&(a=n>4?o*bw(2*ww/n)/bw(ww/n):o/3);var s=ww/n,l=-ww/2,u=i+o*bw(l),h=r+o*Sw(l);l+=s,t.moveTo(u,h);for(var c=0,p=2*n-1,f=void 0;p>c;c++)f=c%2===0?a:o,t.lineTo(i+f*bw(l),r+f*Sw(l)),l+=s;t.closePath()}},n}(z_);Mw.prototype.type="star";var Cw=Math.cos,Iw=Math.sin,kw=function(){function t(){this.cx=0,this.cy=0,this.r=0,this.r0=0,this.d=0,this.location="out"}return t}(),Aw=function(t){function n(e){return t.call(this,e)||this}return e(n,t),n.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},n.prototype.getDefaultShape=function(){return new kw},n.prototype.buildPath=function(t,e){var n,i,r,o,a=e.r,s=e.r0,l=e.d,u=e.cx,h=e.cy,c="out"===e.location?1:-1;if(!(e.location&&s>=a)){var p,f=0,d=1;n=(a+c*s)*Cw(0)-c*l*Cw(0)+u,i=(a+c*s)*Iw(0)-l*Iw(0)+h,t.moveTo(n,i);do f++;while(s*f%(a+c*s)!==0);do p=Math.PI/180*d,r=(a+c*s)*Cw(p)-c*l*Cw((a/s+c)*p)+u,o=(a+c*s)*Iw(p)-l*Iw((a/s+c)*p)+h,t.lineTo(r,o),d++;while(s*f/(a+c*s)*360>=d)}},n}(z_);Aw.prototype.type="trochoid";var Dw=function(t){function n(e,n,i,r,o){var a=t.call(this,r)||this;return a.x=null==e?.5:e,a.y=null==n?.5:n,a.r=null==i?.5:i,a.type="radial",a.global=o||!1,a}return e(n,t),n}(dx),Pw=[0,0],Lw=[0,0],Ow=new Zv,Rw=new Zv,Ew=function(){function t(t,e){this._corners=[],this._axes=[],this._origin=[0,0];for(var n=0;4>n;n++)this._corners[n]=new Zv;for(var n=0;2>n;n++)this._axes[n]=new Zv;t&&this.fromBoundingRect(t,e)}return t.prototype.fromBoundingRect=function(t,e){var n=this._corners,i=this._axes,r=t.x,o=t.y,a=r+t.width,s=o+t.height;if(n[0].set(r,o),n[1].set(a,o),n[2].set(a,s),n[3].set(r,s),e)for(var l=0;4>l;l++)n[l].transform(e);Zv.sub(i[0],n[1],n[0]),Zv.sub(i[1],n[3],n[0]),i[0].normalize(),i[1].normalize();for(var l=0;2>l;l++)this._origin[l]=i[l].dot(n[0])},t.prototype.intersect=function(t,e){var n=!0,i=!e;return Ow.set(1/0,1/0),Rw.set(0,0),!this._intersectCheckOneSide(this,t,Ow,Rw,i,1)&&(n=!1,i)?n:!this._intersectCheckOneSide(t,this,Ow,Rw,i,-1)&&(n=!1,i)?n:(i||Zv.copy(e,n?Ow:Rw),n)},t.prototype._intersectCheckOneSide=function(t,e,n,i,r,o){for(var a=!0,s=0;2>s;s++){var l=this._axes[s];if(this._getProjMinMaxOnAxis(s,t._corners,Pw),this._getProjMinMaxOnAxis(s,e._corners,Lw),Pw[1]Lw[1]){if(a=!1,r)return a;var u=Math.abs(Lw[0]-Pw[1]),h=Math.abs(Pw[0]-Lw[1]);Math.min(u,h)>i.len()&&(h>u?Zv.scale(i,l,-u*o):Zv.scale(i,l,h*o))}else if(n){var u=Math.abs(Lw[0]-Pw[1]),h=Math.abs(Pw[0]-Lw[1]);Math.min(u,h)u?Zv.scale(n,l,u*o):Zv.scale(n,l,-h*o))}}return a},t.prototype._getProjMinMaxOnAxis=function(t,e,n){for(var i=this._axes[t],r=this._origin,o=e[0].dot(i)+r[t],a=o,s=o,l=1;l0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},t.prototype.setSleepAfterStill=function(t){this._sleepAfterStill=t},t.prototype.wakeUp=function(){this.animation.start(),this._stillFrameAccum=0},t.prototype.addHover=function(){},t.prototype.removeHover=function(){},t.prototype.clearHover=function(){},t.prototype.refreshHover=function(){this._needsRefreshHover=!0},t.prototype.refreshHoverImmediately=function(){this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover()},t.prototype.resize=function(t){t=t||{},this.painter.resize(t.width,t.height),this.handler.resize()},t.prototype.clearAnimation=function(){this.animation.clear()},t.prototype.getWidth=function(){return this.painter.getWidth()},t.prototype.getHeight=function(){return this.painter.getHeight()},t.prototype.pathToImage=function(t,e){return this.painter.pathToImage?this.painter.pathToImage(t,e):void 0},t.prototype.setCursorStyle=function(t){this.handler.setCursorStyle(t)},t.prototype.findHover=function(t,e){return this.handler.findHover(t,e)},t.prototype.on=function(t,e,n){return this.handler.on(t,e,n),this},t.prototype.off=function(t,e){this.handler.off(t,e)},t.prototype.trigger=function(t,e){this.handler.trigger(t,e)},t.prototype.clear=function(){for(var t=this.storage.getRoots(),e=0;e-1?qb:Kb}():Kb;Ws(Zb,Yb),Ws(qb,jb);var tS=1e3,eS=60*tS,nS=60*eS,iS=24*nS,rS=365*iS,oS={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{hh}:{mm}:{ss} {SSS}",none:"{yyyy}-{MM}-{dd} {hh}:{mm}:{ss} {SSS}"},aS="{yyyy}-{MM}-{dd}",sS={year:"{yyyy}",month:"{yyyy}-{MM}",day:aS,hour:aS+" "+oS.hour,minute:aS+" "+oS.minute,second:aS+" "+oS.second,millisecond:oS.none},lS=["year","month","day","hour","minute","second","millisecond"],uS=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"],hS=V,cS=/([&<>"'])/g,pS={"&":"&","<":"<",">":">",'"':""","'":"'"},fS=["a","b","c","d","e","f","g"],dS=function(t,e){return"{"+t+(null==e?"":e)+"}"},gS=(Object.freeze||Object)({addCommas:yl,toCamelCase:vl,normalizeCssArray:hS,encodeHTML:ml,makeValueReadable:_l,formatTpl:xl,formatTplSimple:wl,getTooltipMarker:bl,formatTime:Sl,capitalFirst:Tl,convertToColorString:Ml,windowOpen:Cl,truncateText:Dr,getTextRect:gl}),yS=y,vS=["left","right","top","bottom","width","height"],mS=[["width","left","right"],["height","top","bottom"]],_S=Il,xS=(S(Il,"vertical"),S(Il,"horizontal"),Uo()),wS=function(t){function n(e,n,i){var r=t.call(this,e,n,i)||this;return r.uid=Fs("ec_cpt_model"),r}return e(n,t),n.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n)},n.prototype.mergeDefaultAndTheme=function(t,e){var n=Al(this),i=n?Pl(t):{},r=e.getTheme();l(t,r.get(this.mainType)),l(t,this.getDefaultOption()),n&&Dl(t,i,n)},n.prototype.mergeOption=function(t){l(this.option,t,!0);var e=Al(this);e&&Dl(this.option,t,e)},n.prototype.optionUpdated=function(){},n.prototype.getDefaultOption=function(){var t=this.constructor;if(!ta(t))return t.defaultOption;var e=xS(this);if(!e.defaultOption){for(var n=[],i=t;i;){var r=i.prototype.defaultOption;r&&n.push(r),i=i.superClass}for(var o={},a=n.length-1;a>=0;a--)o=l(o,n[a],!0);e.defaultOption=o}return e.defaultOption},n.prototype.getReferringComponents=function(t,e){var n=t+"Index",i=t+"Id";return jo(this.ecModel,t,{index:this.get(n,!0),id:this.get(i,!0)},e)},n.prototype.getBoxLayoutParams=function(){var t=this;return{left:t.get("left"),top:t.get("top"),right:t.get("right"),bottom:t.get("bottom"),width:t.get("width"),height:t.get("height")}},n.protoInitialize=function(){var t=n.prototype;t.type="component",t.id="",t.name="",t.mainType="",t.subType="",t.componentIndex=0}(),n}(Xb);ia(wS,Xb),sa(wS,{registerWhenExtend:!0}),Hs(wS),Vs(wS,Ol);var bS="";"undefined"!=typeof navigator&&(bS=navigator.platform||"");var SS,TS,MS="rgba(0, 0, 0, 0.2)",CS={darkMode:"auto",color:["#5470c6","#91cc75","#fac858","#ee6666","#73c0de","#3ba272","#fc8452","#9a60b4","#ea7ccc"],gradientColor:["#f6efa6","#d88273","#bf444c"],aria:{decal:{decals:[{color:MS,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:MS,symbol:"circle",dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:MS,dashArrayX:[1,0],dashArrayY:[4,3],dashLineOffset:0,rotation:-Math.PI/4},{color:MS,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:MS,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:MS,symbol:"triangle",dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:bS.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,stateAnimation:{duration:300,easing:"cubicOut"},animation:"auto",animationDuration:1e3,animationDurationUpdate:500,animationEasing:"cubicInOut",animationEasingUpdate:"cubicInOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1},IS=Y(["tooltip","label","itemName","itemId","seriesName"]),kS="original",AS="arrayRows",DS="objectRows",PS="keyedColumns",LS="typedArray",OS="unknown",RS="column",ES="row",BS={Must:1,Might:2,Not:3},zS=Uo(),NS=Y(),FS=Uo(),HS=(Uo(),function(){function t(){}return t.prototype.getColorFromPalette=function(t,e,n){var i=Co(this.get("color",!0)),r=this.get("colorLayer",!0);return Wl(this,FS,i,r,t,e,n)},t.prototype.clearColorPalette=function(){Xl(this,FS)},t}()),VS="\x00_ec_inner",GS=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e(n,t),n.prototype.init=function(t,e,n,i,r,o){i=i||{},this.option=null,this._theme=new Xb(i),this._locale=new Xb(r),this._optionManager=o},n.prototype.setOption=function(t,e,n){G(!(VS in t),"please use chart.getOption()");var i=Zl(e);this._optionManager.setOption(t,n,i),this._resetOption(null,i)},n.prototype.resetOption=function(t,e){return this._resetOption(t,Zl(e))},n.prototype._resetOption=function(t,e){var n=!1,i=this._optionManager;if(!t||"recreate"===t){var r=i.mountOption("recreate"===t);this.option&&"recreate"!==t?(this.restoreData(),this._mergeOption(r,e)):TS(this,r),n=!0}if(("timeline"===t||"media"===t)&&this.restoreData(),!t||"recreate"===t||"timeline"===t){var o=i.getTimelineOption(this);o&&(n=!0,this._mergeOption(o,e))}if(!t||"recreate"===t||"media"===t){var a=i.getMediaOption(this);a.length&&y(a,function(t){n=!0,this._mergeOption(t,e)},this)}return n},n.prototype.mergeOption=function(t){this._mergeOption(t,null)},n.prototype._mergeOption=function(t,e){function n(e){var n=Vl(this,e,Co(t[e])),a=r.get(e),s=a?c&&c.get(e)?"replaceMerge":"normalMerge":"replaceAll",l=Do(a,n,s);Go(l,e,wS),i[e]=null,r.set(e,null),o.set(e,0);var u=[],p=[],f=0;y(l,function(t,n){var i=t.existing,r=t.newOption;if(r){var o=wS.getClass(e,t.keyInfo.subType,!0);if(i&&i.constructor===o)i.name=t.keyInfo.name,i.mergeOption(r,this),i.optionUpdated(r,!1);else{var a=h({componentIndex:n},t.keyInfo);i=new o(r,this,this,a),h(i,a),t.brandNew&&(i.__requireNewView=!0),i.init(r,this,this),i.optionUpdated(null,!0)}}else i&&(i.mergeOption({},this),i.optionUpdated({},!1));i?(u.push(i.option),p.push(i),f++):(u.push(void 0),p.push(void 0))},this),i[e]=u,r.set(e,p),o.set(e,f),"series"===e&&SS(this)}var i=this.option,r=this._componentsMap,o=this._componentsCount,a=[],u=Y(),c=e&&e.replaceMergeMainTypeMap;Rl(this),y(t,function(t,e){null!=t&&(wS.hasClass(e)?e&&(a.push(e),u.set(e,!0)):i[e]=null==i[e]?s(t):l(i[e],t,!0))}),c&&c.each(function(t,e){wS.hasClass(e)&&!u.get(e)&&(a.push(e),u.set(e,!0))}),wS.topologicalTravel(a,wS.getAllClassMainTypes(),n,this),this._seriesIndices||SS(this)},n.prototype.getOption=function(){var t=s(this.option);return y(t,function(e,n){if(wS.hasClass(n)){for(var i=Co(e),r=i.length,o=!1,a=r-1;a>=0;a--)i[a]&&!Vo(i[a])?o=!0:(i[a]=null,!o&&r--);i.length=r,t[n]=i}}),delete t[VS],t},n.prototype.getTheme=function(){return this._theme},n.prototype.getLocaleModel=function(){return this._locale},n.prototype.getLocale=function(t){var e=this.getLocaleModel();return e.get(t)},n.prototype.setUpdatePayload=function(t){this._payload=t},n.prototype.getUpdatePayload=function(){return this._payload},n.prototype.getComponent=function(t,e){var n=this._componentsMap.get(t);if(n){var i=n[e||0];if(i)return i;if(null==e)for(var r=0;ra;a++)$l(n[a].query,t,e)&&r.push(a);return!r.length&&i&&(r=[-1]),r.length&&!Jl(r,this._currentMediaIndices)&&(o=v(r,function(t){return s(-1===t?i.option:n[t].option)})),this._currentMediaIndices=r,o},t}(),tT=y,eT=A,nT=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"],iT=[["x","left"],["y","top"],["x2","right"],["y2","bottom"]],rT=["grid","geo","parallel","legend","toolbox","title","visualMap","dataZoom","timeline"],oT=[["borderRadius","barBorderRadius"],["borderColor","barBorderColor"],["borderWidth","barBorderWidth"]],aT=function(){function t(t){this.data=t.data||(t.sourceFormat===PS?{}:[]),this.sourceFormat=t.sourceFormat||OS,this.seriesLayoutBy=t.seriesLayoutBy||RS,this.startIndex=t.startIndex||0,this.dimensionsDefine=t.dimensionsDefine,this.dimensionsDetectedCount=t.dimensionsDetectedCount,this.encodeDefine=t.encodeDefine,this.metaRawOption=t.metaRawOption}return t}(),sT=function(){function t(t,e){var n=xu(t)?t:bu(t);this._source=n;var i=this._data=n.data;n.sourceFormat===LS&&(this._offset=0,this._dimSize=e,this._data=i),jS(this,i,n)}return t.prototype.getSource=function(){return this._source},t.prototype.count=function(){return 0},t.prototype.getItem=function(){},t.prototype.appendData=function(){},t.prototype.clean=function(){},t.protoInitialize=function(){var e=t.prototype;e.pure=!1,e.persistent=!0}(),t.internalField=function(){function t(t){for(var e=0;eo;o++)e[o]=n[r+o];return e},i=function(t,e,n,i){for(var r=this._data,o=this._dimSize,a=0;o>a;a++){for(var s=i[a],l=null==s[0]?1/0:s[0],u=null==s[1]?-1/0:s[1],h=e-t,c=n[a],p=0;h>p;p++){var f=r[(t+p)*o+a];c[t+p]=f,l>f&&(l=f),f>u&&(u=f)}s[0]=l,s[1]=u}},r=function(){return this._data?this._data.length/this._dimSize:0};e={},e[AS+"_"+RS]={pure:!0,appendData:t},e[AS+"_"+ES]={pure:!0,appendData:function(){throw new Error('Do not support appendData when set seriesLayoutBy: "row".')}},e[DS]={pure:!0,appendData:t},e[PS]={pure:!0,appendData:function(t){var e=this._data; +y(t,function(t,n){for(var i=e[n]||(e[n]=[]),r=0;r<(t||[]).length;r++)i.push(t[r])})}},e[kS]={appendData:t},e[LS]={persistent:!1,pure:!0,appendData:function(t){this._data=t},clean:function(){this._offset+=this.count(),this._data=null}},YS=e}(),t}(),lT=function(t,e,n,i){return t[i]},uT=(WS={},WS[AS+"_"+RS]=function(t,e,n,i){return t[i+e]},WS[AS+"_"+ES]=function(t,e,n,i){i+=e;for(var r=[],o=t,a=0;a=1)&&(t=1),t}var n=this._upstream,i=t&&t.skip;if(this._dirty&&n){var r=this.context;r.data=r.outputData=n.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this);var o;this._plan&&!i&&(o=this._plan(this.context));var a=e(this._modBy),s=this._modDataCount||0,l=e(t&&t.modBy),u=t&&t.modDataCount||0;(a!==l||s!==u)&&(o="reset");var h;(this._dirty||"reset"===o)&&(this._dirty=!1,h=this._doReset(i)),this._modBy=l,this._modDataCount=u;var c=t&&t.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var p=this._dueIndex,f=Math.min(null!=c?this._dueIndex+c:1/0,this._dueEnd);if(!i&&(h||f>p)){var d=this._progress;if(T(d))for(var g=0;gi?i++:null}function e(){var t=i%a*r+Math.ceil(i/a),e=i>=n?null:o>t?t:i;return i++,e}var n,i,r,o,a,s={reset:function(l,u,h,c){i=l,n=u,r=h,o=c,a=Math.ceil(o/r),s.next=r>1&&o>0?e:t}};return s}(),mT=(Y({number:function(t){return parseFloat(t)},time:function(t){return+fo(t)},trim:function(t){return"string"==typeof t?W(t):t}}),{lt:function(t,e){return e>t},lte:function(t,e){return e>=t},gt:function(t,e){return t>e},gte:function(t,e){return t>=e}}),_T=(function(){function t(t,e){if("number"!=typeof e){var n="";Mo(n)}this._opFn=mT[t],this._rvalFloat=xo(e)}return t.prototype.evaluate=function(t){return"number"==typeof t?this._opFn(t,this._rvalFloat):this._opFn(xo(t),this._rvalFloat)},t}(),function(){function t(t,e){var n="desc"===t;this._resultLT=n?1:-1,null==e&&(e=n?"min":"max"),this._incomparable="min"===e?-1/0:1/0}return t.prototype.evaluate=function(t,e){var n=typeof t,i=typeof e,r="number"===n?t:xo(t),o="number"===i?e:xo(e),a=isNaN(r),s=isNaN(o);if(a&&(r=this._incomparable),s&&(o=this._incomparable),a&&s){var l="string"===n,u="string"===i;l&&(r=u?t:0),u&&(o=l?e:0)}return o>r?this._resultLT:r>o?-this._resultLT:0},t}()),xT=(function(){function t(t,e){this._rval=e,this._isEQ=t,this._rvalTypeof=typeof e,this._rvalFloat=xo(e)}return t.prototype.evaluate=function(t){var e=t===this._rval;if(!e){var n=typeof t;n===this._rvalTypeof||"number"!==n&&"number"!==this._rvalTypeof||(e=xo(t)===this._rvalFloat)}return this._isEQ?e:!e},t}(),function(){function t(){}return t.prototype.getRawData=function(){throw new Error("not supported")},t.prototype.getRawDataItem=function(){throw new Error("not supported")},t.prototype.cloneRawData=function(){},t.prototype.getDimensionInfo=function(){},t.prototype.cloneAllDimensionInfo=function(){},t.prototype.count=function(){},t.prototype.retrieveValue=function(){},t.prototype.retrieveValueFromItem=function(){},t.prototype.convertValue=function(t,e){return zu(t,e)},t}()),wT=Y(),bT=function(){function t(t){this._sourceList=[],this._upstreamSignList=[],this._versionSignBase=0,this._sourceHost=t}return t.prototype.dirty=function(){this._setLocalSource([],[])},t.prototype._setLocalSource=function(t,e){this._sourceList=t,this._upstreamSignList=e,this._versionSignBase++,this._versionSignBase>9e10&&(this._versionSignBase=0)},t.prototype._getVersionSign=function(){return this._sourceHost.uid+"_"+this._versionSignBase},t.prototype.prepareSource=function(){this._isDirty()&&this._createSource()},t.prototype._createSource=function(){this._setLocalSource([],[]);var t,e,n=this._sourceHost,i=this._getUpstreamSourceManagers(),r=!!i.length;if(ju(n)){var o=n,a=void 0,s=void 0,l=void 0;if(r){var u=i[0];u.prepareSource(),l=u.getSource(),a=l.data,s=l.sourceFormat,e=[u._getVersionSign()]}else a=o.get("data",!0),s=P(a)?LS:kS,e=[];var h=El(l,this._getSourceMetaRawOption());t=[wu(a,h,s,o.get("encode",!0))]}else{var c=n;if(r){var p=this._applyTransform(i);t=p.sourceList,e=p.upstreamSignList}else{var f=c.get("source",!0);t=[wu(f,this._getSourceMetaRawOption(),null,null)],e=[]}}this._setLocalSource(t,e)},t.prototype._applyTransform=function(t){var e=this._sourceHost,n=e.get("transform",!0),i=e.get("fromTransformResult",!0);if(null!=i){var r="";1!==t.length&&qu(r)}var o,a=[],s=[];return y(t,function(t){t.prepareSource();var e=t.getSource(i||0),n="";null==i||e||qu(n),a.push(e),s.push(t._getVersionSign())}),n?o=Xu(n,a,{datasetIndex:e.componentIndex}):null!=i&&(o=[Su(a[0])]),{sourceList:o,upstreamSignList:s}},t.prototype._isDirty=function(){var t=this._sourceList;if(!t.length)return!0;for(var e=this._getUpstreamSourceManagers(),n=0;n1||e>0&&!t.noHeader,i=0;y(t.blocks,function(t){Ku(t).planLayout(t);var e=t.__gapLevelBetweenSubBlocks;e>=i&&(i=e+(!n||e&&("section"!==t.type||t.noHeader)?0:1))}),t.__gapLevelBetweenSubBlocks=i},build:function(t,e,n){var i=e.noHeader,r=Ju(e),o=$u(t,e,i?n:r.html);if(i)return o;var a=_l(e.header,"ordinal",t.useUTC);return"richText"===t.renderMode?ih(t,a)+r.richText+o:th('
'+ml(a)+"
"+o,n)}},nameValue:{planLayout:function(t){t.__gapLevelBetweenSubBlocks=0},build:function(t,e,n){var i=t.renderMode,r=e.noName,o=e.noValue,a=!e.markerType,s=e.name,l=e.value,u=t.useUTC;if(!r||!o){var h=a?"":t.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||"#333",i),c=r?"":_l(s,"ordinal",u),p=e.valueType,f=o?[]:T(l)?v(l,function(t,e){return _l(t,T(p)?p[e]:p,u)}):[_l(l,T(p)?p[0]:p,u)],d=!a||!r,g=!a&&r;return"richText"===i?(a?"":h)+(r?"":ih(t,c))+(o?"":rh(t,f,d,g)):th((a?"":h)+(r?"":eh(c,!a))+(o?"":nh(f,d,g)),n)}}}},PT=function(){function t(){this.richTextStyles={},this._nextStyleNameId=bo()}return t.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},t.prototype.makeTooltipMarker=function(t,e,n){var i="richText"===n?this._generateStyleName():null,r=bl({color:e,type:t,renderMode:n,markerId:i});return C(r)?r:(this.richTextStyles[i]=r.style,r.content)},t.prototype.wrapRichTextStyle=function(t,e){var n={};T(e)?y(e,function(t){return h(n,t)}):h(n,e);var i=this._generateStyleName();return this.richTextStyles[i]=n,"{"+i+"|"+t+"}"},t}(),LT=Uo(),OT=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e._selectedDataIndicesMap={},e}return e(n,t),n.prototype.init=function(t,e,n){this.seriesIndex=this.componentIndex,this.dataTask=Bu({count:ph,reset:fh}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,n);var i=LT(this).sourceManager=new bT(this);i.prepareSource();var r=this.getInitialData(t,n);gh(r,this),this.dataTask.context.data=r,LT(this).dataBeforeProcessed=r,hh(this),this._initSelectedMapFromData(r)},n.prototype.mergeDefaultAndTheme=function(t,e){var n=Al(this),i=n?Pl(t):{},r=this.subType;wS.hasClass(r)&&(r+="Series"),l(t,e.getTheme().get(this.subType)),l(t,this.getDefaultOption()),Io(t,"label",["show"]),this.fillDataTextStyle(t.data),n&&Dl(t,i,n)},n.prototype.mergeOption=function(t,e){t=l(this.option,t,!0),this.fillDataTextStyle(t.data);var n=Al(this);n&&Dl(this.option,t,n);var i=LT(this).sourceManager;i.dirty(),i.prepareSource();var r=this.getInitialData(t,e);gh(r,this),this.dataTask.dirty(),this.dataTask.context.data=r,LT(this).dataBeforeProcessed=r,hh(this),this._initSelectedMapFromData(r)},n.prototype.fillDataTextStyle=function(t){if(t&&!P(t))for(var e=["show"],n=0;nthis.getShallow("animationThreshold")&&(t=!1),!!t},n.prototype.restoreData=function(){this.dataTask.dirty()},n.prototype.getColorFromPalette=function(t,e,n){var i=this.ecModel,r=HS.prototype.getColorFromPalette.call(this,t,e,n);return r||(r=i.getColorFromPalette(t,e,n)),r},n.prototype.coordDimToDataDim=function(t){return this.getRawData().mapDimensionsAll(t)},n.prototype.getProgressive=function(){return this.get("progressive")},n.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},n.prototype.select=function(t,e){this._innerSelect(this.getData(e),t)},n.prototype.unselect=function(t,e){var n=this.option.selectedMap;if(n)for(var i=this.getData(e),r=0;r=0&&n.push(r)}return n},n.prototype.isSelected=function(t,e){var n=this.option.selectedMap;if(!n)return!1;var i=this.getData(e),r=uh(i,t);return n[r]||!1},n.prototype._innerSelect=function(t,e){var n,i,r=this.option.selectedMode,o=e.length;if(r&&o)if("multiple"===r)for(var a=this.option.selectedMap||(this.option.selectedMap={}),s=0;o>s;s++){var l=e[s],u=uh(t,l);a[u]=!0,this._selectedDataIndicesMap[u]=t.getRawIndex(l)}else if("single"===r||r===!0){var h=e[o-1],u=uh(t,h);this.option.selectedMap=(n={},n[u]=!0,n),this._selectedDataIndicesMap=(i={},i[u]=t.getRawIndex(h),i)}},n.prototype._initSelectedMapFromData=function(t){if(!this.option.selectedMap){var e=[];t.hasItemOption&&t.each(function(n){var i=t.getRawDataItem(n);"object"==typeof i&&i.selected&&e.push(n)}),e.length>0&&this._innerSelect(t,e)}},n.registerClass=function(t){return wS.registerClass(t)},n.protoInitialize=function(){var t=n.prototype;t.type="series.__base__",t.seriesIndex=0,t.useColorPaletteOnData=!1,t.ignoreStyleOnData=!1,t.hasSymbolVisual=!1,t.defaultSymbol="circle",t.visualStyleAccessPath="itemStyle",t.visualDrawType="fill"}(),n}(wS);d(OT,gT),d(OT,HS),ia(OT,wS);var RT=function(){function t(){this.group=new Z_,this.uid=Fs("viewComponent")}return t.prototype.init=function(){},t.prototype.render=function(){},t.prototype.dispose=function(){},t.prototype.updateView=function(){},t.prototype.updateLayout=function(){},t.prototype.updateVisual=function(){},t.prototype.blurSeries=function(){},t}();ea(RT),sa(RT,{registerWhenExtend:!0});var ET=Uo(),BT=mh(),zT=function(){function t(){this.group=new Z_,this.uid=Fs("viewChart"),this.renderTask=Bu({plan:wh,reset:bh}),this.renderTask.context={view:this}}return t.prototype.init=function(){},t.prototype.render=function(){},t.prototype.highlight=function(t,e,n,i){xh(t.getData(),i,"emphasis")},t.prototype.downplay=function(t,e,n,i){xh(t.getData(),i,"normal")},t.prototype.remove=function(){this.group.removeAll()},t.prototype.dispose=function(){},t.prototype.updateView=function(t,e,n,i){this.render(t,e,n,i)},t.prototype.updateLayout=function(t,e,n,i){this.render(t,e,n,i)},t.prototype.updateVisual=function(t,e,n,i){this.render(t,e,n,i)},t.markUpdateMethod=function(t,e){ET(t).updateMethod=e},t.protoInitialize=function(){var e=t.prototype;e.type="chart"}(),t}();ea(zT,["dispose"]),sa(zT,{registerWhenExtend:!0});var NT,FT={incrementalPrepareRender:{progress:function(t,e){e.view.incrementalRender(t,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(t,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}},HT="\x00__throttleOriginMethod",VT="\x00__throttleRate",GT="\x00__throttleType",WT=Uo(),XT={itemStyle:la(Vb,!0),lineStyle:la(Nb,!0)},UT={lineStyle:"stroke",itemStyle:"fill"},YT={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=t.getModel(i),o=Mh(t,i),a=o(r),s=r.getShallow("decal");s&&(n.setVisual("decal",s),s.dirty=!0);var l=Ch(t,i),u=a[l],c=M(u)?u:null;return(!a[l]||c)&&(a[l]=t.getColorFromPalette(t.name,null,e.getSeriesCount()),n.setVisual("colorFromPalette",!0)),n.setVisual("style",a),n.setVisual("drawType",l),!e.isSeriesFiltered(t)&&c?(n.setVisual("colorFromPalette",!1),{dataEach:function(e,n){var i=t.getDataParams(n),r=h({},a);r[l]=c(i),e.setItemVisual(n,"style",r)}}):void 0}},jT=new Xb,qT={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){if(!t.ignoreStyleOnData&&!e.isSeriesFiltered(t)){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=Mh(t,i),o=n.getVisual("drawType");return{dataEach:n.hasItemOption?function(t,e){var n=t.getRawDataItem(e);if(n&&n[i]){jT.option=n[i];var a=r(jT),s=t.ensureUniqueItemVisual(e,"style");h(s,a),jT.option.decal&&(t.setItemVisual(e,"decal",jT.option.decal),jT.option.decal.dirty=!0),o in a&&t.setItemVisual(e,"colorFromPalette",!1)}}:null}}}},ZT={performRawSeries:!0,overallReset:function(t){var e=Y();t.eachSeries(function(t){if(t.useColorPaletteOnData){var n=e.get(t.type);n||(n={},e.set(t.type,n)),WT(t).scope=n}}),t.eachSeries(function(e){if(e.useColorPaletteOnData&&!t.isSeriesFiltered(e)){var n=e.getRawData(),i={},r=e.getData(),o=WT(e).scope,a=e.visualStyleAccessPath||"itemStyle",s=Ch(e,a);r.each(function(t){var e=r.getRawIndex(t);i[e]=t}),n.each(function(t){var a=i[t],l=r.getItemVisual(a,"colorFromPalette");if(l){var u=r.ensureUniqueItemVisual(a,"style"),h=n.getName(t)||t+"",c=n.count();u[s]=e.getColorFromPalette(h,o,c)}})}})}},KT=Math.PI,$T=function(){function t(t,e,n,i){this._stageTaskMap=Y(),this.ecInstance=t,this.api=e,n=this._dataProcessorHandlers=n.slice(),i=this._visualHandlers=i.slice(),this._allHandlers=n.concat(i)}return t.prototype.restoreData=function(t,e){t.restoreData(e),this._stageTaskMap.each(function(t){var e=t.overallTask;e&&e.dirty()})},t.prototype.getPerformArgs=function(t,e){if(t.__pipeline){var n=this._pipelineMap.get(t.__pipeline.id),i=n.context,r=!e&&n.progressiveEnabled&&(!i||i.progressiveRender)&&t.__idxInPipeline>n.blockIndex,o=r?n.step:null,a=i&&i.modDataCount,s=null!=a?Math.ceil(a/o):null;return{step:o,modBy:s,modDataCount:a}}},t.prototype.getPipeline=function(t){return this._pipelineMap.get(t)},t.prototype.updateStreamModes=function(t,e){var n=this._pipelineMap.get(t.uid),i=t.getData(),r=i.count(),o=n.progressiveEnabled&&e.incrementalPrepareRender&&r>=n.threshold,a=t.get("large")&&r>=t.get("largeThreshold"),s="mod"===t.get("progressiveChunkMode")?r:null;t.pipelineContext=n.context={progressiveRender:o,modDataCount:s,large:a}},t.prototype.restorePipelines=function(t){var e=this,n=e._pipelineMap=Y();t.eachSeries(function(t){var i=t.getProgressive(),r=t.uid;n.set(r,{id:r,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:i&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),e._pipe(t,t.dataTask)})},t.prototype.prepareStageTasks=function(){var t=this._stageTaskMap,e=this.api.getModel(),n=this.api;y(this._allHandlers,function(i){var r=t.get(i.uid)||t.set(i.uid,{}),o="";G(!(i.reset&&i.overallReset),o),i.reset&&this._createSeriesStageTask(i,r,e,n),i.overallReset&&this._createOverallStageTask(i,r,e,n)},this)},t.prototype.prepareView=function(t,e,n,i){var r=t.renderTask,o=r.context;o.model=e,o.ecModel=n,o.api=i,r.__block=!t.incrementalPrepareRender,this._pipe(e,r)},t.prototype.performDataProcessorTasks=function(t,e){this._performStageTasks(this._dataProcessorHandlers,t,e,{block:!0})},t.prototype.performVisualTasks=function(t,e,n){this._performStageTasks(this._visualHandlers,t,e,n)},t.prototype._performStageTasks=function(t,e,n,i){function r(t,e){return t.setDirty&&(!t.dirtyMap||t.dirtyMap.get(e.__pipeline.id))}i=i||{};var o=!1,a=this;y(t,function(t){if(!i.visualType||i.visualType===t.visualType){var s=a._stageTaskMap.get(t.uid),l=s.seriesTaskMap,u=s.overallTask;if(u){var h,c=u.agentStubMap;c.each(function(t){r(i,t)&&(t.dirty(),h=!0)}),h&&u.dirty(),a.updatePayload(u,n);var p=a.getPerformArgs(u,i.block);c.each(function(t){t.perform(p)}),u.perform(p)&&(o=!0)}else l&&l.each(function(s){r(i,s)&&s.dirty();var l=a.getPerformArgs(s,i.block);l.skip=!t.performRawSeries&&e.isSeriesFiltered(s.context.model),a.updatePayload(s,n),s.perform(l)&&(o=!0)})}}),this.unfinished=o||this.unfinished},t.prototype.performSeriesTasks=function(t){var e;t.eachSeries(function(t){e=t.dataTask.perform()||e}),this.unfinished=e||this.unfinished},t.prototype.plan=function(){this._pipelineMap.each(function(t){var e=t.tail;do{if(e.__block){t.blockIndex=e.__idxInPipeline;break}e=e.getUpstream()}while(e)})},t.prototype.updatePayload=function(t,e){"remain"!==e&&(t.context.payload=e)},t.prototype._createSeriesStageTask=function(t,e,n,i){function r(e){var r=e.uid,l=s.set(r,a&&a.get(r)||Bu({plan:Lh,reset:Oh,count:Eh}));l.context={model:e,ecModel:n,api:i,useClearVisual:t.isVisual&&!t.isLayout,plan:t.plan,reset:t.reset,scheduler:o},o._pipe(e,l)}var o=this,a=e.seriesTaskMap,s=e.seriesTaskMap=Y(),l=t.seriesType,u=t.getTargetSeries;t.createOnAllSeries?n.eachRawSeries(r):l?n.eachRawSeriesByType(l,r):u&&u(n,i).each(r)},t.prototype._createOverallStageTask=function(t,e,n,i){function r(t){var e=t.uid,n=l.set(e,s&&s.get(e)||(p=!0,Bu({reset:Ah,onDirty:Ph})));n.context={model:t,overallProgress:c},n.agent=a,n.__block=c,o._pipe(t,n)}var o=this,a=e.overallTask=e.overallTask||Bu({reset:kh});a.context={ecModel:n,api:i,overallReset:t.overallReset,scheduler:o};var s=a.agentStubMap,l=a.agentStubMap=Y(),u=t.seriesType,h=t.getTargetSeries,c=!0,p=!1,f="";G(!t.createOnAllSeries,f),u?n.eachRawSeriesByType(u,r):h?h(n,i).each(r):(c=!1,y(n.getSeries(),r)),p&&a.dirty()},t.prototype._pipe=function(t,e){var n=t.uid,i=this._pipelineMap.get(n);!i.head&&(i.head=e),i.tail&&i.tail.pipe(e),i.tail=e,e.__idxInPipeline=i.count++,e.__pipeline=i},t.wrapStageHandler=function(t,e){return M(t)&&(t={overallReset:t,seriesType:Bh(t)}),t.uid=Fs("stageHandler"),e&&(t.visualType=e),t},t}(),QT=Rh(0),JT={},tM={};zh(JT,GS),zh(tM,ZS),JT.eachSeriesByType=JT.eachRawSeriesByType=function(t){NT=t},JT.eachComponent=function(t){"series"===t.mainType&&t.subType&&(NT=t.subType)};var eM=["#37A2DA","#32C5E9","#67E0E3","#9FE6B8","#FFDB5C","#ff9f7f","#fb7293","#E062AE","#E690D1","#e7bcf3","#9d96f5","#8378EA","#96BFFF"],nM={color:eM,colorLayer:[["#37A2DA","#ffd85c","#fd7b5f"],["#37A2DA","#67E0E3","#FFDB5C","#ff9f7f","#E062AE","#9d96f5"],["#37A2DA","#32C5E9","#9FE6B8","#FFDB5C","#ff9f7f","#fb7293","#e7bcf3","#8378EA","#96BFFF"],eM]},iM="#B9B8CE",rM="#100C2A",oM=function(){return{axisLine:{lineStyle:{color:iM}},splitLine:{lineStyle:{color:"#484753"}},splitArea:{areaStyle:{color:["rgba(255,255,255,0.02)","rgba(255,255,255,0.05)"]}},minorSplitLine:{lineStyle:{color:"#20203B"}}}},aM=["#4992ff","#7cffb2","#fddd60","#ff6e76","#58d9f9","#05c091","#ff8a45","#8d48e3","#dd79ff"],sM={darkMode:!0,color:aM,backgroundColor:rM,axisPointer:{lineStyle:{color:"#817f91"},crossStyle:{color:"#817f91"},label:{color:"#fff"}},legend:{textStyle:{color:iM}},textStyle:{color:iM},title:{textStyle:{color:"#EEF1FA"},subtextStyle:{color:"#B9B8CE"}},toolbox:{iconStyle:{borderColor:iM}},dataZoom:{borderColor:"#71708A",textStyle:{color:iM},brushStyle:{color:"rgba(135,163,206,0.3)"},handleStyle:{color:"#353450",borderColor:"#C5CBE3"},moveHandleStyle:{color:"#B0B6C3",opacity:.3},fillerColor:"rgba(135,163,206,0.2)",emphasis:{handleStyle:{borderColor:"#91B7F2",color:"#4D587D"},moveHandleStyle:{color:"#636D9A",opacity:.7}},dataBackground:{lineStyle:{color:"#71708A",width:1},areaStyle:{color:"#71708A"}},selectedDataBackground:{lineStyle:{color:"#87A3CE"},areaStyle:{color:"#87A3CE"}}},visualMap:{textStyle:{color:iM}},timeline:{lineStyle:{color:iM},label:{color:iM},controlStyle:{color:iM,borderColor:iM}},calendar:{itemStyle:{color:rM},dayLabel:{color:iM},monthLabel:{color:iM},yearLabel:{color:iM}},timeAxis:oM(),logAxis:oM(),valueAxis:oM(),categoryAxis:oM(),line:{symbol:"circle"},graph:{color:aM},gauge:{title:{color:iM},axisLine:{lineStyle:{color:[[1,"rgba(207,212,219,0.2)"]]}},axisLabel:{color:iM},detail:{color:"#EEF1FA"}},candlestick:{itemStyle:{color:"#FD1050",color0:"#0CF49B",borderColor:"#FD1050",borderColor0:"#0CF49B"}}};sM.categoryAxis.splitLine.show=!1;var lM=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="dataset",e}return e(n,t),n.prototype.init=function(e,n,i){t.prototype.init.call(this,e,n,i),this._sourceManager=new bT(this),Yu(this)},n.prototype.mergeOption=function(e,n){t.prototype.mergeOption.call(this,e,n),Yu(this)},n.prototype.optionUpdated=function(){this._sourceManager.dirty()},n.prototype.getSourceManager=function(){return this._sourceManager},n.type="dataset",n.defaultOption={seriesLayoutBy:RS},n}(wS);wS.registerClass(lM);var uM=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="dataset",e}return e(n,t),n.type="dataset",n}(RT);RT.registerClass(uM);var hM=Y(),cM={registerMap:function(t,e,n){var i;if(T(e))i=e;else if(e.svg)i=[{type:"svg",source:e.svg,specialAreas:e.specialAreas}];else{var r=e.geoJson||e.geoJSON;r&&!e.features&&(n=e.specialAreas,e=r),i=[{type:"geoJSON",source:e,specialAreas:n}]}return y(i,function(t){var e=t.type;"geoJson"===e&&(e=t.type="geoJSON");var n=pM[e];n(t)}),hM.set(t,i)},retrieveMap:function(t){return hM.get(t)}},pM={geoJSON:function(t){var e=t.source;t.geoJSON=C(e)?"undefined"!=typeof JSON&&JSON.parse?JSON.parse(e):new Function("return ("+e+");")():e},svg:function(t){t.svgXML=dr(t.source)}},fM=function(){function t(){}return t.prototype.normalizeQuery=function(t){var e={},n={},i={};if(C(t)){var r=Qo(t);e.mainType=r.main||null,e.subType=r.sub||null}else{var o=["Index","Name","Id"],a={name:1,dataIndex:1,dataType:1};y(t,function(t,r){for(var s=!1,l=0;l0&&h===r.length-u.length){var c=r.slice(0,h);"data"!==c&&(e.mainType=c,e[u.toLowerCase()]=t,s=!0)}}a.hasOwnProperty(r)&&(n[r]=t,s=!0),s||(i[r]=t)})}return{cptQuery:e,dataQuery:n,otherQuery:i}},t.prototype.filter=function(t,e){function n(t,e,n,i){return null==t[n]||e[i||n]===t[n]}var i=this.eventInfo;if(!i)return!0;var r=i.targetEl,o=i.packedEvent,a=i.model,s=i.view;if(!a||!s)return!0;var l=e.cptQuery,u=e.dataQuery;return n(l,a,"mainType")&&n(l,a,"subType")&&n(l,a,"index","componentIndex")&&n(l,a,"name")&&n(l,a,"id")&&n(u,o,"name")&&n(u,o,"dataIndex")&&n(u,o,"dataType")&&(!s.filterForExposedEvent||s.filterForExposedEvent(t,e.otherQuery,r,o))},t.prototype.afterTrigger=function(){this.eventInfo=null},t}(),dM={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){function n(e,n){var i=t.getRawValue(n),a=t.getDataParams(n);l&&e.setItemVisual(n,"symbol",r(i,a)),u&&e.setItemVisual(n,"symbolSize",o(i,a)),h&&e.setItemVisual(n,"symbolRotate",s(i,a))}var i=t.getData();if(t.legendSymbol&&i.setVisual("legendSymbol",t.legendSymbol),t.hasSymbolVisual){var r=t.get("symbol"),o=t.get("symbolSize"),a=t.get("symbolKeepAspect"),s=t.get("symbolRotate"),l=M(r),u=M(o),h=M(s),c=l||u||h,p=!l&&r?r:t.defaultSymbol,f=u?null:o,d=h?null:s;if(i.setVisual({legendSymbol:t.legendSymbol||p,symbol:p,symbolSize:f,symbolKeepAspect:a,symbolRotate:d}),!e.isSeriesFiltered(t))return{dataEach:c?n:null}}}},gM={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){function n(t,e){var n=t.getItemModel(e),i=n.getShallow("symbol",!0),r=n.getShallow("symbolSize",!0),o=n.getShallow("symbolRotate",!0),a=n.getShallow("symbolKeepAspect",!0);null!=i&&t.setItemVisual(e,"symbol",i),null!=r&&t.setItemVisual(e,"symbolSize",r),null!=o&&t.setItemVisual(e,"symbolRotate",o),null!=a&&t.setItemVisual(e,"symbolKeepAspect",a)}if(t.hasSymbolVisual&&!e.isSeriesFiltered(t)){var i=t.getData();return{dataEach:i.hasItemOption?n:null}}}},yM=2*Math.PI,vM=C_.CMD,mM=["top","right","bottom","left"],_M=[],xM=new Zv,wM=new Zv,bM=new Zv,SM=new Zv,TM=new Zv,MM=[],CM=new Zv,IM=["align","verticalAlign","width","height","fontSize"],kM=new Ov,AM=Uo(),DM=Uo(),PM=["x","y","rotation"],LM=function(){function t(){this._labelList=[],this._chartViewList=[]}return t.prototype.clearLabels=function(){this._labelList=[],this._chartViewList=[]},t.prototype._addLabel=function(t,e,n,i,r){var o=i.style,a=i.__hostTarget,s=a.textConfig||{},l=i.getComputedTransform(),u=i.getBoundingRect().plain();rm.applyTransform(u,u,l),l?kM.setLocalTransform(l):(kM.x=kM.y=kM.rotation=kM.originX=kM.originY=0,kM.scaleX=kM.scaleY=1);var h,c=i.__hostTarget;if(c){h=c.getBoundingRect().plain();var p=c.getComputedTransform();rm.applyTransform(h,h,p)}var f=h&&c.getTextGuideLine();this._labelList.push({label:i,labelLine:f,seriesModel:n,dataIndex:t,dataType:e,layoutOption:r,computedLayoutOption:null,rect:u,hostRect:h,priority:h?h.width*h.height:0,defaultAttr:{ignore:i.ignore,labelGuideIgnore:f&&f.ignore,x:kM.x,y:kM.y,rotation:kM.rotation,style:{x:o.x,y:o.y,align:o.align,verticalAlign:o.verticalAlign,width:o.width,height:o.height,fontSize:o.fontSize},cursor:i.cursor,attachedPos:s.position,attachedRot:s.rotation}})},t.prototype.addLabelsOfSeries=function(t){var e=this;this._chartViewList.push(t);var n=t.__model,i=n.get("labelLayout");(M(i)||w(i).length)&&t.group.traverse(function(t){if(t.ignore)return!0;var r=t.getTextContent(),o=rb(t);r&&!r.disableLabelLayout&&e._addLabel(o.dataIndex,o.dataType,n,r,i)})},t.prototype.updateLayoutConfig=function(t){function e(t,e){return function(){Yh(t,e)}}for(var n=t.getWidth(),i=t.getHeight(),r=0;r=0&&n.attr(r.oldLayoutSelect),p(h,"emphasis")>=0&&n.attr(r.oldLayoutEmphasis)),ls(n,l,e,s)}else if(n.attr(l),!Rb(n).valueAnimation){var c=N(n.style.opacity,1);n.style.opacity=0,us(n,{style:{opacity:c}},e,s)}if(r.oldLayout=l,n.states.select){var f=r.oldLayoutSelect={};oc(f,l,PM),oc(f,n.states.select,PM)}if(n.states.emphasis){var d=r.oldLayoutEmphasis={};oc(d,l,PM),oc(d,n.states.emphasis,PM)}Ns(n,s,u,e)}if(i&&!i.ignore&&!i.invisible){var r=DM(i),o=r.oldLayout,g={points:i.shape.points};o?(i.attr({shape:o}),ls(i,{shape:g},e)):(i.setShape(g),i.style.strokePercent=0,us(i,{style:{strokePercent:1}},e)),r.oldLayout=g}},t}(),OM=new C_(!0),RM=["shadowBlur","shadowOffsetX","shadowOffsetY"],EM=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]],BM=1,zM=2,NM=3,FM=4,HM=function(t){function n(e,n,i){var r=t.call(this)||this;r.motionBlur=!1,r.lastFrameAlpha=.7,r.dpr=1,r.virtual=!1,r.config={},r.incremental=!1,r.zlevel=0,r.maxRepaintRectCount=5,r.__dirty=!0,r.__firstTimePaint=!0,r.__used=!1,r.__drawIndex=0,r.__startIndex=0,r.__endIndex=0,r.__prevStartIndex=null,r.__prevEndIndex=null;var o;i=i||um,"string"==typeof e?o=Rc(e,n,i):A(e)&&(o=e,e=o.id),r.id=e,r.dom=o;var a=o.style;return a&&(o.onselectstart=Oc,a.webkitUserSelect="none",a.userSelect="none",a.webkitTapHighlightColor="rgba(0,0,0,0)",a["-webkit-touch-callout"]="none",a.padding="0",a.margin="0",a.borderWidth="0"),r.domBack=null,r.ctxBack=null,r.painter=n,r.config=null,r.dpr=i,r}return e(n,t),n.prototype.getElementCount=function(){return this.__endIndex-this.__startIndex},n.prototype.afterBrush=function(){this.__prevStartIndex=this.__startIndex,this.__prevEndIndex=this.__endIndex},n.prototype.initContext=function(){this.ctx=this.dom.getContext("2d"),this.ctx.dpr=this.dpr},n.prototype.setUnpainted=function(){this.__firstTimePaint=!0},n.prototype.createBackBuffer=function(){var t=this.dpr;this.domBack=Rc("back-"+this.id,this.painter,t),this.ctxBack=this.domBack.getContext("2d"),1!==t&&this.ctxBack.scale(t,t)},n.prototype.createRepaintRects=function(t,e,n,i){function r(t){if(t.isFinite()&&!t.isZero())if(0===o.length){var e=new rm(0,0,0,0);e.copy(t),o.push(e)}else{for(var n=!1,i=1/0,r=0,u=0;ug&&(i=i,r=u)}}if(s&&(o[r].union(t),n=!0),!n){var e=new rm(0,0,0,0);e.copy(t),o.push(e)}s||(s=o.length>=a)}}if(this.__firstTimePaint)return this.__firstTimePaint=!1,null;for(var o=[],a=this.maxRepaintRectCount,s=!1,l=new rm(0,0,0,0),u=this.__startIndex;uo;o++){var a=t[o];a.__inHover&&(n||(n=this._hoverlayer=this.getLayer(VM)),i||(i=n.ctx,i.save()),Pc(i,a,r,o===e-1))}i&&i.restore()}},t.prototype.getHoverLayer=function(){return this.getLayer(VM)},t.prototype.paintOne=function(t,e){Dc(t,e)},t.prototype._paintList=function(t,e,n,i){if(this._redrawId===i){n=n||!1,this._updateLayerStatus(t);var r=this._doPaintList(t,e,n),o=r.finished,a=r.needsRefreshHover;if(this._needsManuallyCompositing&&this._compositeManually(),a&&this._paintHoverList(t),o)this.eachLayer(function(t){t.afterBrush&&t.afterBrush()});else{var s=this;Mm(function(){s._paintList(t,e,n,i)})}}},t.prototype._compositeManually=function(){var t=this.getLayer(GM).ctx,e=this._domRoot.width,n=this._domRoot.height;t.clearRect(0,0,e,n),this.eachBuiltinLayer(function(i){i.virtual&&t.drawImage(i.dom,0,0,e,n)})},t.prototype._doPaintList=function(t,e,n){for(var i=this,r=[],o=this._opts.useDirtyRect,a=0;a15)break}}n.prevElClipPaths&&l.restore()};if(c)if(0===c.length)m=s.__endIndex;else for(var x=p.dpr,w=0;w0&&t>i[0]){for(l=0;r-1>l&&!(i[l]t);l++);s=n[i[l]]}if(i.splice(l+1,0,t),n[t]=e,!e.virtual)if(s){var u=s.dom;u.nextSibling?o.insertBefore(e.dom,u.nextSibling):o.appendChild(e.dom)}else o.firstChild?o.insertBefore(e.dom,o.firstChild):o.appendChild(e.dom);e.__painter=this},t.prototype.eachLayer=function(t,e){for(var n=this._zlevelList,i=0;i0?WM:0),this._needsManuallyCompositing),h.__builtin__||a("ZLevel "+u+" has been used by unkown layer "+h.id),h!==s&&(h.__used=!0,h.__startIndex!==o&&(h.__dirty=!0),h.__startIndex=o,h.__drawIndex=h.incremental?-1:o,e(o),s=h),i.__dirty&_m.REDARAW_BIT&&!i.__inHover&&(h.__dirty=!0,h.incremental&&h.__drawIndex<0&&(h.__drawIndex=o))}e(o),this.eachBuiltinLayer(function(t){!t.__used&&t.getElementCount()>0&&(t.__dirty=!0,t.__startIndex=t.__endIndex=t.__drawIndex=0),t.__dirty&&t.__drawIndex<0&&(t.__drawIndex=t.__startIndex)})},t.prototype.clear=function(){return this.eachBuiltinLayer(this._clearLayer),this},t.prototype._clearLayer=function(t){t.clear()},t.prototype.setBackgroundColor=function(t){this._backgroundColor=t,y(this._layers,function(t){t.setUnpainted()})},t.prototype.configLayer=function(t,e){if(e){var n=this._layerConfig;n[t]?l(n[t],e,!0):n[t]=e;for(var i=0;il;l++){var h=s[l];Pc(n,h,a,l===u-1)}return e.dom},t.prototype.getWidth=function(){return this._width},t.prototype.getHeight=function(){return this._height},t.prototype._getSize=function(t){var e=this._opts,n=["width","height"][t],i=["clientWidth","clientHeight"][t],r=["paddingLeft","paddingTop"][t],o=["paddingRight","paddingBottom"][t];if(null!=e[n]&&"auto"!==e[n])return parseFloat(e[n]);var a=this.root,s=document.defaultView.getComputedStyle(a);return(a[i]||Ec(s[n])||Ec(a.style[n]))-(Ec(s[r])||0)-(Ec(s[o])||0)|0},t.prototype.pathToImage=function(t,e){e=e||this.dpr;var n=document.createElement("canvas"),i=n.getContext("2d"),r=t.getBoundingRect(),o=t.style,a=o.shadowBlur*e,s=o.shadowOffsetX*e,l=o.shadowOffsetY*e,u=t.hasStroke()?o.lineWidth:0,c=Math.max(u/2,-s+a),p=Math.max(u/2,s+a),f=Math.max(u/2,-l+a),d=Math.max(u/2,l+a),g=r.width+c+p,y=r.height+f+d;n.width=g*e,n.height=y*e,i.scale(e,e),i.clearRect(0,0,g,y),i.dpr=e;var v={x:t.x,y:t.y,scaleX:t.scaleX,scaleY:t.scaleY,rotation:t.rotation,originX:t.originX,originY:t.originY};t.x=c-r.x,t.y=f-r.y,t.rotation=0,t.scaleX=1,t.scaleY=1,t.updateTransform(),t&&Pc(i,t,{inHover:!1,viewWidth:this._width,viewHeight:this._height},!0);var m=new Q_({style:{x:0,y:0,image:n}});return h(t,v),m},t}();eo("canvas",UM);var YM=Math.round(9*Math.random()),jM=function(){function t(){this._id="__ec_inner_"+YM++}return t.prototype.get=function(t){return this._guard(t)[this._id]},t.prototype.set=function(t,e){var n=this._guard(t);return"function"==typeof Object.defineProperty?Object.defineProperty(n,this._id,{value:e,enumerable:!1,configurable:!0}):n[this._id]=e,this},t.prototype["delete"]=function(t){return this.has(t)?(delete this._guard(t)[this._id],!0):!1},t.prototype.has=function(t){return!!this._guard(t)[this._id]},t.prototype._guard=function(t){if(t!==Object(t))throw TypeError("Value of WeakMap is not a non-null object.");return t},t}(),qM=z_.extend({type:"triangle",shape:{cx:0,cy:0,width:0,height:0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=e.width/2,o=e.height/2;t.moveTo(n,i-o),t.lineTo(n+r,i+o),t.lineTo(n-r,i+o),t.closePath()}}),ZM=z_.extend({type:"diamond",shape:{cx:0,cy:0,width:0,height:0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=e.width/2,o=e.height/2;t.moveTo(n,i-o),t.lineTo(n+r,i),t.lineTo(n,i+o),t.lineTo(n-r,i),t.closePath()}}),KM=z_.extend({type:"pin",shape:{x:0,y:0,width:0,height:0},buildPath:function(t,e){var n=e.x,i=e.y,r=e.width/5*3,o=Math.max(r,e.height),a=r/2,s=a*a/(o-a),l=i-o+a+s,u=Math.asin(s/a),h=Math.cos(u)*a,c=Math.sin(u),p=Math.cos(u),f=.6*a,d=.7*a;t.moveTo(n-h,l+s),t.arc(n,l,a,Math.PI-u,2*Math.PI+u),t.bezierCurveTo(n+h-c*f,l+s+p*f,n,i-d,n,i),t.bezierCurveTo(n,i-d,n-h+c*f,l+s+p*f,n-h,l+s),t.closePath()}}),$M=z_.extend({type:"arrow",shape:{x:0,y:0,width:0,height:0},buildPath:function(t,e){var n=e.height,i=e.width,r=e.x,o=e.y,a=i/3*2;t.moveTo(r,o),t.lineTo(r+a,o+n),t.lineTo(r,o+n/4*3),t.lineTo(r-a,o+n),t.lineTo(r,o),t.closePath()}}),QM={line:rx,rect:rx,roundRect:rx,square:rx,circle:tx,diamond:ZM,pin:KM,arrow:$M,triangle:qM},JM={line:function(t,e,n,i,r){var o=2;r.x=t,r.y=e+i/2-o/2,r.width=n,r.height=o},rect:function(t,e,n,i,r){r.x=t,r.y=e,r.width=n,r.height=i},roundRect:function(t,e,n,i,r){r.x=t,r.y=e,r.width=n,r.height=i,r.r=Math.min(n,i)/4},square:function(t,e,n,i,r){var o=Math.min(n,i);r.x=t,r.y=e,r.width=o,r.height=o},circle:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.r=Math.min(n,i)/2},diamond:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.width=n,r.height=i},pin:function(t,e,n,i,r){r.x=t+n/2,r.y=e+i/2,r.width=n,r.height=i},arrow:function(t,e,n,i,r){r.x=t+n/2,r.y=e+i/2,r.width=n,r.height=i},triangle:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.width=n,r.height=i}},tC={};y(QM,function(t,e){tC[e]=new t});var eC=z_.extend({type:"symbol",shape:{symbolType:"",x:0,y:0,width:0,height:0},calculateTextPosition:function(t,e,n){var i=Fn(t,e,n),r=this.shape;return r&&"pin"===r.symbolType&&"inside"===e.position&&(i.y=n.y+.4*n.height),i},buildPath:function(t,e,n){var i=e.symbolType;if("none"!==i){var r=tC[i];r||(i="rect",r=tC[i]),JM[i](e.x,e.y,e.width,e.height,r.shape),r.buildPath(t,r.shape,n)}}}),nC=new jM,iC=new Nv(100),rC=["symbol","symbolSize","symbolKeepAspect","color","backgroundColor","dashArrayX","dashArrayY","dashLineOffset","maxTileWidth","maxTileHeight"],oC=G,aC=y,sC=M,lC=A,uC="5.0.0",hC={zrender:"5.0.1"},cC=1,pC=800,fC=900,dC=1e3,gC=2e3,yC=5e3,vC=1e3,mC=1100,_C=2e3,xC=3e3,wC=4e3,bC=4500,SC=4600,TC=5e3,MC=6e3,CC=7e3,IC={PROCESSOR:{FILTER:dC,SERIES_FILTER:pC,STATISTIC:yC},VISUAL:{LAYOUT:vC,PROGRESSIVE_LAYOUT:mC,GLOBAL:_C,CHART:xC,POST_CHART_LAYOUT:SC,COMPONENT:wC,BRUSH:TC,CHART_ITEM:bC,ARIA:MC,DECAL:CC}},kC="__flagInMainProcess",AC="__optionUpdated",DC="__needsUpdateStatus",PC=/^[a-zA-Z0-9_]+$/,LC="__connectUpdateStatus",OC=0,RC=1,EC=2,BC=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e(n,t),n}(uv),zC=BC.prototype;zC.on=Zc("on"),zC.off=Zc("off");var NC,FC,HC,VC,GC,WC,XC,UC,YC,jC,qC,ZC,KC,$C,QC,JC,tI,eI,nI,iI,rI,oI=function(t){function n(e,n,i){function r(t,e){return t.__prio-e.__prio}var o=t.call(this,new fM)||this;o._chartsViews=[],o._chartsMap={},o._componentsViews=[],o._componentsMap={},o._pendingActions=[],i=i||{},"string"==typeof n&&(n=gI[n]),o._dom=e;var a="canvas",l=!1,u=o._zr=$r(e,{renderer:i.renderer||a,devicePixelRatio:i.devicePixelRatio,width:i.width,height:i.height,useDirtyRect:null==i.useDirtyRect?l:i.useDirtyRect});o._throttledZrFlush=Sh(Qy(u.flush,u),17),n=s(n),n&&vu(n,!0),o._theme=n,o._locale=Xs(i.locale||Jb),o._coordSysMgr=new $S;var h=o._api=tI(o);return Qn(dI,r),Qn(hI,r),o._scheduler=new $T(o,h,hI,dI),o._messageCenter=new BC,o._labelManager=new LM,o._initEvents(),o.resize=Qy(o.resize,o),u.animation.on("frame",o._onframe,o),jC(u,o),qC(u,o),X(o),o}return e(n,t),n.prototype._onframe=function(){if(!this._disposed){rI(this);var t=this._scheduler;if(this[AC]){var e=this[AC].silent;this[kC]=!0,NC(this),VC.update.call(this),this._zr.flush(),this[kC]=!1,this[AC]=!1,UC.call(this,e),YC.call(this,e)}else if(t.unfinished){var n=cC,i=this._model,r=this._api;t.unfinished=!1;do{var o=+new Date;t.performSeriesTasks(i),t.performDataProcessorTasks(i),WC(this,i),t.performVisualTasks(i),QC(this,this._model,r,"remain"),n-=+new Date-o}while(n>0&&t.unfinished);t.unfinished||this._zr.flush()}}},n.prototype.getDom=function(){return this._dom},n.prototype.getId=function(){return this.id},n.prototype.getZr=function(){return this._zr},n.prototype.setOption=function(t,e,n){if(!this._disposed){var i,r,o;if(lC(e)&&(n=e.lazyUpdate,i=e.silent,r=e.replaceMerge,o=e.transition,e=e.notMerge),this[kC]=!0,!this._model||e){var a=new JS(this._api),s=this._theme,l=this._model=new GS;l.scheduler=this._scheduler,l.init(null,null,null,s,this._locale,a)}this._model.setOption(t,{replaceMerge:r},cI),nI(this,o),n?(this[AC]={silent:i},this[kC]=!1,this.getZr().wakeUp()):(NC(this),VC.update.call(this),this._zr.flush(),this[AC]=!1,this[kC]=!1,UC.call(this,i),YC.call(this,i))}},n.prototype.setTheme=function(){console.error("ECharts#setTheme() is DEPRECATED in ECharts 3.0")},n.prototype.getModel=function(){return this._model},n.prototype.getOption=function(){return this._model&&this._model.getOption()},n.prototype.getWidth=function(){return this._zr.getWidth()},n.prototype.getHeight=function(){return this._zr.getHeight()},n.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||window.devicePixelRatio||1},n.prototype.getRenderedCanvas=function(t){if(Ny.canvasSupported){t=h({},t||{}),t.pixelRatio=t.pixelRatio||1,t.backgroundColor=t.backgroundColor||this._model.get("backgroundColor");var e=this._zr;return e.painter.getRenderedCanvas(t)}},n.prototype.getSvgDataURL=function(){if(Ny.svgSupported){var t=this._zr,e=t.storage.getDisplayList();return y(e,function(t){t.stopAnimation(null,!0)}),t.painter.toDataURL()}},n.prototype.getDataURL=function(t){if(!this._disposed){t=t||{};var e=t.excludeComponents,n=this._model,i=[],r=this;aC(e,function(t){n.eachComponent({mainType:t},function(t){var e=r._componentsMap[t.__viewId];e.group.ignore||(i.push(e),e.group.ignore=!0)})});var o="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.getRenderedCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return aC(i,function(t){t.group.ignore=!1}),o}},n.prototype.getConnectedDataURL=function(t){if(!this._disposed&&Ny.canvasSupported){var e="svg"===t.type,n=this.group,i=Math.min,r=Math.max,o=1/0;if(mI[n]){var a=o,l=o,u=-o,h=-o,c=[],p=t&&t.pixelRatio||1;y(vI,function(o){if(o.group===n){var p=e?o.getZr().painter.getSvgDom().innerHTML:o.getRenderedCanvas(s(t)),f=o.getDom().getBoundingClientRect();a=i(f.left,a),l=i(f.top,l),u=r(f.right,u),h=r(f.bottom,h),c.push({dom:p,left:f.left,top:f.top})}}),a*=p,l*=p,u*=p,h*=p;var f=u-a,d=h-l,g=$y(),v=$r(g,{renderer:e?"svg":"canvas"});if(v.resize({width:f,height:d}),e){var m="";return aC(c,function(t){var e=t.left-a,n=t.top-l;m+=''+t.dom+""}),v.painter.getSvgRoot().innerHTML=m,t.connectedBackgroundColor&&v.painter.setBackgroundColor(t.connectedBackgroundColor),v.refreshImmediately(),v.painter.toDataURL()}return t.connectedBackgroundColor&&v.add(new rx({shape:{x:0,y:0,width:f,height:d},style:{fill:t.connectedBackgroundColor}})),aC(c,function(t){var e=new Q_({style:{x:t.left*p-a,y:t.top*p-l,image:t.dom}});v.add(e)}),v.refreshImmediately(),g.toDataURL("image/"+(t&&t.type||"png"))}return this.getDataURL(t)}},n.prototype.convertToPixel=function(t,e){return GC(this,"convertToPixel",t,e)},n.prototype.convertFromPixel=function(t,e){return GC(this,"convertFromPixel",t,e)},n.prototype.containPixel=function(t,e){if(!this._disposed){var n,i=this._model,r=Yo(i,t);return y(r,function(t,i){i.indexOf("Models")>=0&&y(t,function(t){var r=t.coordinateSystem;if(r&&r.containPoint)n=n||!!r.containPoint(e);else if("seriesModels"===i){var o=this._chartsMap[t.__viewId];o&&o.containPoint&&(n=n||o.containPoint(e,t))}},this)},this),!!n}},n.prototype.getVisual=function(t,e){var n=this._model,i=Yo(n,t,{defaultMainType:"series"}),r=i.seriesModel,o=r.getData(),a=i.hasOwnProperty("dataIndexInside")?i.dataIndexInside:i.hasOwnProperty("dataIndex")?o.indexOfRawIndex(i.dataIndex):null;return null!=a?Nh(o,a,e):Fh(o,e)},n.prototype.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},n.prototype.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]},n.prototype._initEvents=function(){var t=this;aC(sI,function(e){var n=function(n){var i,r=t.getModel(),o=n.target,a="globalout"===e;if(a?i={}:o&&Nc(o,function(t){var e=rb(t);if(e&&null!=e.dataIndex){var n=e.dataModel||r.getSeriesByIndex(e.seriesIndex);return i=n&&n.getDataParams(e.dataIndex,e.dataType)||{},!0}return e.eventData?(i=h({},e.eventData),!0):void 0},!0),i){var s=i.componentType,l=i.componentIndex;("markLine"===s||"markPoint"===s||"markArea"===s)&&(s="series",l=i.seriesIndex);var u=s&&null!=l&&r.getComponent(s,l),c=u&&t["series"===u.mainType?"_chartsMap":"_componentsMap"][u.__viewId];i.event=n,i.type=e,t._$eventProcessor.eventInfo={targetEl:o,packedEvent:i,model:u,view:c},t.trigger(e,i)}};n.zrEventfulCallAtLast=!0,t._zr.on(e,n,t)}),aC(uI,function(e,n){t._messageCenter.on(n,function(t){this.trigger(n,t)},t)}),aC(["selectchanged"],function(e){t._messageCenter.on(e,function(t){this.trigger(e,t)},t)}),sc(this._messageCenter,this,this._model)},n.prototype.isDisposed=function(){return this._disposed},n.prototype.clear=function(){this._disposed||this.setOption({series:[]},!0)},n.prototype.dispose=function(){if(!this._disposed){this._disposed=!0,qo(this.getDom(),wI,"");var t=this._api,e=this._model;aC(this._componentsViews,function(n){n.dispose(e,t)}),aC(this._chartsViews,function(n){n.dispose(e,t)}),this._zr.dispose(),delete vI[this.id]}},n.prototype.resize=function(t){if(!this._disposed){this._zr.resize(t);var e=this._model;if(this._loadingFX&&this._loadingFX.resize(),e){var n=e.resetOption("media"),i=t&&t.silent;this[kC]=!0,n&&NC(this),VC.update.call(this,{type:"resize",animation:{duration:0}}),this[kC]=!1,UC.call(this,i),YC.call(this,i)}}},n.prototype.showLoading=function(t,e){if(!this._disposed&&(lC(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),yI[t])){var n=yI[t](this._api,e),i=this._zr;this._loadingFX=n,i.add(n)}},n.prototype.hideLoading=function(){this._disposed||(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},n.prototype.makeActionFromEvent=function(t){var e=h({},t);return e.type=uI[t.type],e},n.prototype.dispatchAction=function(t,e){if(!this._disposed&&(lC(e)||(e={silent:!!e}),lI[t.type]&&this._model)){if(this[kC])return void this._pendingActions.push(t);var n=e.silent;XC.call(this,t,n);var i=e.flush;i?this._zr.flush():i!==!1&&Ny.browser.weChat&&this._throttledZrFlush(),UC.call(this,n),YC.call(this,n)}},n.prototype.updateLabelLayout=function(){var t=this._labelManager;t.updateLayoutConfig(this._api),t.layout(this._api),t.processLabelsOverall()},n.prototype.appendData=function(t){if(!this._disposed){var e=t.seriesIndex,n=this.getModel(),i=n.getSeriesByIndex(e);i.appendData(t),this._scheduler.unfinished=!0,this.getZr().wakeUp()}},n.internalField=function(){function t(t){for(var e=[],n=t.currentStates,i=0;ie.get("hoverLayerThreshold")&&!Ny.node&&!Ny.worker&&e.eachSeries(function(e){if(!e.preventUsingHoverLayer){var n=t._chartsMap[e.__viewId];n.__alive&&n.group.traverse(function(t){t.states.emphasis&&(t.states.emphasis.hoverLayer=!0)})}})}function i(t,e){var n=t.get("blendMode")||null;e.group.traverse(function(t){t.isGroup||(t.style.blend=n),t.eachPendingDisplayable&&t.eachPendingDisplayable(function(t){t.style.blend=n})})}function r(t,e){if(!t.preventAutoZ){var n=t.get("z"),i=t.get("zlevel");e.group.traverse(function(t){if(!t.isGroup){null!=n&&(t.z=n),null!=i&&(t.zlevel=i);var e=t.getTextContent(),r=t.getTextGuideLine();if(e&&(e.z=t.z,e.zlevel=t.zlevel,e.z2=t.z2+2),r){var o=t.textGuideLineConfig&&t.textGuideLineConfig.showAbove;r.z=t.z,r.zlevel=t.zlevel,r.z2=t.z2+(o?1:-1)}}})}}function o(t,e){e.group.traverse(function(t){if(!fs(t)){var e=t.getTextContent(),n=t.getTextGuideLine();t.stateTransition&&(t.stateTransition=null),e&&e.stateTransition&&(e.stateTransition=null),n&&n.stateTransition&&(n.stateTransition=null),t.hasState()?(t.prevStates=t.currentStates,t.clearStates()):t.prevStates&&(t.prevStates=null)}})}function a(e,n){var i=e.getModel("stateAnimation"),r=e.isAnimationEnabled(),o=i.get("duration"),a=o>0?{duration:o,delay:i.get("delay"),easing:i.get("easing")}:null;n.group.traverse(function(e){if(e.states&&e.states.emphasis){if(fs(e))return;if(e instanceof z_&&Ka(e),e.__dirty){var n=e.prevStates;n&&e.useStates(n)}if(r){e.stateTransition=a;var i=e.getTextContent(),o=e.getTextGuideLine();i&&(i.stateTransition=a),o&&(o.stateTransition=a)}e.__dirty&&t(e)}})}NC=function(t){var e=t._scheduler;e.restorePipelines(t._model),e.prepareStageTasks(),FC(t,!0),FC(t,!1),e.plan()},FC=function(t,e){function n(t){var n=t.__requireNewView;t.__requireNewView=!1;var u="_ec_"+t.id+"_"+t.type,h=!n&&a[u];if(!h){var c=Qo(t.type),p=e?RT.getClass(c.main,c.sub):zT.getClass(c.sub);h=new p,h.init(i,l),a[u]=h,o.push(h),s.add(h.group)}t.__viewId=h.__id=u,h.__alive=!0,h.__model=t,h.group.__ecComponentInfo={mainType:t.mainType,index:t.componentIndex},!e&&r.prepareView(h,t,i,l)}for(var i=t._model,r=t._scheduler,o=e?t._componentsViews:t._chartsViews,a=e?t._componentsMap:t._chartsMap,s=t._zr,l=t._api,u=0;u1){var u=s.shift();1===s.length&&(n[a]=s[0]),this._update&&this._update(u,o)}else 1===l?(n[a]=null,this._update&&this._update(s,o)):this._remove&&this._remove(o)}this._performRestAdd(r,n)},t.prototype._executeMultiple=function(){var t=this._old,e=this._new,n={},i={},r=[],o=[];this._initIndexMap(t,n,r,"_oldKeyGetter"),this._initIndexMap(e,i,o,"_newKeyGetter");for(var a=0;a1&&1===c)this._updateManyToOne&&this._updateManyToOne(u,l),i[s]=null;else if(1===h&&c>1)this._updateOneToMany&&this._updateOneToMany(u,l),i[s]=null;else if(1===h&&1===c)this._update&&this._update(u,l),i[s]=null;else if(h>1)for(var p=0;h>p;p++)this._remove&&this._remove(l[p]);else this._remove&&this._remove(l)}this._performRestAdd(o,i)},t.prototype._performRestAdd=function(t,e){for(var n=0;n1)for(var a=0;o>a;a++)this._add&&this._add(r[a]);else 1===o&&this._add&&this._add(r);e[i]=null}},t.prototype._initIndexMap=function(t,e,n,i){for(var r=this._diffModeMultiple,o=0;ol;l++){var u=i[l];o[u]||(o[u]=EI()),II(n,this._dimensionInfos[u],s,!0)}for(var h=WI(i,function(t){return o[t]}),c=this._storageArr=WI(i,function(t){return n[t]}),p=[],f=a;s>f;f++){for(var d=f-a,g=0;r>g;g++){var u=i[g],y=this._dimValueGetterArrayRows(t[d]||p,u,d,g);c[g][f]=y;var v=h[g];yv[1]&&(v[1]=y)}e&&(this._nameList[f]=e[d],this._dontMakeIdFromName||LI(this,f))}this._rawCount=this._count=s,this._extent={},MI(this)},t.prototype._initDataFromProvider=function(t,e,n){if(!(t>=e)){for(var i=this._rawData,r=this._storage,o=this.dimensions,a=o.length,s=this._dimensionInfos,l=this._nameList,u=this._idList,h=this._rawExtent,c=i.getSource().sourceFormat,p=c===kS,f=0;a>f;f++){var d=o[f];h[d]||(h[d]=EI()),II(r,s[d],e,n)}var g=this._storageArr=WI(o,function(t){return r[t]}),y=WI(o,function(t){return h[t]});if(i.fillStorage)i.fillStorage(t,e,g,y);else for(var v=[],m=t;e>m;m++){v=i.getItem(m,v);for(var _=0;a>_;_++){var d=o[_],x=g[_],w=this._dimValueGetter(v,d,m,_);x[m]=w;var b=y[_];wb[1]&&(b[1]=w)}if(p&&!i.pure&&v){var S=v.name;null==l[m]&&null!=S&&(l[m]=Fo(S,null));var T=v.id;null==u[m]&&null!=T&&(u[m]=Fo(T,null))}this._dontMakeIdFromName||LI(this,m)}!i.persistent&&i.clean&&i.clean(),this._rawCount=this._count=e,this._extent={},MI(this)}},t.prototype.count=function(){return this._count},t.prototype.getIndices=function(){var t,e=this._indices;if(e){var n=e.constructor,i=this._count;if(n===Array){t=new n(i);for(var r=0;i>r;r++)t[r]=e[r]}else t=new n(e.buffer,0,i)}else{var n=CI(this);t=new n(this.count());for(var r=0;r=0&&e=0&&e=0&&ei;i++)n.push(this.get(t[i],e));return n},t.prototype.hasValue=function(t){for(var e=this._dimensionsSummary.dataDimsOnCoord,n=0,i=e.length;i>n;n++)if(isNaN(this.get(e[n],t)))return!1;return!0},t.prototype.getDataExtent=function(t){t=this.getDimension(t);var e=this._storage[t],n=EI();if(!e)return n;var i,r=this.count(),o=!this._indices;if(o)return this._rawExtent[t].slice();if(i=this._extent[t])return i.slice();i=n;for(var a=i[0],s=i[1],l=0;r>l;l++){var u=this.getRawIndex(l),h=e[u];a>h&&(a=h),h>s&&(s=h)}return i=[a,s],this._extent[t]=i,i},t.prototype.getApproximateExtent=function(t){return t=this.getDimension(t),this._approximateExtent[t]||this.getDataExtent(t)},t.prototype.setApproximateExtent=function(t,e){e=this.getDimension(e),this._approximateExtent[e]=t.slice()},t.prototype.getCalculationInfo=function(t){return this._calculationInfo[t]},t.prototype.setCalculationInfo=function(t,e){GI(t)?h(this._calculationInfo,t):this._calculationInfo[t]=e},t.prototype.getSum=function(t){var e=this._storage[t],n=0;if(e)for(var i=0,r=this.count();r>i;i++){var o=this.get(t,i);isNaN(o)||(n+=o)}return n},t.prototype.getMedian=function(t){var e=[];this.each(t,function(t){isNaN(t)||e.push(t)});var n=e.sort(function(t,e){return t-e}),i=this.count();return 0===i?0:i%2===1?n[(i-1)/2]:(n[i/2]+n[i/2-1])/2},t.prototype.rawIndexOf=function(t,e){var n=t&&this._invertedIndicesMap[t],i=n[e];return null==i||isNaN(i)?UI:i},t.prototype.indexOfName=function(t){for(var e=0,n=this.count();n>e;e++)if(this.getName(e)===t)return e;return-1},t.prototype.indexOfRawIndex=function(t){if(t>=this._rawCount||0>t)return-1;if(!this._indices)return t;var e=this._indices,n=e[t];if(null!=n&&n=i;){var o=(i+r)/2|0;if(e[o]t))return o;r=o-1}}return-1},t.prototype.indicesOfNearest=function(t,e,n){var i=this._storage,r=i[t],o=[];if(!r)return o;null==n&&(n=1/0);for(var a=1/0,s=-1,l=0,u=0,h=this.count();h>u;u++){var c=this.getRawIndex(u),p=e-r[c],f=Math.abs(p);n>=f&&((a>f||f===a&&p>=0&&0>s)&&(a=f,s=p,l=0),p===s&&(o[l++]=u))}return o.length=l,o},t.prototype.getRawDataItem=function(t){if(this._rawData.persistent)return this._rawData.getItem(this.getRawIndex(t));for(var e=[],n=0;nh;h++){var p=this.getRawIndex(h);switch(s){case 0:e.call(o,h);break;case 1:e.call(o,u[l[0]][p],h);break;case 2:e.call(o,u[l[0]][p],u[l[1]][p],h);break;default:for(var f=0,d=[];s>f;f++)d[f]=u[l[f]][p];d[f]=h,e.apply(o,d)}}}},t.prototype.filterSelf=function(t,e,n,i){var r=this;if(this._count){"function"==typeof t&&(i=n,n=e,e=t,t=[]);for(var o=n||i||this,a=WI(OI(t),this.getDimension,this),s=this.count(),l=CI(this),u=new l(s),h=[],c=a.length,p=0,f=WI(a,function(t){return r._dimensionInfos[t].index}),d=f[0],g=this._storageArr,y=0;s>y;y++){var v=void 0,m=this.getRawIndex(y);if(0===c)v=e.call(o,y);else if(1===c){var _=g[d][m];v=e.call(o,_,y)}else{for(var x=0;c>x;x++)h[x]=g[f[x]][m];h[x]=y,v=e.apply(o,h)}v&&(u[p++]=m)}return s>p&&(this._indices=u),this._count=p,this._extent={},this.getRawIndex=this._indices?AI:kI,this}},t.prototype.selectRange=function(t){var e=this,n=this._count;if(n){var i=[];for(var r in t)t.hasOwnProperty(r)&&i.push(r);var o=i.length;if(o){var a=this.count(),s=CI(this),l=new s(a),u=0,h=i[0],c=WI(i,function(t){return e._dimensionInfos[t].index}),p=t[h][0],f=t[h][1],d=this._storageArr,g=!1;if(!this._indices){var y=0;if(1===o){for(var v=d[c[0]],m=0;n>m;m++){var _=v[m];(_>=p&&f>=_||isNaN(_))&&(l[u++]=y),y++}g=!0}else if(2===o){for(var v=d[c[0]],x=d[c[1]],w=t[i[1]][0],b=t[i[1]][1],m=0;n>m;m++){var _=v[m],S=x[m];(_>=p&&f>=_||isNaN(_))&&(S>=w&&b>=S||isNaN(S))&&(l[u++]=y),y++}g=!0}}if(!g)if(1===o)for(var m=0;a>m;m++){var T=this.getRawIndex(m),_=d[c[0]][T];(_>=p&&f>=_||isNaN(_))&&(l[u++]=T)}else for(var m=0;a>m;m++){for(var M=!0,T=this.getRawIndex(m),C=0;o>C;C++){var I=i[C],_=d[c[C]][T];(_t[I][1])&&(M=!1)}M&&(l[u++]=this.getRawIndex(m))}return a>u&&(this._indices=l),this._count=u,this._extent={},this.getRawIndex=this._indices?AI:kI,this}}},t.prototype.mapArray=function(t,e,n,i){"function"==typeof t&&(i=n,n=e,e=t,t=[]),n=n||i||this;var r=[];return this.each(t,function(){r.push(e&&e.apply(this,arguments))},n),r},t.prototype.map=function(t,e,n,i){var r=n||i||this,o=WI(OI(t),this.getDimension,this),a=RI(this,o),s=a._storage;a._indices=this._indices,a.getRawIndex=a._indices?AI:kI;for(var l=[],u=o.length,h=this.count(),c=[],p=a._rawExtent,f=0;h>f;f++){for(var d=0;u>d;d++)c[d]=this.get(o[d],f);c[u]=f;var g=e&&e.apply(r,c);if(null!=g){"object"!=typeof g&&(l[0]=g,g=l);for(var y=this.getRawIndex(f),v=0;vx[1]&&(x[1]=_)}}}return a},t.prototype.downSample=function(t,e,n,i){for(var r=RI(this,[t]),o=r._storage,a=[],s=VI(1/e),l=o[t],u=this.count(),h=r._rawExtent[t],c=new(CI(this))(u),p=0,f=0;u>f;f+=s){s>u-f&&(s=u-f,a.length=s);for(var d=0;s>d;d++){var g=this.getRawIndex(f+d);a[d]=l[g]}var y=n(a),v=this.getRawIndex(Math.min(f+i(a,y)||0,u-1));l[v]=y,yh[1]&&(h[1]=y),c[p++]=v}return r._count=p,r._indices=c,r.getRawIndex=AI,r},t.prototype.lttbDownSample=function(t,e){var n,i,r,o=RI(this,[]),a=o._storage,s=a[t],l=this.count(),u=new(CI(this))(l),h=0,c=VI(1/e),p=this.getRawIndex(0);u[h++]=p;for(var f=1;l-1>f;f+=c){for(var d=Math.min(f+c,l-1),g=Math.min(f+2*c,l),y=(g+d)/2,v=0,m=d;g>m;m++){var _=this.getRawIndex(m),x=s[_];isNaN(x)||(v+=x)}v/=g-d;var w=f,b=Math.min(f+c,l),S=f-1,T=s[p];n=-1,r=w;for(var m=w;b>m;m++){var _=this.getRawIndex(m),x=s[_];isNaN(x)||(i=Math.abs((S-y)*(x-T)-(S-m)*(v-T)),i>n&&(n=i,r=_))}u[h++]=r,p=r}return u[h++]=this.getRawIndex(l-1),o._count=h,o._indices=u,o.getRawIndex=AI,o},t.prototype.getItemModel=function(t){var e=this.hostModel,n=this.getRawDataItem(t);return new Xb(n,e,e&&e.ecModel)},t.prototype.diff=function(t){var e=this;return new FI(t?t.getIndices():[],this.getIndices(),function(e){return DI(t,e)},function(t){return DI(e,t)})},t.prototype.getVisual=function(t){var e=this._visual;return e&&e[t]},t.prototype.setVisual=function(t,e){this._visual=this._visual||{},GI(t)?h(this._visual,t):this._visual[t]=e},t.prototype.getItemVisual=function(t,e){var n=this._itemVisuals[t],i=n&&n[e];return null==i?this.getVisual(e):i},t.prototype.hasItemVisual=function(){return this._itemVisuals.length>0},t.prototype.ensureUniqueItemVisual=function(t,e){var n=this._itemVisuals,i=n[t];i||(i=n[t]={});var r=i[e];return null==r&&(r=this.getVisual(e),T(r)?r=r.slice():GI(r)&&(r=h({},r)),i[e]=r),r},t.prototype.setItemVisual=function(t,e,n){var i=this._itemVisuals[t]||{};this._itemVisuals[t]=i,GI(e)?h(i,e):i[e]=n},t.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},t.prototype.setLayout=function(t,e){if(GI(t))for(var n in t)t.hasOwnProperty(n)&&this.setLayout(n,t[n]);else this._layout[t]=e},t.prototype.getLayout=function(t){return this._layout[t]},t.prototype.getItemLayout=function(t){return this._itemLayouts[t]},t.prototype.setItemLayout=function(t,e,n){this._itemLayouts[t]=n?h(this._itemLayouts[t]||{},e):e},t.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},t.prototype.setItemGraphicEl=function(t,e){var n=this.hostModel;if(e){var i=rb(e);i.dataIndex=t,i.dataType=this.dataType,i.seriesIndex=n&&n.seriesIndex,"group"===e.type&&e.traverse(BI,e)}this._graphicEls[t]=e},t.prototype.getItemGraphicEl=function(t){return this._graphicEls[t]},t.prototype.eachItemGraphicEl=function(t,e){y(this._graphicEls,function(n,i){n&&t&&t.call(e,n,i)})},t.prototype.cloneShallow=function(e){if(!e){var n=WI(this.dimensions,this.getDimensionInfo,this);e=new t(n,this.hostModel)}if(e._storage=this._storage,e._storageArr=this._storageArr,zI(e,this),this._indices){var i=this._indices.constructor;if(i===Array){var r=this._indices.length;e._indices=new i(r);for(var o=0;r>o;o++)e._indices[o]=this._indices[o]}else e._indices=new i(this._indices)}else e._indices=null;return e.getRawIndex=e._indices?AI:kI,e},t.prototype.wrapMethod=function(t,e){var n=this[t];"function"==typeof n&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(t),this[t]=function(){var t=n.apply(this,arguments);return e.apply(this,[t].concat(H(arguments)))})},t.internalField=function(){function e(t,e,n,i){return zu(t[i],this._dimensionInfos[e])}function n(t){var e=t.constructor;return e===Array?t.slice():new e(t)}TI={arrayRows:e,objectRows:function(t,e){return zu(t[e],this._dimensionInfos[e])},keyedColumns:e,original:function(t,e,n,i){var r=t&&(null==t.value?t:t.value);return!this._rawData.pure&&Ao(t)&&(this.hasItemOption=!0),zu(r instanceof Array?r[i]:r,this._dimensionInfos[e])},typedArray:function(t,e,n,i){return t[i]}},MI=function(t){var e=t._invertedIndicesMap;y(e,function(n,i){var r=t._dimensionInfos[i],o=r.ordinalMeta;if(o){n=e[i]=new ZI(o.categories.length);for(var a=0;a65535?qI:KI},II=function(t,e,n,i){var r=jI[e.type],o=e.name;if(i){var a=t[o],s=a&&a.length;if(s!==n){for(var l=new r(n),u=0;s>u;u++)l[u]=a[u];t[o]=l}}else t[o]=new r(n)},kI=function(t){return t},AI=function(t){return t=0?this._indices[t]:-1},DI=function(t,e){var n=t._idList[e];return null==n&&null!=t._idDimIdx&&(n=PI(t,t._idDimIdx,t._idOrdinalMeta,e)),null==n&&(n=YI+e),n},OI=function(t){return T(t)||(t=null!=t?[t]:[]),t},RI=function(e,i){var r=e.dimensions,o=new t(WI(r,e.getDimensionInfo,e),e.hostModel);zI(o,e);for(var a=o._storage={},s=e._storage,l=o._storageArr=[],u=0;u=0?(a[h]=n(s[h]),o._rawExtent[h]=EI(),o._extent[h]=null):a[h]=s[h],l.push(a[h]))}return o},EI=function(){return[1/0,-1/0]},BI=function(t){var e=rb(t),n=rb(this);e.seriesIndex=n.seriesIndex,e.dataIndex=n.dataIndex,e.dataType=n.dataType},zI=function(t,e){y($I.concat(e.__wrappedMethods||[]),function(n){e.hasOwnProperty(n)&&(t[n]=e[n])}),t.__wrappedMethods=e.__wrappedMethods,y(QI,function(n){t[n]=s(e[n])}),t._calculationInfo=h({},e._calculationInfo)},LI=function(t,e){var n=t._nameList,i=t._idList,r=t._nameDimIdx,o=t._idDimIdx,a=n[e],s=i[e];if(null==a&&null!=r&&(n[e]=a=PI(t,r,t._nameOrdinalMeta,e)),null==s&&null!=o&&(i[e]=s=PI(t,o,t._idOrdinalMeta,e)),null==s&&null!=a){var l=t._nameRepeatCount,u=l[a]=(l[a]||0)+1;s=a,u>1&&(s+="__ec__"+u),i[e]=s}}}(),t}(),tk=function(){function t(t){this.coordSysDims=[],this.axisMap=Y(),this.categoryAxisMap=Y(),this.coordSysName=t}return t}(),ek={cartesian2d:function(t,e,n,i){var r=t.getReferringComponents("xAxis",Kw).models[0],o=t.getReferringComponents("yAxis",Kw).models[0];e.coordSysDims=["x","y"],n.set("x",r),n.set("y",o),Op(r)&&(i.set("x",r),e.firstCategoryDimIndex=0),Op(o)&&(i.set("y",o),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},singleAxis:function(t,e,n,i){var r=t.getReferringComponents("singleAxis",Kw).models[0];e.coordSysDims=["single"],n.set("single",r),Op(r)&&(i.set("single",r),e.firstCategoryDimIndex=0)},polar:function(t,e,n,i){var r=t.getReferringComponents("polar",Kw).models[0],o=r.findAxisModel("radiusAxis"),a=r.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),Op(o)&&(i.set("radius",o),e.firstCategoryDimIndex=0),Op(a)&&(i.set("angle",a),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},geo:function(t,e){e.coordSysDims=["lng","lat"]},parallel:function(t,e,n,i){var r=t.ecModel,o=r.getComponent("parallel",t.get("parallelIndex")),a=e.coordSysDims=o.dimensions.slice();y(o.parallelAxisIndex,function(t,o){var s=r.getComponent("parallelAxis",t),l=a[o];n.set(l,s),Op(s)&&(i.set(l,s),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=o))})}},nk=function(){function t(t){this._setting=t||{},this._extent=[1/0,-1/0]}return t.prototype.getSetting=function(t){return this._setting[t]},t.prototype.unionExtent=function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1])},t.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e)},t.prototype.isInExtentRange=function(t){return this._extent[0]<=t&&this._extent[1]>=t},t.prototype.isBlank=function(){return this._isBlank},t.prototype.setBlank=function(t){this._isBlank=t},t}();sa(nk,{registerWhenExtend:!0});var ik=function(){function t(t){this.categories=t.categories||[],this._needCollect=t.needCollect,this._deduplication=t.deduplication}return t.createByAxisModel=function(e){var n=e.option,i=n.data,r=i&&v(i,Hp);return new t({categories:r,needCollect:!r,deduplication:n.dedplication!==!1})},t.prototype.getOrdinal=function(t){return this._getOrCreateMap().get(t)},t.prototype.parseAndCollect=function(t){var e,n=this._needCollect;if("string"!=typeof t&&!n)return t;if(n&&!this._deduplication)return e=this.categories.length,this.categories[e]=t,e;var i=this._getOrCreateMap();return e=i.get(t),null==e&&(n?(e=this.categories.length,this.categories[e]=t,i.set(t,e)):e=0/0),e},t.prototype._getOrCreateMap=function(){return this._map||(this._map=Y(this.categories))},t}(),rk=oo,ok=function(t){function n(e){var n=t.call(this,e)||this;n.type="ordinal";var i=n.getSetting("ordinalMeta");return i||(i=new ik({})),T(i)&&(i=new ik({categories:v(i,function(t){return A(t)?t.value:t})})),n._ordinalMeta=i,n._categorySortInfo=[],n._extent=n.getSetting("extent")||[0,i.categories.length-1],n}return e(n,t),n.prototype.parse=function(t){return"string"==typeof t?this._ordinalMeta.getOrdinal(t):Math.round(t)},n.prototype.contain=function(t){return t=this.parse(t),Up(t,this._extent)&&null!=this._ordinalMeta.categories[t]},n.prototype.normalize=function(t){return t=this.getCategoryIndex(this.parse(t)),Yp(t,this._extent)},n.prototype.scale=function(t){return t=this.getCategoryIndex(t),Math.round(jp(t,this._extent))},n.prototype.getTicks=function(){for(var t=[],e=this._extent,n=e[0];n<=e[1];)t.push({value:this.getCategoryIndex(n)}),n++;return t},n.prototype.getMinorTicks=function(){},n.prototype.setCategorySortInfo=function(t){this._categorySortInfo=t},n.prototype.getCategorySortInfo=function(){return this._categorySortInfo},n.prototype.getCategoryIndex=function(t){return this._categorySortInfo.length?this._categorySortInfo[t].beforeSortIndex:t},n.prototype.getRawIndex=function(t){return this._categorySortInfo.length?this._categorySortInfo[t].ordinalNumber:t},n.prototype.getLabel=function(t){if(!this.isBlank()){var e=this.getRawIndex(t.value),n=this._ordinalMeta.categories[e];return null==n?"":n+""}},n.prototype.count=function(){return this._extent[1]-this._extent[0]+1},n.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},n.prototype.isInExtentRange=function(t){return t=this.getCategoryIndex(t),this._extent[0]<=t&&this._extent[1]>=t},n.prototype.getOrdinalMeta=function(){return this._ordinalMeta},n.prototype.niceTicks=function(){},n.prototype.niceExtent=function(){},n.type="ordinal",n}(nk);nk.registerClass(ok);var ak=oo,sk=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="interval",e._interval=0,e._intervalPrecision=2,e}return e(n,t),n.prototype.parse=function(t){return t},n.prototype.contain=function(t){return Up(t,this._extent)},n.prototype.normalize=function(t){return Yp(t,this._extent)},n.prototype.scale=function(t){return jp(t,this._extent)},n.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=parseFloat(t)),isNaN(e)||(n[1]=parseFloat(e))},n.prototype.unionExtent=function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1]),this.setExtent(e[0],e[1])},n.prototype.getInterval=function(){return this._interval},n.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=Gp(t)},n.prototype.getTicks=function(t){var e=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=[];if(!e)return o;var a=1e4;n[0]a)return[];var l=o.length?o[o.length-1].value:i[1];return n[1]>l&&o.push(t?{value:ak(l+e,r)}:{value:n[1]}),o},n.prototype.getMinorTicks=function(t){for(var e=this.getTicks(!0),n=[],i=this.getExtent(),r=1;rs;){var c=ak(a.value+(s+1)*h);c>i[0]&&cr&&(r=-r,i.reverse());var o=Vp(i,t,e,n);this._intervalPrecision=o.intervalPrecision,this._interval=o.interval,this._niceExtent=o.niceTickExtent}},n.prototype.niceExtent=function(t){var e=this._extent;if(e[0]===e[1])if(0!==e[0]){var n=e[0];t.fixMax?e[0]-=n/2:(e[1]+=n/2,e[0]-=n/2)}else e[1]=1;var i=e[1]-e[0];isFinite(i)||(e[0]=0,e[1]=1),this.niceTicks(t.splitNumber,t.minInterval,t.maxInterval);var r=this._interval;t.fixMin||(e[0]=ak(Math.floor(e[0]/r)*r)),t.fixMax||(e[1]=ak(Math.ceil(e[1]/r)*r))},n.type="interval",n}(nk);nk.registerClass(sk);var lk="__ec_stack_",uk=.5,hk="undefined"!=typeof Float32Array?Float32Array:Array,ck={seriesType:"bar",plan:mh(),reset:function(t){if(nf(t)&&rf(t)){var e=t.getData(),n=t.coordinateSystem,i=n.master.getRect(),r=n.getBaseAxis(),o=n.getOtherAxis(r),a=e.mapDimension(o.dim),s=e.mapDimension(r.dim),l=o.isHorizontal(),u=l?0:1,h=tf(Qp([t]),r,t).width;return h>uk||(h=uk),{progress:function(t,e){for(var c,p=t.count,f=new hk(2*p),d=new hk(2*p),g=new hk(p),y=[],v=[],m=0,_=0;null!=(c=t.next());)v[u]=e.get(a,c),v[1-u]=e.get(s,c),y=n.dataToPoint(v,null,y),d[m]=l?i.x+i.width:y[0],f[m++]=y[0],d[m]=l?y[1]:i.y+i.height,f[m++]=y[1],g[_++]=c;e.setLayout({largePoints:f,largeDataIndices:g,largeBackgroundPoints:d,barWidth:h,valueAxisStart:of(r,o,!1),backgroundStart:l?i.x:i.y,valueAxisHorizontal:l})}}}}},pk=function(t,e,n,i){for(;i>n;){var r=n+i>>>1; +t[r][1]n&&(this._approxInterval=n);var o=dk.length,a=Math.min(pk(dk,this._approxInterval,0,o),o-1);this._interval=dk[a][1],this._minLevelUnit=dk[Math.max(a-1,0)][0]},n.prototype.parse=function(t){return"number"==typeof t?t:+fo(t)},n.prototype.contain=function(t){return Up(this.parse(t),this._extent)},n.prototype.normalize=function(t){return Yp(this.parse(t),this._extent)},n.prototype.scale=function(t){return jp(t,this._extent)},n.type="time",n}(sk),dk=[["second",tS],["minute",eS],["hour",nS],["quarter-day",6*nS],["half-day",12*nS],["day",1.2*iS],["half-week",3.5*iS],["week",7*iS],["month",31*iS],["quarter",95*iS],["half-year",rS/2],["year",rS]];nk.registerClass(fk);var gk=nk.prototype,yk=sk.prototype,vk=lo,mk=oo,_k=Math.floor,xk=Math.ceil,wk=Math.pow,bk=Math.log,Sk=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="log",e.base=10,e._originalScale=new sk,e._interval=0,e}return e(n,t),n.prototype.getTicks=function(t){var e=this._originalScale,n=this._extent,i=e.getExtent(),r=yk.getTicks.call(this,t);return v(r,function(t){var e=t.value,r=oo(wk(this.base,e));return r=e===n[0]&&this._fixMin?df(r,i[0]):r,r=e===n[1]&&this._fixMax?df(r,i[1]):r,{value:r}},this)},n.prototype.setExtent=function(t,e){var n=this.base;t=bk(t)/bk(n),e=bk(e)/bk(n),yk.setExtent.call(this,t,e)},n.prototype.getExtent=function(){var t=this.base,e=gk.getExtent.call(this);e[0]=wk(t,e[0]),e[1]=wk(t,e[1]);var n=this._originalScale,i=n.getExtent();return this._fixMin&&(e[0]=df(e[0],i[0])),this._fixMax&&(e[1]=df(e[1],i[1])),e},n.prototype.unionExtent=function(t){this._originalScale.unionExtent(t);var e=this.base;t[0]=bk(t[0])/bk(e),t[1]=bk(t[1])/bk(e),gk.unionExtent.call(this,t)},n.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},n.prototype.niceTicks=function(t){t=t||10;var e=this._extent,n=e[1]-e[0];if(!(1/0===n||0>=n)){var i=go(n),r=t/n*i;for(.5>=r&&(i*=10);!isNaN(i)&&Math.abs(i)<1&&Math.abs(i)>0;)i*=10;var o=[oo(xk(e[0]/i)*i),oo(_k(e[1]/i)*i)];this._interval=i,this._niceExtent=o}},n.prototype.niceExtent=function(t){yk.niceExtent.call(this,t),this._fixMin=t.fixMin,this._fixMax=t.fixMax},n.prototype.parse=function(t){return t},n.prototype.contain=function(t){return t=bk(t)/bk(this.base),Up(t,this._extent)},n.prototype.normalize=function(t){return t=bk(t)/bk(this.base),Yp(t,this._extent)},n.prototype.scale=function(t){return t=jp(t,this._extent),wk(this.base,t)},n.type="log",n}(nk),Tk=Sk.prototype;Tk.getMinorTicks=yk.getMinorTicks,Tk.getLabel=yk.getLabel,nk.registerClass(Sk);var Mk=function(){function t(t,e,n){this._prepareParams(t,e,n)}return t.prototype._prepareParams=function(t,e,n){n[1]s&&(a=0/0,s=0/0);var h=B(a)||B(s)||t&&!i;this._needCrossZero&&(a>0&&s>0&&!l&&(a=0),0>a&&0>s&&!u&&(s=0));var c=this._determinedMin,p=this._determinedMax;return null!=c&&(a=c,l=!0),null!=p&&(s=p,u=!0),{min:a,max:s,minFixed:l,maxFixed:u,isBlank:h}},t.prototype.modifyDataMinMax=function(t,e){this[Ik[t]]=e},t.prototype.setDeterminedMinMax=function(t,e){var n=Ck[t];this[n]=e},t.prototype.freeze=function(){this.frozen=!0},t}(),Ck={min:"_determinedMin",max:"_determinedMax"},Ik={min:"_dataMin",max:"_dataMax"},kk=function(){function t(){}return t.prototype.getNeedCrossZero=function(){var t=this.option;return!t.scale},t.prototype.getCoordSysModel=function(){},t}(),Ak={isDimensionStacked:Ep,enableDataStack:Rp,getStackedDimension:Bp},Dk=(Object.freeze||Object)({createList:Df,getLayoutRect:kl,dataStack:Ak,createScale:Pf,mixinAxisModelCommonMethods:Lf,getECData:rb,createDimensions:Pp,createSymbol:Hc}),Pk=1e-8,Lk=function(){function t(t,e,n){if(this.name=t,this.geometries=e,n)n=[n[0],n[1]];else{var i=this.getBoundingRect();n=[i.x+i.width/2,i.y+i.height/2]}this.center=n}return t.prototype.getBoundingRect=function(){var t=this._rect;if(t)return t;for(var e=Number.MAX_VALUE,n=[e,e],i=[-e,-e],r=[],o=[],a=this.geometries,s=0;si;i++)if("polygon"===n[i].type){var o=n[i].exterior,a=n[i].interiors;if(Rf(o,t[0],t[1])){for(var s=0;s<(a?a.length:0);s++)if(Rf(a[s],t[0],t[1]))continue t;return!0}}return!1},t.prototype.transformTo=function(t,e,n,i){var r=this.getBoundingRect(),o=r.width/r.height;n?i||(i=n/o):n=o*i;for(var a=new rm(t,e,n,i),s=r.calculateTransform(a),l=this.geometries,u=0;u=n&&i>=t},t.prototype.containData=function(t){return this.scale.contain(t)},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.getPixelPrecision=function(t){return uo(t||this.scale.getExtent(),this._extent)},t.prototype.setExtent=function(t,e){var n=this._extent;n[0]=t,n[1]=e},t.prototype.dataToCoord=function(t,e){var n=this._extent,i=this.scale;return t=i.normalize(t),this.onBand&&"ordinal"===i.type&&(n=n.slice(),Qf(n,i.count())),io(t,Rk,n,e)},t.prototype.coordToData=function(t,e){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&(n=n.slice(),Qf(n,i.count()));var r=io(t,n,Rk,e);return this.scale.scale(r)},t.prototype.pointToData=function(){},t.prototype.getTicksCoords=function(t){t=t||{};var e=t.tickModel||this.getTickModel(),n=Ff(this,e),i=n.ticks,r=v(i,function(t){return{coord:this.dataToCoord("ordinal"===this.scale.type?this.scale.getRawIndex(t):t),tickValue:t}},this),o=e.get("alignWithLabel");return Jf(this,r,o,t.clamp),r},t.prototype.getMinorTicksCoords=function(){if("ordinal"===this.scale.type)return[];var t=this.model.getModel("minorTick"),e=t.get("splitNumber");e>0&&100>e||(e=5);var n=this.scale.getMinorTicks(e),i=v(n,function(t){return v(t,function(t){return{coord:this.dataToCoord(t),tickValue:t}},this)},this);return i},t.prototype.getViewLabels=function(){return Nf(this).labels},t.prototype.getLabelModel=function(){return this.model.getModel("axisLabel")},t.prototype.getTickModel=function(){return this.model.getModel("axisTick")},t.prototype.getBandWidth=function(){var t=this._extent,e=this.scale.getExtent(),n=e[1]-e[0]+(this.onBand?1:0);0===n&&(n=1);var i=Math.abs(t[1]-t[0]);return Math.abs(i)/n},t.prototype.calculateCategoryInterval=function(){return qf(this)},t}(),Bk=zf,zk={};y(["linearMap","round","asc","getPrecision","getPrecisionSafe","getPixelPrecision","getPercentWithPrecision","MAX_SAFE_INTEGER","remRadian","isRadianAroundZero","parseDate","quantity","quantityExponent","nice","quantile","reformIntervals","isNumeric","numericToNumber"],function(t){zk[t]=Uw[t]});var Nk={};y(["addCommas","toCamelCase","normalizeCssArray","encodeHTML","formatTpl","getTooltipMarker","formatTime","capitalFirst","truncateText","getTextRect"],function(t){Nk[t]=gS[t]});var Fk={parse:fo,format:$s},Hk={};y(["map","each","filter","indexOf","inherits","reduce","filter","bind","curry","isArray","isString","isObject","isFunction","extend","defaults","clone","merge"],function(t){Hk[t]=ev[t]});var Vk=["extendShape","extendPath","makePath","makeImage","mergePath","resizePath","createIcon","updateProps","initProps","getTransform","clipPointsByRect","clipRectByRect","registerShape","getShapeClass","Group","Image","Text","Circle","Ellipse","Sector","Ring","Polygon","Polyline","Rect","Line","BezierCurve","Arc","IncrementalDisplayable","CompoundPath","LinearGradient","RadialGradient","BoundingRect"],Gk={};y(Vk,function(t){Gk[t]=Ab[t]});var Wk=function(){function t(t){this.type="cartesian",this._dimList=[],this._axes={},this.name=t||""}return t.prototype.getAxis=function(t){return this._axes[t]},t.prototype.getAxes=function(){return v(this._dimList,function(t){return this._axes[t]},this)},t.prototype.getAxesByScale=function(t){return t=t.toLowerCase(),_(this.getAxes(),function(e){return e.scale.type===t})},t.prototype.addAxis=function(t){var e=t.dim;this._axes[e]=t,this._dimList.push(e)},t}(),Xk=["x","y"],Uk=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="cartesian2d",e.dimensions=Xk,e}return e(n,t),n.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var t=this.getAxis("x").scale,e=this.getAxis("y").scale;if(td(t)&&td(e)){var n=t.getExtent(),i=e.getExtent(),r=this.dataToPoint([n[0],i[0]]),o=this.dataToPoint([n[1],i[1]]),a=n[1]-n[0],s=i[1]-i[0];if(a&&s){var l=(o[0]-r[0])/a,u=(o[1]-r[1])/s,h=r[0]-n[0]*l,c=r[1]-i[0]*u,p=this._transform=[l,0,0,u,h,c];this._invTransform=Ue([],p)}}},n.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAxis("x")},n.prototype.containPoint=function(t){var e=this.getAxis("x"),n=this.getAxis("y");return e.contain(e.toLocalCoord(t[0]))&&n.contain(n.toLocalCoord(t[1]))},n.prototype.containData=function(t){return this.getAxis("x").containData(t[0])&&this.getAxis("y").containData(t[1])},n.prototype.dataToPoint=function(t,e,n){n=n||[];var i=t[0],r=t[1];if(this._transform&&null!=i&&isFinite(i)&&null!=r&&isFinite(r))return ge(n,t,this._transform);var o=this.getAxis("x"),a=this.getAxis("y");return n[0]=o.toGlobalCoord(o.dataToCoord(i)),n[1]=a.toGlobalCoord(a.dataToCoord(r)),n},n.prototype.clampData=function(t,e){var n=this.getAxis("x").scale,i=this.getAxis("y").scale,r=n.getExtent(),o=i.getExtent(),a=n.parse(t[0]),s=i.parse(t[1]);return e=e||[],e[0]=Math.min(Math.max(Math.min(r[0],r[1]),a),Math.max(r[0],r[1])),e[1]=Math.min(Math.max(Math.min(o[0],o[1]),s),Math.max(o[0],o[1])),e},n.prototype.pointToData=function(t,e){if(e=e||[],this._invTransform)return ge(e,t,this._invTransform);var n=this.getAxis("x"),i=this.getAxis("y");return e[0]=n.coordToData(n.toLocalCoord(t[0])),e[1]=i.coordToData(i.toLocalCoord(t[1])),e},n.prototype.getOtherAxis=function(t){return this.getAxis("x"===t.dim?"y":"x")},n.prototype.getArea=function(){var t=this.getAxis("x").getGlobalExtent(),e=this.getAxis("y").getGlobalExtent(),n=Math.min(t[0],t[1]),i=Math.min(e[0],e[1]),r=Math.max(t[0],t[1])-n,o=Math.max(e[0],e[1])-i;return new rm(n,i,r,o)},n}(Wk),Yk=function(t){function n(e,n,i,r,o){var a=t.call(this,e,n,i)||this;return a.index=0,a.type=r||"value",a.position=o||"bottom",a}return e(n,t),n.prototype.isHorizontal=function(){var t=this.position;return"top"===t||"bottom"===t},n.prototype.getGlobalExtent=function(t){var e=this.getExtent();return e[0]=this.toGlobalCoord(e[0]),e[1]=this.toGlobalCoord(e[1]),t&&e[0]>e[1]&&e.reverse(),e},n.prototype.pointToData=function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},n.prototype.setCategorySortInfo=function(t){return"category"!==this.type?!1:(this.model.option.categorySortInfo=t,void this.scale.setCategorySortInfo(t))},n}(Ek),jk=function(){function t(t,e,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=Xk,this._initCartesian(t,e,n),this.model=t}return t.prototype.getRect=function(){return this._rect},t.prototype.update=function(t,e){var n=this._axesMap;this._updateScale(t,this.model),y(n.x,function(t){_f(t.scale,t.model)}),y(n.y,function(t){_f(t.scale,t.model)});var i={};y(n.x,function(t){od(n,"y",t,i)}),y(n.y,function(t){od(n,"x",t,i)}),this.resize(this.model,e)},t.prototype.resize=function(t,e,n){function i(){y(s,function(t){var e=t.isHorizontal(),n=e?[0,a.width]:[0,a.height],i=t.inverse?1:0;t.setExtent(n[i],n[1-i]),sd(t,e?a.x:a.y)})}var r=t.getBoxLayoutParams(),o=!n&&t.get("containLabel"),a=kl(r,{width:e.getWidth(),height:e.getHeight()});this._rect=a;var s=this._axesList;i(),o&&(y(s,function(t){if(!t.model.get(["axisLabel","inside"])){var e=Tf(t);if(e){var n=t.isHorizontal()?"height":"width",i=t.model.get(["axisLabel","margin"]);a[n]-=e[n]+i,"top"===t.position?a.y+=e.height+i:"left"===t.position&&(a.x+=e.width+i)}}}),i()),y(this._coordsList,function(t){t.calcAffineTransform()})},t.prototype.getAxis=function(t,e){var n=this._axesMap[t];return null!=n?n[e||0]:void 0},t.prototype.getAxes=function(){return this._axesList.slice()},t.prototype.getCartesian=function(t,e){if(null!=t&&null!=e){var n="x"+t+"y"+e;return this._coordsMap[n]}A(t)&&(e=t.yAxisIndex,t=t.xAxisIndex);for(var i=0,r=this._coordsList;it&&(t=e),t},n.prototype.brushSelector=function(t,e,n){return n.rect(e.getItemLayout(t))},n.type="series.bar",n.dependencies=["grid","polar"],n.defaultOption=Gs(qk.defaultOption,{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1},select:{itemStyle:{borderColor:"#212121"}},realtimeSort:!1}),n}(qk);OT.registerClass(Zk);var Kk=function(){function t(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0}return t}(),$k=function(t){function n(e){var n=t.call(this,e)||this;return n.type="sausage",n}return e(n,t),n.prototype.getDefaultShape=function(){return new Kk},n.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r0||0,0),o=Math.max(e.r,0),a=.5*(o-r),s=r+a,l=e.startAngle,u=e.endAngle,h=e.clockwise,c=Math.cos(l),p=Math.sin(l),f=Math.cos(u),d=Math.sin(u),g=h?u-l<2*Math.PI:l-u<2*Math.PI;g&&(t.moveTo(c*r+n,p*r+i),t.arc(c*s+n,p*s+i,a,-Math.PI+l,l,!h)),t.arc(n,i,o,l,u,!h),t.moveTo(f*o+n,d*o+i),t.arc(f*s+n,d*s+i,a,u-2*Math.PI,u-Math.PI,!h),0!==r&&(t.arc(n,i,r,u,l,h),t.moveTo(c*r+n,d*r+i)),t.closePath()},n}(z_),Qk=["itemStyle","borderWidth"],Jk=["itemStyle","borderRadius"],tA=[0,0],eA=Math.max,nA=Math.min,iA=function(t){function n(){var e=t.call(this)||this;return e.type=n.type,e._isFirstFrame=!0,e}return e(n,t),n.prototype.render=function(t,e,n,i){this._model=t,this.removeOnRenderedListener(n),this._updateDrawMode(t);var r=t.get("coordinateSystem");("cartesian2d"===r||"polar"===r)&&(this._isLargeDraw?this._renderLarge(t,e,n):this._renderNormal(t,e,n,i))},n.prototype.incrementalPrepareRender=function(t){this._clear(),this._updateDrawMode(t),this._updateLargeClip(t)},n.prototype.incrementalRender=function(t,e){this._incrementalRenderLarge(t,e)},n.prototype._updateDrawMode=function(t){var e=t.pipelineContext.large;(null==this._isLargeDraw||e!==this._isLargeDraw)&&(this._isLargeDraw=e,this._clear())},n.prototype._renderNormal=function(t,e,n,i){function r(t){var e=aA[h.type](l,t),n=Td(h,o,e);return n.useStyle(_.getItemStyle()),"cartesian2d"===h.type&&n.setShape("r",x),w[t]=n,n}var o,a=this,s=this.group,l=t.getData(),u=this._data,h=t.coordinateSystem,c=h.getBaseAxis();"cartesian2d"===h.type?o=c.isHorizontal():"polar"===h.type&&(o="angle"===c.dim);var p=t.isAnimationEnabled()?t:null,f=c.model,d=t.get("realtimeSort");if(d&&l.count()){if(this._isFirstFrame)return this._initSort(l,o,c,n),void(this._isFirstFrame=!1);this._onRendered=function(){var t=function(t){var e=l.getItemGraphicEl(t);if(e){var n=e.shape;return(o?n.y+n.height:n.x+n.width)||0}return 0};a._updateSort(l,t,c,n)},n.getZr().on("rendered",this._onRendered)}var g=t.get("clip",!0)||d,y=dd(h,l);s.removeClipPath();var v=t.get("roundCap",!0),m=t.get("showBackground",!0),_=t.getModel("backgroundStyle"),x=_.get("borderRadius")||0,w=[],b=this._backgroundEls,S=i&&i.isInitSort,T=i&&"changeAxisOrder"===i.type;l.diff(u).add(function(e){var n=l.getItemModel(e),i=aA[h.type](l,e,n);if(m&&r(e),l.hasValue(e)){var a=!1;g&&(a=rA[h.type](y,i));var u=oA[h.type](t,l,e,i,o,p,c.model,!1,v);vd(u,l,e,n,i,t,o,"polar"===h.type),S?u.attr({shape:i}):d?gd(t,f,p,u,i,e,o,!1,!1):us(u,{shape:i},t,e),l.setItemGraphicEl(e,u),s.add(u),u.ignore=a}}).update(function(e,n){var i=l.getItemModel(e),a=aA[h.type](l,e,i);if(m){var M=void 0;0===b.length?M=r(n):(M=b[n],M.useStyle(_.getItemStyle()),"cartesian2d"===h.type&&M.setShape("r",x),w[e]=M);var C=aA[h.type](l,e),I=Sd(o,C,h);ls(M,{shape:I},p,e)}var k=u.getItemGraphicEl(n);if(!l.hasValue(e))return s.remove(k),void(k=null);var A=!1;g&&(A=rA[h.type](y,a),A&&s.remove(k)),k||(k=oA[h.type](t,l,e,a,o,p,c.model,!!k,v)),T||vd(k,l,e,i,a,t,o,"polar"===h.type),S?k.attr({shape:a}):d?gd(t,f,p,k,a,e,o,!0,T):ls(k,{shape:a},t,e,null),l.setItemGraphicEl(e,k),k.ignore=A,s.add(k)}).remove(function(e){var n=u.getItemGraphicEl(e);n&&ps(n,t,e)}).execute();var M=this._backgroundGroup||(this._backgroundGroup=new Z_);M.removeAll();for(var C=0;Cr)return!0;r=a}return!1},n.prototype._updateSort=function(t,e,n,i){var r=n.scale.getCategorySortInfo(),o=this._isDataOrderChanged(t,e,r);if(o)for(var a=this._dataSort(t,e),s=n.scale.getExtent(),l=s[0];ln&&(e.x+=e.width,e.width=-e.width),0>i&&(e.y+=e.height,e.height=-e.height);var r=eA(e.x,t.x),o=nA(e.x+e.width,t.x+t.width),a=eA(e.y,t.y),s=nA(e.y+e.height,t.y+t.height);e.x=r,e.y=a,e.width=o-r,e.height=s-a;var l=e.width<0||e.height<0;return 0>n&&(e.x+=e.width,e.width=-e.width),0>i&&(e.y+=e.height,e.height=-e.height),l},polar:function(t,e){var n=e.r0<=e.r?1:-1;if(0>n){var i=e.r;e.r=e.r0,e.r0=i}var r=nA(e.r,t.r),o=eA(e.r0,t.r0);e.r=r,e.r0=o;var a=0>r-o;if(0>n){var i=e.r;e.r=e.r0,e.r0=i}return a}},oA={cartesian2d:function(t,e,n,i,r,o){var a=new rx({shape:h({},i),z2:1});if(a.__dataIndex=n,a.name="item",o){var s=a.shape,l=r?"height":"width";s[l]=0}return a},polar:function(t,e,n,i,r,o,a,s,l){var u=i.startAngle0?1:-1,a=i.height>0?1:-1;return{x:i.x+o*r/2,y:i.y+a*r/2,width:i.width-o*r,height:i.height-a*r}},polar:function(t,e){var n=t.getItemLayout(e);return{cx:n.cx,cy:n.cy,r0:n.r0,r:n.r,startAngle:n.startAngle,endAngle:n.endAngle}}},sA=function(){function t(){}return t}(),lA=function(t){function n(e){var n=t.call(this,e)||this;return n.type="largeBar",n}return e(n,t),n.prototype.getDefaultShape=function(){return new sA},n.prototype.buildPath=function(t,e){for(var n=e.points,i=this.__startPoint,r=this.__baseDimIdx,o=0;o=0?n:null},30,!1);zT.registerClass(iA),lp({type:"changeAxisOrder",event:"changeAxisOrder",update:"update"},function(t,e){var n=t.componentType||"series";e.eachComponent({mainType:n,query:t},function(e){t.sortInfo&&e.axis.setCategorySortInfo(t.sortInfo)})});var hA={show:!0,zlevel:0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#6E7079",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#E0E6F1"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.2)","rgba(210,219,238,0.2)"]}}},cA=l({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},hA),pA=l({boundaryGap:[0,0],axisLine:{show:"auto"},axisTick:{show:"auto"},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:"#F4F7FD",width:1}}},hA),fA=l({scale:!0,splitNumber:6,axisLabel:{showMinLabel:!1,showMaxLabel:!1,rich:{primary:{fontWeight:"bold"}}},splitLine:{show:!1}},pA),dA=c({scale:!0,logBase:10},pA),gA={category:cA,value:pA,time:fA,log:dA},yA={value:1,category:1,time:1,log:1},vA=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e(n,t),n.prototype.getCoordSysModel=function(){return this.getReferringComponents("grid",Kw).models[0]},n.type="cartesian2dAxis",n}(wS);d(vA,kk);var mA={offset:0,categorySortInfo:[]};Md("x",vA,mA),Md("y",vA,mA);var _A=Math.PI,xA=function(){function t(t,e){this.group=new Z_,this.opt=e,this.axisModel=t,c(e,{labelOffset:0,nameDirection:1,tickDirection:1,labelDirection:1,silent:!0,handleAutoShown:function(){return!0}});var n=new Z_({x:e.position[0],y:e.position[1],rotation:e.rotation});n.updateTransform(),this._transformGroup=n}return t.prototype.hasBuilder=function(t){return!!wA[t]},t.prototype.add=function(t){wA[t](this.opt,this.axisModel,this.group,this._transformGroup)},t.prototype.getGroup=function(){return this.group},t.innerTextLayout=function(t,e,n){var i,r,o=co(e-t);return po(o)?(r=n>0?"top":"bottom",i="center"):po(o-_A)?(r=n>0?"bottom":"top",i="center"):(r="middle",i=o>0&&_A>o?n>0?"right":"left":n>0?"left":"right"),{rotation:o,textAlign:i,textVerticalAlign:r}},t.makeAxisEventDataBase=function(t){var e={componentType:t.mainType,componentIndex:t.componentIndex};return e[t.mainType+"Index"]=t.componentIndex,e},t.isLabelSilent=function(t){var e=t.get("tooltip");return t.get("silent")||!(t.get("triggerEvent")||e&&e.show)},t}(),wA={axisLine:function(t,e,n,i){var r=e.get(["axisLine","show"]);if("auto"===r&&t.handleAutoShown&&(r=t.handleAutoShown("axisLine")),r){var o=e.axis.getExtent(),a=i.transform,s=[o[0],0],l=[o[1],0];a&&(ge(s,s,a),ge(l,l,a));var u=h({lineCap:"round"},e.getModel(["axisLine","lineStyle"]).getLineStyle()),c=new ux({subPixelOptimize:!0,shape:{x1:s[0],y1:s[1],x2:l[0],y2:l[1]},style:u,strokeContainThreshold:t.strokeContainThreshold||5,silent:!0,z2:1});c.anid="line",n.add(c);var p=e.get(["axisLine","symbol"]),f=e.get(["axisLine","symbolSize"]),d=e.get(["axisLine","symbolOffset"])||0;if("number"==typeof d&&(d=[d,d]),null!=p){"string"==typeof p&&(p=[p,p]),("string"==typeof f||"number"==typeof f)&&(f=[f,f]);var g=f[0],v=f[1];y([{rotate:t.rotation+Math.PI/2,offset:d[0],r:0},{rotate:t.rotation-Math.PI/2,offset:d[1],r:Math.sqrt((s[0]-l[0])*(s[0]-l[0])+(s[1]-l[1])*(s[1]-l[1]))}],function(e,i){if("none"!==p[i]&&null!=p[i]){var r=Hc(p[i],-g/2,-v/2,g,v,u.stroke,!0),o=e.r+e.offset;r.attr({rotation:e.rotate,x:s[0]+o*Math.cos(t.rotation),y:s[1]-o*Math.sin(t.rotation),silent:!0,z2:11}),n.add(r)}})}}},axisTickLabel:function(t,e,n,i){var r=Od(n,i,e,t),o=Ed(n,i,e,t);kd(e,o,r),Rd(n,i,e,t.tickDirection)},axisName:function(t,e,n,i){var r=z(t.axisName,e.get("name"));if(r){var o,a=e.get("nameLocation"),s=t.nameDirection,l=e.getModel("nameTextStyle"),u=e.get("nameGap")||0,c=e.axis.getExtent(),p=c[0]>c[1]?-1:1,f=["start"===a?c[0]-p*u:"end"===a?c[1]+p*u:(c[0]+c[1])/2,Pd(a)?t.labelOffset+s*u:0],d=e.get("nameRotate");null!=d&&(d=d*_A/180);var g;Pd(a)?o=xA.innerTextLayout(t.rotation,null!=d?d:t.rotation,s):(o=Id(t.rotation,a,d||0,c),g=t.axisNameAvailableWidth,null!=g&&(g=Math.abs(g/Math.sin(o.rotation)),!isFinite(g)&&(g=null)));var y=l.getFont(),v=e.get("nameTruncate",!0)||{},m=v.ellipsis,_=z(t.nameTruncateMaxWidth,v.maxWidth,g),x=e.get("tooltip",!0),w=e.mainType,b={componentType:w,name:r,$vars:["name"]}; +b[w+"Index"]=e.componentIndex;var S=new $x({x:f[0],y:f[1],rotation:o.rotation,silent:xA.isLabelSilent(e),style:Ps(l,{text:r,font:y,overflow:"truncate",width:_,ellipsis:m,fill:l.getTextColor()||e.get(["axisLine","lineStyle","color"]),align:l.get("align")||o.textAlign,verticalAlign:l.get("verticalAlign")||o.textVerticalAlign}),z2:1});if(S.tooltip=x&&x.show?h({content:r,formatter:function(){return r},formatterParams:b},x):null,S.__fullText=r,S.anid="name",e.get("triggerEvent")){var T=xA.makeAxisEventDataBase(e);T.targetType="axisName",T.name=r,rb(S).eventData=T}i.add(S),S.updateTransform(),n.add(S),S.decomposeTransform()}}},bA={},SA=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type=n.type,e}return e(n,t),n.prototype.render=function(e,n,i){this.axisPointerClass&&Gd(e),t.prototype.render.apply(this,arguments),this._doUpdateAxisPointerClass(e,i,!0)},n.prototype.updateAxisPointer=function(t,e,n){this._doUpdateAxisPointerClass(t,n,!1)},n.prototype.remove=function(t,e){var n=this._axisPointer;n&&n.remove(e)},n.prototype.dispose=function(e,n){this._disposeAxisPointer(n),t.prototype.dispose.apply(this,arguments)},n.prototype._doUpdateAxisPointerClass=function(t,e,i){var r=n.getAxisPointerClass(this.axisPointerClass);if(r){var o=Xd(t);o?(this._axisPointer||(this._axisPointer=new r)).render(t,o,e,i):this._disposeAxisPointer(e)}},n.prototype._disposeAxisPointer=function(t){this._axisPointer&&this._axisPointer.dispose(t),this._axisPointer=null},n.registerAxisPointerClass=function(t,e){bA[t]=e},n.getAxisPointerClass=function(t){return t&&bA[t]},n.type="axis",n}(RT),TA=Uo(),MA=["axisLine","axisTickLabel","axisName"],CA=["splitArea","splitLine","minorSplitLine"],IA=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type=n.type,e.axisPointerClass="CartesianAxisPointer",e}return e(n,t),n.prototype.render=function(e,n,i,r){this.group.removeAll();var o=this._axisGroup;if(this._axisGroup=new Z_,this.group.add(this._axisGroup),e.get("show")){var a=e.getCoordSysModel(),s=ed(a,e),l=new xA(e,h({handleAutoShown:function(){for(var t=a.coordinateSystem.getCartesians(),n=0;ne&&(e=t[n]);return isFinite(e)?e:0/0},min:function(t){for(var e=1/0,n=0;n0&&pg(n[2*r-2],n[2*r-1]);r--);for(;r>i&&pg(n[2*i],n[2*i+1]);i++);}for(;r>i;)i+=fg(t,n,i,r,r,1,e.smooth,e.smoothMonotone,e.connectNulls)+1},n.prototype.getPointOn=function(t,e){this.path||(this.createPathProxy(),this.buildPath(this.path,this.shape));for(var n,i,r=this.path,o=r.data,a=C_.CMD,s="x"===e,l=[],u=0;u=v&&v>=0){var m=s?(p-i)*v+i:(c-n)*v+n;return s?[t,m]:[m,t]}n=c,i=p;break;case a.C:c=o[u++],p=o[u++],f=o[u++],d=o[u++],g=o[u++],y=o[u++];var _=s?gi(n,c,f,g,t,l):gi(i,p,d,y,t,l);if(_>0)for(var x=0;_>x;x++){var w=l[x];if(1>=w&&w>=0){var m=s?fi(i,p,d,y,w):fi(n,c,f,g,w);return s?[t,m]:[m,t]}}n=g,i=y}}},n}(z_),XA=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e(n,t),n}(GA),UA=function(t){function n(e){var n=t.call(this,e)||this;return n.type="ec-polygon",n}return e(n,t),n.prototype.getDefaultShape=function(){return new XA},n.prototype.buildPath=function(t,e){var n=e.points,i=e.stackedOnPoints,r=0,o=n.length/2,a=e.smoothMonotone;if(e.connectNulls){for(;o>0&&pg(n[2*o-2],n[2*o-1]);o--);for(;o>r&&pg(n[2*r],n[2*r+1]);r++);}for(;o>r;){var s=fg(t,n,r,o,o,1,e.smooth,a,e.connectNulls);fg(t,i,r+s-1,s,o,-1,e.stackedOnSmooth,a,e.connectNulls),r+=s+1,t.closePath()}},n}(z_),YA=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e(n,t),n.prototype.init=function(){var t=new Z_,e=new zA;this.group.add(e.group),this._symbolDraw=e,this._lineGroup=t},n.prototype.render=function(t,e,n){var i=this,r=t.coordinateSystem,o=this.group,a=t.getData(),s=t.getModel("lineStyle"),l=t.getModel("areaStyle"),u=a.getLayout("points")||[],h="polar"===r.type,p=this._coordSys,f=this._symbolDraw,d=this._polyline,g=this._polygon,y=this._lineGroup,v=t.get("animation"),m=!l.isEmpty(),_=l.get("origin"),x=ag(r,a,_),w=m&&mg(r,a,x),b=t.get("showSymbol"),S=b&&!h&&wg(t,a,r),T=this._data;T&&T.eachItemGraphicEl(function(t,e){t.__temp&&(o.remove(t),T.setItemGraphicEl(e,null))}),b||f.remove(),o.add(y);var M,C=h?!1:t.get("step");r&&r.getArea&&t.get("clip",!0)&&(M=r.getArea(),null!=M.width?(M.x-=.1,M.y-=.1,M.width+=.2,M.height+=.2):M.r0&&(M.r0-=.5,M.r+=.5)),this._clipShapeForSymbol=M,d&&p.type===r.type&&C===this._step?(m&&!g?g=this._newPolygon(u,w):g&&!m&&(y.remove(g),g=this._polygon=null),h||this._initOrUpdateEndLabel(t,r),y.setClipPath(Ig(this,r,!1,t)),b&&f.updateData(a,{isIgnore:S,clipShape:M,disableAnimation:!0,getSymbolPoint:function(t){return[u[2*t],u[2*t+1]]}}),dg(this._stackedOnPoints,w)&&dg(this._points,u)||(v?this._doUpdateAnimation(a,w,r,n,C,_):(C&&(u=_g(u,r,C),w&&(w=_g(w,r,C))),d.setShape({points:u}),g&&g.setShape({points:u,stackedOnPoints:w})))):(b&&f.updateData(a,{isIgnore:S,clipShape:M,disableAnimation:!0,getSymbolPoint:function(t){return[u[2*t],u[2*t+1]]}}),v&&this._initSymbolLabelAnimation(a,r,M),C&&(u=_g(u,r,C),w&&(w=_g(w,r,C))),d=this._newPolyline(u),m&&(g=this._newPolygon(u,w)),h||this._initOrUpdateEndLabel(t,r),y.setClipPath(Ig(this,r,!0,t)));var I=xg(a,r)||a.getVisual("style")[a.getVisual("drawType")],k=t.get(["emphasis","focus"]),A=t.get(["emphasis","blurScope"]);if(d.useStyle(c(s.getLineStyle(),{fill:"none",stroke:I,lineJoin:"bevel"})),Xa(d,t,"lineStyle"),d.style.lineWidth>0&&"bolder"===t.get(["emphasis","lineStyle","width"])){var D=d.getState("emphasis").style;D.lineWidth=d.style.lineWidth+1}rb(d).seriesIndex=t.seriesIndex,Ga(d,k,A);var P=vg(t.get("smooth")),L=t.get("smoothMonotone"),O=t.get("connectNulls");if(d.setShape({smooth:P,smoothMonotone:L,connectNulls:O}),g){var R=a.getCalculationInfo("stackedOnSeries"),E=0;g.useStyle(c(l.getAreaStyle(),{fill:I,opacity:.7,lineJoin:"bevel",decal:a.getVisual("style").decal})),R&&(E=vg(R.get("smooth"))),g.setShape({smooth:P,stackedOnSmooth:E,smoothMonotone:L,connectNulls:O}),Xa(g,t,"areaStyle"),rb(g).seriesIndex=t.seriesIndex,Ga(g,k,A)}var B=function(t){i._changePolyState(t)};a.eachItemGraphicEl(function(t){t&&(t.onHoverStateChange=B)}),this._polyline.onHoverStateChange=B,this._data=a,this._coordSys=r,this._stackedOnPoints=w,this._points=u,this._step=C,this._valueOrigin=_},n.prototype.dispose=function(){},n.prototype.highlight=function(t,e,n,i){var r=t.getData(),o=Xo(r,i);if(this._changePolyState("emphasis"),!(o instanceof Array)&&null!=o&&o>=0){var a=r.getLayout("points"),s=r.getItemGraphicEl(o);if(!s){var l=a[2*o],u=a[2*o+1];if(isNaN(l)||isNaN(u))return;if(this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(l,u))return;s=new BA(r,o),s.x=l,s.y=u,s.setZ(t.get("zlevel"),t.get("z")),s.__temp=!0,r.setItemGraphicEl(o,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else zT.prototype.highlight.call(this,t,e,n,i)},n.prototype.downplay=function(t,e,n,i){var r=t.getData(),o=Xo(r,i);if(this._changePolyState("normal"),null!=o&&o>=0){var a=r.getItemGraphicEl(o);a&&(a.__temp?(r.setItemGraphicEl(o,null),this.group.remove(a)):a.downplay())}else zT.prototype.downplay.call(this,t,e,n,i)},n.prototype._changePolyState=function(t){var e=this._polygon;xa(this._polyline,t),e&&xa(e,t)},n.prototype._newPolyline=function(t){var e=this._polyline;return e&&this._lineGroup.remove(e),e=new WA({shape:{points:t},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(e),this._polyline=e,e},n.prototype._newPolygon=function(t,e){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new UA({shape:{points:t,stackedOnPoints:e},segmentIgnoreThreshold:2}),this._lineGroup.add(n),this._polygon=n,n},n.prototype._initSymbolLabelAnimation=function(t,e,n){var i,r,o=e.getBaseAxis(),a=o.inverse;"cartesian2d"===e.type?(i=o.isHorizontal(),r=!1):"polar"===e.type&&(i="angle"===o.dim,r=!0);var s=t.hostModel,l=s.get("animationDuration");"function"==typeof l&&(l=l(null));var u=s.get("animationDelay")||0,h="function"==typeof u?u(null):u;t.eachItemGraphicEl(function(t,o){var s=t;if(s){var c=[t.x,t.y],p=void 0,f=void 0,d=void 0;if(r){var g=n,y=e.pointToCoord(c);i?(p=g.startAngle,f=g.endAngle,d=-y[1]/180*Math.PI):(p=g.r0,f=g.r,d=y[0])}else{var v=n;i?(p=v.x,f=v.x+v.width,d=t.x):(p=v.y+v.height,f=v.y,d=t.y)}var m=f===p?0:(d-p)/(f-p);a&&(m=1-m);var _="function"==typeof u?u(o):l*m+h,x=s.getSymbolPath(),w=x.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,delay:_}),w&&w.animateFrom({style:{opacity:0}},{duration:300,delay:_}),x.disableLabelAnimation=!0}})},n.prototype._initOrUpdateEndLabel=function(t,e){var n=t.getModel("endLabel");if(n.get("show")){var i=t.getData(),r=this._polyline,o=this._endLabel;o||(o=this._endLabel=new $x({z2:200}),o.ignoreClip=!0,r.setTextContent(this._endLabel),r.disableLabelAnimation=!0);var a=Tg(i.getLayout("points"));a>=0&&As(o,Ds(t,"endLabel"),{labelFetcher:t,labelDataIndex:a,defaultText:function(t,e,n){return n?fd(i,n):pd(i,t)},enableTextSetter:!0},kg(n,e))}else this._endLabel&&(this._polyline.removeTextContent(),this._endLabel=null)},n.prototype._endLabelOnDuring=function(t,e,n,i,r,o,a){var s=this._endLabel,l=this._polyline;if(s){1>t&&null==i.originalX&&(i.originalX=s.x,i.originalY=s.y);var u=n.getLayout("points"),h=n.hostModel,c=h.get("connectNulls"),p=o.get("precision"),f=a.getBaseAxis(),d=f.isHorizontal(),g=f.inverse,y=e.shape,v=g?d?y.x:y.y+y.height:d?y.x+y.width:y.y,m=d?"x":"y",_=Cg(u,v,m),x=_.range,w=x[1]-x[0],b=void 0;if(w>=1){if(w>1&&!c){var S=Mg(u,x[0]);s.attr({x:S[0],y:S[1]}),r&&(b=h.getRawValue(x[0]))}else{var S=l.getPointOn(v,m);S&&s.attr({x:S[0],y:S[1]});var T=h.getRawValue(x[0]),M=h.getRawValue(x[1]);r&&(b=$o(n,p,T,M,_.t))}i.lastFrameIndex=x[0]}else{var C=1===t||i.lastFrameIndex>0?x[0]:0,S=Mg(u,C);r&&(b=h.getRawValue(C)),s.attr({x:S[0],y:S[1]})}r&&Rb(s).setLabelText(b)}},n.prototype._doUpdateAnimation=function(t,e,n,i,r,o){var a=this._polyline,s=this._polygon,l=t.hostModel,u=cg(this._data,t,this._stackedOnPoints,e,this._coordSys,n,this._valueOrigin,o),h=u.current,c=u.stackedOnCurrent,p=u.next,f=u.stackedOnNext;if(r&&(h=_g(u.current,n,r),c=_g(u.stackedOnCurrent,n,r),p=_g(u.next,n,r),f=_g(u.stackedOnNext,n,r)),yg(h,p)>3e3||s&&yg(c,f)>3e3)return a.setShape({points:p}),void(s&&s.setShape({points:p,stackedOnPoints:f}));a.shape.__points=u.current,a.shape.points=h;var d={shape:{points:p}};u.current!==h&&(d.shape.__points=u.next),a.stopAnimation(),ls(a,d,l),s&&(s.setShape({points:h,stackedOnPoints:c}),s.stopAnimation(),ls(s,{shape:{stackedOnPoints:f}},l),a.shape.points!==s.shape.points&&(s.shape.points=a.shape.points));for(var g=[],y=u.status,v=0;v=0},n.prototype.getOrient=function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},n.type="legend.plain",n.dependencies=["series"],n.defaultOption={zlevel:0,z:4,show:!0,orient:"horizontal",left:"center",top:0,align:"auto",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemGap:10,itemWidth:25,itemHeight:14,inactiveColor:"#ccc",inactiveBorderColor:"#ccc",itemStyle:{borderWidth:0},textStyle:{color:"#333"},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:" sans-serif",color:"#666",borderWidth:1,borderColor:"#666"},emphasis:{selectorLabel:{show:!0,color:"#eee",backgroundColor:"#666"}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1}},n}(wS);wS.registerClass(KA),lp("legendToggleSelect","legendselectchanged",S(Dg,"toggleSelected")),lp("legendAllSelect","legendselectall",S(Dg,"allSelect")),lp("legendInverseSelect","legendinverseselect",S(Dg,"inverseSelect")),lp("legendSelect","legendselected",S(Dg,"select")),lp("legendUnSelect","legendunselected",S(Dg,"unSelect"));var $A=S,QA=y,JA=Z_,tD=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type=n.type,e.newlineDisabled=!1,e}return e(n,t),n.prototype.init=function(){this.group.add(this._contentGroup=new JA),this.group.add(this._selectorGroup=new JA),this._isFirstRender=!0},n.prototype.getContentGroup=function(){return this._contentGroup},n.prototype.getSelectorGroup=function(){return this._selectorGroup},n.prototype.render=function(t,e,n){var i=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),t.get("show",!0)){var r=t.get("align"),o=t.get("orient");r&&"auto"!==r||(r="right"===t.get("left")&&"vertical"===o?"right":"left");var a=t.get("selector",!0),s=t.get("selectorPosition",!0);!a||s&&"auto"!==s||(s="horizontal"===o?"end":"start"),this.renderInner(r,t,e,n,a,o,s);var l=t.getBoxLayoutParams(),u={width:n.getWidth(),height:n.getHeight()},h=t.get("padding"),p=kl(l,u,h),f=this.layoutInner(t,r,p,i,a,s),d=kl(c({width:f.width,height:f.height},l),u,h);this.group.x=d.x-f.x,this.group.y=d.y-f.y,this.group.markRedraw(),this.group.add(this._backgroundEl=Pg(f,t))}},n.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},n.prototype.renderInner=function(t,e,n,i,r,o,a){var s=this.getContentGroup(),l=Y(),u=e.get("selectedMode"),h=[];n.eachRawSeries(function(t){!t.get("legendHoverLink")&&h.push(t.id)}),QA(e.getData(),function(r,o){var a=r.get("name");if(!this.newlineDisabled&&(""===a||"\n"===a)){var c=new JA;return c.newline=!0,void s.add(c)}var p=n.getSeriesByName(a)[0];if(!l.get(a))if(p){var f=p.getData(),d=f.getVisual("style"),g=d[f.getVisual("drawType")]||d.fill,y=d.stroke,v=d.decal,m=f.getVisual("legendSymbol")||"roundRect",_=f.getVisual("symbol"),x=this._createItem(a,o,r,e,m,_,t,g,y,v,u);x.on("click",$A(Og,a,null,i,h)).on("mouseover",$A(Eg,p.name,null,i,h)).on("mouseout",$A(Bg,p.name,null,i,h)),l.set(a,!0)}else n.eachRawSeries(function(n){if(!l.get(a)&&n.legendVisualProvider){var s=n.legendVisualProvider;if(!s.containName(a))return;var c=s.indexOfName(a),p=s.getItemVisual(c,"style"),f=p.stroke,d=p.decal,g=p.fill,y=on(p.fill);y&&0===y[3]&&(y[3]=.2,g=dn(y,"rgba"));var v="roundRect",m=this._createItem(a,o,r,e,v,null,t,g,f,d,u);m.on("click",$A(Og,null,a,i,h)).on("mouseover",$A(Eg,null,a,i,h)).on("mouseout",$A(Bg,null,a,i,h)),l.set(a,!0)}},this)},this),r&&this._createSelector(r,e,i,o,a)},n.prototype._createSelector=function(t,e,n){var i=this.getSelectorGroup();QA(t,function(t){var r=t.type,o=new $x({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===r?"legendAllSelect":"legendInverseSelect"})}});i.add(o);var a=e.getModel("selectorLabel"),s=e.getModel(["emphasis","selectorLabel"]);As(o,{normal:a,emphasis:s},{defaultText:t.title}),Ga(o)})},n.prototype._createItem=function(t,e,n,i,r,o,a,s,l,u,c){var p=i.get("itemWidth"),f=i.get("itemHeight"),d=i.get("inactiveColor"),g=i.get("inactiveBorderColor"),y=i.get("symbolKeepAspect"),v=i.getModel("itemStyle"),m=i.isSelected(t),_=new JA,x=n.getModel("textStyle"),w=n.get("icon"),b=n.getModel("tooltip"),S=b.parentModel;r=w||r;var T=Hc(r,0,0,p,f,m?s:d,null==y?!0:y);if(_.add(Lg(T,r,v,l,g,u,m)),!w&&o&&(o!==r||"none"===o)){var M=.8*f;"none"===o&&(o="circle");var C=Hc(o,(p-M)/2,(f-M)/2,M,M,m?s:d,null==y?!0:y);_.add(Lg(C,o,v,l,g,u,m))}var I="left"===a?p+5:-5,k=a,A=i.get("formatter"),D=t;"string"==typeof A&&A?D=A.replace("{name}",null!=t?t:""):"function"==typeof A&&(D=A(t)),_.add(new $x({style:Ps(x,{text:D,x:I,y:f/2,fill:m?x.getTextColor():d,align:k,verticalAlign:"middle"})}));var P=new rx({shape:_.getBoundingRect(),invisible:!0});if(b.get("show")){var L={componentType:"legend",legendIndex:i.componentIndex,name:t,$vars:["name"]};P.tooltip=h({content:t,formatter:S.get("formatter",!0)||function(t){return t.name},formatterParams:L},b.option)}return _.add(P),_.eachChild(function(t){t.silent=!0}),P.silent=!c,this.getContentGroup().add(_),Ga(_),_.__legendDataIndex=e,_},n.prototype.layoutInner=function(t,e,n,i,r,o){var a=this.getContentGroup(),s=this.getSelectorGroup();_S(t.get("orient"),a,t.get("itemGap"),n.width,n.height);var l=a.getBoundingRect(),u=[-l.x,-l.y];if(s.markRedraw(),a.markRedraw(),r){_S("horizontal",s,t.get("selectorItemGap",!0));var h=s.getBoundingRect(),c=[-h.x,-h.y],p=t.get("selectorButtonGap",!0),f=t.getOrient().index,d=0===f?"width":"height",g=0===f?"height":"width",y=0===f?"y":"x";"end"===o?c[f]+=l[d]+p:u[f]+=h[d]+p,c[1-f]+=l[g]/2-h[g]/2,s.x=c[0],s.y=c[1],a.x=u[0],a.y=u[1];var v={x:0,y:0};return v[d]=l[d]+p+h[d],v[g]=Math.max(l[g],h[g]),v[y]=Math.min(0,h[y]+c[1-f]),v}return a.x=u[0],a.y=u[1],this.group.getBoundingRect()},n.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},n.type="legend.plain",n}(RT);RT.registerClass(tD),op(IC.PROCESSOR.SERIES_FILTER,zg),wS.registerSubTypeDefaulter("legend",function(){return"plain"});var eD=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type=n.type,e}return e(n,t),n.prototype.setScrollDataIndex=function(t){this.option.scrollDataIndex=t +},n.prototype.init=function(e,n,i){var r=Pl(e);t.prototype.init.call(this,e,n,i),Ng(this,e,r)},n.prototype.mergeOption=function(e,n){t.prototype.mergeOption.call(this,e,n),Ng(this,this.option,e)},n.type="legend.scroll",n.defaultOption=Gs(KA.defaultOption,{scrollDataIndex:0,pageButtonItemGap:5,pageButtonGap:null,pageButtonPosition:"end",pageFormatter:"{current}/{total}",pageIcons:{horizontal:["M0,0L12,-10L12,10z","M0,0L-12,-10L-12,10z"],vertical:["M0,0L20,0L10,-20z","M0,0L20,0L10,20z"]},pageIconColor:"#2f4554",pageIconInactiveColor:"#aaa",pageIconSize:15,pageTextStyle:{color:"#333"},animationDurationUpdate:800}),n}(KA);wS.registerClass(eD);var nD=Z_,iD=["width","height"],rD=["x","y"],oD=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type=n.type,e.newlineDisabled=!0,e._currentIndex=0,e}return e(n,t),n.prototype.init=function(){t.prototype.init.call(this),this.group.add(this._containerGroup=new nD),this._containerGroup.add(this.getContentGroup()),this.group.add(this._controllerGroup=new nD)},n.prototype.resetInner=function(){t.prototype.resetInner.call(this),this._controllerGroup.removeAll(),this._containerGroup.removeClipPath(),this._containerGroup.__rectSize=null},n.prototype.renderInner=function(e,n,i,r,o,a,s){function l(t,e){var i=t+"DataIndex",o=bs(n.get("pageIcons",!0)[n.getOrient().name][e],{onclick:Qy(u._pageGo,u,i,n,r)},{x:-p[0]/2,y:-p[1]/2,width:p[0],height:p[1]});o.name=t,h.add(o)}var u=this;t.prototype.renderInner.call(this,e,n,i,r,o,a,s);var h=this._controllerGroup,c=n.get("pageIconSize",!0),p=T(c)?c:[c,c];l("pagePrev",0);var f=n.getModel("pageTextStyle");h.add(new $x({name:"pageText",style:{text:"xx/xx",fill:f.getTextColor(),font:f.getFont(),verticalAlign:"middle",align:"center"},silent:!0})),l("pageNext",1)},n.prototype.layoutInner=function(t,e,n,i,r,o){var a=this.getSelectorGroup(),l=t.getOrient().index,u=iD[l],h=rD[l],c=iD[1-l],p=rD[1-l];r&&_S("horizontal",a,t.get("selectorItemGap",!0));var f=t.get("selectorButtonGap",!0),d=a.getBoundingRect(),g=[-d.x,-d.y],y=s(n);r&&(y[u]=n[u]-d[u]-f);var v=this._layoutContentAndController(t,i,y,l,u,c,p,h);if(r){if("end"===o)g[l]+=v[u]+f;else{var m=d[u]+f;g[l]-=m,v[h]-=m}v[u]+=d[u]+f,g[1-l]+=v[p]+v[c]/2-d[c]/2,v[c]=Math.max(v[c],d[c]),v[p]=Math.min(v[p],d[p]+g[1-l]),a.x=g[0],a.y=g[1],a.markRedraw()}return v},n.prototype._layoutContentAndController=function(t,e,n,i,r,o,a,s){var l=this.getContentGroup(),u=this._containerGroup,h=this._controllerGroup;_S(t.get("orient"),l,t.get("itemGap"),i?n.width:null,i?null:n.height),_S("horizontal",h,t.get("pageButtonItemGap",!0));var c=l.getBoundingRect(),p=h.getBoundingRect(),f=this._showController=c[r]>n[r],d=[-c.x,-c.y];e||(d[i]=l[s]);var g=[0,0],y=[-p.x,-p.y],v=N(t.get("pageButtonGap",!0),t.get("itemGap",!0));if(f){var m=t.get("pageButtonPosition",!0);"end"===m?y[i]+=n[r]-p[r]:g[i]+=p[r]+v}y[1-i]+=c[o]/2-p[o]/2,l.setPosition(d),u.setPosition(g),h.setPosition(y);var _={x:0,y:0};if(_[r]=f?n[r]:c[r],_[o]=Math.max(c[o],p[o]),_[a]=Math.min(0,p[a]+y[1-i]),u.__rectSize=n[r],f){var x={x:0,y:0};x[r]=Math.max(n[r]-p[r]-v,0),x[o]=_[o],u.setClipPath(new rx({shape:x})),u.__rectSize=x[r]}else h.eachChild(function(t){t.attr({invisible:!0,silent:!0})});var w=this._getPageInfo(t);return null!=w.pageIndex&&ls(l,{x:w.contentPosition[0],y:w.contentPosition[1]},f?t:null),this._updatePageInfoView(t,w),_},n.prototype._pageGo=function(t,e,n){var i=this._getPageInfo(e)[t];null!=i&&n.dispatchAction({type:"legendScroll",scrollDataIndex:i,legendId:e.id})},n.prototype._updatePageInfoView=function(t,e){var n=this._controllerGroup;y(["pagePrev","pageNext"],function(i){var r=i+"DataIndex",o=null!=e[r],a=n.childOfName(i);a&&(a.setStyle("fill",o?t.get("pageIconColor",!0):t.get("pageIconInactiveColor",!0)),a.cursor=o?"pointer":"default")});var i=n.childOfName("pageText"),r=t.get("pageFormatter"),o=e.pageIndex,a=null!=o?o+1:0,s=e.pageCount;i&&r&&i.setStyle("text",C(r)?r.replace("{current}",null==a?"":a+"").replace("{total}",null==s?"":s+""):r({current:a,total:s}))},n.prototype._getPageInfo=function(t){function e(t){if(t){var e=t.getBoundingRect(),n=e[l]+t[l];return{s:n,e:n+e[s],i:t.__legendDataIndex}}}function n(t,e){return t.e>=e&&t.s<=e+o}var i=t.get("scrollDataIndex",!0),r=this.getContentGroup(),o=this._containerGroup.__rectSize,a=t.getOrient().index,s=iD[a],l=rD[a],u=this._findTargetItemIndex(i),h=r.children(),c=h[u],p=h.length,f=p?1:0,d={contentPosition:[r.x,r.y],pageCount:f,pageIndex:f-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!c)return d;var g=e(c);d.contentPosition[a]=-g.s;for(var y=u+1,v=g,m=g,_=null;p>=y;++y)_=e(h[y]),(!_&&m.e>v.s+o||_&&!n(_,v.s))&&(v=m.i>v.i?m:_,v&&(null==d.pageNextDataIndex&&(d.pageNextDataIndex=v.i),++d.pageCount)),m=_;for(var y=u-1,v=g,m=g,_=null;y>=-1;--y)_=e(h[y]),_&&n(m,_.s)||!(v.i=0)&&n({type:"updateAxisPointer",currTrigger:t,x:e&&e.offsetX,y:e&&e.offsetY})})},n.prototype.remove=function(t,e){iy("axisPointer",e)},n.prototype.dispose=function(t,e){iy("axisPointer",e)},n.type="axisPointer",n}(RT);RT.registerClass(uD);var hD=Uo(),cD=s,pD=Qy,fD=function(){function t(){this._dragging=!1,this.animationThreshold=15}return t.prototype.render=function(t,e,n,i){var r=e.get("value"),o=e.get("status");if(this._axisModel=t,this._axisPointerModel=e,this._api=n,i||this._lastValue!==r||this._lastStatus!==o){this._lastValue=r,this._lastStatus=o;var a=this._group,s=this._handle;if(!o||"hide"===o)return a&&a.hide(),void(s&&s.hide());a&&a.show(),s&&s.show();var l={};this.makeElOption(l,r,t,e,n);var u=l.graphicKey;u!==this._lastGraphicKey&&this.clear(n),this._lastGraphicKey=u;var h=this._moveAnimation=this.determineAnimation(t,e);if(a){var c=S(ry,e,h);this.updatePointerEl(a,l,c),this.updateLabelEl(a,l,c,e)}else a=this._group=new Z_,this.createPointerEl(a,l,t,e),this.createLabelEl(a,l,t,e),n.getZr().add(a);ly(a,e,!0),this._renderHandle(r)}},t.prototype.remove=function(t){this.clear(t)},t.prototype.dispose=function(t){this.clear(t)},t.prototype.determineAnimation=function(t,e){var n=e.get("animation"),i=t.axis,r="category"===i.type,o=e.get("snap");if(!o&&!r)return!1;if("auto"===n||null==n){var a=this.animationThreshold;if(r&&i.getBandWidth()>a)return!0;if(o){var s=Wd(t).seriesDataCount,l=i.getExtent();return Math.abs(l[0]-l[1])/s>a}return!1}return n===!0},t.prototype.makeElOption=function(){},t.prototype.createPointerEl=function(t,e){var n=e.pointer;if(n){var i=hD(t).pointerEl=new Ab[n.type](cD(e.pointer));t.add(i)}},t.prototype.createLabelEl=function(t,e,n,i){if(e.label){var r=hD(t).labelEl=new $x(cD(e.label));t.add(r),ay(r,i)}},t.prototype.updatePointerEl=function(t,e,n){var i=hD(t).pointerEl;i&&e.pointer&&(i.setStyle(e.pointer.style),n(i,{shape:e.pointer.shape}))},t.prototype.updateLabelEl=function(t,e,n,i){var r=hD(t).labelEl;r&&(r.setStyle(e.label.style),n(r,{x:e.label.x,y:e.label.y}),ay(r,i))},t.prototype._renderHandle=function(t){if(!this._dragging&&this.updateHandleTransform){var e=this._axisPointerModel,n=this._api.getZr(),i=this._handle,r=e.getModel("handle"),o=e.get("status");if(!r.get("show")||!o||"hide"===o)return i&&n.remove(i),void(this._handle=null);var a;this._handle||(a=!0,i=this._handle=bs(r.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){yv(t.event)},onmousedown:pD(this._onHandleDragMove,this,0,0),drift:pD(this._onHandleDragMove,this),ondragend:pD(this._onHandleDragEnd,this)}),n.add(i)),ly(i,e,!1),i.setStyle(r.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var s=r.get("size");T(s)||(s=[s,s]),i.scaleX=s[0]/2,i.scaleY=s[1]/2,Th(this,"_doDispatchAxisPointer",r.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,a)}},t.prototype._moveHandleToValue=function(t,e){ry(this._axisPointerModel,!e&&this._moveAnimation,this._handle,sy(this.getHandleTransform(t,this._axisModel,this._axisPointerModel)))},t.prototype._onHandleDragMove=function(t,e){var n=this._handle;if(n){this._dragging=!0;var i=this.updateHandleTransform(sy(n),[t,e],this._axisModel,this._axisPointerModel);this._payloadInfo=i,n.stopAnimation(),n.attr(sy(i)),hD(n).lastProp=null,this._doDispatchAxisPointer()}},t.prototype._doDispatchAxisPointer=function(){var t=this._handle;if(t){var e=this._payloadInfo,n=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:e.cursorPoint[0],y:e.cursorPoint[1],tooltipOption:e.tooltipOption,axesInfo:[{axisDim:n.axis.dim,axisIndex:n.componentIndex}]})}},t.prototype._onHandleDragEnd=function(){this._dragging=!1;var t=this._handle;if(t){var e=this._axisPointerModel.get("value");this._moveHandleToValue(e),this._api.dispatchAction({type:"hideTip"})}},t.prototype.clear=function(t){this._lastValue=null,this._lastStatus=null;var e=t.getZr(),n=this._group,i=this._handle;e&&n&&(this._lastGraphicKey=null,n&&e.remove(n),i&&e.remove(i),this._group=null,this._handle=null,this._payloadInfo=null)},t.prototype.doClear=function(){},t.prototype.buildLabel=function(t,e,n){return n=n||0,{x:t[n],y:t[1-n],width:e[n],height:e[1-n]}},t}(),dD=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return e(n,t),n.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis,a=o.grid,s=i.get("type"),l=vy(a,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(e,!0));if(s&&"none"!==s){var h=uy(i),c=gD[s](o,u,l);c.style=h,t.graphicKey=c.type,t.pointer=c}var p=ed(a.model,n);dy(e,t,p,n,i,r)},n.prototype.getHandleTransform=function(t,e,n){var i=ed(e.axis.grid.model,e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=fy(e.axis,t,i);return{x:r[0],y:r[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},n.prototype.updateHandleTransform=function(t,e,n){var i=n.axis,r=i.grid,o=i.getGlobalExtent(!0),a=vy(r,i).getOtherAxis(i).getGlobalExtent(),s="x"===i.dim?0:1,l=[t.x,t.y];l[s]+=e[s],l[s]=Math.min(o[1],l[s]),l[s]=Math.max(o[0],l[s]);var u=(a[1]+a[0])/2,h=[u,u];h[s]=l[s];var c=[{verticalAlign:"middle"},{align:"center"}];return{x:l[0],y:l[1],rotation:t.rotation,cursorPoint:h,tooltipOption:c[s]}},n}(fD),gD={line:function(t,e,n){var i=gy([e,n[0]],[e,n[1]],my(t));return{type:"Line",subPixelOptimize:!0,shape:i}},shadow:function(t,e,n){var i=Math.max(1,t.getBandWidth()),r=n[1]-n[0];return{type:"Rect",shape:yy([e-i/2,n[0]],[i,r],my(t))}}};SA.registerAxisPointerClass("CartesianAxisPointer",dD);var yD=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type=n.type,e}return e(n,t),n.type="axisPointer",n.defaultOption={show:"auto",zlevel:0,z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#B9BEC9",width:1,type:"dashed"},shadowStyle:{color:"rgba(210,219,238,0.2)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,borderRadius:3},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}},n}(wS);wS.registerClass(yD),rp(function(t){if(t){(!t.axisPointer||0===t.axisPointer.length)&&(t.axisPointer={});var e=t.axisPointer.link;e&&!T(e)&&(t.axisPointer.link=[e])}}),op(IC.PROCESSOR.STATISTIC,function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=Bd(t,e)}),lp({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},Hg);var vD=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.type=n.type,e}return e(n,t),n.type="tooltip",n.dependencies=["axisPointer"],n.defaultOption={zlevel:0,z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,displayMode:"single",renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,enterable:!1,backgroundColor:"#fff",shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderColor:"#333",borderRadius:4,borderWidth:1,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:"#999",width:1,type:"dashed",textStyle:{}}},textStyle:{color:"#666",fontSize:14}},n}(wS);wS.registerClass(vD);var mD=["-ms-","-moz-","-o-","-webkit-",""],_D="position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;",xD=function(){function t(t,e,n){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._firstShow=!0,this._longHide=!0,Ny.wxa)return null;var i=document.createElement("div");i.domBelongToZr=!0,this.el=i;var r=this._zr=e.getZr(),o=this._appendToBody=n&&n.appendToBody;My(this._styleCoord,r,o,e.getWidth()/2,e.getHeight()/2),o?document.body.appendChild(i):t.appendChild(i),this._container=t;var a=this;i.onmouseenter=function(){a._enterable&&(clearTimeout(a._hideTimeout),a._show=!0),a._inContent=!0},i.onmousemove=function(t){if(t=t||window.event,!a._enterable){var e=r.handler,n=r.painter.getViewportRoot();ke(n,t,!0),e.dispatch("mousemove",t)}},i.onmouseleave=function(){a._inContent=!1,a._enterable&&a._show&&a.hideLater(a._hideDelay)}}return t.prototype.update=function(t){var e=this._container,n=e.currentStyle||document.defaultView.getComputedStyle(e),i=e.style;"absolute"!==i.position&&"absolute"!==n.position&&(i.position="relative");var r=t.get("alwaysShowContent");r&&this._moveIfResized(),this.el.className=t.get("className")||""},t.prototype.show=function(t,e){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,i=this._styleCoord,r=n.offsetHeight/2;e=Ml(e),n.style.cssText=_D+Ty(t,!this._firstShow,this._longHide)+";left:"+i[0]+"px;top:"+(i[1]-r)+"px;"+("border-color: "+e+";")+(t.get("extraCssText")||""),n.style.display=n.innerHTML?"block":"none",n.style.pointerEvents=this._enterable?"auto":"none",this._show=!0,this._firstShow=!1,this._longHide=!1},t.prototype.setContent=function(t,e,n,i,r){if(null!=t){var o=this.el;if(C(r)&&"item"===n.get("trigger")&&!_y(n)&&(t+=wy(n.get("backgroundColor"),i,r)),C(t))o.innerHTML=t;else if(t){o.innerHTML="",T(t)||(t=[t]);for(var a=0;a=0?this._tryShow(n,i):"leave"===t&&this._hide(i))},this))},n.prototype._keepShow=function(){var t=this._tooltipModel,e=this._ecModel,n=this._api;if(null!=this._lastX&&null!=this._lastY&&"none"!==t.get("triggerOn")){var i=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!n.isDisposed()&&i.manuallyShowTip(t,e,n,{x:i._lastX,y:i._lastY,dataByCoordSys:i._lastDataByCoordSys})})}},n.prototype.manuallyShowTip=function(t,e,n,i){if(i.from!==this.uid&&!Ny.node){var r=Dy(i,n);this._ticket="";var o=i.dataByCoordSys;if(i.tooltip&&null!=i.x&&null!=i.y){var a=MD;a.x=i.x,a.y=i.y,a.update(),a.tooltip=i.tooltip,this._tryShow({offsetX:i.x,offsetY:i.y,target:a},r)}else if(o)this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,dataByCoordSys:o,tooltipOption:i.tooltipOption},r);else if(null!=i.seriesIndex){if(this._manuallyAxisShowTip(t,e,n,i))return;var s=Fg(i,e),l=s.point[0],u=s.point[1];null!=l&&null!=u&&this._tryShow({offsetX:l,offsetY:u,position:i.position,target:s.el},r)}else null!=i.x&&null!=i.y&&(n.dispatchAction({type:"updateAxisPointer",x:i.x,y:i.y}),this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,target:n.getZr().findHover(i.x,i.y).target},r))}},n.prototype.manuallyHideTip=function(t,e,n,i){var r=this._tooltipContent;!this._alwaysShowContent&&this._tooltipModel&&r.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,i.from!==this.uid&&this._hide(Dy(i,n))},n.prototype._manuallyAxisShowTip=function(t,e,n,i){var r=i.seriesIndex,o=i.dataIndex,a=e.getComponent("axisPointer").coordSysAxesInfo;if(null!=r&&null!=o&&null!=a){var s=e.getSeriesByIndex(r);if(s){var l=s.getData(),u=Ay([l.getItemModel(o),s,(s.coordinateSystem||{}).model,t]);if("axis"===u.get("trigger"))return n.dispatchAction({type:"updateAxisPointer",seriesIndex:r,dataIndex:o,position:i.position}),!0}}},n.prototype._tryShow=function(t,e){var n=t.target,i=this._tooltipModel;if(i){this._lastX=t.offsetX,this._lastY=t.offsetY;var r=t.dataByCoordSys;r&&r.length?this._showAxisTooltip(r,t):n&&Nc(n,function(t){return null!=rb(t).dataIndex})?(this._lastDataByCoordSys=null,this._showSeriesItemTooltip(t,n,e)):n&&n.tooltip?(this._lastDataByCoordSys=null,this._showComponentItemTooltip(t,n,e)):(this._lastDataByCoordSys=null,this._hide(e))}},n.prototype._showOrMove=function(t,e){var n=t.get("showDelay");e=Qy(e,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(e,n):e()},n.prototype._showAxisTooltip=function(t,e){var n=this._ecModel,i=this._tooltipModel,r=[e.offsetX,e.offsetY],o=Ay([e.tooltipOption,i]),a=this._renderMode,s=[],l=Zu("section",{blocks:[],noHeader:!0}),u=[],h=new PT;SD(t,function(t){SD(t.dataByAxis,function(t){var e=n.getComponent(t.axisDim+"Axis",t.axisIndex),i=t.value;if(e&&null!=i){var r=py(i,e.axis,n,t.seriesDataIndices,t.valueLabelOpt),o=Zu("section",{header:r,noHeader:!W(r),sortBlocks:!0,blocks:[]});l.blocks.push(o),y(t.seriesDataIndices,function(l){var c=n.getSeriesByIndex(l.seriesIndex),p=l.dataIndexInside,f=c.getDataParams(p);f.axisDim=t.axisDim,f.axisIndex=t.axisIndex,f.axisType=t.axisType,f.axisId=t.axisId,f.axisValue=Sf(e.axis,{value:i}),f.axisValueLabel=r,f.marker=h.makeTooltipMarker("item",Ml(f.color),a);var d=Eu(c.formatTooltip(p,!0,null));d.markupFragment&&o.blocks.push(d.markupFragment),d.markupText&&u.push(d.markupText),s.push(f)})}})}),l.blocks.reverse(),u.reverse();var c=e.position,p=o.get("order"),f=Qu(l,h,a,p,n.get("useUTC"));f&&u.unshift(f);var d="richText"===a?"\n\n":"
",g=u.join(d);this._showOrMove(o,function(){this._updateContentNotChangedOnAxis(t)?this._updatePosition(o,c,r[0],r[1],this._tooltipContent,s):this._showTooltipContent(o,g,s,Math.random()+"",r[0],r[1],c,null,h)})},n.prototype._showSeriesItemTooltip=function(t,e,n){var i=Nc(e,function(t){return null!=rb(t).dataIndex}),r=this._ecModel,o=rb(i),a=o.seriesIndex,s=r.getSeriesByIndex(a),l=o.dataModel||s,u=o.dataIndex,h=o.dataType,c=l.getData(h),p=this._renderMode,f=Ay([c.getItemModel(u),l,s&&(s.coordinateSystem||{}).model,this._tooltipModel]),d=f.get("trigger");if(null==d||"item"===d){var g=l.getDataParams(u,h),y=new PT;g.marker=y.makeTooltipMarker("item",Ml(g.color),p);var v=Eu(l.formatTooltip(u,!1,h)),m=f.get("order"),_=v.markupFragment?Qu(v.markupFragment,y,p,m,r.get("useUTC")):v.markupText,x="item_"+l.name+"_"+u;this._showOrMove(f,function(){this._showTooltipContent(f,_,g,x,t.offsetX,t.offsetY,t.position,t.target,y)}),n({type:"showTip",dataIndexInside:u,dataIndex:c.getRawIndex(u),seriesIndex:a,from:this.uid})}},n.prototype._showComponentItemTooltip=function(t,e,n){var i=e.tooltip;if(C(i)){var r=i;i={content:r,formatter:r}}var o=new Xb(i,this._tooltipModel,this._ecModel),a=o.get("content"),s=Math.random()+"",l=new PT;this._showOrMove(o,function(){this._showTooltipContent(o,a,o.get("formatterParams")||{},s,t.offsetX,t.offsetY,t.position,e,l)}),n({type:"showTip",from:this.uid})},n.prototype._showTooltipContent=function(t,e,n,i,r,o,a,s,l){if(this._ticket="",t.get("showContent")&&t.get("show")){var u=this._tooltipContent,h=t.get("formatter");a=a||t.get("position");var c=e,p=this._getNearestPoint([r,o],n,t.get("trigger"));if(h&&C(h)){var f=t.ecModel.get("useUTC"),d=T(n)?n[0]:n,g=d&&d.axisType&&d.axisType.indexOf("time")>=0;c=h,g&&(c=$s(d.axisValue,c,f)),c=xl(c,n,!0)}else if(M(h)){var y=bD(function(e,i){e===this._ticket&&(u.setContent(i,l,t,p.color,a),this._updatePosition(t,a,r,o,u,n,s))},this);this._ticket=i,c=h(n,i,y)}u.setContent(c,l,t,p.color,a),u.show(t,p.color),this._updatePosition(t,a,r,o,u,n,s)}},n.prototype._getNearestPoint=function(t,e,n){return"axis"===n||T(e)?{color:"html"===this._renderMode?"#fff":"none"}:T(e)?void 0:{color:e.color||e.borderColor}},n.prototype._updatePosition=function(t,e,n,i,r,o,a){var s=this._api.getWidth(),l=this._api.getHeight();e=e||t.get("position");var u=r.getSize(),h=t.get("align"),c=t.get("verticalAlign"),p=a&&a.getBoundingRect().clone();if(a&&p.applyTransform(a.transform),M(e)&&(e=e([n,i],o,r.el,p,{viewSize:[s,l],contentSize:u.slice()})),T(e))n=TD(e[0],s),i=TD(e[1],l);else if(A(e)){var f=e;f.width=u[0],f.height=u[1];var d=kl(f,{width:s,height:l});n=d.x,i=d.y,h=null,c=null}else if(C(e)&&a){var g=Oy(e,p,u);n=g[0],i=g[1]}else{var g=Py(n,i,r,s,l,h?null:20,c?null:20);n=g[0],i=g[1]}if(h&&(n-=Ry(h)?u[0]/2:"right"===h?u[0]:0),c&&(i-=Ry(c)?u[1]/2:"bottom"===c?u[1]:0),_y(t)){var g=Ly(n,i,r,s,l);n=g[0],i=g[1]}r.moveTo(n,i)},n.prototype._updateContentNotChangedOnAxis=function(t){var e=this._lastDataByCoordSys,n=!!e&&e.length===t.length;return n&&SD(e,function(e,i){var r=e.dataByAxis||[],o=t[i]||{},a=o.dataByAxis||[];n=n&&r.length===a.length,n&&SD(r,function(t,e){var i=a[e]||{},r=t.seriesDataIndices||[],o=i.seriesDataIndices||[];n=n&&t.value===i.value&&t.axisType===i.axisType&&t.axisId===i.axisId&&r.length===o.length,n&&SD(r,function(t,e){var i=o[e];n=n&&t.seriesIndex===i.seriesIndex&&t.dataIndex===i.dataIndex})})}),this._lastDataByCoordSys=t,!!n},n.prototype._hide=function(t){this._lastDataByCoordSys=null,t({type:"hideTip",from:this.uid})},n.prototype.dispose=function(t,e){Ny.node||(this._tooltipContent.dispose(),iy("itemTooltip",e))},n.type="tooltip",n}(RT);RT.registerClass(CD),lp({type:"showTip",event:"showTip",update:"tooltip:manuallyShowTip"},function(){}),lp({type:"hideTip",event:"hideTip",update:"tooltip:manuallyHideTip"},function(){}),t.version=uC,t.dependencies=hC,t.PRIORITY=IC,t.init=$c,t.connect=Qc,t.disConnect=Jc,t.disconnect=bI,t.dispose=tp,t.getInstanceByDom=ep,t.getInstanceById=np,t.registerTheme=ip,t.registerPreprocessor=rp,t.registerProcessor=op,t.registerPostInit=ap,t.registerPostUpdate=sp,t.registerAction=lp,t.registerCoordinateSystem=up,t.getCoordinateSystemDimensions=hp,t.registerLayout=cp,t.registerVisual=pp,t.registerLoading=dp,t.extendComponentModel=gp,t.extendComponentView=yp,t.extendSeriesModel=vp,t.extendChartView=mp,t.setCanvasCreator=_p,t.registerMap=xp,t.getMap=wp,t.registerTransform=SI,t.dataTool=NI,t.registerLocale=Ws,t.zrender=Vw,t.throttle=Sh,t.helper=Dk,t.matrix=Cv,t.vector=av,t.color=Xv,t.parseGeoJSON=zf,t.parseGeoJson=Bk,t.number=zk,t.format=Nk,t.time=Fk,t.util=Hk,t.graphic=Gk,t.innerDrawElementOnCanvas=Dc,t.List=JI,t.Model=Xb,t.Axis=Ek,t.env=Ny}); \ No newline at end of file diff --git a/web/views/@default/dashboard/index.css b/web/views/@default/dashboard/index.css new file mode 100644 index 00000000..311ceed2 --- /dev/null +++ b/web/views/@default/dashboard/index.css @@ -0,0 +1,22 @@ +.grid { + margin-top: 2em !important; + margin-left: 2em !important; +} +.grid .column { + margin-bottom: 2em; + border-right: 1px #eee solid; +} +.grid .column div.value { + margin-top: 1.5em; +} +.grid .column div.value span { + font-size: 2em; + margin-right: 0.2em; +} +.grid .column.no-border { + border-right: 0; +} +.chart-box { + height: 20em; +} +/*# sourceMappingURL=index.css.map */ \ No newline at end of file diff --git a/web/views/@default/dashboard/index.css.map b/web/views/@default/dashboard/index.css.map new file mode 100644 index 00000000..582fe827 --- /dev/null +++ b/web/views/@default/dashboard/index.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["index.less"],"names":[],"mappings":"AAAA;EACC,0BAAA;EACA,2BAAA;;AAFD,KAIC;EACC,kBAAA;EACA,4BAAA;;AANF,KAIC,QAIC,IAAG;EACF,iBAAA;;AATH,KAIC,QAIC,IAAG,MAGF;EACC,cAAA;EACA,mBAAA;;AAbJ,KAkBC,QAAO;EACN,eAAA;;AAKF;EACC,YAAA","file":"index.css"} \ No newline at end of file diff --git a/web/views/@default/dashboard/index.html b/web/views/@default/dashboard/index.html index 8b13c859..1a548a62 100644 --- a/web/views/@default/dashboard/index.html +++ b/web/views/@default/dashboard/index.html @@ -1,2 +1,52 @@ {$layout} + +{$var "header"} + + +{$end} + +
+
+

当前集群数

+
{{dashboard.countNodeClusters}}
+
+ +
+

当前边缘节点数

+
{{dashboard.countNodes}}
+
+ +
+

当前API节点数

+
{{dashboard.countAPINodes}}
+
+ +
+

当前用户数

+
{{dashboard.countUsers}}
+
+ +
+

当前服务数

+
{{dashboard.countServers}}
+
+ +
+

今日总流量

+
{{todayTraffic}}{{todayTrafficUnit}}
+
+
+ +
+ + + + +
+ + +
\ No newline at end of file diff --git a/web/views/@default/dashboard/index.js b/web/views/@default/dashboard/index.js new file mode 100644 index 00000000..ac576679 --- /dev/null +++ b/web/views/@default/dashboard/index.js @@ -0,0 +1,105 @@ +Tea.context(function () { + this.trafficTab = "hourly" + + + this.$delay(function () { + this.reloadHourlyTrafficChart() + }) + + this.selectTrafficTab = function (tab) { + this.trafficTab = tab + if (tab == "hourly") { + + } else if (tab == "daily") { + this.$delay(function () { + this.reloadDailyTrafficChart() + }) + } + } + + this.reloadHourlyTrafficChart = function () { + let chartBox = document.getElementById("hourly-traffic-chart-box") + let chart = echarts.init(chartBox) + let option = { + xAxis: { + data: this.hourlyTrafficStats.map(function (v) { + return v.hour; + }) + }, + yAxis: {}, + tooltip: { + show: true, + trigger: "item", + formatter: "{c} GB" + }, + grid: { + left: 40, + top: 10, + right: 20 + }, + series: [ + { + name: "流量", + type: "line", + data: this.hourlyTrafficStats.map(function (v) { + return v.count; + }), + itemStyle: { + color: "#9DD3E8" + }, + lineStyle: { + color: "#9DD3E8" + }, + areaStyle: { + color: "#9DD3E8" + } + } + ], + animation: false + } + chart.setOption(option) + } + + this.reloadDailyTrafficChart = function () { + let chartBox = document.getElementById("daily-traffic-chart-box") + let chart = echarts.init(chartBox) + let option = { + xAxis: { + data: this.dailyTrafficStats.map(function (v) { + return v.day; + }) + }, + yAxis: {}, + tooltip: { + show: true, + trigger: "item", + formatter: "{c} GB" + }, + grid: { + left: 40, + top: 10, + right: 20 + }, + series: [ + { + name: "流量", + type: "line", + data: this.dailyTrafficStats.map(function (v) { + return v.count; + }), + itemStyle: { + color: "#9DD3E8" + }, + lineStyle: { + color: "#9DD3E8" + }, + areaStyle: { + color: "#9DD3E8" + } + } + ], + animation: false + } + chart.setOption(option) + } +}) diff --git a/web/views/@default/dashboard/index.less b/web/views/@default/dashboard/index.less new file mode 100644 index 00000000..d51bc8a9 --- /dev/null +++ b/web/views/@default/dashboard/index.less @@ -0,0 +1,27 @@ +.grid { + margin-top: 2em !important; + margin-left: 2em !important; + + .column { + margin-bottom: 2em; + border-right: 1px #eee solid; + + div.value { + margin-top: 1.5em; + + span { + font-size: 2em; + margin-right: 0.2em; + } + } + } + + .column.no-border { + border-right: 0; + } +} + + +.chart-box { + height: 20em; +} \ No newline at end of file