From 6200dbb59698ffc68f7836ba796a8859f8e50cb2 Mon Sep 17 00:00:00 2001 From: dekun Date: Sun, 28 Jun 2026 14:09:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=94=99=E9=A2=98=E4=B8=80?= =?UTF-8?q?=E7=9B=B4=E6=98=BE=E7=A4=BA=E5=A4=84=E7=90=86=E4=B8=AD=EF=BC=9A?= =?UTF-8?q?=E8=B6=85=E6=97=B6=E3=80=81=E8=87=AA=E5=8A=A8=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E4=B8=8E=E7=8A=B6=E6=80=81=E6=9B=B4=E6=96=B0=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/core/config.py | 3 + backend/app/routers/wrong_questions.py | 78 +++++++++++++++++-- .../{index-C3DkjkK0.js => index-_1CtLpiP.js} | 66 ++++++++-------- frontend/dist/index.html | 2 +- frontend/src/components/WrongQuestionList.tsx | 18 ++++- frontend/src/pages/WrongQuestionDetail.tsx | 24 +++++- frontend/src/utils/wqProcessing.ts | 18 +++++ 7 files changed, 163 insertions(+), 46 deletions(-) rename frontend/dist/assets/{index-C3DkjkK0.js => index-_1CtLpiP.js} (75%) create mode 100644 frontend/src/utils/wqProcessing.ts diff --git a/backend/app/core/config.py b/backend/app/core/config.py index 331bbbc..fa1702a 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -19,6 +19,9 @@ class Settings(BaseSettings): FRONTEND_DIST: str = "../frontend/dist" ADMIN_DEFAULT_USERNAME: str = "admin" ADMIN_DEFAULT_PASSWORD: str = "admin123" + OCR_TIMEOUT_SECONDS: int = 300 + AI_TIMEOUT_SECONDS: int = 600 + PROCESS_STALE_MINUTES: int = 20 class Config: env_file = ".env" diff --git a/backend/app/routers/wrong_questions.py b/backend/app/routers/wrong_questions.py index e351339..847ae37 100644 --- a/backend/app/routers/wrong_questions.py +++ b/backend/app/routers/wrong_questions.py @@ -1,5 +1,7 @@ import json import uuid +from concurrent.futures import ThreadPoolExecutor, TimeoutError as FuturesTimeout +from datetime import datetime, timedelta, timezone from pathlib import Path from fastapi import APIRouter, BackgroundTasks, Depends, File, Form, HTTPException, Query, UploadFile, status @@ -26,6 +28,28 @@ def _short_error(exc: BaseException, prefix: str = "") -> str: return f"{prefix}{msg}" if prefix else msg +def _is_still_processing(wq: WrongQuestion) -> bool: + if wq.status == WrongQuestionStatus.pending: + return True + if wq.status == WrongQuestionStatus.ocr_done and not wq.question_text and not wq.error_message: + return True + return False + + +def _expire_stale_processing(wq: WrongQuestion, db: Session) -> None: + if not _is_still_processing(wq): + return + created = wq.created_at + if created.tzinfo is None: + created = created.replace(tzinfo=timezone.utc) + age = datetime.now(timezone.utc) - created + if age <= timedelta(minutes=settings.PROCESS_STALE_MINUTES): + return + wq.status = WrongQuestionStatus.failed + wq.error_message = f"处理超时(超过 {settings.PROCESS_STALE_MINUTES} 分钟),请点击「重新识别标注」重试" + db.commit() + + def _parse_mark_regions(raw: str | None) -> list[dict] | None: if not raw: return None @@ -57,25 +81,41 @@ def _wq_to_out(wq: WrongQuestion) -> WrongQuestionOut: async def _run_ai_pipeline(wq: WrongQuestion, db: Session, ocr_lines: list[dict], ocr_text: str): + import asyncio + subject_name = wq.subject.name if wq.subject else "综合" school_level = wq.student.school_level if wq.student else None olympiad = wq.category == WrongQuestionCategory.olympiad ai_cfg = llm_service.load_ai_config(db) image_full = str(Path(settings.UPLOAD_DIR) / wq.image_path) + timeout = settings.AI_TIMEOUT_SECONDS + + try: + detect_resp = await asyncio.wait_for( + llm_service.detect_wrong_line_ids(ai_cfg, subject_name, ocr_lines, school_level), + timeout=min(90, timeout), + ) + wrong_ids = annotation_service.parse_wrong_line_ids(detect_resp, ocr_lines) + except Exception: + wrong_ids = annotation_service.heuristic_wrong_line_ids(ocr_lines) - detect_resp = await llm_service.detect_wrong_line_ids(ai_cfg, subject_name, ocr_lines, school_level) - wrong_ids = annotation_service.parse_wrong_line_ids(detect_resp, ocr_lines) regions = annotation_service.regions_from_lines(ocr_lines, wrong_ids) wq.mark_regions_json = json.dumps(regions, ensure_ascii=False) - ann_rel = ocr_service.annotated_rel_path(wq.image_path) wq.annotated_image_path = annotation_service.draw_annotated_image( image_full, ocr_lines, wrong_ids, ann_rel ) + db.commit() - question_text = await llm_service.format_question(ai_cfg, subject_name, ocr_text, school_level) - solution_full = await llm_service.generate_solution( - ai_cfg, subject_name, question_text, school_level, olympiad=olympiad + question_text = await asyncio.wait_for( + llm_service.format_question(ai_cfg, subject_name, ocr_text, school_level), + timeout=timeout, + ) + solution_full = await asyncio.wait_for( + llm_service.generate_solution( + ai_cfg, subject_name, question_text, school_level, olympiad=olympiad + ), + timeout=timeout, ) approach, solution_body = annotation_service.split_solution_sections(solution_full) wq.question_text = question_text @@ -87,6 +127,7 @@ async def _run_ai_pipeline(wq: WrongQuestion, db: Session, ocr_lines: list[dict] def _process_wrong_question(question_id: uuid.UUID): db = SessionLocal() + wq = None try: wq = ( db.query(WrongQuestion) @@ -100,7 +141,9 @@ def _process_wrong_question(question_id: uuid.UUID): wq.error_message = None image_full = Path(settings.UPLOAD_DIR) / wq.image_path try: - ocr_result = ocr_service.run_ocr_with_regions(str(image_full)) + with ThreadPoolExecutor(max_workers=1) as pool: + future = pool.submit(ocr_service.run_ocr_with_regions, str(image_full)) + ocr_result = future.result(timeout=settings.OCR_TIMEOUT_SECONDS) ocr_text = ocr_result["text"] ocr_lines = ocr_result["lines"] wq.ocr_raw_text = ocr_text or None @@ -111,6 +154,14 @@ def _process_wrong_question(question_id: uuid.UUID): return wq.status = WrongQuestionStatus.ocr_done db.commit() + except FuturesTimeout: + wq.status = WrongQuestionStatus.failed + wq.error_message = ( + f"OCR 识别超时(>{settings.OCR_TIMEOUT_SECONDS}秒)。" + " 首次加载模型较慢,请稍后点「重新识别标注」重试" + ) + db.commit() + return except Exception as exc: wq.status = WrongQuestionStatus.failed msg = _short_error(exc, "OCR 识别失败:") @@ -129,10 +180,18 @@ def _process_wrong_question(question_id: uuid.UUID): db.commit() except Exception as exc: wq.status = WrongQuestionStatus.failed - wq.error_message = _short_error(exc, "AI 处理失败:") + detail = _short_error(exc, "AI 处理失败:") + if "Timeout" in type(exc).__name__ or "timeout" in str(exc).lower(): + detail = "AI 处理超时,请检查 Ollama/OpenAI 是否可用后重试" + wq.error_message = detail db.commit() finally: loop.close() + except Exception as exc: + if wq is not None: + wq.status = WrongQuestionStatus.failed + wq.error_message = _short_error(exc, "处理失败:") + db.commit() finally: db.close() @@ -164,6 +223,8 @@ def list_wrong_questions( | (WrongQuestion.ocr_raw_text.ilike(pattern)) ) items = query.order_by(WrongQuestion.created_at.desc()).all() + for w in items: + _expire_stale_processing(w, db) return [_wq_to_out(w) for w in items] @@ -233,6 +294,7 @@ def get_wrong_question( ) if wq is None or wq.student.user_id != current_user.id: raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="错题不存在") + _expire_stale_processing(wq, db) return _wq_to_out(wq) diff --git a/frontend/dist/assets/index-C3DkjkK0.js b/frontend/dist/assets/index-_1CtLpiP.js similarity index 75% rename from frontend/dist/assets/index-C3DkjkK0.js rename to frontend/dist/assets/index-_1CtLpiP.js index d5f8922..f03803a 100644 --- a/frontend/dist/assets/index-C3DkjkK0.js +++ b/frontend/dist/assets/index-_1CtLpiP.js @@ -378,55 +378,55 @@ Please change the parent to {if(!n._listeners)return;let t=n._listeners.length;for(;t-->0;)n._listeners[t](e);n._listeners=null}),this.promise.then=e=>{let t,r=new Promise(e=>{n.subscribe(e),t=e}).then(e);return r.cancel=function(){n.unsubscribe(t)},r},e(function(e,r,i){n.reason||(n.reason=new NO(e,r,i),t(n.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){if(this.reason){e(this.reason);return}this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;let t=this._listeners.indexOf(e);t!==-1&&this._listeners.splice(t,1)}toAbortSignal(){let e=new AbortController,t=t=>{e.abort(t)};return this.subscribe(t),e.signal.unsubscribe=()=>this.unsubscribe(t),e.signal}static source(){let t;return{token:new e(function(e){t=e}),cancel:t}}};function uxe(e){return function(t){return e.apply(null,t)}}function dxe(e){return J.isObject(e)&&e.isAxiosError===!0}var sk={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(sk).forEach(([e,t])=>{sk[t]=e});function ck(e){let t=new ok(e),n=lye(ok.prototype.request,t);return J.extend(n,ok.prototype,t,{allOwnKeys:!0}),J.extend(n,t,null,{allOwnKeys:!0}),n.create=function(t){return ck(VO(e,t))},n}var lk=ck(AO);lk.Axios=ok,lk.CanceledError=NO,lk.CancelToken=lxe,lk.isCancel=MO,lk.VERSION=GO,lk.toFormData=gO,lk.AxiosError=fO,lk.Cancel=lk.CanceledError,lk.all=function(e){return Promise.all(e)},lk.spread=uxe,lk.isAxiosError=dxe,lk.mergeConfig=VO,lk.AxiosHeaders=dO,lk.formToJSON=e=>OO(J.isHTMLForm(e)?new FormData(e):e),lk.getAdapter=$O.getAdapter,lk.HttpStatusCode=sk,lk.default=lk;var fxe=l(Qge(),1),uk=lk.create({baseURL:`/api`});uk.interceptors.request.use(e=>{let t=localStorage.getItem(`access_token`);return t&&(e.headers.Authorization=`Bearer ${t}`),e}),uk.interceptors.response.use(e=>e,async e=>{let t=e.config;if(e.response?.status===401&&!t._retry){t._retry=!0;let e=localStorage.getItem(`refresh_token`);if(e)try{let{data:n}=await lk.post(`/api/auth/refresh`,{refresh_token:e});return localStorage.setItem(`access_token`,n.access_token),localStorage.setItem(`refresh_token`,n.refresh_token),t.headers.Authorization=`Bearer ${n.access_token}`,uk(t)}catch{localStorage.removeItem(`access_token`),localStorage.removeItem(`refresh_token`),window.location.href=`/login`}}return Promise.reject(e)});var dk={register:(e,t)=>uk.post(`/auth/register`,{username:e,password:t}),login:(e,t)=>uk.post(`/auth/login`,{username:e,password:t}),me:()=>uk.get(`/auth/me`)},pxe={public:()=>uk.get(`/settings/public`)},fk={getSettings:()=>uk.get(`/admin/settings`),updateSettings:e=>uk.patch(`/admin/settings`,e),updateProfile:e=>uk.patch(`/admin/profile`,e),listUsers:()=>uk.get(`/admin/users`),createUser:e=>uk.post(`/admin/users`,e),resetUserPassword:(e,t)=>uk.patch(`/admin/users/${e}`,{password:t}),deleteUser:e=>uk.delete(`/admin/users/${e}`)},pk={list:()=>uk.get(`/students`),create:e=>uk.post(`/students`,e),get:e=>uk.get(`/students/${e}`),update:(e,t)=>uk.patch(`/students/${e}`,t),remove:e=>uk.delete(`/students/${e}`)},mxe={list:()=>uk.get(`/subjects`)},mk={list:e=>uk.get(`/students/${e}/exams`),create:(e,t)=>uk.post(`/students/${e}/exams`,t),update:(e,t)=>uk.patch(`/exams/${e}`,t),remove:e=>uk.delete(`/exams/${e}`),trend:(e,t)=>uk.get(`/students/${e}/scores/trend`,{params:{subject_id:t}}),exportCsv:e=>uk.get(`/students/${e}/scores/export`,{responseType:`blob`})},hk={list:(e,t)=>uk.get(`/students/${e}/wrong-questions`,{params:t}),upload:(e,t,n,r=`regular`)=>{let i=new FormData;return i.append(`subject_id`,String(t)),i.append(`category`,r),i.append(`file`,n),uk.post(`/students/${e}/wrong-questions`,i)},get:e=>uk.get(`/wrong-questions/${e}`),update:(e,t)=>uk.patch(`/wrong-questions/${e}`,t),remove:e=>uk.delete(`/wrong-questions/${e}`),retryOcr:e=>uk.post(`/wrong-questions/${e}/retry-ocr`),regenerate:e=>uk.post(`/wrong-questions/${e}/regenerate-solution`),imageUrl:e=>`/api/wrong-questions/${e}/image`},hxe=o((e=>{var t=Symbol.for(`react.transitional.element`),n=Symbol.for(`react.fragment`);function r(e,n,r){var i=null;if(r!==void 0&&(i=``+r),n.key!==void 0&&(i=``+n.key),`key`in n)for(var a in r={},n)a!==`key`&&(r[a]=n[a]);else r=n;return n=r.ref,{$$typeof:t,type:e,key:i,ref:n===void 0?null:n,props:r}}e.Fragment=n,e.jsx=r,e.jsxs=r})),Y=o(((e,t)=>{t.exports=hxe()}))(),gk=(0,h.createContext)(null);function gxe({children:e}){let[t,n]=(0,h.useState)(null),[r,i]=(0,h.useState)(!0);(0,h.useEffect)(()=>{if(!localStorage.getItem(`access_token`)){i(!1);return}dk.me().then(e=>n(e.data)).catch(()=>{localStorage.removeItem(`access_token`),localStorage.removeItem(`refresh_token`)}).finally(()=>i(!1))},[]);let a=async(e,t)=>{let{data:r}=await dk.login(e,t);localStorage.setItem(`access_token`,r.access_token),localStorage.setItem(`refresh_token`,r.refresh_token),n((await dk.me()).data)};return(0,Y.jsx)(gk.Provider,{value:{user:t,loading:r,login:a,register:async(e,t)=>{await dk.register(e,t),await a(e,t)},logout:()=>{localStorage.removeItem(`access_token`),localStorage.removeItem(`refresh_token`),n(null)}},children:e})}function _k(){let e=(0,h.useContext)(gk);if(!e)throw Error(`useAuth must be used within AuthProvider`);return e}var _xe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M872 474H286.9l350.2-304c5.6-4.9 2.2-14-5.2-14h-88.5c-3.9 0-7.6 1.4-10.5 3.9L155 487.8a31.96 31.96 0 000 48.3L535.1 866c1.5 1.3 3.3 2 5.2 2h91.5c7.4 0 10.8-9.2 5.2-14L286.9 550H872c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z`}}]},name:`arrow-left`,theme:`outlined`}}))());function vk(){return vk=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,vk({},e,{ref:t,icon:_xe.default}))),yxe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M864 248H728l-32.4-90.8a32.07 32.07 0 00-30.2-21.2H358.6c-13.5 0-25.6 8.5-30.1 21.2L296 248H160c-44.2 0-80 35.8-80 80v456c0 44.2 35.8 80 80 80h704c44.2 0 80-35.8 80-80V328c0-44.2-35.8-80-80-80zm8 536c0 4.4-3.6 8-8 8H160c-4.4 0-8-3.6-8-8V328c0-4.4 3.6-8 8-8h186.7l17.1-47.8 22.9-64.2h250.5l22.9 64.2 17.1 47.8H864c4.4 0 8 3.6 8 8v456zM512 384c-88.4 0-160 71.6-160 160s71.6 160 160 160 160-71.6 160-160-71.6-160-160-160zm0 256c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z`}}]},name:`camera`,theme:`outlined`}}))());function yk(){return yk=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,yk({},e,{ref:t,icon:yxe.default}))),xxe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M832 464h-68V240c0-70.7-57.3-128-128-128H388c-70.7 0-128 57.3-128 128v224h-68c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V496c0-17.7-14.3-32-32-32zM332 240c0-30.9 25.1-56 56-56h248c30.9 0 56 25.1 56 56v224H332V240zm460 600H232V536h560v304zM484 701v53c0 4.4 3.6 8 8 8h40c4.4 0 8-3.6 8-8v-53a48.01 48.01 0 10-56 0z`}}]},name:`lock`,theme:`outlined`}}))());function bk(){return bk=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,bk({},e,{ref:t,icon:xxe.default}))),Sxe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M868 732h-70.3c-4.8 0-9.3 2.1-12.3 5.8-7 8.5-14.5 16.7-22.4 24.5a353.84 353.84 0 01-112.7 75.9A352.8 352.8 0 01512.4 866c-47.9 0-94.3-9.4-137.9-27.8a353.84 353.84 0 01-112.7-75.9 353.28 353.28 0 01-76-112.5C167.3 606.2 158 559.9 158 512s9.4-94.2 27.8-137.8c17.8-42.1 43.4-80 76-112.5s70.5-58.1 112.7-75.9c43.6-18.4 90-27.8 137.9-27.8 47.9 0 94.3 9.3 137.9 27.8 42.2 17.8 80.1 43.4 112.7 75.9 7.9 7.9 15.3 16.1 22.4 24.5 3 3.7 7.6 5.8 12.3 5.8H868c6.3 0 10.2-7 6.7-12.3C798 160.5 663.8 81.6 511.3 82 271.7 82.6 79.6 277.1 82 516.4 84.4 751.9 276.2 942 512.4 942c152.1 0 285.7-78.8 362.3-197.7 3.4-5.3-.4-12.3-6.7-12.3zm88.9-226.3L815 393.7c-5.3-4.2-13-.4-13 6.3v76H488c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h314v76c0 6.7 7.8 10.5 13 6.3l141.9-112a8 8 0 000-12.6z`}}]},name:`logout`,theme:`outlined`}}))());function Sk(){return Sk=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,Sk({},e,{ref:t,icon:Sxe.default}))),wxe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M909.1 209.3l-56.4 44.1C775.8 155.1 656.2 92 521.9 92 290 92 102.3 279.5 102 511.5 101.7 743.7 289.8 932 521.9 932c181.3 0 335.8-115 394.6-276.1 1.5-4.2-.7-8.9-4.9-10.3l-56.7-19.5a8 8 0 00-10.1 4.8c-1.8 5-3.8 10-5.9 14.9-17.3 41-42.1 77.8-73.7 109.4A344.77 344.77 0 01655.9 829c-42.3 17.9-87.4 27-133.8 27-46.5 0-91.5-9.1-133.8-27A341.5 341.5 0 01279 755.2a342.16 342.16 0 01-73.7-109.4c-17.9-42.4-27-87.4-27-133.9s9.1-91.5 27-133.9c17.3-41 42.1-77.8 73.7-109.4 31.6-31.6 68.4-56.4 109.3-73.8 42.3-17.9 87.4-27 133.8-27 46.5 0 91.5 9.1 133.8 27a341.5 341.5 0 01109.3 73.8c9.9 9.9 19.2 20.4 27.8 31.4l-60.2 47a8 8 0 003 14.1l175.6 43c5 1.2 9.9-2.6 9.9-7.7l.8-180.9c-.1-6.6-7.8-10.3-13-6.2z`}}]},name:`reload`,theme:`outlined`}}))());function Ck(){return Ck=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,Ck({},e,{ref:t,icon:wxe.default}))),Exe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M924.8 625.7l-65.5-56c3.1-19 4.7-38.4 4.7-57.8s-1.6-38.8-4.7-57.8l65.5-56a32.03 32.03 0 009.3-35.2l-.9-2.6a443.74 443.74 0 00-79.7-137.9l-1.8-2.1a32.12 32.12 0 00-35.1-9.5l-81.3 28.9c-30-24.6-63.5-44-99.7-57.6l-15.7-85a32.05 32.05 0 00-25.8-25.7l-2.7-.5c-52.1-9.4-106.9-9.4-159 0l-2.7.5a32.05 32.05 0 00-25.8 25.7l-15.8 85.4a351.86 351.86 0 00-99 57.4l-81.9-29.1a32 32 0 00-35.1 9.5l-1.8 2.1a446.02 446.02 0 00-79.7 137.9l-.9 2.6c-4.5 12.5-.8 26.5 9.3 35.2l66.3 56.6c-3.1 18.8-4.6 38-4.6 57.1 0 19.2 1.5 38.4 4.6 57.1L99 625.5a32.03 32.03 0 00-9.3 35.2l.9 2.6c18.1 50.4 44.9 96.9 79.7 137.9l1.8 2.1a32.12 32.12 0 0035.1 9.5l81.9-29.1c29.8 24.5 63.1 43.9 99 57.4l15.8 85.4a32.05 32.05 0 0025.8 25.7l2.7.5a449.4 449.4 0 00159 0l2.7-.5a32.05 32.05 0 0025.8-25.7l15.7-85a350 350 0 0099.7-57.6l81.3 28.9a32 32 0 0035.1-9.5l1.8-2.1c34.8-41.1 61.6-87.5 79.7-137.9l.9-2.6c4.5-12.3.8-26.3-9.3-35zM788.3 465.9c2.5 15.1 3.8 30.6 3.8 46.1s-1.3 31-3.8 46.1l-6.6 40.1 74.7 63.9a370.03 370.03 0 01-42.6 73.6L721 702.8l-31.4 25.8c-23.9 19.6-50.5 35-79.3 45.8l-38.1 14.3-17.9 97a377.5 377.5 0 01-85 0l-17.9-97.2-37.8-14.5c-28.5-10.8-55-26.2-78.7-45.7l-31.4-25.9-93.4 33.2c-17-22.9-31.2-47.6-42.6-73.6l75.5-64.5-6.5-40c-2.4-14.9-3.7-30.3-3.7-45.5 0-15.3 1.2-30.6 3.7-45.5l6.5-40-75.5-64.5c11.3-26.1 25.6-50.7 42.6-73.6l93.4 33.2 31.4-25.9c23.7-19.5 50.2-34.9 78.7-45.7l37.9-14.3 17.9-97.2c28.1-3.2 56.8-3.2 85 0l17.9 97 38.1 14.3c28.7 10.8 55.4 26.2 79.3 45.8l31.4 25.8 92.8-32.9c17 22.9 31.2 47.6 42.6 73.6L781.8 426l6.5 39.9zM512 326c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm79.2 255.2A111.6 111.6 0 01512 614c-29.9 0-58-11.7-79.2-32.8A111.6 111.6 0 01400 502c0-29.9 11.7-58 32.8-79.2C454 401.6 482.1 390 512 390c29.9 0 58 11.6 79.2 32.8A111.6 111.6 0 01624 502c0 29.9-11.7 58-32.8 79.2z`}}]},name:`setting`,theme:`outlined`}}))());function wk(){return wk=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,wk({},e,{ref:t,icon:Exe.default}))),Dxe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M400 317.7h73.9V656c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V317.7H624c6.7 0 10.4-7.7 6.3-12.9L518.3 163a8 8 0 00-12.6 0l-112 141.7c-4.1 5.3-.4 13 6.3 13zM878 626h-60c-4.4 0-8 3.6-8 8v154H214V634c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v198c0 17.7 14.3 32 32 32h684c17.7 0 32-14.3 32-32V634c0-4.4-3.6-8-8-8z`}}]},name:`upload`,theme:`outlined`}}))());function Ek(){return Ek=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,Ek({},e,{ref:t,icon:Dxe.default}))),kxe=l(o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default={icon:{tag:`svg`,attrs:{viewBox:`64 64 896 896`,focusable:`false`},children:[{tag:`path`,attrs:{d:`M858.5 763.6a374 374 0 00-80.6-119.5 375.63 375.63 0 00-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 00-80.6 119.5A371.7 371.7 0 00136 901.8a8 8 0 008 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 008-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z`}}]},name:`user`,theme:`outlined`}}))());function Dk(){return Dk=Object.assign?Object.assign.bind():function(e){for(var t=1;th.createElement(W,Dk({},e,{ref:t,icon:kxe.default})));function kk(e,t){if(lk.isAxiosError(e)){let t=e.response?.data?.detail;if(typeof t==`string`)return t;if(Array.isArray(t)&&t[0]?.msg)return t[0].msg}return t}function Axe(){let{user:e,login:t,register:n,loading:r}=_k(),i=vD(),[a]=ky.useForm(),[o]=ky.useForm(),[s,c]=(0,h.useState)(!0),[l,u]=(0,h.useState)(!0);if((0,h.useEffect)(()=>{pxe.public().then(e=>c(e.data.registration_enabled)).catch(()=>c(!0)).finally(()=>u(!1))},[]),!r&&e)return(0,Y.jsx)(wD,{to:`/`,replace:!0});let d=async e=>{try{await t(e.username,e.password),rx.success(`登录成功`),i(`/`)}catch(e){rx.error(kk(e,`用户名或密码错误`))}},f=async e=>{if(e.password!==e.confirm){rx.error(`两次密码不一致`);return}try{await n(e.username,e.password),rx.success(`注册成功`),i(`/`)}catch(e){rx.error(kk(e,`注册失败,请稍后重试`))}},p=[{key:`login`,label:`登录`,children:(0,Y.jsxs)(ky,{form:a,onFinish:d,layout:`vertical`,children:[(0,Y.jsx)(ky.Item,{name:`username`,rules:[{required:!0,message:`请输入用户名`}],children:(0,Y.jsx)(ib,{prefix:(0,Y.jsx)(Ok,{}),placeholder:`用户名`})}),(0,Y.jsx)(ky.Item,{name:`password`,rules:[{required:!0,message:`请输入密码`}],children:(0,Y.jsx)(ib.Password,{prefix:(0,Y.jsx)(xk,{}),placeholder:`密码`})}),(0,Y.jsx)(_p,{type:`primary`,htmlType:`submit`,block:!0,children:`登录`})]})}];return s&&p.push({key:`register`,label:`注册`,children:(0,Y.jsxs)(ky,{form:o,onFinish:f,layout:`vertical`,children:[(0,Y.jsx)(ky.Item,{name:`username`,rules:[{required:!0,message:`请输入用户名`},{min:3,message:`至少3个字符`}],children:(0,Y.jsx)(ib,{prefix:(0,Y.jsx)(Ok,{}),placeholder:`用户名`})}),(0,Y.jsx)(ky.Item,{name:`password`,rules:[{required:!0,message:`请输入密码`},{min:6,message:`至少6个字符`}],children:(0,Y.jsx)(ib.Password,{prefix:(0,Y.jsx)(xk,{}),placeholder:`密码`})}),(0,Y.jsx)(ky.Item,{name:`confirm`,rules:[{required:!0,message:`请确认密码`}],children:(0,Y.jsx)(ib.Password,{prefix:(0,Y.jsx)(xk,{}),placeholder:`确认密码`})}),(0,Y.jsx)(_p,{type:`primary`,htmlType:`submit`,block:!0,children:`注册`})]})}),(0,Y.jsx)(`div`,{style:{minHeight:`100vh`,display:`flex`,alignItems:`center`,justifyContent:`center`,background:`linear-gradient(135deg, #667eea 0%, #764ba2 100%)`,padding:16},children:(0,Y.jsxs)(lg,{style:{width:`100%`,maxWidth:420},title:`中学生成绩档案`,children:[(0,Y.jsx)(rE.Paragraph,{type:`secondary`,style:{textAlign:`center`},children:`成绩录入 · 趋势分析 · 错题管理`}),(0,Y.jsxs)(TS,{spinning:l,children:[!l&&!s&&(0,Y.jsx)(rE.Paragraph,{type:`secondary`,style:{textAlign:`center`,marginBottom:16},children:`注册已关闭,请联系管理员获取账号`}),(0,Y.jsx)(sg,{items:p})]}),(0,Y.jsx)(rE.Paragraph,{type:`secondary`,style:{textAlign:`center`,fontSize:12,marginTop:16,marginBottom:0},children:`© 马建军 · 微信 dekun03 · 18364911125`})]})})}function jxe(){let{user:e}=_k(),[t,n]=(0,h.useState)(null),[r,i]=(0,h.useState)([]),[a,o]=(0,h.useState)(!0),[s]=ky.useForm(),[c]=ky.useForm(),[l,u]=(0,h.useState)(!1),[d,f]=(0,h.useState)(null),[p]=ky.useForm(),[m]=ky.useForm(),g=ky.useWatch(`ai_provider`,m);if(!e?.is_superuser)return(0,Y.jsx)(wD,{to:`/`,replace:!0});let _=async()=>{o(!0);try{let[t,r]=await Promise.all([fk.getSettings(),fk.listUsers()]);n(t.data),i(r.data),s.setFieldsValue({username:e.username}),m.setFieldsValue({ai_provider:t.data.ai_provider,ollama_base_url:t.data.ollama_base_url||``,ollama_model:t.data.ollama_model||``,openai_base_url:t.data.openai_base_url||``,openai_model:t.data.openai_model||``,openai_api_key:``})}finally{o(!1)}};(0,h.useEffect)(()=>{_()},[]);let v=async e=>{let{data:t}=await fk.updateSettings({registration_enabled:e});n(t),rx.success(e?`已开放注册`:`已关闭注册`)},y=async t=>{if(t.password&&t.password!==t.confirm){rx.error(`两次密码不一致`);return}await fk.updateProfile({username:t.username===e?.username?void 0:t.username,current_password:t.password?t.current_password:void 0,password:t.password||void 0}),rx.success(`账号信息已更新,若修改了用户名或密码请重新登录`)},b=async e=>{await fk.createUser(e),rx.success(`用户已创建`),u(!1),c.resetFields(),_()},x=async e=>{d&&(await fk.resetUserPassword(d.id,e.password),rx.success(`密码已重置`),f(null),p.resetFields())},S=async e=>{await fk.deleteUser(e),rx.success(`用户已删除`),_()};return(0,Y.jsxs)(`div`,{className:`page-container`,children:[(0,Y.jsxs)(Py,{direction:`vertical`,size:`large`,style:{width:`100%`},children:[(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(rE.Title,{level:3,style:{margin:0},children:`系统设置`}),(0,Y.jsxs)(rE.Text,{type:`secondary`,children:[`超级管理员 · `,(0,Y.jsx)(RD,{to:`/`,children:`返回首页`})]})]}),(0,Y.jsx)(sg,{items:[{key:`general`,label:`基本设置`,children:(0,Y.jsxs)(Py,{direction:`vertical`,size:`large`,style:{width:`100%`},children:[(0,Y.jsx)(lg,{title:`注册开关`,loading:a,children:(0,Y.jsxs)(Py,{children:[(0,Y.jsx)(Nde,{checked:t?.registration_enabled??!0,onChange:v}),(0,Y.jsx)(rE.Text,{children:t?.registration_enabled?`开放注册:用户可在登录页自行注册`:`关闭注册:仅超级管理员可添加用户`})]})}),(0,Y.jsx)(lg,{title:`管理员账号`,children:(0,Y.jsxs)(ky,{form:s,layout:`vertical`,onFinish:y,children:[(0,Y.jsx)(ky.Item,{name:`username`,label:`用户名`,rules:[{required:!0,min:3}],children:(0,Y.jsx)(ib,{prefix:(0,Y.jsx)(Ok,{})})}),(0,Y.jsx)(ky.Item,{name:`current_password`,label:`当前密码(修改密码时必填)`,children:(0,Y.jsx)(ib.Password,{prefix:(0,Y.jsx)(xk,{})})}),(0,Y.jsx)(ky.Item,{name:`password`,label:`新密码(留空则不修改)`,children:(0,Y.jsx)(ib.Password,{prefix:(0,Y.jsx)(xk,{})})}),(0,Y.jsx)(ky.Item,{name:`confirm`,label:`确认新密码`,children:(0,Y.jsx)(ib.Password,{prefix:(0,Y.jsx)(xk,{})})}),(0,Y.jsx)(_p,{type:`primary`,htmlType:`submit`,icon:(0,Y.jsx)(Tk,{}),children:`保存`})]})})]})},{key:`ai`,label:`AI 模型`,children:(0,Y.jsx)(lg,{title:`解题 AI 配置`,loading:a,children:(0,Y.jsxs)(ky,{form:m,layout:`vertical`,onFinish:async e=>{let t={ai_provider:e.ai_provider,ollama_base_url:e.ollama_base_url||null,ollama_model:e.ollama_model||null,openai_base_url:e.openai_base_url||null,openai_model:e.openai_model||null};e.openai_api_key?.trim()&&(t.openai_api_key=e.openai_api_key.trim());let{data:r}=await fk.updateSettings(t);n(r),m.setFieldValue(`openai_api_key`,``),rx.success(`AI 模型配置已保存`)},children:[(0,Y.jsx)(ky.Item,{name:`ai_provider`,label:`AI 提供商`,rules:[{required:!0}],children:(0,Y.jsxs)(Tx.Group,{children:[(0,Y.jsx)(Tx.Button,{value:`ollama`,children:`本地 Ollama`}),(0,Y.jsx)(Tx.Button,{value:`openai`,children:`OpenAI 兼容 API`})]})}),(g||t?.ai_provider)===`ollama`&&(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsx)(ky.Item,{name:`ollama_base_url`,label:`Ollama 地址`,children:(0,Y.jsx)(ib,{placeholder:`http://127.0.0.1:11434`})}),(0,Y.jsx)(ky.Item,{name:`ollama_model`,label:`Ollama 模型`,children:(0,Y.jsx)(ib,{placeholder:`qwen2.5:7b`})})]}),(g||t?.ai_provider)===`openai`&&(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsx)(ky.Item,{name:`openai_base_url`,label:`API Base URL`,children:(0,Y.jsx)(ib,{placeholder:`https://api.openai.com/v1`})}),(0,Y.jsx)(ky.Item,{name:`openai_model`,label:`模型名称`,children:(0,Y.jsx)(ib,{placeholder:`gpt-4o-mini`})}),(0,Y.jsx)(ky.Item,{name:`openai_api_key`,label:`API Key`,extra:t?.openai_api_key_set?`已配置 Key,留空则不修改`:`请输入 API Key`,children:(0,Y.jsx)(ib.Password,{placeholder:`sk-...`})})]}),(0,Y.jsx)(rE.Paragraph,{type:`secondary`,children:`错题/奥数解法将按学生学段(初中/高中)生成,并严格禁止超纲解题。`}),(0,Y.jsx)(_p,{type:`primary`,htmlType:`submit`,children:`保存 AI 配置`})]})})},{key:`users`,label:`用户管理`,children:(0,Y.jsx)(lg,{title:`用户列表`,extra:(0,Y.jsx)(_p,{type:`primary`,onClick:()=>u(!0),children:`添加用户`}),children:(0,Y.jsx)(OT,{rowKey:`id`,loading:a,dataSource:r,pagination:!1,columns:[{title:`用户名`,dataIndex:`username`},{title:`角色`,dataIndex:`is_superuser`,render:e=>e?`超级管理员`:`普通用户`},{title:`创建时间`,dataIndex:`created_at`,render:e=>new Date(e).toLocaleString()},{title:`操作`,render:(e,t)=>t.is_superuser?(0,Y.jsx)(rE.Text,{type:`secondary`,children:`—`}):(0,Y.jsxs)(Py,{children:[(0,Y.jsx)(_p,{size:`small`,onClick:()=>f(t),children:`重置密码`}),(0,Y.jsx)(xx,{title:`确定删除该用户?`,onConfirm:()=>S(t.id),children:(0,Y.jsx)(_p,{size:`small`,danger:!0,children:`删除`})})]})}]})})}]})]}),(0,Y.jsx)(yx,{title:`添加用户`,open:l,onCancel:()=>u(!1),onOk:()=>c.submit(),destroyOnHidden:!0,children:(0,Y.jsxs)(ky,{form:c,layout:`vertical`,onFinish:b,children:[(0,Y.jsx)(ky.Item,{name:`username`,label:`用户名`,rules:[{required:!0,min:3}],children:(0,Y.jsx)(ib,{})}),(0,Y.jsx)(ky.Item,{name:`password`,label:`密码`,rules:[{required:!0,min:6}],children:(0,Y.jsx)(ib.Password,{})})]})}),(0,Y.jsx)(yx,{title:`重置密码 — ${d?.username}`,open:!!d,onCancel:()=>f(null),onOk:()=>p.submit(),destroyOnHidden:!0,children:(0,Y.jsx)(ky,{form:p,layout:`vertical`,onFinish:x,children:(0,Y.jsx)(ky.Item,{name:`password`,label:`新密码`,rules:[{required:!0,min:6}],children:(0,Y.jsx)(ib.Password,{})})})})]})}var Ak={weekly:`周考`,monthly:`月考`,final:`期末`},jk={pending:`处理中`,ocr_done:`已识别`,solved:`已生成解法`,failed:`失败`};function Mxe({studentId:e,subjects:t,exams:n,onRefresh:r}){let[i,a]=(0,h.useState)(!1),[o,s]=(0,h.useState)(null),[c]=ky.useForm(),[l,u]=(0,h.useState)(!1);(0,h.useEffect)(()=>{i&&o?c.setFieldsValue({exam_type:o.exam_type,exam_date:(0,xg.default)(o.exam_date),title:o.title,scores:t.map(e=>{let t=o.scores.find(t=>t.subject_id===e.id);return t?{subject_id:e.id,total_score:t.total_score,obtained_score:t.obtained_score}:{subject_id:e.id,total_score:void 0,obtained_score:void 0}})}):i&&c.setFieldsValue({exam_type:`weekly`,exam_date:(0,xg.default)(),scores:t.map(e=>({subject_id:e.id}))})},[i,o,t,c]);let d=()=>{s(null),a(!0)},f=e=>{s(e),a(!0)},p=async()=>{try{let n=await c.validateFields(),i=(n.scores||[]).map((e,n)=>({subject_id:t[n]?.id??e.subject_id,total_score:e.total_score,obtained_score:e.obtained_score})).filter(e=>e.subject_id!=null&&e.total_score!=null&&e.obtained_score!=null&&e.total_score>0).map(e=>({subject_id:e.subject_id,total_score:Number(e.total_score),obtained_score:Number(e.obtained_score)}));if(i.length===0){rx.warning(`请至少录入一科成绩`);return}u(!0);let s={exam_type:n.exam_type,exam_date:n.exam_date.format(`YYYY-MM-DD`),title:n.title||void 0,scores:i};o?(await mk.update(o.id,s),rx.success(`已更新`)):(await mk.create(e,s),rx.success(`已添加`)),a(!1),r()}catch{}finally{u(!1)}},m=async e=>{yx.confirm({title:`确认删除该考试记录?`,onOk:async()=>{await mk.remove(e.id),rx.success(`已删除`),r()}})};return(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(_p,{type:`primary`,onClick:d,style:{marginBottom:16},children:`录入成绩`}),(0,Y.jsx)(OT,{rowKey:`id`,columns:[{title:`日期`,dataIndex:`exam_date`,key:`exam_date`,width:110},{title:`类型`,dataIndex:`exam_type`,key:`exam_type`,width:80,render:e=>Ak[e]},{title:`标题`,dataIndex:`title`,key:`title`,ellipsis:!0},{title:`科目数`,key:`count`,width:80,render:(e,t)=>t.scores.length},{title:`平均占比`,key:`avg`,width:100,render:(e,t)=>t.scores.length?`${(t.scores.reduce((e,t)=>e+t.ratio,0)/t.scores.length*100).toFixed(1)}%`:`-`},{title:`操作`,key:`action`,width:120,render:(e,t)=>(0,Y.jsxs)(Py,{children:[(0,Y.jsx)(_p,{type:`link`,icon:(0,Y.jsx)(IT,{}),onClick:()=>f(t)}),(0,Y.jsx)(_p,{type:`link`,danger:!0,icon:(0,Y.jsx)(bE,{}),onClick:()=>m(t)})]})}],dataSource:n,pagination:{pageSize:10},scroll:{x:600}}),(0,Y.jsx)(yx,{title:o?`编辑考试`:`录入成绩`,open:i,onCancel:()=>a(!1),onOk:p,confirmLoading:l,width:720,destroyOnHidden:!0,children:(0,Y.jsxs)(ky,{form:c,layout:`vertical`,children:[(0,Y.jsxs)(Py,{style:{width:`100%`},size:`large`,children:[(0,Y.jsx)(ky.Item,{name:`exam_type`,label:`考试类型`,rules:[{required:!0}],children:(0,Y.jsx)(gS,{style:{width:120},options:Object.entries(Ak).map(([e,t])=>({value:e,label:t}))})}),(0,Y.jsx)(ky.Item,{name:`exam_date`,label:`考试日期`,rules:[{required:!0}],children:(0,Y.jsx)(Hv,{})}),(0,Y.jsx)(ky.Item,{name:`title`,label:`备注标题`,children:(0,Y.jsx)(ib,{placeholder:`可选`,style:{width:200}})})]}),(0,Y.jsx)(ky.List,{name:`scores`,children:e=>(0,Y.jsx)(OT,{size:`small`,pagination:!1,dataSource:e.map((e,n)=>({...e,subject:t[n]})),rowKey:`key`,columns:[{title:`科目`,render:(e,t)=>(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsx)(ky.Item,{name:[t.name,`subject_id`],hidden:!0,initialValue:t.subject?.id,children:(0,Y.jsx)(Tb,{})}),t.subject?.name]})},{title:`总分`,render:(e,t)=>(0,Y.jsx)(ky.Item,{name:[t.name,`total_score`],noStyle:!0,children:(0,Y.jsx)(Tb,{min:0,placeholder:`总分`,style:{width:100}})})},{title:`得分`,render:(e,t)=>(0,Y.jsx)(ky.Item,{name:[t.name,`obtained_score`],noStyle:!0,children:(0,Y.jsx)(Tb,{min:0,placeholder:`得分`,style:{width:100}})})},{title:`占比`,render:(e,t)=>{let n=c.getFieldValue([`scores`,t.name,`total_score`]),r=c.getFieldValue([`scores`,t.name,`obtained_score`]);return n>0&&r!=null?`${(r/n*100).toFixed(1)}%`:`-`}}]})})]})})]})}function Nxe({exams:e,subjectNames:t}){let n=new Set;e.forEach(e=>e.scores.forEach(e=>n.add(e.subject_id)));let r=[{title:`日期`,dataIndex:`exam_date`,key:`date`,width:110,fixed:`left`},{title:`类型`,dataIndex:`exam_type`,key:`type`,width:80,render:e=>(0,Y.jsx)(PT,{children:Ak[e]})},...[...n].sort((e,t)=>e-t).map(e=>({title:t[e]||`科目${e}`,key:`s${e}`,width:100,render:(t,n)=>{let r=n.scores.find(t=>t.subject_id===e);return r?`${r.obtained_score}/${r.total_score} (${(r.ratio*100).toFixed(1)}%)`:`-`}}))],i=e.filter(t=>t.scores.some(n=>{let r=e.filter(e=>e.exam_date<=t.exam_date).flatMap(e=>e.scores.filter(e=>e.subject_id===n.subject_id)).sort((t,n)=>{let r=e.find(e=>e.scores.includes(t)),i=e.find(e=>e.scores.includes(n));return(r?.exam_date||``).localeCompare(i?.exam_date||``)}),i=r.findIndex(e=>e.id===n.id);return i<=0?!1:Math.abs(r[i].ratio-r[i-1].ratio)>=.08}));return(0,Y.jsxs)(`div`,{children:[i.length>0&&(0,Y.jsxs)(`div`,{style:{marginBottom:16,padding:12,background:`#fff7e6`,borderRadius:8},children:[(0,Y.jsx)(`strong`,{children:`波动预警:`}),i.slice(0,5).map(e=>(0,Y.jsxs)(PT,{color:`orange`,style:{marginTop:4},children:[e.exam_date,` `,Ak[e.exam_type]]},e.id))]}),(0,Y.jsx)(OT,{rowKey:`id`,columns:r,dataSource:[...e].sort((e,t)=>t.exam_date.localeCompare(e.exam_date)),pagination:{pageSize:15},scroll:{x:`max-content`},size:`small`})]})}var Mk=function(e,t){return Mk=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},Mk(e,t)};function Nk(e,t){if(typeof t!=`function`&&t!==null)throw TypeError(`Class extends value `+String(t)+` is not a constructor or null`);Mk(e,t);function n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}var Pk=function(){return Pk=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&a[a.length-1]))&&(s[0]===6||s[0]===2)){n=0;continue}if(s[0]===3&&(!a||s[1]>a[0]&&s[1]`u`&&typeof self<`u`?Rk.worker=!0:!Rk.hasGlobalWindow||`Deno`in window||typeof navigator<`u`&&typeof navigator.userAgent==`string`&&navigator.userAgent.indexOf(`Node.js`)>-1?(Rk.node=!0,Rk.svgSupported=!0):Ixe(navigator.userAgent,Rk);function Ixe(e,t){var n=t.browser,r=e.match(/Firefox\/([\d.]+)/),i=e.match(/MSIE\s([\d.]+)/)||e.match(/Trident\/.+?rv:(([\d.]+))/),a=e.match(/Edge?\/([\d.]+)/),o=/micromessenger/i.test(e);if(r&&(n.firefox=!0,n.version=r[1]),i&&(n.ie=!0,n.version=i[1]),a&&(n.edge=!0,n.version=a[1],n.newEdge=+a[1].split(`.`)[0]>18),o&&(n.weChat=!0),t.svgSupported=typeof SVGRect<`u`,t.touchEventsSupported=`ontouchstart`in window&&!n.ie&&!n.edge,t.pointerEventsSupported=`onpointerdown`in window&&(n.edge||n.ie&&+n.version>=11),t.domSupported=typeof document<`u`){var s=document.documentElement.style;t.transform3dSupported=(n.ie&&`transition`in s||n.edge||`WebKitCSSMatrix`in window&&`m11`in new WebKitCSSMatrix||`MozPerspective`in s)&&!(`OTransition`in s),t.transformSupported=t.transform3dSupported||n.ie&&+n.version>=9}}var Lxe=`12px sans-serif`,Rxe=20,zxe=100,Bxe=`007LLmW'55;N0500LLLLLLLLLL00NNNLzWW\\\\WQb\\0FWLg\\bWb\\WQ\\WrWWQ000CL5LLFLL0LL**F*gLLLL5F0LF\\FFF5.5N`;function Vxe(e){var t={};if(typeof JSON>`u`)return t;for(var n=0;n=0)s=o*n.length;else for(var c=0;cQxe,HashMap:()=>RA,RADIAN_TO_DEGREE:()=>GA,assert:()=>MA,assignProps:()=>tA,bind:()=>fA,clone:()=>Qk,concatArray:()=>BA,createCanvas:()=>Jxe,createHashMap:()=>zA,createObject:()=>VA,curry:()=>pA,defaults:()=>nA,disableUserSelect:()=>HA,each:()=>Q,eqNaN:()=>EA,extend:()=>Z,filter:()=>lA,find:()=>uA,guid:()=>Xk,hasOwn:()=>UA,indexOf:()=>rA,inherits:()=>iA,isArray:()=>mA,isArrayLike:()=>oA,isBuiltInObject:()=>bA,isDom:()=>SA,isFunction:()=>hA,isGradientObject:()=>CA,isImagePatternObject:()=>wA,isNumber:()=>vA,isObject:()=>yA,isPrimitive:()=>IA,isRegExp:()=>TA,isString:()=>gA,isStringSafe:()=>_A,isTypedArray:()=>xA,keys:()=>dA,logError:()=>Zk,map:()=>sA,merge:()=>$k,mergeAll:()=>eA,mixin:()=>aA,noop:()=>WA,normalizeCssArray:()=>jA,reduce:()=>cA,retrieve:()=>DA,retrieve2:()=>OA,retrieve3:()=>kA,setAsPrimitive:()=>FA,slice:()=>AA,trim:()=>NA}),Vk=cA([`Function`,`RegExp`,`Date`,`Error`,`CanvasGradient`,`CanvasPattern`,`Image`,`Canvas`],function(e,t){return e[`[object `+t+`]`]=!0,e},{}),Hk=cA([`Int8`,`Uint8`,`Uint8Clamped`,`Int16`,`Uint16`,`Int32`,`Uint32`,`Float32`,`Float64`],function(e,t){return e[`[object `+t+`Array]`]=!0,e},{}),Uk=Object.prototype.toString,Wk=Array.prototype,Wxe=Wk.forEach,Gxe=Wk.filter,Gk=Wk.slice,Kxe=Wk.map,Kk=function(){}.constructor,qk=Kk?Kk.prototype:null,Jk=`__proto__`,Yk=2311,qxe=2**53-1;function Xk(){return Yk>=qxe&&(Yk=0),Yk++}function Zk(){var e=[...arguments];typeof console<`u`&&console.error.apply(console,e)}function Qk(e){if(typeof e!=`object`||!e)return e;var t=e,n=Uk.call(e);if(n===`[object Array]`){if(!IA(e)){t=[];for(var r=0,i=e.length;rQA,applyTransform:()=>uj,clone:()=>XA,copy:()=>YA,create:()=>JA,dist:()=>oj,distSquare:()=>cj,distance:()=>aj,distanceSquare:()=>sj,div:()=>rSe,dot:()=>iSe,len:()=>tj,lenSquare:()=>nj,length:()=>eSe,lengthSquare:()=>tSe,lerp:()=>lj,max:()=>fj,min:()=>dj,mul:()=>nSe,negate:()=>aSe,normalize:()=>ij,scale:()=>rj,scaleAndAdd:()=>$A,set:()=>ZA,sub:()=>ej});function JA(e,t){return e??=0,t??=0,[e,t]}function YA(e,t){return e[0]=t[0],e[1]=t[1],e}function XA(e){return[e[0],e[1]]}function ZA(e,t,n){return e[0]=t,e[1]=n,e}function QA(e,t,n){return e[0]=t[0]+n[0],e[1]=t[1]+n[1],e}function $A(e,t,n,r){return e[0]=t[0]+n[0]*r,e[1]=t[1]+n[1]*r,e}function ej(e,t,n){return e[0]=t[0]-n[0],e[1]=t[1]-n[1],e}function tj(e){return Math.sqrt(nj(e))}var eSe=tj;function nj(e){return e[0]*e[0]+e[1]*e[1]}var tSe=nj;function nSe(e,t,n){return e[0]=t[0]*n[0],e[1]=t[1]*n[1],e}function rSe(e,t,n){return e[0]=t[0]/n[0],e[1]=t[1]/n[1],e}function iSe(e,t){return e[0]*t[0]+e[1]*t[1]}function rj(e,t,n){return e[0]=t[0]*n,e[1]=t[1]*n,e}function ij(e,t){var n=tj(t);return n===0?(e[0]=0,e[1]=0):(e[0]=t[0]/n,e[1]=t[1]/n),e}function aj(e,t){return Math.sqrt((e[0]-t[0])*(e[0]-t[0])+(e[1]-t[1])*(e[1]-t[1]))}var oj=aj;function sj(e,t){return(e[0]-t[0])*(e[0]-t[0])+(e[1]-t[1])*(e[1]-t[1])}var cj=sj;function aSe(e,t){return e[0]=-t[0],e[1]=-t[1],e}function lj(e,t,n,r){return e[0]=t[0]+r*(n[0]-t[0]),e[1]=t[1]+r*(n[1]-t[1]),e}function uj(e,t,n){var r=t[0],i=t[1];return e[0]=n[0]*r+n[2]*i+n[4],e[1]=n[1]*r+n[3]*i+n[5],e}function dj(e,t,n){return e[0]=Math.min(t[0],n[0]),e[1]=Math.min(t[1],n[1]),e}function fj(e,t,n){return e[0]=Math.max(t[0],n[0]),e[1]=Math.max(t[1],n[1]),e}var pj=function(){function e(e,t){this.target=e,this.topTarget=t&&t.topTarget}return e}(),oSe=function(){function e(e){this.handler=e,e.on(`mousedown`,this._dragStart,this),e.on(`mousemove`,this._drag,this),e.on(`mouseup`,this._dragEnd,this)}return e.prototype._dragStart=function(e){for(var t=e.target;t&&!t.draggable;)t=t.parent||t.__hostTarget;t&&(this._draggingTarget=t,t.dragging=!0,this._x=e.offsetX,this._y=e.offsetY,this.handler.dispatchToElement(new pj(t,e),`dragstart`,e.event))},e.prototype._drag=function(e){var t=this._draggingTarget;if(t){var n=e.offsetX,r=e.offsetY,i=n-this._x,a=r-this._y;this._x=n,this._y=r,t.drift(i,a,e),this.handler.dispatchToElement(new pj(t,e),`drag`,e.event);var o=this.handler.findHover(n,r,t).target,s=this._dropTarget;this._dropTarget=o,t!==o&&(s&&o!==s&&this.handler.dispatchToElement(new pj(s,e),`dragleave`,e.event),o&&o!==s&&this.handler.dispatchToElement(new pj(o,e),`dragenter`,e.event))}},e.prototype._dragEnd=function(e){var t=this._draggingTarget;t&&(t.dragging=!1),this.handler.dispatchToElement(new pj(t,e),`dragend`,e.event),this._dropTarget&&this.handler.dispatchToElement(new pj(this._dropTarget,e),`drop`,e.event),this._draggingTarget=null,this._dropTarget=null},e}(),mj=function(){function e(e){e&&(this._$eventProcessor=e)}return e.prototype.on=function(e,t,n,r){this._$handlers||={};var i=this._$handlers;if(typeof t==`function`&&(r=n,n=t,t=null),!n||!e)return this;var a=this._$eventProcessor;t!=null&&a&&a.normalizeQuery&&(t=a.normalizeQuery(t)),i[e]||(i[e]=[]);for(var o=0;o>1)%2;s.cssText=[`position: absolute`,`visibility: hidden`,`padding: 0`,`margin: 0`,`border-width: 0`,`user-select: none`,`width:0`,`height:0`,r[c]+`:0`,i[l]+`:0`,r[1-c]+`:auto`,i[1-l]+`:auto`,``].join(`!important;`),e.appendChild(o),n.push(o)}return t.clearMarkers=function(){Q(n,function(e){e.parentNode&&e.parentNode.removeChild(e)})},n}function dSe(e,t,n){for(var r=n?`invTrans`:`trans`,i=t[r],a=t.srcCoords,o=[],s=[],c=!0,l=0;l<4;l++){var u=e[l].getBoundingClientRect(),d=2*l,f=u.left,p=u.top;o.push(f,p),c=c&&a&&f===a[d]&&p===a[d+1],s.push(e[l].offsetLeft,e[l].offsetTop)}return c&&i?i:(t.srcCoords=o,t[r]=n?gj(s,o):gj(o,s))}function bj(e){return e.nodeName.toUpperCase()===`CANVAS`}var fSe=/([&<>"'])/g,pSe={"&":`&`,"<":`<`,">":`>`,'"':`"`,"'":`'`};function xj(e){return e==null?``:(e+``).replace(fSe,function(e,t){return pSe[t]})}var mSe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Sj=[],hSe=Rk.browser.firefox&&+Rk.browser.version.split(`.`)[0]<39;function Cj(e,t,n,r){return n||={},r?wj(e,t,n):hSe&&t.layerX!=null&&t.layerX!==t.offsetX?(n.zrX=t.layerX,n.zrY=t.layerY):t.offsetX==null?wj(e,t,n):(n.zrX=t.offsetX,n.zrY=t.offsetY),n}function wj(e,t,n){if(Rk.domSupported&&e.getBoundingClientRect){var r=t.clientX,i=t.clientY;if(bj(e)){var a=e.getBoundingClientRect();n.zrX=r-a.left,n.zrY=i-a.top;return}else if(yj(Sj,e,r,i)){n.zrX=Sj[0],n.zrY=Sj[1];return}}n.zrX=n.zrY=0}function Tj(e){return e||window.event}function Ej(e,t,n){if(t=Tj(t),t.zrX!=null)return t;var r=t.type;if(r&&r.indexOf(`touch`)>=0){var i=r===`touchend`?t.changedTouches[0]:t.targetTouches[0];i&&Cj(e,i,t,n)}else{Cj(e,t,t,n);var a=gSe(t);t.zrDelta=a?a/120:-(t.detail||0)/3}var o=t.button;return t.which==null&&o!==void 0&&mSe.test(t.type)&&(t.which=o&1?1:o&2?3:o&4?2:0),t}function gSe(e){var t=e.wheelDelta;if(t)return t;var n=e.deltaX,r=e.deltaY;if(n==null||r==null)return t;var i=Math.abs(r===0?n:r),a=r>0?-1:r<0?1:n>0?-1:1;return 3*i*a}function Dj(e,t,n,r){e.addEventListener(t,n,r)}function _Se(e,t,n,r){e.removeEventListener(t,n,r)}var Oj=function(e){e.preventDefault(),e.stopPropagation(),e.cancelBubble=!0};function kj(e){return e.which===2||e.which===3}var vSe=function(){function e(){this._track=[]}return e.prototype.recognize=function(e,t,n){return this._doTrack(e,t,n),this._recognize(e)},e.prototype.clear=function(){return this._track.length=0,this},e.prototype._doTrack=function(e,t,n){var r=e.touches;if(r){for(var i={points:[],touches:[],target:t,event:e},a=0,o=r.length;a1&&r&&r.length>1){var a=Aj(r)/Aj(i);!isFinite(a)&&(a=1),t.pinchScale=a;var o=ySe(r);return t.pinchX=o[0],t.pinchY=o[1],{type:`pinch`,target:e[0].target,event:t}}}}},bSe=s({clone:()=>Bj,copy:()=>Pj,create:()=>Mj,identity:()=>Nj,invert:()=>zj,mul:()=>Fj,rotate:()=>Lj,scale:()=>Rj,translate:()=>Ij});function Mj(){return[1,0,0,1,0,0]}function Nj(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=1,e[4]=0,e[5]=0,e}function Pj(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e}function Fj(e,t,n){var r=t[0]*n[0]+t[2]*n[1],i=t[1]*n[0]+t[3]*n[1],a=t[0]*n[2]+t[2]*n[3],o=t[1]*n[2]+t[3]*n[3],s=t[0]*n[4]+t[2]*n[5]+t[4],c=t[1]*n[4]+t[3]*n[5]+t[5];return e[0]=r,e[1]=i,e[2]=a,e[3]=o,e[4]=s,e[5]=c,e}function Ij(e,t,n){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4]+n[0],e[5]=t[5]+n[1],e}function Lj(e,t,n,r){r===void 0&&(r=[0,0]);var i=t[0],a=t[2],o=t[4],s=t[1],c=t[3],l=t[5],u=Math.sin(n),d=Math.cos(n);return e[0]=i*d+s*u,e[1]=-i*u+s*d,e[2]=a*d+c*u,e[3]=-a*u+d*c,e[4]=d*(o-r[0])+u*(l-r[1])+r[0],e[5]=d*(l-r[1])-u*(o-r[0])+r[1],e}function Rj(e,t,n){var r=n[0],i=n[1];return e[0]=t[0]*r,e[1]=t[1]*i,e[2]=t[2]*r,e[3]=t[3]*i,e[4]=t[4]*r,e[5]=t[5]*i,e}function zj(e,t){var n=t[0],r=t[2],i=t[4],a=t[1],o=t[3],s=t[5],c=n*o-a*r;return c?(c=1/c,e[0]=o*c,e[1]=-a*c,e[2]=-r*c,e[3]=n*c,e[4]=(r*s-o*i)*c,e[5]=(a*i-n*s)*c,e):null}function Bj(e){var t=Mj();return Pj(t,e),t}var Vj=function(){function e(e,t){this.x=e||0,this.y=t||0}return e.prototype.copy=function(e){return this.x=e.x,this.y=e.y,this},e.prototype.clone=function(){return new e(this.x,this.y)},e.prototype.set=function(e,t){return this.x=e,this.y=t,this},e.prototype.equal=function(e){return e.x===this.x&&e.y===this.y},e.prototype.add=function(e){return this.x+=e.x,this.y+=e.y,this},e.prototype.scale=function(e){this.x*=e,this.y*=e},e.prototype.scaleAndAdd=function(e,t){this.x+=e.x*t,this.y+=e.y*t},e.prototype.sub=function(e){return this.x-=e.x,this.y-=e.y,this},e.prototype.dot=function(e){return this.x*e.x+this.y*e.y},e.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},e.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},e.prototype.normalize=function(){var e=this.len();return this.x/=e,this.y/=e,this},e.prototype.distance=function(e){var t=this.x-e.x,n=this.y-e.y;return Math.sqrt(t*t+n*n)},e.prototype.distanceSquare=function(e){var t=this.x-e.x,n=this.y-e.y;return t*t+n*n},e.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},e.prototype.transform=function(e){if(e){var t=this.x,n=this.y;return this.x=e[0]*t+e[2]*n+e[4],this.y=e[1]*t+e[3]*n+e[5],this}},e.prototype.toArray=function(e){return e[0]=this.x,e[1]=this.y,e},e.prototype.fromArray=function(e){this.x=e[0],this.y=e[1]},e.set=function(e,t,n){e.x=t,e.y=n},e.copy=function(e,t){e.x=t.x,e.y=t.y},e.len=function(e){return Math.sqrt(e.x*e.x+e.y*e.y)},e.lenSquare=function(e){return e.x*e.x+e.y*e.y},e.dot=function(e,t){return e.x*t.x+e.y*t.y},e.add=function(e,t,n){e.x=t.x+n.x,e.y=t.y+n.y},e.sub=function(e,t,n){e.x=t.x-n.x,e.y=t.y-n.y},e.scale=function(e,t,n){e.x=t.x*n,e.y=t.y*n},e.scaleAndAdd=function(e,t,n,r){e.x=t.x+n.x*r,e.y=t.y+n.y*r},e.lerp=function(e,t,n,r){var i=1-r;e.x=i*t.x+r*n.x,e.y=i*t.y+r*n.y},e}(),Hj=Math.min,Uj=Math.max,Wj=Math.abs,Gj=[`x`,`y`],xSe=[`width`,`height`],Kj=new Vj,qj=new Vj,Jj=new Vj,Yj=new Vj,Xj=cM(),Zj=Xj.minTv,Qj=Xj.maxTv,$j=[0,0],eM=function(){function e(e,t,n,r){nM(this,e,t,n,r)}return e.set=function(e,t,n,r,i){return r<0&&(t+=r,r=-r),i<0&&(n+=i,i=-i),e.x=t,e.y=n,e.width=r,e.height=i,e},e.prototype.union=function(e){var t=Hj(e.x,this.x),n=Hj(e.y,this.y);isFinite(this.x)&&isFinite(this.width)?this.width=Uj(e.x+e.width,this.x+this.width)-t:this.width=e.width,isFinite(this.y)&&isFinite(this.height)?this.height=Uj(e.y+e.height,this.y+this.height)-n:this.height=e.height,this.x=t,this.y=n},e.prototype.applyTransform=function(t){e.applyTransform(this,this,t)},e.prototype.calculateTransform=function(e){return iM(Mj(),this,e)},e.prototype.intersect=function(t,n,r){return e.intersect(this,t,n,r)},e.intersect=function(t,n,r,i){r&&Vj.set(r,0,0);var a=i&&i.outIntersectRect||null,o=i&&i.clamp;if(a&&(a.x=a.y=a.width=a.height=NaN),!t||!n)return!1;t instanceof e||(t=nM(CSe,t.x,t.y,t.width,t.height)),n instanceof e||(n=nM(wSe,n.x,n.y,n.width,n.height));var s=!!r;Xj.reset(i,s);var c=Xj.touchThreshold,l=t.x+c,u=t.x+t.width-c,d=t.y+c,f=t.y+t.height-c,p=n.x+c,m=n.x+n.width-c,h=n.y+c,g=n.y+n.height-c;if(l>u||d>f||p>m||h>g)return!1;var _=!(u=e.x&&t<=e.x+e.width&&n>=e.y&&n<=e.y+e.height},e.prototype.contain=function(t,n){return e.contain(this,t,n)},e.prototype.clone=function(){return new e(this.x,this.y,this.width,this.height)},e.prototype.copy=function(e){rM(this,e)},e.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},e.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},e.prototype.isZero=function(){return this.width===0||this.height===0},e.create=function(t){return new e(t?t.x:0,t?t.y:0,t?t.width:0,t?t.height:0)},e.copy=function(e,t){return e.x=t.x,e.y=t.y,e.width=t.width,e.height=t.height,e},e.applyTransform=function(e,t,n){if(!n){e!==t&&rM(e,t);return}if(n[1]<1e-5&&n[1]>-1e-5&&n[2]<1e-5&&n[2]>-1e-5){var r=n[0],i=n[3],a=n[4],o=n[5];e.x=t.x*r+a,e.y=t.y*i+o,e.width=t.width*r,e.height=t.height*i,e.width<0&&(e.x+=e.width,e.width=-e.width),e.height<0&&(e.y+=e.height,e.height=-e.height);return}Kj.x=Jj.x=t.x,Kj.y=Yj.y=t.y,qj.x=Yj.x=t.x+t.width,qj.y=Jj.y=t.y+t.height,Kj.transform(n),Yj.transform(n),qj.transform(n),Jj.transform(n),e.x=Hj(Kj.x,qj.x,Jj.x,Yj.x),e.y=Hj(Kj.y,qj.y,Jj.y,Yj.y);var s=Uj(Kj.x,qj.x,Jj.x,Yj.x),c=Uj(Kj.y,qj.y,Jj.y,Yj.y);e.width=s-e.x,e.height=c-e.y},e.calculateTransform=function(e,t,n){var r=n.width/t.width,i=n.height/t.height;return e=Nj(e||[]),Ij(e,e,ZA(oM,-t.x,-t.y)),Rj(e,e,ZA(oM,r,i)),Ij(e,e,ZA(oM,n.x,n.y)),e},e}(),tM=eM.create,nM=eM.set,rM=eM.copy,iM=eM.calculateTransform,aM=eM.applyTransform,SSe=eM.contain,CSe=new eM(0,0,0,0),wSe=new eM(0,0,0,0),oM=[];function sM(e,t,n,r,i,a,o,s){var c=Wj(t-n),l=Wj(r-e),u=Hj(c,l),d=Gj[i],f=Gj[1-i],p=xSe[i];t=l||!Xj.bidirectional)&&(Zj[d]=-l,Zj[f]=0,Xj.useDir&&Xj.calcDirMTV())))}function cM(){var e=0,t=new Vj,n=new Vj,r={minTv:new Vj,maxTv:new Vj,useDir:!1,dirMinTv:new Vj,touchThreshold:0,bidirectional:!0,negativeSize:!1,reset:function(i,a){r.touchThreshold=0,i&&i.touchThreshold!=null&&(r.touchThreshold=Uj(0,i.touchThreshold)),r.negativeSize=!1,a&&(r.minTv.set(1/0,1/0),r.maxTv.set(0,0),r.useDir=!1,i&&i.direction!=null&&(r.useDir=!0,r.dirMinTv.copy(r.minTv),n.copy(r.minTv),e=i.direction,r.bidirectional=i.bidirectional==null||!!i.bidirectional,r.bidirectional||t.set(Math.cos(e),Math.sin(e))))},calcDirMTV:function(){var a=r.minTv,o=r.dirMinTv,s=a.y*a.y+a.x*a.x,c=Math.sin(e),l=Math.cos(e),u=c*a.y+l*a.x;if(i(u)){i(a.x)&&i(a.y)&&o.set(0,0);return}if(n.x=s*l/u,n.y=s*c/u,i(n.x)&&i(n.y)){o.set(0,0);return}(r.bidirectional||t.dot(n)>0)&&n.len()=0;l--){var u=r[l];u!==n&&!u.ignore&&!u.ignoreCoarsePointer&&(!u.parent||!u.parent.ignoreCoarsePointer)&&(dM.copy(u.getBoundingRect()),u.transform&&dM.applyTransform(u.transform),dM.intersect(c)&&a.push(u))}if(a.length){for(var d=4,f=Math.PI/12,p=Math.PI*2,m=0;m4)return;this._downPoint=null}this.dispatchToElement(a,e,t)}});function kSe(e,t,n){if(e[e.rectHover?`rectContain`:`contain`](t,n)){for(var r=e,i=void 0,a=!1;r;){if(r.ignoreClip&&(a=!0),!a){var o=r.getClipPath();if(o&&!o.contain(t,n))return!1}r.silent&&(i=!0);var s=r.__hostTarget;r=s?r.ignoreHostSilent?null:s:r.parent}return i?lM:!0}return!1}function pM(e,t,n,r,i){for(var a=e.length-1;a>=0;a--){var o=e[a],s=void 0;if(o!==i&&!o.ignore&&(s=kSe(o,n,r))&&(!t.topTarget&&(t.topTarget=o),s!==lM)){t.target=o;break}}}function mM(e,t,n){var r=e.painter;return t<0||t>r.getWidth()||n<0||n>r.getHeight()}var hM=32,gM=7;function ASe(e){for(var t=0;e>=hM;)t|=e&1,e>>=1;return e+t}function _M(e,t,n,r){var i=t+1;if(i===n)return 1;if(r(e[i++],e[t])<0){for(;i=0;)i++;return i-t}function jSe(e,t,n){for(n--;t>>1,i(a,e[c])<0?s=c:o=c+1;var l=r-o;switch(l){case 3:e[o+3]=e[o+2];case 2:e[o+2]=e[o+1];case 1:e[o+1]=e[o];break;default:for(;l>0;)e[o+l]=e[o+l-1],l--}e[o]=a}}function yM(e,t,n,r,i,a){var o=0,s=0,c=1;if(a(e,t[n+i])>0){for(s=r-i;c0;)o=c,c=(c<<1)+1,c<=0&&(c=s);c>s&&(c=s),o+=i,c+=i}else{for(s=i+1;cs&&(c=s);var l=o;o=i-c,c=i-l}for(o++;o>>1);a(e,t[n+u])>0?o=u+1:c=u}return c}function bM(e,t,n,r,i,a){var o=0,s=0,c=1;if(a(e,t[n+i])<0){for(s=i+1;cs&&(c=s);var l=o;o=i-c,c=i-l}else{for(s=r-i;c=0;)o=c,c=(c<<1)+1,c<=0&&(c=s);c>s&&(c=s),o+=i,c+=i}for(o++;o>>1);a(e,t[n+u])<0?c=u:o=u+1}return c}function MSe(e,t){var n=gM,r,i,a=0,o=[];r=[],i=[];function s(e,t){r[a]=e,i[a]=t,a+=1}function c(){for(;a>1;){var e=a-2;if(e>=1&&i[e-1]<=i[e]+i[e+1]||e>=2&&i[e-2]<=i[e]+i[e-1])i[e-1]i[e+1])break;u(e)}}function l(){for(;a>1;){var e=a-2;e>0&&i[e-1]=gM||m>=gM);if(h)break;f<0&&(f=0),f+=2}if(n=f,n<1&&(n=1),i===1){for(c=0;c=0;c--)e[p+c]=e[f+c];e[d]=o[u];return}for(var m=n;;){var h=0,g=0,_=!1;do if(t(o[u],e[l])<0){if(e[d--]=e[l--],h++,g=0,--i===0){_=!0;break}}else if(e[d--]=o[u--],g++,h=0,--s===1){_=!0;break}while((h|g)=0;c--)e[p+c]=e[f+c];if(i===0){_=!0;break}}if(e[d--]=o[u--],--s===1){_=!0;break}if(g=s-yM(e[l],o,0,s,s-1,t),g!==0){for(d-=g,u-=g,s-=g,p=d+1,f=u+1,c=0;c=gM||g>=gM);if(_)break;m<0&&(m=0),m+=2}if(n=m,n<1&&(n=1),s===1){for(d-=i,l-=i,p=d+1,f=l+1,c=i-1;c>=0;c--)e[p+c]=e[f+c];e[d]=o[u]}else if(s===0)throw Error();else for(f=d-(s-1),c=0;cs&&(c=s),vM(e,n,n+c,n+a,t),a=c}o.pushRun(n,a),o.mergeRuns(),i-=a,n+=a}while(i!==0);o.forceMergeRuns()}}var SM=!1;function CM(){SM||(SM=!0,console.warn(`z / z2 / zlevel of displayable is invalid, which may cause unexpected errors`))}function wM(e,t){return e.zlevel===t.zlevel?e.z===t.z?e.z2-t.z2:e.z-t.z:e.zlevel-t.zlevel}var NSe=function(){function e(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=wM}return e.prototype.traverse=function(e,t){for(var n=0;n=0&&this._roots.splice(r,1)},e.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},e.prototype.getRoots=function(){return this._roots},e.prototype.dispose=function(){this._displayList=null,this._roots=null},e}(),TM=Rk.hasGlobalWindow&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(e){return setTimeout(e,16)},EM={linear:function(e){return e},quadraticIn:function(e){return e*e},quadraticOut:function(e){return e*(2-e)},quadraticInOut:function(e){return(e*=2)<1?.5*e*e:-.5*(--e*(e-2)-1)},cubicIn:function(e){return e*e*e},cubicOut:function(e){return--e*e*e+1},cubicInOut:function(e){return(e*=2)<1?.5*e*e*e:.5*((e-=2)*e*e+2)},quarticIn:function(e){return e*e*e*e},quarticOut:function(e){return 1- --e*e*e*e},quarticInOut:function(e){return(e*=2)<1?.5*e*e*e*e:-.5*((e-=2)*e*e*e-2)},quinticIn:function(e){return e*e*e*e*e},quinticOut:function(e){return--e*e*e*e*e+1},quinticInOut:function(e){return(e*=2)<1?.5*e*e*e*e*e:.5*((e-=2)*e*e*e*e+2)},sinusoidalIn:function(e){return 1-Math.cos(e*Math.PI/2)},sinusoidalOut:function(e){return Math.sin(e*Math.PI/2)},sinusoidalInOut:function(e){return .5*(1-Math.cos(Math.PI*e))},exponentialIn:function(e){return e===0?0:1024**(e-1)},exponentialOut:function(e){return e===1?1:1-2**(-10*e)},exponentialInOut:function(e){return e===0?0:e===1?1:(e*=2)<1?.5*1024**(e-1):.5*(-(2**(-10*(e-1)))+2)},circularIn:function(e){return 1-Math.sqrt(1-e*e)},circularOut:function(e){return Math.sqrt(1- --e*e)},circularInOut:function(e){return(e*=2)<1?-.5*(Math.sqrt(1-e*e)-1):.5*(Math.sqrt(1-(e-=2)*e)+1)},elasticIn:function(e){var t,n=.1,r=.4;return e===0?0:e===1?1:(!n||n<1?(n=1,t=r/4):t=r*Math.asin(1/n)/(2*Math.PI),-(n*2**(10*--e)*Math.sin((e-t)*(2*Math.PI)/r)))},elasticOut:function(e){var t,n=.1,r=.4;return e===0?0:e===1?1:(!n||n<1?(n=1,t=r/4):t=r*Math.asin(1/n)/(2*Math.PI),n*2**(-10*e)*Math.sin((e-t)*(2*Math.PI)/r)+1)},elasticInOut:function(e){var t,n=.1,r=.4;return e===0?0:e===1?1:(!n||n<1?(n=1,t=r/4):t=r*Math.asin(1/n)/(2*Math.PI),(e*=2)<1?-.5*(n*2**(10*--e)*Math.sin((e-t)*(2*Math.PI)/r)):n*2**(-10*--e)*Math.sin((e-t)*(2*Math.PI)/r)*.5+1)},backIn:function(e){var t=1.70158;return e*e*((t+1)*e-t)},backOut:function(e){var t=1.70158;return--e*e*((t+1)*e+t)+1},backInOut:function(e){var t=1.70158*1.525;return(e*=2)<1?.5*(e*e*((t+1)*e-t)):.5*((e-=2)*e*((t+1)*e+t)+2)},bounceIn:function(e){return 1-EM.bounceOut(1-e)},bounceOut:function(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375},bounceInOut:function(e){return e<.5?EM.bounceIn(e*2)*.5:EM.bounceOut(e*2-1)*.5+.5}},DM=Math.pow,OM=Math.sqrt,kM=1e-8,AM=1e-4,jM=OM(3),MM=1/3,NM=JA(),PM=JA(),FM=JA();function IM(e){return e>-kM&&ekM||e<-kM}function RM(e,t,n,r,i){var a=1-i;return a*a*(a*e+3*i*t)+i*i*(i*r+3*a*n)}function zM(e,t,n,r,i){var a=1-i;return 3*(((t-e)*a+2*(n-t)*i)*a+(r-n)*i*i)}function BM(e,t,n,r,i,a){var o=r+3*(t-n)-e,s=3*(n-t*2+e),c=3*(t-e),l=e-i,u=s*s-3*o*c,d=s*c-9*o*l,f=c*c-3*s*l,p=0;if(IM(u)&&IM(d))if(IM(s))a[0]=0;else{var m=-c/s;m>=0&&m<=1&&(a[p++]=m)}else{var h=d*d-4*u*f;if(IM(h)){var g=d/u,m=-s/o+g,_=-g/2;m>=0&&m<=1&&(a[p++]=m),_>=0&&_<=1&&(a[p++]=_)}else if(h>0){var v=OM(h),y=u*s+1.5*o*(-d+v),b=u*s+1.5*o*(-d-v);y=y<0?-DM(-y,MM):DM(y,MM),b=b<0?-DM(-b,MM):DM(b,MM);var m=(-s-(y+b))/(3*o);m>=0&&m<=1&&(a[p++]=m)}else{var x=(2*u*s-3*o*d)/(2*OM(u*u*u)),S=Math.acos(x)/3,C=OM(u),w=Math.cos(S),m=(-s-2*C*w)/(3*o),_=(-s+C*(w+jM*Math.sin(S)))/(3*o),T=(-s+C*(w-jM*Math.sin(S)))/(3*o);m>=0&&m<=1&&(a[p++]=m),_>=0&&_<=1&&(a[p++]=_),T>=0&&T<=1&&(a[p++]=T)}}return p}function VM(e,t,n,r,i){var a=6*n-12*t+6*e,o=9*t+3*r-3*e-9*n,s=3*t-3*e,c=0;if(IM(o)){if(LM(a)){var l=-s/a;l>=0&&l<=1&&(i[c++]=l)}}else{var u=a*a-4*o*s;if(IM(u))i[0]=-a/(2*o);else if(u>0){var d=OM(u),l=(-a+d)/(2*o),f=(-a-d)/(2*o);l>=0&&l<=1&&(i[c++]=l),f>=0&&f<=1&&(i[c++]=f)}}return c}function HM(e,t,n,r,i,a){var o=(t-e)*i+e,s=(n-t)*i+t,c=(r-n)*i+n,l=(s-o)*i+o,u=(c-s)*i+s,d=(u-l)*i+l;a[0]=e,a[1]=o,a[2]=l,a[3]=d,a[4]=d,a[5]=u,a[6]=c,a[7]=r}function UM(e,t,n,r,i,a,o,s,c,l,u){var d,f=.005,p=1/0,m,h,g,_;NM[0]=c,NM[1]=l;for(var v=0;v<1;v+=.05)PM[0]=RM(e,n,i,o,v),PM[1]=RM(t,r,a,s,v),g=cj(NM,PM),g=0&&g=0&&l<=1&&(i[c++]=l)}}else{var u=o*o-4*a*s;if(IM(u)){var l=-o/(2*a);l>=0&&l<=1&&(i[c++]=l)}else if(u>0){var d=OM(u),l=(-o+d)/(2*a),f=(-o-d)/(2*a);l>=0&&l<=1&&(i[c++]=l),f>=0&&f<=1&&(i[c++]=f)}}return c}function KM(e,t,n){var r=e+n-2*t;return r===0?.5:(e-t)/r}function qM(e,t,n,r,i){var a=(t-e)*r+e,o=(n-t)*r+t,s=(o-a)*r+a;i[0]=e,i[1]=a,i[2]=s,i[3]=s,i[4]=o,i[5]=n}function JM(e,t,n,r,i,a,o,s,c){var l,u=.005,d=1/0;NM[0]=o,NM[1]=s;for(var f=0;f<1;f+=.05){PM[0]=WM(e,n,i,f),PM[1]=WM(t,r,a,f);var p=cj(NM,PM);p=0&&p=1?1:BM(0,r,a,1,e,s)&&RM(0,i,o,1,s[0])}}}var RSe=function(){function e(e){this._inited=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=e.life||1e3,this._delay=e.delay||0,this.loop=e.loop||!1,this.onframe=e.onframe||WA,this.ondestroy=e.ondestroy||WA,this.onrestart=e.onrestart||WA,e.easing&&this.setEasing(e.easing)}return e.prototype.step=function(e,t){if(this._inited||=(this._startTime=e+this._delay,!0),this._paused){this._pausedTime+=t;return}var n=this._life,r=e-this._startTime-this._pausedTime,i=r/n;i<0&&(i=0),i=Math.min(i,1);var a=this.easingFunc,o=a?a(i):i;if(this.onframe(o),i===1)if(this.loop){var s=r%n;this._startTime=e-s,this._pausedTime=0,this.onrestart()}else return!0;return!1},e.prototype.pause=function(){this._paused=!0},e.prototype.resume=function(){this._paused=!1},e.prototype.setEasing=function(e){this.easing=e,this.easingFunc=hA(e)?e:EM[e]||YM(e)},e}(),XM=function(){function e(e){this.value=e}return e}(),zSe=function(){function e(){this._len=0}return e.prototype.insert=function(e){var t=new XM(e);return this.insertEntry(t),t},e.prototype.insertEntry=function(e){this.head?(this.tail.next=e,e.prev=this.tail,e.next=null,this.tail=e):this.head=this.tail=e,this._len++},e.prototype.remove=function(e){var t=e.prev,n=e.next;t?t.next=n:this.head=n,n?n.prev=t:this.tail=t,e.next=e.prev=null,this._len--},e.prototype.len=function(){return this._len},e.prototype.clear=function(){this.head=this.tail=null,this._len=0},e}(),ZM=function(){function e(e){this._list=new zSe,this._maxSize=10,this._map={},this._maxSize=e}return e.prototype.put=function(e,t){var n=this._list,r=this._map,i=null;if(r[e]==null){var a=n.len(),o=this._lastRemovedEntry;if(a>=this._maxSize&&a>0){var s=n.head;n.remove(s),delete r[s.key],i=s.value,this._lastRemovedEntry=s}o?o.value=t:o=new XM(t),o.key=e,n.insertEntry(o),r[e]=o}return i},e.prototype.get=function(e){var t=this._map[e],n=this._list;if(t!=null)return t!==n.tail&&(n.remove(t),n.insertEntry(t)),t.value},e.prototype.clear=function(){this._list.clear(),this._map={}},e.prototype.len=function(){return this._list.len()},e}(),BSe=s({fastLerp:()=>pN,fastMapToColor:()=>WSe,lerp:()=>mN,lift:()=>fN,liftColor:()=>bN,lum:()=>vN,mapToColor:()=>GSe,modifyAlpha:()=>gN,modifyHSL:()=>hN,parse:()=>uN,parseCssFloat:()=>nN,parseCssInt:()=>tN,random:()=>KSe,stringify:()=>_N,toHex:()=>USe}),QM={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]};function $M(e){return e=Math.round(e),e<0?0:e>255?255:e}function VSe(e){return e=Math.round(e),e<0?0:e>360?360:e}function eN(e){return e<0?0:e>1?1:e}function tN(e){var t=e;return t.length&&t.charAt(t.length-1)===`%`?$M(parseFloat(t)/100*255):$M(parseInt(t,10))}function nN(e){var t=e;return t.length&&t.charAt(t.length-1)===`%`?eN(parseFloat(t)/100):eN(parseFloat(t))}function rN(e,t,n){return n<0?n+=1:n>1&&--n,n*6<1?e+(t-e)*n*6:n*2<1?t:n*3<2?e+(t-e)*(2/3-n)*6:e}function iN(e,t,n){return e+(t-e)*n}function aN(e,t,n,r,i){return e[0]=t,e[1]=n,e[2]=r,e[3]=i,e}function oN(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}var sN=new ZM(20),cN=null;function lN(e,t){cN&&oN(cN,t),cN=sN.put(e,cN||t.slice())}function uN(e,t){if(e){t||=[];var n=sN.get(e);if(n)return oN(t,n);e+=``;var r=e.replace(/ /g,``).toLowerCase();if(r in QM)return oN(t,QM[r]),lN(e,t),t;var i=r.length;if(r.charAt(0)===`#`){if(i===4||i===5){var a=parseInt(r.slice(1,4),16);if(!(a>=0&&a<=4095)){aN(t,0,0,0,1);return}return aN(t,(a&3840)>>4|(a&3840)>>8,a&240|(a&240)>>4,a&15|(a&15)<<4,i===5?parseInt(r.slice(4),16)/15:1),lN(e,t),t}else if(i===7||i===9){var a=parseInt(r.slice(1,7),16);if(!(a>=0&&a<=16777215)){aN(t,0,0,0,1);return}return aN(t,(a&16711680)>>16,(a&65280)>>8,a&255,i===9?parseInt(r.slice(7),16)/255:1),lN(e,t),t}return}var o=r.indexOf(`(`),s=r.indexOf(`)`);if(o!==-1&&s+1===i){var c=r.substr(0,o),l=r.substr(o+1,s-(o+1)).split(`,`),u=1;switch(c){case`rgba`:if(l.length!==4)return l.length===3?aN(t,+l[0],+l[1],+l[2],1):aN(t,0,0,0,1);u=nN(l.pop());case`rgb`:if(l.length>=3)return aN(t,tN(l[0]),tN(l[1]),tN(l[2]),l.length===3?u:nN(l[3])),lN(e,t),t;aN(t,0,0,0,1);return;case`hsla`:if(l.length!==4){aN(t,0,0,0,1);return}return l[3]=nN(l[3]),dN(l,t),lN(e,t),t;case`hsl`:if(l.length!==3){aN(t,0,0,0,1);return}return dN(l,t),lN(e,t),t;default:return}}aN(t,0,0,0,1)}}function dN(e,t){var n=(parseFloat(e[0])%360+360)%360/360,r=nN(e[1]),i=nN(e[2]),a=i<=.5?i*(r+1):i+r-i*r,o=i*2-a;return t||=[],aN(t,$M(rN(o,a,n+1/3)*255),$M(rN(o,a,n)*255),$M(rN(o,a,n-1/3)*255),1),e.length===4&&(t[3]=e[3]),t}function HSe(e){if(e){var t=e[0]/255,n=e[1]/255,r=e[2]/255,i=Math.min(t,n,r),a=Math.max(t,n,r),o=a-i,s=(a+i)/2,c,l;if(o===0)c=0,l=0;else{l=s<.5?o/(a+i):o/(2-a-i);var u=((a-t)/6+o/2)/o,d=((a-n)/6+o/2)/o,f=((a-r)/6+o/2)/o;t===a?c=f-d:n===a?c=1/3+u-f:r===a&&(c=2/3+d-u),c<0&&(c+=1),c>1&&--c}var p=[c*360,l,s];return e[3]!=null&&p.push(e[3]),p}}function fN(e,t){var n=uN(e);if(n){for(var r=0;r<3;r++)t<0?n[r]=n[r]*(1-t)|0:n[r]=(255-n[r])*t+n[r]|0,n[r]>255?n[r]=255:n[r]<0&&(n[r]=0);return _N(n,n.length===4?`rgba`:`rgb`)}}function USe(e){var t=uN(e);if(t)return((1<<24)+(t[0]<<16)+(t[1]<<8)+ +t[2]).toString(16).slice(1)}function pN(e,t,n){if(!(!(t&&t.length)||!(e>=0&&e<=1))){n||=[];var r=e*(t.length-1),i=Math.floor(r),a=Math.ceil(r),o=t[i],s=t[a],c=r-i;return n[0]=$M(iN(o[0],s[0],c)),n[1]=$M(iN(o[1],s[1],c)),n[2]=$M(iN(o[2],s[2],c)),n[3]=eN(iN(o[3],s[3],c)),n}}var WSe=pN;function mN(e,t,n){if(!(!(t&&t.length)||!(e>=0&&e<=1))){var r=e*(t.length-1),i=Math.floor(r),a=Math.ceil(r),o=uN(t[i]),s=uN(t[a]),c=r-i,l=_N([$M(iN(o[0],s[0],c)),$M(iN(o[1],s[1],c)),$M(iN(o[2],s[2],c)),eN(iN(o[3],s[3],c))],`rgba`);return n?{color:l,leftIndex:i,rightIndex:a,value:r}:l}}var GSe=mN;function hN(e,t,n,r){var i=uN(e);if(e)return i=HSe(i),t!=null&&(i[0]=VSe(hA(t)?t(i[0]):t)),n!=null&&(i[1]=nN(hA(n)?n(i[1]):n)),r!=null&&(i[2]=nN(hA(r)?r(i[2]):r)),_N(dN(i),`rgba`)}function gN(e,t){var n=uN(e);if(n&&t!=null)return n[3]=eN(t),_N(n,`rgba`)}function _N(e,t){if(!(!e||!e.length)){var n=e[0]+`,`+e[1]+`,`+e[2];return(t===`rgba`||t===`hsva`||t===`hsla`)&&(n+=`,`+e[3]),t+`(`+n+`)`}}function vN(e,t){var n=uN(e);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*t:0}function KSe(){return _N([Math.round(Math.random()*255),Math.round(Math.random()*255),Math.round(Math.random()*255)],`rgb`)}var yN=new ZM(100);function bN(e){if(gA(e)){var t=yN.get(e);return t||(t=fN(e,-.1),yN.put(e,t)),t}else if(CA(e)){var n=Z({},e);return n.colorStops=sA(e.colorStops,function(e){return{offset:e.offset,color:fN(e.color,-.1)}}),n}return e}var xN=Math.round;function SN(e){var t;if(!e||e===`transparent`)e=`none`;else if(typeof e==`string`&&e.indexOf(`rgba`)>-1){var n=uN(e);n&&(e=`rgb(`+n[0]+`,`+n[1]+`,`+n[2]+`)`,t=n[3])}return{color:e,opacity:t??1}}var CN=1e-4;function wN(e){return e-CN}function TN(e){return xN(e*1e3)/1e3}function EN(e){return xN(e*1e4)/1e4}function qSe(e){return`matrix(`+TN(e[0])+`,`+TN(e[1])+`,`+TN(e[2])+`,`+TN(e[3])+`,`+EN(e[4])+`,`+EN(e[5])+`)`}var JSe={left:`start`,right:`end`,center:`middle`,middle:`middle`};function YSe(e,t,n){return n===`top`?e+=t/2:n===`bottom`&&(e-=t/2),e}function XSe(e){return e&&(e.shadowBlur||e.shadowOffsetX||e.shadowOffsetY)}function ZSe(e){var t=e.style,n=e.getGlobalScale();return[t.shadowColor,(t.shadowBlur||0).toFixed(2),(t.shadowOffsetX||0).toFixed(2),(t.shadowOffsetY||0).toFixed(2),n[0],n[1]].join(`,`)}function DN(e){return e&&!!e.image}function QSe(e){return e&&!!e.svgElement}function ON(e){return DN(e)||QSe(e)}function kN(e){return e.type===`linear`}function AN(e){return e.type===`radial`}function jN(e){return e&&(e.type===`linear`||e.type===`radial`)}function MN(e){return`url(#`+e+`)`}function NN(e){var t=e.getGlobalScale(),n=Math.max(t[0],t[1]);return Math.max(Math.ceil(Math.log(n)/Math.log(10)),1)}function PN(e){var t=e.x||0,n=e.y||0,r=(e.rotation||0)*GA,i=OA(e.scaleX,1),a=OA(e.scaleY,1),o=e.skewX||0,s=e.skewY||0,c=[];return(t||n)&&c.push(`translate(`+t+`px,`+n+`px)`),r&&c.push(`rotate(`+r+`)`),(i!==1||a!==1)&&c.push(`scale(`+i+`,`+a+`)`),(o||s)&&c.push(`skew(`+xN(o*GA)+`deg, `+xN(s*GA)+`deg)`),c.join(` `)}var $Se=(function(){return typeof Buffer<`u`&&typeof Buffer.from==`function`?function(e){return Buffer.from(e).toString(`base64`)}:typeof btoa==`function`&&typeof unescape==`function`&&typeof encodeURIComponent==`function`?function(e){return btoa(unescape(encodeURIComponent(e)))}:function(e){return null}})(),FN=Array.prototype.slice;function IN(e,t,n){return(t-e)*n+e}function LN(e,t,n,r){for(var i=t.length,a=0;ar?t:e,a=Math.min(n,r),o=i[a-1]||{color:[0,0,0,0],offset:0},s=a;so)r.length=o;else for(var s=a;s=1},e.prototype.getAdditiveTrack=function(){return this._additiveTrack},e.prototype.addKeyframe=function(e,t,n){this._needsSort=!0;var r=this.keyframes,i=r.length,a=!1,o=JN,s=t;if(oA(t)){var c=rCe(t);o=c,(c===1&&!vA(t[0])||c===2&&!vA(t[0][0]))&&(a=!0)}else if(vA(t)&&!EA(t))o=HN;else if(gA(t))if(!isNaN(+t))o=HN;else{var l=uN(t);l&&(s=l,o=GN)}else if(CA(t)){var u=Z({},s);u.colorStops=sA(t.colorStops,function(e){return{offset:e.offset,color:uN(e.color)}}),kN(t)?o=KN:AN(t)&&(o=qN),s=u}i===0?this.valType=o:(o!==this.valType||o===JN)&&(a=!0),this.discrete=this.discrete||a;var d={time:e,value:s,rawValue:t,percent:0};return n&&(d.easing=n,d.easingFunc=hA(n)?n:EM[n]||YM(n)),r.push(d),d},e.prototype.prepare=function(e,t){var n=this.keyframes;this._needsSort&&n.sort(function(e,t){return e.time-t.time});for(var r=this.valType,i=n.length,a=n[i-1],o=this.discrete,s=XN(r),c=YN(r),l=0;l=0&&!(a[l].percent<=t);l--);l=d(l,o-2)}else{for(l=u;lt);l++);l=d(l-1,o-2)}p=a[l+1],f=a[l]}if(f&&p){this._lastFr=l,this._lastFrP=t;var m=p.percent-f.percent,h=m===0?1:d((t-f.percent)/m,1);p.easingFunc&&(h=p.easingFunc(h));var g=n?this._additiveValue:c?ZN:e[s];if((XN(i)||c)&&!g&&(g=this._additiveValue=[]),this.discrete)e[s]=h<1?f.rawValue:p.rawValue;else if(XN(i))i===UN?LN(g,f[r],p[r],h):eCe(g,f[r],p[r],h);else if(YN(i)){var _=f[r],v=p[r],y=i===KN;e[s]={type:y?`linear`:`radial`,x:IN(_.x,v.x,h),y:IN(_.y,v.y,h),colorStops:sA(_.colorStops,function(e,t){var n=v.colorStops[t];return{offset:IN(e.offset,n.offset,h),color:VN(LN([],e.color,n.color,h))}}),global:v.global},y?(e[s].x2=IN(_.x2,v.x2,h),e[s].y2=IN(_.y2,v.y2,h)):e[s].r=IN(_.r,v.r,h)}else if(c)LN(g,f[r],p[r],h),n||(e[s]=VN(g));else{var b=IN(f[r],p[r],h);n?this._additiveValue=b:e[s]=b}n&&this._addToTarget(e)}}},e.prototype._addToTarget=function(e){var t=this.valType,n=this.propName,r=this._additiveValue;t===HN?e[n]=e[n]+r:t===GN?(uN(e[n],ZN),RN(ZN,ZN,r,1),e[n]=VN(ZN)):t===UN?RN(e[n],e[n],r,1):t===WN&&zN(e[n],e[n],r,1)},e}(),QN=function(){function e(e,t,n,r){if(this._tracks={},this._trackKeys=[],this._maxTime=0,this._started=0,this._clip=null,this._target=e,this._loop=t,t&&r){Zk(`Can' use additive animation on looped animation.`);return}this._additiveAnimators=r,this._allowDiscrete=n}return e.prototype.getMaxTime=function(){return this._maxTime},e.prototype.getDelay=function(){return this._delay},e.prototype.getLoop=function(){return this._loop},e.prototype.getTarget=function(){return this._target},e.prototype.changeTarget=function(e){this._target=e},e.prototype.when=function(e,t,n){return this.whenWithKeys(e,t,dA(t),n)},e.prototype.whenWithKeys=function(e,t,n,r){for(var i=this._tracks,a=0;a0&&s.addKeyframe(0,BN(c),r),this._trackKeys.push(o)}s.addKeyframe(e,BN(t[o]),r)}return this._maxTime=Math.max(this._maxTime,e),this},e.prototype.pause=function(){this._clip.pause(),this._paused=!0},e.prototype.resume=function(){this._clip.resume(),this._paused=!1},e.prototype.isPaused=function(){return!!this._paused},e.prototype.duration=function(e){return this._maxTime=e,this._force=!0,this},e.prototype._doneCallback=function(){this._setTracksFinished(),this._clip=null;var e=this._doneCbs;if(e)for(var t=e.length,n=0;n0)){this._started=1;for(var t=this,n=[],r=this._maxTime||0,i=0;i1){var o=a.pop();i.addKeyframe(o.time,e[r]),i.prepare(this._maxTime,i.getAdditiveTrack())}}}},e}();function $N(){return new Date().getTime()}var aCe=function(e){qA(t,e);function t(t){var n=e.call(this)||this;return n._running=!1,n._time=0,n._pausedTime=0,n._pauseStart=0,n._paused=!1,t||={},n.stage=t.stage||{},n}return t.prototype.addClip=function(e){e.animation&&this.removeClip(e),this._head?(this._tail.next=e,e.prev=this._tail,e.next=null,this._tail=e):this._head=this._tail=e,e.animation=this},t.prototype.addAnimator=function(e){e.animation=this;var t=e.getClip();t&&this.addClip(t)},t.prototype.removeClip=function(e){if(e.animation){var t=e.prev,n=e.next;t?t.next=n:this._head=n,n?n.prev=t:this._tail=t,e.next=e.prev=e.animation=null}},t.prototype.removeAnimator=function(e){var t=e.getClip();t&&this.removeClip(t),e.animation=null},t.prototype.update=function(e){for(var t=$N()-this._pausedTime,n=t-this._time,r=this._head;r;){var i=r.next;r.step(t,n)?(r.ondestroy(),this.removeClip(r),r=i):r=i}this._time=t,e||(this.trigger(`frame`,n),this.stage.update&&this.stage.update())},t.prototype._startLoop=function(){var e=this;this._running=!0;function t(){e._running&&(TM(t),!e._paused&&e.update())}TM(t)},t.prototype.start=function(){this._running||(this._time=$N(),this._pausedTime=0,this._startLoop())},t.prototype.stop=function(){this._running=!1},t.prototype.pause=function(){this._paused||=(this._pauseStart=$N(),!0)},t.prototype.resume=function(){this._paused&&=(this._pausedTime+=$N()-this._pauseStart,!1)},t.prototype.clear=function(){for(var e=this._head;e;){var t=e.next;e.prev=e.next=e.animation=null,e=t}this._head=this._tail=null},t.prototype.isFinished=function(){return this._head==null},t.prototype.animate=function(e,t){t||={},this.start();var n=new QN(e,t.loop);return this.addAnimator(n),n},t}(mj),oCe=300,eP=Rk.domSupported,tP=(function(){var e=[`click`,`dblclick`,`mousewheel`,`wheel`,`mouseout`,`mouseup`,`mousedown`,`mousemove`,`contextmenu`],t=[`touchstart`,`touchend`,`touchmove`],n={pointerdown:1,pointerup:1,pointermove:1,pointerout:1};return{mouse:e,touch:t,pointer:sA(e,function(e){var t=e.replace(`mouse`,`pointer`);return n.hasOwnProperty(t)?t:e})}})(),nP={mouse:[`mousemove`,`mouseup`],pointer:[`pointermove`,`pointerup`]},rP=!1;function iP(e){var t=e.pointerType;return t===`pen`||t===`touch`}function sCe(e){e.touching=!0,e.touchTimer!=null&&(clearTimeout(e.touchTimer),e.touchTimer=null),e.touchTimer=setTimeout(function(){e.touching=!1,e.touchTimer=null},700)}function aP(e){e&&(e.zrByTouch=!0)}function cCe(e,t){return Ej(e.dom,new lCe(e,t),!0)}function oP(e,t){for(var n=t,r=!1;n&&n.nodeType!==9&&!(r=n.domBelongToZr||n!==t&&n===e.painterRoot);)n=n.parentNode;return r}var lCe=function(){function e(e,t){this.stopPropagation=WA,this.stopImmediatePropagation=WA,this.preventDefault=WA,this.type=t.type,this.target=this.currentTarget=e.dom,this.pointerType=t.pointerType,this.clientX=t.clientX,this.clientY=t.clientY}return e}(),sP={mousedown:function(e){e=Ej(this.dom,e),this.__mayPointerCapture=[e.zrX,e.zrY],this.trigger(`mousedown`,e)},mousemove:function(e){e=Ej(this.dom,e);var t=this.__mayPointerCapture;t&&(e.zrX!==t[0]||e.zrY!==t[1])&&this.__togglePointerCapture(!0),this.trigger(`mousemove`,e)},mouseup:function(e){e=Ej(this.dom,e),this.__togglePointerCapture(!1),this.trigger(`mouseup`,e)},mouseout:function(e){e=Ej(this.dom,e);var t=e.toElement||e.relatedTarget;oP(this,t)||(this.__pointerCapturing&&(e.zrEventControl=`no_globalout`),this.trigger(`mouseout`,e))},wheel:function(e){rP=!0,e=Ej(this.dom,e),this.trigger(`mousewheel`,e)},mousewheel:function(e){rP||(e=Ej(this.dom,e),this.trigger(`mousewheel`,e))},touchstart:function(e){e=Ej(this.dom,e),aP(e),this.__lastTouchMoment=new Date,this.handler.processGesture(e,`start`),sP.mousemove.call(this,e),sP.mousedown.call(this,e)},touchmove:function(e){e=Ej(this.dom,e),aP(e),this.handler.processGesture(e,`change`),sP.mousemove.call(this,e)},touchend:function(e){e=Ej(this.dom,e),aP(e),this.handler.processGesture(e,`end`),sP.mouseup.call(this,e),new Date-+this.__lastTouchMomentvP||e<-vP}var bP=[],xP=[],SP=Mj(),CP=Math.abs,wP=function(){function e(){}return e.prototype.getLocalTransform=function(e){return TP(this,e)},e.prototype.setPosition=function(e){this.x=e[0],this.y=e[1]},e.prototype.setScale=function(e){this.scaleX=e[0],this.scaleY=e[1]},e.prototype.setSkew=function(e){this.skewX=e[0],this.skewY=e[1]},e.prototype.setOrigin=function(e){this.originX=e[0],this.originY=e[1]},e.prototype.needLocalTransform=function(){return yP(this.rotation)||yP(this.x)||yP(this.y)||yP(this.scaleX-1)||yP(this.scaleY-1)||yP(this.skewX)||yP(this.skewY)},e.prototype.updateTransform=function(){var e=this.parent&&this.parent.transform,t=this.needLocalTransform(),n=this.transform;if(!(t||e)){n&&(_P(n),this.invTransform=null);return}n||=Mj(),t?this.getLocalTransform(n):_P(n),e&&(t?Fj(n,e,n):Pj(n,e)),this.transform=n,this._resolveGlobalScaleRatio(n),this.invTransform=this.invTransform||Mj(),zj(this.invTransform,n)},e.prototype._resolveGlobalScaleRatio=function(e){var t=this.globalScaleRatio;if(t!=null&&t!==1){this.getGlobalScale(bP);var n=bP[0]<0?-1:1,r=bP[1]<0?-1:1,i=((bP[0]-n)*t+n)/bP[0]||0,a=((bP[1]-r)*t+r)/bP[1]||0;e[0]*=i,e[1]*=i,e[2]*=a,e[3]*=a}},e.prototype.getComputedTransform=function(){for(var e=this,t=[];e;)t.push(e),e=e.parent;for(;e=t.pop();)e.updateTransform();return this.transform},e.prototype.setLocalTransform=function(e){if(e){var t=e[0]*e[0]+e[1]*e[1],n=e[2]*e[2]+e[3]*e[3],r=Math.atan2(e[1],e[0]),i=Math.PI/2+r-Math.atan2(e[3],e[2]);n=Math.sqrt(n)*Math.cos(i),t=Math.sqrt(t),this.skewX=i,this.skewY=0,this.rotation=-r,this.x=+e[4],this.y=+e[5],this.scaleX=t,this.scaleY=n,this.originX=0,this.originY=0}},e.prototype.decomposeTransform=function(){if(this.transform){var e=this.parent,t=this.transform;e&&e.transform&&(e.invTransform=e.invTransform||Mj(),Fj(xP,e.invTransform,t),t=xP);var n=this.originX,r=this.originY;(n||r)&&(SP[4]=n,SP[5]=r,Fj(xP,t,SP),xP[4]-=n,xP[5]-=r,t=xP),this.setLocalTransform(t)}},e.prototype.getGlobalScale=function(e){var t=this.transform;return e||=[],t?(e[0]=Math.sqrt(t[0]*t[0]+t[1]*t[1]),e[1]=Math.sqrt(t[2]*t[2]+t[3]*t[3]),t[0]<0&&(e[0]=-e[0]),t[3]<0&&(e[1]=-e[1]),e):(e[0]=1,e[1]=1,e)},e.prototype.transformCoordToLocal=function(e,t){var n=[e,t],r=this.invTransform;return r&&uj(n,n,r),n},e.prototype.transformCoordToGlobal=function(e,t){var n=[e,t],r=this.transform;return r&&uj(n,n,r),n},e.prototype.getLineScale=function(){var e=this.transform;return e&&CP(e[0]-1)>1e-10&&CP(e[3]-1)>1e-10?Math.sqrt(CP(e[0]*e[3]-e[2]*e[1])):1},e.prototype.copyTransform=function(e){OP(this,e)},e.getLocalTransform=function(e,t){t||=[];var n=e.originX||0,r=e.originY||0,i=e.scaleX,a=e.scaleY,o=e.anchorX,s=e.anchorY,c=e.rotation||0,l=e.x,u=e.y,d=e.skewX?Math.tan(e.skewX):0,f=e.skewY?Math.tan(-e.skewY):0;if(n||r||o||s){var p=n+o,m=r+s;t[4]=-p*i-d*m*a,t[5]=-m*a-f*p*i}else t[4]=t[5]=0;return t[0]=i,t[3]=a,t[1]=f*i,t[2]=d*a,c&&Lj(t,t,c),t[4]+=n+l,t[5]+=r+u,t},e.initDefaultProps=(function(){var t=e.prototype;t.scaleX=t.scaleY=t.globalScaleRatio=1,t.x=t.y=t.originX=t.originY=t.skewX=t.skewY=t.rotation=t.anchorX=t.anchorY=0})(),e}(),TP=wP.getLocalTransform;function EP(){return new wP}var DP=[`x`,`y`,`originX`,`originY`,`anchorX`,`anchorY`,`rotation`,`scaleX`,`scaleY`,`skewX`,`skewY`];function OP(e,t){return tA(e,t,DP)}function kP(e){AP||=new ZM(100),e||=`12px sans-serif`;var t=AP.get(e);return t||(t={font:e,strWidthCache:new ZM(500),asciiWidthMap:null,asciiWidthMapTried:!1,stWideCharWidth:zk.measureText(`国`,e).width,asciiCharWidth:zk.measureText(`a`,e).width},AP.put(e,t)),t}var AP;function mCe(e){if(!(jP>=MP)){e||=`12px sans-serif`;for(var t=[],n=+new Date,r=0;r<=127;r++)t[r]=zk.measureText(String.fromCharCode(r),e).width;var i=+new Date-n;return i>16?jP=MP:i>2&&jP++,t}}var jP=0,MP=5;function NP(e,t){return e.asciiWidthMapTried||=(e.asciiWidthMap=mCe(e.font),!0),0<=t&&t<=127?e.asciiWidthMap==null?e.asciiCharWidth:e.asciiWidthMap[t]:e.stWideCharWidth}function PP(e,t){var n=e.strWidthCache,r=n.get(t);return r??(r=zk.measureText(t,e.font).width,n.put(t,r)),r}function FP(e,t,n,r){var i=PP(kP(t),e),a=zP(t);return new eM(LP(0,i,n),RP(0,a,r),i,a)}function IP(e,t,n,r){var i=((e||``)+``).split(` -`);if(i.length===1)return FP(i[0],t,n,r);for(var a=new eM(0,0,0,0),o=0;o=0?parseFloat(e)/100*t:parseFloat(e):e}function VP(e,t,n){var r=t.position||`inside`,i=t.distance==null?5:t.distance,a=n.height,o=n.width,s=a/2,c=n.x,l=n.y,u=`left`,d=`top`;if(r instanceof Array)c+=BP(r[0],n.width),l+=BP(r[1],n.height),u=null,d=null;else switch(r){case`left`:c-=i,l+=s,u=`right`,d=`middle`;break;case`right`:c+=i+o,l+=s,d=`middle`;break;case`top`:c+=o/2,l-=i,u=`center`,d=`bottom`;break;case`bottom`:c+=o/2,l+=a+i,u=`center`;break;case`inside`:c+=o/2,l+=s,u=`center`,d=`middle`;break;case`insideLeft`:c+=i,l+=s,d=`middle`;break;case`insideRight`:c+=o-i,l+=s,u=`right`,d=`middle`;break;case`insideTop`:c+=o/2,l+=i,u=`center`;break;case`insideBottom`:c+=o/2,l+=a-i,u=`center`,d=`bottom`;break;case`insideTopLeft`:c+=i,l+=i;break;case`insideTopRight`:c+=o-i,l+=i,u=`right`;break;case`insideBottomLeft`:c+=i,l+=a-i,d=`bottom`;break;case`insideBottomRight`:c+=o-i,l+=a-i,u=`right`,d=`bottom`;break}return e||={},e.x=c,e.y=l,e.align=u,e.verticalAlign=d,e}var HP=`__zr_normal__`,UP=DP.concat([`ignore`]),hCe=cA(DP,function(e,t){return e[t]=!0,e},{ignore:!1}),WP={},gCe=new eM(0,0,0,0),GP=[],KP=function(){function e(e){this.id=Xk(),this.animators=[],this.currentStates=[],this.states={},this._init(e)}return e.prototype._init=function(e){this.attr(e)},e.prototype.drift=function(e,t,n){switch(this.draggable){case`horizontal`:t=0;break;case`vertical`:e=0;break}var r=this.transform;r||=this.transform=[1,0,0,1,0,0],r[4]+=e,r[5]+=t,this.decomposeTransform(),this.markRedraw()},e.prototype.beforeUpdate=function(){},e.prototype.afterUpdate=function(){},e.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},e.prototype.updateInnerText=function(e){var t=this._textContent;if(t&&(!t.ignore||e)){this.textConfig||={};var n=this.textConfig,r=n.local,i=t.innerTransformable,a=void 0,o=void 0,s=!1;i.parent=r?this:null;var c=!1;i.copyTransform(t);var l=n.position!=null,u=n.autoOverflowArea,d=void 0;if((u||l)&&(d=gCe,n.layoutRect?d.copy(n.layoutRect):d.copy(this.getBoundingRect()),r||d.applyTransform(this.transform)),l){this.calculateTextPosition?this.calculateTextPosition(WP,n,d):VP(WP,n,d),i.x=WP.x,i.y=WP.y,a=WP.align,o=WP.verticalAlign;var f=n.origin;if(f&&n.rotation!=null){var p=void 0,m=void 0;f===`center`?(p=d.width*.5,m=d.height*.5):(p=BP(f[0],d.width),m=BP(f[1],d.height)),c=!0,i.originX=-i.x+p+(r?0:d.x),i.originY=-i.y+m+(r?0:d.y)}}n.rotation!=null&&(i.rotation=n.rotation);var h=n.offset;h&&(i.x+=h[0],i.y+=h[1],c||(i.originX=-h[0],i.originY=-h[1]));var g=this._innerTextDefaultStyle||={};if(u){var _=g.overflowRect=g.overflowRect||new eM(0,0,0,0);i.getLocalTransform(GP),zj(GP,GP),eM.copy(_,d),_.applyTransform(GP)}else g.overflowRect=null;var v=n.inside==null?typeof n.position==`string`&&n.position.indexOf(`inside`)>=0:n.inside,y=void 0,b=void 0,x=void 0;v&&this.canBeInsideText()?(y=n.insideFill,b=n.insideStroke,(y==null||y===`auto`)&&(y=this.getInsideTextFill()),(b==null||b===`auto`)&&(b=this.getInsideTextStroke(y),x=!0)):(y=n.outsideFill,b=n.outsideStroke,(y==null||y===`auto`)&&(y=this.getOutsideFill()),(b==null||b===`auto`)&&(b=this.getOutsideStroke(y),x=!0)),y||=`#000`,(y!==g.fill||b!==g.stroke||x!==g.autoStroke||a!==g.align||o!==g.verticalAlign)&&(s=!0,g.fill=y,g.stroke=b,g.autoStroke=x,g.align=a,g.verticalAlign=o,t.setDefaultTextStyle(g)),t.__dirty|=1,s&&t.dirtyStyle(!0)}},e.prototype.canBeInsideText=function(){return!0},e.prototype.getInsideTextFill=function(){return`#fff`},e.prototype.getInsideTextStroke=function(e){return`#000`},e.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?gP:hP},e.prototype.getOutsideStroke=function(e){var t=this.__zr&&this.__zr.getBackgroundColor(),n=typeof t==`string`&&uN(t);n||=[255,255,255,1];for(var r=n[3],i=this.__zr.isDarkMode(),a=0;a<3;a++)n[a]=n[a]*r+(i?0:255)*(1-r);return n[3]=1,_N(n,`rgba`)},e.prototype.traverse=function(e,t){},e.prototype.attrKV=function(e,t){e===`textConfig`?this.setTextConfig(t):e===`textContent`?this.setTextContent(t):e===`clipPath`?this.setClipPath(t):e===`extra`?(this.extra=this.extra||{},Z(this.extra,t)):this[e]=t},e.prototype.hide=function(){this.ignore=!0,this.markRedraw()},e.prototype.show=function(){this.ignore=!1,this.markRedraw()},e.prototype.attr=function(e,t){if(typeof e==`string`)this.attrKV(e,t);else if(yA(e))for(var n=dA(e),r=0;r0},e.prototype.getState=function(e){return this.states[e]},e.prototype.ensureState=function(e){var t=this.states;return t[e]||(t[e]={}),t[e]},e.prototype.clearStates=function(e){this.useState(HP,!1,e)},e.prototype.useState=function(e,t,n,r){var i=e===HP;if(!(!this.hasState()&&i)){var a=this.currentStates,o=this.stateTransition;if(!(rA(a,e)>=0&&(t||a.length===1))){var s;if(this.stateProxy&&!i&&(s=this.stateProxy(e)),s||=this.states&&this.states[e],!s&&!i){Zk(`State `+e+` not exists.`);return}i||this.saveCurrentToNormalState(s);var c=this._textContent,l=XP(this,c,s,r);l&&!this.__inHover&&(this.__inHover=l),this._applyStateObj(e,s,this._normalState,t,QP(this,n,o),o);var u=this._textGuide;return c&&c.useState(e,t,n,!!l),u&&u.useState(e,t,n,!!l),i?(this.currentStates=[],this._normalState={}):t?this.currentStates.push(e):this.currentStates=[e],this._updateAnimationTargets(),this.markRedraw(),!l&&this.__inHover&&(this.__inHover=0,this.__dirty&=-2),s}}},e.prototype.useStates=function(e,t,n){if(!e.length)this.clearStates();else{var r=[],i=this.currentStates,a=e.length,o=a===i.length;if(o){for(var s=0;s=0){var n=this.currentStates.slice();n.splice(t,1),this.useStates(n)}},e.prototype.replaceState=function(e,t,n){var r=this.currentStates.slice(),i=rA(r,e),a=rA(r,t)>=0;i>=0?a?r.splice(i,1):r[i]=t:n&&!a&&r.push(t),this.useStates(r)},e.prototype.toggleState=function(e,t){t?this.useState(e,!0):this.removeState(e)},e.prototype._mergeStates=function(e){for(var t={},n,r=0;r=0&&t.splice(n,1)}),this.animators.push(e),n&&n.animation.addAnimator(e),n&&n.wakeUp()},e.prototype.updateDuringAnimation=function(e){this.markRedraw()},e.prototype.stopAnimation=function(e,t){for(var n=this.animators,r=n.length,i=[],a=0;a0&&n.during&&a[0].during(function(e,t){n.during(t)});for(var f=0;f0||i.force&&!o.length){var C=void 0,w=void 0,T=void 0;if(s){w={},f&&(C={});for(var b=0;b0}var $P=function(e){qA(t,e);function t(t){var n=e.call(this)||this;return n.isGroup=!0,n._children=[],n.attr(t),n}return t.prototype.childrenRef=function(){return this._children},t.prototype.children=function(){return this._children.slice()},t.prototype.childAt=function(e){return this._children[e]},t.prototype.childOfName=function(e){for(var t=this._children,n=0;n=0&&(n.splice(r,0,e),this._doAdd(e))}return this},t.prototype.replace=function(e,t){var n=rA(this._children,e);return n>=0&&this.replaceAt(t,n),this},t.prototype.replaceAt=function(e,t){var n=this._children,r=n[t];if(e&&e!==this&&e.parent!==this&&e!==r){n[t]=e,r.parent=null;var i=this.__zr;i&&r.removeSelfFromZr(i),this._doAdd(e)}return this},t.prototype._doAdd=function(e){e.parent&&e.parent.remove(e),e.parent=this;var t=this.__zr;t&&t!==e.__zr&&e.addSelfToZr(t),t&&t.refresh()},t.prototype.remove=function(e){var t=this.__zr,n=this._children,r=rA(n,e);return r<0?this:(n.splice(r,1),e.parent=null,t&&e.removeSelfFromZr(t),t&&t.refresh(),this)},t.prototype.removeAll=function(){for(var e=this._children,t=this.__zr,n=0;nTCe,disposeAll:()=>ECe,getElementSSRData:()=>aF,getInstance:()=>DCe,init:()=>nF,registerPainter:()=>rF,registerSSRDataGetter:()=>oF,version:()=>OCe}),eF={},tF={};function SCe(e){delete tF[e]}function CCe(e){if(!e)return!1;if(typeof e==`string`)return vN(e,1)0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},e.prototype.setSleepAfterStill=function(e){this._sleepAfterStill=e},e.prototype.wakeUp=function(){this._disposed||(this.animation.start(),this._stillFrameAccum=0)},e.prototype.refreshHover=function(){this._needsRefreshHover=!0},e.prototype.refreshHoverImmediately=function(){this._disposed||this._refresh({animUpdate:!1,refresh:!1,refreshHover:!0})},e.prototype.resize=function(e){this._disposed||(e||={},this.painter.resize(e.width,e.height),this.handler.resize())},e.prototype.clearAnimation=function(){this._disposed||this.animation.clear()},e.prototype.getWidth=function(){if(!this._disposed)return this.painter.getWidth()},e.prototype.getHeight=function(){if(!this._disposed)return this.painter.getHeight()},e.prototype.setCursorStyle=function(e){this._disposed||this.handler.setCursorStyle(e)},e.prototype.findHover=function(e,t){if(!this._disposed)return this.handler.findHover(e,t)},e.prototype.on=function(e,t,n){return this._disposed||this.handler.on(e,t,n),this},e.prototype.off=function(e,t){this._disposed||this.handler.off(e,t)},e.prototype.trigger=function(e,t){this._disposed||this.handler.trigger(e,t)},e.prototype.clear=function(){if(!this._disposed){for(var e=this.storage.getRoots(),t=0;t0){if(e<=i)return o;if(e>=a)return s}else if(e>=i)return o;else if(e<=a)return s}else{if(e===i)return o;if(e===a)return s}return(e-i)/c*l+o}var bF=jCe;function jCe(e,t,n){switch(e){case`center`:case`middle`:e=`50%`;break;case`left`:case`top`:e=`0%`;break;case`right`:case`bottom`:e=`100%`;break}return xF(e,t,n)}function xF(e,t,n){return gA(e)?SF(e)?parseFloat(e)/100*t+(n||0):parseFloat(e):e==null?NaN:+e}function MCe(e){return gA(e)&&SF(e)}function SF(e){return!!kCe(e).match(/%$/)}function CF(e,t,n){return isNaN(t)?n?``+e:+e:(t=lF(uF(0,t),cF),e=(+e).toFixed(t),n?e:+e)}function NCe(e,t,n){return t??=10,CF(e,t,n)}function wF(e){return e.sort(function(e,t){return e-t}),e}function TF(e){if(e=+e,isNaN(e))return 0;if(e>1e-14){for(var t=1,n=0;n<15;n++,t*=10)if(fF(e*t)/t===e)return n}return EF(e)}function EF(e){var t=e.toString().toLowerCase(),n=t.indexOf(`e`),r=n>0?+t.slice(n+1):0,i=n>0?n:t.length,a=t.indexOf(`.`);return uF(0,(a<0?0:i-1-a)-r)}function PCe(e,t){var n=pF(gF(e[1]-e[0])/_F),r=fF(gF(dF(t[1]-t[0]))/_F),i=lF(uF(-n+r,0),cF);return isFinite(i)?i:cF}function DF(e,t,n){var r=dF(e[1]-e[0]);if(!isFinite(r)||r===0)return NaN;var i=gF(2*dF(n||1)*dF(r))/_F,a=gF(dF(t))/_F,o=uF(0,mF(-i+a));return isFinite(o)||(o=NaN),o}function FCe(e,t,n){return e[t]&&OF(e,n)[t]||0}function OF(e,t){var n=cA(e,function(e,t){return e+(isNaN(t)?0:t)},0);if(n===0)return[];for(var r=hF(10,t),i=sA(e,function(e){return(isNaN(e)?0:e)/n*r*100}),a=r*100,o=sA(i,function(e){return pF(e)}),s=cA(o,function(e,t){return e+t},0),c=sA(i,function(e,t){return e-o[t]});sl&&(l=c[d],u=d);++o[u],c[u]=0,++s}return sA(o,function(e){return e/r})}function kF(e,t){var n=uF(TF(e),TF(t)),r=e+t;return n>cF?r:CF(r,n)}var AF=hF(2,53)-1;function jF(e){var t=vF*2;return(e%t+t)%t}function MF(e){return e>-sF&&e=10&&t++,t}function IF(e,t){var n=FF(e),r=hF(10,n),i=e/r;return e=(t===2?1:t?i<1.5?1:i<2.5?2:i<4?3:i<7?5:10:i<1?1:i<2?2:i<3?3:i<5?5:10)*r,CF(e,-n)}function LF(e,t){var n=(e.length-1)*t+1,r=pF(n),i=+e[r-1],a=n-r;return a?i+a*(e[r]-i):i}function RF(e){e.sort(function(e,t){return s(e,t,0)?-1:1});for(var t=-1/0,n=1,r=0;r0?e.length:0),this.item=null,this.key=NaN,this},e.prototype.next=function(){return(this._step>0?this._idx=this._end)?(this.item=this._list[this._idx],this.key=this._idx+=this._step,!0):!1},e}();function lI(e){e.option=e.parentModel=e.ecModel=null}function uI(){return[1/0,-1/0]}function dI(e,t){fI(t)&&(te[1]&&(e[1]=t))}function uwe(e,t){fI(t)&&te[1]&&(e[1]=t)}function fwe(e,t){pI(t[0],t[1])&&(t[0]e[1]&&(e[1]=t[1]))}function fI(e){return e!=null&&isFinite(e)}function pI(e,t){return fI(e)&&fI(t)&&e<=t}function pwe(e){var t=e[1]-e[0];return isFinite(t)&&t>=0}function mI(e){pI(e[0],e[1])&&e[0]>e[1]&&(e[0]=e[1])}function hI(){var e=`__ec_once_`+mwe++;return function(t,n){UA(t,e)||(t[e]=1,n())}}var mwe=VF();function gI(e,t,n){var r=zA(),i=0;Q(e,function(a){var o=t(a),s=r.get(o)||0;n&&n(a,s),!s&&!n&&(e[i++]=a),r.set(o,s+1)}),n||(e.length=i)}function hwe(e){return e.value+``}function gwe(e){return e+``}function _I(e,t){return OA(t,!0)?e.seriesIndex+2:0}function _we(e,t,n){var r=e.getData().count();return{progressiveRender:n.progressiveEnabled&&t.incrementalPrepareRender&&r>=n.threshold,large:e.get(`large`)&&r>=e.get(`largeThreshold`),modDataCount:e.get(`progressiveChunkMode`)===`mod`?e.getData().count():null}}function vI(e,t){return{seriesType:e,overallReset:t}}function yI(e){return{overallReset:e}}var vwe=`.`,bI=`___EC__COMPONENT__CONTAINER___`,ywe=`___EC__EXTENDED_CLASS___`;function xI(e){var t={main:``,sub:``};if(e){var n=e.split(vwe);t.main=n[0]||``,t.sub=n[1]||``}return t}function bwe(e){MA(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(e),`componentType "`+e+`" illegal`)}function xwe(e){return!!(e&&e[ywe])}function SI(e,t){e.$constructor=e,e.extend=function(e){var t=this,n;return Swe(t)?n=function(e){X(t,e);function t(){return e.apply(this,arguments)||this}return t}(t):(n=function(){(e.$constructor||t).apply(this,arguments)},iA(n,this)),Z(n.prototype,e),n[ywe]=!0,n.extend=this.extend,n.superCall=Ewe,n.superApply=Dwe,n.superClass=t,n}}function Swe(e){return hA(e)&&/^class\s/.test(Function.prototype.toString.call(e))}function Cwe(e,t){e.extend=t.extend}var wwe=Math.round(Math.random()*10);function Twe(e){var t=[`__\0is_clz`,wwe++].join(`_`);e.prototype[t]=!0,e.isInstance=function(e){return!!(e&&e[t])}}function Ewe(e,t){var n=[...arguments].slice(2);return this.superClass.prototype[t].apply(e,n)}function Dwe(e,t,n){return this.superClass.prototype[t].apply(e,n)}function CI(e){var t={};e.registerClass=function(e){var r=e.type||e.prototype.type;if(r){bwe(r),e.prototype.type=r;var i=xI(r);if(!i.sub)t[i.main]=e;else if(i.sub!==bI){var a=n(i);a[i.sub]=e}}return e},e.getClass=function(e,n,r){var i=t[e];if(i&&i[bI]&&(i=n?i[n]:null),r&&!i)throw Error(n?`Component `+e+`.`+(n||``)+` is used but not imported.`:e+`.type should be specified.`);return i},e.getClassesByMainType=function(e){var n=xI(e),r=[],i=t[n.main];return i&&i[bI]?Q(i,function(e,t){t!==bI&&r.push(e)}):r.push(i),r},e.hasClass=function(e){return!!t[xI(e).main]},e.getAllClassMainTypes=function(){var e=[];return Q(t,function(t,n){e.push(n)}),e},e.hasSubTypes=function(e){var n=t[xI(e).main];return n&&n[bI]};function n(e){var n=t[e.main];return(!n||!n[bI])&&(n=t[e.main]={},n[bI]=!0),n}}function wI(e,t){for(var n=0;n=0||i&&rA(i,s)<0)){var c=n.getShallow(s,t);c!=null&&(a[e[o][0]]=c)}}return a}}var Owe=wI([[`fill`,`color`],[`shadowBlur`],[`shadowOffsetX`],[`shadowOffsetY`],[`opacity`],[`shadowColor`]]),kwe=function(){function e(){}return e.prototype.getAreaStyle=function(e,t){return Owe(this,e,t)},e}(),TI=new ZM(50);function Awe(e){if(typeof e==`string`){var t=TI.get(e);return t&&t.image}else return e}function EI(e,t,n,r,i){if(!e)return t;if(typeof e==`string`){if(t&&t.__zrImageSrc===e||!n)return t;var a=TI.get(e),o={hostEl:n,cb:r,cbPayload:i};return a?(t=a.image,!DI(t)&&a.pending.push(o)):(t=zk.loadImage(e,jwe,jwe),t.__zrImageSrc=e,TI.put(e,t.__cachedImgObj={image:t,pending:[o]})),t}else return e}function jwe(){var e=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var t=0;t=s;l++)c-=s;var u=PP(o,n);return u>c&&(n=``,u=0),c=e-u,i.ellipsis=n,i.ellipsisWidth=u,i.contentWidth=c,i.containerWidth=e,i}function Fwe(e,t,n){var r=n.containerWidth,i=n.contentWidth,a=n.fontMeasureInfo;if(!r){e.textLine=``,e.isTruncated=!1;return}var o=PP(a,t);if(o<=r){e.textLine=t,e.isTruncated=!1;return}for(var s=0;;s++){if(o<=i||s>=n.maxIterations){t+=n.ellipsis;break}var c=s===0?Iwe(t,i,a):o>0?Math.floor(t.length*i/o):0;t=t.substr(0,c),o=PP(a,t)}t===``&&(t=n.placeholder),e.textLine=t,e.isTruncated=!0}function Iwe(e,t,n){for(var r=0,i=0,a=e.length;ig&&p){var y=Math.floor(g/f);m||=_.length>y,_=_.slice(0,y),v=_.length*f}if(i&&u&&h!=null)for(var b=Pwe(h,l,t.ellipsis,{minChar:t.truncateMinChar,placeholder:t.placeholder}),x={},S=0;S<_.length;S++)Fwe(x,_[S],b),_[S]=x.textLine,m||=x.isTruncated;for(var C=g,w=0,T=kP(l),S=0;S<_.length;S++)w=Math.max(PP(T,_[S]),w);h??=w;var E=h;return C+=c,E+=s,{lines:_,height:g,outerWidth:E,outerHeight:C,lineHeight:f,calculatedLineHeight:d,contentWidth:w,contentHeight:v,width:h,isTruncated:m}}var Rwe=function(){function e(){}return e}(),zwe=function(){function e(e){this.tokens=[],e&&(this.tokens=e)}return e}(),Bwe=function(){function e(){this.width=0,this.height=0,this.contentWidth=0,this.contentHeight=0,this.outerWidth=0,this.outerHeight=0,this.lines=[],this.isTruncated=!1}return e}();function Vwe(e,t,n,r,i){var a=new Bwe,o=AI(e);if(!o)return a;var s=t.padding,c=s?s[1]+s[3]:0,l=s?s[0]+s[2]:0,u=t.width;u==null&&n!=null&&(u=n-c);var d=t.height;d==null&&r!=null&&(d=r-l);for(var f=t.overflow,p=(f===`break`||f===`breakAll`)&&u!=null?{width:u,accumWidth:0,breakAll:f===`breakAll`}:null,m=OI.lastIndex=0,h;(h=OI.exec(o))!=null;){var g=h.index;g>m&&kI(a,o.substring(m,g),t,p),kI(a,h[2],t,p,h[1]),m=OI.lastIndex}md){var F=a.lines.length;O>0?(T.tokens=T.tokens.slice(0,O),C(T,D,E),a.lines=a.lines.slice(0,w+1)):a.lines=a.lines.slice(0,w),a.isTruncated=a.isTruncated||a.lines.length0&&m+r.accumWidth>r.width&&(u=t.split(` -`),l=!0),r.accumWidth=m}else{var h=Gwe(t,c,r.width,r.breakAll,r.accumWidth);r.accumWidth=h.accumWidth+p,d=h.linesWidths,u=h.lines}}u||=t.split(` -`);for(var g=kP(c),_=0;_=32&&t<=591||t>=880&&t<=4351||t>=4608&&t<=5119||t>=7680&&t<=8303}var Uwe=cA(`,&?/;] `.split(``),function(e,t){return e[t]=!0,e},{});function Wwe(e){return Hwe(e)?!!Uwe[e]:!0}function Gwe(e,t,n,r,i){for(var a=[],o=[],s=``,c=``,l=0,u=0,d=kP(t),f=0;fn:i+u+m>n){u?(s||c)&&(h?(s||(s=c,c=``,l=0,u=l),a.push(s),o.push(u-l),c+=p,l+=m,s=``,u=l):(c&&(s+=c,c=``,l=0),a.push(s),o.push(u),s=p,u=m)):h?(a.push(c),o.push(l),c=p,l=m):(a.push(p),o.push(m));continue}u+=m,h?(c+=p,l+=m):(c&&(s+=c,c=``,l=0),s+=p)}return c&&(s+=c),s&&(a.push(s),o.push(u)),a.length===1&&(u+=i),{accumWidth:u,lines:a,linesWidths:o}}function Kwe(e,t,n,r,i,a){if(e.baseX=n,e.baseY=r,e.outerWidth=e.outerHeight=null,t){var o=t.width*2,s=t.height*2;eM.set(qwe,LP(n,o,i),RP(r,s,a),o,s),eM.intersect(t,qwe,null,Jwe);var c=Jwe.outIntersectRect;e.outerWidth=c.width,e.outerHeight=c.height,e.baseX=LP(c.x,c.width,i,!0),e.baseY=RP(c.y,c.height,a,!0)}}var qwe=new eM(0,0,0,0),Jwe={outIntersectRect:{},clamp:!0};function AI(e){return e==null?e=``:e+=``}function Ywe(e){var t=AI(e.text),n=e.font;return jI(e,PP(kP(n),t),zP(n),null)}function jI(e,t,n,r){var i=new eM(LP(e.x||0,t,e.textAlign),RP(e.y||0,n,e.textBaseline),t,n),a=r??(Xwe(e)?e.lineWidth:0);return a>0&&(i.x-=a/2,i.y-=a/2,i.width+=a,i.height+=a),i}function Xwe(e){var t=e.stroke;return t!=null&&t!==`none`&&e.lineWidth>0}var MI=`__zr_style_`+Math.round(Math.random()*10),NI={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:`#000`,opacity:1,blend:`source-over`},PI={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};NI[MI]=!0;var Zwe=[`z`,`z2`,`invisible`],Qwe=[`invisible`],FI=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype._init=function(t){for(var n=dA(t),r=0;r1e-4){s[0]=e-n,s[1]=t-r,c[0]=e+n,c[1]=t+r;return}if(UI[0]=VI(i)*n+e,UI[1]=BI(i)*r+t,WI[0]=VI(a)*n+e,WI[1]=BI(a)*r+t,l(s,UI,WI),u(c,UI,WI),i%=HI,i<0&&(i+=HI),a%=HI,a<0&&(a+=HI),i>a&&!o?a+=HI:ii&&(GI[0]=VI(p)*n+e,GI[1]=BI(p)*r+t,l(s,GI,s),u(c,GI,c))}var qI={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},JI=[],YI=[],XI=[],ZI=[],QI=[],$I=[],eL=Math.min,tL=Math.max,nL=Math.cos,rL=Math.sin,iL=Math.abs,aL=Math.PI,oL=aL*2,sL=typeof Float32Array<`u`,cL=[];function lL(e){return Math.round(e/aL*1e8)/1e8%2*aL}function uL(e,t){var n=lL(e[0]);n<0&&(n+=oL);var r=n-e[0],i=e[1];i+=r,!t&&i-n>=oL?i=n+oL:t&&n-i>=oL?i=n-oL:!t&&n>i?i=n+(oL-lL(n-i)):t&&n0&&(this._ux=iL(n/pP/e)||0,this._uy=iL(n/pP/t)||0)},e.prototype.setDPR=function(e){this.dpr=e},e.prototype.setContext=function(e){this._ctx=e},e.prototype.getContext=function(){return this._ctx},e.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},e.prototype.reset=function(){this._saveData&&(this._len=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},e.prototype.moveTo=function(e,t){return this._drawPendingPt(),this.addData(qI.M,e,t),this._ctx&&this._ctx.moveTo(e,t),this._x0=e,this._y0=t,this._xi=e,this._yi=t,this},e.prototype.lineTo=function(e,t){var n=iL(e-this._xi),r=iL(t-this._yi),i=n>this._ux||r>this._uy;if(this.addData(qI.L,e,t),this._ctx&&i&&this._ctx.lineTo(e,t),i)this._xi=e,this._yi=t,this._pendingPtDist=0;else{var a=n*n+r*r;a>this._pendingPtDist&&(this._pendingPtX=e,this._pendingPtY=t,this._pendingPtDist=a)}return this},e.prototype.bezierCurveTo=function(e,t,n,r,i,a){return this._drawPendingPt(),this.addData(qI.C,e,t,n,r,i,a),this._ctx&&this._ctx.bezierCurveTo(e,t,n,r,i,a),this._xi=i,this._yi=a,this},e.prototype.quadraticCurveTo=function(e,t,n,r){return this._drawPendingPt(),this.addData(qI.Q,e,t,n,r),this._ctx&&this._ctx.quadraticCurveTo(e,t,n,r),this._xi=n,this._yi=r,this},e.prototype.arc=function(e,t,n,r,i,a){this._drawPendingPt(),cL[0]=r,cL[1]=i,uL(cL,a),r=cL[0],i=cL[1];var o=i-r;return this.addData(qI.A,e,t,n,n,r,o,0,+!a),this._ctx&&this._ctx.arc(e,t,n,r,i,a),this._xi=nL(i)*n+e,this._yi=rL(i)*n+t,this},e.prototype.arcTo=function(e,t,n,r,i){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(e,t,n,r,i),this},e.prototype.rect=function(e,t,n,r){return this._drawPendingPt(),this._ctx&&this._ctx.rect(e,t,n,r),this.addData(qI.R,e,t,n,r),this},e.prototype.closePath=function(){this._drawPendingPt(),this.addData(qI.Z);var e=this._ctx,t=this._x0,n=this._y0;return e&&e.closePath(),this._xi=t,this._yi=n,this},e.prototype.fill=function(e){e&&e.fill(),this.toStatic()},e.prototype.stroke=function(e){e&&e.stroke(),this.toStatic()},e.prototype.len=function(){return this._len},e.prototype.setData=function(e){if(this._saveData){var t=e.length;!(this.data&&this.data.length===t)&&sL&&(this.data=new Float32Array(t));for(var n=0;n0&&a))for(var o=0;ol.length&&(this._expandData(),l=this.data);for(var u=0;u0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},e.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var e=[],t=0;t11&&(this.data=new Float32Array(e)))}},e.prototype.getBoundingRect=function(){XI[0]=XI[1]=QI[0]=QI[1]=Number.MAX_VALUE,ZI[0]=ZI[1]=$I[0]=$I[1]=-Number.MAX_VALUE;var e=this.data,t=0,n=0,r=0,i=0,a;for(a=0;an||iL(v)>r||d===t-1)&&(m=Math.sqrt(_*_+v*v),i=h,a=g);break;case qI.C:var y=e[d++],b=e[d++],h=e[d++],g=e[d++],x=e[d++],S=e[d++];m=PSe(i,a,y,b,h,g,x,S,10),i=x,a=S;break;case qI.Q:var y=e[d++],b=e[d++],h=e[d++],g=e[d++];m=ISe(i,a,y,b,h,g,10),i=h,a=g;break;case qI.A:var C=e[d++],w=e[d++],T=e[d++],E=e[d++],D=e[d++],O=e[d++],k=O+D;d+=1,p&&(o=nL(D)*T+C,s=rL(D)*E+w),m=tL(T,E)*eL(oL,Math.abs(O)),i=nL(k)*T+C,a=rL(k)*E+w;break;case qI.R:o=i=e[d++],s=a=e[d++];var A=e[d++],j=e[d++];m=A*2+j*2;break;case qI.Z:var _=o-i,v=s-a;m=Math.sqrt(_*_+v*v),i=o,a=s;break}m>=0&&(c[u++]=m,l+=m)}return this._pathLen=l,l},e.prototype.rebuildPath=function(e,t){var n=this.data,r=this._ux,i=this._uy,a=this._len,o,s,c,l,u,d,f=t<1,p,m,h=0,g=0,_,v=0,y,b;if(!(f&&(this._pathSegLen||this._calculateLength(),p=this._pathSegLen,m=this._pathLen,_=t*m,!_)))lo:for(var x=0;x0&&(e.lineTo(y,b),v=0),S){case qI.M:o=c=n[x++],s=l=n[x++],e.moveTo(c,l);break;case qI.L:u=n[x++],d=n[x++];var w=iL(u-c),T=iL(d-l);if(w>r||T>i){if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;e.lineTo(c*(1-D)+u*D,l*(1-D)+d*D);break lo}h+=E}e.lineTo(u,d),c=u,l=d,v=0}else{var O=w*w+T*T;O>v&&(y=u,b=d,v=O)}break;case qI.C:var k=n[x++],A=n[x++],j=n[x++],M=n[x++],N=n[x++],P=n[x++];if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;HM(c,k,j,N,D,JI),HM(l,A,M,P,D,YI),e.bezierCurveTo(JI[1],YI[1],JI[2],YI[2],JI[3],YI[3]);break lo}h+=E}e.bezierCurveTo(k,A,j,M,N,P),c=N,l=P;break;case qI.Q:var k=n[x++],A=n[x++],j=n[x++],M=n[x++];if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;qM(c,k,j,D,JI),qM(l,A,M,D,YI),e.quadraticCurveTo(JI[1],YI[1],JI[2],YI[2]);break lo}h+=E}e.quadraticCurveTo(k,A,j,M),c=j,l=M;break;case qI.A:var F=n[x++],I=n[x++],L=n[x++],R=n[x++],z=n[x++],B=n[x++],V=n[x++],H=!n[x++],U=L>R?L:R,W=iL(L-R)>.001,G=z+B,ee=!1;if(f){var E=p[g++];h+E>_&&(G=z+B*(_-h)/E,ee=!0),h+=E}if(W&&e.ellipse?e.ellipse(F,I,L,R,V,z,G,H):e.arc(F,I,U,z,G,H),ee)break lo;C&&(o=nL(z)*L+F,s=rL(z)*R+I),c=nL(G)*L+F,l=rL(G)*R+I;break;case qI.R:o=c=n[x],s=l=n[x+1],u=n[x++],d=n[x++];var K=n[x++],te=n[x++];if(f){var E=p[g++];if(h+E>_){var ne=_-h;e.moveTo(u,d),e.lineTo(u+eL(ne,K),d),ne-=K,ne>0&&e.lineTo(u+K,d+eL(ne,te)),ne-=te,ne>0&&e.lineTo(u+tL(K-ne,0),d+te),ne-=K,ne>0&&e.lineTo(u,d+tL(te-ne,0));break lo}h+=E}e.rect(u,d,K,te);break;case qI.Z:if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;e.lineTo(c*(1-D)+o*D,l*(1-D)+s*D);break lo}h+=E}e.closePath(),c=o,l=s}}},e.prototype.clone=function(){var t=new e,n=this.data;return t.data=n.slice?n.slice():Array.prototype.slice.call(n),t._len=this._len,t},e.prototype.canSave=function(){return!!this._saveData},e.CMD=qI,e.initDefaultProps=(function(){var t=e.prototype;t._saveData=!0,t._ux=0,t._uy=0,t._pendingPtDist=0,t._version=0})(),e}();function fL(e,t,n,r,i,a,o){if(i===0)return!1;var s=i,c=0,l=e;if(o>t+s&&o>r+s||oe+s&&a>n+s||at+d&&u>r+d&&u>a+d&&u>s+d||ue+d&&l>n+d&&l>i+d&&l>o+d||lt+l&&c>r+l&&c>a+l||ce+l&&s>n+l&&s>i+l||sn||u+li&&(i+=mL);var f=Math.atan2(c,s);return f<0&&(f+=mL),f>=r&&f<=i||f+mL>=r&&f+mL<=i}function hL(e,t,n,r,i,a){if(a>t&&a>r||ai?s:0}var gL=dL.CMD,_L=Math.PI*2,uTe=1e-4;function dTe(e,t){return Math.abs(e-t)t&&l>r&&l>a&&l>s||l1&&fTe(),p=RM(t,r,a,s,yL[0]),f>1&&(m=RM(t,r,a,s,yL[1]))),f===2?gt&&s>r&&s>a||s=0&&l<=1){for(var u=0,d=WM(t,r,a,l),f=0;fn||s<-n)return 0;var c=Math.sqrt(n*n-s*s);vL[0]=-c,vL[1]=c;var l=Math.abs(r-i);if(l<1e-4)return 0;if(l>=_L-1e-4){r=0,i=_L;var u=a?1:-1;return o>=vL[0]+e&&o<=vL[1]+e?u:0}if(r>i){var d=r;r=i,i=d}r<0&&(r+=_L,i+=_L);for(var f=0,p=0;p<2;p++){var m=vL[p];if(m+e>o){var h=Math.atan2(s,m),u=a?1:-1;h<0&&(h=_L+h),(h>=r&&h<=i||h+_L>=r&&h+_L<=i)&&(h>Math.PI/2&&h1&&(n||(s+=hL(c,l,u,d,r,i))),g&&(c=a[m],l=a[m+1],u=c,d=l),h){case gL.M:u=a[m++],d=a[m++],c=u,l=d;break;case gL.L:if(n){if(fL(c,l,a[m],a[m+1],t,r,i))return!0}else s+=hL(c,l,a[m],a[m+1],r,i)||0;c=a[m++],l=a[m++];break;case gL.C:if(n){if(oTe(c,l,a[m++],a[m++],a[m++],a[m++],a[m],a[m+1],t,r,i))return!0}else s+=pTe(c,l,a[m++],a[m++],a[m++],a[m++],a[m],a[m+1],r,i)||0;c=a[m++],l=a[m++];break;case gL.Q:if(n){if(sTe(c,l,a[m++],a[m++],a[m],a[m+1],t,r,i))return!0}else s+=mTe(c,l,a[m++],a[m++],a[m],a[m+1],r,i)||0;c=a[m++],l=a[m++];break;case gL.A:var _=a[m++],v=a[m++],y=a[m++],b=a[m++],x=a[m++],S=a[m++];m+=1;var C=!!(1-a[m++]);f=Math.cos(x)*y+_,p=Math.sin(x)*b+v,g?(u=f,d=p):s+=hL(c,l,f,p,r,i);var w=(r-_)*b/y+_;if(n){if(lTe(_,v,b,x,x+S,C,t,w,i))return!0}else s+=hTe(_,v,b,x,x+S,C,w,i);c=Math.cos(x+S)*y+_,l=Math.sin(x+S)*b+v;break;case gL.R:u=c=a[m++],d=l=a[m++];var T=a[m++],E=a[m++];if(f=u+T,p=d+E,n){if(fL(u,d,f,d,t,r,i)||fL(f,d,f,p,t,r,i)||fL(f,p,u,p,t,r,i)||fL(u,p,u,d,t,r,i))return!0}else s+=hL(f,d,f,p,r,i),s+=hL(u,p,u,d,r,i);break;case gL.Z:if(n){if(fL(c,l,u,d,t,r,i))return!0}else s+=hL(c,l,u,d,r,i);c=u,l=d;break}}return!n&&!dTe(l,d)&&(s+=hL(c,l,u,d,r,i)||0),s!==0}function _Te(e,t,n){return gTe(e,0,!1,t,n)}function vTe(e,t,n,r){return gTe(e,t,!0,n,r)}var bL=nA({fill:`#000`,stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:`butt`,miterLimit:10,strokeNoScale:!1,strokeFirst:!1},NI),yTe={style:nA({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},PI.style)},xL=DP.concat([`invisible`,`culling`,`z`,`z2`,`zlevel`,`parent`]),SL=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.update=function(){var n=this;e.prototype.update.call(this);var r=this.style;if(r.decal){var i=this._decalEl=this._decalEl||new t;i.buildPath===t.prototype.buildPath&&(i.buildPath=function(e){n.buildPath(e,n.shape)}),i.silent=!0;var a=i.style;for(var o in r)a[o]!==r[o]&&(a[o]=r[o]);a.fill=r.fill?r.decal:null,a.decal=null,a.shadowColor=null,r.strokeFirst&&(a.stroke=null);for(var s=0;s.5?hP:t>.2?pCe:gP}else if(e)return gP}return hP},t.prototype.getInsideTextStroke=function(e){var t=this.style.fill;if(gA(t)){var n=this.__zr;if(!!(n&&n.isDarkMode())==vN(e,0)<.4)return t}},t.prototype.buildPath=function(e,t,n){},t.prototype.pathUpdated=function(){this.__dirty&=-5},t.prototype.getUpdatedPathProxy=function(e){return!this.path&&this.createPathProxy(),this.path.beginPath(),this.buildPath(this.path,this.shape,e),this.path},t.prototype.createPathProxy=function(){this.path=new dL(!1)},t.prototype.hasStroke=function(){var e=this.style,t=e.stroke;return!(t==null||t===`none`||!(e.lineWidth>0))},t.prototype.hasFill=function(){var e=this.style.fill;return e!=null&&e!==`none`},t.prototype.getBoundingRect=function(){var e=this._rect,t=this.style,n=!e;if(n){var r=!1;this.path||(r=!0,this.createPathProxy());var i=this.path;(r||this.__dirty&4)&&(i.beginPath(),this.buildPath(i,this.shape,!1),this.pathUpdated()),e=i.getBoundingRect()}if(this._rect=e,this.hasStroke()&&this.path&&this.path.len()>0){var a=this._rectStroke||=e.clone();if(this.__dirty||n){a.copy(e);var o=t.strokeNoScale?this.getLineScale():1,s=t.lineWidth;if(!this.hasFill()){var c=this.strokeContainThreshold;s=Math.max(s,c??4)}o>1e-10&&(a.width+=s/o,a.height+=s/o,a.x-=s/o/2,a.y-=s/o/2)}return a}return e},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect(),i=this.style;if(e=n[0],t=n[1],r.contain(e,t)){var a=this.path;if(this.hasStroke()){var o=i.lineWidth,s=i.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(this.hasFill()||(o=Math.max(o,this.strokeContainThreshold)),vTe(a,o/s,e,t)))return!0}if(this.hasFill())return _Te(a,e,t)}return!1},t.prototype.dirtyShape=function(){this.__dirty|=4,this._rect&&=null,this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},t.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},t.prototype.animateShape=function(e){return this.animate(`shape`,e)},t.prototype.updateDuringAnimation=function(e){e===`style`?this.dirtyStyle():e===`shape`?this.dirtyShape():this.markRedraw()},t.prototype.attrKV=function(t,n){t===`shape`?this.setShape(n):e.prototype.attrKV.call(this,t,n)},t.prototype.setShape=function(e,t){var n=this.shape;return n||=this.shape={},typeof e==`string`?n[e]=t:Z(n,e),this.dirtyShape(),this},t.prototype.shapeChanged=function(){return!!(this.__dirty&4)},t.prototype.createStyle=function(e){return VA(bL,e)},t.prototype._innerSaveToNormal=function(t){e.prototype._innerSaveToNormal.call(this,t);var n=this._normalState;t.shape&&!n.shape&&(n.shape=Z({},this.shape))},t.prototype._applyStateObj=function(t,n,r,i,a,o){if(e.prototype._applyStateObj.call(this,t,n,r,i,a,o),this.__inHover!==1){var s=!(n&&i),c;if(n&&n.shape?a?i?c=n.shape:(c=Z({},r.shape),Z(c,n.shape)):(c=Z({},i?this.shape:r.shape),Z(c,n.shape)):s&&(c=r.shape),c)if(a){this.shape=Z({},this.shape);for(var l={},u=dA(c),d=0;di&&(d=s+c,s*=i/d,c*=i/d),l+u>i&&(d=l+u,l*=i/d,u*=i/d),c+l>a&&(d=c+l,c*=a/d,l*=a/d),s+u>a&&(d=s+u,s*=a/d,u*=a/d),e.moveTo(n+s,r),e.lineTo(n+i-c,r),c!==0&&e.arc(n+i-c,r+c,c,-Math.PI/2,0),e.lineTo(n+i,r+a-l),l!==0&&e.arc(n+i-l,r+a-l,l,0,Math.PI/2),e.lineTo(n+u,r+a),u!==0&&e.arc(n+u,r+a-u,u,Math.PI/2,Math.PI),e.lineTo(n,r+s),s!==0&&e.arc(n+s,r+s,s,Math.PI,Math.PI*1.5),e.closePath()}var TL=Math.round;function EL(e,t,n){if(t){var r=t.x1,i=t.x2,a=t.y1,o=t.y2;e.x1=r,e.x2=i,e.y1=a,e.y2=o;var s=n&&n.lineWidth;return s?(TL(r*2)===TL(i*2)&&(e.x1=e.x2=DL(r,s,!0)),TL(a*2)===TL(o*2)&&(e.y1=e.y2=DL(a,s,!0)),e):e}}function TTe(e,t,n){if(t){var r=t.x,i=t.y,a=t.width,o=t.height;e.x=r,e.y=i,e.width=a,e.height=o;var s=n&&n.lineWidth;return s?(e.x=DL(r,s,!0),e.y=DL(i,s,!0),e.width=Math.max(DL(r+a,s,!1)-e.x,a===0?0:1),e.height=Math.max(DL(i+o,s,!1)-e.y,o===0?0:1),e):e}}function DL(e,t,n){if(!t)return e;var r=TL(e*2);return(r+TL(t))%2==0?r/2:(r+(n?1:-1))/2}var ETe=function(){function e(){this.x=0,this.y=0,this.width=0,this.height=0}return e}(),DTe={},OL=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new ETe},t.prototype.buildPath=function(e,t){var n,r,i,a;if(this.subPixelOptimize){var o=TTe(DTe,t,this.style);n=o.x,r=o.y,i=o.width,a=o.height,o.r=t.r,t=o}else n=t.x,r=t.y,i=t.width,a=t.height;t.r?wTe(e,t):e.rect(n,r,i,a)},t.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},t}(SL);OL.prototype.type=`rect`;var OTe={fill:`#000`},kTe=2,kL={},ATe={style:nA({fill:!0,stroke:!0,fillOpacity:!0,strokeOpacity:!0,lineWidth:!0,fontSize:!0,lineHeight:!0,width:!0,height:!0,textShadowColor:!0,textShadowBlur:!0,textShadowOffsetX:!0,textShadowOffsetY:!0,backgroundColor:!0,padding:!0,borderColor:!0,borderWidth:!0,borderRadius:!0},PI.style)},AL=function(e){qA(t,e);function t(t){var n=e.call(this)||this;return n.type=`text`,n._children=[],n._defaultStyle=OTe,n.attr(t),n}return t.prototype.childrenRef=function(){return this._children},t.prototype.update=function(){e.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var t=0;t0,T=0;T=0&&(D=y[E],D.align===`right`);)this._placeToken(D,e,x,m,T,`right`,g),S-=D.width,T-=D.width,E--;for(w+=(s-(w-p)-(h-T)-S)/2;C<=E;)D=y[C],this._placeToken(D,e,x,m,w+D.width/2,`center`,g),w+=D.width,C++;m+=x}},t.prototype._placeToken=function(e,t,n,r,i,a,o){var s=t.rich[e.styleName]||{};s.text=e.text;var c=e.verticalAlign,l=r+n/2;c===`top`?l=r+e.height/2:c===`bottom`&&(l=r+n-e.height/2),!e.isLineHolder&&jL(s)&&this._renderBackground(s,t,a===`right`?i-e.width:a===`center`?i-e.width/2:i,l-e.height/2,e.width,e.height);var u=!!s.backgroundColor,d=e.textPadding;d&&(i=VTe(i,a,d),l-=e.height/2-d[0]-e.innerHeight/2);var f=this._getOrCreateChild(CL),p=f.createStyle();f.useStyle(p);var m=this._defaultStyle,h=!1,g=0,_=!1,v=BTe(`fill`in s?s.fill:`fill`in t?t.fill:(h=!0,m.fill)),y=zTe(`stroke`in s?s.stroke:`stroke`in t?t.stroke:!u&&!o&&(!m.autoStroke||h)?(g=kTe,_=!0,m.stroke):null),b=s.textShadowBlur>0||t.textShadowBlur>0;p.text=e.text,p.x=i,p.y=l,b&&(p.shadowBlur=s.textShadowBlur||t.textShadowBlur||0,p.shadowColor=s.textShadowColor||t.textShadowColor||`transparent`,p.shadowOffsetX=s.textShadowOffsetX||t.textShadowOffsetX||0,p.shadowOffsetY=s.textShadowOffsetY||t.textShadowOffsetY||0),p.textAlign=a,p.textBaseline=`middle`,p.font=e.font||`12px sans-serif`,p.opacity=kA(s.opacity,t.opacity,1),FTe(p,s),y&&(p.lineWidth=kA(s.lineWidth,t.lineWidth,g),p.lineDash=OA(s.lineDash,t.lineDash),p.lineDashOffset=t.lineDashOffset||0,p.stroke=y),v&&(p.fill=v),f.setBoundingRect(jI(p,e.contentWidth,e.contentHeight,_?0:null))},t.prototype._renderBackground=function(e,t,n,r,i,a){var o=e.backgroundColor,s=e.borderWidth,c=e.borderColor,l=o&&o.image,u=o&&!l,d=e.borderRadius,f=this,p,m;if(u||e.lineHeight||s&&c){p=this._getOrCreateChild(OL),p.useStyle(p.createStyle()),p.style.fill=null;var h=p.shape;h.x=n,h.y=r,h.width=i,h.height=a,h.r=d,p.dirtyShape()}if(u){var g=p.style;g.fill=o||null,g.fillOpacity=OA(e.fillOpacity,1)}else if(l){m=this._getOrCreateChild(wL),m.onload=function(){f.dirtyStyle()};var _=m.style;_.image=o.image,_.x=n,_.y=r,_.width=i,_.height=a}if(s&&c){var g=p.style;g.lineWidth=s,g.stroke=c,g.strokeOpacity=OA(e.strokeOpacity,1),g.lineDash=e.borderDash,g.lineDashOffset=e.borderDashOffset||0,p.strokeContainThreshold=0,p.hasFill()&&p.hasStroke()&&(g.strokeFirst=!0,g.lineWidth*=2)}var v=(p||m).style;v.shadowBlur=e.shadowBlur||0,v.shadowColor=e.shadowColor||`transparent`,v.shadowOffsetX=e.shadowOffsetX||0,v.shadowOffsetY=e.shadowOffsetY||0,v.opacity=kA(e.opacity,t.opacity,1)},t.makeFont=function(e){var t=``;return ITe(e)&&(t=[e.fontStyle,e.fontWeight,PTe(e.fontSize),e.fontFamily||`sans-serif`].join(` `)),t&&NA(t)||e.textFont||e.font},t}(FI),jTe={left:!0,right:1,center:1},MTe={top:1,bottom:1,middle:1},NTe=[`fontStyle`,`fontWeight`,`fontSize`,`fontFamily`];function PTe(e){return typeof e==`string`&&(e.indexOf(`px`)!==-1||e.indexOf(`rem`)!==-1||e.indexOf(`em`)!==-1)?e:isNaN(+e)?`12px`:e+`px`}function FTe(e,t){for(var n=0;n=0,a=!1;if(e instanceof SL){var o=ZTe(e),s=i&&o.selectFill||o.normalFill,c=i&&o.selectStroke||o.normalStroke;if(qL(s)||qL(c)){r||={};var l=r.style||{};l.fill===`inherit`?(a=!0,r=Z({},r),l=Z({},l),l.fill=s):!qL(l.fill)&&qL(s)?(a=!0,r=Z({},r),l=Z({},l),l.fill=bN(s)):!qL(l.stroke)&&qL(c)&&(a||(r=Z({},r),l=Z({},l)),l.stroke=bN(c)),r.style=l}}if(r&&r.z2==null){a||(r=Z({},r));var u=e.z2EmphasisLift;r.z2=e.z2+(u??10)}return r}function lEe(e,t,n){if(n&&n.z2==null){n=Z({},n);var r=e.z2SelectLift;n.z2=e.z2+(r??9)}return n}function uEe(e,t,n){var r=rA(e.currentStates,t)>=0,i=e.style.opacity,a=r?null:sEe(e,[`opacity`],t,{opacity:1});n||={};var o=n.style||{};return o.opacity??(n=Z({},n),o=Z({opacity:r?i:a.opacity*.1},o),n.style=o),n}function QL(e,t){var n=this.states[e];if(this.style){if(e===`emphasis`)return cEe(this,e,t,n);if(e===`blur`)return uEe(this,e,n);if(e===`select`)return lEe(this,e,n)}return n}function $L(e){e.stateProxy=QL;var t=e.getTextContent(),n=e.getTextGuideLine();t&&(t.stateProxy=QL),n&&(n.stateProxy=QL)}function dEe(e,t){!oR(e,t)&&!e.__highByOuter&&XL(e,tEe)}function fEe(e,t){!oR(e,t)&&!e.__highByOuter&&XL(e,nEe)}function eR(e,t){e.__highByOuter|=1<<(t||0),XL(e,tEe)}function tR(e,t){!(e.__highByOuter&=~(1<<(t||0)))&&XL(e,nEe)}function nR(e){XL(e,YL)}function rR(e){XL(e,rEe)}function iR(e){XL(e,iEe)}function aR(e){XL(e,aEe)}function oR(e,t){return e.__highDownSilentOnTouch&&t.zrByTouch}function sR(e){var t=e.getModel(),n=[],r=[];t.eachComponent(function(t,i){var a=VL(i),o=JTe(e,i),s=t===`series`;!s&&r.push(o),a.isBlured&&(o.group.traverse(function(e){rEe(e)}),s&&n.push(i)),a.isBlured=!1}),Q(r,function(e){e&&e.toggleBlurSeries&&e.toggleBlurSeries(n,!1,t)})}function cR(e,t,n,r){var i=r.getModel();n||=`coordinateSystem`;function a(e,t){for(var n=0;n0){var a={dataIndex:i,seriesIndex:e.seriesIndex};r!=null&&(a.dataType=r),t.push(a)}})}),t}function fR(e,t,n){_R(e,!0),XL(e,$L),mR(e,t,n)}function vEe(e){_R(e,!1)}function pR(e,t,n,r){r?vEe(e):fR(e,t,n)}function mR(e,t,n){var r=ML(e);t==null?r.focus&&=null:(r.focus=t,r.blurScope=n)}var hR=[`emphasis`,`blur`,`select`],yEe={itemStyle:`getItemStyle`,lineStyle:`getLineStyle`,areaStyle:`getAreaStyle`};function gR(e,t,n,r){n||=`itemStyle`;for(var i=0;i1&&(o*=wR(m),s*=wR(m));var h=(i===a?-1:1)*wR((o*o*(s*s)-o*o*(p*p)-s*s*(f*f))/(o*o*(p*p)+s*s*(f*f)))||0,g=h*o*p/s,_=h*-s*f/o,v=(e+n)/2+ER(d)*g-TR(d)*_,y=(t+r)/2+TR(d)*g+ER(d)*_,b=AR([1,0],[(f-g)/o,(p-_)/s]),x=[(f-g)/o,(p-_)/s],S=[(-1*f-g)/o,(-1*p-_)/s],C=AR(x,S);if(kR(x,S)<=-1&&(C=DR),kR(x,S)>=1&&(C=0),C<0){var w=Math.round(C/DR*1e6)/1e6;C=DR*2+w%2*DR}u.addData(l,v,y,o,s,b,C,d,a)}var TEe=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,EEe=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function DEe(e){var t=new dL;if(!e)return t;var n=0,r=0,i=n,a=r,o,s=dL.CMD,c=e.match(TEe);if(!c)return t;for(var l=0;lA*A+j*j&&(w=E,T=D),{cx:w,cy:T,x0:-u,y0:-d,x1:w*(i/x-1),y1:T*(i/x-1)}}function PEe(e){var t;if(mA(e)){var n=e.length;if(!n)return e;t=n===1?[e[0],e[0],0,0]:n===2?[e[0],e[0],e[1],e[1]]:n===3?e.concat(e[2]):e}else t=[e,e,e,e];return t}function FEe(e,t){var n,r=KR(t.r,0),i=KR(t.r0||0,0),a=r>0;if(!(!a&&!(i>0))){if(a||(r=i,i=0),i>r){var o=r;r=i,i=o}var s=t.startAngle,c=t.endAngle;if(!(isNaN(s)||isNaN(c))){var l=t.cx,u=t.cy,d=!!t.clockwise,f=WR(c-s),p=f>BR&&f%BR;if(p>JR&&(f=p),!(r>JR))e.moveTo(l,u);else if(f>BR-JR)e.moveTo(l+r*HR(s),u+r*VR(s)),e.arc(l,u,r,s,c,!d),i>JR&&(e.moveTo(l+i*HR(c),u+i*VR(c)),e.arc(l,u,i,c,s,d));else{var m=void 0,h=void 0,g=void 0,_=void 0,v=void 0,y=void 0,b=void 0,x=void 0,S=void 0,C=void 0,w=void 0,T=void 0,E=void 0,D=void 0,O=void 0,k=void 0,A=r*HR(s),j=r*VR(s),M=i*HR(c),N=i*VR(c),P=f>JR;if(P){var F=t.cornerRadius;F&&(n=PEe(F),m=n[0],h=n[1],g=n[2],_=n[3]);var I=WR(r-i)/2;if(v=qR(I,g),y=qR(I,_),b=qR(I,m),x=qR(I,h),w=S=KR(v,y),T=C=KR(b,x),(S>JR||C>JR)&&(E=r*HR(c),D=r*VR(c),O=i*HR(s),k=i*VR(s),fJR){var W=qR(g,w),G=qR(_,w),ee=YR(O,k,A,j,r,W,d),K=YR(E,D,M,N,r,G,d);e.moveTo(l+ee.cx+ee.x0,u+ee.cy+ee.y0),w0&&e.arc(l+ee.cx,u+ee.cy,W,UR(ee.y0,ee.x0),UR(ee.y1,ee.x1),!d),e.arc(l,u,r,UR(ee.cy+ee.y1,ee.cx+ee.x1),UR(K.cy+K.y1,K.cx+K.x1),!d),G>0&&e.arc(l+K.cx,u+K.cy,G,UR(K.y1,K.x1),UR(K.y0,K.x0),!d))}else e.moveTo(l+A,u+j),e.arc(l,u,r,s,c,!d);if(!(i>JR)||!P)e.lineTo(l+M,u+N);else if(T>JR){var W=qR(m,T),G=qR(h,T),ee=YR(M,N,E,D,i,-G,d),K=YR(A,j,O,k,i,-W,d);e.lineTo(l+ee.cx+ee.x0,u+ee.cy+ee.y0),T0&&e.arc(l+ee.cx,u+ee.cy,G,UR(ee.y0,ee.x0),UR(ee.y1,ee.x1),!d),e.arc(l,u,i,UR(ee.cy+ee.y1,ee.cx+ee.x1),UR(K.cy+K.y1,K.cx+K.x1),d),W>0&&e.arc(l+K.cx,u+K.cy,W,UR(K.y1,K.x1),UR(K.y0,K.x0),!d))}else e.lineTo(l+M,u+N),e.arc(l,u,i,c,s,d)}e.closePath()}}}var IEe=function(){function e(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0,this.cornerRadius=0}return e}(),XR=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new IEe},t.prototype.buildPath=function(e,t){FEe(e,t)},t.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},t}(SL);XR.prototype.type=`sector`;var LEe=function(){function e(){this.cx=0,this.cy=0,this.r=0,this.r0=0}return e}(),ZR=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new LEe},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.PI*2;e.moveTo(n+t.r,r),e.arc(n,r,t.r,0,i,!1),e.moveTo(n+t.r0,r),e.arc(n,r,t.r0,0,i,!0)},t}(SL);ZR.prototype.type=`ring`;function REe(e,t,n,r){var i=[],a=[],o=[],s=[],c,l,u,d;if(r){u=[1/0,1/0],d=[-1/0,-1/0];for(var f=0,p=e.length;f=2){if(r){var a=REe(i,r,n,t.smoothConstraint);e.moveTo(i[0][0],i[0][1]);for(var o=i.length,s=0;s<(n?o:o-1);s++){var c=a[s*2],l=a[s*2+1],u=i[(s+1)%o];e.bezierCurveTo(c[0],c[1],l[0],l[1],u[0],u[1])}}else{e.moveTo(i[0][0],i[0][1]);for(var s=1,d=i.length;spz[1]){if(i=!1,mz.negativeSize||n)return i;var s=dz(pz[0]-fz[1]),c=dz(fz[0]-pz[1]);uz(s,c)>gz.len()&&(s=c||!mz.bidirectional)&&(Vj.scale(hz,o,-c*r),mz.useDir&&mz.calcDirMTV()))}}return i},e.prototype._getProjMinMaxOnAxis=function(e,t,n){for(var r=this._axes[e],i=this._origin,a=t[0].dot(r)+i[e],o=a,s=a,c=1;c0){var d=u.duration,f=u.delay,p=u.easing,m={duration:d,delay:f||0,easing:p,done:a,force:!!a||!!o,setToFinal:!l,scope:e,during:o};s?t.animateFrom(n,m):t.animateTo(n,m)}else t.stopAnimation(),!s&&t.attr(n),o&&o(1),a&&a()}function Sz(e,t,n,r,i,a){xz(`update`,e,t,n,r,i,a)}function Cz(e,t,n,r,i,a){xz(`enter`,e,t,n,r,i,a)}function wz(e){if(!e.__zr)return!0;for(var t=0;taz,BezierCurve:()=>iz,BoundingRect:()=>eM,Circle:()=>LR,CompoundPath:()=>oz,Ellipse:()=>RR,Group:()=>$P,HOVER_LAYER_FOR_INCREMENTAL:()=>2,HOVER_LAYER_FROM_THRESHOLD:()=>1,HOVER_LAYER_NO:()=>0,Image:()=>wL,IncrementalDisplayable:()=>vz,Line:()=>tz,LinearGradient:()=>cz,OrientedBoundingRect:()=>_z,Path:()=>SL,Point:()=>Vj,Polygon:()=>$R,Polyline:()=>ez,RadialGradient:()=>lz,Rect:()=>OL,Ring:()=>ZR,Sector:()=>XR,Text:()=>AL,WH:()=>Mz,XY:()=>jz,applyTransform:()=>Gz,calcZ2Range:()=>fB,clipPointsByRect:()=>Yz,clipRectByRect:()=>Xz,createIcon:()=>Zz,decomposeTransform:()=>gB,ensureCopyRect:()=>lB,ensureCopyTransform:()=>uB,expandOrShrinkRect:()=>tB,extendPath:()=>Pz,extendShape:()=>Nz,getCurrentCanvasPainter:()=>vB,getShapeClass:()=>Iz,getTransform:()=>Wz,groupTransition:()=>Jz,initProps:()=>Cz,isBoundingRectAxisAligned:()=>sB,isElementRemoved:()=>wz,lineLineIntersect:()=>$z,linePolygonIntersect:()=>Qz,makeImage:()=>Rz,makePath:()=>Lz,mergePath:()=>Bz,payloadDisableAnimation:()=>hB,registerShape:()=>Fz,removeElement:()=>Tz,removeElementWithFadeOut:()=>Dz,resizePath:()=>Vz,retrieveZInfo:()=>dB,setTooltipConfig:()=>iB,subPixelOptimize:()=>Uz,subPixelOptimizeLine:()=>Hz,subPixelOptimizeRect:()=>YEe,transformDirection:()=>Kz,traverseElements:()=>oB,traverseUpdateZ:()=>pB,updateProps:()=>Sz}),Az={},jz=[`x`,`y`],Mz=[`width`,`height`];function Nz(e){return SL.extend(e)}var JEe=OEe;function Pz(e,t){return JEe(e,t)}function Fz(e,t){Az[e]=t}function Iz(e){if(Az.hasOwnProperty(e))return Az[e]}function Lz(e,t,n,r){var i=FR(e,t);return n&&(r===`center`&&(n=zz(n,i.getBoundingRect())),Vz(i,n)),i}function Rz(e,t,n){var r=new wL({style:{image:e,x:t.x,y:t.y,width:t.width,height:t.height},onload:function(e){if(n===`center`){var i={width:e.width,height:e.height};r.setStyle(zz(t,i))}}});return r}function zz(e,t){var n=t.width/t.height,r=e.height*n,i;r<=e.width?i=e.height:(r=e.width,i=r/n);var a=e.x+e.width/2,o=e.y+e.height/2;return{x:a-r/2,y:o-i/2,width:r,height:i}}var Bz=kEe;function Vz(e,t){if(e.applyTransform){var n=e.getBoundingRect().calculateTransform(t);e.applyTransform(n)}}function Hz(e,t){return EL(e,e,{lineWidth:t}),e}function YEe(e,t){return TTe(e,e,t),e}var Uz=DL;function Wz(e,t){for(var n=Nj([]);e&&e!==t;)Fj(n,e.getLocalTransform(),n),e=e.parent;return n}function Gz(e,t,n){return t&&!oA(t)&&(t=wP.getLocalTransform(t)),n&&(t=zj([],t)),uj([],e,t)}function Kz(e,t,n){var r=t[4]===0||t[5]===0||t[0]===0?1:dF(2*t[4]/t[0]),i=t[4]===0||t[5]===0||t[2]===0?1:dF(2*t[4]/t[2]),a=[e===`left`?-r:e===`right`?r:0,e===`top`?-i:e===`bottom`?i:0];return a=Gz(a,t,n),dF(a[0])>dF(a[1])?a[0]>0?`right`:`left`:a[1]>0?`bottom`:`top`}function qz(e){return!e.isGroup}function XEe(e){return e.shape!=null}function Jz(e,t,n){if(!e||!t)return;function r(e){var t={};return e.traverse(function(e){qz(e)&&e.anid&&(t[e.anid]=e)}),t}function i(e){var t={x:e.x,y:e.y,rotation:e.rotation};return XEe(e)&&(t.shape=Qk(e.shape)),t}var a=r(e);t.traverse(function(e){if(qz(e)&&e.anid){var t=a[e.anid];if(t){var r=i(e);e.attr(i(t)),Sz(e,r,n,ML(e).dataIndex)}}})}function Yz(e,t){return sA(e,function(e){var n=e[0];n=uF(n,t.x),n=lF(n,t.x+t.width);var r=e[1];return r=uF(r,t.y),r=lF(r,t.y+t.height),[n,r]})}function Xz(e,t){var n=uF(e.x,t.x),r=lF(e.x+e.width,t.x+t.width),i=uF(e.y,t.y),a=lF(e.y+e.height,t.y+t.height);if(r>=n&&a>=i)return{x:n,y:i,width:r-n,height:a-i}}function Zz(e,t,n){var r=Z({rectHover:!0},t),i=r.style={strokeNoScale:!0};if(n||={x:-1,y:-1,width:2,height:2},e)return e.indexOf(`image://`)===0?(i.image=e.slice(8),nA(i,n),new wL(r)):Lz(e.replace(`path://`,``),r,n,`center`)}function Qz(e,t,n,r,i){for(var a=0,o=i[i.length-1];a1)return!1;var g=eB(p,m,u,d)/f;return!(g<0||g>1)}function eB(e,t,n,r){return e*r-n*t}function ZEe(e){return e<=1e-6&&e>=-1e-6}function tB(e,t,n,r,i){return t==null?e:(vA(t)?nB[0]=nB[1]=nB[2]=nB[3]=t:(nB[0]=t[0],nB[1]=t[1],nB[2]=t[2],nB[3]=t[3]),r&&(nB[0]=uF(0,nB[0]),nB[1]=uF(0,nB[1]),nB[2]=uF(0,nB[2]),nB[3]=uF(0,nB[3])),n&&(nB[0]=-nB[0],nB[1]=-nB[1],nB[2]=-nB[2],nB[3]=-nB[3]),rB(e,nB,`x`,`width`,3,1,i&&i[0]||0),rB(e,nB,`y`,`height`,0,2,i&&i[1]||0),e)}var nB=[0,0,0,0];function rB(e,t,n,r,i,a,o){var s=t[a]+t[i],c=e[r];e[r]+=s,o=uF(0,lF(o,c)),e[r]=0?-t[i]:t[a]>=0?c+t[a]:dF(s)>1e-8?(c-o)*t[i]/s:0):e[n]-=t[i]}function iB(e){var t=e.itemTooltipOption,n=e.componentModel,r=e.itemName,i=gA(t)?{formatter:t}:t,a=n.mainType,o=n.componentIndex,s={componentType:a,name:r,$vars:[`name`]};s[a+`Index`]=o;var c=e.formatterParamsExtra;c&&Q(dA(c),function(e){UA(s,e)||(s[e]=c[e],s.$vars.push(e))});var l=ML(e.el);l.componentMainType=a,l.componentIndex=o,l.tooltipConfig={name:r,option:nA({content:r,encodeHTMLContent:!0,formatterParams:s},i)}}function aB(e,t){var n;e.isGroup&&(n=t(e)),n||e.traverse(t)}function oB(e,t){if(e)if(mA(e))for(var n=0;nt&&(t=r),rt&&(n=t=0),{min:n,max:t}}function pB(e,t,n){mB(e,t,n,-1/0)}function mB(e,t,n,r){if(e.ignoreModelZ)return r;var i=e.getTextContent(),a=e.getTextGuideLine();if(e.isGroup)for(var o=e.childrenRef(),s=0;s=0&&n.push(e)}),n}}function VB(e,t){return $k($k({},e,!0),t,!0)}var lDe={time:{month:[`January`,`February`,`March`,`April`,`May`,`June`,`July`,`August`,`September`,`October`,`November`,`December`],monthAbbr:[`Jan`,`Feb`,`Mar`,`Apr`,`May`,`Jun`,`Jul`,`Aug`,`Sep`,`Oct`,`Nov`,`Dec`],dayOfWeek:[`Sunday`,`Monday`,`Tuesday`,`Wednesday`,`Thursday`,`Friday`,`Saturday`],dayOfWeekAbbr:[`Sun`,`Mon`,`Tue`,`Wed`,`Thu`,`Fri`,`Sat`]},legend:{selector:{all:`All`,inverse:`Inv`}},toolbox:{brush:{title:{rect:`Box Select`,polygon:`Lasso Select`,lineX:`Horizontally Select`,lineY:`Vertically Select`,keep:`Keep Selections`,clear:`Clear Selections`}},dataView:{title:`Data View`,lang:[`Data View`,`Close`,`Refresh`]},dataZoom:{title:{zoom:`Zoom`,back:`Zoom Reset`}},magicType:{title:{line:`Switch to Line Chart`,bar:`Switch to Bar Chart`,stack:`Stack`,tiled:`Tile`}},restore:{title:`Restore`},saveAsImage:{title:`Save as Image`,lang:[`Right Click to Save Image`]}},series:{typeNames:{pie:`Pie chart`,bar:`Bar chart`,line:`Line chart`,scatter:`Scatter plot`,effectScatter:`Ripple scatter plot`,radar:`Radar chart`,tree:`Tree`,treemap:`Treemap`,boxplot:`Boxplot`,candlestick:`Candlestick`,k:`K line chart`,heatmap:`Heat map`,map:`Map`,parallel:`Parallel coordinate map`,lines:`Line graph`,graph:`Relationship graph`,sankey:`Sankey diagram`,funnel:`Funnel chart`,gauge:`Gauge`,pictorialBar:`Pictorial bar`,themeRiver:`Theme River Map`,sunburst:`Sunburst`,custom:`Custom chart`,chart:`Chart`}},aria:{general:{withTitle:`This is a chart about "{title}"`,withoutTitle:`This is a chart`},series:{single:{prefix:``,withName:` with type {seriesType} named {seriesName}.`,withoutName:` with type {seriesType}.`},multiple:{prefix:`. It consists of {seriesCount} series count.`,withName:` The {seriesId} series is a {seriesType} representing {seriesName}.`,withoutName:` The {seriesId} series is a {seriesType}.`,separator:{middle:``,end:``}}},data:{allData:`The data is as follows: `,partialData:`The first {displayCnt} items are: `,withName:`the data for {name} is {value}`,withoutName:`{value}`,separator:{middle:`, `,end:`. `}}}},uDe={time:{month:[`一月`,`二月`,`三月`,`四月`,`五月`,`六月`,`七月`,`八月`,`九月`,`十月`,`十一月`,`十二月`],monthAbbr:[`1月`,`2月`,`3月`,`4月`,`5月`,`6月`,`7月`,`8月`,`9月`,`10月`,`11月`,`12月`],dayOfWeek:[`星期日`,`星期一`,`星期二`,`星期三`,`星期四`,`星期五`,`星期六`],dayOfWeekAbbr:[`日`,`一`,`二`,`三`,`四`,`五`,`六`]},legend:{selector:{all:`全选`,inverse:`反选`}},toolbox:{brush:{title:{rect:`矩形选择`,polygon:`圈选`,lineX:`横向选择`,lineY:`纵向选择`,keep:`保持选择`,clear:`清除选择`}},dataView:{title:`数据视图`,lang:[`数据视图`,`关闭`,`刷新`]},dataZoom:{title:{zoom:`区域缩放`,back:`区域缩放还原`}},magicType:{title:{line:`切换为折线图`,bar:`切换为柱状图`,stack:`切换为堆叠`,tiled:`切换为平铺`}},restore:{title:`还原`},saveAsImage:{title:`保存为图片`,lang:[`右键另存为图片`]}},series:{typeNames:{pie:`饼图`,bar:`柱状图`,line:`折线图`,scatter:`散点图`,effectScatter:`涟漪散点图`,radar:`雷达图`,tree:`树图`,treemap:`矩形树图`,boxplot:`箱型图`,candlestick:`K线图`,k:`K线图`,heatmap:`热力图`,map:`地图`,parallel:`平行坐标图`,lines:`线图`,graph:`关系图`,sankey:`桑基图`,funnel:`漏斗图`,gauge:`仪表盘图`,pictorialBar:`象形柱图`,themeRiver:`主题河流图`,sunburst:`旭日图`,custom:`自定义图表`,chart:`图表`}},aria:{general:{withTitle:`这是一个关于“{title}”的图表。`,withoutTitle:`这是一个图表,`},series:{single:{prefix:``,withName:`图表类型是{seriesType},表示{seriesName}。`,withoutName:`图表类型是{seriesType}。`},multiple:{prefix:`它由{seriesCount}个图表系列组成。`,withName:`第{seriesId}个系列是一个表示{seriesName}的{seriesType},`,withoutName:`第{seriesId}个系列是一个{seriesType},`,separator:{middle:`;`,end:`。`}}},data:{allData:`其数据是——`,partialData:`其中,前{displayCnt}项是——`,withName:`{name}的数据是{value}`,withoutName:`{value}`,separator:{middle:`,`,end:``}}}},HB=`ZH`,UB=`EN`,WB=UB,GB={},KB={},qB=Rk.domSupported?function(){return(document.documentElement.lang||navigator.language||navigator.browserLanguage||WB).toUpperCase().indexOf(HB)>-1?HB:WB}():WB;function JB(e,t){e=e.toUpperCase(),KB[e]=new zB(t),GB[e]=t}function dDe(e){if(gA(e)){var t=GB[e.toUpperCase()]||{};return e===HB||e===UB?Qk(t):$k(Qk(t),Qk(GB[WB]),!1)}else return $k(Qk(e),Qk(GB[WB]),!1)}function YB(e){return KB[e]}function fDe(){return KB[WB]}JB(UB,lDe),JB(HB,uDe);var XB=null;function pDe(e){XB||=e}function ZB(){return XB}function QB(e,t){var n=ZB(),r=t.breakOption,i=t.breakParsed;return!i&&n&&(i=n.parseAxisBreakOption(r,e)),i}function $B(e){var t=e.brk;return t?t.breaks:[]}function eV(e){var t=e.brk;return t?t.hasBreaks():!1}var tV=1e3,nV=tV*60,rV=nV*60,iV=rV*24,aV=iV*365,mDe={year:/({yyyy}|{yy})/,month:/({MMMM}|{MMM}|{MM}|{M})/,day:/({dd}|{d})/,hour:/({HH}|{H}|{hh}|{h})/,minute:/({mm}|{m})/,second:/({ss}|{s})/,millisecond:/({SSS}|{S})/},oV={year:`{yyyy}`,month:`{MMM}`,day:`{d}`,hour:`{HH}:{mm}`,minute:`{HH}:{mm}`,second:`{HH}:{mm}:{ss}`,millisecond:`{HH}:{mm}:{ss} {SSS}`},hDe=`{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}`,sV=`{yyyy}-{MM}-{dd}`,cV={year:`{yyyy}`,month:`{yyyy}-{MM}`,day:sV,hour:sV+` `+oV.hour,minute:sV+` `+oV.minute,second:sV+` `+oV.second,millisecond:hDe},lV=[`year`,`month`,`day`,`hour`,`minute`,`second`,`millisecond`],gDe=[`year`,`half-year`,`quarter`,`month`,`week`,`half-week`,`day`,`half-day`,`quarter-day`,`hour`,`minute`,`second`,`millisecond`];function _De(e){return!gA(e)&&!hA(e)?vDe(e):e}function vDe(e){e||={};var t={},n=!0;return Q(lV,function(t){n&&=e[t]==null}),Q(lV,function(r,i){var a=e[r];t[r]={};for(var o=null,s=i;s>=0;s--){var c=lV[s],l=yA(a)&&!mA(a)?a[c]:a,u=void 0;mA(l)?(u=l.slice(),o=u[0]||``):gA(l)?(o=l,u=[o]):(o==null?o=oV[r]:mDe[c].test(o)||(o=t[c][c][0]+` `+o),u=[o],n&&(u[1]=`{primary|`+o+`}`)),t[r][c]=u}}),t}function uV(e,t){return e+=``,`0000`.substr(0,t-e.length)+e}function dV(e){switch(e){case`half-year`:case`quarter`:return`month`;case`week`:case`half-week`:return`day`;case`half-day`:case`quarter-day`:return`hour`;default:return e}}function yDe(e){return e===dV(e)}function bDe(e){switch(e){case`year`:case`month`:return`day`;case`millisecond`:return`millisecond`;default:return`second`}}function fV(e,t,n,r){var i=NF(e),a=i[hV(n)](),o=i[gV(n)]()+1,s=Math.floor((o-1)/3)+1,c=i[_V(n)](),l=i[`get`+(n?`UTC`:``)+`Day`](),u=i[vV(n)](),d=(u-1)%12+1,f=i[yV(n)](),p=i[bV(n)](),m=i[xV(n)](),h=u>=12?`pm`:`am`,g=h.toUpperCase(),_=(r instanceof zB?r:YB(r||qB)||fDe()).getModel(`time`),v=_.get(`month`),y=_.get(`monthAbbr`),b=_.get(`dayOfWeek`),x=_.get(`dayOfWeekAbbr`);return(t||``).replace(/{a}/g,h+``).replace(/{A}/g,g+``).replace(/{yyyy}/g,a+``).replace(/{yy}/g,uV(a%100+``,2)).replace(/{Q}/g,s+``).replace(/{MMMM}/g,v[o-1]).replace(/{MMM}/g,y[o-1]).replace(/{MM}/g,uV(o,2)).replace(/{M}/g,o+``).replace(/{dd}/g,uV(c,2)).replace(/{d}/g,c+``).replace(/{eeee}/g,b[l]).replace(/{ee}/g,x[l]).replace(/{e}/g,l+``).replace(/{HH}/g,uV(u,2)).replace(/{H}/g,u+``).replace(/{hh}/g,uV(d+``,2)).replace(/{h}/g,d+``).replace(/{mm}/g,uV(f,2)).replace(/{m}/g,f+``).replace(/{ss}/g,uV(p,2)).replace(/{s}/g,p+``).replace(/{SSS}/g,uV(m,3)).replace(/{S}/g,m+``)}function xDe(e,t,n,r,i){var a=null;if(gA(n))a=n;else if(hA(n)){var o={time:e.time,level:e.time?e.time.level:0},s=ZB();s&&s.makeAxisLabelFormatterParamBreak(o,e.break),a=n(e.value,t,o)}else{var c=e.time;if(c){var l=n[c.lowerTimeUnit][c.upperTimeUnit];a=l[Math.min(c.level,l.length-1)]||``}else{var u=pV(e.value,i);a=n[u][u][0]}}return fV(new Date(e.value),a,i,r)}function pV(e,t){var n=NF(e),r=n[gV(t)]()+1,i=n[_V(t)](),a=n[vV(t)](),o=n[yV(t)](),s=n[bV(t)](),c=n[xV(t)]()===0,l=c&&s===0,u=l&&o===0,d=u&&a===0,f=d&&i===1;return f&&r===1?`year`:f?`month`:d?`day`:u?`hour`:l?`minute`:c?`second`:`millisecond`}function mV(e,t,n){switch(t){case`year`:e[SV(n)](0);case`month`:e[CV(n)](1);case`day`:e[wV(n)](0);case`hour`:e[TV(n)](0);case`minute`:e[EV(n)](0);case`second`:e[DV(n)](0)}return e}function hV(e){return e?`getUTCFullYear`:`getFullYear`}function gV(e){return e?`getUTCMonth`:`getMonth`}function _V(e){return e?`getUTCDate`:`getDate`}function vV(e){return e?`getUTCHours`:`getHours`}function yV(e){return e?`getUTCMinutes`:`getMinutes`}function bV(e){return e?`getUTCSeconds`:`getSeconds`}function xV(e){return e?`getUTCMilliseconds`:`getMilliseconds`}function SDe(e){return e?`setUTCFullYear`:`setFullYear`}function SV(e){return e?`setUTCMonth`:`setMonth`}function CV(e){return e?`setUTCDate`:`setDate`}function wV(e){return e?`setUTCHours`:`setHours`}function TV(e){return e?`setUTCMinutes`:`setMinutes`}function EV(e){return e?`setUTCSeconds`:`setSeconds`}function DV(e){return e?`setUTCMilliseconds`:`setMilliseconds`}function CDe(e,t,n,r,i,a,o,s){return new AL({style:{text:e,font:t,align:n,verticalAlign:r,padding:i,rich:a,overflow:o?`truncate`:null,lineHeight:s}}).getBoundingRect()}function OV(e){if(!BF(e))return gA(e)?e:`-`;var t=(e+``).split(`.`);return t[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,`$1,`)+(t.length>1?`.`+t[1]:``)}function kV(e,t){return e=(e||``).toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()}),t&&e&&(e=e.charAt(0).toUpperCase()+e.slice(1)),e}var AV=jA;function jV(e,t,n){var r=`{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}`;function i(e){return e&&NA(e)?e:`-`}function a(e){return WF(e)}var o=t===`time`,s=e instanceof Date;if(o||s){var c=o?NF(e):e;if(!isNaN(+c))return fV(c,r,n);if(s)return`-`}if(t===`ordinal`)return _A(e)?i(e):vA(e)&&a(e)?e+``:`-`;var l=zF(e);return a(l)?OV(l):_A(e)?i(e):typeof e==`boolean`?e+``:`-`}var MV=[`a`,`b`,`c`,`d`,`e`,`f`,`g`],NV=function(e,t){return`{`+e+(t??``)+`}`};function PV(e,t,n){mA(t)||(t=[t]);var r=t.length;if(!r)return``;for(var i=t[0].$vars||[],a=0;a`:``:{renderMode:a,content:`{`+(n.markerId||`markerX`)+`|} `,style:i===`subItem`?{width:4,height:4,borderRadius:2,backgroundColor:r}:{width:10,height:10,borderRadius:5,backgroundColor:r}}:``}function wDe(e,t,n){(e===`week`||e===`month`||e===`quarter`||e===`half-year`||e===`year`)&&(e=`MM-dd -yyyy`);var r=NF(t),i=n?`getUTC`:`get`,a=r[i+`FullYear`](),o=r[i+`Month`]()+1,s=r[i+`Date`](),c=r[i+`Hours`](),l=r[i+`Minutes`](),u=r[i+`Seconds`](),d=r[i+`Milliseconds`]();return e=e.replace(`MM`,uV(o,2)).replace(`M`,o).replace(`yyyy`,a).replace(`yy`,uV(a%100+``,2)).replace(`dd`,uV(s,2)).replace(`d`,s).replace(`hh`,uV(c,2)).replace(`h`,c).replace(`mm`,uV(l,2)).replace(`m`,l).replace(`ss`,uV(u,2)).replace(`s`,u).replace(`SSS`,uV(d,3)),e}function TDe(e){return e&&e.charAt(0).toUpperCase()+e.substr(1)}function LV(e,t){return t||=`transparent`,gA(e)?e:yA(e)&&e.colorStops&&(e.colorStops[0]||{}).color||t}function RV(e,t){if(t===`_blank`||t===`blank`){var n=window.open();n.opener=null,n.location.href=e}else window.open(e,t)}var zV={},BV={},VV=function(){function e(){this._normalMasterList=[],this._nonSeriesBoxMasterList=[]}return e.prototype.create=function(e,t){this._nonSeriesBoxMasterList=n(zV,!0),this._normalMasterList=n(BV,!1);function n(n,r){var i=[];return Q(n,function(n,r){var a=n.create(e,t);i=i.concat(a||[])}),i}},e.prototype.update=function(e,t){Q(this._normalMasterList,function(n){n.update&&n.update(e,t)})},e.prototype.getCoordinateSystems=function(){return this._normalMasterList.concat(this._nonSeriesBoxMasterList)},e.register=function(e,t){if(e===`matrix`||e===`calendar`){zV[e]=t;return}BV[e]=t},e.get=function(e){return BV[e]||zV[e]},e}();function EDe(e){return!!zV[e]}function DDe(e){HV.set(e.fullType,{getCoord2:void 0}).getCoord2=e.getCoord2}var HV=zA();function UV(e){var t=e.getShallow(`coord`,!0),n=1;if(t==null){var r=HV.get(e.type);r&&r.getCoord2&&(n=2,t=r.getCoord2(e))}return{coord:t,from:n}}function WV(e,t){var n=e.getShallow(`coordinateSystem`),r=e.getShallow(`coordinateSystemUsage`,!0),i=0;if(n){var a=e.mainType===`series`;r??=a?`data`:`box`,r===`data`?(i=1,a||(i=0)):r===`box`&&(i=2,!a&&!EDe(n)&&(i=0))}return{coordSysType:n,kind:i}}function GV(e){var t=e.targetModel,n=e.coordSysType,r=e.coordSysProvider,i=e.isDefaultDataCoordSys;e.allowNotFound;var a=WV(t,!0),o=a.kind,s=a.coordSysType;if(i&&o!==1&&(o=1,s=n),o===0||s!==n)return 0;var c=r(n,t);return c?(o===1?t.coordinateSystem=c:t.boxCoordinateSystem=c,o):0}var KV=function(e,t){var n=t.getReferringComponents(e,iI).models[0];return n&&n.coordinateSystem},qV=Q,JV=[`left`,`right`,`top`,`bottom`,`width`,`height`],YV=[[`width`,`left`,`right`],[`height`,`top`,`bottom`]];function XV(e,t,n,r,i){var a=0,o=0;r??=1/0,i??=1/0;var s=0;t.eachChild(function(c,l){var u=c.getBoundingRect(),d=t.childAt(l+1),f=d&&d.getBoundingRect(),p,m;if(e===`horizontal`){var h=u.width+(f?-f.x+u.x:0);p=a+h,p>r||c.newline?(a=0,p=h,o+=s+n,s=u.height):s=Math.max(s,u.height)}else{var g=u.height+(f?-f.y+u.y:0);m=o+g,m>i||c.newline?(a+=s+n,o=0,m=g,s=u.width):s=Math.max(s,u.width)}c.newline||(c.x=a,c.y=o,c.markRedraw(),e===`horizontal`?a=p+n:o=m+n)})}var ZV=XV;pA(XV,`vertical`),pA(XV,`horizontal`);function QV(e,t){return{left:e.getShallow(`left`,t),top:e.getShallow(`top`,t),right:e.getShallow(`right`,t),bottom:e.getShallow(`bottom`,t),width:e.getShallow(`width`,t),height:e.getShallow(`height`,t)}}function ODe(e,t){var n=rH(e,t,{enableLayoutOnlyByCenter:!0}),r=e.getBoxLayoutParams(),i,a;if(n.type===nH.point)a=n.refPoint,i=eH(r,{width:t.getWidth(),height:t.getHeight()});else{var o=e.get(`center`),s=mA(o)?o:[o,o];i=eH(r,n.refContainer),a=n.boxCoordFrom===2?n.refPoint:[bF(s[0],i.width)+i.x,bF(s[1],i.height)+i.y]}return{viewRect:i,center:a}}function $V(e,t){var n=ODe(e,t),r=n.viewRect,i=n.center,a=e.get(`radius`);mA(a)||(a=[0,a]);var o=bF(r.width,t.getWidth()),s=bF(r.height,t.getHeight()),c=Math.min(o,s),l=bF(a[0],c/2),u=bF(a[1],c/2);return{cx:i[0],cy:i[1],r0:l,r:u,viewRect:r}}function eH(e,t,n){n=AV(n||0);var r=t.width,i=t.height,a=bF(e.left,r),o=bF(e.top,i),s=bF(e.right,r),c=bF(e.bottom,i),l=bF(e.width,r),u=bF(e.height,i),d=n[2]+n[0],f=n[1]+n[3],p=e.aspect;switch(isNaN(l)&&(l=r-s-f-a),isNaN(u)&&(u=i-c-d-o),p!=null&&(isNaN(l)&&isNaN(u)&&(p>r/i?l=r*.8:u=i*.8),isNaN(l)&&(l=p*u),isNaN(u)&&(u=l/p)),isNaN(a)&&(a=r-s-l-f),isNaN(o)&&(o=i-c-u-d),e.left||e.right){case`center`:a=r/2-l/2-n[3];break;case`right`:a=r-l-f;break}switch(e.top||e.bottom){case`middle`:case`center`:o=i/2-u/2-n[0];break;case`bottom`:o=i-u-d;break}a||=0,o||=0,isNaN(l)&&(l=r-f-a-(s||0)),isNaN(u)&&(u=i-d-o-(c||0));var m=new eM((t.x||0)+a+n[3],(t.y||0)+o+n[0],l,u);return m.margin=n,m}function tH(e,t,n){var r=e.getShallow(`preserveAspect`,!0);if(!r)return t;var i=t.width/t.height;if(Math.abs(Math.atan(n)-Math.atan(i))<1e-9)return t;var a=e.getShallow(`preserveAspectAlign`,!0),o=e.getShallow(`preserveAspectVerticalAlign`,!0),s={width:t.width,height:t.height},c=r===`cover`;return i>n&&!c||i=u)return a;for(var d=0;d=0;o--)a=$k(a,n[o],!0);t.defaultOption=a}return t.defaultOption},t.prototype.getReferringComponents=function(e,t){var n=e+`Index`,r=e+`Id`;return aI(this.ecModel,e,{index:this.get(n,!0),id:this.get(r,!0)},t)},t.prototype.getBoxLayoutParams=function(){return QV(this,!1)},t.prototype.getZLevelKey=function(){return``},t.prototype.setZLevel=function(e){this.option.zlevel=e},t.protoInitialize=function(){var e=t.prototype;e.type=`component`,e.id=``,e.name=``,e.mainType=``,e.subType=``,e.componentIndex=0}(),t}(zB);Cwe(lH,zB),CI(lH),sDe(lH),cDe(lH,jDe);function jDe(e){var t=[];return Q(lH.getClassesByMainType(e),function(e){t=t.concat(e.dependencies||e.prototype.dependencies||[])}),t=sA(t,function(e){return xI(e).main}),e!==`dataset`&&rA(t,`dataset`)<=0&&t.unshift(`dataset`),t}var $={color:{},darkColor:{},size:{}},uH=$.color={theme:[`#5070dd`,`#b6d634`,`#505372`,`#ff994d`,`#0ca8df`,`#ffd10a`,`#fb628b`,`#785db0`,`#3fbe95`],neutral00:`#fff`,neutral05:`#f4f7fd`,neutral10:`#e8ebf0`,neutral15:`#dbdee4`,neutral20:`#cfd2d7`,neutral25:`#c3c5cb`,neutral30:`#b7b9be`,neutral35:`#aaacb2`,neutral40:`#9ea0a5`,neutral45:`#929399`,neutral50:`#86878c`,neutral55:`#797b7f`,neutral60:`#6d6e73`,neutral65:`#616266`,neutral70:`#54555a`,neutral75:`#48494d`,neutral80:`#3c3c41`,neutral85:`#303034`,neutral90:`#232328`,neutral95:`#17171b`,neutral99:`#000`,accent05:`#eff1f9`,accent10:`#e0e4f2`,accent15:`#d0d6ec`,accent20:`#c0c9e6`,accent25:`#b1bbdf`,accent30:`#a1aed9`,accent35:`#91a0d3`,accent40:`#8292cc`,accent45:`#7285c6`,accent50:`#6578ba`,accent55:`#5c6da9`,accent60:`#536298`,accent65:`#4a5787`,accent70:`#404c76`,accent75:`#374165`,accent80:`#2e3654`,accent85:`#252b43`,accent90:`#1b2032`,accent95:`#121521`,transparent:`rgba(0,0,0,0)`,highlight:`rgba(255,231,130,0.8)`};for(var dH in Z(uH,{primary:uH.neutral80,secondary:uH.neutral70,tertiary:uH.neutral60,quaternary:uH.neutral50,disabled:uH.neutral20,border:uH.neutral30,borderTint:uH.neutral20,borderShade:uH.neutral40,background:uH.neutral05,backgroundTint:`rgba(234,237,245,0.5)`,backgroundTransparent:`rgba(255,255,255,0)`,backgroundShade:uH.neutral10,shadow:`rgba(0,0,0,0.2)`,shadowTint:`rgba(129,130,136,0.2)`,axisLine:uH.neutral70,axisLineTint:uH.neutral40,axisTick:uH.neutral70,axisTickMinor:uH.neutral60,axisLabel:uH.neutral70,axisSplitLine:uH.neutral15,axisMinorSplitLine:uH.neutral05}),uH)if(uH.hasOwnProperty(dH)){var fH=uH[dH];dH===`theme`?$.darkColor.theme=uH.theme.slice():dH===`highlight`?$.darkColor.highlight=`rgba(255,231,130,0.4)`:dH.indexOf(`accent`)===0?$.darkColor[dH]=hN(fH,null,function(e){return e*.5},function(e){return Math.min(1,1.3-e)}):$.darkColor[dH]=hN(fH,null,function(e){return e*.9},function(e){return 1-e**1.5})}$.size={xxs:2,xs:5,s:10,m:15,l:20,xl:30,xxl:40,xxxl:50};var pH=``;typeof navigator<`u`&&(pH=navigator.platform||``);var mH=`rgba(0, 0, 0, 0.2)`,hH=$.color.theme[0],MDe=hN(hH,null,null,.9),gH={darkMode:`auto`,colorBy:`series`,color:$.color.theme,gradientColor:[MDe,hH],aria:{decal:{decals:[{color:mH,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:mH,symbol:`circle`,dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:mH,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:mH,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:mH,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:mH,symbol:`triangle`,dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:pH.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},_H={Must:1,Might:2,Not:3},vH=tI();function NDe(e){vH(e).datasetMap=zA()}function yH(e,t,n){var r={},i=xH(t);if(!i||!e)return r;var a=[],o=[],s=t.ecModel,c=vH(s).datasetMap,l=i.uid+`_`+n.seriesLayoutBy,u,d;e=e.slice(),Q(e,function(t,n){var i=yA(t)?t:e[n]={name:t};i.type===`ordinal`&&u==null&&(u=n,d=m(i)),r[i.name]=[]});var f=c.get(l)||c.set(l,{categoryWayDim:d,valueWayDim:0});Q(e,function(e,t){var n=e.name,i=m(e);if(u==null){var s=f.valueWayDim;p(r[n],s,i),p(o,s,i),f.valueWayDim+=i}else if(u===t)p(r[n],0,i),p(a,0,i);else{var s=f.categoryWayDim;p(r[n],s,i),p(o,s,i),f.categoryWayDim+=i}});function p(e,t,n){for(var r=0;rt)return e[r];return e[n-1]}function OH(e,t,n,r,i,a,o){a||=e;var s=t(a),c=s.paletteIdx||0,l=s.paletteNameMap=s.paletteNameMap||{};if(l.hasOwnProperty(i))return l[i];var u=o==null||!r?n:RDe(r,o);if(u||=n,!(!u||!u.length)){var d=u[c];return i&&(l[i]=d),s.paletteIdx=(c+1)%u.length,d}}function zDe(e,t){t(e).paletteIdx=0,t(e).paletteNameMap={}}var kH,AH,jH,MH=`\0_ec_inner`,BDe=1,NH=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.init=function(e,t,n,r,i,a){r||={},this.option=null,this._theme=new zB(r),this._locale=new zB(i),this._optionManager=a},t.prototype.setOption=function(e,t,n){var r=IH(t);this._optionManager.setOption(e,n,r),this._resetOption(null,r)},t.prototype.resetOption=function(e,t){return this._resetOption(e,IH(t))},t.prototype._resetOption=function(e,t){var n=!1,r=this._optionManager;if(!e||e===`recreate`){var i=r.mountOption(e===`recreate`);!this.option||e===`recreate`?jH(this,i):(this.restoreData(),this._mergeOption(i,t)),n=!0}if((e===`timeline`||e===`media`)&&this.restoreData(),!e||e===`recreate`||e===`timeline`){var a=r.getTimelineOption(this);a&&(n=!0,this._mergeOption(a,t))}if(!e||e===`recreate`||e===`media`){var o=r.getMediaOption(this);o.length&&Q(o,function(e){n=!0,this._mergeOption(e,t)},this)}return n},t.prototype.mergeOption=function(e){this._mergeOption(e,null)},t.prototype._mergeOption=function(e,t){var n=this.option,r=this._componentsMap,i=this._componentsCount,a=[],o=zA(),s=t&&t.replaceMergeMainTypeMap;NDe(this),Q(e,function(e,t){e!=null&&(lH.hasClass(t)?t&&(a.push(t),o.set(t,!0)):n[t]=n[t]==null?Qk(e):$k(n[t],e,!0))}),s&&s.each(function(e,t){lH.hasClass(t)&&!o.get(t)&&(a.push(t),o.set(t,!0))}),lH.topologicalTravel(a,lH.getAllClassMainTypes(),c,this);function c(t){var a=IDe(this,t,qF(e[t])),o=r.get(t),c=KCe(o,a,o?s&&s.get(t)?`replaceMerge`:`normalMerge`:`replaceAll`);twe(c,t,lH),n[t]=null,r.set(t,null),i.set(t,0);var l=[],u=[],d=0,f;Q(c,function(e,n){var r=e.existing,i=e.newOption;if(!i)r&&(r.mergeOption({},this),r.optionUpdated({},!1));else{var a=t===`series`,o=lH.getClass(t,e.keyInfo.subType,!a);if(!o)return;if(t===`tooltip`){if(f)return;f=!0}if(r&&r.constructor===o)r.name=e.keyInfo.name,r.mergeOption(i,this),r.optionUpdated(i,!1);else{var s=Z({componentIndex:n},e.keyInfo);r=new o(i,this,this,s),Z(r,s),e.brandNew&&(r.__requireNewView=!0),r.init(i,this,this),r.optionUpdated(null,!0)}}r?(l.push(r.option),u.push(r),d++):(l.push(void 0),u.push(void 0))},this),n[t]=l,r.set(t,u),i.set(t,d),t===`series`&&kH(this)}this._seriesIndices||kH(this)},t.prototype.getOption=function(){var e=Qk(this.option);return Q(e,function(t,n){if(lH.hasClass(n)){for(var r=qF(t),i=r.length,a=!1,o=i-1;o>=0;o--)r[o]&&!$F(r[o])?a=!0:(r[o]=null,!a&&i--);r.length=i,e[n]=r}}),delete e[MH],e},t.prototype.setTheme=function(e){this._theme=new zB(e),this._resetOption(`recreate`,null)},t.prototype.getTheme=function(){return this._theme},t.prototype.getLocaleModel=function(){return this._locale},t.prototype.setUpdatePayload=function(e){this._payload=e},t.prototype.getUpdatePayload=function(){return this._payload},t.prototype.getComponent=function(e,t){var n=this._componentsMap.get(e);if(n){var r=n[t||0];if(r)return r;if(t==null){for(var i=0;i=t:n===`max`?e<=t:e===t}function JDe(e,t){return e.join(`,`)===t.join(`,`)}var LH=Q,RH=yA,zH=[`areaStyle`,`lineStyle`,`nodeStyle`,`linkStyle`,`chordStyle`,`label`,`labelLine`];function BH(e){var t=e&&e.itemStyle;if(t)for(var n=0,r=zH.length;n0?e[n-1].seriesModel:null)}),iOe(e))})}function iOe(e){Q(e,function(t,n){var r=[],i=[NaN,NaN],a=[t.stackResultDimension,t.stackedOverDimension],o=t.data,s=t.isStackedByIndex,c=t.seriesModel.get(`stackStrategy`)||`samesign`;o.modify(a,function(a,l,u){var d=o.get(t.stackedDimension,u);if(isNaN(d))return i;var f,p;s?p=o.getRawIndex(u):f=o.get(t.stackedByDimension,u);for(var m=NaN,h=n-1;h>=0;h--){var g=e[h];if(s||(p=g.data.rawIndexOf(g.stackedByDimension,f)),p>=0){var _=g.data.getByRawIndex(g.stackResultDimension,p);if(c===`all`||c===`positive`&&_>0||c===`negative`&&_<0||c===`samesign`&&d>=0&&_>0||c===`samesign`&&d<=0&&_<0){d=kF(d,_),m=_;break}}}return r[0]=d,r[1]=m,r})})}var eU=function(){function e(e){this.data=e.data||(e.sourceFormat===`keyedColumns`?{}:[]),this.sourceFormat=e.sourceFormat||`unknown`,this.seriesLayoutBy=e.seriesLayoutBy||`column`,this.startIndex=e.startIndex||0,this.dimensionsDetectedCount=e.dimensionsDetectedCount,this.metaRawOption=e.metaRawOption;var t=this.dimensionsDefine=e.dimensionsDefine;if(t)for(var n=0;nl&&(l=p)}s[0]=c,s[1]=l}},r=function(){return this._data?this._data.length/this._dimSize:0};fU=(e={},e[IL+`_`+BL]={pure:!0,appendData:i},e[IL+`_row`]={pure:!0,appendData:function(){throw Error(`Do not support appendData when set seriesLayoutBy: "row".`)}},e[LL]={pure:!0,appendData:i},e[RL]={pure:!0,appendData:function(e){var t=this._data;Q(e,function(e,n){for(var r=t[n]||(t[n]=[]),i=0;i<(e||[]).length;i++)r.push(e[i])})}},e[FL]={appendData:i},e[zL]={persistent:!1,pure:!0,appendData:function(e){this._data=e},clean:function(){this._offset+=this.count(),this._data=null}},e);function i(e){for(var t=0;t=0&&(s=a.interpolatedValue[c])}return s==null?``:s+``})},e.prototype.getRawValue=function(e,t){return CU(this.getData(t),e)},e.prototype.formatTooltip=function(e,t,n){},e}();function TU(e){var t,n;return yA(e)?e.type&&(n=e):t=e,{text:t,frag:n}}function EU(e){return new fOe(e)}var fOe=function(){function e(e){e||={},this._reset=e.reset,this._plan=e.plan,this._count=e.count,this._onDirty=e.onDirty,this._dirty=!0}return e.prototype.perform=function(e){var t=this._upstream,n=e&&e.skip;if(this._dirty&&t){var r=this.context;r.data=r.outputData=t.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this);var i;this._plan&&!n&&(i=this._plan(this.context));var a=l(this._modBy),o=this._modDataCount||0,s=l(e&&e.modBy),c=e&&e.modDataCount||0;(a!==s||o!==c)&&(i=`reset`);function l(e){return!(e>=1)&&(e=1),e}var u;(this._dirty||i===`reset`)&&(this._dirty=!1,u=this._doReset(n)),this._modBy=s,this._modDataCount=c;var d=e&&e.step;if(t?this._dueEnd=t._outputDueEnd:this._dueEnd=this._count?this._count(this.context):1/0,this._progress){var f=this._dueIndex,p=Math.min(d==null?1/0:this._dueIndex+d,this._dueEnd);if(!n&&(u||f1&&r>0?s:o}};return a;function o(){return t=e?null:at},gte:function(e,t){return e>=t}},mOe=function(){function e(e,t){vA(t)||KF(``),this._opFn=AU[e],this._rvalFloat=zF(t)}return e.prototype.evaluate=function(e){return vA(e)?this._opFn(e,this._rvalFloat):this._opFn(zF(e),this._rvalFloat)},e}(),jU=function(){function e(e,t){var n=e===`desc`;this._resultLT=n?1:-1,t??=n?`min`:`max`,this._incomparable=t===`min`?-1/0:1/0}return e.prototype.evaluate=function(e,t){var n=vA(e)?e:zF(e),r=vA(t)?t:zF(t),i=isNaN(n),a=isNaN(r);if(i&&(n=this._incomparable),a&&(r=this._incomparable),i&&a){var o=gA(e),s=gA(t);o&&(n=s?e:0),s&&(r=o?t:0)}return nr?-this._resultLT:0},e}(),hOe=function(){function e(e,t){this._rval=t,this._isEQ=e,this._rvalTypeof=typeof t,this._rvalFloat=zF(t)}return e.prototype.evaluate=function(e){var t=e===this._rval;if(!t){var n=typeof e;n!==this._rvalTypeof&&(n===`number`||this._rvalTypeof===`number`)&&(t=zF(e)===this._rvalFloat)}return this._isEQ?t:!t},e}();function gOe(e,t){return e===`eq`||e===`ne`?new hOe(e===`eq`,t):UA(AU,e)?new mOe(e,t):null}function MU(e){var t=``,n=-1/0,r=-1/0,i=1/0,a=1/0;return e&&(e.g!=null&&(t+=`G`+e.g,n=e.g),e.ge!=null&&(t+=`GE`+e.ge,r=e.ge),e.l!=null&&(t+=`L`+e.l,i=e.l),e.le!=null&&(t+=`LE`+e.le,a=e.le)),{key:t,g:n,ge:r,l:i,le:a}}function NU(e,t){return t>e.g&&t>=e.ge&&t`u`?Array:Uint32Array,DOe=typeof Uint16Array>`u`?Array:Uint16Array,IU=typeof Int32Array>`u`?Array:Int32Array,LU=typeof Float64Array>`u`?Array:Float64Array,RU={float:LU,int:IU,ordinal:Array,number:Array,time:LU},zU;function BU(e){return e>65535?EOe:DOe}function OOe(e){var t=e.constructor;return t===Array?e.slice():new t(e)}function VU(e,t,n,r,i){var a=RU[n||`float`];if(i){var o=e[t],s=o&&o.length;if(s!==r){for(var c=new a(r),l=0;lh[1]&&(h[1]=m)}return this._rawCount=this._count=s,{start:o,end:s}},e.prototype._initDataFromProvider=function(e,t,n){for(var r=this._provider,i=this._chunks,a=this._dimensions,o=a.length,s=this._rawExtent,c=sA(a,function(e){return e.property}),l=0;lg[1]&&(g[1]=h)}}!r.persistent&&r.clean&&r.clean(),this._rawCount=this._count=t,this._extent=[]},e.prototype.count=function(){return this._count},e.prototype.get=function(e,t){if(!(t>=0&&t=0&&t=this._rawCount||e<0)return-1;if(!this._indices)return e;var t=this._indices,n=t[e];if(n!=null&&ne)i=a-1;else return a}return-1},e.prototype.getIndices=function(){var e,t=this._indices;if(t){var n=t.constructor,r=this._count;if(n===Array){e=new n(r);for(var i=0;i=l&&g<=u||isNaN(g))&&(o[s++]=p),p++}f=!0}else if(i===2){for(var m=d[r[0]],_=d[r[1]],v=e[r[1]][0],y=e[r[1]][1],h=0;h=l&&g<=u||isNaN(g))&&(b>=v&&b<=y||isNaN(b))&&(o[s++]=p),p++}f=!0}}if(!f)if(i===1)for(var h=0;h=l&&g<=u||isNaN(g))&&(o[s++]=x)}else for(var h=0;he[w][1])&&(S=!1)}S&&(o[s++]=t.getRawIndex(h))}return sg[1]&&(g[1]=h)}}}},e.prototype.lttbDownSample=function(e,t){var n=this.clone([e],!0),r=n._chunks[e],i=this.count(),a=0,o=Math.floor(1/t),s=this.getRawIndex(0),c,l,u,d=new(BU(this._rawCount))(Math.min((Math.ceil(i/o)+2)*2,i));d[a++]=s;for(var f=1;fc&&(c=l,u=v)}T>0&&To&&(m=o-l);for(var h=0;hp&&(p=g,f=l+h)}var _=this.getRawIndex(u),v=this.getRawIndex(f);ul-p&&(s=l-p,o.length=s);for(var m=0;mu[1]&&(u[1]=h),d[f++]=g}return i._count=f,i._indices=d,i._updateGetRawIdx(),i},e.prototype.each=function(e,t){if(this._count)for(var n=e.length,r=this._chunks,i=0,a=this.count();id&&(d=p))}return o[c]=[u,d]},e.prototype.getRawDataItem=function(e){var t=this.getRawIndex(e);if(this._provider.persistent)return this._provider.getItem(t);for(var n=[],r=this._chunks,i=0;i=0?this._indices[e]:-1},e.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},e.internalField=function(){function e(e,t,n,r){return OU(e[r],this._dimensions[r])}zU={arrayRows:e,objectRows:function(e,t,n,r){return OU(e[t],this._dimensions[r])},keyedColumns:e,original:function(e,t,n,r){var i=e&&(e.value==null?e:e.value);return OU(i instanceof Array?i[r]:i,this._dimensions[r])},typedArray:function(e,t,n,r){return e[r]}}}(),e}(),UU=function(){function e(e){this._sourceList=[],this._storeList=[],this._upstreamSignList=[],this._versionSignBase=0,this._dirty=!0,this._sourceHost=e}return e.prototype.dirty=function(){this._setLocalSource([],[]),this._storeList=[],this._dirty=!0},e.prototype._setLocalSource=function(e,t){this._sourceList=e,this._upstreamSignList=t,this._versionSignBase++,this._versionSignBase>9e10&&(this._versionSignBase=0)},e.prototype._getVersionSign=function(){return this._sourceHost.uid+`_`+this._versionSignBase},e.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},e.prototype._createSource=function(){this._setLocalSource([],[]);var e=this._sourceHost,t=this._getUpstreamSourceManagers(),n=!!t.length,r,i;if(GU(e)){var a=e,o=void 0,s=void 0,c=void 0;if(n){var l=t[0];l.prepareSource(),c=l.getSource(),o=c.data,s=c.sourceFormat,i=[l._getVersionSign()]}else o=a.get(`data`,!0),s=xA(o)?zL:FL,i=[];var u=this._getSourceMetaRawOption()||{},d=c&&c.metaRawOption||{},f=OA(u.seriesLayoutBy,d.seriesLayoutBy)||null,p=OA(u.sourceHeader,d.sourceHeader),m=OA(u.dimensions,d.dimensions);r=f!==d.seriesLayoutBy||!!p!=!!d.sourceHeader||m?[nU(o,{seriesLayoutBy:f,sourceHeader:p,dimensions:m},s)]:[]}else{var h=e;if(n){var g=this._applyTransform(t);r=g.sourceList,i=g.upstreamSignList}else r=[nU(h.get(`source`,!0),this._getSourceMetaRawOption(),null)],i=[]}this._setLocalSource(r,i)},e.prototype._applyTransform=function(e){var t=this._sourceHost,n=t.get(`transform`,!0),r=t.get(`fromTransformResult`,!0);r!=null&&e.length!==1&&KU(``);var i,a=[],o=[];return Q(e,function(e){e.prepareSource();var t=e.getSource(r||0);r!=null&&!t&&KU(``),a.push(t),o.push(e._getVersionSign())}),n?i=wOe(n,a,{datasetIndex:t.componentIndex}):r!=null&&(i=[aOe(a[0])]),{sourceList:i,upstreamSignList:o}},e.prototype._isDirty=function(){if(this._dirty)return!0;for(var e=this._getUpstreamSourceManagers(),t=0;t=0?parseFloat(e)/100*t:parseFloat(e):e}function VP(e,t,n){var r=t.position||`inside`,i=t.distance==null?5:t.distance,a=n.height,o=n.width,s=a/2,c=n.x,l=n.y,u=`left`,d=`top`;if(r instanceof Array)c+=BP(r[0],n.width),l+=BP(r[1],n.height),u=null,d=null;else switch(r){case`left`:c-=i,l+=s,u=`right`,d=`middle`;break;case`right`:c+=i+o,l+=s,d=`middle`;break;case`top`:c+=o/2,l-=i,u=`center`,d=`bottom`;break;case`bottom`:c+=o/2,l+=a+i,u=`center`;break;case`inside`:c+=o/2,l+=s,u=`center`,d=`middle`;break;case`insideLeft`:c+=i,l+=s,d=`middle`;break;case`insideRight`:c+=o-i,l+=s,u=`right`,d=`middle`;break;case`insideTop`:c+=o/2,l+=i,u=`center`;break;case`insideBottom`:c+=o/2,l+=a-i,u=`center`,d=`bottom`;break;case`insideTopLeft`:c+=i,l+=i;break;case`insideTopRight`:c+=o-i,l+=i,u=`right`;break;case`insideBottomLeft`:c+=i,l+=a-i,d=`bottom`;break;case`insideBottomRight`:c+=o-i,l+=a-i,u=`right`,d=`bottom`;break}return e||={},e.x=c,e.y=l,e.align=u,e.verticalAlign=d,e}var hCe=`__zr_normal__`,HP=DP.concat([`ignore`]),gCe=cA(DP,function(e,t){return e[t]=!0,e},{ignore:!1}),UP={},_Ce=new eM(0,0,0,0),WP=[],GP=function(){function e(e){this.id=Xk(),this.animators=[],this.currentStates=[],this.states={},this._init(e)}return e.prototype._init=function(e){this.attr(e)},e.prototype.drift=function(e,t,n){switch(this.draggable){case`horizontal`:t=0;break;case`vertical`:e=0;break}var r=this.transform;r||=this.transform=[1,0,0,1,0,0],r[4]+=e,r[5]+=t,this.decomposeTransform(),this.markRedraw()},e.prototype.beforeUpdate=function(){},e.prototype.afterUpdate=function(){},e.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},e.prototype.updateInnerText=function(e){var t=this._textContent;if(t&&(!t.ignore||e)){this.textConfig||={};var n=this.textConfig,r=n.local,i=t.innerTransformable,a=void 0,o=void 0,s=!1;i.parent=r?this:null;var c=!1;i.copyTransform(t);var l=n.position!=null,u=n.autoOverflowArea,d=void 0;if((u||l)&&(d=_Ce,n.layoutRect?d.copy(n.layoutRect):d.copy(this.getBoundingRect()),r||d.applyTransform(this.transform)),l){this.calculateTextPosition?this.calculateTextPosition(UP,n,d):VP(UP,n,d),i.x=UP.x,i.y=UP.y,a=UP.align,o=UP.verticalAlign;var f=n.origin;if(f&&n.rotation!=null){var p=void 0,m=void 0;f===`center`?(p=d.width*.5,m=d.height*.5):(p=BP(f[0],d.width),m=BP(f[1],d.height)),c=!0,i.originX=-i.x+p+(r?0:d.x),i.originY=-i.y+m+(r?0:d.y)}}n.rotation!=null&&(i.rotation=n.rotation);var h=n.offset;h&&(i.x+=h[0],i.y+=h[1],c||(i.originX=-h[0],i.originY=-h[1]));var g=this._innerTextDefaultStyle||={};if(u){var _=g.overflowRect=g.overflowRect||new eM(0,0,0,0);i.getLocalTransform(WP),zj(WP,WP),eM.copy(_,d),_.applyTransform(WP)}else g.overflowRect=null;var v=n.inside==null?typeof n.position==`string`&&n.position.indexOf(`inside`)>=0:n.inside,y=void 0,b=void 0,x=void 0;v&&this.canBeInsideText()?(y=n.insideFill,b=n.insideStroke,(y==null||y===`auto`)&&(y=this.getInsideTextFill()),(b==null||b===`auto`)&&(b=this.getInsideTextStroke(y),x=!0)):(y=n.outsideFill,b=n.outsideStroke,(y==null||y===`auto`)&&(y=this.getOutsideFill()),(b==null||b===`auto`)&&(b=this.getOutsideStroke(y),x=!0)),y||=`#000`,(y!==g.fill||b!==g.stroke||x!==g.autoStroke||a!==g.align||o!==g.verticalAlign)&&(s=!0,g.fill=y,g.stroke=b,g.autoStroke=x,g.align=a,g.verticalAlign=o,t.setDefaultTextStyle(g)),t.__dirty|=1,s&&t.dirtyStyle(!0)}},e.prototype.canBeInsideText=function(){return!0},e.prototype.getInsideTextFill=function(){return`#fff`},e.prototype.getInsideTextStroke=function(e){return`#000`},e.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?gP:hP},e.prototype.getOutsideStroke=function(e){var t=this.__zr&&this.__zr.getBackgroundColor(),n=typeof t==`string`&&uN(t);n||=[255,255,255,1];for(var r=n[3],i=this.__zr.isDarkMode(),a=0;a<3;a++)n[a]=n[a]*r+(i?0:255)*(1-r);return n[3]=1,_N(n,`rgba`)},e.prototype.traverse=function(e,t){},e.prototype.attrKV=function(e,t){e===`textConfig`?this.setTextConfig(t):e===`textContent`?this.setTextContent(t):e===`clipPath`?this.setClipPath(t):e===`extra`?(this.extra=this.extra||{},Z(this.extra,t)):this[e]=t},e.prototype.hide=function(){this.ignore=!0,this.markRedraw()},e.prototype.show=function(){this.ignore=!1,this.markRedraw()},e.prototype.attr=function(e,t){if(typeof e==`string`)this.attrKV(e,t);else if(yA(e))for(var n=dA(e),r=0;r0},e.prototype.getState=function(e){return this.states[e]},e.prototype.ensureState=function(e){var t=this.states;return t[e]||(t[e]={}),t[e]},e.prototype.clearStates=function(e){this.useState(hCe,!1,e)},e.prototype.useState=function(e,t,n,r){var i=e===hCe;if(!(!this.hasState()&&i)){var a=this.currentStates,o=this.stateTransition;if(!(rA(a,e)>=0&&(t||a.length===1))){var s;if(this.stateProxy&&!i&&(s=this.stateProxy(e)),s||=this.states&&this.states[e],!s&&!i){Zk(`State `+e+` not exists.`);return}i||this.saveCurrentToNormalState(s);var c=this._textContent,l=YP(this,c,s,r);l&&!this.__inHover&&(this.__inHover=l),this._applyStateObj(e,s,this._normalState,t,ZP(this,n,o),o);var u=this._textGuide;return c&&c.useState(e,t,n,!!l),u&&u.useState(e,t,n,!!l),i?(this.currentStates=[],this._normalState={}):t?this.currentStates.push(e):this.currentStates=[e],this._updateAnimationTargets(),this.markRedraw(),!l&&this.__inHover&&(this.__inHover=0,this.__dirty&=-2),s}}},e.prototype.useStates=function(e,t,n){if(!e.length)this.clearStates();else{var r=[],i=this.currentStates,a=e.length,o=a===i.length;if(o){for(var s=0;s=0){var n=this.currentStates.slice();n.splice(t,1),this.useStates(n)}},e.prototype.replaceState=function(e,t,n){var r=this.currentStates.slice(),i=rA(r,e),a=rA(r,t)>=0;i>=0?a?r.splice(i,1):r[i]=t:n&&!a&&r.push(t),this.useStates(r)},e.prototype.toggleState=function(e,t){t?this.useState(e,!0):this.removeState(e)},e.prototype._mergeStates=function(e){for(var t={},n,r=0;r=0&&t.splice(n,1)}),this.animators.push(e),n&&n.animation.addAnimator(e),n&&n.wakeUp()},e.prototype.updateDuringAnimation=function(e){this.markRedraw()},e.prototype.stopAnimation=function(e,t){for(var n=this.animators,r=n.length,i=[],a=0;a0&&n.during&&a[0].during(function(e,t){n.during(t)});for(var f=0;f0||i.force&&!o.length){var C=void 0,w=void 0,T=void 0;if(s){w={},f&&(C={});for(var b=0;b0}var QP=function(e){qA(t,e);function t(t){var n=e.call(this)||this;return n.isGroup=!0,n._children=[],n.attr(t),n}return t.prototype.childrenRef=function(){return this._children},t.prototype.children=function(){return this._children.slice()},t.prototype.childAt=function(e){return this._children[e]},t.prototype.childOfName=function(e){for(var t=this._children,n=0;n=0&&(n.splice(r,0,e),this._doAdd(e))}return this},t.prototype.replace=function(e,t){var n=rA(this._children,e);return n>=0&&this.replaceAt(t,n),this},t.prototype.replaceAt=function(e,t){var n=this._children,r=n[t];if(e&&e!==this&&e.parent!==this&&e!==r){n[t]=e,r.parent=null;var i=this.__zr;i&&r.removeSelfFromZr(i),this._doAdd(e)}return this},t.prototype._doAdd=function(e){e.parent&&e.parent.remove(e),e.parent=this;var t=this.__zr;t&&t!==e.__zr&&e.addSelfToZr(t),t&&t.refresh()},t.prototype.remove=function(e){var t=this.__zr,n=this._children,r=rA(n,e);return r<0?this:(n.splice(r,1),e.parent=null,t&&e.removeSelfFromZr(t),t&&t.refresh(),this)},t.prototype.removeAll=function(){for(var e=this._children,t=this.__zr,n=0;nECe,disposeAll:()=>DCe,getElementSSRData:()=>iF,getInstance:()=>OCe,init:()=>tF,registerPainter:()=>nF,registerSSRDataGetter:()=>aF,version:()=>kCe}),$P={},eF={};function CCe(e){delete eF[e]}function wCe(e){if(!e)return!1;if(typeof e==`string`)return vN(e,1)0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},e.prototype.setSleepAfterStill=function(e){this._sleepAfterStill=e},e.prototype.wakeUp=function(){this._disposed||(this.animation.start(),this._stillFrameAccum=0)},e.prototype.refreshHover=function(){this._needsRefreshHover=!0},e.prototype.refreshHoverImmediately=function(){this._disposed||this._refresh({animUpdate:!1,refresh:!1,refreshHover:!0})},e.prototype.resize=function(e){this._disposed||(e||={},this.painter.resize(e.width,e.height),this.handler.resize())},e.prototype.clearAnimation=function(){this._disposed||this.animation.clear()},e.prototype.getWidth=function(){if(!this._disposed)return this.painter.getWidth()},e.prototype.getHeight=function(){if(!this._disposed)return this.painter.getHeight()},e.prototype.setCursorStyle=function(e){this._disposed||this.handler.setCursorStyle(e)},e.prototype.findHover=function(e,t){if(!this._disposed)return this.handler.findHover(e,t)},e.prototype.on=function(e,t,n){return this._disposed||this.handler.on(e,t,n),this},e.prototype.off=function(e,t){this._disposed||this.handler.off(e,t)},e.prototype.trigger=function(e,t){this._disposed||this.handler.trigger(e,t)},e.prototype.clear=function(){if(!this._disposed){for(var e=this.storage.getRoots(),t=0;t0){if(e<=i)return o;if(e>=a)return s}else if(e>=i)return o;else if(e<=a)return s}else{if(e===i)return o;if(e===a)return s}return(e-i)/c*l+o}var yF=MCe;function MCe(e,t,n){switch(e){case`center`:case`middle`:e=`50%`;break;case`left`:case`top`:e=`0%`;break;case`right`:case`bottom`:e=`100%`;break}return bF(e,t,n)}function bF(e,t,n){return gA(e)?xF(e)?parseFloat(e)/100*t+(n||0):parseFloat(e):e==null?NaN:+e}function NCe(e){return gA(e)&&xF(e)}function xF(e){return!!ACe(e).match(/%$/)}function SF(e,t,n){return isNaN(t)?n?``+e:+e:(t=cF(lF(0,t),sF),e=(+e).toFixed(t),n?e:+e)}function PCe(e,t,n){return t??=10,SF(e,t,n)}function CF(e){return e.sort(function(e,t){return e-t}),e}function wF(e){if(e=+e,isNaN(e))return 0;if(e>1e-14){for(var t=1,n=0;n<15;n++,t*=10)if(dF(e*t)/t===e)return n}return TF(e)}function TF(e){var t=e.toString().toLowerCase(),n=t.indexOf(`e`),r=n>0?+t.slice(n+1):0,i=n>0?n:t.length,a=t.indexOf(`.`);return lF(0,(a<0?0:i-1-a)-r)}function FCe(e,t){var n=fF(hF(e[1]-e[0])/gF),r=dF(hF(uF(t[1]-t[0]))/gF),i=cF(lF(-n+r,0),sF);return isFinite(i)?i:sF}function EF(e,t,n){var r=uF(e[1]-e[0]);if(!isFinite(r)||r===0)return NaN;var i=hF(2*uF(n||1)*uF(r))/gF,a=hF(uF(t))/gF,o=lF(0,pF(-i+a));return isFinite(o)||(o=NaN),o}function ICe(e,t,n){return e[t]&&DF(e,n)[t]||0}function DF(e,t){var n=cA(e,function(e,t){return e+(isNaN(t)?0:t)},0);if(n===0)return[];for(var r=mF(10,t),i=sA(e,function(e){return(isNaN(e)?0:e)/n*r*100}),a=r*100,o=sA(i,function(e){return fF(e)}),s=cA(o,function(e,t){return e+t},0),c=sA(i,function(e,t){return e-o[t]});sl&&(l=c[d],u=d);++o[u],c[u]=0,++s}return sA(o,function(e){return e/r})}function OF(e,t){var n=lF(wF(e),wF(t)),r=e+t;return n>sF?r:SF(r,n)}var kF=mF(2,53)-1;function AF(e){var t=_F*2;return(e%t+t)%t}function jF(e){return e>-oF&&e=10&&t++,t}function FF(e,t){var n=PF(e),r=mF(10,n),i=e/r;return e=(t===2?1:t?i<1.5?1:i<2.5?2:i<4?3:i<7?5:10:i<1?1:i<2?2:i<3?3:i<5?5:10)*r,SF(e,-n)}function IF(e,t){var n=(e.length-1)*t+1,r=fF(n),i=+e[r-1],a=n-r;return a?i+a*(e[r]-i):i}function LF(e){e.sort(function(e,t){return s(e,t,0)?-1:1});for(var t=-1/0,n=1,r=0;r0?e.length:0),this.item=null,this.key=NaN,this},e.prototype.next=function(){return(this._step>0?this._idx=this._end)?(this.item=this._list[this._idx],this.key=this._idx+=this._step,!0):!1},e}();function cI(e){e.option=e.parentModel=e.ecModel=null}function lI(){return[1/0,-1/0]}function uI(e,t){dI(t)&&(te[1]&&(e[1]=t))}function dwe(e,t){dI(t)&&te[1]&&(e[1]=t)}function pwe(e,t){fI(t[0],t[1])&&(t[0]e[1]&&(e[1]=t[1]))}function dI(e){return e!=null&&isFinite(e)}function fI(e,t){return dI(e)&&dI(t)&&e<=t}function mwe(e){var t=e[1]-e[0];return isFinite(t)&&t>=0}function pI(e){fI(e[0],e[1])&&e[0]>e[1]&&(e[0]=e[1])}function mI(){var e=`__ec_once_`+hwe++;return function(t,n){UA(t,e)||(t[e]=1,n())}}var hwe=BF();function hI(e,t,n){var r=zA(),i=0;Q(e,function(a){var o=t(a),s=r.get(o)||0;n&&n(a,s),!s&&!n&&(e[i++]=a),r.set(o,s+1)}),n||(e.length=i)}function gwe(e){return e.value+``}function _we(e){return e+``}function gI(e,t){return OA(t,!0)?e.seriesIndex+2:0}function vwe(e,t,n){var r=e.getData().count();return{progressiveRender:n.progressiveEnabled&&t.incrementalPrepareRender&&r>=n.threshold,large:e.get(`large`)&&r>=e.get(`largeThreshold`),modDataCount:e.get(`progressiveChunkMode`)===`mod`?e.getData().count():null}}function _I(e,t){return{seriesType:e,overallReset:t}}function vI(e){return{overallReset:e}}var ywe=`.`,yI=`___EC__COMPONENT__CONTAINER___`,bwe=`___EC__EXTENDED_CLASS___`;function bI(e){var t={main:``,sub:``};if(e){var n=e.split(ywe);t.main=n[0]||``,t.sub=n[1]||``}return t}function xwe(e){MA(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(e),`componentType "`+e+`" illegal`)}function Swe(e){return!!(e&&e[bwe])}function xI(e,t){e.$constructor=e,e.extend=function(e){var t=this,n;return Cwe(t)?n=function(e){X(t,e);function t(){return e.apply(this,arguments)||this}return t}(t):(n=function(){(e.$constructor||t).apply(this,arguments)},iA(n,this)),Z(n.prototype,e),n[bwe]=!0,n.extend=this.extend,n.superCall=Dwe,n.superApply=Owe,n.superClass=t,n}}function Cwe(e){return hA(e)&&/^class\s/.test(Function.prototype.toString.call(e))}function wwe(e,t){e.extend=t.extend}var Twe=Math.round(Math.random()*10);function Ewe(e){var t=[`__\0is_clz`,Twe++].join(`_`);e.prototype[t]=!0,e.isInstance=function(e){return!!(e&&e[t])}}function Dwe(e,t){var n=[...arguments].slice(2);return this.superClass.prototype[t].apply(e,n)}function Owe(e,t,n){return this.superClass.prototype[t].apply(e,n)}function SI(e){var t={};e.registerClass=function(e){var r=e.type||e.prototype.type;if(r){xwe(r),e.prototype.type=r;var i=bI(r);if(!i.sub)t[i.main]=e;else if(i.sub!==yI){var a=n(i);a[i.sub]=e}}return e},e.getClass=function(e,n,r){var i=t[e];if(i&&i[yI]&&(i=n?i[n]:null),r&&!i)throw Error(n?`Component `+e+`.`+(n||``)+` is used but not imported.`:e+`.type should be specified.`);return i},e.getClassesByMainType=function(e){var n=bI(e),r=[],i=t[n.main];return i&&i[yI]?Q(i,function(e,t){t!==yI&&r.push(e)}):r.push(i),r},e.hasClass=function(e){return!!t[bI(e).main]},e.getAllClassMainTypes=function(){var e=[];return Q(t,function(t,n){e.push(n)}),e},e.hasSubTypes=function(e){var n=t[bI(e).main];return n&&n[yI]};function n(e){var n=t[e.main];return(!n||!n[yI])&&(n=t[e.main]={},n[yI]=!0),n}}function CI(e,t){for(var n=0;n=0||i&&rA(i,s)<0)){var c=n.getShallow(s,t);c!=null&&(a[e[o][0]]=c)}}return a}}var kwe=CI([[`fill`,`color`],[`shadowBlur`],[`shadowOffsetX`],[`shadowOffsetY`],[`opacity`],[`shadowColor`]]),Awe=function(){function e(){}return e.prototype.getAreaStyle=function(e,t){return kwe(this,e,t)},e}(),wI=new ZM(50);function jwe(e){if(typeof e==`string`){var t=wI.get(e);return t&&t.image}else return e}function TI(e,t,n,r,i){if(!e)return t;if(typeof e==`string`){if(t&&t.__zrImageSrc===e||!n)return t;var a=wI.get(e),o={hostEl:n,cb:r,cbPayload:i};return a?(t=a.image,!EI(t)&&a.pending.push(o)):(t=zk.loadImage(e,Mwe,Mwe),t.__zrImageSrc=e,wI.put(e,t.__cachedImgObj={image:t,pending:[o]})),t}else return e}function Mwe(){var e=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var t=0;t=s;l++)c-=s;var u=PP(o,n);return u>c&&(n=``,u=0),c=e-u,i.ellipsis=n,i.ellipsisWidth=u,i.contentWidth=c,i.containerWidth=e,i}function Iwe(e,t,n){var r=n.containerWidth,i=n.contentWidth,a=n.fontMeasureInfo;if(!r){e.textLine=``,e.isTruncated=!1;return}var o=PP(a,t);if(o<=r){e.textLine=t,e.isTruncated=!1;return}for(var s=0;;s++){if(o<=i||s>=n.maxIterations){t+=n.ellipsis;break}var c=s===0?Lwe(t,i,a):o>0?Math.floor(t.length*i/o):0;t=t.substr(0,c),o=PP(a,t)}t===``&&(t=n.placeholder),e.textLine=t,e.isTruncated=!0}function Lwe(e,t,n){for(var r=0,i=0,a=e.length;ig&&p){var y=Math.floor(g/f);m||=_.length>y,_=_.slice(0,y),v=_.length*f}if(i&&u&&h!=null)for(var b=Fwe(h,l,t.ellipsis,{minChar:t.truncateMinChar,placeholder:t.placeholder}),x={},S=0;S<_.length;S++)Iwe(x,_[S],b),_[S]=x.textLine,m||=x.isTruncated;for(var C=g,w=0,T=kP(l),S=0;S<_.length;S++)w=Math.max(PP(T,_[S]),w);h??=w;var E=h;return C+=c,E+=s,{lines:_,height:g,outerWidth:E,outerHeight:C,lineHeight:f,calculatedLineHeight:d,contentWidth:w,contentHeight:v,width:h,isTruncated:m}}var zwe=function(){function e(){}return e}(),Bwe=function(){function e(e){this.tokens=[],e&&(this.tokens=e)}return e}(),Vwe=function(){function e(){this.width=0,this.height=0,this.contentWidth=0,this.contentHeight=0,this.outerWidth=0,this.outerHeight=0,this.lines=[],this.isTruncated=!1}return e}();function Hwe(e,t,n,r,i){var a=new Vwe,o=kI(e);if(!o)return a;var s=t.padding,c=s?s[1]+s[3]:0,l=s?s[0]+s[2]:0,u=t.width;u==null&&n!=null&&(u=n-c);var d=t.height;d==null&&r!=null&&(d=r-l);for(var f=t.overflow,p=(f===`break`||f===`breakAll`)&&u!=null?{width:u,accumWidth:0,breakAll:f===`breakAll`}:null,m=DI.lastIndex=0,h;(h=DI.exec(o))!=null;){var g=h.index;g>m&&OI(a,o.substring(m,g),t,p),OI(a,h[2],t,p,h[1]),m=DI.lastIndex}md){var F=a.lines.length;O>0?(T.tokens=T.tokens.slice(0,O),C(T,D,E),a.lines=a.lines.slice(0,w+1)):a.lines=a.lines.slice(0,w),a.isTruncated=a.isTruncated||a.lines.length0&&m+r.accumWidth>r.width&&(u=t.split(` +`),l=!0),r.accumWidth=m}else{var h=Kwe(t,c,r.width,r.breakAll,r.accumWidth);r.accumWidth=h.accumWidth+p,d=h.linesWidths,u=h.lines}}u||=t.split(` +`);for(var g=kP(c),_=0;_=32&&t<=591||t>=880&&t<=4351||t>=4608&&t<=5119||t>=7680&&t<=8303}var Wwe=cA(`,&?/;] `.split(``),function(e,t){return e[t]=!0,e},{});function Gwe(e){return Uwe(e)?!!Wwe[e]:!0}function Kwe(e,t,n,r,i){for(var a=[],o=[],s=``,c=``,l=0,u=0,d=kP(t),f=0;fn:i+u+m>n){u?(s||c)&&(h?(s||(s=c,c=``,l=0,u=l),a.push(s),o.push(u-l),c+=p,l+=m,s=``,u=l):(c&&(s+=c,c=``,l=0),a.push(s),o.push(u),s=p,u=m)):h?(a.push(c),o.push(l),c=p,l=m):(a.push(p),o.push(m));continue}u+=m,h?(c+=p,l+=m):(c&&(s+=c,c=``,l=0),s+=p)}return c&&(s+=c),s&&(a.push(s),o.push(u)),a.length===1&&(u+=i),{accumWidth:u,lines:a,linesWidths:o}}function qwe(e,t,n,r,i,a){if(e.baseX=n,e.baseY=r,e.outerWidth=e.outerHeight=null,t){var o=t.width*2,s=t.height*2;eM.set(Jwe,LP(n,o,i),RP(r,s,a),o,s),eM.intersect(t,Jwe,null,Ywe);var c=Ywe.outIntersectRect;e.outerWidth=c.width,e.outerHeight=c.height,e.baseX=LP(c.x,c.width,i,!0),e.baseY=RP(c.y,c.height,a,!0)}}var Jwe=new eM(0,0,0,0),Ywe={outIntersectRect:{},clamp:!0};function kI(e){return e==null?e=``:e+=``}function Xwe(e){var t=kI(e.text),n=e.font;return AI(e,PP(kP(n),t),zP(n),null)}function AI(e,t,n,r){var i=new eM(LP(e.x||0,t,e.textAlign),RP(e.y||0,n,e.textBaseline),t,n),a=r??(Zwe(e)?e.lineWidth:0);return a>0&&(i.x-=a/2,i.y-=a/2,i.width+=a,i.height+=a),i}function Zwe(e){var t=e.stroke;return t!=null&&t!==`none`&&e.lineWidth>0}var jI=`__zr_style_`+Math.round(Math.random()*10),MI={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:`#000`,opacity:1,blend:`source-over`},NI={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};MI[jI]=!0;var Qwe=[`z`,`z2`,`invisible`],$we=[`invisible`],PI=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype._init=function(t){for(var n=dA(t),r=0;r1e-4){s[0]=e-n,s[1]=t-r,c[0]=e+n,c[1]=t+r;return}if(HI[0]=BI(i)*n+e,HI[1]=zI(i)*r+t,UI[0]=BI(a)*n+e,UI[1]=zI(a)*r+t,l(s,HI,UI),u(c,HI,UI),i%=VI,i<0&&(i+=VI),a%=VI,a<0&&(a+=VI),i>a&&!o?a+=VI:ii&&(WI[0]=BI(p)*n+e,WI[1]=zI(p)*r+t,l(s,WI,s),u(c,WI,c))}var KI={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},qI=[],JI=[],YI=[],XI=[],ZI=[],QI=[],$I=Math.min,eL=Math.max,tL=Math.cos,nL=Math.sin,rL=Math.abs,iL=Math.PI,aL=iL*2,oL=typeof Float32Array<`u`,sL=[];function cL(e){return Math.round(e/iL*1e8)/1e8%2*iL}function lL(e,t){var n=cL(e[0]);n<0&&(n+=aL);var r=n-e[0],i=e[1];i+=r,!t&&i-n>=aL?i=n+aL:t&&n-i>=aL?i=n-aL:!t&&n>i?i=n+(aL-cL(n-i)):t&&n0&&(this._ux=rL(n/pP/e)||0,this._uy=rL(n/pP/t)||0)},e.prototype.setDPR=function(e){this.dpr=e},e.prototype.setContext=function(e){this._ctx=e},e.prototype.getContext=function(){return this._ctx},e.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},e.prototype.reset=function(){this._saveData&&(this._len=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},e.prototype.moveTo=function(e,t){return this._drawPendingPt(),this.addData(KI.M,e,t),this._ctx&&this._ctx.moveTo(e,t),this._x0=e,this._y0=t,this._xi=e,this._yi=t,this},e.prototype.lineTo=function(e,t){var n=rL(e-this._xi),r=rL(t-this._yi),i=n>this._ux||r>this._uy;if(this.addData(KI.L,e,t),this._ctx&&i&&this._ctx.lineTo(e,t),i)this._xi=e,this._yi=t,this._pendingPtDist=0;else{var a=n*n+r*r;a>this._pendingPtDist&&(this._pendingPtX=e,this._pendingPtY=t,this._pendingPtDist=a)}return this},e.prototype.bezierCurveTo=function(e,t,n,r,i,a){return this._drawPendingPt(),this.addData(KI.C,e,t,n,r,i,a),this._ctx&&this._ctx.bezierCurveTo(e,t,n,r,i,a),this._xi=i,this._yi=a,this},e.prototype.quadraticCurveTo=function(e,t,n,r){return this._drawPendingPt(),this.addData(KI.Q,e,t,n,r),this._ctx&&this._ctx.quadraticCurveTo(e,t,n,r),this._xi=n,this._yi=r,this},e.prototype.arc=function(e,t,n,r,i,a){this._drawPendingPt(),sL[0]=r,sL[1]=i,lL(sL,a),r=sL[0],i=sL[1];var o=i-r;return this.addData(KI.A,e,t,n,n,r,o,0,+!a),this._ctx&&this._ctx.arc(e,t,n,r,i,a),this._xi=tL(i)*n+e,this._yi=nL(i)*n+t,this},e.prototype.arcTo=function(e,t,n,r,i){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(e,t,n,r,i),this},e.prototype.rect=function(e,t,n,r){return this._drawPendingPt(),this._ctx&&this._ctx.rect(e,t,n,r),this.addData(KI.R,e,t,n,r),this},e.prototype.closePath=function(){this._drawPendingPt(),this.addData(KI.Z);var e=this._ctx,t=this._x0,n=this._y0;return e&&e.closePath(),this._xi=t,this._yi=n,this},e.prototype.fill=function(e){e&&e.fill(),this.toStatic()},e.prototype.stroke=function(e){e&&e.stroke(),this.toStatic()},e.prototype.len=function(){return this._len},e.prototype.setData=function(e){if(this._saveData){var t=e.length;!(this.data&&this.data.length===t)&&oL&&(this.data=new Float32Array(t));for(var n=0;n0&&a))for(var o=0;ol.length&&(this._expandData(),l=this.data);for(var u=0;u0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},e.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var e=[],t=0;t11&&(this.data=new Float32Array(e)))}},e.prototype.getBoundingRect=function(){YI[0]=YI[1]=ZI[0]=ZI[1]=Number.MAX_VALUE,XI[0]=XI[1]=QI[0]=QI[1]=-Number.MAX_VALUE;var e=this.data,t=0,n=0,r=0,i=0,a;for(a=0;an||rL(v)>r||d===t-1)&&(m=Math.sqrt(_*_+v*v),i=h,a=g);break;case KI.C:var y=e[d++],b=e[d++],h=e[d++],g=e[d++],x=e[d++],S=e[d++];m=PSe(i,a,y,b,h,g,x,S,10),i=x,a=S;break;case KI.Q:var y=e[d++],b=e[d++],h=e[d++],g=e[d++];m=ISe(i,a,y,b,h,g,10),i=h,a=g;break;case KI.A:var C=e[d++],w=e[d++],T=e[d++],E=e[d++],D=e[d++],O=e[d++],k=O+D;d+=1,p&&(o=tL(D)*T+C,s=nL(D)*E+w),m=eL(T,E)*$I(aL,Math.abs(O)),i=tL(k)*T+C,a=nL(k)*E+w;break;case KI.R:o=i=e[d++],s=a=e[d++];var A=e[d++],j=e[d++];m=A*2+j*2;break;case KI.Z:var _=o-i,v=s-a;m=Math.sqrt(_*_+v*v),i=o,a=s;break}m>=0&&(c[u++]=m,l+=m)}return this._pathLen=l,l},e.prototype.rebuildPath=function(e,t){var n=this.data,r=this._ux,i=this._uy,a=this._len,o,s,c,l,u,d,f=t<1,p,m,h=0,g=0,_,v=0,y,b;if(!(f&&(this._pathSegLen||this._calculateLength(),p=this._pathSegLen,m=this._pathLen,_=t*m,!_)))lo:for(var x=0;x0&&(e.lineTo(y,b),v=0),S){case KI.M:o=c=n[x++],s=l=n[x++],e.moveTo(c,l);break;case KI.L:u=n[x++],d=n[x++];var w=rL(u-c),T=rL(d-l);if(w>r||T>i){if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;e.lineTo(c*(1-D)+u*D,l*(1-D)+d*D);break lo}h+=E}e.lineTo(u,d),c=u,l=d,v=0}else{var O=w*w+T*T;O>v&&(y=u,b=d,v=O)}break;case KI.C:var k=n[x++],A=n[x++],j=n[x++],M=n[x++],N=n[x++],P=n[x++];if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;HM(c,k,j,N,D,qI),HM(l,A,M,P,D,JI),e.bezierCurveTo(qI[1],JI[1],qI[2],JI[2],qI[3],JI[3]);break lo}h+=E}e.bezierCurveTo(k,A,j,M,N,P),c=N,l=P;break;case KI.Q:var k=n[x++],A=n[x++],j=n[x++],M=n[x++];if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;qM(c,k,j,D,qI),qM(l,A,M,D,JI),e.quadraticCurveTo(qI[1],JI[1],qI[2],JI[2]);break lo}h+=E}e.quadraticCurveTo(k,A,j,M),c=j,l=M;break;case KI.A:var F=n[x++],I=n[x++],L=n[x++],R=n[x++],z=n[x++],B=n[x++],V=n[x++],H=!n[x++],U=L>R?L:R,W=rL(L-R)>.001,G=z+B,ee=!1;if(f){var E=p[g++];h+E>_&&(G=z+B*(_-h)/E,ee=!0),h+=E}if(W&&e.ellipse?e.ellipse(F,I,L,R,V,z,G,H):e.arc(F,I,U,z,G,H),ee)break lo;C&&(o=tL(z)*L+F,s=nL(z)*R+I),c=tL(G)*L+F,l=nL(G)*R+I;break;case KI.R:o=c=n[x],s=l=n[x+1],u=n[x++],d=n[x++];var K=n[x++],te=n[x++];if(f){var E=p[g++];if(h+E>_){var ne=_-h;e.moveTo(u,d),e.lineTo(u+$I(ne,K),d),ne-=K,ne>0&&e.lineTo(u+K,d+$I(ne,te)),ne-=te,ne>0&&e.lineTo(u+eL(K-ne,0),d+te),ne-=K,ne>0&&e.lineTo(u,d+eL(te-ne,0));break lo}h+=E}e.rect(u,d,K,te);break;case KI.Z:if(f){var E=p[g++];if(h+E>_){var D=(_-h)/E;e.lineTo(c*(1-D)+o*D,l*(1-D)+s*D);break lo}h+=E}e.closePath(),c=o,l=s}}},e.prototype.clone=function(){var t=new e,n=this.data;return t.data=n.slice?n.slice():Array.prototype.slice.call(n),t._len=this._len,t},e.prototype.canSave=function(){return!!this._saveData},e.CMD=KI,e.initDefaultProps=(function(){var t=e.prototype;t._saveData=!0,t._ux=0,t._uy=0,t._pendingPtDist=0,t._version=0})(),e}();function dL(e,t,n,r,i,a,o){if(i===0)return!1;var s=i,c=0,l=e;if(o>t+s&&o>r+s||oe+s&&a>n+s||at+d&&u>r+d&&u>a+d&&u>s+d||ue+d&&l>n+d&&l>i+d&&l>o+d||lt+l&&c>r+l&&c>a+l||ce+l&&s>n+l&&s>i+l||sn||u+li&&(i+=pL);var f=Math.atan2(c,s);return f<0&&(f+=pL),f>=r&&f<=i||f+pL>=r&&f+pL<=i}function mL(e,t,n,r,i,a){if(a>t&&a>r||ai?s:0}var hL=uL.CMD,gL=Math.PI*2,dTe=1e-4;function fTe(e,t){return Math.abs(e-t)t&&l>r&&l>a&&l>s||l1&&pTe(),p=RM(t,r,a,s,vL[0]),f>1&&(m=RM(t,r,a,s,vL[1]))),f===2?gt&&s>r&&s>a||s=0&&l<=1){for(var u=0,d=WM(t,r,a,l),f=0;fn||s<-n)return 0;var c=Math.sqrt(n*n-s*s);_L[0]=-c,_L[1]=c;var l=Math.abs(r-i);if(l<1e-4)return 0;if(l>=gL-1e-4){r=0,i=gL;var u=a?1:-1;return o>=_L[0]+e&&o<=_L[1]+e?u:0}if(r>i){var d=r;r=i,i=d}r<0&&(r+=gL,i+=gL);for(var f=0,p=0;p<2;p++){var m=_L[p];if(m+e>o){var h=Math.atan2(s,m),u=a?1:-1;h<0&&(h=gL+h),(h>=r&&h<=i||h+gL>=r&&h+gL<=i)&&(h>Math.PI/2&&h1&&(n||(s+=mL(c,l,u,d,r,i))),g&&(c=a[m],l=a[m+1],u=c,d=l),h){case hL.M:u=a[m++],d=a[m++],c=u,l=d;break;case hL.L:if(n){if(dL(c,l,a[m],a[m+1],t,r,i))return!0}else s+=mL(c,l,a[m],a[m+1],r,i)||0;c=a[m++],l=a[m++];break;case hL.C:if(n){if(sTe(c,l,a[m++],a[m++],a[m++],a[m++],a[m],a[m+1],t,r,i))return!0}else s+=mTe(c,l,a[m++],a[m++],a[m++],a[m++],a[m],a[m+1],r,i)||0;c=a[m++],l=a[m++];break;case hL.Q:if(n){if(cTe(c,l,a[m++],a[m++],a[m],a[m+1],t,r,i))return!0}else s+=hTe(c,l,a[m++],a[m++],a[m],a[m+1],r,i)||0;c=a[m++],l=a[m++];break;case hL.A:var _=a[m++],v=a[m++],y=a[m++],b=a[m++],x=a[m++],S=a[m++];m+=1;var C=!!(1-a[m++]);f=Math.cos(x)*y+_,p=Math.sin(x)*b+v,g?(u=f,d=p):s+=mL(c,l,f,p,r,i);var w=(r-_)*b/y+_;if(n){if(uTe(_,v,b,x,x+S,C,t,w,i))return!0}else s+=gTe(_,v,b,x,x+S,C,w,i);c=Math.cos(x+S)*y+_,l=Math.sin(x+S)*b+v;break;case hL.R:u=c=a[m++],d=l=a[m++];var T=a[m++],E=a[m++];if(f=u+T,p=d+E,n){if(dL(u,d,f,d,t,r,i)||dL(f,d,f,p,t,r,i)||dL(f,p,u,p,t,r,i)||dL(u,p,u,d,t,r,i))return!0}else s+=mL(f,d,f,p,r,i),s+=mL(u,p,u,d,r,i);break;case hL.Z:if(n){if(dL(c,l,u,d,t,r,i))return!0}else s+=mL(c,l,u,d,r,i);c=u,l=d;break}}return!n&&!fTe(l,d)&&(s+=mL(c,l,u,d,r,i)||0),s!==0}function vTe(e,t,n){return _Te(e,0,!1,t,n)}function yTe(e,t,n,r){return _Te(e,t,!0,n,r)}var yL=nA({fill:`#000`,stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:`butt`,miterLimit:10,strokeNoScale:!1,strokeFirst:!1},MI),bTe={style:nA({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},NI.style)},bL=DP.concat([`invisible`,`culling`,`z`,`z2`,`zlevel`,`parent`]),xL=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.update=function(){var n=this;e.prototype.update.call(this);var r=this.style;if(r.decal){var i=this._decalEl=this._decalEl||new t;i.buildPath===t.prototype.buildPath&&(i.buildPath=function(e){n.buildPath(e,n.shape)}),i.silent=!0;var a=i.style;for(var o in r)a[o]!==r[o]&&(a[o]=r[o]);a.fill=r.fill?r.decal:null,a.decal=null,a.shadowColor=null,r.strokeFirst&&(a.stroke=null);for(var s=0;s.5?hP:t>.2?pCe:gP}else if(e)return gP}return hP},t.prototype.getInsideTextStroke=function(e){var t=this.style.fill;if(gA(t)){var n=this.__zr;if(!!(n&&n.isDarkMode())==vN(e,0)<.4)return t}},t.prototype.buildPath=function(e,t,n){},t.prototype.pathUpdated=function(){this.__dirty&=-5},t.prototype.getUpdatedPathProxy=function(e){return!this.path&&this.createPathProxy(),this.path.beginPath(),this.buildPath(this.path,this.shape,e),this.path},t.prototype.createPathProxy=function(){this.path=new uL(!1)},t.prototype.hasStroke=function(){var e=this.style,t=e.stroke;return!(t==null||t===`none`||!(e.lineWidth>0))},t.prototype.hasFill=function(){var e=this.style.fill;return e!=null&&e!==`none`},t.prototype.getBoundingRect=function(){var e=this._rect,t=this.style,n=!e;if(n){var r=!1;this.path||(r=!0,this.createPathProxy());var i=this.path;(r||this.__dirty&4)&&(i.beginPath(),this.buildPath(i,this.shape,!1),this.pathUpdated()),e=i.getBoundingRect()}if(this._rect=e,this.hasStroke()&&this.path&&this.path.len()>0){var a=this._rectStroke||=e.clone();if(this.__dirty||n){a.copy(e);var o=t.strokeNoScale?this.getLineScale():1,s=t.lineWidth;if(!this.hasFill()){var c=this.strokeContainThreshold;s=Math.max(s,c??4)}o>1e-10&&(a.width+=s/o,a.height+=s/o,a.x-=s/o/2,a.y-=s/o/2)}return a}return e},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect(),i=this.style;if(e=n[0],t=n[1],r.contain(e,t)){var a=this.path;if(this.hasStroke()){var o=i.lineWidth,s=i.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(this.hasFill()||(o=Math.max(o,this.strokeContainThreshold)),yTe(a,o/s,e,t)))return!0}if(this.hasFill())return vTe(a,e,t)}return!1},t.prototype.dirtyShape=function(){this.__dirty|=4,this._rect&&=null,this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},t.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},t.prototype.animateShape=function(e){return this.animate(`shape`,e)},t.prototype.updateDuringAnimation=function(e){e===`style`?this.dirtyStyle():e===`shape`?this.dirtyShape():this.markRedraw()},t.prototype.attrKV=function(t,n){t===`shape`?this.setShape(n):e.prototype.attrKV.call(this,t,n)},t.prototype.setShape=function(e,t){var n=this.shape;return n||=this.shape={},typeof e==`string`?n[e]=t:Z(n,e),this.dirtyShape(),this},t.prototype.shapeChanged=function(){return!!(this.__dirty&4)},t.prototype.createStyle=function(e){return VA(yL,e)},t.prototype._innerSaveToNormal=function(t){e.prototype._innerSaveToNormal.call(this,t);var n=this._normalState;t.shape&&!n.shape&&(n.shape=Z({},this.shape))},t.prototype._applyStateObj=function(t,n,r,i,a,o){if(e.prototype._applyStateObj.call(this,t,n,r,i,a,o),this.__inHover!==1){var s=!(n&&i),c;if(n&&n.shape?a?i?c=n.shape:(c=Z({},r.shape),Z(c,n.shape)):(c=Z({},i?this.shape:r.shape),Z(c,n.shape)):s&&(c=r.shape),c)if(a){this.shape=Z({},this.shape);for(var l={},u=dA(c),d=0;di&&(d=s+c,s*=i/d,c*=i/d),l+u>i&&(d=l+u,l*=i/d,u*=i/d),c+l>a&&(d=c+l,c*=a/d,l*=a/d),s+u>a&&(d=s+u,s*=a/d,u*=a/d),e.moveTo(n+s,r),e.lineTo(n+i-c,r),c!==0&&e.arc(n+i-c,r+c,c,-Math.PI/2,0),e.lineTo(n+i,r+a-l),l!==0&&e.arc(n+i-l,r+a-l,l,0,Math.PI/2),e.lineTo(n+u,r+a),u!==0&&e.arc(n+u,r+a-u,u,Math.PI/2,Math.PI),e.lineTo(n,r+s),s!==0&&e.arc(n+s,r+s,s,Math.PI,Math.PI*1.5),e.closePath()}var wL=Math.round;function TL(e,t,n){if(t){var r=t.x1,i=t.x2,a=t.y1,o=t.y2;e.x1=r,e.x2=i,e.y1=a,e.y2=o;var s=n&&n.lineWidth;return s?(wL(r*2)===wL(i*2)&&(e.x1=e.x2=EL(r,s,!0)),wL(a*2)===wL(o*2)&&(e.y1=e.y2=EL(a,s,!0)),e):e}}function ETe(e,t,n){if(t){var r=t.x,i=t.y,a=t.width,o=t.height;e.x=r,e.y=i,e.width=a,e.height=o;var s=n&&n.lineWidth;return s?(e.x=EL(r,s,!0),e.y=EL(i,s,!0),e.width=Math.max(EL(r+a,s,!1)-e.x,a===0?0:1),e.height=Math.max(EL(i+o,s,!1)-e.y,o===0?0:1),e):e}}function EL(e,t,n){if(!t)return e;var r=wL(e*2);return(r+wL(t))%2==0?r/2:(r+(n?1:-1))/2}var DTe=function(){function e(){this.x=0,this.y=0,this.width=0,this.height=0}return e}(),OTe={},DL=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new DTe},t.prototype.buildPath=function(e,t){var n,r,i,a;if(this.subPixelOptimize){var o=ETe(OTe,t,this.style);n=o.x,r=o.y,i=o.width,a=o.height,o.r=t.r,t=o}else n=t.x,r=t.y,i=t.width,a=t.height;t.r?TTe(e,t):e.rect(n,r,i,a)},t.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},t}(xL);DL.prototype.type=`rect`;var kTe={fill:`#000`},ATe=2,OL={},jTe={style:nA({fill:!0,stroke:!0,fillOpacity:!0,strokeOpacity:!0,lineWidth:!0,fontSize:!0,lineHeight:!0,width:!0,height:!0,textShadowColor:!0,textShadowBlur:!0,textShadowOffsetX:!0,textShadowOffsetY:!0,backgroundColor:!0,padding:!0,borderColor:!0,borderWidth:!0,borderRadius:!0},NI.style)},kL=function(e){qA(t,e);function t(t){var n=e.call(this)||this;return n.type=`text`,n._children=[],n._defaultStyle=kTe,n.attr(t),n}return t.prototype.childrenRef=function(){return this._children},t.prototype.update=function(){e.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var t=0;t0,T=0;T=0&&(D=y[E],D.align===`right`);)this._placeToken(D,e,x,m,T,`right`,g),S-=D.width,T-=D.width,E--;for(w+=(s-(w-p)-(h-T)-S)/2;C<=E;)D=y[C],this._placeToken(D,e,x,m,w+D.width/2,`center`,g),w+=D.width,C++;m+=x}},t.prototype._placeToken=function(e,t,n,r,i,a,o){var s=t.rich[e.styleName]||{};s.text=e.text;var c=e.verticalAlign,l=r+n/2;c===`top`?l=r+e.height/2:c===`bottom`&&(l=r+n-e.height/2),!e.isLineHolder&&AL(s)&&this._renderBackground(s,t,a===`right`?i-e.width:a===`center`?i-e.width/2:i,l-e.height/2,e.width,e.height);var u=!!s.backgroundColor,d=e.textPadding;d&&(i=HTe(i,a,d),l-=e.height/2-d[0]-e.innerHeight/2);var f=this._getOrCreateChild(SL),p=f.createStyle();f.useStyle(p);var m=this._defaultStyle,h=!1,g=0,_=!1,v=VTe(`fill`in s?s.fill:`fill`in t?t.fill:(h=!0,m.fill)),y=BTe(`stroke`in s?s.stroke:`stroke`in t?t.stroke:!u&&!o&&(!m.autoStroke||h)?(g=ATe,_=!0,m.stroke):null),b=s.textShadowBlur>0||t.textShadowBlur>0;p.text=e.text,p.x=i,p.y=l,b&&(p.shadowBlur=s.textShadowBlur||t.textShadowBlur||0,p.shadowColor=s.textShadowColor||t.textShadowColor||`transparent`,p.shadowOffsetX=s.textShadowOffsetX||t.textShadowOffsetX||0,p.shadowOffsetY=s.textShadowOffsetY||t.textShadowOffsetY||0),p.textAlign=a,p.textBaseline=`middle`,p.font=e.font||`12px sans-serif`,p.opacity=kA(s.opacity,t.opacity,1),ITe(p,s),y&&(p.lineWidth=kA(s.lineWidth,t.lineWidth,g),p.lineDash=OA(s.lineDash,t.lineDash),p.lineDashOffset=t.lineDashOffset||0,p.stroke=y),v&&(p.fill=v),f.setBoundingRect(AI(p,e.contentWidth,e.contentHeight,_?0:null))},t.prototype._renderBackground=function(e,t,n,r,i,a){var o=e.backgroundColor,s=e.borderWidth,c=e.borderColor,l=o&&o.image,u=o&&!l,d=e.borderRadius,f=this,p,m;if(u||e.lineHeight||s&&c){p=this._getOrCreateChild(DL),p.useStyle(p.createStyle()),p.style.fill=null;var h=p.shape;h.x=n,h.y=r,h.width=i,h.height=a,h.r=d,p.dirtyShape()}if(u){var g=p.style;g.fill=o||null,g.fillOpacity=OA(e.fillOpacity,1)}else if(l){m=this._getOrCreateChild(CL),m.onload=function(){f.dirtyStyle()};var _=m.style;_.image=o.image,_.x=n,_.y=r,_.width=i,_.height=a}if(s&&c){var g=p.style;g.lineWidth=s,g.stroke=c,g.strokeOpacity=OA(e.strokeOpacity,1),g.lineDash=e.borderDash,g.lineDashOffset=e.borderDashOffset||0,p.strokeContainThreshold=0,p.hasFill()&&p.hasStroke()&&(g.strokeFirst=!0,g.lineWidth*=2)}var v=(p||m).style;v.shadowBlur=e.shadowBlur||0,v.shadowColor=e.shadowColor||`transparent`,v.shadowOffsetX=e.shadowOffsetX||0,v.shadowOffsetY=e.shadowOffsetY||0,v.opacity=kA(e.opacity,t.opacity,1)},t.makeFont=function(e){var t=``;return LTe(e)&&(t=[e.fontStyle,e.fontWeight,FTe(e.fontSize),e.fontFamily||`sans-serif`].join(` `)),t&&NA(t)||e.textFont||e.font},t}(PI),MTe={left:!0,right:1,center:1},NTe={top:1,bottom:1,middle:1},PTe=[`fontStyle`,`fontWeight`,`fontSize`,`fontFamily`];function FTe(e){return typeof e==`string`&&(e.indexOf(`px`)!==-1||e.indexOf(`rem`)!==-1||e.indexOf(`em`)!==-1)?e:isNaN(+e)?`12px`:e+`px`}function ITe(e,t){for(var n=0;n=0,a=!1;if(e instanceof xL){var o=QTe(e),s=i&&o.selectFill||o.normalFill,c=i&&o.selectStroke||o.normalStroke;if(KL(s)||KL(c)){r||={};var l=r.style||{};l.fill===`inherit`?(a=!0,r=Z({},r),l=Z({},l),l.fill=s):!KL(l.fill)&&KL(s)?(a=!0,r=Z({},r),l=Z({},l),l.fill=bN(s)):!KL(l.stroke)&&KL(c)&&(a||(r=Z({},r),l=Z({},l)),l.stroke=bN(c)),r.style=l}}if(r&&r.z2==null){a||(r=Z({},r));var u=e.z2EmphasisLift;r.z2=e.z2+(u??10)}return r}function uEe(e,t,n){if(n&&n.z2==null){n=Z({},n);var r=e.z2SelectLift;n.z2=e.z2+(r??9)}return n}function dEe(e,t,n){var r=rA(e.currentStates,t)>=0,i=e.style.opacity,a=r?null:cEe(e,[`opacity`],t,{opacity:1});n||={};var o=n.style||{};return o.opacity??(n=Z({},n),o=Z({opacity:r?i:a.opacity*.1},o),n.style=o),n}function ZL(e,t){var n=this.states[e];if(this.style){if(e===`emphasis`)return lEe(this,e,t,n);if(e===`blur`)return dEe(this,e,n);if(e===`select`)return uEe(this,e,n)}return n}function QL(e){e.stateProxy=ZL;var t=e.getTextContent(),n=e.getTextGuideLine();t&&(t.stateProxy=ZL),n&&(n.stateProxy=ZL)}function fEe(e,t){!iR(e,t)&&!e.__highByOuter&&YL(e,nEe)}function pEe(e,t){!iR(e,t)&&!e.__highByOuter&&YL(e,rEe)}function $L(e,t){e.__highByOuter|=1<<(t||0),YL(e,nEe)}function eR(e,t){!(e.__highByOuter&=~(1<<(t||0)))&&YL(e,rEe)}function mEe(e){YL(e,JL)}function tR(e){YL(e,iEe)}function nR(e){YL(e,aEe)}function rR(e){YL(e,oEe)}function iR(e,t){return e.__highDownSilentOnTouch&&t.zrByTouch}function aR(e){var t=e.getModel(),n=[],r=[];t.eachComponent(function(t,i){var a=BL(i),o=YTe(e,i),s=t===`series`;!s&&r.push(o),a.isBlured&&(o.group.traverse(function(e){iEe(e)}),s&&n.push(i)),a.isBlured=!1}),Q(r,function(e){e&&e.toggleBlurSeries&&e.toggleBlurSeries(n,!1,t)})}function oR(e,t,n,r){var i=r.getModel();n||=`coordinateSystem`;function a(e,t){for(var n=0;n0){var a={dataIndex:i,seriesIndex:e.seriesIndex};r!=null&&(a.dataType=r),t.push(a)}})}),t}function uR(e,t,n){hR(e,!0),YL(e,QL),fR(e,t,n)}function bEe(e){hR(e,!1)}function dR(e,t,n,r){r?bEe(e):uR(e,t,n)}function fR(e,t,n){var r=jL(e);t==null?r.focus&&=null:(r.focus=t,r.blurScope=n)}var pR=[`emphasis`,`blur`,`select`],xEe={itemStyle:`getItemStyle`,lineStyle:`getLineStyle`,areaStyle:`getAreaStyle`};function mR(e,t,n,r){n||=`itemStyle`;for(var i=0;i1&&(o*=SR(m),s*=SR(m));var h=(i===a?-1:1)*SR((o*o*(s*s)-o*o*(p*p)-s*s*(f*f))/(o*o*(p*p)+s*s*(f*f)))||0,g=h*o*p/s,_=h*-s*f/o,v=(e+n)/2+wR(d)*g-CR(d)*_,y=(t+r)/2+CR(d)*g+wR(d)*_,b=OR([1,0],[(f-g)/o,(p-_)/s]),x=[(f-g)/o,(p-_)/s],S=[(-1*f-g)/o,(-1*p-_)/s],C=OR(x,S);if(DR(x,S)<=-1&&(C=TR),DR(x,S)>=1&&(C=0),C<0){var w=Math.round(C/TR*1e6)/1e6;C=TR*2+w%2*TR}u.addData(l,v,y,o,s,b,C,d,a)}var DEe=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,OEe=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function kEe(e){var t=new uL;if(!e)return t;var n=0,r=0,i=n,a=r,o,s=uL.CMD,c=e.match(DEe);if(!c)return t;for(var l=0;lA*A+j*j&&(w=E,T=D),{cx:w,cy:T,x0:-u,y0:-d,x1:w*(i/x-1),y1:T*(i/x-1)}}function IEe(e){var t;if(mA(e)){var n=e.length;if(!n)return e;t=n===1?[e[0],e[0],0,0]:n===2?[e[0],e[0],e[1],e[1]]:n===3?e.concat(e[2]):e}else t=[e,e,e,e];return t}function LEe(e,t){var n,r=WR(t.r,0),i=WR(t.r0||0,0),a=r>0;if(!(!a&&!(i>0))){if(a||(r=i,i=0),i>r){var o=r;r=i,i=o}var s=t.startAngle,c=t.endAngle;if(!(isNaN(s)||isNaN(c))){var l=t.cx,u=t.cy,d=!!t.clockwise,f=HR(c-s),p=f>RR&&f%RR;if(p>KR&&(f=p),!(r>KR))e.moveTo(l,u);else if(f>RR-KR)e.moveTo(l+r*BR(s),u+r*zR(s)),e.arc(l,u,r,s,c,!d),i>KR&&(e.moveTo(l+i*BR(c),u+i*zR(c)),e.arc(l,u,i,c,s,d));else{var m=void 0,h=void 0,g=void 0,_=void 0,v=void 0,y=void 0,b=void 0,x=void 0,S=void 0,C=void 0,w=void 0,T=void 0,E=void 0,D=void 0,O=void 0,k=void 0,A=r*BR(s),j=r*zR(s),M=i*BR(c),N=i*zR(c),P=f>KR;if(P){var F=t.cornerRadius;F&&(n=IEe(F),m=n[0],h=n[1],g=n[2],_=n[3]);var I=HR(r-i)/2;if(v=GR(I,g),y=GR(I,_),b=GR(I,m),x=GR(I,h),w=S=WR(v,y),T=C=WR(b,x),(S>KR||C>KR)&&(E=r*BR(c),D=r*zR(c),O=i*BR(s),k=i*zR(s),fKR){var W=GR(g,w),G=GR(_,w),ee=qR(O,k,A,j,r,W,d),K=qR(E,D,M,N,r,G,d);e.moveTo(l+ee.cx+ee.x0,u+ee.cy+ee.y0),w0&&e.arc(l+ee.cx,u+ee.cy,W,VR(ee.y0,ee.x0),VR(ee.y1,ee.x1),!d),e.arc(l,u,r,VR(ee.cy+ee.y1,ee.cx+ee.x1),VR(K.cy+K.y1,K.cx+K.x1),!d),G>0&&e.arc(l+K.cx,u+K.cy,G,VR(K.y1,K.x1),VR(K.y0,K.x0),!d))}else e.moveTo(l+A,u+j),e.arc(l,u,r,s,c,!d);if(!(i>KR)||!P)e.lineTo(l+M,u+N);else if(T>KR){var W=GR(m,T),G=GR(h,T),ee=qR(M,N,E,D,i,-G,d),K=qR(A,j,O,k,i,-W,d);e.lineTo(l+ee.cx+ee.x0,u+ee.cy+ee.y0),T0&&e.arc(l+ee.cx,u+ee.cy,G,VR(ee.y0,ee.x0),VR(ee.y1,ee.x1),!d),e.arc(l,u,i,VR(ee.cy+ee.y1,ee.cx+ee.x1),VR(K.cy+K.y1,K.cx+K.x1),d),W>0&&e.arc(l+K.cx,u+K.cy,W,VR(K.y1,K.x1),VR(K.y0,K.x0),!d))}else e.lineTo(l+M,u+N),e.arc(l,u,i,c,s,d)}e.closePath()}}}var REe=function(){function e(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0,this.cornerRadius=0}return e}(),JR=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new REe},t.prototype.buildPath=function(e,t){LEe(e,t)},t.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},t}(xL);JR.prototype.type=`sector`;var zEe=function(){function e(){this.cx=0,this.cy=0,this.r=0,this.r0=0}return e}(),YR=function(e){qA(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new zEe},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.PI*2;e.moveTo(n+t.r,r),e.arc(n,r,t.r,0,i,!1),e.moveTo(n+t.r0,r),e.arc(n,r,t.r0,0,i,!0)},t}(xL);YR.prototype.type=`ring`;function BEe(e,t,n,r){var i=[],a=[],o=[],s=[],c,l,u,d;if(r){u=[1/0,1/0],d=[-1/0,-1/0];for(var f=0,p=e.length;f=2){if(r){var a=BEe(i,r,n,t.smoothConstraint);e.moveTo(i[0][0],i[0][1]);for(var o=i.length,s=0;s<(n?o:o-1);s++){var c=a[s*2],l=a[s*2+1],u=i[(s+1)%o];e.bezierCurveTo(c[0],c[1],l[0],l[1],u[0],u[1])}}else{e.moveTo(i[0][0],i[0][1]);for(var s=1,d=i.length;sdz[1]){if(i=!1,fz.negativeSize||n)return i;var s=lz(dz[0]-uz[1]),c=lz(uz[0]-dz[1]);cz(s,c)>mz.len()&&(s=c||!fz.bidirectional)&&(Vj.scale(pz,o,-c*r),fz.useDir&&fz.calcDirMTV()))}}return i},e.prototype._getProjMinMaxOnAxis=function(e,t,n){for(var r=this._axes[e],i=this._origin,a=t[0].dot(r)+i[e],o=a,s=a,c=1;c0){var d=u.duration,f=u.delay,p=u.easing,m={duration:d,delay:f||0,easing:p,done:a,force:!!a||!!o,setToFinal:!l,scope:e,during:o};s?t.animateFrom(n,m):t.animateTo(n,m)}else t.stopAnimation(),!s&&t.attr(n),o&&o(1),a&&a()}function bz(e,t,n,r,i,a){yz(`update`,e,t,n,r,i,a)}function xz(e,t,n,r,i,a){yz(`enter`,e,t,n,r,i,a)}function Sz(e){if(!e.__zr)return!0;for(var t=0;trz,BezierCurve:()=>nz,BoundingRect:()=>eM,Circle:()=>FR,CompoundPath:()=>iz,Ellipse:()=>IR,Group:()=>QP,HOVER_LAYER_FOR_INCREMENTAL:()=>2,HOVER_LAYER_FROM_THRESHOLD:()=>1,HOVER_LAYER_NO:()=>0,Image:()=>CL,IncrementalDisplayable:()=>gz,Line:()=>$R,LinearGradient:()=>oz,OrientedBoundingRect:()=>hz,Path:()=>xL,Point:()=>Vj,Polygon:()=>ZR,Polyline:()=>QR,RadialGradient:()=>sz,Rect:()=>DL,Ring:()=>YR,Sector:()=>JR,Text:()=>kL,WH:()=>Az,XY:()=>kz,applyTransform:()=>Uz,calcZ2Range:()=>uB,clipPointsByRect:()=>qz,clipRectByRect:()=>Jz,createIcon:()=>Yz,decomposeTransform:()=>mB,ensureCopyRect:()=>sB,ensureCopyTransform:()=>cB,expandOrShrinkRect:()=>$z,extendPath:()=>Mz,extendShape:()=>jz,getCurrentCanvasPainter:()=>gB,getShapeClass:()=>Pz,getTransform:()=>Hz,groupTransition:()=>Kz,initProps:()=>xz,isBoundingRectAxisAligned:()=>aB,isElementRemoved:()=>Sz,lineLineIntersect:()=>Zz,linePolygonIntersect:()=>Xz,makeImage:()=>Iz,makePath:()=>Fz,mergePath:()=>Rz,payloadDisableAnimation:()=>pB,registerShape:()=>Nz,removeElement:()=>Cz,removeElementWithFadeOut:()=>Tz,resizePath:()=>zz,retrieveZInfo:()=>lB,setTooltipConfig:()=>nB,subPixelOptimize:()=>Vz,subPixelOptimizeLine:()=>Bz,subPixelOptimizeRect:()=>ZEe,transformDirection:()=>Wz,traverseElements:()=>iB,traverseUpdateZ:()=>dB,updateProps:()=>bz}),Oz={},kz=[`x`,`y`],Az=[`width`,`height`];function jz(e){return xL.extend(e)}var XEe=AEe;function Mz(e,t){return XEe(e,t)}function Nz(e,t){Oz[e]=t}function Pz(e){if(Oz.hasOwnProperty(e))return Oz[e]}function Fz(e,t,n,r){var i=NR(e,t);return n&&(r===`center`&&(n=Lz(n,i.getBoundingRect())),zz(i,n)),i}function Iz(e,t,n){var r=new CL({style:{image:e,x:t.x,y:t.y,width:t.width,height:t.height},onload:function(e){if(n===`center`){var i={width:e.width,height:e.height};r.setStyle(Lz(t,i))}}});return r}function Lz(e,t){var n=t.width/t.height,r=e.height*n,i;r<=e.width?i=e.height:(r=e.width,i=r/n);var a=e.x+e.width/2,o=e.y+e.height/2;return{x:a-r/2,y:o-i/2,width:r,height:i}}var Rz=jEe;function zz(e,t){if(e.applyTransform){var n=e.getBoundingRect().calculateTransform(t);e.applyTransform(n)}}function Bz(e,t){return TL(e,e,{lineWidth:t}),e}function ZEe(e,t){return ETe(e,e,t),e}var Vz=EL;function Hz(e,t){for(var n=Nj([]);e&&e!==t;)Fj(n,e.getLocalTransform(),n),e=e.parent;return n}function Uz(e,t,n){return t&&!oA(t)&&(t=wP.getLocalTransform(t)),n&&(t=zj([],t)),uj([],e,t)}function Wz(e,t,n){var r=t[4]===0||t[5]===0||t[0]===0?1:uF(2*t[4]/t[0]),i=t[4]===0||t[5]===0||t[2]===0?1:uF(2*t[4]/t[2]),a=[e===`left`?-r:e===`right`?r:0,e===`top`?-i:e===`bottom`?i:0];return a=Uz(a,t,n),uF(a[0])>uF(a[1])?a[0]>0?`right`:`left`:a[1]>0?`bottom`:`top`}function Gz(e){return!e.isGroup}function QEe(e){return e.shape!=null}function Kz(e,t,n){if(!e||!t)return;function r(e){var t={};return e.traverse(function(e){Gz(e)&&e.anid&&(t[e.anid]=e)}),t}function i(e){var t={x:e.x,y:e.y,rotation:e.rotation};return QEe(e)&&(t.shape=Qk(e.shape)),t}var a=r(e);t.traverse(function(e){if(Gz(e)&&e.anid){var t=a[e.anid];if(t){var r=i(e);e.attr(i(t)),bz(e,r,n,jL(e).dataIndex)}}})}function qz(e,t){return sA(e,function(e){var n=e[0];n=lF(n,t.x),n=cF(n,t.x+t.width);var r=e[1];return r=lF(r,t.y),r=cF(r,t.y+t.height),[n,r]})}function Jz(e,t){var n=lF(e.x,t.x),r=cF(e.x+e.width,t.x+t.width),i=lF(e.y,t.y),a=cF(e.y+e.height,t.y+t.height);if(r>=n&&a>=i)return{x:n,y:i,width:r-n,height:a-i}}function Yz(e,t,n){var r=Z({rectHover:!0},t),i=r.style={strokeNoScale:!0};if(n||={x:-1,y:-1,width:2,height:2},e)return e.indexOf(`image://`)===0?(i.image=e.slice(8),nA(i,n),new CL(r)):Fz(e.replace(`path://`,``),r,n,`center`)}function Xz(e,t,n,r,i){for(var a=0,o=i[i.length-1];a1)return!1;var g=Qz(p,m,u,d)/f;return!(g<0||g>1)}function Qz(e,t,n,r){return e*r-n*t}function $Ee(e){return e<=1e-6&&e>=-1e-6}function $z(e,t,n,r,i){return t==null?e:(vA(t)?eB[0]=eB[1]=eB[2]=eB[3]=t:(eB[0]=t[0],eB[1]=t[1],eB[2]=t[2],eB[3]=t[3]),r&&(eB[0]=lF(0,eB[0]),eB[1]=lF(0,eB[1]),eB[2]=lF(0,eB[2]),eB[3]=lF(0,eB[3])),n&&(eB[0]=-eB[0],eB[1]=-eB[1],eB[2]=-eB[2],eB[3]=-eB[3]),tB(e,eB,`x`,`width`,3,1,i&&i[0]||0),tB(e,eB,`y`,`height`,0,2,i&&i[1]||0),e)}var eB=[0,0,0,0];function tB(e,t,n,r,i,a,o){var s=t[a]+t[i],c=e[r];e[r]+=s,o=lF(0,cF(o,c)),e[r]=0?-t[i]:t[a]>=0?c+t[a]:uF(s)>1e-8?(c-o)*t[i]/s:0):e[n]-=t[i]}function nB(e){var t=e.itemTooltipOption,n=e.componentModel,r=e.itemName,i=gA(t)?{formatter:t}:t,a=n.mainType,o=n.componentIndex,s={componentType:a,name:r,$vars:[`name`]};s[a+`Index`]=o;var c=e.formatterParamsExtra;c&&Q(dA(c),function(e){UA(s,e)||(s[e]=c[e],s.$vars.push(e))});var l=jL(e.el);l.componentMainType=a,l.componentIndex=o,l.tooltipConfig={name:r,option:nA({content:r,encodeHTMLContent:!0,formatterParams:s},i)}}function rB(e,t){var n;e.isGroup&&(n=t(e)),n||e.traverse(t)}function iB(e,t){if(e)if(mA(e))for(var n=0;nt&&(t=r),rt&&(n=t=0),{min:n,max:t}}function dB(e,t,n){fB(e,t,n,-1/0)}function fB(e,t,n,r){if(e.ignoreModelZ)return r;var i=e.getTextContent(),a=e.getTextGuideLine();if(e.isGroup)for(var o=e.childrenRef(),s=0;s=0&&n.push(e)}),n}}function zB(e,t){return $k($k({},e,!0),t,!0)}var dDe={time:{month:[`January`,`February`,`March`,`April`,`May`,`June`,`July`,`August`,`September`,`October`,`November`,`December`],monthAbbr:[`Jan`,`Feb`,`Mar`,`Apr`,`May`,`Jun`,`Jul`,`Aug`,`Sep`,`Oct`,`Nov`,`Dec`],dayOfWeek:[`Sunday`,`Monday`,`Tuesday`,`Wednesday`,`Thursday`,`Friday`,`Saturday`],dayOfWeekAbbr:[`Sun`,`Mon`,`Tue`,`Wed`,`Thu`,`Fri`,`Sat`]},legend:{selector:{all:`All`,inverse:`Inv`}},toolbox:{brush:{title:{rect:`Box Select`,polygon:`Lasso Select`,lineX:`Horizontally Select`,lineY:`Vertically Select`,keep:`Keep Selections`,clear:`Clear Selections`}},dataView:{title:`Data View`,lang:[`Data View`,`Close`,`Refresh`]},dataZoom:{title:{zoom:`Zoom`,back:`Zoom Reset`}},magicType:{title:{line:`Switch to Line Chart`,bar:`Switch to Bar Chart`,stack:`Stack`,tiled:`Tile`}},restore:{title:`Restore`},saveAsImage:{title:`Save as Image`,lang:[`Right Click to Save Image`]}},series:{typeNames:{pie:`Pie chart`,bar:`Bar chart`,line:`Line chart`,scatter:`Scatter plot`,effectScatter:`Ripple scatter plot`,radar:`Radar chart`,tree:`Tree`,treemap:`Treemap`,boxplot:`Boxplot`,candlestick:`Candlestick`,k:`K line chart`,heatmap:`Heat map`,map:`Map`,parallel:`Parallel coordinate map`,lines:`Line graph`,graph:`Relationship graph`,sankey:`Sankey diagram`,funnel:`Funnel chart`,gauge:`Gauge`,pictorialBar:`Pictorial bar`,themeRiver:`Theme River Map`,sunburst:`Sunburst`,custom:`Custom chart`,chart:`Chart`}},aria:{general:{withTitle:`This is a chart about "{title}"`,withoutTitle:`This is a chart`},series:{single:{prefix:``,withName:` with type {seriesType} named {seriesName}.`,withoutName:` with type {seriesType}.`},multiple:{prefix:`. It consists of {seriesCount} series count.`,withName:` The {seriesId} series is a {seriesType} representing {seriesName}.`,withoutName:` The {seriesId} series is a {seriesType}.`,separator:{middle:``,end:``}}},data:{allData:`The data is as follows: `,partialData:`The first {displayCnt} items are: `,withName:`the data for {name} is {value}`,withoutName:`{value}`,separator:{middle:`, `,end:`. `}}}},fDe={time:{month:[`一月`,`二月`,`三月`,`四月`,`五月`,`六月`,`七月`,`八月`,`九月`,`十月`,`十一月`,`十二月`],monthAbbr:[`1月`,`2月`,`3月`,`4月`,`5月`,`6月`,`7月`,`8月`,`9月`,`10月`,`11月`,`12月`],dayOfWeek:[`星期日`,`星期一`,`星期二`,`星期三`,`星期四`,`星期五`,`星期六`],dayOfWeekAbbr:[`日`,`一`,`二`,`三`,`四`,`五`,`六`]},legend:{selector:{all:`全选`,inverse:`反选`}},toolbox:{brush:{title:{rect:`矩形选择`,polygon:`圈选`,lineX:`横向选择`,lineY:`纵向选择`,keep:`保持选择`,clear:`清除选择`}},dataView:{title:`数据视图`,lang:[`数据视图`,`关闭`,`刷新`]},dataZoom:{title:{zoom:`区域缩放`,back:`区域缩放还原`}},magicType:{title:{line:`切换为折线图`,bar:`切换为柱状图`,stack:`切换为堆叠`,tiled:`切换为平铺`}},restore:{title:`还原`},saveAsImage:{title:`保存为图片`,lang:[`右键另存为图片`]}},series:{typeNames:{pie:`饼图`,bar:`柱状图`,line:`折线图`,scatter:`散点图`,effectScatter:`涟漪散点图`,radar:`雷达图`,tree:`树图`,treemap:`矩形树图`,boxplot:`箱型图`,candlestick:`K线图`,k:`K线图`,heatmap:`热力图`,map:`地图`,parallel:`平行坐标图`,lines:`线图`,graph:`关系图`,sankey:`桑基图`,funnel:`漏斗图`,gauge:`仪表盘图`,pictorialBar:`象形柱图`,themeRiver:`主题河流图`,sunburst:`旭日图`,custom:`自定义图表`,chart:`图表`}},aria:{general:{withTitle:`这是一个关于“{title}”的图表。`,withoutTitle:`这是一个图表,`},series:{single:{prefix:``,withName:`图表类型是{seriesType},表示{seriesName}。`,withoutName:`图表类型是{seriesType}。`},multiple:{prefix:`它由{seriesCount}个图表系列组成。`,withName:`第{seriesId}个系列是一个表示{seriesName}的{seriesType},`,withoutName:`第{seriesId}个系列是一个{seriesType},`,separator:{middle:`;`,end:`。`}}},data:{allData:`其数据是——`,partialData:`其中,前{displayCnt}项是——`,withName:`{name}的数据是{value}`,withoutName:`{value}`,separator:{middle:`,`,end:``}}}},BB=`ZH`,VB=`EN`,HB=VB,UB={},WB={},GB=Rk.domSupported?function(){return(document.documentElement.lang||navigator.language||navigator.browserLanguage||HB).toUpperCase().indexOf(BB)>-1?BB:HB}():HB;function KB(e,t){e=e.toUpperCase(),WB[e]=new LB(t),UB[e]=t}function pDe(e){if(gA(e)){var t=UB[e.toUpperCase()]||{};return e===BB||e===VB?Qk(t):$k(Qk(t),Qk(UB[HB]),!1)}else return $k(Qk(e),Qk(UB[HB]),!1)}function qB(e){return WB[e]}function mDe(){return WB[HB]}KB(VB,dDe),KB(BB,fDe);var JB=null;function hDe(e){JB||=e}function YB(){return JB}function XB(e,t){var n=YB(),r=t.breakOption,i=t.breakParsed;return!i&&n&&(i=n.parseAxisBreakOption(r,e)),i}function ZB(e){var t=e.brk;return t?t.breaks:[]}function QB(e){var t=e.brk;return t?t.hasBreaks():!1}var $B=1e3,eV=$B*60,tV=eV*60,nV=tV*24,rV=nV*365,gDe={year:/({yyyy}|{yy})/,month:/({MMMM}|{MMM}|{MM}|{M})/,day:/({dd}|{d})/,hour:/({HH}|{H}|{hh}|{h})/,minute:/({mm}|{m})/,second:/({ss}|{s})/,millisecond:/({SSS}|{S})/},iV={year:`{yyyy}`,month:`{MMM}`,day:`{d}`,hour:`{HH}:{mm}`,minute:`{HH}:{mm}`,second:`{HH}:{mm}:{ss}`,millisecond:`{HH}:{mm}:{ss} {SSS}`},_De=`{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}`,aV=`{yyyy}-{MM}-{dd}`,oV={year:`{yyyy}`,month:`{yyyy}-{MM}`,day:aV,hour:aV+` `+iV.hour,minute:aV+` `+iV.minute,second:aV+` `+iV.second,millisecond:_De},sV=[`year`,`month`,`day`,`hour`,`minute`,`second`,`millisecond`],vDe=[`year`,`half-year`,`quarter`,`month`,`week`,`half-week`,`day`,`half-day`,`quarter-day`,`hour`,`minute`,`second`,`millisecond`];function yDe(e){return!gA(e)&&!hA(e)?bDe(e):e}function bDe(e){e||={};var t={},n=!0;return Q(sV,function(t){n&&=e[t]==null}),Q(sV,function(r,i){var a=e[r];t[r]={};for(var o=null,s=i;s>=0;s--){var c=sV[s],l=yA(a)&&!mA(a)?a[c]:a,u=void 0;mA(l)?(u=l.slice(),o=u[0]||``):gA(l)?(o=l,u=[o]):(o==null?o=iV[r]:gDe[c].test(o)||(o=t[c][c][0]+` `+o),u=[o],n&&(u[1]=`{primary|`+o+`}`)),t[r][c]=u}}),t}function cV(e,t){return e+=``,`0000`.substr(0,t-e.length)+e}function lV(e){switch(e){case`half-year`:case`quarter`:return`month`;case`week`:case`half-week`:return`day`;case`half-day`:case`quarter-day`:return`hour`;default:return e}}function xDe(e){return e===lV(e)}function SDe(e){switch(e){case`year`:case`month`:return`day`;case`millisecond`:return`millisecond`;default:return`second`}}function uV(e,t,n,r){var i=MF(e),a=i[pV(n)](),o=i[mV(n)]()+1,s=Math.floor((o-1)/3)+1,c=i[hV(n)](),l=i[`get`+(n?`UTC`:``)+`Day`](),u=i[gV(n)](),d=(u-1)%12+1,f=i[_V(n)](),p=i[vV(n)](),m=i[yV(n)](),h=u>=12?`pm`:`am`,g=h.toUpperCase(),_=(r instanceof LB?r:qB(r||GB)||mDe()).getModel(`time`),v=_.get(`month`),y=_.get(`monthAbbr`),b=_.get(`dayOfWeek`),x=_.get(`dayOfWeekAbbr`);return(t||``).replace(/{a}/g,h+``).replace(/{A}/g,g+``).replace(/{yyyy}/g,a+``).replace(/{yy}/g,cV(a%100+``,2)).replace(/{Q}/g,s+``).replace(/{MMMM}/g,v[o-1]).replace(/{MMM}/g,y[o-1]).replace(/{MM}/g,cV(o,2)).replace(/{M}/g,o+``).replace(/{dd}/g,cV(c,2)).replace(/{d}/g,c+``).replace(/{eeee}/g,b[l]).replace(/{ee}/g,x[l]).replace(/{e}/g,l+``).replace(/{HH}/g,cV(u,2)).replace(/{H}/g,u+``).replace(/{hh}/g,cV(d+``,2)).replace(/{h}/g,d+``).replace(/{mm}/g,cV(f,2)).replace(/{m}/g,f+``).replace(/{ss}/g,cV(p,2)).replace(/{s}/g,p+``).replace(/{SSS}/g,cV(m,3)).replace(/{S}/g,m+``)}function CDe(e,t,n,r,i){var a=null;if(gA(n))a=n;else if(hA(n)){var o={time:e.time,level:e.time?e.time.level:0},s=YB();s&&s.makeAxisLabelFormatterParamBreak(o,e.break),a=n(e.value,t,o)}else{var c=e.time;if(c){var l=n[c.lowerTimeUnit][c.upperTimeUnit];a=l[Math.min(c.level,l.length-1)]||``}else{var u=dV(e.value,i);a=n[u][u][0]}}return uV(new Date(e.value),a,i,r)}function dV(e,t){var n=MF(e),r=n[mV(t)]()+1,i=n[hV(t)](),a=n[gV(t)](),o=n[_V(t)](),s=n[vV(t)](),c=n[yV(t)]()===0,l=c&&s===0,u=l&&o===0,d=u&&a===0,f=d&&i===1;return f&&r===1?`year`:f?`month`:d?`day`:u?`hour`:l?`minute`:c?`second`:`millisecond`}function fV(e,t,n){switch(t){case`year`:e[bV(n)](0);case`month`:e[xV(n)](1);case`day`:e[SV(n)](0);case`hour`:e[CV(n)](0);case`minute`:e[wV(n)](0);case`second`:e[TV(n)](0)}return e}function pV(e){return e?`getUTCFullYear`:`getFullYear`}function mV(e){return e?`getUTCMonth`:`getMonth`}function hV(e){return e?`getUTCDate`:`getDate`}function gV(e){return e?`getUTCHours`:`getHours`}function _V(e){return e?`getUTCMinutes`:`getMinutes`}function vV(e){return e?`getUTCSeconds`:`getSeconds`}function yV(e){return e?`getUTCMilliseconds`:`getMilliseconds`}function wDe(e){return e?`setUTCFullYear`:`setFullYear`}function bV(e){return e?`setUTCMonth`:`setMonth`}function xV(e){return e?`setUTCDate`:`setDate`}function SV(e){return e?`setUTCHours`:`setHours`}function CV(e){return e?`setUTCMinutes`:`setMinutes`}function wV(e){return e?`setUTCSeconds`:`setSeconds`}function TV(e){return e?`setUTCMilliseconds`:`setMilliseconds`}function TDe(e,t,n,r,i,a,o,s){return new kL({style:{text:e,font:t,align:n,verticalAlign:r,padding:i,rich:a,overflow:o?`truncate`:null,lineHeight:s}}).getBoundingRect()}function EV(e){if(!zF(e))return gA(e)?e:`-`;var t=(e+``).split(`.`);return t[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,`$1,`)+(t.length>1?`.`+t[1]:``)}function DV(e,t){return e=(e||``).toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()}),t&&e&&(e=e.charAt(0).toUpperCase()+e.slice(1)),e}var OV=jA;function kV(e,t,n){var r=`{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}`;function i(e){return e&&NA(e)?e:`-`}function a(e){return UF(e)}var o=t===`time`,s=e instanceof Date;if(o||s){var c=o?MF(e):e;if(!isNaN(+c))return uV(c,r,n);if(s)return`-`}if(t===`ordinal`)return _A(e)?i(e):vA(e)&&a(e)?e+``:`-`;var l=RF(e);return a(l)?EV(l):_A(e)?i(e):typeof e==`boolean`?e+``:`-`}var AV=[`a`,`b`,`c`,`d`,`e`,`f`,`g`],jV=function(e,t){return`{`+e+(t??``)+`}`};function MV(e,t,n){mA(t)||(t=[t]);var r=t.length;if(!r)return``;for(var i=t[0].$vars||[],a=0;a`:``:{renderMode:a,content:`{`+(n.markerId||`markerX`)+`|} `,style:i===`subItem`?{width:4,height:4,borderRadius:2,backgroundColor:r}:{width:10,height:10,borderRadius:5,backgroundColor:r}}:``}function EDe(e,t,n){(e===`week`||e===`month`||e===`quarter`||e===`half-year`||e===`year`)&&(e=`MM-dd +yyyy`);var r=MF(t),i=n?`getUTC`:`get`,a=r[i+`FullYear`](),o=r[i+`Month`]()+1,s=r[i+`Date`](),c=r[i+`Hours`](),l=r[i+`Minutes`](),u=r[i+`Seconds`](),d=r[i+`Milliseconds`]();return e=e.replace(`MM`,cV(o,2)).replace(`M`,o).replace(`yyyy`,a).replace(`yy`,cV(a%100+``,2)).replace(`dd`,cV(s,2)).replace(`d`,s).replace(`hh`,cV(c,2)).replace(`h`,c).replace(`mm`,cV(l,2)).replace(`m`,l).replace(`ss`,cV(u,2)).replace(`s`,u).replace(`SSS`,cV(d,3)),e}function DDe(e){return e&&e.charAt(0).toUpperCase()+e.substr(1)}function FV(e,t){return t||=`transparent`,gA(e)?e:yA(e)&&e.colorStops&&(e.colorStops[0]||{}).color||t}function IV(e,t){if(t===`_blank`||t===`blank`){var n=window.open();n.opener=null,n.location.href=e}else window.open(e,t)}var LV={},RV={},zV=function(){function e(){this._normalMasterList=[],this._nonSeriesBoxMasterList=[]}return e.prototype.create=function(e,t){this._nonSeriesBoxMasterList=n(LV,!0),this._normalMasterList=n(RV,!1);function n(n,r){var i=[];return Q(n,function(n,r){var a=n.create(e,t);i=i.concat(a||[])}),i}},e.prototype.update=function(e,t){Q(this._normalMasterList,function(n){n.update&&n.update(e,t)})},e.prototype.getCoordinateSystems=function(){return this._normalMasterList.concat(this._nonSeriesBoxMasterList)},e.register=function(e,t){if(e===`matrix`||e===`calendar`){LV[e]=t;return}RV[e]=t},e.get=function(e){return RV[e]||LV[e]},e}();function ODe(e){return!!LV[e]}function kDe(e){BV.set(e.fullType,{getCoord2:void 0}).getCoord2=e.getCoord2}var BV=zA();function VV(e){var t=e.getShallow(`coord`,!0),n=1;if(t==null){var r=BV.get(e.type);r&&r.getCoord2&&(n=2,t=r.getCoord2(e))}return{coord:t,from:n}}function HV(e,t){var n=e.getShallow(`coordinateSystem`),r=e.getShallow(`coordinateSystemUsage`,!0),i=0;if(n){var a=e.mainType===`series`;r??=a?`data`:`box`,r===`data`?(i=1,a||(i=0)):r===`box`&&(i=2,!a&&!ODe(n)&&(i=0))}return{coordSysType:n,kind:i}}function UV(e){var t=e.targetModel,n=e.coordSysType,r=e.coordSysProvider,i=e.isDefaultDataCoordSys;e.allowNotFound;var a=HV(t,!0),o=a.kind,s=a.coordSysType;if(i&&o!==1&&(o=1,s=n),o===0||s!==n)return 0;var c=r(n,t);return c?(o===1?t.coordinateSystem=c:t.boxCoordinateSystem=c,o):0}var WV=function(e,t){var n=t.getReferringComponents(e,rI).models[0];return n&&n.coordinateSystem},GV=Q,KV=[`left`,`right`,`top`,`bottom`,`width`,`height`],qV=[[`width`,`left`,`right`],[`height`,`top`,`bottom`]];function JV(e,t,n,r,i){var a=0,o=0;r??=1/0,i??=1/0;var s=0;t.eachChild(function(c,l){var u=c.getBoundingRect(),d=t.childAt(l+1),f=d&&d.getBoundingRect(),p,m;if(e===`horizontal`){var h=u.width+(f?-f.x+u.x:0);p=a+h,p>r||c.newline?(a=0,p=h,o+=s+n,s=u.height):s=Math.max(s,u.height)}else{var g=u.height+(f?-f.y+u.y:0);m=o+g,m>i||c.newline?(a+=s+n,o=0,m=g,s=u.width):s=Math.max(s,u.width)}c.newline||(c.x=a,c.y=o,c.markRedraw(),e===`horizontal`?a=p+n:o=m+n)})}var YV=JV;pA(JV,`vertical`),pA(JV,`horizontal`);function XV(e,t){return{left:e.getShallow(`left`,t),top:e.getShallow(`top`,t),right:e.getShallow(`right`,t),bottom:e.getShallow(`bottom`,t),width:e.getShallow(`width`,t),height:e.getShallow(`height`,t)}}function ADe(e,t){var n=tH(e,t,{enableLayoutOnlyByCenter:!0}),r=e.getBoxLayoutParams(),i,a;if(n.type===eH.point)a=n.refPoint,i=QV(r,{width:t.getWidth(),height:t.getHeight()});else{var o=e.get(`center`),s=mA(o)?o:[o,o];i=QV(r,n.refContainer),a=n.boxCoordFrom===2?n.refPoint:[yF(s[0],i.width)+i.x,yF(s[1],i.height)+i.y]}return{viewRect:i,center:a}}function ZV(e,t){var n=ADe(e,t),r=n.viewRect,i=n.center,a=e.get(`radius`);mA(a)||(a=[0,a]);var o=yF(r.width,t.getWidth()),s=yF(r.height,t.getHeight()),c=Math.min(o,s),l=yF(a[0],c/2),u=yF(a[1],c/2);return{cx:i[0],cy:i[1],r0:l,r:u,viewRect:r}}function QV(e,t,n){n=OV(n||0);var r=t.width,i=t.height,a=yF(e.left,r),o=yF(e.top,i),s=yF(e.right,r),c=yF(e.bottom,i),l=yF(e.width,r),u=yF(e.height,i),d=n[2]+n[0],f=n[1]+n[3],p=e.aspect;switch(isNaN(l)&&(l=r-s-f-a),isNaN(u)&&(u=i-c-d-o),p!=null&&(isNaN(l)&&isNaN(u)&&(p>r/i?l=r*.8:u=i*.8),isNaN(l)&&(l=p*u),isNaN(u)&&(u=l/p)),isNaN(a)&&(a=r-s-l-f),isNaN(o)&&(o=i-c-u-d),e.left||e.right){case`center`:a=r/2-l/2-n[3];break;case`right`:a=r-l-f;break}switch(e.top||e.bottom){case`middle`:case`center`:o=i/2-u/2-n[0];break;case`bottom`:o=i-u-d;break}a||=0,o||=0,isNaN(l)&&(l=r-f-a-(s||0)),isNaN(u)&&(u=i-d-o-(c||0));var m=new eM((t.x||0)+a+n[3],(t.y||0)+o+n[0],l,u);return m.margin=n,m}function $V(e,t,n){var r=e.getShallow(`preserveAspect`,!0);if(!r)return t;var i=t.width/t.height;if(Math.abs(Math.atan(n)-Math.atan(i))<1e-9)return t;var a=e.getShallow(`preserveAspectAlign`,!0),o=e.getShallow(`preserveAspectVerticalAlign`,!0),s={width:t.width,height:t.height},c=r===`cover`;return i>n&&!c||i=u)return a;for(var d=0;d=0;o--)a=$k(a,n[o],!0);t.defaultOption=a}return t.defaultOption},t.prototype.getReferringComponents=function(e,t){var n=e+`Index`,r=e+`Id`;return iI(this.ecModel,e,{index:this.get(n,!0),id:this.get(r,!0)},t)},t.prototype.getBoxLayoutParams=function(){return XV(this,!1)},t.prototype.getZLevelKey=function(){return``},t.prototype.setZLevel=function(e){this.option.zlevel=e},t.protoInitialize=function(){var e=t.prototype;e.type=`component`,e.id=``,e.name=``,e.mainType=``,e.subType=``,e.componentIndex=0}(),t}(LB);wwe(sH,LB),SI(sH),lDe(sH),uDe(sH,NDe);function NDe(e){var t=[];return Q(sH.getClassesByMainType(e),function(e){t=t.concat(e.dependencies||e.prototype.dependencies||[])}),t=sA(t,function(e){return bI(e).main}),e!==`dataset`&&rA(t,`dataset`)<=0&&t.unshift(`dataset`),t}var $={color:{},darkColor:{},size:{}},cH=$.color={theme:[`#5070dd`,`#b6d634`,`#505372`,`#ff994d`,`#0ca8df`,`#ffd10a`,`#fb628b`,`#785db0`,`#3fbe95`],neutral00:`#fff`,neutral05:`#f4f7fd`,neutral10:`#e8ebf0`,neutral15:`#dbdee4`,neutral20:`#cfd2d7`,neutral25:`#c3c5cb`,neutral30:`#b7b9be`,neutral35:`#aaacb2`,neutral40:`#9ea0a5`,neutral45:`#929399`,neutral50:`#86878c`,neutral55:`#797b7f`,neutral60:`#6d6e73`,neutral65:`#616266`,neutral70:`#54555a`,neutral75:`#48494d`,neutral80:`#3c3c41`,neutral85:`#303034`,neutral90:`#232328`,neutral95:`#17171b`,neutral99:`#000`,accent05:`#eff1f9`,accent10:`#e0e4f2`,accent15:`#d0d6ec`,accent20:`#c0c9e6`,accent25:`#b1bbdf`,accent30:`#a1aed9`,accent35:`#91a0d3`,accent40:`#8292cc`,accent45:`#7285c6`,accent50:`#6578ba`,accent55:`#5c6da9`,accent60:`#536298`,accent65:`#4a5787`,accent70:`#404c76`,accent75:`#374165`,accent80:`#2e3654`,accent85:`#252b43`,accent90:`#1b2032`,accent95:`#121521`,transparent:`rgba(0,0,0,0)`,highlight:`rgba(255,231,130,0.8)`};for(var lH in Z(cH,{primary:cH.neutral80,secondary:cH.neutral70,tertiary:cH.neutral60,quaternary:cH.neutral50,disabled:cH.neutral20,border:cH.neutral30,borderTint:cH.neutral20,borderShade:cH.neutral40,background:cH.neutral05,backgroundTint:`rgba(234,237,245,0.5)`,backgroundTransparent:`rgba(255,255,255,0)`,backgroundShade:cH.neutral10,shadow:`rgba(0,0,0,0.2)`,shadowTint:`rgba(129,130,136,0.2)`,axisLine:cH.neutral70,axisLineTint:cH.neutral40,axisTick:cH.neutral70,axisTickMinor:cH.neutral60,axisLabel:cH.neutral70,axisSplitLine:cH.neutral15,axisMinorSplitLine:cH.neutral05}),cH)if(cH.hasOwnProperty(lH)){var uH=cH[lH];lH===`theme`?$.darkColor.theme=cH.theme.slice():lH===`highlight`?$.darkColor.highlight=`rgba(255,231,130,0.4)`:lH.indexOf(`accent`)===0?$.darkColor[lH]=hN(uH,null,function(e){return e*.5},function(e){return Math.min(1,1.3-e)}):$.darkColor[lH]=hN(uH,null,function(e){return e*.9},function(e){return 1-e**1.5})}$.size={xxs:2,xs:5,s:10,m:15,l:20,xl:30,xxl:40,xxxl:50};var dH=``;typeof navigator<`u`&&(dH=navigator.platform||``);var fH=`rgba(0, 0, 0, 0.2)`,pH=$.color.theme[0],PDe=hN(pH,null,null,.9),mH={darkMode:`auto`,colorBy:`series`,color:$.color.theme,gradientColor:[PDe,pH],aria:{decal:{decals:[{color:fH,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:fH,symbol:`circle`,dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:fH,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:fH,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:fH,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:fH,symbol:`triangle`,dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:dH.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},hH={Must:1,Might:2,Not:3},gH=eI();function FDe(e){gH(e).datasetMap=zA()}function _H(e,t,n){var r={},i=yH(t);if(!i||!e)return r;var a=[],o=[],s=t.ecModel,c=gH(s).datasetMap,l=i.uid+`_`+n.seriesLayoutBy,u,d;e=e.slice(),Q(e,function(t,n){var i=yA(t)?t:e[n]={name:t};i.type===`ordinal`&&u==null&&(u=n,d=m(i)),r[i.name]=[]});var f=c.get(l)||c.set(l,{categoryWayDim:d,valueWayDim:0});Q(e,function(e,t){var n=e.name,i=m(e);if(u==null){var s=f.valueWayDim;p(r[n],s,i),p(o,s,i),f.valueWayDim+=i}else if(u===t)p(r[n],0,i),p(a,0,i);else{var s=f.categoryWayDim;p(r[n],s,i),p(o,s,i),f.categoryWayDim+=i}});function p(e,t,n){for(var r=0;rt)return e[r];return e[n-1]}function EH(e,t,n,r,i,a,o){a||=e;var s=t(a),c=s.paletteIdx||0,l=s.paletteNameMap=s.paletteNameMap||{};if(l.hasOwnProperty(i))return l[i];var u=o==null||!r?n:BDe(r,o);if(u||=n,!(!u||!u.length)){var d=u[c];return i&&(l[i]=d),s.paletteIdx=(c+1)%u.length,d}}function VDe(e,t){t(e).paletteIdx=0,t(e).paletteNameMap={}}var DH,OH,kH,AH=`\0_ec_inner`,HDe=1,jH=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.init=function(e,t,n,r,i,a){r||={},this.option=null,this._theme=new LB(r),this._locale=new LB(i),this._optionManager=a},t.prototype.setOption=function(e,t,n){var r=PH(t);this._optionManager.setOption(e,n,r),this._resetOption(null,r)},t.prototype.resetOption=function(e,t){return this._resetOption(e,PH(t))},t.prototype._resetOption=function(e,t){var n=!1,r=this._optionManager;if(!e||e===`recreate`){var i=r.mountOption(e===`recreate`);!this.option||e===`recreate`?kH(this,i):(this.restoreData(),this._mergeOption(i,t)),n=!0}if((e===`timeline`||e===`media`)&&this.restoreData(),!e||e===`recreate`||e===`timeline`){var a=r.getTimelineOption(this);a&&(n=!0,this._mergeOption(a,t))}if(!e||e===`recreate`||e===`media`){var o=r.getMediaOption(this);o.length&&Q(o,function(e){n=!0,this._mergeOption(e,t)},this)}return n},t.prototype.mergeOption=function(e){this._mergeOption(e,null)},t.prototype._mergeOption=function(e,t){var n=this.option,r=this._componentsMap,i=this._componentsCount,a=[],o=zA(),s=t&&t.replaceMergeMainTypeMap;FDe(this),Q(e,function(e,t){e!=null&&(sH.hasClass(t)?t&&(a.push(t),o.set(t,!0)):n[t]=n[t]==null?Qk(e):$k(n[t],e,!0))}),s&&s.each(function(e,t){sH.hasClass(t)&&!o.get(t)&&(a.push(t),o.set(t,!0))}),sH.topologicalTravel(a,sH.getAllClassMainTypes(),c,this);function c(t){var a=RDe(this,t,KF(e[t])),o=r.get(t),c=qCe(o,a,o?s&&s.get(t)?`replaceMerge`:`normalMerge`:`replaceAll`);nwe(c,t,sH),n[t]=null,r.set(t,null),i.set(t,0);var l=[],u=[],d=0,f;Q(c,function(e,n){var r=e.existing,i=e.newOption;if(!i)r&&(r.mergeOption({},this),r.optionUpdated({},!1));else{var a=t===`series`,o=sH.getClass(t,e.keyInfo.subType,!a);if(!o)return;if(t===`tooltip`){if(f)return;f=!0}if(r&&r.constructor===o)r.name=e.keyInfo.name,r.mergeOption(i,this),r.optionUpdated(i,!1);else{var s=Z({componentIndex:n},e.keyInfo);r=new o(i,this,this,s),Z(r,s),e.brandNew&&(r.__requireNewView=!0),r.init(i,this,this),r.optionUpdated(null,!0)}}r?(l.push(r.option),u.push(r),d++):(l.push(void 0),u.push(void 0))},this),n[t]=l,r.set(t,u),i.set(t,d),t===`series`&&DH(this)}this._seriesIndices||DH(this)},t.prototype.getOption=function(){var e=Qk(this.option);return Q(e,function(t,n){if(sH.hasClass(n)){for(var r=KF(t),i=r.length,a=!1,o=i-1;o>=0;o--)r[o]&&!QF(r[o])?a=!0:(r[o]=null,!a&&i--);r.length=i,e[n]=r}}),delete e[AH],e},t.prototype.setTheme=function(e){this._theme=new LB(e),this._resetOption(`recreate`,null)},t.prototype.getTheme=function(){return this._theme},t.prototype.getLocaleModel=function(){return this._locale},t.prototype.setUpdatePayload=function(e){this._payload=e},t.prototype.getUpdatePayload=function(){return this._payload},t.prototype.getComponent=function(e,t){var n=this._componentsMap.get(e);if(n){var r=n[t||0];if(r)return r;if(t==null){for(var i=0;i=t:n===`max`?e<=t:e===t}function XDe(e,t){return e.join(`,`)===t.join(`,`)}var FH=Q,IH=yA,LH=[`areaStyle`,`lineStyle`,`nodeStyle`,`linkStyle`,`chordStyle`,`label`,`labelLine`];function RH(e){var t=e&&e.itemStyle;if(t)for(var n=0,r=LH.length;n0?e[n-1].seriesModel:null)}),oOe(e))})}function oOe(e){Q(e,function(t,n){var r=[],i=[NaN,NaN],a=[t.stackResultDimension,t.stackedOverDimension],o=t.data,s=t.isStackedByIndex,c=t.seriesModel.get(`stackStrategy`)||`samesign`;o.modify(a,function(a,l,u){var d=o.get(t.stackedDimension,u);if(isNaN(d))return i;var f,p;s?p=o.getRawIndex(u):f=o.get(t.stackedByDimension,u);for(var m=NaN,h=n-1;h>=0;h--){var g=e[h];if(s||(p=g.data.rawIndexOf(g.stackedByDimension,f)),p>=0){var _=g.data.getByRawIndex(g.stackResultDimension,p);if(c===`all`||c===`positive`&&_>0||c===`negative`&&_<0||c===`samesign`&&d>=0&&_>0||c===`samesign`&&d<=0&&_<0){d=OF(d,_),m=_;break}}}return r[0]=d,r[1]=m,r})})}var QH=function(){function e(e){this.data=e.data||(e.sourceFormat===`keyedColumns`?{}:[]),this.sourceFormat=e.sourceFormat||`unknown`,this.seriesLayoutBy=e.seriesLayoutBy||`column`,this.startIndex=e.startIndex||0,this.dimensionsDetectedCount=e.dimensionsDetectedCount,this.metaRawOption=e.metaRawOption;var t=this.dimensionsDefine=e.dimensionsDefine;if(t)for(var n=0;nl&&(l=p)}s[0]=c,s[1]=l}},r=function(){return this._data?this._data.length/this._dimSize:0};uU=(e={},e[FL+`_`+zL]={pure:!0,appendData:i},e[FL+`_row`]={pure:!0,appendData:function(){throw Error(`Do not support appendData when set seriesLayoutBy: "row".`)}},e[IL]={pure:!0,appendData:i},e[LL]={pure:!0,appendData:function(e){var t=this._data;Q(e,function(e,n){for(var r=t[n]||(t[n]=[]),i=0;i<(e||[]).length;i++)r.push(e[i])})}},e[PL]={appendData:i},e[RL]={persistent:!1,pure:!0,appendData:function(e){this._data=e},clean:function(){this._offset+=this.count(),this._data=null}},e);function i(e){for(var t=0;t=0&&(s=a.interpolatedValue[c])}return s==null?``:s+``})},e.prototype.getRawValue=function(e,t){return xU(this.getData(t),e)},e.prototype.formatTooltip=function(e,t,n){},e}();function CU(e){var t,n;return yA(e)?e.type&&(n=e):t=e,{text:t,frag:n}}function wU(e){return new mOe(e)}var mOe=function(){function e(e){e||={},this._reset=e.reset,this._plan=e.plan,this._count=e.count,this._onDirty=e.onDirty,this._dirty=!0}return e.prototype.perform=function(e){var t=this._upstream,n=e&&e.skip;if(this._dirty&&t){var r=this.context;r.data=r.outputData=t.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this);var i;this._plan&&!n&&(i=this._plan(this.context));var a=l(this._modBy),o=this._modDataCount||0,s=l(e&&e.modBy),c=e&&e.modDataCount||0;(a!==s||o!==c)&&(i=`reset`);function l(e){return!(e>=1)&&(e=1),e}var u;(this._dirty||i===`reset`)&&(this._dirty=!1,u=this._doReset(n)),this._modBy=s,this._modDataCount=c;var d=e&&e.step;if(t?this._dueEnd=t._outputDueEnd:this._dueEnd=this._count?this._count(this.context):1/0,this._progress){var f=this._dueIndex,p=Math.min(d==null?1/0:this._dueIndex+d,this._dueEnd);if(!n&&(u||f1&&r>0?s:o}};return a;function o(){return t=e?null:at},gte:function(e,t){return e>=t}},gOe=function(){function e(e,t){vA(t)||GF(``),this._opFn=OU[e],this._rvalFloat=RF(t)}return e.prototype.evaluate=function(e){return vA(e)?this._opFn(e,this._rvalFloat):this._opFn(RF(e),this._rvalFloat)},e}(),kU=function(){function e(e,t){var n=e===`desc`;this._resultLT=n?1:-1,t??=n?`min`:`max`,this._incomparable=t===`min`?-1/0:1/0}return e.prototype.evaluate=function(e,t){var n=vA(e)?e:RF(e),r=vA(t)?t:RF(t),i=isNaN(n),a=isNaN(r);if(i&&(n=this._incomparable),a&&(r=this._incomparable),i&&a){var o=gA(e),s=gA(t);o&&(n=s?e:0),s&&(r=o?t:0)}return nr?-this._resultLT:0},e}(),_Oe=function(){function e(e,t){this._rval=t,this._isEQ=e,this._rvalTypeof=typeof t,this._rvalFloat=RF(t)}return e.prototype.evaluate=function(e){var t=e===this._rval;if(!t){var n=typeof e;n!==this._rvalTypeof&&(n===`number`||this._rvalTypeof===`number`)&&(t=RF(e)===this._rvalFloat)}return this._isEQ?t:!t},e}();function vOe(e,t){return e===`eq`||e===`ne`?new _Oe(e===`eq`,t):UA(OU,e)?new gOe(e,t):null}function AU(e){var t=``,n=-1/0,r=-1/0,i=1/0,a=1/0;return e&&(e.g!=null&&(t+=`G`+e.g,n=e.g),e.ge!=null&&(t+=`GE`+e.ge,r=e.ge),e.l!=null&&(t+=`L`+e.l,i=e.l),e.le!=null&&(t+=`LE`+e.le,a=e.le)),{key:t,g:n,ge:r,l:i,le:a}}function jU(e,t){return t>e.g&&t>=e.ge&&t`u`?Array:Uint32Array,kOe=typeof Uint16Array>`u`?Array:Uint16Array,PU=typeof Int32Array>`u`?Array:Int32Array,FU=typeof Float64Array>`u`?Array:Float64Array,IU={float:FU,int:PU,ordinal:Array,number:Array,time:FU},LU;function RU(e){return e>65535?OOe:kOe}function AOe(e){var t=e.constructor;return t===Array?e.slice():new t(e)}function zU(e,t,n,r,i){var a=IU[n||`float`];if(i){var o=e[t],s=o&&o.length;if(s!==r){for(var c=new a(r),l=0;lh[1]&&(h[1]=m)}return this._rawCount=this._count=s,{start:o,end:s}},e.prototype._initDataFromProvider=function(e,t,n){for(var r=this._provider,i=this._chunks,a=this._dimensions,o=a.length,s=this._rawExtent,c=sA(a,function(e){return e.property}),l=0;lg[1]&&(g[1]=h)}}!r.persistent&&r.clean&&r.clean(),this._rawCount=this._count=t,this._extent=[]},e.prototype.count=function(){return this._count},e.prototype.get=function(e,t){if(!(t>=0&&t=0&&t=this._rawCount||e<0)return-1;if(!this._indices)return e;var t=this._indices,n=t[e];if(n!=null&&ne)i=a-1;else return a}return-1},e.prototype.getIndices=function(){var e,t=this._indices;if(t){var n=t.constructor,r=this._count;if(n===Array){e=new n(r);for(var i=0;i=l&&g<=u||isNaN(g))&&(o[s++]=p),p++}f=!0}else if(i===2){for(var m=d[r[0]],_=d[r[1]],v=e[r[1]][0],y=e[r[1]][1],h=0;h=l&&g<=u||isNaN(g))&&(b>=v&&b<=y||isNaN(b))&&(o[s++]=p),p++}f=!0}}if(!f)if(i===1)for(var h=0;h=l&&g<=u||isNaN(g))&&(o[s++]=x)}else for(var h=0;he[w][1])&&(S=!1)}S&&(o[s++]=t.getRawIndex(h))}return sg[1]&&(g[1]=h)}}}},e.prototype.lttbDownSample=function(e,t){var n=this.clone([e],!0),r=n._chunks[e],i=this.count(),a=0,o=Math.floor(1/t),s=this.getRawIndex(0),c,l,u,d=new(RU(this._rawCount))(Math.min((Math.ceil(i/o)+2)*2,i));d[a++]=s;for(var f=1;fc&&(c=l,u=v)}T>0&&To&&(m=o-l);for(var h=0;hp&&(p=g,f=l+h)}var _=this.getRawIndex(u),v=this.getRawIndex(f);ul-p&&(s=l-p,o.length=s);for(var m=0;mu[1]&&(u[1]=h),d[f++]=g}return i._count=f,i._indices=d,i._updateGetRawIdx(),i},e.prototype.each=function(e,t){if(this._count)for(var n=e.length,r=this._chunks,i=0,a=this.count();id&&(d=p))}return o[c]=[u,d]},e.prototype.getRawDataItem=function(e){var t=this.getRawIndex(e);if(this._provider.persistent)return this._provider.getItem(t);for(var n=[],r=this._chunks,i=0;i=0?this._indices[e]:-1},e.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},e.internalField=function(){function e(e,t,n,r){return EU(e[r],this._dimensions[r])}LU={arrayRows:e,objectRows:function(e,t,n,r){return EU(e[t],this._dimensions[r])},keyedColumns:e,original:function(e,t,n,r){var i=e&&(e.value==null?e:e.value);return EU(i instanceof Array?i[r]:i,this._dimensions[r])},typedArray:function(e,t,n,r){return e[r]}}}(),e}(),VU=function(){function e(e){this._sourceList=[],this._storeList=[],this._upstreamSignList=[],this._versionSignBase=0,this._dirty=!0,this._sourceHost=e}return e.prototype.dirty=function(){this._setLocalSource([],[]),this._storeList=[],this._dirty=!0},e.prototype._setLocalSource=function(e,t){this._sourceList=e,this._upstreamSignList=t,this._versionSignBase++,this._versionSignBase>9e10&&(this._versionSignBase=0)},e.prototype._getVersionSign=function(){return this._sourceHost.uid+`_`+this._versionSignBase},e.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},e.prototype._createSource=function(){this._setLocalSource([],[]);var e=this._sourceHost,t=this._getUpstreamSourceManagers(),n=!!t.length,r,i;if(UU(e)){var a=e,o=void 0,s=void 0,c=void 0;if(n){var l=t[0];l.prepareSource(),c=l.getSource(),o=c.data,s=c.sourceFormat,i=[l._getVersionSign()]}else o=a.get(`data`,!0),s=xA(o)?RL:PL,i=[];var u=this._getSourceMetaRawOption()||{},d=c&&c.metaRawOption||{},f=OA(u.seriesLayoutBy,d.seriesLayoutBy)||null,p=OA(u.sourceHeader,d.sourceHeader),m=OA(u.dimensions,d.dimensions);r=f!==d.seriesLayoutBy||!!p!=!!d.sourceHeader||m?[eU(o,{seriesLayoutBy:f,sourceHeader:p,dimensions:m},s)]:[]}else{var h=e;if(n){var g=this._applyTransform(t);r=g.sourceList,i=g.upstreamSignList}else r=[eU(h.get(`source`,!0),this._getSourceMetaRawOption(),null)],i=[]}this._setLocalSource(r,i)},e.prototype._applyTransform=function(e){var t=this._sourceHost,n=t.get(`transform`,!0),r=t.get(`fromTransformResult`,!0);r!=null&&e.length!==1&&WU(``);var i,a=[],o=[];return Q(e,function(e){e.prepareSource();var t=e.getSource(r||0);r!=null&&!t&&WU(``),a.push(t),o.push(e._getVersionSign())}),n?i=EOe(n,a,{datasetIndex:t.componentIndex}):r!=null&&(i=[sOe(a[0])]),{sourceList:i,upstreamSignList:o}},e.prototype._isDirty=function(){if(this._dirty)return!0;for(var e=this._getUpstreamSourceManagers(),t=0;t1||n>0&&!e.noHeader;return Q(e.blocks,function(e){var n=QU(e);n>=t&&(t=n+ +(r&&(!n||XU(e)&&!e.noHeader)))}),t}return 0}function MOe(e,t,n,r){var i=t.noHeader,a=POe(QU(t)),o=[],s=t.blocks||[];MA(!s||mA(s)),s||=[];var c=e.orderMode;if(t.sortBlocks&&c){s=s.slice();var l={valueAsc:`asc`,valueDesc:`desc`};if(UA(l,c)){var u=new jU(l[c],null);s.sort(function(e,t){return u.evaluate(e.sortParam,t.sortParam)})}else c===`seriesDesc`&&s.reverse()}Q(s,function(n,i){var s=t.valueFormatter,c=ZU(n)(s?Z(Z({},e),{valueFormatter:s}):e,n,i>0?a.html:0,r);c!=null&&o.push(c)});var d=e.renderMode===`richText`?o.join(a.richText):eW(r,o.join(``),i?n:a.html);if(i)return d;var f=jV(t.header,`ordinal`,e.useUTC),p=JU(r,e.renderMode).nameStyle,m=qU(r);return e.renderMode===`richText`?tW(e,f,p)+a.richText+d:eW(r,`
`+xj(f)+`
`+d,n)}function NOe(e,t,n,r){var i=e.renderMode,a=t.noName,o=t.noValue,s=!t.markerType,c=t.name,l=e.useUTC,u=t.valueFormatter||e.valueFormatter||function(e){return e=mA(e)?e:[e],sA(e,function(e,t){return jV(e,mA(p)?p[t]:p,l)})};if(!(a&&o)){var d=s?``:e.markupStyleCreator.makeTooltipMarker(t.markerType,t.markerColor||$.color.secondary,i),f=a?``:jV(c,`ordinal`,l),p=t.valueType,m=o?[]:u(t.value,t.rawDataIndex),h=!s||!a,g=!s&&a,_=JU(r,i),v=_.nameStyle,y=_.valueStyle;return i===`richText`?(s?``:d)+(a?``:tW(e,f,v))+(o?``:LOe(e,m,h,g,y)):eW(r,(s?``:d)+(a?``:FOe(f,!s,v))+(o?``:IOe(m,h,g,y)),n)}}function $U(e,t,n,r,i,a){if(e)return ZU(e)({useUTC:i,renderMode:n,orderMode:r,markupStyleCreator:t,valueFormatter:e.valueFormatter},e,0,a)}function POe(e){return{html:AOe[e],richText:jOe[e]}}function eW(e,t,n){var r=`
`,i=`margin: `+n+`px 0 0`,a=qU(e);return`
`+t+r+`
`}function FOe(e,t,n){var r=t?`margin-left:2px`:``;return``+xj(e)+``}function IOe(e,t,n,r){var i=t?`float:right;margin-left:`+(n?`10px`:`20px`):``;return e=mA(e)?e:[e],``+sA(e,function(e){return xj(e)}).join(`  `)+``}function tW(e,t,n){return e.markupStyleCreator.wrapRichTextStyle(t,n)}function LOe(e,t,n,r,i){var a=[i],o=r?10:20;return n&&a.push({padding:[0,0,0,o],align:`right`}),e.markupStyleCreator.wrapRichTextStyle(mA(t)?t.join(` `):t,a)}function nW(e,t){var n=e.getData().getItemVisual(t,`style`)[e.visualDrawType];return LV(n)}function rW(e,t){return e.get(`padding`)??(t===`richText`?[8,10]:10)}var iW=function(){function e(){this.richTextStyles={},this._nextStyleNameId=VF()}return e.prototype._generateStyleName=function(){return`__EC_aUTo_`+this._nextStyleNameId++},e.prototype.makeTooltipMarker=function(e,t,n){var r=n===`richText`?this._generateStyleName():null,i=IV({color:t,type:e,renderMode:n,markerId:r});return gA(i)?i:(this.richTextStyles[r]=i.style,i.content)},e.prototype.wrapRichTextStyle=function(e,t){var n={};mA(t)?Q(t,function(e){return Z(n,e)}):Z(n,t);var r=this._generateStyleName();return this.richTextStyles[r]=n,`{`+r+`|`+e+`}`},e}();function aW(e){var t=e.series,n=e.dataIndex,r=e.multipleSeries,i=t.getData(),a=i.mapDimensionsAll(`defaultedTooltip`),o=a.length,s=t.getRawValue(n),c=mA(s),l=nW(t,n),u,d,f,p;if(o>1||c&&!o){var m=ROe(s,t,n,a,l);u=m.inlineValues,d=m.inlineValueTypes,f=m.blocks,p=m.inlineValues[0]}else if(o){var h=i.getDimensionInfo(a[0]);p=u=CU(i,n,a[0]),d=h.type}else p=u=c?s[0]:s;var g=QF(t),_=g&&t.name||``,v=i.getName(n),y=r?_:v;return YU(`section`,{header:_,noHeader:r||!g,sortParam:p,blocks:[YU(`nameValue`,{markerType:`item`,markerColor:l,name:y,noName:!NA(y),value:u,valueType:d,rawDataIndex:i.getRawIndex(n)})].concat(f||[])})}function ROe(e,t,n,r,i){var a=t.getData(),o=cA(e,function(e,t,n){var r=a.getDimensionInfo(n);return e||=r&&r.tooltip!==!1&&r.displayName!=null},!1),s=[],c=[],l=[];r.length?Q(r,function(e){u(CU(a,n,e),e)}):Q(e,u);function u(e,t){var n=a.getDimensionInfo(t);!n||n.otherDims.tooltip===!1||(o?l.push(YU(`nameValue`,{markerType:`subItem`,markerColor:i,name:n.displayName,value:e,valueType:n.type})):(s.push(e),c.push(n.type)))}return{inlineValues:s,inlineValueTypes:c,blocks:l}}var oW=tI();function sW(e,t){return e.getName(t)||e.getId(t)}var cW=`__universalTransitionEnabled`,lW=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t._selectedDataIndicesMap={},t}return t.prototype.init=function(e,t,n){this.seriesIndex=this.componentIndex,this.dataTask=EU({count:BOe,reset:VOe}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(e,n),(oW(this).sourceManager=new UU(this)).prepareSource();var r=this.getInitialData(e,n);dW(r,this),this.dataTask.context.data=r,oW(this).dataBeforeProcessed=r,uW(this),this._initSelectedMapFromData(r)},t.prototype.mergeDefaultAndTheme=function(e,t){var n=aH(this),r=n?sH(e):{},i=this.subType;lH.hasClass(i)&&(i+=`Series`),$k(e,t.getTheme().get(this.subType)),$k(e,this.getDefaultOption()),JF(e,`label`,[`show`]),this.fillDataTextStyle(e.data),n&&oH(e,r,n)},t.prototype.mergeOption=function(e,t){e=$k(this.option,e,!0),this.fillDataTextStyle(e.data);var n=aH(this);n&&oH(this.option,e,n);var r=oW(this).sourceManager;r.dirty(),r.prepareSource();var i=this.getInitialData(e,t);dW(i,this),this.dataTask.dirty(),this.dataTask.context.data=i,oW(this).dataBeforeProcessed=i,uW(this),this._initSelectedMapFromData(i)},t.prototype.fillDataTextStyle=function(e){if(e&&!xA(e))for(var t=[`show`],n=0;n=0&&u<0)&&(l=v,u=_,d=0),_===u&&(c[d++]=m))}return c.length=d,c},t.prototype.formatTooltip=function(e,t,n){return aW({series:this,dataIndex:e,multipleSeries:t})},t.prototype.isAnimationEnabled=function(){var e=this.ecModel;if(Rk.node&&!(e&&e.ssr))return!1;var t=this.getShallow(`animation`);return t&&this.getData().count()>this.getShallow(`animationThreshold`)&&(t=!1),!!t},t.prototype.restoreData=function(){this.dataTask.dirty()},t.prototype.getColorFromPalette=function(e,t,n){var r=this.ecModel,i=EH.prototype.getColorFromPalette.call(this,e,t,n);return i||=r.getColorFromPalette(e,t,n),i},t.prototype.coordDimToDataDim=function(e){return this.getRawData().mapDimensionsAll(e)},t.prototype.getProgressive=function(){return this.get(`progressive`)},t.prototype.getProgressiveThreshold=function(){return this.get(`progressiveThreshold`)},t.prototype.select=function(e,t){this._innerSelect(this.getData(t),e)},t.prototype.unselect=function(e,t){var n=this.option.selectedMap;if(n){var r=this.option.selectedMode,i=this.getData(t);if(r===`series`||n===`all`){this.option.selectedMap={},this._selectedDataIndicesMap={};return}for(var a=0;a=0&&n.push(i)}return n},t.prototype.isSelected=function(e,t){var n=this.option.selectedMap;if(!n)return!1;var r=this.getData(t);return(n===`all`||n[sW(r,e)])&&!r.getItemModel(e).get([`select`,`disabled`])},t.prototype.isUniversalTransitionEnabled=function(){if(this.__universalTransitionEnabled)return!0;var e=this.option.universalTransition;return e?e===!0?!0:e&&e.enabled:!1},t.prototype._innerSelect=function(e,t){var n,r,i=this.option,a=i.selectedMode,o=t.length;if(!(!a||!o)){if(a===`series`)i.selectedMap=`all`;else if(a===`multiple`){yA(i.selectedMap)||(i.selectedMap={});for(var s=i.selectedMap,c=0;c0&&this._innerSelect(e,t)}},t.registerClass=function(e){return lH.registerClass(e)},t.protoInitialize=function(){var e=t.prototype;e.type=`series.__base__`,e.seriesIndex=0,e.ignoreStyleOnData=!1,e.hasSymbolVisual=!1,e.defaultSymbol=`circle`,e.visualStyleAccessPath=`itemStyle`,e.visualDrawType=`fill`}(),t}(lH);aA(lW,wU),aA(lW,EH),Cwe(lW,lH);function uW(e){var t=e.name;QF(e)||(e.name=zOe(e)||t)}function zOe(e){var t=e.getRawData(),n=t.mapDimensionsAll(`seriesName`),r=[];return Q(n,function(e){var n=t.getDimensionInfo(e);n.displayName&&r.push(n.displayName)}),r.join(` `)}function BOe(e){return e.model.getRawData().count()}function VOe(e){var t=e.model;return t.setData(t.getRawData().cloneShallow()),HOe}function HOe(e,t){t.outputData&&e.end>t.outputData.count()&&t.model.getRawData().cloneShallow(t.outputData)}function dW(e,t){Q(BA(e.CHANGABLE_METHODS,e.DOWNSAMPLE_METHODS),function(n){e.wrapMethod(n,pA(UOe,t))})}function UOe(e,t){var n=fW(e);return n&&n.setOutputEnd((t||this).count()),t}function fW(e){var t=(e.ecModel||{}).scheduler,n=t&&t.getPipeline(e.uid);if(n){var r=n.currentTask;if(r){var i=r.agentStubMap;i&&(r=i.get(e.uid))}return r}}var pW=function(){function e(){this.group=new $P,this.uid=BB(`viewComponent`)}return e.prototype.init=function(e,t){},e.prototype.render=function(e,t,n,r){},e.prototype.dispose=function(e,t){},e.prototype.updateView=function(e,t,n,r){},e.prototype.updateLayout=function(e,t,n,r){},e.prototype.updateVisual=function(e,t,n,r){},e.prototype.toggleBlurSeries=function(e,t,n){},e.prototype.eachRendered=function(e){var t=this.group;t&&t.traverse(e)},e}();SI(pW),CI(pW);function mW(){var e=tI();return function(t){var n=e(t),r=t.pipelineContext,i=!!n.large,a=!!n.progressiveRender,o=n.large=!!(r&&r.large),s=n.progressiveRender=!!(r&&r.progressiveRender);return(i!==o||a!==s)&&`reset`}}var hW=tI(),WOe=mW(),gW=function(){function e(){this.group=new $P,this.uid=BB(`viewChart`),this.renderTask=EU({plan:GOe,reset:KOe}),this.renderTask.context={view:this}}return e.prototype.init=function(e,t){},e.prototype.render=function(e,t,n,r){},e.prototype.highlight=function(e,t,n,r){var i=e.getData(r&&r.dataType);i&&vW(i,r,`emphasis`)},e.prototype.downplay=function(e,t,n,r){var i=e.getData(r&&r.dataType);i&&vW(i,r,`normal`)},e.prototype.remove=function(e,t){this.group.removeAll()},e.prototype.dispose=function(e,t){},e.prototype.updateView=function(e,t,n,r){this.render(e,t,n,r)},e.prototype.updateVisual=function(e,t,n,r){this.render(e,t,n,r)},e.prototype.eachRendered=function(e){oB(this.group,e)},e.markUpdateMethod=function(e,t){hW(e).updateMethod=t},e.protoInitialize=function(){var t=e.prototype;t.type=`chart`}(),e}();function _W(e,t,n){e&&vR(e)&&(t===`emphasis`?eR:tR)(e,n)}function vW(e,t,n){var r=eI(e,t),i=t&&t.highlightKey!=null?xEe(t.highlightKey):null;r==null?e.eachItemGraphicEl(function(e){_W(e,n,i)}):Q(qF(r),function(t){_W(e.getItemGraphicEl(t),n,i)})}SI(gW,[`dispose`]),CI(gW);function GOe(e){return WOe(e.model)}function KOe(e){var t=e.model,n=e.ecModel,r=e.api,i=e.payload,a=t.pipelineContext.progressiveRender,o=e.view,s=i&&hW(i).updateMethod,c=a?`incrementalPrepareRender`:s&&o[s]?s:`render`;return c!==`render`&&o[c](t,n,r,i),qOe[c]}var qOe={incrementalPrepareRender:{progress:function(e,t){t.view.incrementalRender(e,t.model,t.ecModel,t.api,t.payload)}},render:{forceFirstProgress:!0,progress:function(e,t){t.view.render(t.model,t.ecModel,t.api,t.payload)}}},yW=`\0__throttleOriginMethod`,bW=`\0__throttleRate`,xW=`\0__throttleType`;function SW(e,t,n){var r,i=0,a=0,o=null,s,c,l,u;t||=0;function d(){a=new Date().getTime(),o=null,e.apply(c,l||[])}var f=function(){var e=[...arguments];r=new Date().getTime(),c=this,l=e;var f=u||t,p=u||n;u=null,s=r-(p?i:a)-f,clearTimeout(o),p?o=setTimeout(d,f):s>=0?d():o=setTimeout(d,-s),i=r};return f.clear=function(){o&&=(clearTimeout(o),null)},f.debounceNextCall=function(e){u=e},f}function CW(e,t,n,r){var i=e[t];if(i){var a=i[yW]||i,o=i[xW];if(i[bW]!==n||o!==r){if(n==null||!r)return e[t]=a;i=e[t]=SW(a,n,r===`debounce`),i[yW]=a,i[xW]=r,i[bW]=n}return i}}function wW(e,t){var n=e[t];n&&n[yW]&&(n.clear&&n.clear(),e[t]=n[yW])}var TW=tI(),EW={itemStyle:wI(RB,!0),lineStyle:wI(LB,!0)},JOe={lineStyle:`stroke`,itemStyle:`fill`};function DW(e,t){return e.visualStyleMapper||EW[t]||(console.warn(`Unknown style type '`+t+`'.`),EW.itemStyle)}function OW(e,t){return e.visualDrawType||JOe[t]||(console.warn(`Unknown style type '`+t+`'.`),`fill`)}var YOe={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData(),r=e.visualStyleAccessPath||`itemStyle`,i=e.getModel(r),a=DW(e,r)(i),o=i.getShallow(`decal`);o&&(n.setVisual(`decal`,o),o.dirty=!0);var s=OW(e,r),c=a[s],l=hA(c)?c:null,u=a.fill===`auto`||a.stroke===`auto`;if(!a[s]||l||u){var d=e.getColorFromPalette(e.name,null,t.getSeriesCount());a[s]||(a[s]=d,n.setVisual(`colorFromPalette`,!0)),a.fill=a.fill===`auto`||hA(a.fill)?d:a.fill,a.stroke=a.stroke===`auto`||hA(a.stroke)?d:a.stroke}if(n.setVisual(`style`,a),n.setVisual(`drawType`,s),!t.isSeriesFiltered(e)&&l)return n.setVisual(`colorFromPalette`,!1),{dataEach:function(t,n){var r=e.getDataParams(n),i=Z({},a);i[s]=l(r),t.setItemVisual(n,`style`,i)}}}},kW=new zB,XOe={createOnAllSeries:!0,reset:function(e,t){if(!e.ignoreStyleOnData){var n=e.getData(),r=e.visualStyleAccessPath||`itemStyle`,i=DW(e,r),a=n.getVisual(`drawType`);return{dataEach:n.hasItemOption?function(e,t){var n=e.getRawDataItem(t);if(n&&n[r]){kW.option=n[r];var o=i(kW);Z(e.ensureUniqueItemVisual(t,`style`),o),kW.option.decal&&(e.setItemVisual(t,`decal`,kW.option.decal),kW.option.decal.dirty=!0),a in o&&e.setItemVisual(t,`colorFromPalette`,!1)}}:null}}}},ZOe={performRawSeries:!0,overallReset:function(e){var t=zA();e.eachSeries(function(e){if(!e.isColorBySeries()){var n=e.type+`-`+e.getColorBy();TW(e).scope=t.get(n)||t.set(n,{})}}),e.eachSeries(function(e){if(!e.isColorBySeries()){var t=e.getRawData(),n={},r=e.getData(),i=TW(e).scope,a=OW(e,e.visualStyleAccessPath||`itemStyle`);r.each(function(e){var t=r.getRawIndex(e);n[t]=e}),t.each(function(o){var s=n[o];if(r.getItemVisual(s,`colorFromPalette`)){var c=r.ensureUniqueItemVisual(s,`style`),l=t.getName(o)||o+``,u=t.count();c[a]=e.getColorFromPalette(l,i,u)}})}})}},AW=Math.PI;function QOe(e,t){t||={},nA(t,{text:`loading`,textColor:$.color.primary,fontSize:12,fontWeight:`normal`,fontStyle:`normal`,fontFamily:`sans-serif`,maskColor:`rgba(255,255,255,0.8)`,showSpinner:!0,color:$.color.theme[0],spinnerRadius:10,lineWidth:5,zlevel:0});var n=new $P,r=new OL({style:{fill:t.maskColor},zlevel:t.zlevel,z:1e4});n.add(r);var i=new AL({style:{text:t.text,fill:t.textColor,fontSize:t.fontSize,fontWeight:t.fontWeight,fontStyle:t.fontStyle,fontFamily:t.fontFamily},zlevel:t.zlevel,z:10001}),a=new OL({style:{fill:`none`},textContent:i,textConfig:{position:`right`,distance:10},zlevel:t.zlevel,z:10001});n.add(a);var o;return t.showSpinner&&(o=new az({shape:{startAngle:-AW/2,endAngle:-AW/2+.1,r:t.spinnerRadius},style:{stroke:t.color,lineCap:`round`,lineWidth:t.lineWidth},zlevel:t.zlevel,z:10001}),o.animateShape(!0).when(1e3,{endAngle:AW*3/2}).start(`circularInOut`),o.animateShape(!0).when(1e3,{startAngle:AW*3/2}).delay(300).start(`circularInOut`),n.add(o)),n.resize=function(){var n=i.getBoundingRect().width,s=t.showSpinner?t.spinnerRadius:0,c=(e.getWidth()-s*2-(t.showSpinner&&n?10:0)-n)/2-(t.showSpinner&&n?0:5+n/2)+(t.showSpinner?0:n/2)+(n?0:s),l=e.getHeight()/2;t.showSpinner&&o.setShape({cx:c,cy:l}),a.setShape({x:c-s,y:l-s,width:s*2,height:s*2}),r.setShape({x:0,y:0,width:e.getWidth(),height:e.getHeight()})},n.resize(),n}var jW=function(){function e(e,t,n,r){this._stageTaskMap=zA(),this.ecInstance=e,this.api=t,n=this._dataProcessorHandlers=n.slice(),r=this._visualHandlers=r.slice(),this._allHandlers=n.concat(r)}return e.prototype.restoreData=function(e,t){e.restoreData(t),this._stageTaskMap.each(function(e){var t=e.overallTask;t&&t.dirty()})},e.prototype.getPerformArgs=function(e,t){if(e.__pipeline){var n=this._pipelineMap.get(e.__pipeline.id),r=n.context,i=!t&&n.progressiveEnabled&&(!r||r.progressiveRender)&&e.__idxInPipeline>n.blockIndex?n.step:null,a=r&&r.modDataCount;return{step:i,modBy:a==null?null:Math.ceil(a/i),modDataCount:a}}},e.prototype.getPipeline=function(e){return this._pipelineMap.get(e)},e.prototype.updateStreamModes=function(e,t){var n=this._pipelineMap.get(e.uid);e.pipelineContext=n.context=e.__preparePipelineContext?e.__preparePipelineContext(t,n):_we(e,t,n)},e.prototype.restorePipelines=function(e,t){var n=this,r=n._pipelineMap=zA();t.eachSeries(function(t){var i=e.painter.type===`canvas`&&t.getProgressive(),a=t.uid;r.set(a,{id:a,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:i&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),n._pipe(t,t.dataTask)})},e.prototype.prepareStageTasks=function(){var e=this._stageTaskMap,t=this.api.getModel(),n=this.api;Q(this._allHandlers,function(r){var i=e.get(r.uid)||e.set(r.uid,{});MA(!(r.reset&&r.overallReset),``),r.reset&&this._createSeriesStageTask(r,i,t,n),r.overallReset&&this._createOverallStageTask(r,i,t,n)},this)},e.prototype.prepareView=function(e,t,n,r){var i=e.renderTask,a=i.context;a.model=t,a.ecModel=n,a.api=r,i.__block=!e.incrementalPrepareRender,this._pipe(t,i)},e.prototype.performDataProcessorTasks=function(e,t){this._performStageTasks(this._dataProcessorHandlers,e,t,{block:!0})},e.prototype.performVisualTasks=function(e,t,n){this._performStageTasks(this._visualHandlers,e,t,n)},e.prototype._performStageTasks=function(e,t,n,r){r||={};var i=!1,a=this;Q(e,function(e,s){if(!(r.visualType&&r.visualType!==e.visualType)){var c=a._stageTaskMap.get(e.uid),l=c.seriesTaskMap,u=c.overallTask;if(u){var d,f=u.agentStubMap;f.each(function(e){o(r,e)&&(e.dirty(),d=!0)}),d&&u.dirty(),a.updatePayload(u,n);var p=a.getPerformArgs(u,r.block);f.each(function(e){e.perform(p)}),u.perform(p)&&(i=!0)}else l&&l.each(function(s,c){o(r,s)&&s.dirty();var l=a.getPerformArgs(s,r.block);l.skip=!e.performRawSeries&&t.isSeriesFiltered(s.context.model),a.updatePayload(s,n),s.perform(l)&&(i=!0)})}});function o(e,t){return e.setDirty&&(!e.dirtyMap||e.dirtyMap.get(t.__pipeline.id))}this.unfinished=i||this.unfinished},e.prototype.performSeriesTasks=function(e){var t;e.eachSeries(function(e){t=e.dataTask.perform()||t}),this.unfinished=t||this.unfinished},e.prototype.plan=function(){this._pipelineMap.each(function(e){var t=e.tail;do{if(t.__block){e.blockIndex=t.__idxInPipeline;break}t=t.getUpstream()}while(t)})},e.prototype.updatePayload=function(e,t){t!==`remain`&&(e.context.payload=t)},e.prototype._createSeriesStageTask=function(e,t,n,r){var i=this,a=t.seriesTaskMap,o=t.seriesTaskMap=zA(),s=e.seriesType,c=e.getTargetSeries;e.createOnAllSeries?n.eachRawSeries(l):s?n.eachRawSeriesByType(s,l):c&&c(n,r).each(l);function l(t){var s=t.uid,c=o.set(s,a&&a.get(s)||EU({plan:rke,reset:ike,count:oke}));c.context={model:t,ecModel:n,api:r,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:i},i._pipe(t,c)}},e.prototype._createOverallStageTask=function(e,t,n,r){var i=this,a=t.overallTask=t.overallTask||EU({reset:$Oe});a.context={ecModel:n,api:r,overallReset:e.overallReset,scheduler:i};var o=a.agentStubMap,s=a.agentStubMap=zA(),c=e.seriesType,l=e.getTargetSeries,u=e.dirtyOnOverallProgress,d=!1;MA(!e.createOnAllSeries,``),c?n.eachRawSeriesByType(c,f):l?l(n,r).each(f):Q(n.getSeries(),f);function f(e){var t=e.uid,n=s.set(t,o&&o.get(t)||(d=!0,EU({reset:eke,onDirty:nke})));n.context={model:e,dirtyOnOverallProgress:u},n.agent=a,n.__block=u,i._pipe(e,n)}d&&a.dirty()},e.prototype._pipe=function(e,t){var n=e.uid,r=this._pipelineMap.get(n);!r.head&&(r.head=t),r.tail&&r.tail.pipe(t),r.tail=t,t.__idxInPipeline=r.count++,t.__pipeline=r},e.wrapStageHandler=function(e,t){return hA(e)&&(e={overallReset:e,seriesType:ske(e)}),e.uid=BB(`stageHandler`),t&&(e.visualType=t),e},e}();function $Oe(e){e.overallReset(e.ecModel,e.api,e.payload)}function eke(e){return e.dirtyOnOverallProgress&&tke}function tke(){this.agent.dirty(),this.getDownstream().dirty()}function nke(){this.agent&&this.agent.dirty()}function rke(e){return e.plan?e.plan(e.model,e.ecModel,e.api,e.payload):null}function ike(e){e.useClearVisual&&e.data.clearAllVisual();var t=e.resetDefines=qF(e.reset(e.model,e.ecModel,e.api,e.payload));return t.length>1?sA(t,function(e,t){return MW(t)}):ake}var ake=MW(0);function MW(e){return function(t,n){var r=n.data,i=n.resetDefines[e];if(i&&i.dataEach)for(var a=t.start;a0&&u===i.length-l.length){var d=i.slice(0,u);d!==`data`&&(t.mainType=d,t[l.toLowerCase()]=e,s=!0)}}o.hasOwnProperty(i)&&(n[i]=e,s=!0),s||(r[i]=e)})}return{cptQuery:t,dataQuery:n,otherQuery:r}},e.prototype.filter=function(e,t){var n=this.eventInfo;if(!n)return!0;var r=n.targetEl,i=n.packedEvent,a=n.model,o=n.view;if(!a||!o)return!0;var s=t.cptQuery,c=t.dataQuery;return l(s,a,`mainType`)&&l(s,a,`subType`)&&l(s,a,`index`,`componentIndex`)&&l(s,a,`name`)&&l(s,a,`id`)&&l(c,i,`name`)&&l(c,i,`dataIndex`)&&l(c,i,`dataType`)&&(!o.filterForExposedEvent||o.filterForExposedEvent(e,t.otherQuery,r,i));function l(e,t,n,r){return e[n]==null||t[r||n]===e[n]}},e.prototype.afterTrigger=function(){this.eventInfo=null},e}(),HW=[`symbol`,`symbolSize`,`symbolRotate`,`symbolOffset`],UW=HW.concat([`symbolKeepAspect`]),lke={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData();if(e.legendIcon&&n.setVisual(`legendIcon`,e.legendIcon),!e.hasSymbolVisual)return;for(var r={},i={},a=!1,o=0;o=0&&cG(c)?c:.5,e.createRadialGradient(o,s,0,o,s,c)}function lG(e,t,n){for(var r=t.type===`radial`?Tke(e,t,n):wke(e,t,n),i=t.colorStops,a=0;a0)?null:e===`dashed`?[4*t,2*t]:e===`dotted`?[t]:vA(e)?[e]:mA(e)?e:null}function fG(e){var t=e.style,n=t.lineDash&&t.lineWidth>0&&Dke(t.lineDash,t.lineWidth),r=t.lineDashOffset;if(n){var i=t.strokeNoScale&&e.getLineScale?e.getLineScale():1;i&&i!==1&&(n=sA(n,function(e){return e/i}),r/=i)}return[n,r]}var Oke=new dL(!0);function pG(e){var t=e.stroke;return!(t==null||t===`none`||!(e.lineWidth>0))}function mG(e){return typeof e==`string`&&e!==`none`}function hG(e){var t=e.fill;return t!=null&&t!==`none`}function gG(e,t){if(t.fillOpacity!=null&&t.fillOpacity!==1){var n=e.globalAlpha;e.globalAlpha=t.fillOpacity*t.opacity,e.fill(),e.globalAlpha=n}else e.fill()}function _G(e,t){if(t.strokeOpacity!=null&&t.strokeOpacity!==1){var n=e.globalAlpha;e.globalAlpha=t.strokeOpacity*t.opacity,e.stroke(),e.globalAlpha=n}else e.stroke()}function vG(e,t,n){var r=EI(t.image,t.__image,n);if(DI(r)){var i=e.createPattern(r,t.repeat||`repeat`);if(typeof DOMMatrix==`function`&&i&&i.setTransform){var a=new DOMMatrix;a.translateSelf(t.x||0,t.y||0),a.rotateSelf(0,0,(t.rotation||0)*GA),a.scaleSelf(t.scaleX||1,t.scaleY||1),i.setTransform(a)}return i}}function kke(e,t,n,r,i){var a,o=pG(n),s=hG(n),c=n.strokePercent,l=c<1,u=!t.path;(!t.silent||l)&&u&&t.createPathProxy();var d=t.path||Oke,f=t.__dirty;if(!r){var p=n.fill,m=n.stroke,h=s&&!!p.colorStops,g=o&&!!m.colorStops,_=s&&!!p.image,v=o&&!!m.image,y=void 0,b=void 0,x=void 0,S=void 0,C=void 0;(h||g)&&(C=t.getBoundingRect()),h&&(y=f?lG(e,p,C):t.__canvasFillGradient,t.__canvasFillGradient=y),g&&(b=f?lG(e,m,C):t.__canvasStrokeGradient,t.__canvasStrokeGradient=b),_&&(x=f||!t.__canvasFillPattern?vG(e,p,t):t.__canvasFillPattern,t.__canvasFillPattern=x),v&&(S=f||!t.__canvasStrokePattern?vG(e,m,t):t.__canvasStrokePattern,t.__canvasStrokePattern=S),h?e.fillStyle=y:_&&(x?e.fillStyle=x:s=!1),g?e.strokeStyle=b:v&&(S?e.strokeStyle=S:o=!1)}var w=t.getGlobalScale();d.setScale(w[0],w[1],t.segmentIgnoreThreshold);var T,E;e.setLineDash&&n.lineDash&&(a=fG(t),T=a[0],E=a[1]);var D=!0;(u||f&4)&&(d.setDPR(e.dpr),l?d.setContext(null):(d.setContext(e),D=!1),d.reset(),t.buildPath(d,t.shape,r),d.toStatic(),t.pathUpdated()),D&&d.rebuildPath(e,l?c:1),T&&(e.setLineDash(T),e.lineDashOffset=E),r?(i.batchFill=s,i.batchStroke=o):n.strokeFirst?(o&&_G(e,n),s&&gG(e,n)):(s&&gG(e,n),o&&_G(e,n)),T&&e.setLineDash([])}function Ake(e,t,n){var r=t.__image=EI(n.image,t.__image,t,t.onload);if(!(!r||!DI(r))){var i=n.x||0,a=n.y||0,o=t.getWidth(),s=t.getHeight(),c=r.width/r.height;if(o==null&&s!=null?o=s*c:s==null&&o!=null?s=o/c:o==null&&s==null&&(o=r.width,s=r.height),n.sWidth&&n.sHeight){var l=n.sx||0,u=n.sy||0;e.drawImage(r,l,u,n.sWidth,n.sHeight,i,a,o,s)}else if(n.sx&&n.sy){var l=n.sx,u=n.sy,d=o-l,f=s-u;e.drawImage(r,l,u,d,f,i,a,o,s)}else e.drawImage(r,i,a,o,s)}}function jke(e,t,n){var r,i=n.text;if(i!=null&&(i+=``),i){e.font=n.font||`12px sans-serif`,e.textAlign=n.textAlign,e.textBaseline=n.textBaseline;var a=void 0,o=void 0;e.setLineDash&&n.lineDash&&(r=fG(t),a=r[0],o=r[1]),a&&(e.setLineDash(a),e.lineDashOffset=o),n.strokeFirst?(pG(n)&&e.strokeText(i,n.x,n.y),hG(n)&&e.fillText(i,n.x,n.y)):(hG(n)&&e.fillText(i,n.x,n.y),pG(n)&&e.strokeText(i,n.x,n.y)),a&&e.setLineDash([])}}var yG=[`shadowBlur`,`shadowOffsetX`,`shadowOffsetY`],bG=[[`lineCap`,`butt`],[`lineJoin`,`miter`],[`miterLimit`,10]];function xG(e,t,n,r,i){var a=!1;if(!r&&(n||={},t===n))return!1;if(r||t.opacity!==n.opacity){OG(e,i),a=!0;var o=Math.max(Math.min(t.opacity,1),0);e.globalAlpha=isNaN(o)?NI.opacity:o}(r||t.blend!==n.blend)&&(a||=(OG(e,i),!0),e.globalCompositeOperation=t.blend||NI.blend);for(var s=0;s0&&e.unfinished);e.unfinished||this._zr.flush()}}},t.prototype.getDom=function(){return this._dom},t.prototype.getId=function(){return this.id},t.prototype.getZr=function(){return this._zr},t.prototype.isSSR=function(){return this._ssr},t.prototype.setOption=function(e,t,n){if(!this[KG]){if(this._disposed){this.id;return}var r,i,a;if(yA(t)&&(n=t.lazyUpdate,r=t.silent,i=t.replaceMerge,a=t.transition,t=t.notMerge),this[KG]=!0,SK(this),!this._model||t){var o=new WDe(this._api),s=this._theme,c=this._model=new NH;c.scheduler=this._scheduler,c.ssr=this._ssr,c.init(null,null,null,s,this._locale,o)}this._model.setOption(e,{replaceMerge:i},kK);var l={seriesTransition:a,optionChanged:!0};if(n)this[JG]={silent:r,updateParams:l},this[KG]=!1,this.getZr().wakeUp();else{try{iK(this),sK.update.call(this,null,l)}catch(e){throw this[JG]=null,this[KG]=!1,e}this._ssr||this._zr.flush(),this[JG]=null,this[KG]=!1,dK.call(this,r),fK.call(this,r)}}},t.prototype.setTheme=function(e,t){if(!this[KG]){if(this._disposed){this.id;return}var n=this._model;if(n){var r=t&&t.silent,i=null;this[JG]&&(r??=this[JG].silent,i=this[JG].updateParams,this[JG]=null),this[KG]=!0,SK(this);try{this._updateTheme(e),n.setTheme(this._theme),iK(this),sK.update.call(this,{type:`setTheme`},i)}catch(e){throw this[KG]=!1,e}this[KG]=!1,dK.call(this,r),fK.call(this,r)}}},t.prototype._updateTheme=function(e){gA(e)&&(e=jK[e]),e&&(e=Qk(e),e&&$H(e,!0),this._theme=e)},t.prototype.getModel=function(){return this._model},t.prototype.getOption=function(){return this._model&&this._model.getOption()},t.prototype.getWidth=function(){return this._zr.getWidth()},t.prototype.getHeight=function(){return this._zr.getHeight()},t.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||Rk.hasGlobalWindow&&window.devicePixelRatio||1},t.prototype.getRenderedCanvas=function(e){return this.renderToCanvas(e)},t.prototype.renderToCanvas=function(e){return e||={},this._zr.painter.getRenderedCanvas({backgroundColor:e.backgroundColor||this._model.get(`backgroundColor`),pixelRatio:e.pixelRatio||this.getDevicePixelRatio()})},t.prototype.renderToSVGString=function(e){return e||={},this._zr.painter.renderToString({useViewBox:e.useViewBox})},t.prototype.getSvgDataURL=function(){var e=this._zr;return Q(e.storage.getDisplayList(),function(e){e.stopAnimation(null,!0)}),e.painter.toDataURL()},t.prototype.getDataURL=function(e){if(this._disposed){this.id;return}e||={};var t=e.excludeComponents,n=this._model,r=[],i=this;Q(t,function(e){n.eachComponent({mainType:e},function(e){var t=i._componentsMap[e.__viewId];t.group.ignore||(r.push(t),t.group.ignore=!0)})});var a=this._zr.painter.getType()===`svg`?this.getSvgDataURL():this.renderToCanvas(e).toDataURL(`image/`+(e&&e.type||`png`));return Q(r,function(e){e.group.ignore=!1}),a},t.prototype.getConnectedDataURL=function(e){if(this._disposed){this.id;return}var t=e.type===`svg`,n=this.group,r=Math.min,i=Math.max,a=1/0;if(PK[n]){var o=a,s=a,c=-a,l=-a,u=[],d=e&&e.pixelRatio||this.getDevicePixelRatio();Q(NK,function(a,d){if(a.group===n){var f=t?a.getZr().painter.getSvgDom().innerHTML:a.renderToCanvas(Qk(e)),p=a.getDom().getBoundingClientRect();o=r(p.left,o),s=r(p.top,s),c=i(p.right,c),l=i(p.bottom,l),u.push({dom:f,left:p.left,top:p.top})}}),o*=d,s*=d,c*=d,l*=d;var f=c-o,p=l-s,m=zk.createCanvas(),h=nF(m,{renderer:t?`svg`:`canvas`});if(h.resize({width:f,height:p}),t){var g=``;return Q(u,function(e){var t=e.left-o,n=e.top-s;g+=``+e.dom+``}),h.painter.getSvgRoot().innerHTML=g,e.connectedBackgroundColor&&h.painter.setBackgroundColor(e.connectedBackgroundColor),h.refreshImmediately(),h.painter.toDataURL()}else return e.connectedBackgroundColor&&h.add(new OL({shape:{x:0,y:0,width:f,height:p},style:{fill:e.connectedBackgroundColor}})),Q(u,function(e){var t=new wL({style:{x:e.left*d-o,y:e.top*d-s,image:e.dom}});h.add(t)}),h.refreshImmediately(),m.toDataURL(`image/`+(e&&e.type||`png`))}else return this.getDataURL(e)},t.prototype.convertToPixel=function(e,t,n){return cK(this,`convertToPixel`,e,t,n)},t.prototype.convertToLayout=function(e,t,n){return cK(this,`convertToLayout`,e,t,n)},t.prototype.convertFromPixel=function(e,t,n){return cK(this,`convertFromPixel`,e,t,n)},t.prototype.containPixel=function(e,t){if(this._disposed){this.id;return}var n=this._model,r;return Q(nI(n,e),function(e,n){n.indexOf(`Models`)>=0&&Q(e,function(e){var i=e.coordinateSystem;if(i&&i.containPoint)r||=!!i.containPoint(t);else if(n===`seriesModels`){var a=this._chartsMap[e.__viewId];a&&a.containPoint&&(r||=a.containPoint(t,e))}},this)},this),!!r},t.prototype.getVisual=function(e,t){var n=this._model,r=nI(n,e,{defaultMainType:`series`}),i=r.seriesModel.getData(),a=r.hasOwnProperty(`dataIndexInside`)?r.dataIndexInside:r.hasOwnProperty(`dataIndex`)?i.indexOfRawIndex(r.dataIndex):null;return a==null?GW(i,t):WW(i,a,t)},t.prototype.getViewOfComponentModel=function(e){return this._componentsMap[e.__viewId]},t.prototype.getViewOfSeriesModel=function(e){return this._chartsMap[e.__viewId]},t.prototype._initEvents=function(){var e=this;Q(nAe,function(t){var n=function(n){var r=e.getModel(),i=n.target,a;if(t===`globalout`?a={}:i&&YW(i,function(e){var t=ML(e);if(t&&t.dataIndex!=null){var n=t.dataModel||r.getSeriesByIndex(t.seriesIndex);return a=n&&n.getDataParams(t.dataIndex,t.dataType,i)||{},!0}else if(t.eventData)return a=Z({},t.eventData),!0},!0),a){var o=a.componentType,s=a.componentIndex;(o===`markLine`||o===`markPoint`||o===`markArea`)&&(o=`series`,s=a.seriesIndex);var c=o&&s!=null&&r.getComponent(o,s),l=c&&e[c.mainType===`series`?`_chartsMap`:`_componentsMap`][c.__viewId];a.event=n,a.type=t,e._$eventProcessor.eventInfo={targetEl:i,packedEvent:a,model:c,view:l},e.trigger(t,a)}};n.zrEventfulCallAtLast=!0,e._zr.on(t,n,e)});var t=this._messageCenter;Q(DK,function(n,r){t.on(r,function(t){e.trigger(r,t)})}),dke(t,this,this._api)},t.prototype.isDisposed=function(){return this._disposed},t.prototype.clear=function(){if(this._disposed){this.id;return}this.setOption({series:[]},!0)},t.prototype.dispose=function(){if(this._disposed){this.id;return}this._disposed=!0,this.getDom()&&owe(this.getDom(),FK,``);var e=this,t=e._api,n=e._model;Q(e._componentsViews,function(e){e.dispose(n,t)}),Q(e._chartsViews,function(e){e.dispose(n,t)}),e._zr.dispose(),e._dom=e._model=e._chartsMap=e._componentsMap=e._chartsViews=e._componentsViews=e._scheduler=e._api=e._zr=e._throttledZrFlush=e._theme=e._coordSysMgr=e._messageCenter=null,delete NK[e.id]},t.prototype.resize=function(e){if(!this[KG]){if(this._disposed){this.id;return}this._zr.resize(e);var t=this._model;if(this._loadingFX&&this._loadingFX.resize(),t){var n=t.resetOption(`media`),r=e&&e.silent;this[JG]&&(r??=this[JG].silent,n=!0,this[JG]=null),this[KG]=!0,SK(this);try{n&&iK(this),sK.update.call(this,{type:`resize`,animation:Z({duration:0},e&&e.animation)})}catch(e){throw this[KG]=!1,e}this[KG]=!1,dK.call(this,r),fK.call(this,r)}}},t.prototype.showLoading=function(e,t){if(this._disposed){this.id;return}if(yA(e)&&(t=e,e=``),e||=`default`,this.hideLoading(),MK[e]){var n=MK[e](this._api,t),r=this._zr;this._loadingFX=n,r.add(n)}},t.prototype.hideLoading=function(){if(this._disposed){this.id;return}this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null},t.prototype.makeActionFromEvent=function(e){var t=Z({},e);return t.type=EK[e.type],t},t.prototype.dispatchAction=function(e,t){if(this._disposed){this.id;return}if(yA(t)||(t={silent:!!t}),TK[e.type]&&this._model){if(this[KG]){this._pendingActions.push(e);return}var n=t.silent;uK.call(this,e,n);var r=t.flush;r?this._zr.flush():r!==!1&&Rk.browser.weChat&&this._throttledZrFlush(),dK.call(this,n),fK.call(this,n)}},t.prototype.updateLabelLayout=function(){XW.trigger(`series:layoutlabels`,this._model,this._api,{updatedSeries:[]})},t.prototype.appendData=function(e){if(this._disposed){this.id;return}var t=e.seriesIndex;this.getModel().getSeriesByIndex(t).appendData(e),this._scheduler.unfinished=!0,this.getZr().wakeUp()},t.internalField=function(){iK=function(e){mke(e._model);var t=e._scheduler;t.restorePipelines(e._zr,e._model),t.prepareStageTasks(),aK(e,!0),aK(e,!1),t.plan()},aK=function(e,t){for(var n=e._model,r=e._scheduler,i=t?e._componentsViews:e._chartsViews,a=t?e._componentsMap:e._chartsMap,o=e._zr,s=e._api,c=0;cOA(t.get(`hoverLayerThreshold`),gH.hoverLayerThreshold)&&!Rk.node&&!Rk.worker;(e._usingTHL||a)&&(t.eachSeries(function(t){if(!t.preventUsingHoverLayer){var n=e._chartsMap[t.__viewId];n.__alive&&n.eachRendered(function(e){var t=e.states.emphasis;t&&t.hoverLayer!==2&&(t.hoverLayer=+!!a)})}}),e._usingTHL=a)}}function a(e,t){var n=e.get(`blendMode`)||null;t.eachRendered(function(e){e.isGroup||(e.style.blend=n)})}function o(e,t){if(!e.preventAutoZ){var n=dB(e);t.eachRendered(function(e){return pB(e,n.z,n.zlevel),!0})}}function s(e,t){t.eachRendered(function(e){if(!wz(e)){var t=e.getTextContent(),n=e.getTextGuideLine();e.stateTransition&&=null,t&&t.stateTransition&&(t.stateTransition=null),n&&n.stateTransition&&(n.stateTransition=null),e.hasState()?(e.prevStates=e.currentStates,e.clearStates()):e.prevStates&&=null}})}function c(e,t){var n=e.getModel(`stateAnimation`),i=e.isAnimationEnabled(),a=n.get(`duration`),o=a>0?{duration:a,delay:n.get(`delay`),easing:n.get(`easing`)}:null;t.eachRendered(function(e){if(e.states&&e.states.emphasis){if(wz(e))return;if(e instanceof SL&&SEe(e),e.__dirty){var t=e.prevStates;t&&e.useStates(t)}if(i){e.stateTransition=o;var n=e.getTextContent(),a=e.getTextGuideLine();n&&(n.stateTransition=o),a&&(a.stateTransition=o)}e.__dirty&&r(e)}})}vK=function(e){return new(function(t){X(n,t);function n(){return t!==null&&t.apply(this,arguments)||this}return n.prototype.getCoordinateSystems=function(){return e._coordSysMgr.getCoordinateSystems()},n.prototype.getComponentByElement=function(t){for(;t;){var n=t.__ecComponentInfo;if(n!=null)return e._model.getComponent(n.mainType,n.index);t=t.parent}},n.prototype.enterEmphasis=function(t,n){eR(t,n),bK(e)},n.prototype.leaveEmphasis=function(t,n){tR(t,n),bK(e)},n.prototype.enterBlur=function(t){nR(t),bK(e)},n.prototype.leaveBlur=function(t){rR(t),bK(e)},n.prototype.enterSelect=function(t){iR(t),bK(e)},n.prototype.leaveSelect=function(t){aR(t),bK(e)},n.prototype.getModel=function(){return e.getModel()},n.prototype.getViewOfComponentModel=function(t){return e.getViewOfComponentModel(t)},n.prototype.getViewOfSeriesModel=function(t){return e.getViewOfSeriesModel(t)},n.prototype.getECUpdateCycleVersion=function(){return e[qG]},n.prototype.usingTHL=function(){return e._usingTHL},n}(qTe))(e)},yK=function(e){function t(e,t){for(var n=0;n=0)){JK.push(n);var o=jW.wrapStageHandler(n,i);o.__prio=t,o.__raw=n,e.push(o)}}function XK(e,t){MK[e]=t}function fAe(e){Bk({createCanvas:e})}function ZK(e,t,n){var r=QW(`registerMap`);r&&r(e,t,n)}function pAe(e){var t=QW(`getMap`);return t&&t(e)}var QK=COe;qK(VG,YOe),qK(UG,XOe),qK(UG,ZOe),qK(VG,lke),qK(UG,uke),qK(WG,zke),zK($H),BK(Gke,nOe),XK(`default`,QOe),WK({type:WL,event:WL,update:WL},WA),WK({type:GL,event:GL,update:GL},WA),WK({type:QTe,event:KL,update:QTe,action:WA,refineEvent:$K,publishNonRefinedEvent:!0}),WK({type:$Te,event:KL,update:$Te,action:WA,refineEvent:$K,publishNonRefinedEvent:!0}),WK({type:eEe,event:KL,update:eEe,action:WA,refineEvent:$K,publishNonRefinedEvent:!0});function $K(e,t,n,r){return{eventContent:{selected:_Ee(n),isFromClick:t.isFromClick||!1}}}RK(`default`,{}),RK(`dark`,VW);var mAe={},eq=[],hAe={registerPreprocessor:zK,registerProcessor:BK,registerPostInit:VK,registerPostUpdate:HK,registerUpdateLifecycle:UK,registerAction:WK,registerCoordinateSystem:GK,registerLayout:KK,registerVisual:qK,registerTransform:QK,registerLoading:XK,registerMap:ZK,registerImpl:fke,PRIORITY:GG,ComponentModel:lH,ComponentView:pW,SeriesModel:lW,ChartView:gW,registerComponentModel:function(e){lH.registerClass(e)},registerComponentView:function(e){pW.registerClass(e)},registerSeriesModel:function(e){lW.registerClass(e)},registerChartView:function(e){gW.registerClass(e)},registerCustomSeries:function(e,t){eG(e,t)},registerSubTypeDefaulter:function(e,t){lH.registerSubTypeDefaulter(e,t)},registerPainter:function(e,t){rF(e,t)}};function tq(e){if(mA(e)){Q(e,function(e){tq(e)});return}rA(eq,e)>=0||(eq.push(e),hA(e)&&(e={install:e}),e.install(hAe))}function nq(e){return e==null?0:e.length||1}function rq(e){return e}var iq=function(){function e(e,t,n,r,i,a){this._old=e,this._new=t,this._oldKeyGetter=n||rq,this._newKeyGetter=r||rq,this.context=i,this._diffModeMultiple=a===`multiple`}return e.prototype.add=function(e){return this._add=e,this},e.prototype.update=function(e){return this._update=e,this},e.prototype.updateManyToOne=function(e){return this._updateManyToOne=e,this},e.prototype.updateOneToMany=function(e){return this._updateOneToMany=e,this},e.prototype.updateManyToMany=function(e){return this._updateManyToMany=e,this},e.prototype.remove=function(e){return this._remove=e,this},e.prototype.execute=function(){this[this._diffModeMultiple?`_executeMultiple`:`_executeOneToOne`]()},e.prototype._executeOneToOne=function(){var e=this._old,t=this._new,n={},r=Array(e.length),i=Array(t.length);this._initIndexMap(e,null,r,`_oldKeyGetter`),this._initIndexMap(t,n,i,`_newKeyGetter`);for(var a=0;a1){var l=s.shift();s.length===1&&(n[o]=s[0]),this._update&&this._update(l,a)}else c===1?(n[o]=null,this._update&&this._update(s,a)):this._remove&&this._remove(a)}this._performRestAdd(i,n)},e.prototype._executeMultiple=function(){var e=this._old,t=this._new,n={},r={},i=[],a=[];this._initIndexMap(e,n,i,`_oldKeyGetter`),this._initIndexMap(t,r,a,`_newKeyGetter`);for(var o=0;o1&&d===1)this._updateManyToOne&&this._updateManyToOne(l,c),r[s]=null;else if(u===1&&d>1)this._updateOneToMany&&this._updateOneToMany(l,c),r[s]=null;else if(u===1&&d===1)this._update&&this._update(l,c),r[s]=null;else if(u>1&&d>1)this._updateManyToMany&&this._updateManyToMany(l,c),r[s]=null;else if(u>1)for(var f=0;f1)for(var o=0;o30}var pq=yA,mq=sA,xAe=typeof Int32Array>`u`?Array:Int32Array,SAe=`e\0\0`,hq=-1,CAe=[`hasItemOption`,`_nameList`,`_idList`,`_invertedIndicesMap`,`_dimSummary`,`userOutput`,`_rawData`,`_dimValueGetter`,`_nameDimIdx`,`_idDimIdx`,`_nameRepeatCount`],wAe=[`_approximateExtent`],gq,_q,vq,yq,bq,xq,Sq,Cq=function(){function e(e,t){this.type=`list`,this._dimOmitted=!1,this._nameList=[],this._idList=[],this._visual={},this._layout={},this._itemVisuals=[],this._itemLayouts=[],this._graphicEls=[],this._approximateExtent={},this._calculationInfo={},this.hasItemOption=!1,this.TRANSFERABLE_METHODS=[`cloneShallow`,`downSample`,`minmaxDownSample`,`lttbDownSample`,`map`],this.CHANGABLE_METHODS=[`filterSelf`,`selectRange`],this.DOWNSAMPLE_METHODS=[`downSample`,`minmaxDownSample`,`lttbDownSample`];var n,r=!1;lq(e)?(n=e.dimensions,this._dimOmitted=e.isDimensionOmitted(),this._schema=e):(r=!0,n=e),n||=[`x`,`y`];for(var i={},a=[],o={},s=!1,c={},l=0;l=t)){var n=this._store.getProvider();this._updateOrdinalMeta();var r=this._nameList,i=this._idList;if(n.getSource().sourceFormat===`original`&&!n.pure)for(var a=[],o=e;o0},e.prototype.ensureUniqueItemVisual=function(e,t){var n=this._itemVisuals,r=n[e];r||=n[e]={};var i=r[t];return i??(i=this.getVisual(t),mA(i)?i=i.slice():pq(i)&&(i=Z({},i)),r[t]=i),i},e.prototype.setItemVisual=function(e,t,n){var r=this._itemVisuals[e]||{};this._itemVisuals[e]=r,pq(t)?Z(r,t):r[t]=n},e.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},e.prototype.setLayout=function(e,t){pq(e)?Z(this._layout,e):this._layout[e]=t},e.prototype.getLayout=function(e){return this._layout[e]},e.prototype.getItemLayout=function(e){return this._itemLayouts[e]},e.prototype.setItemLayout=function(e,t,n){this._itemLayouts[e]=n?Z(this._itemLayouts[e]||{},t):t},e.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},e.prototype.setItemGraphicEl=function(e,t){NL(this.hostModel&&this.hostModel.seriesIndex,this.dataType,e,t),this._graphicEls[e]=t},e.prototype.getItemGraphicEl=function(e){return this._graphicEls[e]},e.prototype.eachItemGraphicEl=function(e,t){Q(this._graphicEls,function(n,r){n&&e&&e.call(t,n,r)})},e.prototype.cloneShallow=function(t){return t||=new e(this._schema?this._schema:mq(this.dimensions,this._getDimInfo,this),this.hostModel),bq(t,this),t._store=this._store,t},e.prototype.wrapMethod=function(e,t){var n=this[e];hA(n)&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(e),this[e]=function(){var e=n.apply(this,arguments);return t.apply(this,[e].concat(AA(arguments)))})},e.internalField=function(){gq=function(e){var t=e._invertedIndicesMap;Q(t,function(n,r){var i=e._dimInfos[r],a=i.ordinalMeta,o=e._store;if(a){n=t[r]=new xAe(a.categories.length);for(var s=0;s1&&(s+=`__ec__`+l),r[t]=s}}}(),e}();function TAe(e,t){return wq(e,t).dimensions}function wq(e,t){tU(e)||(e=rU(e)),t||={};var n=t.coordDimensions||[],r=t.dimensionsDefine||e.dimensionsDefine||[],i=zA(),a=[],o=EAe(e,n,r,t.dimensionsCount),s=t.canOmitUnusedDimensions&&fq(o),c=r===e.dimensionsDefine,l=c?dq(e):uq(r),u=t.encodeDefine;!u&&t.encodeDefaulter&&(u=t.encodeDefaulter(e,o));for(var d=zA(u),f=new IU(o),p=0;p0&&(e.name+=t-1)}),new cq({source:e,dimensions:a,fullDimensionCount:o,dimensionOmitted:s})}function EAe(e,t,n,r){var i=Math.max(e.dimensionsDetectedCount||1,t.length,n.length,r||0);return Q(t,function(e){var t;yA(e)&&(t=e.dimsDef)&&(i=Math.max(i,t.length))}),i}function DAe(e,t,n){if(n||t.hasKey(e)){for(var r=0;t.hasKey(e+r);)r++;e+=r}return t.set(e,!0),e}var OAe=function(){function e(e){this.coordSysDims=[],this.axisMap=zA(),this.categoryAxisMap=zA(),this.coordSysName=e}return e}();function kAe(e){var t=e.get(`coordinateSystem`),n=new OAe(t),r=AAe[t];if(r)return r(e,n,n.axisMap,n.categoryAxisMap),n}var AAe={cartesian2d:function(e,t,n,r){var i=e.getReferringComponents(`xAxis`,iI).models[0],a=e.getReferringComponents(`yAxis`,iI).models[0];t.coordSysDims=[`x`,`y`],n.set(`x`,i),n.set(`y`,a),Tq(i)&&(r.set(`x`,i),t.firstCategoryDimIndex=0),Tq(a)&&(r.set(`y`,a),t.firstCategoryDimIndex??=1)},singleAxis:function(e,t,n,r){var i=e.getReferringComponents(`singleAxis`,iI).models[0];t.coordSysDims=[`single`],n.set(`single`,i),Tq(i)&&(r.set(`single`,i),t.firstCategoryDimIndex=0)},polar:function(e,t,n,r){var i=e.getReferringComponents(`polar`,iI).models[0],a=i.findAxisModel(`radiusAxis`),o=i.findAxisModel(`angleAxis`);t.coordSysDims=[`radius`,`angle`],n.set(`radius`,a),n.set(`angle`,o),Tq(a)&&(r.set(`radius`,a),t.firstCategoryDimIndex=0),Tq(o)&&(r.set(`angle`,o),t.firstCategoryDimIndex??=1)},geo:function(e,t,n,r){t.coordSysDims=[`lng`,`lat`]},parallel:function(e,t,n,r){var i=e.ecModel,a=i.getComponent(`parallel`,e.get(`parallelIndex`)),o=t.coordSysDims=a.dimensions.slice();Q(a.parallelAxisIndex,function(e,a){var s=i.getComponent(`parallelAxis`,e),c=o[a];n.set(c,s),Tq(s)&&(r.set(c,s),t.firstCategoryDimIndex??=a)})},matrix:function(e,t,n,r){var i=e.getReferringComponents(`matrix`,iI).models[0];t.coordSysDims=[`x`,`y`];var a=i.getDimensionModel(`x`),o=i.getDimensionModel(`y`);n.set(`x`,a),n.set(`y`,o),r.set(`x`,a),r.set(`y`,o)}};function Tq(e){return e.get(`type`)===`category`}function Eq(e,t,n){n||={};var r=n.byIndex,i=n.stackedCoordDimension,a,o,s;jAe(t)?a=t:(o=t.schema,a=o.dimensions,s=t.store);var c=!!(e&&e.get(`stack`)),l,u,d,f,p=!0;function m(e){return e.type!==`ordinal`&&e.type!==`time`}if(Q(a,function(e,t){gA(e)&&(a[t]=e={name:e}),m(e)||(p=!1)}),Q(a,function(e,t){c&&!e.isExtraCoord&&(!r&&!l&&e.ordinalMeta&&(l=e),!u&&m(e)&&(!p||e.coordDim!==`x`&&e.coordDim!==`angle`)&&(!i||i===e.coordDim)&&(u=e))}),u&&!r&&!l&&(r=!0),u){d=`__\0ecstackresult_`+e.id,f=`__\0ecstackedover_`+e.id,l&&(l.createInvertedIndices=!0);var h=u.coordDim,g=u.type,_=0;Q(a,function(e){e.coordDim===h&&_++});var v={name:d,coordDim:h,coordDimIndex:_,type:g,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:a.length},y={name:f,coordDim:f,coordDimIndex:_+1,type:g,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:a.length+1};o?(s&&(v.storeDimIndex=s.ensureCalculationDimension(f,g),y.storeDimIndex=s.ensureCalculationDimension(d,g)),o.appendCalculationDimension(v),o.appendCalculationDimension(y)):(a.push(v),a.push(y))}return{stackedDimension:u&&u.name,stackedByDimension:l&&l.name,isStackedByIndex:r,stackedOverDimension:f,stackResultDimension:d}}function jAe(e){return!lq(e.schema)}function Dq(e,t){return!!t&&t===e.getCalculationInfo(`stackedDimension`)}function Oq(e,t){return Dq(e,t)?e.getCalculationInfo(`stackResultDimension`):t}function MAe(e,t){var n=e.get(`coordinateSystem`),r=VV.get(n),i;return t&&t.coordSysDims&&(i=sA(t.coordSysDims,function(e){var n={name:e},r=t.axisMap.get(e);return r&&(n.type=oq(r.get(`type`))),n})),i||=r&&(r.getDimensionsInfo?r.getDimensionsInfo():r.dimensions.slice())||[`x`,`y`],i}function NAe(e,t,n){var r,i;return n&&Q(e,function(e,a){var o=e.coordDim,s=n.categoryAxisMap.get(o);s&&(r??=a,e.ordinalMeta=s.getOrdinalMeta(),t&&(e.createInvertedIndices=!0)),e.otherDims.itemName!=null&&(i=!0)}),!i&&r!=null&&(e[r].otherDims.itemName=0),r}function kq(e,t,n){n||={};var r=t.getSourceManager(),i,a=!1;e?(a=!0,i=rU(e)):(i=r.getSource(),a=i.sourceFormat===FL);var o=kAe(t),s=MAe(t,o),c=n.useEncodeDefaulter,l=hA(c)?c:c?pA(yH,s,t):null,u={coordDimensions:s,generateCoord:n.generateCoord,encodeDefine:t.getEncode(),encodeDefaulter:l,canOmitUnusedDimensions:!a},d=wq(i,u),f=NAe(d.dimensions,n.createInvertedIndices,o),p=a?null:r.getSharedDataStore(d),m=Eq(t,{schema:d,store:p}),h=new Cq(d,t);h.setCalculationInfo(m);var g=f!=null&&PAe(i)?function(e,t,n,r){return r===f?n:this.defaultDimValueGetter(e,t,n,r)}:null;return h.hasItemOption=!1,h.initData(a?i:p,null,g),h}function PAe(e){if(e.sourceFormat===`original`)return!mA(YF(FAe(e.data||[])))}function FAe(e){for(var t=0;t=t[0]&&e<=t[1]},getExtent:function(){return this._extents[0].slice()},getExtentUnsafe:function(e){return this._extents[e]},setExtent:function(e,t){Bq(this._extents,0,e,t)},setExtent2:function(e,t,n){var r=this._extents;r[e]||(r[e]=r[0].slice()),Bq(r,e,t,n)},freeze:function(){}};function Bq(e,t,n,r){pI(n,r)&&(e[t][0]=n,e[t][1]=r)}function Vq(e){return Hq(e)||Wq(e)}function Hq(e){return e.type===`interval`}function Uq(e){return e.type===`time`}function Wq(e){return e.type===`log`}function Gq(e){return e.type===`ordinal`}function BAe(e){var t=FF(e),n=hF(10,t),r=fF(e/n);return r?r===2?r=3:r===3?r=5:r*=2:r=1,CF(r*n,-t)}function Kq(e){return TF(e)+2}function qq(e,t){return gF(e)/gF(t)}function Jq(e,t,n){var r=n&&n.lookup;if(r){for(var i=0;i1&&a/o>2&&(i=Math.round(Math.ceil(i/o)*o)),i!==r[0]&&c(r[0],!0,!0);for(var s=i;s<=r[1];s+=o)c(s,!1,s===r[0]||s===r[1]);s-o!==r[1]&&c(r[1],!0,!0);function c(e,t,r){n({value:e,offInterval:t},r)}}var Qq=function(e){X(t,e);function t(n){var r=e.call(this)||this;r.type=`ordinal`,r.parse=t.parse,Pq(r,t.decoratedMethods);var i=n.ordinalMeta;i||=new jq({}),mA(i)&&(i=new jq({categories:sA(i,function(e){return yA(e)?e.value:e})})),r._ordinalMeta=i;var a=Nq(null,null,n.extent||[0,i.categories.length-1]);return r._mapper=a.mapper,Fq(r,a.mapper),r}return t.parse=function(e){return e==null?e=NaN:gA(e)?(e=this._ordinalMeta.getOrdinal(e),e??=NaN):e=fF(e),e},t.prototype.getTicks=function(){var e=[];return Zq(this,0,function(t){e.push(t)}),e},t.prototype.getMinorTicks=function(e){},t.prototype.setSortInfo=function(e){if(e==null){this._ordinalNumbersByTick=this._ticksByOrdinalNumber=null;return}for(var t=e.ordinalNumbers,n=this._ordinalNumbersByTick=[],r=this._ticksByOrdinalNumber=[],i=0,a=this._ordinalMeta.categories.length,o=lF(a,t.length);i=0&&e=0&&e=0&&eo[0]&&mi[1]||!isFinite(p)||!isFinite(i[1]))break}else{if(m>f)break;p=lF(p,i[1]),m===f&&(p=i[1])}if(l.push({value:p}),p=CF(p+n,a),s){var h=s.calcNiceTickMultiple(p,d);h>=0&&(p=CF(p+h*n,a))}if(l.length>0&&p===l[l.length-1].value)break;if(l.length>u)return[]}var g=l.length?l[l.length-1].value:i[1];return r[1]>g&&l.push({value:e.expandToNicedExtent?CF(g+n,a):r[1]}),c&&o.pruneTicksByBreak(e.pruneByBreak,l,s.breaks,function(e){return e.value},t.interval,r),c&&e.breakTicks!==`none`&&o.addBreaksToTicks(l,s.breaks,r),l},t.prototype.getMinorTicks=function(e){return $q(this,e,$B(this),this._cfg.interval)},t.prototype.getLabel=function(e,t){if(e==null)return``;var n=t&&t.precision;return n==null?n=TF(e.value)||0:n===`auto`&&(n=this._cfg.intervalPrecision),OV(CF(e.value,n,!0))},t.type=`interval`,t}(Aq);Aq.registerClass(eJ);var HAe=function(e,t,n,r){for(;n>>1;e[i][1]16?16:e>7.5?7:e>3.5?4:e>1.5?2:1}function WAe(e){var t=30*iV;return e/=t,e>6?6:e>3?3:e>2?2:1}function GAe(e){return e/=rV,e>12?12:e>6?6:e>3.5?4:e>2?2:1}function iJ(e,t){return e/=t?nV:tV,e>30?30:e>20?20:e>15?15:e>10?10:e>5?5:e>2?2:1}function KAe(e){return uF(IF(e,!0),1)}function qAe(e,t,n){var r=Math.max(0,rA(lV,t)-1);return mV(new Date(e),lV[r],n).getTime()}function JAe(e,t){var n=new Date(0);n[e](1);var r=n.getTime();n[e](1+t);var i=n.getTime()-r;return function(e,t){return Math.max(0,Math.round((t-e)/i))}}function YAe(e,t,n,r,i,a){var o=gDe,s=0;function c(e,t,n,i,o,c,l){for(var u=JAe(o,e),d=t,f=new Date(d);d3e3));)if(f[o](f[i]()+e),d=f.getTime(),a){var p=a.calcNiceTickMultiple(d,u);p>0&&(f[o](f[i]()+p*e),d=f.getTime())}l.push({value:d,notAdd:d>r[1]})}function l(e,i,a){var o=[],s=!i.length;if(!rJ(dV(e),r[0],r[1],n)){s&&(i=[{value:qAe(r[0],e,n)},{value:r[1]}]);for(var l=0;l=r[0]&&u<=r[1]&&c(f,u,d,p,m,h,o),e===`year`&&a.length>1&&l===0&&a.unshift({value:a[0].value-f})}}for(var l=0;l=r[0]&&v<=r[1]&&f++)}var y=i/t;if(f>y*1.5&&p>y/1.5||(u.push(g),f>y||e===o[m]))break}d=[]}}for(var b=lA(sA(u,function(e){return lA(e,function(e){return e.value>=r[0]&&e.value<=r[1]&&!e.notAdd})}),function(e){return e.length>0}),x=b.length-1,S=[],m=0;mr[0])&&S.unshift({value:r[0],time:{level:0,upperTimeUnit:O,lowerTimeUnit:O},notNice:!0}),(!D||D.values&&(a=s);var c=nJ.length,l=Math.min(HAe(nJ,a,0,c),c-1),u=nJ[l][1],d=nJ[Math.max(l-1,0)][0];e.setTimeInterval({approxInterval:a,interval:u,minLevelUnit:d})};Aq.registerClass(tJ);var aJ=0,oJ=1,ZAe=2,sJ=function(e){X(t,e);function t(n){var r=e.call(this)||this;r.type=`log`,r.parse=eJ.parse,r.base=n.logBase||10;var i=[],a=[],o=r._lookup={from:i,to:a};i[aJ]=i[oJ]=a[aJ]=a[oJ]=NaN,Pq(r,t.mapperMethods);var s=ZB(),c=n.breakOption,l={lookup:o};return s&&s.parseAxisBreakOptionInwardTransform(c,r,{noNegative:!0},ZAe,l),r.powStub=new eJ({breakParsed:l.original}),r.intervalStub=new eJ({breakParsed:l.transformed}),Fq(r,r.intervalStub),r}return t.prototype.getTicks=function(e){var t=this.base,n=this.powStub,r=ZB(),i=this.intervalStub,a={lookup:{from:i.getExtent(),to:n.getExtent()}};return sA(i.getTicks(e||{}),function(e){var i=e.value,o=Jq(i,t,a),s;if(r){var c=r.getTicksBreakOutwardTransform(this,e,$B(n),this._lookup);c&&(s=c.vBreak,o=c.tickVal)}return{value:o,break:s}},this)},t.prototype.getMinorTicks=function(e){return $q(this,e,$B(this.powStub),this.intervalStub.getConfig().interval)},t.prototype.getLabel=function(e,t){return this.intervalStub.getLabel(e,t)},t.type=`log`,t.mapperMethods={needTransform:function(){return!0},normalize:function(e){return this.intervalStub.normalize(qq(e,this.base))},scale:function(e){return Jq(this.intervalStub.scale(e),this.base,null)},transformIn:function(e,t){return e=qq(e,this.base),t&&t.depth===2?e:this.intervalStub.transformIn(e,t)},transformOut:function(e,t){var n=t?t.depth:null;return cJ.depth=n,lJ.lookup=this._lookup,Jq(n===2?e:this.intervalStub.transformOut(e,cJ),this.base,lJ)},contain:function(e){return this.powStub.contain(e)},setExtent:function(e,t){this.setExtent2(0,e,t)},setExtent2:function(e,t,n){if(!(!pI(t,n)||t<=0||n<=0)){var r=uJ,i=uJ;if(e===0){var a=this._lookup;r=a.to,i=a.from}this.powStub.setExtent2(e,r[aJ]=t,r[oJ]=n);var o=this.base;this.intervalStub.setExtent2(e,i[aJ]=qq(t,o),i[oJ]=qq(n,o))}},getFilter:function(){return{g:0}},sanitize:function(e,t){return pI(t[0],t[1])&&WF(e)&&e<=0&&(e=t[0]),e},getDefaultStartValue:function(){return 1},getExtent:function(){return this.powStub.getExtent()},getExtentUnsafe:function(e,t){return t===null?this.powStub.getExtentUnsafe(e,null):this.intervalStub.getExtentUnsafe(e,t)}},t}(Aq);Aq.registerClass(sJ);var cJ={},lJ={},uJ=[],dJ={value:1,category:1,time:1,log:1},fJ=tI();function pJ(e){var t=e.get(`type`);return(t==null||!UA(dJ,t)&&!Aq.getClass(t))&&(t=`value`),t}function mJ(e,t,n){var r=ZB(),i;switch(r&&(i=bJ(e,t,n)),t){case`category`:return new Qq({ordinalMeta:e.getOrdinalMeta?e.getOrdinalMeta():e.getCategories(),extent:uI()});case`time`:return new tJ({locale:e.ecModel.getLocaleModel(),useUTC:e.ecModel.get(`useUTC`),breakOption:i});case`log`:return new sJ({logBase:e.get(`logBase`),breakOption:i});case`value`:return new eJ({breakOption:i});default:return new((Aq.getClass(t))||eJ)({})}}function QAe(e,t,n){var r=n?Lq(e,null):e.getExtentUnsafe(0,null),i=r[0],a=r[1];return pI(i,a)?i===t||a===t?2:it?1:3:3}function $Ae(e){fJ(e).noOnMyZero=!0}function eje(e){return fJ(e).noOnMyZero}function hJ(e){var t=e.getLabelModel().get(`formatter`);if(e.type===`time`){var n=_De(t);return function(t,r){return e.scale.getFormattedLabel(t,r,n)}}else if(gA(t))return function(n){var r=e.scale.getLabel(n);return t.replace(`{value}`,r??``)};else if(hA(t)){if(e.type===`category`)return function(n,r){return t(gJ(e,n),n.value-e.scale.getExtent()[0],null)};var r=ZB();return function(n,i){var a=null;return r&&(a=r.makeAxisLabelFormatterParamBreak(a,n.break)),t(gJ(e,n),i,a)}}else return function(t){return e.scale.getLabel(t)}}function gJ(e,t){var n=e.scale;return Gq(n)?n.getLabel(t):t.value}function _J(e){return e.get(`interval`)??`auto`}function tje(e){return e.type===`category`&&_J(e.getLabelModel())===0}function nje(e,t){var n={};return Q(e.mapDimensionsAll(t),function(t){n[Oq(e,t)]=!0}),dA(n)}function vJ(e){return e===`middle`||e===`center`}function yJ(e){return e.getShallow(`show`)}function bJ(e,t,n){var r=e.get(`breaks`,!0);if(r!=null)return!ZB()||!n||!rje(t)?void 0:r}function rje(e){return e!==`category`}function xJ(e,t,n,r,i,a){var o=Wq(e),s=o?e.intervalStub:e;if(s.setExtent(r[0],r[1]),o){var c=e.powStub,l={depth:2},u=e.transformOut(r[0],l),d=e.transformOut(r[1],l),f=VAe(n,r);t[0]&&!f[0]&&(u=i[0]),t[1]&&!f[1]&&(d=i[1]),c.setExtent(u,d)}s.setConfig(a)}function SJ(e,t){return Gq(e)?e.getRawOrdinalNumber(t.value):t.value}function CJ(e,t){return Gq(e)&&!!t.get(`boundaryGap`)}var wJ=function(){function e(){}return e.prototype.needIncludeZero=function(){return!this.option.scale},e.prototype.getCoordSysModel=function(){},e}(),ije=hI(),TJ=tI(),aje=tI();function EJ(e,t){var n=e.model,r=TJ(rG(n.ecModel)).keyed,i=r&&r.get(t);return i&&i.get(n.uid)}function oje(e,t){return OJ(EJ(e,t))}function sje(e,t){var n=[];return DJ(e.model.ecModel,function(e){for(var r=0;r0&&u[1]>0&&!d[0]&&(u[0]=0),u[0]<0&&u[1]<0&&!d[1]&&(u[1]=0));var y=!1;u[0]>u[1]&&(u.reverse(),y=!0);var b=BJ(e,t.get(`startValue`,!0)),x=b!=null;!WF(b)&&r&&(b=e.getDefaultStartValue?e.getDefaultStartValue():0),WF(b)&&(x||!_||v)&&(bu[1]&&!d[1]&&(u[1]=b,d[1]=!0)),zJ(this._i={scale:e,dataMM:l,noZoomEffMM:u,zoomMM:[],fixMM:d,zoomFixMM:[!1,!1],startValue:b,isBlank:g,incl0:v,tggAxInv:y,ctnShp:i},u)}return e.prototype.makeNoZoom=function(){return this._i.noZoomEffMM.slice()},e.prototype.makeFinal=function(){var e=this._i,t=e.zoomMM,n=e.noZoomEffMM,r=e.zoomFixMM,i=e.fixMM,a={fixMM:i,zoomFixMM:r,isBlank:e.isBlank,incl0:e.incl0,tggAxInv:e.tggAxInv,ctnShp:e.ctnShp,effMM:n.slice()},o=a.effMM;return t[0]!=null&&(o[0]=t[0],i[0]=r[0]=!0),t[1]!=null&&(o[1]=t[1],i[1]=r[1]=!0),zJ(e,o),a},e.prototype.makeRenderInfo=function(){return{startValue:this._i.startValue}},e.prototype.setZoomMM=function(e,t){this._i.zoomMM[e]=t},e}();function zJ(e,t){var n=e.scale,r=e.dataMM;n.sanitize&&(t[0]=n.sanitize(t[0],r),t[1]=n.sanitize(t[1],r),mI(t))}function BJ(e,t){return t==null?null:EA(t)?NaN:e.parse(t)}function mje(e,t){var n;if(Gq(e))n=[0,0];else{var r=t.get(`boundaryGap`);typeof r==`boolean`&&(r=null),n=mA(r)?r:[r,r]}return[VJ(n[0]),VJ(n[1])]}function VJ(e){return BP(typeof e==`boolean`?0:e,1)||0}function HJ(e){var t=fje(e.scale);return t.extent||=uI(),t}function hje(e,t){HJ(e).dimIdxInCoord=t.get(e.dim)}function UJ(e,t){var n=e.scale,r=e.model,i=e.dim;n.rawExtentInfo||gje(n,e,i,r,t)}function gje(e,t,n,r,i){var a=HJ(t),o=a.extent,s=!1;cje(t,function(r){if(r.boxCoordinateSystem){var i=UV(r).coord,c=a.dimIdxInCoord;if(c>=0&&mA(i)){var l=i[c];l!=null&&!mA(l)&&dI(o,e.parse(l))}}else if(r.coordinateSystem){var u=r.getData();if(u){var d=e.getFilter?e.getFilter():null;Q(nje(u,n),function(e){fwe(o,u.getApproximateExtent(e,d))})}r.__requireStartValue&&r.__requireStartValue(t)&&(s=!0)}});var c=vje(e,t,r);WJ(e,new RJ(e,r,o,s,c),i),a.extent=null}function _je(e,t){var n=e.scale;WJ(n,new RJ(n,e.model,t,!1,!1),pje)}function WJ(e,t,n){e.rawExtentInfo=t,t.from=n}function GJ(e,t){KJ.set(e,t)}var KJ=zA();function qJ(e,t,n,r,i){e.rawExtentInfo||_je({scale:e,model:t},i||uI());var a=e.rawExtentInfo.makeFinal(),o=a.effMM;return e.setExtent(o[0],o[1]),e.setBlank(a.isBlank),r&&a.tggAxInv&&n&&!n.get(`legacyMinMaxDontInverseAxis`)&&(r.inverse=!r.inverse),a}function vje(e,t,n){var r=CJ(e,n),i=n.get(`containShape`,!0);if(i==null&&!r&&(i=!0),!i)return!1;var a=!1;return MJ(t,function(e){a=!!KJ.get(e)||a}),a}function yje(e,t,n,r){if(n.ctnShp){var i;if(MJ(e,function(t){var n=KJ.get(t);if(n){var a=n(e,r);a&&(i||=[0,0],uwe(i,a[0]),dwe(i,a[1]),$Ae(e))}}),i){var a=t.getExtent();if(Gq(t))e.onBand||t.setExtent2(1,lF(a[0],a[0]+i[0]),uF(a[1],a[1]+i[1]));else{var o=a.slice();n.zoomFixMM[0]||(o[0]=lF(o[0],t.transformOut(t.transformIn(o[0],null)+i[0],null))),n.zoomFixMM[1]||(o[1]=uF(o[1],t.transformOut(t.transformIn(o[1],null)+i[1],null))),(o[0]a[1])&&t.setExtent2(1,o[0],o[1])}}}}function JJ(e,t){var n=Wq(e),r=n?e.intervalStub:e,i=t.fixMinMax||[],a=n?e.getExtent():null,o=r.getExtent(),s=Yq(o,i,t.rawExtentResult);r.setExtent(s[0],s[1]),s=r.getExtent();var c=n?xje(r,t):bje(r,t),l=c.intervalPrecision,u=c.interval,d=t.userInterval;d!=null&&(c.interval=d,c.intervalPrecision=Kq(d)),i[0]||(s[0]=CF(pF(s[0]/u)*u,l)),i[1]||(s[1]=CF(mF(s[1]/u)*u,l)),d!=null&&(c.niceExtent=s.slice()),xJ(e,i,o,s,a,c)}function bje(e,t){var n=Xq(t.splitNumber,5),r=Rq(e),i=t.minInterval,a=t.maxInterval,o=IF(r/n,!0);i!=null&&oa&&(o=a);var s=Kq(o),c=e.getExtent(),l=[CF(mF(c[0]/o)*o,s),CF(pF(c[1]/o)*o,s)];return{interval:o,intervalPrecision:s,niceExtent:l}}function xje(e,t){var n=Xq(t.splitNumber,10),r=e.getExtent(),i=Rq(e),a=uF(PF(i),1);n/i*a<=.5&&(a*=10);var o=Kq(a),s=[CF(mF(r[0]/a)*a,o),CF(pF(r[1]/a)*a,o)];return{intervalPrecision:o,interval:a,niceExtent:s}}function YJ(e){var t=e.scale,n=e.model,r=n.axis,i=n.ecModel;XJ(t,n,r,i,null)}function XJ(e,t,n,r,i){var a=qJ(e,t,r,n,i),o=Hq(e)||Uq(e);ZJ(e,{splitNumber:t.get(`splitNumber`),fixMinMax:a.fixMM,userInterval:t.get(`interval`),minInterval:o?t.get(`minInterval`):null,maxInterval:o?t.get(`maxInterval`):null,rawExtentResult:a}),n&&r&&yje(n,e,a,r)}function ZJ(e,t){Sje[e.type](e,t)}var Sje={interval:JJ,log:JJ,time:XAe,ordinal:WA},Cje=s({createDimensions:()=>TAe,createList:()=>wje,createScale:()=>Eje,createSymbol:()=>aG,createTextStyle:()=>Oje,dataStack:()=>Tje,enableHoverEmphasis:()=>fR,getECData:()=>ML,getLayoutRect:()=>eH,mixinAxisModelCommonMethods:()=>Dje});function wje(e){return kq(null,e)}var Tje={isDimensionStacked:Dq,enableDataStack:Eq,getStackedDimension:Oq};function Eje(e,t){var n=t;t instanceof zB||(n=new zB(t));var r=pJ(n),i=mJ(n,r,!1);return e[1]n&&(t=i,n=o)}if(t)return jje(t.exterior);var s=this.getBoundingRect();return[s.x+s.width/2,s.y+s.height/2]},t.prototype.getBoundingRect=function(e){var t=this._rect;if(t&&!e)return t;var n=[1/0,1/0],r=[-1/0,-1/0],i=this.geometries;return Q(i,function(t){t.type===`polygon`?tY(t.exterior,n,r,e):Q(t.points,function(t){tY(t,n,r,e)})}),isFinite(n[0])&&isFinite(n[1])&&isFinite(r[0])&&isFinite(r[1])||(n[0]=n[1]=r[0]=r[1]=0),t=new eM(n[0],n[1],r[0]-n[0],r[1]-n[1]),e||(this._rect=t),t},t.prototype.contain=function(e){var t=this.getBoundingRect(),n=this.geometries;if(!t.contain(e[0],e[1]))return!1;loopGeo:for(var r=0,i=n.length;r>1^-(s&1),c=c>>1^-(c&1),s+=i,c+=a,i=s,a=c,r.push([s/n,c/n])}return r}function cY(e,t){return e=Nje(e),sA(lA(e.features,function(e){return e.geometry&&e.properties&&e.geometry.coordinates.length>0}),function(e){var n=e.properties,r=e.geometry,i=[];switch(r.type){case`Polygon`:var a=r.coordinates;i.push(new rY(a[0],a.slice(1)));break;case`MultiPolygon`:Q(r.coordinates,function(e){e[0]&&i.push(new rY(e[0],e.slice(1)))});break;case`LineString`:i.push(new iY([r.coordinates]));break;case`MultiLineString`:i.push(new iY(r.coordinates))}var o=new aY(n[t||`name`],i,n.cp);return o.properties=n,o})}var Pje=s({MAX_SAFE_INTEGER:()=>AF,asc:()=>wF,getPercentWithPrecision:()=>FCe,getPixelPrecision:()=>PCe,getPrecision:()=>TF,getPrecisionSafe:()=>EF,isNumeric:()=>BF,isRadianAroundZero:()=>MF,linearMap:()=>yF,nice:()=>IF,numericToNumber:()=>zF,parseDate:()=>NF,parsePercent:()=>bF,quantile:()=>LF,quantity:()=>PF,quantityExponent:()=>FF,reformIntervals:()=>RF,remRadian:()=>jF,round:()=>NCe}),Fje=s({format:()=>fV,parse:()=>NF,roundTime:()=>mV}),Ije=s({Arc:()=>az,BezierCurve:()=>iz,BoundingRect:()=>eM,Circle:()=>LR,CompoundPath:()=>oz,Ellipse:()=>RR,Group:()=>$P,Image:()=>wL,IncrementalDisplayable:()=>vz,Line:()=>tz,LinearGradient:()=>cz,Polygon:()=>$R,Polyline:()=>ez,RadialGradient:()=>lz,Rect:()=>OL,Ring:()=>ZR,Sector:()=>XR,Text:()=>AL,clipPointsByRect:()=>Yz,clipRectByRect:()=>Xz,createIcon:()=>Zz,extendPath:()=>Pz,extendShape:()=>Nz,getShapeClass:()=>Iz,getTransform:()=>Wz,initProps:()=>Cz,makeImage:()=>Rz,makePath:()=>Lz,mergePath:()=>Bz,registerShape:()=>Fz,resizePath:()=>Vz,updateProps:()=>Sz}),Lje=s({addCommas:()=>OV,capitalFirst:()=>TDe,encodeHTML:()=>xj,formatTime:()=>wDe,formatTpl:()=>PV,getTextRect:()=>CDe,getTooltipMarker:()=>IV,normalizeCssArray:()=>AV,toCamelCase:()=>kV,truncateText:()=>Mwe}),Rje=s({bind:()=>fA,clone:()=>Qk,curry:()=>pA,defaults:()=>nA,each:()=>Q,extend:()=>Z,filter:()=>lA,indexOf:()=>rA,inherits:()=>iA,isArray:()=>mA,isFunction:()=>hA,isObject:()=>yA,isString:()=>gA,map:()=>sA,merge:()=>$k,reduce:()=>cA}),zje=tI(),lY=tI(),uY={estimate:1,determine:2};function dY(e){return{out:{noPxChangeTryDetermine:[]},kind:e}}function Bje(e,t){var n=e.getLabelModel().get(`customValues`);if(n){var r=e.scale;return{labels:sA(fY(n,r),function(t,n){return{formattedLabel:hJ(e)(t,n),rawLabel:r.getLabel(t),tick:t}})}}return e.type===`category`?Hje(e,t):Wje(e)}function Vje(e,t,n){var r=e.scale,i=e.getTickModel().get(`customValues`);return i?{ticks:fY(i,r)}:e.type===`category`?Uje(e,t):{ticks:r.getTicks(n)}}function fY(e,t){var n=t.getExtent(),r=[];return Q(e,function(e){e=t.parse(e),e>=n[0]&&e<=n[1]&&r.push(e)}),gI(r,gwe,null),wF(r),sA(r,function(e){return{value:e}})}function Hje(e,t){var n=e.getLabelModel(),r=pY(e,n,t);return!n.get(`show`)||e.scale.isBlank()?{labels:[]}:r}function pY(e,t,n){var r=Kje(e),i=_J(t),a=n.kind===uY.estimate;if(!a){var o=hY(r,i);if(o)return o}var s,c;hA(i)?s=vY(e,i,!1):(c=i===`auto`?qje(e,n):i,s=vY(e,c,!1));var l={labels:s,labelCategoryInterval:c};return a?n.out.noPxChangeTryDetermine.push(function(){return gY(r,i,l),!0}):gY(r,i,l),l}function Uje(e,t){var n=Gje(e),r=_J(t),i=hY(n,r);if(i)return i;var a,o;if((!t.get(`show`)||e.scale.isBlank())&&(a=[]),hA(r))a=vY(e,r,!0);else if(r===`auto`){var s=pY(e,e.getLabelModel(),dY(uY.determine));o=s.labelCategoryInterval,a=sA(s.labels,function(e){return e.tick})}else o=r,a=vY(e,o,!0);return gY(n,r,{ticks:a,tickCategoryInterval:o})}function Wje(e){var t=e.scale.getTicks(),n=hJ(e);return{labels:sA(t,function(t,r){return{formattedLabel:n(t,r),rawLabel:e.scale.getLabel(t),tick:t}})}}var Gje=mY(`axisTick`),Kje=mY(`axisLabel`);function mY(e){return function(t){return lY(t)[e]||(lY(t)[e]={list:[]})}}function hY(e,t){for(var n=0;nu&&(l=Math.max(1,Math.floor(c/u)));for(var d=s[0],f=e.dataToCoord(d+1)-e.dataToCoord(d),p=Math.abs(f*Math.cos(a)),m=Math.abs(f*Math.sin(a)),h=0,g=0;d<=s[1];d+=l){var _=0,v=0,y=IP(i({value:d}),r.font,`center`,`top`);_=y.width*1.3,v=y.height*1.3,h=Math.max(h,_,7),g=Math.max(g,v,7)}var b=h/p,x=g/m;isNaN(b)&&(b=1/0),isNaN(x)&&(x=1/0);var S=Math.max(0,Math.floor(Math.min(b,x)));return n===uY.estimate?(t.out.noPxChangeTryDetermine.push(fA(Yje,null,e,S,c)),S):_Y(e,S,c)??S}function Yje(e,t,n){return _Y(e,t,n)==null}function _Y(e,t,n){var r=zje(e.model),i=e.getExtent(),a=r.lastAutoInterval,o=r.lastTickCount;if(a!=null&&o!=null&&Math.abs(a-t)<=1&&Math.abs(o-n)<=1&&a>t&&r.axisExtent0===i[0]&&r.axisExtent1===i[1])return a;r.lastTickCount=n,r.lastAutoInterval=t,r.axisExtent0=i[0],r.axisExtent1=i[1]}function Xje(e){var t=e.getLabelModel();return{axisRotate:e.getRotate?e.getRotate():e.isHorizontal&&!e.isHorizontal()?90:0,labelRotate:t.get(`rotate`)||0,font:t.getFont()}}function vY(e,t,n){var r=hJ(e),i=e.scale,a=[],o=hA(t);return Zq(i,o?0:t,function(e,s){var c=i.getLabel(e);if(o){var l=!!t(e.value,c);if(e.offInterval=!l,!l&&!s)return}a.push(n?e:{formattedLabel:r(e),rawLabel:c,tick:e})}),a}var Zje=.8;function yY(e,t){t||={};var n={w:NaN,w2:NaN},r=e.scale,i=t.fromStat,a=t.min,o=RAe(r);WF(o)||(o=NaN);var s=e.getExtent(),c=dF(s[1]-s[0]);return Gq(r)?Qje(n,e,o,c):i&&$je(n,e,o,c,i),a!=null&&(n.w=WF(n.w)?uF(a,n.w):a),n}function Qje(e,t,n,r){var i=t.onBand,a=n+ +!!i;a===0&&(a=1),e.w=r/a,!i&&n&&r&&(e.w2=e.w*n/r)}function $je(e,t,n,r,i){var a=!1,o=-1/0;Q(i.key?[oje(t,i.key)]:sje(t,i.sers||[]),function(e){var t=e.liPosMinGap;t!=null&&(t>0?(t>o&&(o=t),a=!1):t===-2&&(a=!0))}),WF(n)&&n>0&&WF(o)?(e.w=r/n*o,e.w2=o):a&&(e.w=r*Zje,e.w2=e.w*n/r)}var bY=[0,1],xY=function(){function e(e,t,n){this.onBand=!1,this.inverse=!1,this.dim=e,this.scale=t,this._extent=n||[0,0]}return e.prototype.contain=function(e){var t=this._extent,n=Math.min(t[0],t[1]),r=Math.max(t[0],t[1]);return e>=n&&e<=r},e.prototype.containData=function(e){return this.scale.contain(this.scale.parse(e))},e.prototype.getExtent=function(){return this._extent.slice()},e.prototype.setExtent=function(e,t){var n=this._extent;n[0]=e,n[1]=t},e.prototype.dataToCoord=function(e,t){var n=this.scale;return e=n.normalize(n.parse(e)),yF(e,bY,SY(this),t)},e.prototype.coordToData=function(e,t){var n=yF(e,SY(this),bY,t);return this.scale.scale(n)},e.prototype.pointToData=function(e,t){},e.prototype.getTicksCoords=function(e){e||={};var t=e.tickModel||this.getTickModel(),n=sA(Vje(this,t,{breakTicks:e.breakTicks,pruneByBreak:e.pruneByBreak}).ticks,function(e){return{coord:this.dataToCoord(SJ(this.scale,e)),tick:e}},this),r=t.get(`alignWithLabel`),i=eMe(this,n,r);return sA(n,function(e){return{coord:e.coord,tickValue:e.tick.value,onBand:i}})},e.prototype.getMinorTicksCoords=function(){if(Gq(this.scale))return[];var e=this.model.getModel(`minorTick`).get(`splitNumber`);return e>0&&e<100||(e=5),sA(this.scale.getMinorTicks(e),function(e){return sA(e,function(e){return{coord:this.dataToCoord(e),tickValue:e}},this)},this)},e.prototype.getViewLabels=function(e){return e||=dY(uY.determine),Bje(this,e).labels},e.prototype.getLabelModel=function(){return this.model.getModel(`axisLabel`)},e.prototype.getTickModel=function(){return this.model.getModel(`axisTick`)},e.prototype.getBandWidth=function(){return yY(this,{min:1}).w},e.prototype.calculateCategoryInterval=function(e){return e||=dY(uY.determine),Jje(this,e)},e}();function SY(e){var t=e.getExtent();if(e.onBand){var n=(t[1]-t[0])/e.scale.count()/2;t[0]+=n,t[1]-=n}return t}function eMe(e,t,n){var r=t.length;if(!e.onBand||n||!r)return!1;var i=yY(e).w;if(!i)return!1;Q(t,function(e){e.coord-=i/2});var a=e.scale.getExtent(),o=t[r-1];return o.tick.offInterval&&t.pop(),t.push({coord:o.coord+i,tick:{value:a[1]+1}}),!0}function tMe(e){var t=lH.extend(e);return lH.registerClass(t),t}function nMe(e){var t=pW.extend(e);return pW.registerClass(t),t}function rMe(e){var t=lW.extend(e);return lW.registerClass(t),t}function iMe(e){var t=gW.extend(e);return gW.registerClass(t),t}var CY=Math.PI*2,wY=dL.CMD,aMe=[`top`,`right`,`bottom`,`left`];function oMe(e,t,n,r,i){var a=n.width,o=n.height;switch(e){case`top`:r.set(n.x+a/2,n.y-t),i.set(0,-1);break;case`bottom`:r.set(n.x+a/2,n.y+o+t),i.set(0,1);break;case`left`:r.set(n.x-t,n.y+o/2),i.set(-1,0);break;case`right`:r.set(n.x+a+t,n.y+o/2),i.set(1,0);break}}function sMe(e,t,n,r,i,a,o,s,c){o-=e,s-=t;var l=Math.sqrt(o*o+s*s);o/=l,s/=l;var u=o*n+e,d=s*n+t;if(Math.abs(r-i)%CY<1e-4)return c[0]=u,c[1]=d,l-n;if(a){var f=r;r=pL(i),i=pL(f)}else r=pL(r),i=pL(i);r>i&&(i+=CY);var p=Math.atan2(s,o);if(p<0&&(p+=CY),p>=r&&p<=i||p+CY>=r&&p+CY<=i)return c[0]=u,c[1]=d,l-n;var m=n*Math.cos(r)+e,h=n*Math.sin(r)+t,g=n*Math.cos(i)+e,_=n*Math.sin(i)+t,v=(m-o)*(m-o)+(h-s)*(h-s),y=(g-o)*(g-o)+(_-s)*(_-s);return v0){t=t/180*Math.PI,OY.fromArray(e[0]),kY.fromArray(e[1]),AY.fromArray(e[2]),Vj.sub(jY,OY,kY),Vj.sub(MY,AY,kY);var n=jY.len(),r=MY.len();if(!(n<.001||r<.001)){jY.scale(1/n),MY.scale(1/r);var i=jY.dot(MY);if(Math.cos(t)1&&Vj.copy(FY,AY),FY.toArray(e[1])}}}}function uMe(e,t,n){if(n<=180&&n>0){n=n/180*Math.PI,OY.fromArray(e[0]),kY.fromArray(e[1]),AY.fromArray(e[2]),Vj.sub(jY,kY,OY),Vj.sub(MY,AY,kY);var r=jY.len(),i=MY.len();if(!(r<.001||i<.001)&&(jY.scale(1/r),MY.scale(1/i),jY.dot(t)=o)Vj.copy(FY,AY);else{FY.scaleAndAdd(MY,a/Math.tan(Math.PI/2-s));var c=AY.x===kY.x?(FY.y-kY.y)/(AY.y-kY.y):(FY.x-kY.x)/(AY.x-kY.x);if(isNaN(c))return;c<0?Vj.copy(FY,kY):c>1&&Vj.copy(FY,AY)}FY.toArray(e[1])}}}function LY(e,t,n,r){var i=n===`normal`,a=i?e:e.ensureState(n);a.ignore=t;var o=r.get(`smooth`);o=o===!0?.3:Math.max(+o,0)||0,a.shape=a.shape||{},a.shape.smooth=o;var s=r.getModel(`lineStyle`).getLineStyle();i?e.useStyle(s):a.style=s}function dMe(e,t){var n=t.smooth,r=t.points;if(r)if(e.moveTo(r[0][0],r[0][1]),n>0&&r.length>=3){var i=oj(r[0],r[1]),a=oj(r[1],r[2]);if(!i||!a){e.lineTo(r[1][0],r[1][1]),e.lineTo(r[2][0],r[2][1]);return}var o=Math.min(i,a)*n,s=lj([],r[1],r[0],o/i),c=lj([],r[1],r[2],o/a),l=lj([],s,c,.5);e.bezierCurveTo(s[0],s[1],s[0],s[1],l[0],l[1]),e.bezierCurveTo(c[0],c[1],c[0],c[1],r[2][0],r[2][1])}else for(var u=1;u0&&i&&S(-d/a,0,a);var g=e[0],_=e[a-1],v,y;b(),v<0&&C(-v,.8),y<0&&C(y,.8),b(),x(v,y,1),x(y,v,-1),b(),v<0&&w(-v),y<0&&w(y);function b(){v=g.rect[o]-n,y=r-_.rect[o]-_.rect[s]}function x(e,t,n){if(e<0){var r=Math.min(t,-e);if(r>0){S(r*n,0,a);var i=r+e;i<0&&C(-i*n,1)}else C(-e*n,1)}}function S(t,n,r){t!==0&&(u=!0);for(var i=n;i0)for(var c=0;c0;c--){var f=r[c-1]*d;S(-f,c,a)}}}function w(e){var t=e<0?-1:1;e=Math.abs(e);for(var n=Math.ceil(e/(a-1)),r=0;r0?S(n,0,r+1):S(-n,a-r-1,a),e-=n,e<=0)return}return u}function mMe(e){for(var t=0;t=0&&n.attr(i.oldLayoutSelect),rA(u,`emphasis`)>=0&&n.attr(i.oldLayoutEmphasis)),Sz(n,c,t,s)}else if(n.attr(c),!jB(n).valueAnimation){var d=OA(n.style.opacity,1);n.style.opacity=0,Cz(n,{style:{opacity:d}},t,s)}if(i.oldLayout=c,n.states.select){var f=i.oldLayoutSelect={};rX(f,c,iX),rX(f,n.states.select,iX)}if(n.states.emphasis){var p=i.oldLayoutEmphasis={};rX(p,c,iX),rX(p,n.states.emphasis,iX)}NB(n,s,l,t,t)}if(r&&!r.ignore&&!r.invisible){var i=_Me(r),a=i.oldLayout,m={points:r.shape.points};a?(r.attr({shape:a}),Sz(r,{shape:m},t)):(r.setShape(m),r.style.strokePercent=0,Cz(r,{style:{strokePercent:1}},t)),i.oldLayout=m}},e}(),aX=tI();function yMe(e){e.registerUpdateLifecycle(`series:beforeupdate`,function(e,t,n){var r=aX(t).labelManager;r||=aX(t).labelManager=new vMe,r.clearLabels()}),e.registerUpdateLifecycle(`series:layoutlabels`,function(e,t,n){var r=aX(t).labelManager;Q(n.updatedSeries,function(e){r.addLabelsOfSeries(t.getViewOfSeriesModel(e))}),r.updateLayoutConfig(t),r.layout(t),r.processLabelsOverall()})}var oX=Math.sin,sX=Math.cos,cX=Math.PI,lX=Math.PI*2,bMe=180/cX,uX=function(){function e(){}return e.prototype.reset=function(e){this._start=!0,this._d=[],this._str=``,this._p=10**(e||4)},e.prototype.moveTo=function(e,t){this._add(`M`,e,t)},e.prototype.lineTo=function(e,t){this._add(`L`,e,t)},e.prototype.bezierCurveTo=function(e,t,n,r,i,a){this._add(`C`,e,t,n,r,i,a)},e.prototype.quadraticCurveTo=function(e,t,n,r){this._add(`Q`,e,t,n,r)},e.prototype.arc=function(e,t,n,r,i,a){this.ellipse(e,t,n,n,0,r,i,a)},e.prototype.ellipse=function(e,t,n,r,i,a,o,s){var c=o-a,l=!s,u=Math.abs(c),d=wN(u-lX)||(l?c>=lX:-c>=lX),f=c>0?c%lX:c%lX+lX,p=!1;p=d?!0:wN(u)?!1:f>=cX==!!l;var m=e+n*sX(a),h=t+r*oX(a);this._start&&this._add(`M`,m,h);var g=Math.round(i*bMe);if(d){var _=1/this._p,v=(l?1:-1)*(lX-_);this._add(`A`,n,r,g,1,+l,e+n*sX(a+v),t+r*oX(a+v)),_>.01&&this._add(`A`,n,r,g,0,+l,m,h)}else{var y=e+n*sX(o),b=t+r*oX(o);this._add(`A`,n,r,g,+p,+l,y,b)}},e.prototype.rect=function(e,t,n,r){this._add(`M`,e,t),this._add(`l`,n,0),this._add(`l`,0,r),this._add(`l`,-n,0),this._add(`Z`)},e.prototype.closePath=function(){this._d.length>0&&this._add(`Z`)},e.prototype._add=function(e,t,n,r,i,a,o,s,c){for(var l=[],u=this._p,d=1;d`}function AMe(e){return``}function _X(e,t){t||={};var n=t.newline?` -`:``;function r(e){var t=e.children,i=e.tag,a=e.attrs,o=e.text;return kMe(i,a)+(i===`style`?o||``:xj(o))+(t?``+n+sA(t,function(e){return r(e)}).join(n)+n:``)+AMe(i)}return r(e)}function jMe(e,t,n){n||={};var r=n.newline?` -`:``,i=` {`+r,a=r+`}`,o=sA(dA(e),function(t){return t+i+sA(dA(e[t]),function(n){return n+`:`+e[t][n]+`;`}).join(r)+a}).join(r),s=sA(dA(t),function(e){return`@keyframes `+e+i+sA(dA(t[e]),function(n){return n+i+sA(dA(t[e][n]),function(r){var i=t[e][n][r];return r===`d`&&(i=`path("`+i+`")`),r+`:`+i+`;`}).join(r)+a}).join(r)+a}).join(r);return!o&&!s?``:[``].join(r)}function vX(e){return{zrId:e,shadowCache:{},patternCache:{},gradientCache:{},clipPathCache:{},defs:{},cssNodes:{},cssAnims:{},cssStyleCache:{},cssAnimIdx:0,shadowIdx:0,gradientIdx:0,patternIdx:0,clipPathIdx:0}}function yX(e,t,n,r){return gX(`svg`,`root`,{width:e,height:t,xmlns:pX,"xmlns:xlink":mX,version:`1.1`,baseProfile:`full`,viewBox:r?`0 0 `+e+` `+t:!1},n)}var MMe=0;function bX(){return MMe++}var xX={cubicIn:`0.32,0,0.67,0`,cubicOut:`0.33,1,0.68,1`,cubicInOut:`0.65,0,0.35,1`,quadraticIn:`0.11,0,0.5,0`,quadraticOut:`0.5,1,0.89,1`,quadraticInOut:`0.45,0,0.55,1`,quarticIn:`0.5,0,0.75,0`,quarticOut:`0.25,1,0.5,1`,quarticInOut:`0.76,0,0.24,1`,quinticIn:`0.64,0,0.78,0`,quinticOut:`0.22,1,0.36,1`,quinticInOut:`0.83,0,0.17,1`,sinusoidalIn:`0.12,0,0.39,0`,sinusoidalOut:`0.61,1,0.88,1`,sinusoidalInOut:`0.37,0,0.63,1`,exponentialIn:`0.7,0,0.84,0`,exponentialOut:`0.16,1,0.3,1`,exponentialInOut:`0.87,0,0.13,1`,circularIn:`0.55,0,1,0.45`,circularOut:`0,0.55,0.45,1`,circularInOut:`0.85,0,0.15,1`},SX=`transform-origin`;function NMe(e,t,n){var r=Z({},e.shape);Z(r,t),e.buildPath(n,r);var i=new uX;return i.reset(NN(e)),n.rebuildPath(i,1),i.generateStr(),i.getStr()}function PMe(e,t){var n=t.originX,r=t.originY;(n||r)&&(e[SX]=n+`px `+r+`px`)}var FMe={fill:`fill`,opacity:`opacity`,lineWidth:`stroke-width`,lineDashOffset:`stroke-dashoffset`};function CX(e,t){var n=t.zrId+`-ani-`+t.cssAnimIdx++;return t.cssAnims[n]=e,n}function IMe(e,t,n){var r=e.shape.paths,i={},a,o;if(Q(r,function(e){var t=vX(n.zrId);t.animation=!0,TX(e,{},t,!0);var r=t.cssAnims,s=t.cssNodes,c=dA(r),l=c.length;if(l){o=c[l-1];var u=r[o];for(var d in u){var f=u[d];i[d]=i[d]||{d:``},i[d].d+=f.d||``}for(var p in s){var m=s[p].animation;m.indexOf(o)>=0&&(a=m)}}}),a){t.d=!1;var s=CX(i,n);return a.replace(o,s)}}function wX(e){return gA(e)?xX[e]?`cubic-bezier(`+xX[e]+`)`:YM(e)?e:``:``}function TX(e,t,n,r){var i=e.animators,a=i.length,o=[];if(e instanceof oz){var s=IMe(e,t,n);if(s)o.push(s);else if(!a)return}else if(!a)return;for(var c={},l=0;l0}).length)return CX(l,n)+` `+i[0]+` both`}for(var g in c){var s=h(c[g]);s&&o.push(s)}if(o.length){var _=n.zrId+`-cls-`+bX();n.cssNodes[`.`+_]={animation:o.join(`,`)},t.class=_}}function LMe(e,t,n){if(!e.ignore)if(e.isSilent()){var r={"pointer-events":`none`};EX(r,t,n,!0)}else{var i=e.states.emphasis&&e.states.emphasis.style?e.states.emphasis.style:{},a=i.fill;if(!a){var o=e.style&&e.style.fill,s=e.states.select&&e.states.select.style&&e.states.select.style.fill,c=e.currentStates.indexOf(`select`)>=0&&s||o;c&&(a=bN(c))}var l=i.lineWidth;if(l){var u=!i.strokeNoScale&&e.transform?e.transform[0]:1;l/=u}var r={cursor:`pointer`};a&&(r.fill=a),i.stroke&&(r.stroke=i.stroke),l&&(r[`stroke-width`]=l),EX(r,t,n,!0)}}function EX(e,t,n,r){var i=JSON.stringify(e),a=n.cssStyleCache[i];a||(a=n.zrId+`-cls-`+bX(),n.cssStyleCache[i]=a,n.cssNodes[`.`+a+(r?`:hover`:``)]=e),t.class=t.class?t.class+` `+a:a}var DX=Math.round;function OX(e){return e&&gA(e.src)}function kX(e){return e&&hA(e.toDataURL)}function AX(e,t,n,r){TMe(function(i,a){var o=i===`fill`||i===`stroke`;o&&jN(a)?RX(t,e,i,r):o&&ON(a)?zX(n,e,i,r):e[i]=a,o&&r.ssr&&a===`none`&&(e[`pointer-events`]=`visible`)},t,n,!1),WMe(n,e,r)}function jX(e,t){var n=aF(t);n&&(n.each(function(t,n){t!=null&&(e[(`ecmeta_`+n).toLowerCase()]=t+``)}),t.isSilent()&&(e[OMe+`silent`]=`true`))}function MX(e){return wN(e[0]-1)&&wN(e[1])&&wN(e[2])&&wN(e[3]-1)}function RMe(e){return wN(e[4])&&wN(e[5])}function NX(e,t,n){if(t&&!(RMe(t)&&MX(t))){var r=n?10:1e4;e.transform=MX(t)?`translate(`+DX(t[4]*r)/r+` `+DX(t[5]*r)/r+`)`:qSe(t)}}function PX(e,t,n){for(var r=e.points,i=[],a=0;a`u`){var g=`Image width/height must been given explictly in svg-ssr renderer.`;MA(f,g),MA(p,g)}else if(f==null||p==null){var _=function(e,t){if(e){var n=e.elm,r=f||t.width,i=p||t.height;e.tag===`pattern`&&(l?(i=1,r/=a.width):u&&(r=1,i/=a.height)),e.attrs.width=r,e.attrs.height=i,n&&(n.setAttribute(`width`,r),n.setAttribute(`height`,i))}},v=EI(m,null,e,function(e){c||_(S,e),_(d,e)});v&&v.width&&v.height&&(f||=v.width,p||=v.height)}d=gX(`image`,`img`,{href:m,width:f,height:p}),o.width=f,o.height=p}else i.svgElement&&(d=Qk(i.svgElement),o.width=i.svgWidth,o.height=i.svgHeight);if(d){var y,b;c?y=b=1:l?(b=1,y=o.width/a.width):u?(y=1,b=o.height/a.height):o.patternUnits=`userSpaceOnUse`,y!=null&&!isNaN(y)&&(o.width=y),b!=null&&!isNaN(b)&&(o.height=b);var x=PN(i);x&&(o.patternTransform=x);var S=gX(`pattern`,``,o,[d]),C=_X(S),w=r.patternCache,T=w[C];T||(T=r.zrId+`-p`+r.patternIdx++,w[C]=T,o.id=T,S=r.defs[T]=gX(`pattern`,T,o,[d])),t[n]=MN(T)}}function GMe(e,t,n){var r=n.clipPathCache,i=n.defs,a=r[e.id];if(!a){a=n.zrId+`-c`+n.clipPathIdx++;var o={id:a};r[e.id]=a,i[a]=gX(`clipPath`,a,o,[IX(e,n)])}t[`clip-path`]=MN(a)}function BX(e){return document.createTextNode(e)}function VX(e,t,n){e.insertBefore(t,n)}function HX(e,t){e.removeChild(t)}function UX(e,t){e.appendChild(t)}function WX(e){return e.parentNode}function GX(e){return e.nextSibling}function KX(e,t){e.textContent=t}var qX=58,KMe=120,qMe=gX(``,``);function JX(e){return e===void 0}function YX(e){return e!==void 0}function JMe(e,t,n){for(var r={},i=t;i<=n;++i){var a=e[i].key;a!==void 0&&(r[a]=i)}return r}function XX(e,t){var n=e.key===t.key;return e.tag===t.tag&&n}function ZX(e){var t,n=e.children,r=e.tag;if(YX(r)){var i=e.elm=hX(r);if(eZ(qMe,e),mA(n))for(t=0;ta?(m=n[c+1]==null?null:n[c+1].elm,QX(e,m,n,i,c)):$X(e,t,r,a))}function tZ(e,t){var n=t.elm=e.elm,r=e.children,i=t.children;e!==t&&(eZ(e,t),JX(t.text)?YX(r)&&YX(i)?r!==i&&YMe(n,r,i):YX(i)?(YX(e.text)&&KX(n,``),QX(n,null,i,0,i.length-1)):YX(r)?$X(n,r,0,r.length-1):YX(e.text)&&KX(n,``):e.text!==t.text&&(YX(r)&&$X(n,r,0,r.length-1),KX(n,t.text)))}function XMe(e,t){if(XX(e,t))tZ(e,t);else{var n=e.elm,r=WX(n);ZX(t),r!==null&&(VX(r,t.elm,GX(n)),$X(r,[e],0,0))}return t}var ZMe=0,QMe=function(){function e(e,t,n){if(this.type=`svg`,this.configLayer=$Me(`configLayer`),this.storage=t,this._opts=n=Z({},n),this.root=e,this._id=`zr`+ZMe++,this._oldVNode=yX(n.width,n.height),e&&!n.ssr){var r=this._viewport=document.createElement(`div`);r.style.cssText=`position:relative;overflow:hidden`;var i=this._svgDom=this._oldVNode.elm=hX(`svg`);eZ(null,this._oldVNode),r.appendChild(i),e.appendChild(r)}this.resize(n.width,n.height)}return e.prototype.getType=function(){return this.type},e.prototype.getViewportRoot=function(){return this._viewport},e.prototype.getViewportRootOffset=function(){var e=this.getViewportRoot();if(e)return{offsetLeft:e.offsetLeft||0,offsetTop:e.offsetTop||0}},e.prototype.getSvgDom=function(){return this._svgDom},e.prototype.refresh=function(){if(this.root){var e=this.renderToVNode({willUpdate:!0});e.attrs.style=`position:absolute;left:0;top:0;user-select:none`,XMe(this._oldVNode,e),this._oldVNode=e}},e.prototype.renderOneToVNode=function(e){return LX(e,vX(this._id))},e.prototype.renderToVNode=function(e){e||={};var t=this.storage.getDisplayList(!0),n=this._width,r=this._height,i=vX(this._id);i.animation=e.animation,i.willUpdate=e.willUpdate,i.compress=e.compress,i.emphasis=e.emphasis,i.ssr=this._opts.ssr;var a=[],o=this._bgVNode=eNe(n,r,this._backgroundColor,i);o&&a.push(o);var s=e.compress?null:this._mainVNode=gX(`g`,`main`,{},[]);this._paintList(t,i,s?s.children:a),s&&a.push(s);var c=sA(dA(i.defs),function(e){return i.defs[e]});if(c.length&&a.push(gX(`defs`,`defs`,{},c)),e.animation){var l=jMe(i.cssNodes,i.cssAnims,{newline:!0});if(l){var u=gX(`style`,`stl`,{},[],l);a.push(u)}}return yX(n,r,a,e.useViewBox)},e.prototype.renderToString=function(e){return e||={},_X(this.renderToVNode({animation:OA(e.cssAnimation,!0),emphasis:OA(e.cssEmphasis,!0),willUpdate:!1,compress:!0,useViewBox:OA(e.useViewBox,!0)}),{newline:!0})},e.prototype.setBackgroundColor=function(e){this._backgroundColor=e},e.prototype.getSvgRoot=function(){return this._mainVNode&&this._mainVNode.elm},e.prototype._paintList=function(e,t,n){for(var r=e.length,i=[],a=0,o,s,c=0,l=0;l=0&&!(d&&s&&d[m]===s[m]);m--);for(var h=p-1;h>m;h--)a--,o=i[a-1];for(var g=m+1;g=a}}for(var l=iZ(this),u=l.startIdx;u=0)&&(a=!0)}),!(!a&&!i.__dirty)){var o=n._opts.useDirtyRect&&!rZ(i)?i.createRepaintRects(e,t,n._width,n._height):null,s=n._i.layerStack[0],c=!0;if(i.__dirty){c=!1,i.__dirty=!1;var l=i.zlevel===s.zl&&i.zlevel2===s.zl2?n._backgroundColor:null;i.clear(!1,l,o)}fZ(i,function(t){var a=n._paintPerCursor(i,t,e,o,c);r&&=a})}},vZ),Rk.wxa&&mZ(this._i,function(e){e&&e.ctx&&e.ctx.draw&&e.ctx.draw()}),r},e.prototype._paintPerCursor=function(e,t,n,r,i){var a=e.ctx;if(r)if(!r.length)t.drawIdx=t.endIdx;else for(var o=this.dpr,s=0;s=t.endIdx},e.prototype._paintPerCursorInRect=function(e,t,n,r,i){for(var a={inHover:!1,allClipped:!1,prevEl:null,viewWidth:this._width,viewHeight:this._height,beforeBrushParam:{contentRetained:i}},o=e.ctx,s=rZ(e),c=s&&zk.getTime(),l=t.drawIdx,u=t.notClearIdx,d=u>=0?Math.min(u,l):l;d15){d++;break}}}jG(o,a),t.drawIdx=Math.max(d,l)},e.prototype.getLayer=function(e,t){return this._ensureLayer(e,0,t)},e.prototype._ensureLayer=function(e,t,n){t||=0;var r=this._singleCanvas;r&&!this._needsManuallyCompositing&&(e=sZ,t=0);var i=pZ(this._i,e)[t];return i||(i=uZ(`zr_`+e+`.`+t,this,e,t),this._layerConfig[e]&&$k(i,this._layerConfig[e],!0),(n||r&&e!==sZ)&&(i.virtual=!0),this._insertLayer(i,e,t,!1),i.initContext()),i},e.prototype.insertLayer=function(e,t){this._insertLayer(t,e,0,!1)},e.prototype._insertLayer=function(e,t,n,r){var i=this._i,a=i.layers,o=i.layerStack,s=this._domRoot,c=null;if(!(a[t]&&a[t][n])&&rNe(e)){for(var l=o.length,u=0;u0&&(c=pZ(i,o[u-1].zl)[o[u-1].zl2]),o.splice(u,0,{zl:t,zl2:n}),pZ(i,t)[n]=e,!r&&!e.virtual)if(c){var d=c.dom;d.nextSibling?s.insertBefore(e.dom,d.nextSibling):s.appendChild(e.dom)}else s.firstChild?s.insertBefore(e.dom,s.firstChild):s.appendChild(e.dom);e.painter||=this}},e.prototype.eachLayer=function(e,t){return mZ(this._i,function(n,r){e.call(t,n,r)})},e.prototype.eachBuiltinLayer=function(e,t){return mZ(this._i,function(n,r){e.call(t,n,r)},hZ)},e.prototype.eachOtherLayer=function(e,t){return mZ(this._i,function(n,r){e.call(t,n,r)},gZ)},e.prototype.getLayers=function(){var e={};return mZ(this._i,function(t,n,r){e[t.id]=t}),e},e.prototype._updateLayerStatus=function(e,t){var n=this;if(n._singleCanvas)for(var r=1;r=0;a--){var o=i.get(r[a]);if(!o.used)t.__dirty=!0,i.removeKey(r[a]),r.splice(a,1);else{var s=o.endIdxNew;(rZ(t)?s=0;r--){var i=t[r];if(i.zl===e){var a=n[e][i.zl2];if(a.__builtin__)continue;if(t.splice(r,1),n[e][i.zl2]=void 0,!a.virtual){var o=a.dom.parentNode;o&&o.removeChild(a.dom)}}}},e.prototype.resize=function(e,t){if(this._domRoot.style){var n=this._domRoot;n.style.display=`none`;var r=this._opts,i=this.root;e!=null&&(r.width=e),t!=null&&(r.height=t),e=dG(i,0,r),t=dG(i,1,r),n.style.display=``,(this._width!==e||t!==this._height)&&(n.style.width=e+`px`,n.style.height=t+`px`,mZ(this._i,function(n){n.resize(e,t)}),this.refresh({paintAll:!0})),this._width=e,this._height=t}else{if(e==null||t==null)return;this._width=e,this._height=t,this._ensureLayer(sZ).resize(e,t)}return this},e.prototype.clearLayer=function(e){Q(this._i.layers[e],function(e){e&&!e.__builtin__&&e.clear()})},e.prototype.dispose=function(){this.root.innerHTML=``,this.root=this.storage=this._domRoot=this._i=null},e.prototype.getRenderedCanvas=function(e){if(e||={},this._singleCanvas&&!this._compositeManually)return this._i.layers[sZ][0].dom;var t=new aZ(`image`,this,e.pixelRatio||this.dpr);t.initContext(),t.clear(!1,e.backgroundColor||this._backgroundColor);var n=t.ctx;if(e.pixelRatio<=this.dpr){this.refresh();var r=t.dom.width,i=t.dom.height;mZ(this._i,function(e){e.__builtin__?n.drawImage(e.dom,0,0,r,i):e.renderToCanvas&&(n.save(),e.renderToCanvas(n),n.restore())})}else{for(var a={inHover:!1,viewWidth:this._width,viewHeight:this._height,beforeBrushParam:{}},o=this.storage.getDisplayList(!0),s=0,c=o.length;s-1&&(s.style.stroke=s.style.fill,s.style.fill=$.color.neutral00,s.style.lineWidth=2),t},t.type=`series.line`,t.dependencies=[`grid`,`polar`],t.defaultOption={z:3,coordinateSystem:`cartesian2d`,legendHoverLink:!0,clip:!0,label:{position:`top`},endLabel:{show:!1,valueAnimation:!0,distance:8},lineStyle:{width:2,type:`solid`},emphasis:{scale:!0},step:!1,smooth:!1,smoothMonotone:null,symbol:`emptyCircle`,symbolSize:6,symbolRotate:null,showSymbol:!0,showAllSymbol:`auto`,connectNulls:!1,sampling:`none`,animationEasing:`linear`,progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:`clone`},triggerLineEvent:!1,triggerEvent:!1},t}(lW);function yZ(e,t){var n=e.mapDimensionsAll(`defaultedLabel`),r=n.length;if(r===1){var i=CU(e,t,n[0]);return i==null?null:i+``}else if(r){for(var a=[],o=0;o=0&&r.push(t[a])}return r.join(` `)}var xZ=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this)||this;return a.updateData(t,n,r,i),a}return t.prototype._createSymbol=function(e,t,n,r,i,a){this.removeAll();var o=aG(e,-1,-1,2,2,null,a);o.attr({z2:OA(i,100),culling:!0,scaleX:r[0]/2,scaleY:r[1]/2}),o.drift=uNe,this._symbolType=e,this.add(o)},t.prototype.stopSymbolAnimation=function(e){this.childAt(0).stopAnimation(null,e)},t.prototype.getSymbolType=function(){return this._symbolType},t.prototype.getSymbolPath=function(){return this.childAt(0)},t.prototype.highlight=function(){eR(this.childAt(0))},t.prototype.downplay=function(){tR(this.childAt(0))},t.prototype.setZ=function(e,t){var n=this.childAt(0);n.zlevel=e,n.z=t},t.prototype.setDraggable=function(e,t){var n=this.childAt(0);n.draggable=e,n.cursor=!t&&e?`move`:n.cursor},t.prototype.updateData=function(e,n,r,i){this.silent=!1;var a=e.getItemVisual(n,`symbol`)||`circle`,o=e.hostModel,s=t.getSymbolSize(e,n),c=t.getSymbolZ2(e,n),l=a!==this._symbolType,u=i&&i.disableAnimation;if(l){var d=e.getItemVisual(n,`symbolKeepAspect`);this._createSymbol(a,e,n,s,c,d)}else{var f=this.childAt(0);f.silent=!1;var p={scaleX:s[0]/2,scaleY:s[1]/2};u?f.attr(p):Sz(f,p,o,n),Oz(f)}if(this._updateCommon(e,n,s,r,i),l){var f=this.childAt(0);if(!u){var p={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:f.style.opacity}};f.scaleX=f.scaleY=0,f.style.opacity=0,Cz(f,p,o,n)}}u&&this.childAt(0).stopAnimation(`leave`)},t.prototype._updateCommon=function(e,t,n,r,i){var a=this.childAt(0),o=e.hostModel,s,c,l,u,d,f,p,m,h;if(r&&(s=r.emphasisItemStyle,c=r.blurItemStyle,l=r.selectItemStyle,u=r.focus,d=r.blurScope,p=r.labelStatesModels,m=r.hoverScale,h=r.cursorStyle,f=r.emphasisDisabled),!r||e.hasItemOption){var g=r&&r.itemModel?r.itemModel:e.getItemModel(t),_=g.getModel(`emphasis`);s=_.getModel(`itemStyle`).getItemStyle(),l=g.getModel([`select`,`itemStyle`]).getItemStyle(),c=g.getModel([`blur`,`itemStyle`]).getItemStyle(),u=_.get(`focus`),d=_.get(`blurScope`),f=_.get(`disabled`),p=CB(g),m=_.getShallow(`scale`),h=g.getShallow(`cursor`)}var v=e.getItemVisual(t,`symbolRotate`);a.attr(`rotation`,(v||0)*Math.PI/180||0);var y=sG(e.getItemVisual(t,`symbolOffset`),n);y&&(a.x=y[0],a.y=y[1]),h&&a.attr(`cursor`,h);var b=e.getItemVisual(t,`style`),x=b.fill;if(a instanceof wL){var S=a.style;a.useStyle(Z({image:S.image,x:S.x,y:S.y,width:S.width,height:S.height},b))}else a.__isEmptyBrush?a.useStyle(Z({},b)):a.useStyle(b),a.style.decal=null,a.setColor(x,i&&i.symbolInnerColor),a.style.strokeNoScale=!0;var C=e.getItemVisual(t,`liftZ`),w=this._z2;C==null?w!=null&&(a.z2=w,this._z2=null):w??(this._z2=a.z2,a.z2+=C);var T=i&&i.useNameLabel;SB(a,p,{labelFetcher:o,labelDataIndex:t,defaultText:E,inheritColor:x,defaultOpacity:b.opacity});function E(t){return T?e.getName(t):yZ(e,t)}this._sizeX=n[0]/2,this._sizeY=n[1]/2;var D=a.ensureState(`emphasis`);D.style=s,a.ensureState(`select`).style=l,a.ensureState(`blur`).style=c;var O=m==null||m===!0?Math.max(1.1,3/this._sizeY):isFinite(m)&&m>0?+m:1;D.scaleX=this._sizeX*O,D.scaleY=this._sizeY*O,this.setSymbolScale(1),pR(this,u,d,f)},t.prototype.setSymbolScale=function(e){this.scaleX=this.scaleY=e},t.prototype.fadeOut=function(e,t,n){var r=this.childAt(0),i=ML(this).dataIndex,a=n&&n.animation;if(this.silent=r.silent=!0,n&&n.fadeLabel){var o=r.getTextContent();o&&Tz(o,{style:{opacity:0}},t,{dataIndex:i,removeOpt:a,cb:function(){r.removeTextContent()}})}else r.removeTextContent();Tz(r,{style:{opacity:0},scaleX:0,scaleY:0},t,{dataIndex:i,cb:e,removeOpt:a})},t.getSymbolSize=function(e,t){return oG(e.getItemVisual(t,`symbolSize`))},t.getSymbolZ2=function(e,t){return e.getItemVisual(t,`z2`)},t}($P);function uNe(e,t){this.parent.drift(e,t)}function SZ(e,t,n,r){return t&&!isNaN(t[0])&&!isNaN(t[1])&&!(r&&r.isIgnore&&r.isIgnore(n))&&!(r&&r.clipShape&&!r.clipShape.contain(t[0],t[1]))&&e.getItemVisual(n,`symbol`)!==`none`}function CZ(e){return e!=null&&!yA(e)&&(e={isIgnore:e}),e||{}}function wZ(e){var t=e.hostModel,n=t.getModel(`emphasis`);return{emphasisItemStyle:n.getModel(`itemStyle`).getItemStyle(),blurItemStyle:t.getModel([`blur`,`itemStyle`]).getItemStyle(),selectItemStyle:t.getModel([`select`,`itemStyle`]).getItemStyle(),focus:n.get(`focus`),blurScope:n.get(`blurScope`),emphasisDisabled:n.get(`disabled`),hoverScale:n.get(`scale`),labelStatesModels:CB(t),cursorStyle:t.get(`cursor`)}}function TZ(e,t,n,r,i,a,o){var s=new e(t,n,r,i);return s.setPosition(a),t.setItemGraphicEl(n,s),o.add(s),s}var EZ=function(){function e(e){this.group=new $P,this._SymbolCtor=e||xZ}return e.prototype.updateData=function(e,t){this._progressiveEls=null,t=CZ(t);var n=this.group,r=e.hostModel,i=this._data,a=this._SymbolCtor,o=t.disableAnimation,s=this._seriesScope=wZ(e),c={disableAnimation:o},l=t.getSymbolPoint||function(t){return e.getItemLayout(t)};i||n.removeAll(),e.diff(i).add(function(r){var i=l(r);SZ(e,i,r,t)&&TZ(a,e,r,s,c,i,n)}).update(function(u,d){var f=i.getItemGraphicEl(d),p=l(u);if(!SZ(e,p,u,t)){n.remove(f);return}var m=e.getItemVisual(u,`symbol`)||`circle`,h=f&&f.getSymbolType&&f.getSymbolType();if(!f||h&&h!==m)n.remove(f),f=new a(e,u,s,c),f.setPosition(p);else{f.updateData(e,u,s,c);var g={x:p[0],y:p[1]};o?f.attr(g):Sz(f,g,r)}n.add(f),e.setItemGraphicEl(u,f)}).remove(function(e){var t=i.getItemGraphicEl(e);t&&t.fadeOut(function(){n.remove(t)},r)}).execute(),this._getSymbolPoint=l,this._data=e},e.prototype.updateLayout=function(e){var t=this._data;if(t)for(var n=this,r=t.getStore(),i=0,a=r.count();i0?n=r[0]:r[1]<0&&(n=r[1]),n}function OZ(e,t,n,r){var i=NaN;e.stacked&&(i=n.get(n.getCalculationInfo(`stackedOverDimension`),r)),isNaN(i)&&(i=e.valueStart);var a=e.baseDataOffset,o=[];return o[a]=n.get(e.baseDim,r),o[1-a]=i,t.dataToPoint(o)}function kZ(e,t){return!isFinite(e)||!isFinite(t)}var fNe=typeof Float32Array<`u`?Float32Array:void 0,pNe=typeof Float64Array<`u`?Float64Array:void 0;function AZ(e){return jZ({ctor:fNe},e).arr}function jZ(e,t){var n=e.arr,r=e.ctor;if(t>AF&&(t=AF),!n||e.typed&&n.length=i||h<0)break;if(kZ(_,v)){if(c){h+=a;continue}break}if(h===n)e[a>0?`moveTo`:`lineTo`](_,v),d=_,f=v;else{var y=_-l,b=v-u;if(y*y+b*b<.5){h+=a;continue}if(o>0){for(var x=h+a,S=t[x*2],C=t[x*2+1];S===_&&C===v&&g=r||kZ(S,C))p=_,m=v;else{E=S-l,D=C-u;var A=_-l,j=S-_,M=v-u,N=C-v,P=void 0,F=void 0;if(s===`x`){P=Math.abs(A),F=Math.abs(j);var I=E>0?1:-1;p=_-I*P*o,m=v,O=_+I*F*o,k=v}else if(s===`y`){P=Math.abs(M),F=Math.abs(N);var L=D>0?1:-1;p=_,m=v-L*P*o,O=_,k=v+L*F*o}else P=Math.sqrt(A*A+M*M),F=Math.sqrt(j*j+N*N),T=F/(F+P),p=_-E*o*(1-T),m=v-D*o*(1-T),O=_+E*o*T,k=v+D*o*T,O=MZ(O,NZ(S,_)),k=MZ(k,NZ(C,v)),O=NZ(O,MZ(S,_)),k=NZ(k,MZ(C,v)),E=O-_,D=k-v,p=_-E*P/F,m=v-D*P/F,p=MZ(p,NZ(l,_)),m=MZ(m,NZ(u,v)),p=NZ(p,MZ(l,_)),m=NZ(m,MZ(u,v)),E=_-p,D=v-m,O=_+E*F/P,k=v+D*F/P}e.bezierCurveTo(d,f,p,m,_,v),d=O,f=k}else e.lineTo(_,v)}l=_,u=v,h+=a}return g}var FZ=function(){function e(){this.smooth=0,this.smoothConstraint=!0}return e}(),gNe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`ec-polyline`,n}return t.prototype.getDefaultStyle=function(){return{stroke:$.color.neutral99,fill:null}},t.prototype.getDefaultShape=function(){return new FZ},t.prototype.buildPath=function(e,t){var n=t.points,r=0,i=n.length/2;if(t.connectNulls){for(;i>0&&kZ(n[i*2-2],n[i*2-1]);i--);for(;r=0){var _=o?(d-a)*g+a:(u-i)*g+i;return o?[e,_]:[_,e]}i=u,a=d;break;case r.C:u=n[c++],d=n[c++],f=n[c++],p=n[c++],m=n[c++],h=n[c++];var v=o?BM(i,u,f,m,e,s):BM(a,d,p,h,e,s);if(v>0)for(var y=0;y=0){var _=o?RM(a,d,p,h,b):RM(i,u,f,m,b);return o?[e,_]:[_,e]}}i=m,a=h;break}}},t}(SL),_Ne=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t}(FZ),IZ=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`ec-polygon`,n}return t.prototype.getDefaultShape=function(){return new _Ne},t.prototype.buildPath=function(e,t){var n=t.points,r=t.stackedOnPoints,i=0,a=n.length/2,o=t.smoothMonotone;if(t.connectNulls){for(;a>0&&kZ(n[a*2-2],n[a*2-1]);a--);for(;i=0,a=e.fill||$.color.neutral99;JZ(r,t);var o=r.textFill==null;return i?o&&(r.textFill=n.insideFill||$.color.neutral00,!r.textStroke&&n.insideStroke&&(r.textStroke=n.insideStroke),!r.textStroke&&(r.textStroke=a),r.textStrokeWidth??=2):(o&&(r.textFill=e.fill||n.outsideFill||$.color.neutral00),!r.textStroke&&n.outsideStroke&&(r.textStroke=n.outsideStroke)),r.text=t.text,r.rich=t.rich,Q(t.rich,function(e){JZ(e,e)}),r}function JZ(e,t){t&&(UA(t,`fill`)&&(e.textFill=t.fill),UA(t,`stroke`)&&(e.textStroke=t.fill),UA(t,`lineWidth`)&&(e.textStrokeWidth=t.lineWidth),UA(t,`font`)&&(e.font=t.font),UA(t,`fontStyle`)&&(e.fontStyle=t.fontStyle),UA(t,`fontWeight`)&&(e.fontWeight=t.fontWeight),UA(t,`fontSize`)&&(e.fontSize=t.fontSize),UA(t,`fontFamily`)&&(e.fontFamily=t.fontFamily),UA(t,`align`)&&(e.textAlign=t.align),UA(t,`verticalAlign`)&&(e.textVerticalAlign=t.verticalAlign),UA(t,`lineHeight`)&&(e.textLineHeight=t.lineHeight),UA(t,`width`)&&(e.textWidth=t.width),UA(t,`height`)&&(e.textHeight=t.height),UA(t,`backgroundColor`)&&(e.textBackgroundColor=t.backgroundColor),UA(t,`padding`)&&(e.textPadding=t.padding),UA(t,`borderColor`)&&(e.textBorderColor=t.borderColor),UA(t,`borderWidth`)&&(e.textBorderWidth=t.borderWidth),UA(t,`borderRadius`)&&(e.textBorderRadius=t.borderRadius),UA(t,`shadowColor`)&&(e.textBoxShadowColor=t.shadowColor),UA(t,`shadowBlur`)&&(e.textBoxShadowBlur=t.shadowBlur),UA(t,`shadowOffsetX`)&&(e.textBoxShadowOffsetX=t.shadowOffsetX),UA(t,`shadowOffsetY`)&&(e.textBoxShadowOffsetY=t.shadowOffsetY),UA(t,`textShadowColor`)&&(e.textShadowColor=t.textShadowColor),UA(t,`textShadowBlur`)&&(e.textShadowBlur=t.textShadowBlur),UA(t,`textShadowOffsetX`)&&(e.textShadowOffsetX=t.textShadowOffsetX),UA(t,`textShadowOffsetY`)&&(e.textShadowOffsetY=t.textShadowOffsetY))}function YZ(e,t){if(e.length===t.length){for(var n=0;nt){a?n.push(o(a,c,t)):i&&n.push(o(i,c,0),o(i,c,t));break}else i&&=(n.push(o(i,c,0)),null),n.push(c),a=c}return n}function bNe(e,t,n){var r=e.getVisual(`visualMeta`);if(!(!r||!r.length||!e.count())&&t.type===`cartesian2d`){for(var i,a,o=r.length-1;o>=0;o--){var s=e.getDimensionInfo(r[o].dimension);if(i=s&&s.coordDim,i===`x`||i===`y`){a=r[o];break}}if(a){var c=t.getAxis(i),l=sA(a.stops,function(e){return{coord:c.toGlobalCoord(c.dataToCoord(e.value)),color:e.color}}),u=l.length,d=a.outerColors.slice();u&&l[0].coord>l[u-1].coord&&(l.reverse(),d.reverse());var f=yNe(l,i===`x`?n.getWidth():n.getHeight()),p=f.length;if(!p&&u)return l[0].coord<0?d[1]?d[1]:l[u-1].color:d[0]?d[0]:l[0].color;var m=10,h=f[0].coord-m,g=f[p-1].coord+m,_=g-h;if(_<.001)return`transparent`;Q(f,function(e){e.offset=(e.coord-h)/_}),f.push({offset:p?f[p-1].offset:.5,color:d[1]||`transparent`}),f.unshift({offset:p?f[0].offset:.5,color:d[0]||`transparent`});var v=new cz(0,0,0,0,f,!0);return v[i]=h,v[i+`2`]=g,v}}}function xNe(e,t,n){var r=e.get(`showAllSymbol`),i=r===`auto`;if(!(r&&!i)){var a=n.getAxesByScale(`ordinal`)[0];if(a&&!(i&&SNe(a,t))){var o=t.mapDimension(a.dim),s={};return Q(a.getViewLabels(),function(e){e.tick.offInterval||(s[SJ(a.scale,e.tick)]=1)}),function(e){return!s.hasOwnProperty(t.get(o,e))}}}}function SNe(e,t){var n=e.getExtent(),r=Math.abs(n[1]-n[0])/e.scale.count();isNaN(r)&&(r=0);for(var i=t.count(),a=Math.max(1,Math.round(i/5)),o=0;or)return!1;return!0}function CNe(e){for(var t=e.length/2;t>0&&kZ(e[t*2-2],e[t*2-1]);t--);return t-1}function eQ(e,t){return[e[t*2],e[t*2+1]]}function wNe(e,t,n){for(var r=e.length/2,i=n===`x`?0:1,a,o,s=0,c=-1,l=0;l=t||a>=t&&o<=t){c=l;break}s=l,a=o}return{range:[s,c],t:(t-a)/(o-a)}}function tQ(e){if(e.get([`endLabel`,`show`]))return!0;for(var t=0;t0&&e.get([`emphasis`,`lineStyle`,`width`])===`bolder`){var M=f.getState(`emphasis`).style;M.lineWidth=+f.style.lineWidth+1}ML(f).seriesIndex=e.seriesIndex,pR(f,k,A,j);var N=QZ(e.get(`smooth`)),P=e.get(`smoothMonotone`);if(f.setShape({smooth:N,smoothMonotone:P,connectNulls:x}),p){var F=a.getCalculationInfo(`stackedOnSeries`),I=0;p.useStyle(nA(s.getAreaStyle(),{fill:E,opacity:.7,lineJoin:`bevel`,decal:a.getVisual(`style`).decal})),F&&(I=QZ(F.get(`smooth`))),p.setShape({smooth:N,stackedOnSmooth:I,smoothMonotone:P,connectNulls:x}),gR(p,e,`areaStyle`),ML(p).seriesIndex=e.seriesIndex,pR(p,k,A,j)}var L=this._changePolyState;a.eachItemGraphicEl(function(e){e&&(e.onHoverStateChange=L)}),this._polyline.onHoverStateChange=L,this._data=a,this._coordSys=r,this._stackedOnPoints=y,this._points=c,this._step=w,this._valueOrigin=_;var R=e.get(`triggerEvent`),z=e.get(`triggerLineEvent`),B=z===!0||R===!0||R===`line`,V=z===!0||R===!0||R===`area`;this.packEventData(e,f,B),p&&this.packEventData(e,p,V)},t.prototype.packEventData=function(e,t,n){ML(t).eventData=n?{componentType:`series`,componentSubType:`line`,componentIndex:e.componentIndex,seriesIndex:e.seriesIndex,seriesName:e.name,seriesType:`line`,selfType:t===this._polygon?`area`:`line`}:null},t.prototype.highlight=function(e,t,n,r){var i=e.getData(),a=eI(i,r);if(this._changePolyState(`emphasis`),!(a instanceof Array)&&a!=null&&a>=0){var o=i.getLayout(`points`),s=i.getItemGraphicEl(a);if(!s){var c=o[a*2],l=o[a*2+1];if(kZ(c,l)||this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(c,l))return;var u=e.get(`zlevel`)||0,d=e.get(`z`)||0;s=new xZ(i,a),s.x=c,s.y=l,s.setZ(u,d);var f=s.getSymbolPath().getTextContent();f&&(f.zlevel=u,f.z=d,f.z2=this._polyline.z2+1),s.__temp=!0,i.setItemGraphicEl(a,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else gW.prototype.highlight.call(this,e,t,n,r)},t.prototype.downplay=function(e,t,n,r){var i=e.getData(),a=eI(i,r);if(this._changePolyState(`normal`),a!=null&&a>=0){var o=i.getItemGraphicEl(a);o&&(o.__temp?(i.setItemGraphicEl(a,null),this.group.remove(o)):o.downplay())}else gW.prototype.downplay.call(this,e,t,n,r)},t.prototype._changePolyState=function(e){var t=this._polygon;ZL(this._polyline,e),t&&ZL(t,e)},t.prototype._newPolyline=function(e){var t=this._polyline;return t&&this._lineGroup.remove(t),t=new gNe({shape:{points:e},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(t),this._polyline=t,t},t.prototype._newPolygon=function(e,t){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new IZ({shape:{points:e,stackedOnPoints:t},segmentIgnoreThreshold:2}),this._lineGroup.add(n),this._polygon=n,n},t.prototype._initSymbolLabelAnimation=function(e,t,n){var r,i,a=t.getBaseAxis(),o=a.inverse;t.type===`cartesian2d`?(r=a.isHorizontal(),i=!1):t.type===`polar`&&(r=a.dim===`angle`,i=!0);var s=e.hostModel,c=s.get(`animationDuration`);hA(c)&&(c=c(null));var l=s.get(`animationDelay`)||0,u=hA(l)?l(null):l;e.eachItemGraphicEl(function(e,a){var s=e;if(s){var d=[e.x,e.y],f=void 0,p=void 0,m=void 0;if(n)if(i){var h=n,g=t.pointToCoord(d);r?(f=h.startAngle,p=h.endAngle,m=-g[1]/180*Math.PI):(f=h.r0,p=h.r,m=g[0])}else{var _=n;r?(f=_.x,p=_.x+_.width,m=e.x):(f=_.y+_.height,p=_.y,m=e.y)}var v=p===f?0:(m-f)/(p-f);o&&(v=1-v);var y=hA(l)?l(a):c*v+u,b=s.getSymbolPath(),x=b.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:y}),x&&x.animateFrom({style:{opacity:0}},{duration:300,delay:y}),b.disableLabelAnimation=!0}})},t.prototype._initOrUpdateEndLabel=function(e,t,n){var r=e.getModel(`endLabel`);if(tQ(e)){var i=e.getData(),a=this._polyline,o=i.getLayout(`points`);if(!o){a.removeTextContent(),this._endLabel=null;return}var s=this._endLabel;s||(s=this._endLabel=new AL({z2:200}),s.ignoreClip=!0,a.setTextContent(this._endLabel),a.disableLabelAnimation=!0);var c=CNe(o);c>=0&&(SB(a,CB(e,`endLabel`),{inheritColor:n,labelFetcher:e,labelDataIndex:c,defaultText:function(e,t,n){return n==null?yZ(i,e):bZ(i,n)},enableTextSetter:!0},TNe(r,t)),a.textConfig.position=null)}else this._endLabel&&=(this._polyline.removeTextContent(),null)},t.prototype._endLabelOnDuring=function(e,t,n,r,i,a,o){var s=this._endLabel,c=this._polyline;if(s){e<1&&r.originalX==null&&(r.originalX=s.x,r.originalY=s.y);var l=n.getLayout(`points`),u=n.hostModel,d=u.get(`connectNulls`),f=a.get(`precision`),p=a.get(`distance`)||0,m=o.getBaseAxis(),h=m.isHorizontal(),g=m.inverse,_=t.shape,v=g?h?_.x:_.y+_.height:h?_.x+_.width:_.y,y=(h?p:0)*(g?-1:1),b=(h?0:-p)*(g?-1:1),x=h?`x`:`y`,S=wNe(l,v,x),C=S.range,w=C[1]-C[0],T=void 0;if(w>=1){if(w>1&&!d){var E=eQ(l,C[0]);s.attr({x:E[0]+y,y:E[1]+b}),i&&(T=u.getRawValue(C[0]))}else{var E=c.getPointOn(v,x);E&&s.attr({x:E[0]+y,y:E[1]+b});var D=u.getRawValue(C[0]),O=u.getRawValue(C[1]);i&&(T=lwe(n,f,D,O,S.t))}r.lastFrameIndex=C[0]}else{var k=e===1||r.lastFrameIndex>0?C[0]:0,E=eQ(l,k);i&&(T=u.getRawValue(k)),s.attr({x:E[0]+y,y:E[1]+b})}if(i){var A=jB(s);typeof A.setLabelText==`function`&&A.setLabelText(T)}}},t.prototype._doUpdateAnimation=function(e,t,n,r,i,a,o){var s=this._polyline,c=this._polygon,l=e.hostModel,u=hNe(this._data,e,this._stackedOnPoints,t,this._coordSys,n,this._valueOrigin,a),d=u.current,f=u.stackedOnCurrent,p=u.next,m=u.stackedOnNext;if(i&&(f=$Z(u.stackedOnCurrent,u.current,n,i,o),d=$Z(u.current,null,n,i,o),m=$Z(u.stackedOnNext,u.next,n,i,o),p=$Z(u.next,null,n,i,o)),ZZ(d,p)>3e3||c&&ZZ(f,m)>3e3){s.stopAnimation(),s.setShape({points:p}),c&&(c.stopAnimation(),c.setShape({points:p,stackedOnPoints:m}));return}s.shape.__points=u.current,s.shape.points=d;var h={shape:{points:p}};u.current!==d&&(h.shape.__points=u.next),s.stopAnimation(),Sz(s,h,l),c&&(c.setShape({points:d,stackedOnPoints:f}),c.stopAnimation(),Sz(c,{shape:{stackedOnPoints:m}},l),s.shape.points!==c.shape.points&&(c.shape.points=s.shape.points));for(var g=[],_=u.status,v=0;v<_.length;v++)if(_[v].cmd===`=`){var y=e.getItemGraphicEl(_[v].idx1);y&&g.push({el:y,ptIdx:v})}s.animators&&s.animators.length&&s.animators[0].during(function(){c&&c.dirtyShape();for(var e=s.shape.__points,t=0;tt&&(t=e[n]);return isFinite(t)?t:NaN},min:function(e){for(var t=1/0,n=0;n10&&a.type===`cartesian2d`&&i){var s=a.getBaseAxis(),c=a.getOtherAxis(s),l=s.getExtent(),u=n.getDevicePixelRatio(),d=Math.abs(l[1]-l[0])*(u||1),f=Math.round(o/d);if(isFinite(f)&&f>1){i===`lttb`?e.setData(r.lttbDownSample(r.mapDimension(c.dim),1/f)):i===`minmax`&&e.setData(r.minmaxDownSample(r.mapDimension(c.dim),1/f));var p=void 0;gA(i)?p=DNe[i]:hA(i)&&(p=i),p&&e.setData(r.downSample(r.mapDimension(c.dim),1/f,p,ONe))}}}}}function kNe(e){e.registerChartView(ENe),e.registerSeriesModel(lNe),e.registerLayout(rQ(`line`,!0)),e.registerVisual({seriesType:`line`,reset:function(e){var t=e.getData(),n=e.getModel(`lineStyle`).getLineStyle();n&&!n.stroke&&(n.stroke=t.getVisual(`style`).fill),t.setVisual(`legendLineStyle`,n)}}),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,iQ(`line`))}var aQ=function(e){X(t,e);function t(t,n,r,i,a){var o=e.call(this,t,n,r)||this;return o.index=0,o.type=i||`value`,o.position=a||`bottom`,o}return t.prototype.isHorizontal=function(){var e=this.position;return e===`top`||e===`bottom`},t.prototype.getGlobalExtent=function(e){var t=this.getExtent();return t[0]=this.toGlobalCoord(t[0]),t[1]=this.toGlobalCoord(t[1]),e&&t[0]>t[1]&&t.reverse(),t},t.prototype.pointToData=function(e,t){return this.coordToData(this.toLocalCoord(e[this.dim===`x`?0:1]),t)},t.prototype.setCategorySortInfo=function(e){if(this.type!==`category`)return!1;this.model.option.categorySortInfo=e,this.scale.setSortInfo(e)},t}(xY),oQ=null;function ANe(e){oQ||=e}function sQ(){return oQ}var cQ=`expandAxisBreak`,jNe=`collapseAxisBreak`,MNe=`toggleAxisBreak`,lQ=`axisbreakchanged`,NNe={type:cQ,event:lQ,update:`update`,refineEvent:uQ},PNe={type:jNe,event:lQ,update:`update`,refineEvent:uQ},FNe={type:MNe,event:lQ,update:`update`,refineEvent:uQ};function uQ(e,t,n,r){var i=[];return Q(e,function(e){i=i.concat(e.eventBreaks)}),{eventContent:{breaks:i}}}function INe(e){e.registerAction(NNe,t),e.registerAction(PNe,t),e.registerAction(FNe,t);function t(e,t){var n=[],r=nI(t,e);function i(t,i){Q(r[t],function(t){Q(t.updateAxisBreaks(e).breaks,function(e){var r;n.push(nA((r={},r[i]=t.componentIndex,r),e))})})}return i(`xAxisModels`,`xAxisIndex`),i(`yAxisModels`,`yAxisIndex`),i(`singleAxisModels`,`singleAxisIndex`),{eventBreaks:n}}}var dQ=Math.PI,LNe=[[1,2,1,2],[5,3,5,3],[8,3,8,3]],RNe=[[0,1,0,1],[0,3,0,3],[0,3,0,3]],fQ=tI(),pQ=tI(),mQ=function(){function e(e){this.recordMap={},this.resolveAxisNameOverlap=e}return e.prototype.ensureRecord=function(e){var t=e.axis.dim,n=e.componentIndex,r=this.recordMap,i=r[t]||(r[t]=[]);return i[n]||(i[n]={ready:{}})},e}();function zNe(e,t,n,r){var i=n.axis,a=t.ensureRecord(n),o=[],s,c=OQ(e.axisName)&&vJ(e.nameLocation);Q(r,function(e){var t=GY(e);if(!(!t||t.label.ignore)){o.push(t);var n=a.transGroup;c&&(n.transform?zj(hQ,n.transform):Nj(hQ),t.transform&&Fj(hQ,hQ,t.transform),eM.copy(gQ,t.localRect),gQ.applyTransform(hQ),s?s.union(gQ):eM.copy(s=new eM(0,0,0,0),gQ))}});var l=Math.abs(a.dirVec.x)>.1?`x`:`y`,u=a.transGroup[l];if(o.sort(function(e,t){return Math.abs(e.label[l]-u)-Math.abs(t.label[l]-u)}),c&&s){var d=i.getExtent(),f=Math.min(d[0],d[1]),p=Math.max(d[0],d[1])-f;s.union(new eM(f,0,p,1))}a.stOccupiedRect=s,a.labelInfoList=o}var hQ=Mj(),gQ=new eM(0,0,0,0),_Q=function(e,t,n,r,i,a){if(vJ(e.nameLocation)){var o=a.stOccupiedRect;o&&vQ(pMe({},o,a.transGroup.transform),r,i)}else yQ(a.labelInfoList,a.dirVec,r,i)};function vQ(e,t,n){var r=new Vj;$Y(e,t,r,{direction:Math.atan2(n.y,n.x),bidirectional:!1,touchThreshold:.05})&&JY(t,r)}function yQ(e,t,n,r){for(var i=Vj.dot(r,t)>=0,a=0,o=e.length;a0?`top`:`bottom`,i=`center`):MF(r-dQ)?(a=n>0?`bottom`:`top`,i=`center`):(a=`middle`,i=r>0&&r0?`right`:`left`:n>0?`left`:`right`),{rotation:r,textAlign:i,textVerticalAlign:a}},e.makeAxisEventDataBase=function(e){var t={componentType:e.mainType,componentIndex:e.componentIndex};return t[e.mainType+`Index`]=e.componentIndex,t},e.isLabelSilent=function(e){var t=e.get(`tooltip`);return e.get(`silent`)||!(e.get(`triggerEvent`)||t&&t.show)},e}(),BNe=[`axisLine`,`axisTickLabelEstimate`,`axisTickLabelDetermine`,`axisName`],VNe={axisLine:function(e,t,n,r,i,a,o){var s=r.get([`axisLine`,`show`]);if(s===`auto`&&(s=!0,e.raw.axisLineAutoShow!=null&&(s=!!e.raw.axisLineAutoShow)),s){var c=r.axis.getExtent(),l=a.transform,u=[c[0],0],d=[c[1],0],f=u[0]>d[0];l&&(uj(u,u,l),uj(d,d,l));var p=Z({lineCap:`round`},r.getModel([`axisLine`,`lineStyle`]).getLineStyle()),m={strokeContainThreshold:e.raw.strokeContainThreshold||5,silent:!0,z2:1,style:p};if(r.get([`axisLine`,`breakLine`])&&eV(r.axis.scale))sQ().buildAxisBreakLine(r,i,a,m);else{var h=new tz(Z({shape:{x1:u[0],y1:u[1],x2:d[0],y2:d[1]}},m));Hz(h.shape,h.style.lineWidth),h.anid=`line`,i.add(h)}var g=r.get([`axisLine`,`symbol`]);if(g!=null){var _=r.get([`axisLine`,`symbolSize`]);gA(g)&&(g=[g,g]),(gA(_)||vA(_))&&(_=[_,_]);var v=sG(r.get([`axisLine`,`symbolOffset`])||0,_),y=_[0],b=_[1];Q([{rotate:e.rotation+Math.PI/2,offset:v[0],r:0},{rotate:e.rotation-Math.PI/2,offset:v[1],r:Math.sqrt((u[0]-d[0])*(u[0]-d[0])+(u[1]-d[1])*(u[1]-d[1]))}],function(t,n){if(g[n]!==`none`&&g[n]!=null){var r=aG(g[n],-y/2,-b/2,y,b,p.stroke,!0),a=t.r+t.offset,o=f?d:u;r.attr({rotation:t.rotate,x:o[0]+a*Math.cos(e.rotation),y:o[1]-a*Math.sin(e.rotation),silent:!0,z2:11}),i.add(r)}})}}},axisTickLabelEstimate:function(e,t,n,r,i,a,o,s){wQ(t,i,s)&&xQ(e,t,n,r,i,a,o,uY.estimate)},axisTickLabelDetermine:function(e,t,n,r,i,a,o,s){wQ(t,i,s)&&xQ(e,t,n,r,i,a,o,uY.determine);var c=GNe(e,i,a,r);WNe(e,t.labelLayoutList,c),KNe(e,i,a,r,e.tickDirection)},axisName:function(e,t,n,r,i,a,o,s){var c=n.ensureRecord(r);t.nameEl&&=(i.remove(t.nameEl),c.nameLayout=c.nameLocation=null);var l=e.axisName;if(OQ(l)){var u=e.nameLocation,d=e.nameDirection,f=r.getModel(`nameTextStyle`),p=r.get(`nameGap`)||0,m=r.axis.getExtent(),h=r.axis.inverse?-1:1,g=new Vj(0,0),_=new Vj(0,0);u===`start`?(g.x=m[0]-h*p,_.x=-h):u===`end`?(g.x=m[1]+h*p,_.x=h):(g.x=(m[0]+m[1])/2,g.y=e.labelOffset+d*p,_.y=d);var v=Mj();_.transform(Lj(v,v,e.rotation));var y=r.get(`nameRotate`);y!=null&&(y=y*dQ/180);var b,x;vJ(u)?b=bQ.innerTextLayout(e.rotation,y??e.rotation,d):(b=HNe(e.rotation,u,y||0,m),x=e.raw.axisNameAvailableWidth,x!=null&&(x=Math.abs(x/Math.sin(b.rotation)),!isFinite(x)&&(x=null)));var S=f.getFont(),C=r.get(`nameTruncate`,!0)||{},w=C.ellipsis,T=DA(e.raw.nameTruncateMaxWidth,C.maxWidth,x),E=s.nameMarginLevel||0,D=new AL({x:g.x,y:g.y,rotation:b.rotation,silent:bQ.isLabelSilent(r),style:wB(f,{text:l,font:S,overflow:`truncate`,width:T,ellipsis:w,fill:f.getTextColor()||r.get([`axisLine`,`lineStyle`,`color`]),align:f.get(`align`)||b.textAlign,verticalAlign:f.get(`verticalAlign`)||b.textVerticalAlign}),z2:1});if(iB({el:D,componentModel:r,itemName:l}),D.__fullText=l,D.anid=`name`,r.get(`triggerEvent`)){var O=bQ.makeAxisEventDataBase(r);O.targetType=`axisName`,O.name=l,ML(D).eventData=O}a.add(D),D.updateTransform(),t.nameEl=D;var k=c.nameLayout=GY({label:D,priority:D.z2,defaultAttr:{ignore:D.ignore},marginDefault:vJ(u)?LNe[E]:RNe[E]});if(c.nameLocation=u,i.add(D),D.decomposeTransform(),e.shouldNameMoveOverlap&&k){var A=n.ensureRecord(r);n.resolveAxisNameOverlap(e,n,r,k,_,A)}}}};function xQ(e,t,n,r,i,a,o,s){TQ(t)||qNe(e,t,i,s,r,o);var c=t.labelLayoutList;JNe(e,r,c,a),ZNe(r,e.rotation,c);var l=e.optionHideOverlap;UNe(r,c,l),l&&QY(lA(c,function(e){return e&&!e.label.ignore})),zNe(e,n,r,c)}function HNe(e,t,n,r){var i=jF(n-e),a,o,s=r[0]>r[1],c=t===`start`&&!s||t!==`start`&&s;return MF(i-dQ/2)?(o=c?`bottom`:`top`,a=`center`):MF(i-dQ*1.5)?(o=c?`top`:`bottom`,a=`center`):(o=`middle`,a=idQ/2?c?`left`:`right`:c?`right`:`left`),{rotation:i,textAlign:a,textVerticalAlign:o}}function UNe(e,t,n){var r=e.axis,i=e.get([`axisLabel`,`customValues`]);if(tje(r))return;function a(e,a,o){var s=GY(t[a]),c=GY(t[o]),l=r.scale;if(!(!s||!c)){if(e==null){if(!n&&i)return;var u=fQ(s.label).labelInfo.tick;if(Uq(l)&&u.notNice||Gq(l)&&u.offInterval){SQ(s.label);return}}if(e===!1||s.suggestIgnore){SQ(s.label);return}if(c.suggestIgnore){SQ(c.label);return}var d=.1;if(!n){var f=[0,0,0,0];s=YY({marginForce:f},s),c=YY({marginForce:f},c)}$Y(s,c,null,{touchThreshold:d})&&SQ(e?c.label:s.label)}}var o=e.get([`axisLabel`,`showMinLabel`]),s=e.get([`axisLabel`,`showMaxLabel`]),c=t.length;a(o,0,1),a(s,c-1,c-2)}function WNe(e,t,n){e.showMinorTicks||Q(t,function(e){if(e&&e.label.ignore)for(var t=0;t=0&&n(r,e,t.getStore())})}var p=0;if(f(function(e,t,n){r.set(t.uid,1),(!i||!i.hasKey(t.uid))&&(o=!0),p+=n.count()}),(!i||i.keys().length!==r.keys().length)&&(o=!0),!o&&a!=null){t.liPosMinGap=a;return}jZ(AQ,p);var m=0;f(function(e,t,n){for(var r=0,i=n.count();r0&&v0?-2:-1,n.serUids=r}var AQ=jZ({ctor:pNe},50);function jQ(e){return function(t,n){var r=yY(t,{fromStat:{key:e}});if(WF(r.w2))return[-r.w2/2,r.w2/2]}}function MQ(e){return e+`|&`}function NQ(e,t){return e+`|&`+t}function PQ(e){return rPe(),{liPosMinGap:!Gq(e.scale)}}var FQ=`pictorialBar`;function IQ(e,t,n,r){IJ(e,{key:t,seriesType:n,coordSysType:r,getMetrics:PQ})}function LQ(e){return e.scale.rawExtentInfo.makeRenderInfo().startValue}var RQ={left:0,right:0,top:0,bottom:0},zQ=[`25%`,`25%`],BQ=`cartesian2d`,aPe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.mergeDefaultAndTheme=function(t,n){var r=sH(t.outerBounds);e.prototype.mergeDefaultAndTheme.apply(this,arguments),r&&t.outerBounds&&oH(t.outerBounds,r)},t.prototype.mergeOption=function(t,n){e.prototype.mergeOption.apply(this,arguments),this.option.outerBounds&&t.outerBounds&&oH(this.option.outerBounds,t.outerBounds)},t.type=`grid`,t.dependencies=[`xAxis`,`yAxis`],t.layoutMode=`box`,t.defaultOption={show:!1,z:0,left:`15%`,top:65,right:`10%`,bottom:80,containLabel:!1,outerBoundsMode:`auto`,outerBounds:RQ,outerBoundsContain:`all`,outerBoundsClampWidth:zQ[0],outerBoundsClampHeight:zQ[1],backgroundColor:$.color.transparent,borderWidth:1,borderColor:$.color.neutral30},t}(lH),oPe=hI(),VQ=`__ec_stack_`;function HQ(e){return e.get(`stack`)||VQ+e.seriesIndex}function sPe(e){if(Gq(e.axis.scale)){for(var t=yY(e.axis),n=[],r=0;ro&&(o=a),o!==u&&(t.width=o,n-=o+l*o,r--)}}),u=(n-c)/(r+(r-1)*l),u=uF(u,0);var d=0,f;Q(o,function(e){var t=s[e];t.width||=u,f=t,d+=t.width*(1+l)}),f&&(d-=f.width*l);var p={},m=-d/2;return Q(o,function(e){var n=s[e];p[e]=p[e]||{bandWidth:t,offset:m,width:n.width},m+=n.width*(1+l)}),p}function WQ(e){return{seriesType:e,overallReset:function(t){var n=NQ(e,BQ);jJ(t,n,function(t){var r=cPe(t,e);kJ(t,n,function(e){var t=r.columnMap[HQ(e)];e.getData().setLayout({bandWidth:t.bandWidth,offset:t.offset,size:t.width})})})}}}function GQ(e){return{seriesType:e,plan:mW(),reset:function(e){if(QNe(e)){var t=e.getData(),n=e.coordinateSystem,r=n.getBaseAxis(),i=n.getOtherAxis(r),a=t.getDimensionIndex(t.mapDimension(i.dim)),o=t.getDimensionIndex(t.mapDimension(r.dim)),s=e.get(`showBackground`,!0),c=t.mapDimension(i.dim),l=t.getCalculationInfo(`stackResultDimension`),u=Dq(t,c)&&!!t.getCalculationInfo(`stackedOnSeries`),d=i.isHorizontal(),f=i.toGlobalCoord(i.dataToCoord(LQ(i))),p=KQ(e),m=e.get(`barMinHeight`)||0,h=l&&t.getDimensionIndex(l),g=t.getLayout(`size`),_=t.getLayout(`offset`);return{progress:function(e,t){for(var r=e.count,i=p&&AZ(r*3),c=p&&s&&AZ(r*3),l=p&&AZ(r),v=n.master.getRect(),y=d?v.width:v.height,b,x=t.getStore(),S=0;(b=e.next())!=null;){var C=x.get(u?h:a,b),w=x.get(o,b),T=f,E=void 0;u&&(E=+C-x.get(a,b));var D=void 0,O=void 0,k=void 0,A=void 0;if(d){var j=n.dataToPoint([C,w]);u&&(T=n.dataToPoint([E,w])[0]),D=T,O=j[1]+_,k=j[0]-T,A=g,dF(k)s){u=(p+l)/2;break}f===1&&(d=m-r[0].tickValue)}u??(l?l&&(u=r[r.length-1].coord):u=r[0].coord),a[n]=e.toGlobalCoord(u)}});else{var o=this.getData(),s=o.getLayout(`offset`),c=o.getLayout(`size`),l=+!r.getBaseAxis().isHorizontal();a[l]+=s+c/2}return a}return[NaN,NaN]},t.prototype.__requireStartValue=function(e){return this.getBaseAxis()!==e},t.type=`series.__base_bar__`,t.defaultOption={z:2,coordinateSystem:`cartesian2d`,legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:`mod`,defaultBarGap:`10%`},t}(lW);lW.registerClass(JQ);var dPe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.getInitialData=function(){return kq(null,this,{useEncodeDefaulter:!0,createInvertedIndices:!!this.get(`realtimeSort`,!0)||null})},t.prototype.getProgressive=function(){return this.get(`large`)?this.get(`progressive`):!1},t.prototype.__preparePipelineContext=function(e,t){var n=_we(this,e,t);return n.progressiveRender&&(n.large=!0),n},t.prototype.brushSelector=function(e,t,n){return n.rect(t.getItemLayout(e))},t.type=`series.bar`,t.dependencies=[`grid`,`polar`],t.defaultOption=VB(JQ.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:$.color.primary,borderWidth:2}},realtimeSort:!1}),t}(JQ),fPe=function(){function e(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0}return e}(),YQ=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`sausage`,n}return t.prototype.getDefaultShape=function(){return new fPe},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.max(t.r0||0,0),a=Math.max(t.r,0),o=(a-i)*.5,s=i+o,c=t.startAngle,l=t.endAngle,u=t.clockwise,d=Math.PI*2,f=u?l-cMath.PI/2&&ua)return!0;a=l}return!1},t.prototype._isOrderDifferentInView=function(e,t){for(var n=t.scale,r=n.getExtent(),i=Math.max(0,r[0]),a=Math.min(r[1],n.getOrdinalMeta().categories.length-1);i<=a;++i)if(e.ordinalNumbers[i]!==n.getRawOrdinalNumber(i))return!0},t.prototype._updateSortWithinSameData=function(e,t,n,r){if(this._isOrderChangedWithinSameData(e,t,n)){var i=this._dataSort(e,n,t);this._isOrderDifferentInView(i,n)&&(this._removeOnRenderedListener(r),r.dispatchAction({type:`changeAxisOrder`,componentType:n.dim+`Axis`,axisId:n.index,sortInfo:i}))}},t.prototype._dispatchInitSort=function(e,t,n){var r=t.baseAxis,i=this._dataSort(e,r,function(n){return e.get(e.mapDimension(t.otherAxis.dim),n)});n.dispatchAction({type:`changeAxisOrder`,componentType:r.dim+`Axis`,isInitSort:!0,axisId:r.index,sortInfo:i})},t.prototype.remove=function(e,t){this._clear(this._model),this._removeOnRenderedListener(t)},t.prototype.dispose=function(e,t){this._removeOnRenderedListener(t)},t.prototype._removeOnRenderedListener=function(e){this._onRendered&&=(e.getZr().off(`rendered`,this._onRendered),null)},t.prototype._clear=function(e){var t=this.group,n=this._data;e&&e.isAnimationEnabled()&&n&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],n.eachItemGraphicEl(function(t){Dz(t,e,ML(t).dataIndex)})):t.removeAll(),this._data=null,this._isFirstFrame=!0},t.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},t.type=`bar`,t}(gW),t$={cartesian2d:function(e,t){var n=t.width<0?-1:1,r=t.height<0?-1:1;n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height);var i=e.x+e.width,a=e.y+e.height,o=$Q(t.x,e.x),s=e$(t.x+t.width,i),c=$Q(t.y,e.y),l=e$(t.y+t.height,a),u=si?s:o,t.y=d&&c>a?l:c,t.width=u?0:s-o,t.height=d?0:l-c,n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height),u||d},polar:function(e,t){var n=t.r0<=t.r?1:-1;if(n<0){var r=t.r;t.r=t.r0,t.r0=r}var i=e$(t.r,e.r),a=$Q(t.r0,e.r0);t.r=i,t.r0=a;var o=i-a<0;if(n<0){var r=t.r;t.r=t.r0,t.r0=r}return o}},n$={cartesian2d:function(e,t,n,r,i,a,o,s,c){var l=new OL({shape:Z({},r),z2:1});if(l.__dataIndex=n,l.name=`item`,a){var u=l.shape,d=i?`height`:`width`;u[d]=0}return l},polar:function(e,t,n,r,i,a,o,s,c){var l=!i&&c?YQ:XR,u=new l({shape:r,z2:1});if(u.name=`item`,u.calculateTextPosition=pPe(s$(i),{isRoundCap:l===YQ}),a){var d=u.shape,f=i?`r`:`endAngle`,p={};d[f]=i?r.r0:r.startAngle,p[f]=r[f],(s?Sz:Cz)(u,{shape:p},a)}return u}};function gPe(e,t){var n=e.get(`realtimeSort`,!0),r=t.getBaseAxis();if(n&&r.type===`category`&&t.type===`cartesian2d`)return{baseAxis:r,otherAxis:t.getOtherAxis(r)}}function r$(e,t,n,r,i,a,o,s){var c,l;a?(l={x:r.x,width:r.width},c={y:r.y,height:r.height}):(l={y:r.y,height:r.height},c={x:r.x,width:r.width}),s||(o?Sz:Cz)(n,{shape:c},t,i,null);var u=t?e.baseAxis.model:null;(o?Sz:Cz)(n,{shape:l},u,i)}function i$(e,t){for(var n=0;n0?1:-1,o=r.height>0?1:-1;return{x:r.x+a*i/2,y:r.y+o*i/2,width:r.width-a*i,height:r.height-o*i}},polar:function(e,t,n){var r=e.getItemLayout(t);return{cx:r.cx,cy:r.cy,r0:r.r0,r:r.r,startAngle:r.startAngle,endAngle:r.endAngle,clockwise:r.clockwise}}};function yPe(e){return e.startAngle!=null&&e.endAngle!=null&&e.startAngle===e.endAngle}function s$(e){return function(e){var t=e?`Arc`:`Angle`;return function(e){switch(e){case`start`:case`insideStart`:case`end`:case`insideEnd`:return e+t;default:return e}}}(e)}function c$(e,t,n,r,i,a,o,s){var c=t.getItemVisual(n,`style`);if(!s){var l=r.get([`itemStyle`,`borderRadius`])||0;e.setShape(`r`,l)}else if(!a.get(`roundCap`)){var u=e.shape;Z(u,QQ(r.getModel(`itemStyle`),u,!0)),e.setShape(u)}e.useStyle(c);var d=r.getShallow(`cursor`);d&&e.attr(`cursor`,d);var f=s?o?i.r>=i.r0?`endArc`:`startArc`:i.endAngle>=i.startAngle?`endAngle`:`startAngle`:o?wPe(i,a.coordinateSystem):TPe(i,a.coordinateSystem),p=CB(r);SB(e,p,{labelFetcher:a,labelDataIndex:n,defaultText:yZ(a.getData(),n),inheritColor:c.fill,defaultOpacity:c.opacity,defaultOutsidePosition:f});var m=e.getTextContent();if(s&&m){var h=r.get([`label`,`position`]);e.textConfig.inside=h===`middle`?!0:null,mPe(e,h===`outside`?f:h,s$(o),r.get([`label`,`rotate`]))}MB(m,p,a.getRawValue(n),function(e){return bZ(t,e)});var g=r.getModel([`emphasis`]);pR(e,g.get(`focus`),g.get(`blurScope`),g.get(`disabled`)),gR(e,r),yPe(i)&&(e.style.fill=`none`,e.style.stroke=`none`,Q(e.states,function(e){e.style&&(e.style.fill=e.style.stroke=`none`)}))}function bPe(e,t){var n=e.get([`itemStyle`,`borderColor`]);if(!n||n===`none`)return 0;var r=e.get([`itemStyle`,`borderWidth`])||0,i=isNaN(t.width)?Number.MAX_VALUE:Math.abs(t.width),a=isNaN(t.height)?Number.MAX_VALUE:Math.abs(t.height);return Math.min(r,i,a)}var xPe=function(){function e(){}return e}(),l$=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`largeBar`,n}return t.prototype.getDefaultShape=function(){return new xPe},t.prototype.buildPath=function(e,t){for(var n=t.points,r=this.baseDimIdx,i=1-this.baseDimIdx,a=[],o=[],s=this.barWidth,c=0;c=0?n:null},30,!1);function SPe(e,t,n){for(var r=e.baseDimIdx,i=1-r,a=e.shape.points,o=e.largeDataIndices,s=[],c=[],l=e.barWidth,u=0,d=a.length/3;u=s[0]&&t<=s[0]+c[0]&&n>=s[1]&&n<=s[1]+c[1])return o[u]}return-1}function f$(e,t,n){if(HZ(n,`cartesian2d`)){var r=t,i=n.getArea();return{x:e?r.x:i.x,y:e?i.y:r.y,width:e?r.width:i.width,height:e?i.height:r.height}}else{var i=n.getArea(),a=t;return{cx:i.cx,cy:i.cy,r0:e?i.r0:a.r0,r:e?i.r:a.r,startAngle:e?a.startAngle:0,endAngle:e?a.endAngle:Math.PI*2}}}function CPe(e,t,n){return new(e.type===`polar`?XR:OL)({shape:f$(t,n,e),silent:!0,z2:0})}function wPe(e,t){return e.height===0?t.getOtherAxis(t.getBaseAxis()).inverse?`bottom`:`top`:e.height>0?`bottom`:`top`}function TPe(e,t){return e.width===0?t.getOtherAxis(t.getBaseAxis()).inverse?`left`:`right`:e.width>=0?`right`:`left`}function EPe(e){e.registerChartView(hPe),e.registerSeriesModel(dPe),e.registerLayout(e.PRIORITY.VISUAL.LAYOUT,WQ(`bar`)),e.registerLayout(e.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,GQ(`bar`)),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,iQ(`bar`)),e.registerAction({type:`changeAxisOrder`,event:`changeAxisOrder`,update:`update`},function(e,t){var n=e.componentType||`series`;t.eachComponent({mainType:n,query:e},function(t){e.sortInfo&&t.axis.setCategorySortInfo(e.sortInfo)})}),qQ(e)}function p$(e){return{seriesType:e,reset:function(e,t){var n=t.findComponents({mainType:`legend`});if(!(!n||!n.length)){var r=e.getData();r.filterSelf(function(e){for(var t=r.getName(e),i=0;i=0},e.prototype.indexOfName=function(e){return this._getDataWithEncodedVisual().indexOfName(e)},e.prototype.getItemVisual=function(e,t){return this._getDataWithEncodedVisual().getItemVisual(e,t)},e}(),DPe=tI(),g$=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t){e.prototype.init.apply(this,arguments),this.legendVisualProvider=new h$(fA(this.getData,this),fA(this.getRawData,this)),this._defaultLabelLine(t)},t.prototype.mergeOption=function(){e.prototype.mergeOption.apply(this,arguments)},t.prototype.getInitialData=function(){return m$(this,{coordDimensions:[`value`],encodeDefaulter:pA(bH,this)})},t.prototype.getDataParams=function(t){var n=this.getData(),r=DPe(n),i=r.seats;if(!i){var a=[];n.each(n.mapDimension(`value`),function(e){a.push(e)}),i=r.seats=OF(a,n.hostModel.get(`percentPrecision`))}var o=e.prototype.getDataParams.call(this,t);return o.percent=i[t]||0,o.$vars.push(`percent`),o},t.prototype._defaultLabelLine=function(e){JF(e,`labelLine`,[`show`]);var t=e.labelLine,n=e.emphasis.labelLine;t.show=t.show&&e.label.show,n.show=n.show&&e.emphasis.label.show},t.type=`series.pie`,t.defaultOption={z:2,legendHoverLink:!0,colorBy:`data`,center:[`50%`,`50%`],radius:[0,`50%`],clockwise:!0,startAngle:90,endAngle:`auto`,padAngle:0,minAngle:0,minShowLabelAngle:0,selectedOffset:10,percentPrecision:2,stillShowZeroSum:!0,coordinateSystemUsage:`box`,left:0,top:0,right:0,bottom:0,width:null,height:null,label:{rotate:0,show:!0,overflow:`truncate`,position:`outer`,alignTo:`none`,edgeDistance:`25%`,distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:30,smooth:!1,minTurnAngle:90,maxSurfaceAngle:90,lineStyle:{width:1,type:`solid`}},itemStyle:{borderWidth:1,borderJoin:`round`},showEmptyCircle:!0,emptyCircleStyle:{color:`lightgray`,opacity:1},labelLayout:{hideOverlap:!0},emphasis:{scale:!0,scaleSize:5},avoidLabelOverlap:!0,animationType:`expansion`,animationDuration:1e3,animationTypeUpdate:`transition`,animationEasingUpdate:`cubicInOut`,animationDurationUpdate:500,animationEasing:`cubicInOut`},t}(lW);DDe({fullType:g$.type,getCoord2:function(e){return e.getShallow(`center`)}});var OPe=Math.PI/180;function _$(e,t,n,r,i,a,o,s,c,l){if(e.length<2)return;function u(e){for(var a=e.rB,o=a*a,s=0;sn?o:a,d=Math.abs(c.label.y-n);if(d>=l.maxY){var f=c.label.x-t-c.len2*i,p=r+c.len;l.rB=Math.abs(f)e.unconstrainedWidth?null:f:null;r.setStyle(`width`,p)}y$(a,r)}}}function y$(e,t){b$.rect=e,KY(b$,t,APe)}var APe={minMarginForce:[null,0,null,0],marginDefault:[1,0,1,0]},b$={};function x$(e){return e.position===`center`}function jPe(e){var t=e.getData(),n=[],r,i,a=!1,o=(e.get(`minShowLabelAngle`)||0)*OPe,s=t.getLayout(`viewRect`),c=t.getLayout(`r`),l=s.width,u=s.x,d=s.y,f=s.height;function p(e){e.ignore=!0}function m(e){if(!e.ignore)return!0;for(var t in e.states)if(e.states[t].ignore===!1)return!0;return!1}t.each(function(e){var s=t.getItemGraphicEl(e),d=s.shape,h=s.getTextContent(),g=s.getTextGuideLine(),_=t.getItemModel(e),v=_.getModel(`label`),y=v.get(`position`)||_.get([`emphasis`,`label`,`position`]),b=v.get(`distanceToLabelLine`),x=v.get(`alignTo`),S=bF(v.get(`edgeDistance`),l),C=v.get(`bleedMargin`);C??=Math.min(l,f)>200?10:2;var w=_.getModel(`labelLine`),T=w.get(`length`);T=bF(T,l);var E=w.get(`length2`);if(E=bF(E,l),Math.abs(d.endAngle-d.startAngle)0?`right`:`left`:O>0?`left`:`right`}var V=Math.PI,H=0,U=v.get(`rotate`);if(vA(U))H=V/180*U;else if(y===`center`)H=0;else if(U===`radial`||U===!0)H=O<0?-D+V:-D;else if(U===`tangential`||U===`tangential-noflip`&&y!==`outside`&&y!==`outer`){var W=Math.atan2(O,k);W<0&&(W=V*2+W),k>0&&U!==`tangential-noflip`&&(W=V+W),H=W-V}if(a=!!H,h.x=A,h.y=j,h.rotation=H,h.setStyle({verticalAlign:`middle`}),P){h.setStyle({align:N});var G=h.states.select;G&&(G.x+=h.x,G.y+=h.y)}else{var ee=new eM(0,0,0,0);y$(ee,h),n.push({label:h,labelLine:g,position:y,len:T,len2:E,minTurnAngle:w.get(`minTurnAngle`),maxSurfaceAngle:w.get(`maxSurfaceAngle`),surfaceNormal:new Vj(O,k),linePoints:M,textAlign:N,labelDistance:b,labelAlignTo:x,edgeDistance:S,bleedMargin:C,rect:ee,unconstrainedWidth:ee.width,labelStyleWidth:h.style.width})}s.setTextConfig({inside:P})}}),!a&&e.get(`avoidLabelOverlap`)&&kPe(n,r,i,c,l,f,u,d);for(var h=0;hr?(l=O+x*r/2,u=l):(l=O+C,u=i-C),n.setItemLayout(t,{angle:r,startAngle:l,endAngle:u,clockwise:_,cx:a,cy:o,r0:c,r:v?yF(e,b,[c,s]):s}),O=i}),E0){for(var c=i.getItemLayout(0),l=1;isNaN(c&&c.startAngle)&&l=n.r0}},t.type=`pie`,t}(gW);function IPe(e){return{seriesType:e,reset:function(e,t){var n=e.getData();n.filterSelf(function(e){var t=n.mapDimension(`value`),r=n.get(t,e);return!(vA(r)&&!isNaN(r)&&r<0)})}}}function LPe(e){e.registerChartView(FPe),e.registerSeriesModel(g$),qW(`pie`,e.registerAction),e.registerLayout(MPe),e.registerProcessor(p$(`pie`)),e.registerProcessor(IPe(`pie`))}var RPe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.hasSymbolVisual=!0,n}return t.prototype.getInitialData=function(e,t){return kq(null,this,{useEncodeDefaulter:!0})},t.prototype.getProgressive=function(){return this.option.progressive??(this.option.large?5e3:this.get(`progressive`))},t.prototype.getProgressiveThreshold=function(){return this.option.progressiveThreshold??(this.option.large?1e4:this.get(`progressiveThreshold`))},t.prototype.brushSelector=function(e,t,n){return n.point(t.getItemLayout(e))},t.prototype.getZLevelKey=function(){return this.getData().count()>this.getProgressiveThreshold()?this.id:``},t.type=`series.scatter`,t.dependencies=[`grid`,`polar`,`geo`,`singleAxis`,`calendar`,`matrix`],t.defaultOption={coordinateSystem:`cartesian2d`,z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:$.color.primary}},universalTransition:{divideShape:`clone`}},t}(lW),T$=4,zPe=function(){function e(){}return e}(),BPe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return t.prototype.getDefaultShape=function(){return new zPe},t.prototype.reset=function(){this.notClear=!1,this._off=0},t.prototype.beforeBrush=function(e){e&&!e.contentRetained&&this.reset()},t.prototype.buildPath=function(e,t){var n=t.points,r=t.size,i=this.symbolProxy,a=i.shape,o=e.getContext?e.getContext():e,s=o&&r[0]=0;s--){var c=s*2,l=r[c]-a/2,u=r[c+1]-o/2;if(e>=l&&t>=u&&e<=l+a&&t<=u+o)return s}return-1},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect();return e=n[0],t=n[1],r.contain(e,t)?(this.hoverDataIdx=this.findDataIndex(e,t))>=0:(this.hoverDataIdx=-1,!1)},t.prototype.getBoundingRect=function(){var e=this._rect;if(!e){for(var t=this.shape,n=t.points,r=t.size,i=r[0],a=r[1],o=1/0,s=1/0,c=-1/0,l=-1/0,u=0;u=0&&(c.dataIndex=n+(e.startIndex||0))})},e.prototype.remove=function(){this._clear()},e.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},e}(),HPe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r=e.getData();this._updateSymbolDraw(r,e).updateData(r,E$(e)),this._finished=!0},t.prototype.incrementalPrepareRender=function(e,t,n){var r=e.getData();this._updateSymbolDraw(r,e).incrementalPrepareUpdate(r),this._finished=!1},t.prototype.incrementalRender=function(e,t,n){this._symbolDraw.incrementalUpdate(e,t.getData(),_I(t),E$(t)),this._finished=e.end===t.getData().count()},t.prototype.updateTransform=function(e,t,n){var r=e.getData();if(this.group.dirty(),this._finished){var i=rQ(``).reset(e,t,n);i.progress&&i.progress({start:0,end:r.count(),count:r.count()},r),this._symbolDraw.updateLayout(E$(e))}else return{update:!0}},t.prototype.eachRendered=function(e){this._symbolDraw&&this._symbolDraw.eachRendered(e)},t.prototype._updateSymbolDraw=function(e,t){var n=this._symbolDraw,r=t.pipelineContext.large;return(!n||r!==this._isLargeDraw)&&(n&&n.remove(),n=this._symbolDraw=r?new VPe:new EZ,this._isLargeDraw=r,this.group.removeAll()),this.group.add(n.group),n},t.prototype.remove=function(e,t){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},t.prototype.dispose=function(){},t.type=`scatter`,t}(gW);function E$(e){return{clipShape:VZ(e)}}var D$=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.getCoordSysModel=function(){return this.getReferringComponents(`grid`,iI).models[0]},t.type=`cartesian2dAxis`,t}(lH);aA(D$,wJ);var O$={show:!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:`auto`,onZeroAxisIndex:null,lineStyle:{color:$.color.axisLine,width:1,type:`solid`},symbol:[`none`,`none`],symbolSize:[10,15],breakLine:!0},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,color:$.color.axisLabel,textMargin:[0,3]},splitLine:{show:!0,showMinLine:!0,showMaxLine:!0,lineStyle:{color:$.color.axisSplitLine,width:1,type:`solid`}},splitArea:{show:!1,areaStyle:{color:[$.color.backgroundTint,$.color.backgroundTransparent]}},breakArea:{show:!0,itemStyle:{color:$.color.neutral00,borderColor:$.color.border,borderWidth:1,borderType:[3,3],opacity:.6},zigzagAmplitude:4,zigzagMinSpan:4,zigzagMaxSpan:20,zigzagZ:100,expandOnClick:!0},breakLabelLayout:{moveOverlap:`auto`}},UPe=$k({boundaryGap:!0,deduplication:null,jitter:0,jitterOverlap:!0,jitterMargin:2,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:`auto`,show:`auto`},axisLabel:{interval:`auto`}},O$),k$=$k({boundaryGap:[0,0],axisLine:{show:`auto`},axisTick:{show:`auto`},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:$.color.axisMinorSplitLine,width:1}}},O$),A$={category:UPe,value:k$,time:$k({splitNumber:6,axisLabel:{rich:{primary:{fontWeight:`bold`}}},splitLine:{show:!1}},k$),log:nA({logBase:10},k$)};function j$(e,t,n,r){Q(dJ,function(i,a){var o=$k($k({},A$[a],!0),r,!0),s=function(e){X(n,e);function n(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t+`Axis.`+a,n}return n.prototype.mergeDefaultAndTheme=function(e,t){var n=aH(this),r=n?sH(e):{};$k(e,t.getTheme().get(a+`Axis`)),$k(e,this.getDefaultOption()),e.type=M$(e),n&&oH(e,r,n)},n.prototype.optionUpdated=function(){this.option.type===`category`&&(this.__ordinalMeta=jq.createByAxisModel(this))},n.prototype.getCategories=function(e){var t=this.option;if(t.type===`category`)return e?t.data:this.__ordinalMeta.categories},n.prototype.getOrdinalMeta=function(){return this.__ordinalMeta},n.prototype.updateAxisBreaks=function(e){var t=sQ();return t?t.updateModelAxisBreak(this,e):{breaks:[]}},n.type=t+`Axis.`+a,n.defaultOption=o,n}(n);e.registerComponentModel(s)}),e.registerSubTypeDefaulter(t+`Axis`,M$)}function M$(e){return e.type||(e.data?`category`:`value`)}var WPe=function(){function e(e){this.type=`cartesian`,this._dimList=[],this._axes={},this.name=e||``}return e.prototype.getAxis=function(e){return this._axes[e]},e.prototype.getAxes=function(){return sA(this._dimList,function(e){return this._axes[e]},this)},e.prototype.getAxesByScale=function(e){return e=e.toLowerCase(),lA(this.getAxes(),function(t){return t.scale.type===e})},e.prototype.addAxis=function(e){var t=e.dim;this._axes[t]=e,this._dimList.push(t)},e}(),N$=[`x`,`y`];function P$(e){return(e.type===`interval`||e.type===`time`)&&!eV(e)}var GPe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=BQ,t.dimensions=N$,t}return t.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var e=this.getAxis(`x`).scale,t=this.getAxis(`y`).scale;if(!(!P$(e)||!P$(t))){var n=Lq(e,null),r=Lq(t,null),i=this.dataToPoint([n[0],r[0]]),a=this.dataToPoint([n[1],r[1]]),o=n[1]-n[0],s=r[1]-r[0];if(!(!o||!s)){var c=(a[0]-i[0])/o,l=(a[1]-i[1])/s,u=i[0]-n[0]*c,d=i[1]-r[0]*l,f=this._transform=[c,0,0,l,u,d];this._invTransform=zj([],f)}}},t.prototype.getBaseAxis=function(){return this.getAxesByScale(`ordinal`)[0]||this.getAxesByScale(`time`)[0]||this.getAxis(`x`)},t.prototype.containPoint=function(e){var t=this.getAxis(`x`),n=this.getAxis(`y`);return t.contain(t.toLocalCoord(e[0]))&&n.contain(n.toLocalCoord(e[1]))},t.prototype.containData=function(e){return this.getAxis(`x`).containData(e[0])&&this.getAxis(`y`).containData(e[1])},t.prototype.containZone=function(e,t){var n=this.dataToPoint(e),r=this.dataToPoint(t),i=this.getArea(),a=new eM(n[0],n[1],r[0]-n[0],r[1]-n[1]);return i.intersect(a)},t.prototype.dataToPoint=function(e,t,n){n||=[];var r=e[0],i=e[1];if(this._transform&&r!=null&&isFinite(r)&&i!=null&&isFinite(i))return uj(n,e,this._transform);var a=this.getAxis(`x`),o=this.getAxis(`y`);return n[0]=a.toGlobalCoord(a.dataToCoord(r,t)),n[1]=o.toGlobalCoord(o.dataToCoord(i,t)),n},t.prototype.clampData=function(e,t){var n=this.getAxis(`x`).scale,r=this.getAxis(`y`).scale,i=n.getExtent(),a=r.getExtent(),o=n.parse(e[0]),s=r.parse(e[1]);return t||=[],t[0]=Math.min(Math.max(Math.min(i[0],i[1]),o),Math.max(i[0],i[1])),t[1]=Math.min(Math.max(Math.min(a[0],a[1]),s),Math.max(a[0],a[1])),t},t.prototype.pointToData=function(e,t,n){if(n||=[],this._invTransform)return uj(n,e,this._invTransform);var r=this.getAxis(`x`),i=this.getAxis(`y`);return n[0]=r.coordToData(r.toLocalCoord(e[0]),t),n[1]=i.coordToData(i.toLocalCoord(e[1]),t),n},t.prototype.getOtherAxis=function(e){return this.getAxis(e.dim===`x`?`y`:`x`)},t.prototype.getArea=function(e){e||=0;var t=this.getAxis(`x`).getGlobalExtent(),n=this.getAxis(`y`).getGlobalExtent(),r=Math.min(t[0],t[1])-e,i=Math.min(n[0],n[1])-e;return new eM(r,i,Math.max(t[0],t[1])-r+e,Math.max(n[0],n[1])-i+e)},t}(WPe);function F$(e,t){var n=e.scale,r=e.model,i=qJ(n,r,r.ecModel,e,null),a=Wq(n),o=Wq(t)?t.intervalStub:t,s=a?n.intervalStub:n,c=n.base,l=o.getTicks(),u=o.getTicks({expandToNicedExtent:!0}),d=l.length-1,f,p,m;if(d===1)f=p=0,m=1;else if(d===2){var h=dF(l[0].value-l[1].value),g=dF(l[1].value-l[2].value);f=p=0,h===g?m=2:(m=1,h=C[1])return!0})):b[1]?(T=C[1],A(function(){if(P(),k=CF(O-E*m,D),j(),w<=C[0])return!0})):A(function(){k=CF(mF(C[0]/E)*E,D),O=CF(pF(C[1]/E)*E,D);var e=fF((O-k)/E);if(e<=m){var t=m-e,n=void 0,r=i.incl0||a;if(r&&C[0]===0)n=[0,t];else if(r&&C[1]===0)n=[t,0];else{var o=pF(t/2);n=t%2==0?[o,o]:w+T=C[1])return!0}})}xJ(n,b,S,[w,T],x,{interval:E,intervalCount:m,intervalPrecision:D,niceExtent:[k,O]})}var I$=[[3,1],[0,2]],KPe=function(){function e(e,t,n){this.type=`grid`,this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=N$,this._initCartesian(e,t,n),this.model=e}return e.prototype.getRect=function(){return this._rect},e.prototype.update=function(e,t){var n=this._axesMap;Q(this._axesList,function(e){UJ(e,1);var t=e.scale;Gq(t)&&t.setSortInfo(e.model.get(`categorySortInfo`))});function r(e){for(var t=dA(e),n=[],r=t.length-1;r>=0;r--){var i=e[+t[r]];i.__alignTo?n.push(i):YJ(i)}Q(n,function(e){JPe(e,e.__alignTo)?YJ(e):F$(e,e.__alignTo.scale)})}r(n.x),r(n.y);var i={};Q(n.x,function(e){L$(n,`y`,e,i)}),Q(n.y,function(e){L$(n,`x`,e,i)}),this.resize(this.model,t)},e.prototype.resize=function(e,t,n){var r=rH(e,t),i=this._rect=eH(e.getBoxLayoutParams(),r.refContainer),a=this._axesMap,o=this._coordsList,s=e.get(`containLabel`);if(B$(a,i),!n){var c=ZPe(i,o,a,s,t),l=void 0;if(s)H$?(H$(this._axesList,i),B$(a,i)):l=U$(i.clone(),`axisLabel`,null,i,a,c,r);else{var u=QPe(e,i,r),d=u.outerBoundsRect,f=u.parsedOuterBoundsContain,p=u.outerBoundsClamp;d&&(l=U$(d,f,p,i,a,c,r))}W$(i,a,uY.determine,null,l,r),Q(this._coordsList,function(e){e.calcAffineTransform()})}},e.prototype.getAxis=function(e,t){var n=this._axesMap[e];if(n!=null)return n[t||0]},e.prototype.getAxes=function(){return this._axesList.slice()},e.prototype.getCartesian=function(e,t){if(e!=null&&t!=null){var n=`x`+e+`y`+t;return this._coordsMap[n]}yA(e)&&(t=e.yAxisIndex,e=e.xAxisIndex);for(var r=0,i=this._coordsList;r=0;i--){var a=e[+t[i]];Vq(a.scale)&&bJ(a.model,a.type,!0)==null&&(a.model.get(`alignTicks`)&&a.model.get(`interval`)==null?r.push(a):n=a)}n||=r.pop(),n&&Q(r,function(e){e.__alignTo=n})}function JPe(e,t){return eV(e.scale)||eV(t.scale)||t.scale.getTicks().length<2}function YPe(e,t){var n=e.getExtent(),r=n[0]+n[1];e.toGlobalCoord=e.dim===`x`?function(e){return e+t}:function(e){return r-e+t},e.toLocalCoord=e.dim===`x`?function(e){return e-t}:function(e){return r-e+t}}function B$(e,t){Q(e.x,function(e){return V$(e,t.x,t.width)}),Q(e.y,function(e){return V$(e,t.y,t.height)})}function V$(e,t,n){var r=[0,n],i=+!!e.inverse;e.setExtent(r[i],r[1-i]),YPe(e,t)}var H$;function XPe(e){H$=e}function U$(e,t,n,r,i,a,o){W$(r,i,uY.estimate,t,!1,o);var s=[0,0,0,0];l(0),l(1),u(r,0,NaN),u(r,1,NaN);var c=uA(s,function(e){return e>0})==null;return tB(r,s,!0,!0,n),B$(i,r),c;function l(e){Q(i[jz[e]],function(t){if(yJ(t.model)){var n=a.ensureRecord(t.model),r=n.labelInfoList;if(r)for(var i=0;i0&&!EA(t)&&t>1e-4&&(e/=t),e}}function ZPe(e,t,n,r,i){var a=new mQ($Pe);return Q(n,function(n){return Q(n,function(n){if(yJ(n.model)){var o=!r;n.axisBuilder=ePe(e,t,n.model,i,a,o)}})}),a}function W$(e,t,n,r,i,a){var o=n===uY.determine;Q(t,function(t){return Q(t,function(t){yJ(t.model)&&(tPe(t.axisBuilder,e,t.model),t.axisBuilder.build(o?{axisTickLabelDetermine:!0}:{axisTickLabelEstimate:!0},{noPxChange:i}))})});var s={x:0,y:0};c(0),c(1);function c(t){s[jz[1-t]]=e[Mz[t]]<=a.refContainer[Mz[t]]*.5?0:1-t==1?2:1}Q(t,function(e,t){return Q(e,function(e){yJ(e.model)&&((r===`all`||o)&&e.axisBuilder.build({axisName:!0},{nameMarginLevel:s[t]}),o&&e.axisBuilder.build({axisLine:!0}))})})}function QPe(e,t,n){var r,i=e.get(`outerBoundsMode`,!0);i===`same`?r=t.clone():(i==null||i===`auto`)&&(r=eH(e.get(`outerBounds`,!0)||RQ,n.refContainer));var a=e.get(`outerBoundsContain`,!0),o=a==null||a===`auto`||rA([`all`,`axisLabel`],a)<0?`all`:a,s=[xF(OA(e.get(`outerBoundsClampWidth`,!0),zQ[0]),t.width),xF(OA(e.get(`outerBoundsClampHeight`,!0),zQ[1]),t.height)];return{outerBoundsRect:r,parsedOuterBoundsContain:o,outerBoundsClamp:s}}var $Pe=function(e,t,n,r,i,a){var o=n.axis.dim===`x`?`y`:`x`;_Q(e,t,n,r,i,a),vJ(e.nameLocation)||Q(t.recordMap[o],function(e){e&&e.labelInfoList&&e.dirVec&&yQ(e.labelInfoList,e.dirVec,r,i)})};function eFe(e,t){var n={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return tFe(n,e,t),n.seriesInvolved&&rFe(n,e),n}function tFe(e,t,n){var r=t.getComponent(`tooltip`),i=t.getComponent(`axisPointer`),a=i.get(`link`,!0)||[],o=[];Q(n.getCoordinateSystems(),function(n){if(!n.axisPointerEnabled)return;var s=J$(n.model),c=e.coordSysAxesInfo[s]={};e.coordSysMap[s]=n;var l=n.model.getModel(`tooltip`,r);if(Q(n.getAxes(),pA(p,!1,null)),n.getTooltipAxes&&r&&l.get(`show`)){var u=l.get(`trigger`)===`axis`,d=l.get([`axisPointer`,`type`])===`cross`,f=n.getTooltipAxes(l.get([`axisPointer`,`axis`]));(u||d)&&Q(f.baseAxes,pA(p,d?`cross`:!0,u)),d&&Q(f.otherAxes,pA(p,`cross`,!1))}function p(r,s,u){var d=u.model.getModel(`axisPointer`,i),f=d.get(`show`);if(!(!f||f===`auto`&&!r&&!q$(d))){s??=d.get(`triggerTooltip`),d=r?nFe(u,l,i,t,r,s):d;var p=d.get(`snap`),m=d.get(`triggerEmphasis`),h=J$(u.model),g=s||p||u.type===`category`,_=e.axesInfo[h]={key:h,axis:u,coordSys:n,axisPointerModel:d,triggerTooltip:s,triggerEmphasis:m,involveSeries:g,snap:p,useHandle:q$(d),seriesModels:[],linkGroup:null};c[h]=_,e.seriesInvolved=e.seriesInvolved||g;var v=iFe(a,u);if(v!=null){var y=o[v]||(o[v]={axesInfo:{}});y.axesInfo[h]=_,y.mapper=a[v].mapper,_.linkGroup=y}}}})}function nFe(e,t,n,r,i,a){var o=t.getModel(`axisPointer`),s=[`type`,`snap`,`lineStyle`,`shadowStyle`,`label`,`animation`,`animationDurationUpdate`,`animationEasingUpdate`,`z`],c={};Q(s,function(e){c[e]=Qk(o.get(e))}),c.snap=e.type!==`category`&&!!a,o.get(`type`)===`cross`&&(c.type=`line`);var l=c.label||={};if(l.show??=!1,i===`cross`&&(l.show=o.get([`label`,`show`])??!0,!a)){var u=c.lineStyle=o.get(`crossStyle`);u&&nA(l,u.textStyle)}return e.model.getModel(`axisPointer`,new zB(c,n,r))}function rFe(e,t){t.eachSeries(function(t){var n=t.coordinateSystem,r=t.get([`tooltip`,`trigger`],!0),i=t.get([`tooltip`,`show`],!0);!n||!n.model||r===`none`||r===!1||r===`item`||i===!1||t.get([`axisPointer`,`show`],!0)===!1||Q(e.coordSysAxesInfo[J$(n.model)],function(e){var r=e.axis;n.getAxis(r.dim)===r&&(e.seriesModels.push(t),e.seriesDataCount??=0,e.seriesDataCount+=t.getData().count())})})}function iFe(e,t){for(var n=t.model,r=t.dim,i=0;i=0||e===t}function aFe(e){var t=K$(e);if(t){var n=t.axisPointerModel,r=t.axis.scale,i=n.option,a=n.get(`status`),o=n.get(`value`);o!=null&&(o=r.parse(o));var s=q$(n);a??(i.status=s?`show`:`hide`);var c=r.getExtent();(o==null||o>c[1])&&(o=c[1]),o0;return o&&s}var fFe=tI();function s1(e,t,n,r){if(e instanceof aQ&&e.scale.type!==`ordinal`)return n;var i=e.model,a=i.get(`jitter`);if(!(a>0))return n;var o=i.get(`jitterOverlap`),s=i.get(`jitterMargin`)||0,c=Gq(e.scale)?yY(e).w:null;return o?c1(n,a,c,r):pFe(e,t,n,r,a,s)}function c1(e,t,n,r){if(n===null)return e+(Math.random()-.5)*t;var i=n-r*2,a=Math.min(Math.max(0,t),i);return e+(Math.random()-.5)*a}function pFe(e,t,n,r,i,a){var o=fFe(e);o.items||=[];var s=o.items,c=l1(s,t,n,r,i,a,1),l=l1(s,t,n,r,i,a,-1),u=Math.abs(c-n)i/2||d&&f>d/2-r?c1(n,i,d,r):(s.push({fixedCoord:t,floatCoord:u,r}),u)}function l1(e,t,n,r,i,a,o){for(var s=n,c=0;ci/2)return Number.MAX_VALUE;if(o===1&&m>s||o===-1&&m0&&!f.min?f.min=0:f.min!=null&&f.min<0&&!f.max&&(f.max=0);var p=s;f.color!=null&&(p=nA({color:f.color},s));var m=$k(Qk(f),{boundaryGap:e,splitNumber:t,clockwise:n,scale:r,axisLine:i,axisTick:a,axisLabel:o,name:f.text,showName:c,nameLocation:`end`,nameGap:u,nameTextStyle:p,triggerEvent:d},!1);if(gA(l)){var h=m.name;m.name=l.replace(`{value}`,h??``)}else hA(l)&&(m.name=l(m.name,m));var g=new zB(m,null,this.ecModel);return aA(g,wJ.prototype),g.mainType=`radar`,g.componentIndex=this.componentIndex,g.uid=BB(`ec_radar`),g},this);this._indicatorModels=f},t.prototype.getIndicatorModels=function(){return this._indicatorModels},t.type=p1,t.defaultOption={z:0,center:[`50%`,`50%`],radius:`50%`,startAngle:90,clockwise:!1,axisName:{show:!0,color:$.color.axisLabel},boundaryGap:[0,0],splitNumber:5,axisNameGap:15,scale:!1,shape:`polygon`,axisLine:$k({lineStyle:{color:$.color.neutral20}},d1.axisLine),axisLabel:m1(d1.axisLabel,!1),axisTick:m1(d1.axisTick,!1),splitLine:m1(d1.splitLine,!0),splitArea:m1(d1.splitArea,!0),indicator:[]},t}(lH),SFe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){this.group.removeAll(),this._buildAxes(e,n),this._buildSplitLineAndArea(e)},t.prototype._buildAxes=function(e,t){var n=e.coordinateSystem;Q(sA(n.getIndicatorAxes(),function(e){var r=e.model.get(`showName`)?e.name:``;return new bQ(e.model,t,{axisName:r,position:[n.cx,n.cy],rotation:e.angle,labelDirection:-1,tickDirection:-1,nameDirection:1})}),function(e){e.build(),this.group.add(e.group)},this)},t.prototype._buildSplitLineAndArea=function(e){var t=e.coordinateSystem,n=t.getIndicatorAxes();if(!n.length)return;var r=e.get(`shape`),i=e.getModel(`splitLine`),a=e.getModel(`splitArea`),o=i.getModel(`lineStyle`),s=a.getModel(`areaStyle`),c=i.get(`show`),l=a.get(`show`),u=o.get(`color`),d=s.get(`color`),f=mA(u)?u:[u],p=mA(d)?d:[d],m=[],h=[];function g(e,t,n){var r=n%t.length;return e[r]=e[r]||[],r}if(r===`circle`)for(var _=n[0].getTicksCoords(),v=t.cx,y=t.cy,b=0;b<_.length;b++){if(c){var x=g(m,f,b);m[x].push(new LR({shape:{cx:v,cy:y,r:_[b].coord}}))}if(l&&b<_.length-1){var x=g(h,p,b);h[x].push(new ZR({shape:{cx:v,cy:y,r0:_[b].coord,r:_[b+1].coord}}))}}else for(var S,C=sA(n,function(e,n){var r=e.getTicksCoords();return S=S==null?r.length-1:Math.min(r.length-1,S),sA(r,function(e){return t.coordToPoint(e.coord,n)})}),w=[],b=0;b<=S;b++){for(var T=[],E=0;E3?1.4:i>1?1.2:1.1,c=r>0?s:1/s;this._checkTriggerMoveZoom(this,`zoom`,`zoomOnMouseWheel`,e,{scale:c,originX:a,originY:o,isAvailableBehavior:null})}if(n){var l=Math.abs(r),u=(r>0?1:-1)*(l>3?.4:l>1?.15:.05);this._checkTriggerMoveZoom(this,`scrollMove`,`moveOnMouseWheel`,e,{scrollDelta:u,originX:a,originY:o,isAvailableBehavior:null})}}}},t.prototype._pinchHandler=function(e){if(!(v1(this._zr,`globalPan`)||x1(e))){var t=e.pinchScale>1?1.1:1/1.1;this._checkTriggerMoveZoom(this,`zoom`,null,e,{scale:t,originX:e.pinchX,originY:e.pinchY,isAvailableBehavior:null})}},t.prototype._checkTriggerMoveZoom=function(e,t,n,r,i){e._checkPointer(r,i.originX,i.originY)&&(Oj(r.event),r.__ecRoamConsumed=!0,T1(e,t,n,r,i))},t}(mj);function x1(e){return e.__ecRoamConsumed}var MFe=tI();function S1(e){var t=MFe(e);return t.roam=t.roam||{},t.uniform=t.uniform||{},t}function C1(e,t,n,r){for(var i=S1(e).roam,a=i[t]=i[t]||[],o=0;o=4&&(l={x:parseFloat(d[0]||0),y:parseFloat(d[1]||0),width:parseFloat(d[2]),height:parseFloat(d[3])})}if(l&&o!=null&&s!=null&&(u=W1(l,{x:0,y:0,width:o,height:s}),!t.ignoreViewBox)){var f=r;r=new $P,r.add(f),f.scaleX=f.scaleY=u.scale,f.x=u.x,f.y=u.y}return!t.ignoreRootClip&&o!=null&&s!=null&&r.setClipPath(new OL({shape:{x:0,y:0,width:o,height:s}})),{root:r,width:o,height:s,viewBoxRect:l,viewBoxTransform:u,named:i}},e.prototype._parseNode=function(e,t,n,r,i,a){var o=e.nodeName.toLowerCase(),s,c=r;if(o===`defs`&&(i=!0),o===`text`&&(a=!0),o===`defs`||o===`switch`)s=t;else{if(!i){var l=O1[o];if(l&&UA(O1,o)){s=l.call(this,e,t);var u=e.getAttribute(`name`);if(u){var d={name:u,namedFrom:null,svgNodeTagLower:o,el:s};n.push(d),o===`g`&&(c=d)}else r&&n.push({name:r.name,namedFrom:r,svgNodeTagLower:o,el:s});t.add(s)}}var f=N1[o];if(f&&UA(N1,o)){var p=f.call(this,e),m=e.getAttribute(`id`);m&&(this._defs[m]=p)}}if(s&&s.isGroup)for(var h=e.firstChild;h;)h.nodeType===1?this._parseNode(h,s,n,c,i,a):h.nodeType===3&&a&&this._parseText(h,s),h=h.nextSibling},e.prototype._parseText=function(e,t){var n=new CL({style:{text:e.textContent},silent:!0,x:this._textX||0,y:this._textY||0});I1(t,n),R1(e,n,this._defsUsePending,!1,!1),IFe(n,t);var r=n.style,i=r.fontSize;i&&i<9&&(r.fontSize=9,n.scaleX*=i/9,n.scaleY*=i/9),r.font=(r.fontSize||r.fontFamily)&&[r.fontStyle,r.fontWeight,(r.fontSize||12)+`px`,r.fontFamily||`sans-serif`].join(` `);var a=n.getBoundingRect();return this._textX+=a.width,t.add(n),n},e.internalField=(function(){O1={g:function(e,t){var n=new $P;return I1(t,n),R1(e,n,this._defsUsePending,!1,!1),n},rect:function(e,t){var n=new OL;return I1(t,n),R1(e,n,this._defsUsePending,!1,!1),n.setShape({x:parseFloat(e.getAttribute(`x`)||`0`),y:parseFloat(e.getAttribute(`y`)||`0`),width:parseFloat(e.getAttribute(`width`)||`0`),height:parseFloat(e.getAttribute(`height`)||`0`)}),n.silent=!0,n},circle:function(e,t){var n=new LR;return I1(t,n),R1(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute(`cx`)||`0`),cy:parseFloat(e.getAttribute(`cy`)||`0`),r:parseFloat(e.getAttribute(`r`)||`0`)}),n.silent=!0,n},line:function(e,t){var n=new tz;return I1(t,n),R1(e,n,this._defsUsePending,!1,!1),n.setShape({x1:parseFloat(e.getAttribute(`x1`)||`0`),y1:parseFloat(e.getAttribute(`y1`)||`0`),x2:parseFloat(e.getAttribute(`x2`)||`0`),y2:parseFloat(e.getAttribute(`y2`)||`0`)}),n.silent=!0,n},ellipse:function(e,t){var n=new RR;return I1(t,n),R1(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute(`cx`)||`0`),cy:parseFloat(e.getAttribute(`cy`)||`0`),rx:parseFloat(e.getAttribute(`rx`)||`0`),ry:parseFloat(e.getAttribute(`ry`)||`0`)}),n.silent=!0,n},polygon:function(e,t){var n=e.getAttribute(`points`),r;n&&(r=L1(n));var i=new $R({shape:{points:r||[]},silent:!0});return I1(t,i),R1(e,i,this._defsUsePending,!1,!1),i},polyline:function(e,t){var n=e.getAttribute(`points`),r;n&&(r=L1(n));var i=new ez({shape:{points:r||[]},silent:!0});return I1(t,i),R1(e,i,this._defsUsePending,!1,!1),i},image:function(e,t){var n=new wL;return I1(t,n),R1(e,n,this._defsUsePending,!1,!1),n.setStyle({image:e.getAttribute(`xlink:href`)||e.getAttribute(`href`),x:+e.getAttribute(`x`),y:+e.getAttribute(`y`),width:+e.getAttribute(`width`),height:+e.getAttribute(`height`)}),n.silent=!0,n},text:function(e,t){var n=e.getAttribute(`x`)||`0`,r=e.getAttribute(`y`)||`0`,i=e.getAttribute(`dx`)||`0`,a=e.getAttribute(`dy`)||`0`;this._textX=parseFloat(n)+parseFloat(i),this._textY=parseFloat(r)+parseFloat(a);var o=new $P;return I1(t,o),R1(e,o,this._defsUsePending,!1,!0),o},tspan:function(e,t){var n=e.getAttribute(`x`),r=e.getAttribute(`y`);n!=null&&(this._textX=parseFloat(n)),r!=null&&(this._textY=parseFloat(r));var i=e.getAttribute(`dx`)||`0`,a=e.getAttribute(`dy`)||`0`,o=new $P;return I1(t,o),R1(e,o,this._defsUsePending,!1,!0),this._textX+=parseFloat(i),this._textY+=parseFloat(a),o},path:function(e,t){var n=FR(e.getAttribute(`d`)||``);return I1(t,n),R1(e,n,this._defsUsePending,!1,!1),n.silent=!0,n}}})(),e}(),N1={lineargradient:function(e){var t=new cz(parseInt(e.getAttribute(`x1`)||`0`,10),parseInt(e.getAttribute(`y1`)||`0`,10),parseInt(e.getAttribute(`x2`)||`10`,10),parseInt(e.getAttribute(`y2`)||`0`,10));return P1(e,t),F1(e,t),t},radialgradient:function(e){var t=new lz(parseInt(e.getAttribute(`cx`)||`0`,10),parseInt(e.getAttribute(`cy`)||`0`,10),parseInt(e.getAttribute(`r`)||`0`,10));return P1(e,t),F1(e,t),t}};function P1(e,t){e.getAttribute(`gradientUnits`)===`userSpaceOnUse`&&(t.global=!0)}function F1(e,t){for(var n=e.firstChild;n;){if(n.nodeType===1&&n.nodeName.toLocaleLowerCase()===`stop`){var r=n.getAttribute(`offset`),i=void 0;i=r&&r.indexOf(`%`)>0?parseInt(r,10)/100:r?parseFloat(r):0;var a={};U1(n,a,a);var o=a.stopColor||n.getAttribute(`stop-color`)||`#000000`,s=a.stopOpacity||n.getAttribute(`stop-opacity`);if(s){var c=uN(o);c&&c[3]&&(c[3]*=nN(s),o=_N(c,`rgba`))}t.colorStops.push({offset:i,color:o})}n=n.nextSibling}}function I1(e,t){e&&e.__inheritedStyle&&(t.__inheritedStyle||={},nA(t.__inheritedStyle,e.__inheritedStyle))}function L1(e){for(var t=B1(e),n=[],r=0;r0;a-=2){var o=r[a],s=r[a-1],c=B1(o);switch(i||=Mj(),s){case`translate`:Ij(i,i,[parseFloat(c[0]),parseFloat(c[1]||`0`)]);break;case`scale`:Rj(i,i,[parseFloat(c[0]),parseFloat(c[1]||c[0])]);break;case`rotate`:Lj(i,i,-parseFloat(c[0])*V1,[parseFloat(c[1]||`0`),parseFloat(c[2]||`0`)]);break;case`skewX`:var l=Math.tan(parseFloat(c[0])*V1);Fj(i,[1,0,l,1,0,0],i);break;case`skewY`:var u=Math.tan(parseFloat(c[0])*V1);Fj(i,[1,u,0,1,0,0],i);break;case`matrix`:i[0]=parseFloat(c[0]),i[1]=parseFloat(c[1]),i[2]=parseFloat(c[2]),i[3]=parseFloat(c[3]),i[4]=parseFloat(c[4]),i[5]=parseFloat(c[5]);break}}t.setLocalTransform(i)}}var H1=/([^\s:;]+)\s*:\s*([^:;]+)/g;function U1(e,t,n){var r=e.getAttribute(`style`);if(r){H1.lastIndex=0;for(var i;(i=H1.exec(r))!=null;){var a=i[1],o=UA(k1,a)?k1[a]:null;o&&(t[o]=i[2]);var s=UA(j1,a)?j1[a]:null;s&&(n[s]=i[2])}}}function HFe(e,t,n){for(var r=0;r1e-6;j0[0]=o?(i[0]-r.x)/a:i[0],j0[1]=o?(i[1]-r.y)/a:i[1],uj(j0,j0,e.mtRawInv);var s=pIe(e,j0);M0(t,s,a),Q(n,function(e){e!==t&&M0(e,s.slice(),a)})}var j0=[];function M0(e,t,n){var r=e.option;r.center=t,r.zoom=n}function N0(e,t){if(t){var n=t.min||0,r=t.max||1/0;e=Math.max(Math.min(r,e),n)}return e}function P0(e,t){var n=t.getShallow(`nodeScaleRatio`,!0)||1,r=Q1(e);return((r.zoom-1)*n+1)/(r.trans[2].scaleX||1)}function F0(e,t,n,r,i,a,o,s){if(!E0(e)){n.disable();return}n.enable(OA(e.get(`roam`),o),{api:t,zInfo:{component:e},triggerInfo:{roamTrigger:e.get(`roamTrigger`),isInSelf:r,isInClip:function(e,t,n){return!i||i.contain(t,n)}}});function c(n){var r=e.mainType,i=hB(nA({type:z0(r,e.subType,GTe)},n));s&&(i.componentType=r),i[r+`Id`]=e.id,t.dispatchAction(i)}n.off(`pan`).off(`zoom`).on(`pan`,function(e){a&&a(`pan`),c({dx:e.dx,dy:e.dy})}).on(`zoom`,function(e){a&&a(`zoom`),c({zoom:e.scale,originX:e.originX,originY:e.originY})})}function I0(e){return function(t,n,r){return L0.copy(e.getBoundingRect()),L0.applyTransform(e.getComputedTransform()),L0.contain(n,r)}}var L0=new eM(0,0,0,0);function R0(e,t,n){var r=z0(t,n,GTe);e.registerAction({type:r,event:r,update:`none`},function(e,r,i){r.eachComponent(oI(e,t,n),function(t){T0(e,t),D0(e,t,r,i)})})}function z0(e,t,n){return(e===`series`?t===`map`?`geo`:t:e)+n}function B0(e){return e.zoom!=null}function V0(e,t,n,r,i,a,o){var s=new $1(null,A0(e.ecModel,t));return l0(s,n,r,i,a),o?u0(s,o.x,o.y,o.width,o.height):u0(s,n,r,i,a),c0(s,e),s}var H0=[`rect`,`circle`,`line`,`ellipse`,`polygon`,`polyline`,`path`],hIe=zA(H0),gIe=zA(H0.concat([`g`])),_Ie=zA(H0.concat([`g`])),U0=tI();function W0(e){var t=e.getItemStyle(),n=e.get(`areaColor`);return n!=null&&(t.fill=n),t}function G0(e){var t=e.style;t&&(t.stroke=t.stroke||t.fill,t.fill=null)}var K0=function(){function e(e){var t=this.group=new $P,n=this._transformGroup=new $P;t.add(n),this.uid=BB(`ec_map_draw`),this._controller=new b1(e.getZr()),n.add(this._regionsGroup=new $P),n.add(this._svgGroup=new $P)}return e.prototype.draw=function(e,t,n,r,i){var a=this,o=e.getData&&e.getData();$0(e)&&t.eachComponent({mainType:`series`,subType:`map`},function(t){!o&&t.getHostGeoModel()===e&&(o=t.getData())});var s=e.coordinateSystem,c=s.view,l=this._regionsGroup,u=this._transformGroup,d=!l.childAt(0)||i,f;s.shouldClip()?(f=r0(null,c),this.group.setClipPath(new OL({shape:f.clone()}))):this.group.removeClipPath(),S0(u,1,c,d?null:e);var p=o&&o.getVisual(`visualMeta`)&&o.getVisual(`visualMeta`).length>0;s.resourceType===`geoJSON`?this._buildGeoJSON(c,n,s,e,o,p):s.resourceType===`geoSVG`&&this._buildSVG(c,n,s,e,o,p),F0(e,n,this._controller,function(t,n,r){return e.coordinateSystem.containPoint([n,r])},f,function(){a._mouseDownFlag=!1},!1,!0),this._updateMapSelectHandler(e,l,n,r)},e.prototype.__updateOnOwnRoam=function(e){S0(this._transformGroup,1,e.coordinateSystem.view,null)},e.prototype._buildGeoJSON=function(e,t,n,r,i,a){var o=this._regionsGroupByName=zA(),s=zA(),c=this._regionsGroup,l=n.projection,u=l&&l.stream,d=TP(i0(null,e,0));function f(e,t){return t&&(e=t(e)),e&&uj([],e,d)}function p(e){for(var t=[],n=!u&&l&&l.project,r=0;r=0)&&(u=e);var d=o?{normal:{align:`center`,verticalAlign:`middle`}}:null;SB(n,CB(i),{labelFetcher:u,labelDataIndex:l,defaultText:r},d);var f=n.getTextContent();if(f&&(U0(f).ignore=f.ignore,n.textConfig&&o)){var p=n.getBoundingRect().clone();n.textConfig.layoutRect=p,n.textConfig.position=[(o[0]-p.x)/p.width*100+`%`,(o[1]-p.y)/p.height*100+`%`]}n.disableLabelAnimation=!0}else n.removeTextContent(),n.removeTextConfig(),n.disableLabelAnimation=null}function Y0(e,t,n,r,i,a){t?t.setItemGraphicEl(a,n):ML(n).eventData={componentType:`geo`,componentIndex:e.componentIndex,geoIndex:e.componentIndex,name:r,region:i&&i.option||{}}}function X0(e,t,n,r,i){t||iB({el:n,componentModel:e,itemName:r,itemTooltipOption:i.get(`tooltip`)})}function Z0(e,t,n,r){t.highDownSilentOnTouch=!!e.get(`selectedMode`);var i=r.getModel(`emphasis`),a=i.get(`focus`);return pR(t,a,i.get(`blurScope`),i.get(`disabled`)),$0(e)&&bEe(t,e,n),a}function Q0(e,t,n){var r=[],i;function a(){i=[]}function o(){i.length&&(r.push(i),i=[])}var s=t({polygonStart:a,polygonEnd:o,lineStart:a,lineEnd:o,point:function(e,t){isFinite(e)&&isFinite(t)&&i.push([e,t])},sphere:function(){}});return!n&&s.polygonStart(),Q(e,function(e){s.lineStart();for(var t=0;t-1&&(n.style.stroke=n.style.fill,n.style.fill=$.color.neutral00,n.style.lineWidth=2),n},t.prototype.__ownRoamView=function(){return t2(this)?this.coordinateSystem.view:null},t.type=`series.map`,t.dependencies=[`geo`],t.layoutMode=`box`,t.defaultOption={z:2,coordinateSystem:`geo`,map:``,left:`center`,top:`center`,aspectScale:null,showLegendSymbol:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,selectedMode:!0,label:{show:!1,color:$.color.tertiary},itemStyle:{borderWidth:.5,borderColor:$.color.border,areaColor:$.color.background},emphasis:{label:{show:!0,color:$.color.primary},itemStyle:{areaColor:$.color.highlight}},select:{label:{show:!0,color:$.color.primary},itemStyle:{color:$.color.highlight}},nameProperty:`name`},t}(lW);function e2(e){return e.indexOf(`i`)===0}function t2(e){return n2(e.seriesGroup)===e&&!e.getHostGeoModel()}function n2(e){return e.f[0]}function r2(e,t){var n={};return e.eachRawSeriesByType(`map`,function(r){var i=r.getHostGeoModel(),a=i?`o`+i.id:`i`+r.getMapType(),o=n[a]=n[a]||{f:[],r:[]};!e.isSeriesFiltered(r)&&!t&&o.f.push(r),o.r.push(r)}),n}var yIe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=`map`,t}return t.prototype.render=function(e,t,n,r){if(!(r&&r.type===`mapToggleSelect`&&r.from===this.uid)){var i=this.group;if(i.removeAll(),!e.getHostGeoModel()){var a=this._mapDraw;a&&r&&r.type===`geoRoam`&&a.resetForLabelLayout(),r&&r.type===`geoRoam`&&r.componentType===`series`&&r.seriesId===e.id?a&&i.add(a.group):t2(e)?(a||=this._mapDraw=new K0(n),i.add(a.group),a.draw(e,t,n,this,r)):this._clearMapDraw(),e.get(`showLegendSymbol`)&&t.getComponent(`legend`)&&this._renderSymbols(e)}}},t.prototype.__updateOnOwnRoam=function(e,t,n){var r=this._mapDraw;t2(t)&&r&&r.__updateOnOwnRoam(t)},t.prototype.remove=function(){this._clearMapDraw(),this.group.removeAll()},t.prototype.dispose=function(){this._clearMapDraw()},t.prototype._clearMapDraw=function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null},t.prototype._renderSymbols=function(e){var t=e.originalData,n=this.group;t.each(t.mapDimension(`value`),function(r,i){if(!isNaN(r)){var a=t.getItemLayout(i);if(!(!a||!a.point)){var o=a.point,s=a.offset,c=new LR({style:{fill:e.getData().getVisual(`style`).fill},shape:{cx:o[0]+s*9,cy:o[1],r:3},silent:!0,z2:8+(s?0:11)});if(!s){var l=n2(e.seriesGroup).getData(),u=t.getName(i),d=l.indexOfName(u),f=t.getItemModel(i),p=f.getModel(`label`),m=l.getItemGraphicEl(d);SB(c,CB(f),{labelFetcher:{getFormattedLabel:function(t,n){return e.getFormattedLabel(d,n)}},defaultText:u}),c.disableLabelAnimation=!0,p.get(`position`)||c.setTextConfig({position:`bottom`}),m.onHoverStateChange=function(e){ZL(c,e)}}n.add(c)}}})},t.type=`map`,t}(gW),bIe={geoJSON:{aspectScale:.75,invertLongitute:!0},geoSVG:{aspectScale:1,invertLongitute:!1}},i2=[`lng`,`lat`],a2=function(e){X(t,e);function t(t,n,r){var i=e.call(this)||this;i.dimensions=i2,i.type=`geo`,i._nameCoordMap=zA(),i.name=t;var a=r.projection,o=Z1.load(n,r.nameMap,r.nameProperty),s=Z1.getGeoResource(n);i.resourceType=s?s.type:null;var c=i.regions=o.regions,l=bIe[s.type];i._clip=r.clip,i.view=new $1(a?!1:l.invertLongitute,A0(r.ecModel,r.api),i),i.map=n,i._regionsMap=o.regionsMap,i.regions=o.regions,i.projection=a;var u;if(a)for(var d=0;d1?(b.width=y,b.height=y/g):(b.height=y,b.width=y*g),b.y=v[1]-b.height/2,b.x=v[0]-b.width/2;else{var x=e.getBoxLayoutParams();x.aspect=g,b=eH(x,h),b=tH(e,b,g)}u0(n,b.x,b.y,b.width,b.height),c0(n,e)}function xIe(e,t){Q(t.get(`geoCoord`),function(t,n){e.addGeoCoord(n,t)})}var c2=new(function(){function e(){this.dimensions=i2}return e.prototype.create=function(e,t){var n=[];function r(e){return{nameProperty:e.get(`nameProperty`),aspectScale:e.get(`aspectScale`),projection:e.get(`projection`),clip:e.getShallow(`clip`,!0)}}return e.eachComponent(`geo`,function(i,a){var o=i.get(`map`),s=new a2(o+a,o,Z({nameMap:i.get(`nameMap`),api:t,ecModel:e},r(i)));n.push(s),i.coordinateSystem=s,s.model=i,s.resize=s2,s.resize(i,t)}),e.eachSeries(function(e){GV({targetModel:e,coordSysType:`geo`,coordSysProvider:function(){var t=e.subType===`map`?e.getHostGeoModel():e.getReferringComponents(`geo`,iI).models[0];return t&&t.coordinateSystem},allowNotFound:!0})}),Q(r2(e,!0),function(i,a){if(e2(a)){var o=i.r[0],s=[];Q(i.r,function(e){s.push(e.get(`nameMap`)),e.seriesGroup=null});var c=a.slice(1),l=new a2(c,c,Z({nameMap:eA(s),api:t,ecModel:e},r(o))),u;Q(i.r,function(e){u=OA(u,e.get(`scaleLimit`))}),n.push(l),l.resize=s2,l.resize(o,t),Q(i.r,function(e){e.coordinateSystem=l,xIe(l,e)})}}),n},e.prototype.getFilledRegions=function(e,t,n,r){for(var i=(e||[]).slice(),a=zA(),o=0;o=0;a--){var o=i[a];o.hierNode={defaultAncestor:null,ancestor:o,prelim:0,modifier:0,change:0,shift:0,i:a,thread:null},n.push(o)}}function MIe(e,t){var n=e.isExpand?e.children:[],r=e.parentNode.children,i=e.hierNode.i?r[e.hierNode.i-1]:null;if(n.length){PIe(e);var a=(n[0].hierNode.prelim+n[n.length-1].hierNode.prelim)/2;i?(e.hierNode.prelim=i.hierNode.prelim+t(e,i),e.hierNode.modifier=e.hierNode.prelim-a):e.hierNode.prelim=a}else i&&(e.hierNode.prelim=i.hierNode.prelim+t(e,i));e.parentNode.hierNode.defaultAncestor=FIe(e,i,e.parentNode.hierNode.defaultAncestor||r[0],t)}function NIe(e){var t=e.hierNode.prelim+e.parentNode.hierNode.modifier;e.setLayout({x:t},!0),e.hierNode.modifier+=e.parentNode.hierNode.modifier}function u2(e){return arguments.length?e:RIe}function d2(e,t){return e-=Math.PI/2,{x:t*Math.cos(e),y:t*Math.sin(e)}}function PIe(e){for(var t=e.children,n=t.length,r=0,i=0;--n>=0;){var a=t[n];a.hierNode.prelim+=r,a.hierNode.modifier+=r,i+=a.hierNode.change,r+=a.hierNode.shift+i}}function FIe(e,t,n,r){if(t){for(var i=e,a=e,o=a.parentNode.children[0],s=t,c=i.hierNode.modifier,l=a.hierNode.modifier,u=o.hierNode.modifier,d=s.hierNode.modifier;s=f2(s),a=p2(a),s&&a;){i=f2(i),o=p2(o),i.hierNode.ancestor=e;var f=s.hierNode.prelim+d-a.hierNode.prelim-l+r(s,a);f>0&&(LIe(IIe(s,e,n),e,f),l+=f,c+=f),d+=s.hierNode.modifier,l+=a.hierNode.modifier,c+=i.hierNode.modifier,u+=o.hierNode.modifier}s&&!f2(i)&&(i.hierNode.thread=s,i.hierNode.modifier+=d-c),a&&!p2(o)&&(o.hierNode.thread=a,o.hierNode.modifier+=l-u,n=e)}return n}function f2(e){var t=e.children;return t.length&&e.isExpand?t[t.length-1]:e.hierNode.thread}function p2(e){var t=e.children;return t.length&&e.isExpand?t[0]:e.hierNode.thread}function IIe(e,t,n){return e.hierNode.ancestor.parentNode===t.parentNode?e.hierNode.ancestor:n}function LIe(e,t,n){var r=n/(t.hierNode.i-e.hierNode.i);t.hierNode.change-=r,t.hierNode.shift+=n,t.hierNode.modifier+=n,t.hierNode.prelim+=n,e.hierNode.change+=r}function RIe(e,t){return e.parentNode===t.parentNode?1:2}var m2=tI();function h2(e){var t=e.mainData,n=e.datas;n||(n={main:t},e.datasAttr={main:`data`}),e.datas=e.mainData=null,g2(t,n,e),Q(n,function(n){Q(t.TRANSFERABLE_METHODS,function(t){n.wrapMethod(t,pA(zIe,e))})}),t.wrapMethod(`cloneShallow`,pA(VIe,e)),Q(t.CHANGABLE_METHODS,function(n){t.wrapMethod(n,pA(BIe,e))}),MA(n[t.dataType]===t)}function zIe(e,t){if(WIe(this)){var n=Z({},m2(this).datas);n[this.dataType]=t,g2(t,n,e)}else _2(t,this.dataType,m2(this).mainData,e);return t}function BIe(e,t){return e.struct&&e.struct.update(),t}function VIe(e,t){return Q(m2(t).datas,function(n,r){n!==t&&_2(n.cloneShallow(),r,t,e)}),t}function HIe(e){var t=m2(this).mainData;return e==null||t==null?t:m2(t).datas[e]}function UIe(){var e=m2(this).mainData;return e==null?[{data:e}]:sA(dA(m2(e).datas),function(t){return{type:t,data:m2(e).datas[t]}})}function WIe(e){return m2(e).mainData===e}function g2(e,t,n){m2(e).datas={},Q(t,function(t,r){_2(t,r,e,n)})}function _2(e,t,n,r){m2(n).datas[t]=e,m2(e).mainData=n,e.dataType=t,r.struct&&(e[r.structAttr]=r.struct,r.struct[r.datasAttr[t]]=e),e.getLinkedData=HIe,e.getLinkedDataAll=UIe}var GIe=function(){function e(e,t){this.depth=0,this.height=0,this.dataIndex=-1,this.children=[],this.viewChildren=[],this.isExpand=!1,this.name=e||``,this.hostTree=t}return e.prototype.isRemoved=function(){return this.dataIndex<0},e.prototype.eachNode=function(e,t,n){hA(e)&&(n=t,t=e,e=null),e||={},gA(e)&&(e={order:e});var r=e.order||`preorder`,i=this[e.attr||`children`],a;r===`preorder`&&(a=t.call(n,this));for(var o=0;!a&&ot&&(t=r.height)}this.height=t+1},e.prototype.getNodeById=function(e){if(this.getId()===e)return this;for(var t=0,n=this.children,r=n.length;t=0&&this.hostTree.data.setItemLayout(this.dataIndex,e,t)},e.prototype.getLayout=function(){return this.hostTree.data.getItemLayout(this.dataIndex)},e.prototype.getModel=function(e){if(!(this.dataIndex<0))return this.hostTree.data.getItemModel(this.dataIndex).getModel(e)},e.prototype.getLevelModel=function(){return(this.hostTree.levelModels||[])[this.depth]},e.prototype.setVisual=function(e,t){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,e,t)},e.prototype.getVisual=function(e){return this.hostTree.data.getItemVisual(this.dataIndex,e)},e.prototype.getRawIndex=function(){return this.hostTree.data.getRawIndex(this.dataIndex)},e.prototype.getId=function(){return this.hostTree.data.getId(this.dataIndex)},e.prototype.getChildIndex=function(){if(this.parentNode){for(var e=this.parentNode.children,t=0;t=0){var r=n.getData().tree.root,i=e.targetNode;if(gA(i)&&(i=r.getNodeById(i)),i&&r.contains(i))return{node:i};var a=e.targetNodeId;if(a!=null&&(i=r.getNodeById(a)))return{node:i}}}function b2(e){for(var t=[];e;)e=e.parentNode,e&&t.push(e);return t.reverse()}function x2(e,t){return rA(b2(e),t)>=0}function S2(e,t){for(var n=[];e;){var r=e.dataIndex;n.push({name:e.name,dataIndex:r,value:t.getRawValue(r)}),e=e.parentNode}return n.reverse(),n}var C2=`tree`,qIe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.hasSymbolVisual=!0,n.ignoreStyleOnData=!0,n}return t.prototype.getInitialData=function(e){var t={name:e.name,children:e.data},n=new zB(e.leaves||{},this,this.ecModel),r=v2.createTree(t,this,i);function i(e){e.wrapMethod(`getItemModel`,function(e,t){var i=r.getNodeByDataIndex(t);return i&&i.children.length&&i.isExpand||(e.parentModel=n),e})}var a=0;r.eachNode(`preorder`,function(e){e.depth>a&&(a=e.depth)});var o=e.expandAndCollapse&&e.initialTreeDepth>=0?e.initialTreeDepth:a;return r.root.eachNode(`preorder`,function(e){var t=e.hostTree.data.getRawDataItem(e.dataIndex);e.isExpand=t&&t.collapsed!=null?!t.collapsed:e.depth<=o}),r.data},t.prototype.getOrient=function(){var e=this.get(`orient`);return e===`horizontal`?e=`LR`:e===`vertical`&&(e=`TB`),e},t.prototype.formatTooltip=function(e,t,n){for(var r=this.getData().tree,i=r.root.children[0],a=r.getNodeByDataIndex(e),o=a.getValue(),s=a.name;a&&a!==i;)s=a.parentNode.name+`.`+s,a=a.parentNode;return YU(`nameValue`,{name:s,value:o,noValue:isNaN(o)||o==null})},t.prototype.getDataParams=function(t){var n=e.prototype.getDataParams.apply(this,arguments),r=this.getData().tree.getNodeByDataIndex(t);return n.treeAncestors=S2(r,this),n.collapsed=!r.isExpand,n},t.prototype.__ownRoamView=function(){return this.coordinateSystem},t.type=`series.`+C2,t.layoutMode=`box`,t.defaultOption={z:2,coordinateSystemUsage:`box`,left:`12%`,top:`12%`,right:`12%`,bottom:`12%`,layout:`orthogonal`,edgeShape:`curve`,edgeForkPosition:`50%`,roam:!1,roamTrigger:`global`,nodeScaleRatio:.4,center:null,zoom:1,orient:`LR`,symbol:`emptyCircle`,symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:$.color.borderTint,width:1.5,curveness:.5},itemStyle:{color:`lightsteelblue`,borderWidth:1.5},label:{show:!0},animationEasing:`linear`,animationDuration:700,animationDurationUpdate:500},t}(lW),JIe=function(){function e(){this.parentPoint=[],this.childPoints=[]}return e}(),YIe=function(e){X(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultStyle=function(){return{stroke:$.color.neutral99,fill:null}},t.prototype.getDefaultShape=function(){return new JIe},t.prototype.buildPath=function(e,t){var n=t.childPoints,r=n.length,i=t.parentPoint,a=n[0],o=n[r-1];if(r===1){e.moveTo(i[0],i[1]),e.lineTo(a[0],a[1]);return}var s=t.orient,c=s===`TB`||s===`BT`?0:1,l=1-c,u=bF(t.forkPosition,1),d=[];d[c]=i[c],d[l]=i[l]+(o[l]-i[l])*u,e.moveTo(i[0],i[1]),e.lineTo(d[0],d[1]),e.moveTo(a[0],a[1]),d[c]=a[c],e.lineTo(d[0],d[1]),d[c]=o[c],e.lineTo(d[0],d[1]),e.lineTo(o[0],o[1]);for(var f=1;fv.x,x||(b-=Math.PI));var C=x?`left`:`right`,w=s.getModel(`label`),T=w.get(`rotate`),E=Math.PI/180*T,D=g.getTextContent();D&&(g.setTextConfig({position:w.get(`position`)||C,rotation:T==null?-b:E,origin:`center`}),D.setStyle(`verticalAlign`,`middle`))}var O=s.get([`emphasis`,`focus`]),k=O===`relative`?BA(o.getAncestorsIndices(),o.getDescendantIndices()):O===`ancestor`?o.getAncestorsIndices():O===`descendant`?o.getDescendantIndices():null;k&&(ML(n).focus=k),ZIe(i,o,u,n,m,p,h,r),n.__edge&&(n.onHoverStateChange=function(t){if(t!==`blur`){var r=o.parentNode&&e.getItemGraphicEl(o.parentNode.dataIndex);r&&r.hoverState===1||ZL(n.__edge,t)}})}function ZIe(e,t,n,r,i,a,o,s){var c=t.getModel(),l=e.get(`edgeShape`),u=e.get(`layout`),d=e.getOrient(),f=e.get([`lineStyle`,`curveness`]),p=e.get(`edgeForkPosition`),m=c.getModel(`lineStyle`).getLineStyle(),h=r.__edge;if(l===`curve`)t.parentNode&&t.parentNode!==n&&(h||=r.__edge=new iz({shape:O2(u,d,f,i,i)}),Sz(h,{shape:O2(u,d,f,a,o)},e));else if(l===`polyline`&&u===`orthogonal`&&t!==n&&t.children&&t.children.length!==0&&t.isExpand===!0){for(var g=t.children,_=[],v=0;v=0;a--)n.push(i[a])}}function eLe(e,t){e.eachSeriesByType(`tree`,function(e){tLe(e,t)})}function tLe(e,t){var n=rH(e,t).refContainer,r=eH(e.getBoxLayoutParams(),n);e.layoutInfo=r;var i=e.get(`layout`),a=0,o=0,s=null;i===`radial`?(a=2*Math.PI,o=Math.min(r.height,r.width)/2,s=u2(function(e,t){return(e.parentNode===t.parentNode?1:2)/e.depth})):(a=r.width,o=r.height,s=u2());var c=e.getData().tree.root,l=c.children[0];if(l){jIe(c),$Ie(l,MIe,s),c.hierNode.modifier=-l.hierNode.prelim,k2(l,NIe);var u=l,d=l,f=l;k2(l,function(e){var t=e.getLayout().x;td.getLayout().x&&(d=e),e.depth>f.depth&&(f=e)});var p=u===d?1:s(u,d)/2,m=p-u.getLayout().x,h=0,g=0,_=0,v=0;if(i===`radial`)h=a/(d.getLayout().x+p+m),g=o/(f.depth-1||1),k2(l,function(e){_=(e.getLayout().x+m)*h,v=(e.depth-1)*g;var t=d2(_,v);e.setLayout({x:t.x,y:t.y,rawX:_,rawY:v},!0)});else{var y=e.getOrient();y===`RL`||y===`LR`?(g=o/(d.getLayout().x+p+m),h=a/(f.depth-1||1),k2(l,function(e){v=(e.getLayout().x+m)*g,_=y===`LR`?(e.depth-1)*h:a-(e.depth-1)*h,e.setLayout({x:_,y:v},!0)})):(y===`TB`||y===`BT`)&&(h=a/(d.getLayout().x+p+m),g=o/(f.depth-1||1),k2(l,function(e){_=(e.getLayout().x+m)*h,v=y===`TB`?(e.depth-1)*g:o-(e.depth-1)*g,e.setLayout({x:_,y:v},!0)}))}}}function nLe(e){e.registerAction({type:`treeExpandAndCollapse`,event:`treeExpandAndCollapse`,update:`update`},function(e,t){t.eachComponent({mainType:PL,subType:C2,query:e},function(t){var n=e.dataIndex,r=t.getData().tree.getNodeByDataIndex(n);r.isExpand=!r.isExpand})}),R0(e,PL,C2)}var rLe=vI(C2,iLe);function iLe(e){e.eachSeriesByType(C2,function(e){var t=e.getData();t.tree.eachNode(function(e){var n=e.getModel().getModel(`itemStyle`).getItemStyle();Z(t.ensureUniqueItemVisual(e.dataIndex,`style`),n)})})}function aLe(e){e.registerChartView(XIe),e.registerSeriesModel(qIe),e.registerLayout(eLe),e.registerVisual(rLe),nLe(e)}var A2=[`treemapZoomToNode`,`treemapRender`,`treemapMove`];function oLe(e){for(var t=0;t1;)r=r.parentNode;var i=DH(e.ecModel,r.name||r.dataIndex+``,n);t.setVisual(`decal`,i)})}var sLe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.preventUsingHoverLayer=!0,n}return t.prototype.getInitialData=function(e,t){var n={name:e.name,children:e.data};M2(n);var r=e.levels||[],i=new zB({itemStyle:this.designatedVisualItemStyle={}},this,t);r=e.levels=cLe(r,t);var a=sA(r||[],function(e){return new zB(e,i,t)},this),o=v2.createTree(n,this,s);function s(e){e.wrapMethod(`getItemModel`,function(e,t){var n=o.getNodeByDataIndex(t);return e.parentModel=(n?a[n.depth]:null)||i,e})}return o.data},t.prototype.optionUpdated=function(){this.resetViewRoot()},t.prototype.formatTooltip=function(e,t,n){var r=this.getData(),i=this.getRawValue(e);return YU(`nameValue`,{name:r.getName(e),value:i})},t.prototype.getDataParams=function(t){var n=e.prototype.getDataParams.apply(this,arguments);return n.treeAncestors=S2(this.getData().tree.getNodeByDataIndex(t),this),n.treePathInfo=n.treeAncestors,n},t.prototype.setLayoutInfo=function(e){this.layoutInfo=this.layoutInfo||{},Z(this.layoutInfo,e)},t.prototype.mapIdToIndex=function(e){var t=this._idIndexMap;t||(t=this._idIndexMap=zA(),this._idIndexMapCount=0);var n=t.get(e);return n??t.set(e,n=this._idIndexMapCount++),n},t.prototype.getViewRoot=function(){return this._viewRoot},t.prototype.resetViewRoot=function(e){e?this._viewRoot=e:e=this._viewRoot;var t=this.getRawData().tree.root;(!e||e!==t&&!t.contains(e))&&(this._viewRoot=t)},t.prototype.enableAriaDecal=function(){j2(this)},t.type=`series.treemap`,t.layoutMode=`box`,t.defaultOption={progressive:0,coordinateSystemUsage:`box`,left:$.size.l,top:$.size.xxxl,right:$.size.l,bottom:$.size.xxxl,sort:!0,clipWindow:`origin`,squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:`▶`,zoomToNodeRatio:.32*.32,scaleLimit:{max:5,min:.2},roam:!0,roamTrigger:`global`,nodeClick:`zoomToNode`,animation:!0,animationDurationUpdate:900,animationEasing:`quinticInOut`,breadcrumb:{show:!0,height:22,left:`center`,bottom:$.size.m,emptyItemWidth:25,itemStyle:{color:$.color.backgroundShade,textStyle:{color:$.color.secondary}},emphasis:{itemStyle:{color:$.color.background}}},label:{show:!0,distance:0,padding:5,position:`inside`,color:$.color.neutral00,overflow:`truncate`},upperLabel:{show:!1,position:[0,`50%`],height:20,overflow:`truncate`,verticalAlign:`middle`},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:$.color.neutral00,borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,`50%`],overflow:`truncate`,verticalAlign:`middle`}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:`index`,visibleMin:10,childrenVisibleMin:null,levels:[]},t}(lW);function M2(e){var t=0;Q(e.children,function(e){M2(e);var n=e.value;mA(n)&&(n=n[0]),t+=n});var n=e.value;mA(n)&&(n=n[0]),(n==null||isNaN(n))&&(n=t),n<0&&(n=0),mA(e.value)?e.value[0]=n:e.value=n}function cLe(e,t){var n=qF(t.get(`color`)),r=qF(t.get([`aria`,`decal`,`decals`]));if(n){e||=[];var i,a;Q(e,function(e){var t=new zB(e),n=t.get(`color`),r=t.get(`decal`);(t.get([`itemStyle`,`color`])||n&&n!==`none`)&&(i=!0),(t.get([`itemStyle`,`decal`])||r&&r!==`none`)&&(a=!0)});var o=e[0]||={};return i||(o.color=n.slice()),!a&&r&&(o.decal=r.slice()),e}}var lLe=8,N2=8,P2=5,uLe=function(){function e(e){this.group=new $P,e.add(this.group)}return e.prototype.render=function(e,t,n,r){var i=e.getModel(`breadcrumb`),a=this.group;if(a.removeAll(),!(!i.get(`show`)||!n)){var o=i.getModel(`itemStyle`),s=i.getModel(`emphasis`),c=o.getModel(`textStyle`),l=s.getModel([`itemStyle`,`textStyle`]),u=rH(e,t).refContainer,d={left:i.get(`left`),right:i.get(`right`),top:i.get(`top`),bottom:i.get(`bottom`)},f={emptyItemWidth:i.get(`emptyItemWidth`),totalWidth:0,renderList:[]},p=eH(d,u);this._prepare(n,f,c),this._renderContent(e,f,p,o,s,c,l,r),iH(a,d,u)}},e.prototype._prepare=function(e,t,n){for(var r=e;r;r=r.parentNode){var i=ZF(r.getModel().get(`name`),``),a=n.getTextRect(i),o=Math.max(a.width+lLe*2,t.emptyItemWidth);t.totalWidth+=o+N2,t.renderList.push({node:r,text:i,width:o})}},e.prototype._renderContent=function(e,t,n,r,i,a,o,s){for(var c=0,l=t.emptyItemWidth,u=e.get([`breadcrumb`,`height`]),d=t.totalWidth,f=t.renderList,p=i.getModel(`itemStyle`).getItemStyle(),m=f.length-1;m>=0;m--){var h=f[m],g=h.node,_=h.width,v=h.text;d>n.width&&(d-=_-l,_=l,v=null);var y=new $R({shape:{points:dLe(c,0,_,u,m===f.length-1,m===0)},style:nA(r.getItemStyle(),{lineJoin:`bevel`}),textContent:new AL({style:wB(a,{text:v})}),textConfig:{position:`inside`},z2:10*1e4,onclick:pA(s,g)});y.disableLabelAnimation=!0,y.getTextContent().ensureState(`emphasis`).style=wB(o,{text:v}),y.ensureState(`emphasis`).style=p,pR(y,i.get(`focus`),i.get(`blurScope`),i.get(`disabled`)),this.group.add(y),fLe(y,e,g),c+=_+N2}},e.prototype.remove=function(){this.group.removeAll()},e}();function dLe(e,t,n,r,i,a){var o=[[i?e:e-P2,t],[e+n,t],[e+n,t+r],[i?e:e-P2,t+r]];return!a&&o.splice(2,0,[e+n+P2,t+r/2]),!i&&o.push([e,t+r/2]),o}function fLe(e,t,n){ML(e).eventData={componentType:`series`,componentSubType:`treemap`,componentIndex:t.componentIndex,seriesIndex:t.seriesIndex,seriesName:t.name,seriesType:`treemap`,selfType:`breadcrumb`,nodeData:{dataIndex:n&&n.dataIndex,name:n&&n.name},treePathInfo:n&&S2(n,t)}}var pLe=function(){function e(){this._storage=[],this._elExistsMap={}}return e.prototype.add=function(e,t,n,r,i){return this._elExistsMap[e.id]?!1:(this._elExistsMap[e.id]=!0,this._storage.push({el:e,target:t,duration:n,delay:r,easing:i}),!0)},e.prototype.finished=function(e){return this._finishedCallback=e,this},e.prototype.start=function(){for(var e=this,t=this._storage.length,n=function(){t--,t<=0&&(e._storage.length=0,e._elExistsMap={},e._finishedCallback&&e._finishedCallback())},r=0,i=this._storage.length;r=0;c--){var l=i[r===`asc`?o-c-1:c].getValue();l/n*ts[1]&&(s[1]=t)})),{sum:r,dataExtent:s}}function CLe(e,t,n){for(var r=0,i=1/0,a=0,o=void 0,s=e.length;ar&&(r=o));var c=e.area*e.area,l=t*t*n;return c?F2(l*r/c,c/(l*i)):1/0}function B2(e,t,n,r,i){var a=t===n.width?0:1,o=1-a,s=[`x`,`y`],c=[`width`,`height`],l=n[s[a]],u=t?e.area/t:0;(i||u>n[c[o]])&&(u=n[c[o]]);for(var d=0,f=e.length;dAF&&(u=AF),i=c}uq2||Math.abs(e.dy)>q2)){var t=this.seriesModel.getData().tree.root;if(!t)return;var n=t.getLayout();if(!n)return;this.api.dispatchAction({type:`treemapMove`,from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:n.x+e.dx,y:n.y+e.dy,width:n.width,height:n.height}})}},t.prototype._onZoom=function(e){var t=e.originX,n=e.originY,r=e.scale,i=this.seriesModel;if(this._state!==`animating`){var a=i.getData().tree.root;if(!a)return;var o=a.getLayout();if(!o)return;var s=new eM(o.x,o.y,o.width,o.height),c=i.layoutInfo,l=U2(c,o),u=l*r;u=W2(u,i);var d=u/l;t-=c.x,n-=c.y;var f=Mj();Ij(f,f,[-t,-n]),Rj(f,f,[d,d]),Ij(f,f,[t,n]),s.applyTransform(f),this.api.dispatchAction({type:`treemapRender`,from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:s.x,y:s.y,width:s.width,height:s.height}})}},t.prototype._initEvents=function(e){var t=this;e.on(`click`,function(e){if(t._state===`ready`){var n=t.seriesModel.get(`nodeClick`,!0);if(n){var r=t.findTarget(e.offsetX,e.offsetY);if(r){var i=r.node;if(i.getLayout().isLeafRoot)t._rootToNode(r);else if(n===`zoomToNode`)t._zoomToNode(r);else if(n===`link`){var a=i.hostTree.data.getItemModel(i.dataIndex),o=a.get(`link`,!0),s=a.get(`target`,!0)||`blank`;o&&RV(o,s)}}}}},this)},t.prototype._renderBreadcrumb=function(e,t,n){var r=this;n||(n=e.get(`leafDepth`,!0)==null?this.findTarget(t.getWidth()/2,t.getHeight()/2):{node:e.getViewRoot()},n||={node:e.getData().tree.root}),(this._breadcrumb||=new uLe(this.group)).render(e,t,n.node,function(t){r._state!==`animating`&&(x2(e.getViewRoot(),t)?r._rootToNode({node:t}):r._zoomToNode({node:t}))})},t.prototype.remove=function(){this._clearController(),this._containerGroup&&this._containerGroup.removeAll(),this._storage=$2(),this._state=`ready`,this._breadcrumb&&this._breadcrumb.remove()},t.prototype.dispose=function(){this._clearController()},t.prototype._zoomToNode=function(e){this.api.dispatchAction({type:`treemapZoomToNode`,from:this.uid,seriesId:this.seriesModel.id,targetNode:e.node})},t.prototype._rootToNode=function(e){this.api.dispatchAction({type:`treemapRootToNode`,from:this.uid,seriesId:this.seriesModel.id,targetNode:e.node})},t.prototype.findTarget=function(e,t){var n;return this.seriesModel.getViewRoot().eachNode({attr:`viewChildren`,order:`preorder`},function(r){var i=this._storage.background[r.getRawIndex()];if(i){var a=i.transformCoordToLocal(e,t),o=i.shape;if(o.x<=a[0]&&a[0]<=o.x+o.width&&o.y<=a[1]&&a[1]<=o.y+o.height)n={node:r,offsetX:a[0],offsetY:a[1]};else return!1}},this),n},t.type=`treemap`,t}(gW);function $2(){return{nodeGroup:[],background:[],content:[]}}function ALe(e,t,n,r,i,a,o,s,c,l){if(!o)return;var u=o.getLayout(),d=e.getData(),f=o.getModel();if(d.setItemGraphicEl(o.dataIndex,null),!u||!u.isInView)return;var p=u.width,m=u.height,h=u.borderWidth,g=u.invisible,_=o.getRawIndex(),v=s&&s.getRawIndex(),y=o.viewChildren,b=u.upperHeight,x=y&&y.length,S=f.getModel(`itemStyle`),C=f.getModel([`emphasis`,`itemStyle`]),w=f.getModel([`blur`,`itemStyle`]),T=f.getModel([`select`,`itemStyle`]),E=S.get(`borderRadius`)||0,D=V(`nodeGroup`,G2);if(!D)return;if(c.add(D),D.x=u.x||0,D.y=u.y||0,D.markRedraw(),Q2(D).nodeWidth=p,Q2(D).nodeHeight=m,u.isAboveViewRoot)return D;var O=V(`background`,K2,l,DLe);O&&I(D,O,x&&u.upperLabelHeight);var k=f.getModel(`emphasis`),A=k.get(`focus`),j=k.get(`blurScope`),M=k.get(`disabled`),N=A===`ancestor`?o.getAncestorsIndices():A===`descendant`?o.getDescendantIndices():A;if(x)vR(D)&&_R(D,!1),O&&(_R(O,!M),d.setItemGraphicEl(o.dataIndex,O),mR(O,N,j));else{var P=V(`content`,K2,l,OLe);P&&L(D,P),O.disableMorphing=!0,O&&vR(O)&&_R(O,!1),_R(D,!M),d.setItemGraphicEl(o.dataIndex,D);var F=f.getShallow(`cursor`);F&&P.attr(`cursor`,F),mR(D,N,j)}return D;function I(t,n,r){var i=ML(n);if(i.dataIndex=o.dataIndex,i.seriesIndex=e.seriesIndex,n.setShape({x:0,y:0,width:p,height:m,r:E}),g)R(n);else{n.invisible=!1;var a=o.getVisual(`style`),s=a.stroke,c=Z2(S);c.fill=s;var l=X2(C);l.fill=C.get(`borderColor`);var u=X2(w);u.fill=w.get(`borderColor`);var d=X2(T);if(d.fill=T.get(`borderColor`),r){var f=p-2*h;z(n,s,a.opacity,{x:h,y:0,width:f,height:b})}else n.removeTextContent();n.setStyle(c),n.ensureState(`emphasis`).style=l,n.ensureState(`blur`).style=u,n.ensureState(`select`).style=d,$L(n)}t.add(n)}function L(t,n){var r=ML(n);r.dataIndex=o.dataIndex,r.seriesIndex=e.seriesIndex;var i=Math.max(p-2*h,0),a=Math.max(m-2*h,0);if(n.culling=!0,n.setShape({x:h,y:h,width:i,height:a,r:E}),g)R(n);else{n.invisible=!1;var s=o.getVisual(`style`),c=s.fill,l=Z2(S);l.fill=c,l.decal=s.decal;var u=X2(C),d=X2(w),f=X2(T);z(n,c,s.opacity,null),n.setStyle(l),n.ensureState(`emphasis`).style=u,n.ensureState(`blur`).style=d,n.ensureState(`select`).style=f,$L(n)}t.add(n)}function R(e){!e.invisible&&a.push(e)}function z(t,n,r,i){var a=f.getModel(i?Y2:J2),s=ZF(f.get(`name`),null),c=a.getShallow(`show`);SB(t,CB(f,i?Y2:J2),{defaultText:c?s:null,inheritColor:n,defaultOpacity:r,labelFetcher:e,labelDataIndex:o.dataIndex});var l=t.getTextContent();if(l){var d=l.style,p=jA(d.padding||0);i&&(t.setTextConfig({layoutRect:i}),l.disableLabelLayout=!0),l.beforeUpdate=function(){var e=Math.max((i?i.width:t.shape.width)-p[1]-p[3],0),n=Math.max((i?i.height:t.shape.height)-p[0]-p[2],0);(d.width!==e||d.height!==n)&&l.setStyle({width:e,height:n})},d.truncateMinChar=2,d.lineOverflow=`truncate`,B(d,i,u);var m=l.getState(`emphasis`);B(m?m.style:null,i,u)}}function B(t,n,r){var i=t?t.text:null;if(!n&&r.isLeafRoot&&i!=null){var a=e.get(`drillDownIcon`,!0);t.text=a?a+` `+i:i}}function V(e,r,a,o){var s=v!=null&&n[e][v],c=i[e];return s?(n[e][v]=null,H(c,s)):g||(s=new r,s instanceof FI&&(s.z2=jLe(a,o)),U(c,s)),t[e][_]=s}function H(e,t){var n=e[_]={};t instanceof G2?(n.oldX=t.x,n.oldY=t.y):n.oldShape=Z({},t.shape)}function U(e,t){var n=e[_]={},a=o.parentNode,s=t instanceof $P;if(a&&(!r||r.direction===`drillDown`)){var c=0,l=0,u=i.background[a.getRawIndex()];!r&&u&&u.oldShape&&(c=u.oldShape.width,l=u.oldShape.height),s?(n.oldX=0,n.oldY=l):n.oldShape={x:c,y:l,width:0,height:0}}n.fadein=!s}}function jLe(e,t){return e*ELe+t}var e4=Q,MLe=yA,t4=-1,n4=function(){function e(t){var n=t.mappingMethod,r=t.type,i=this.option=Qk(t);this.type=r,this.mappingMethod=n,this._normalizeData=FLe[n];var a=e.visualHandlers[r];this.applyVisual=a.applyVisual,this.getColorMapper=a.getColorMapper,this._normalizedToVisual=a._normalizedToVisual[n],n===`piecewise`?(r4(i),NLe(i)):n===`category`?i.categories?PLe(i):r4(i,!0):(MA(n!==`linear`||i.dataExtent),r4(i))}return e.prototype.mapValueToVisual=function(e){var t=this._normalizeData(e);return this._normalizedToVisual(t,e)},e.prototype.getNormalizer=function(){return fA(this._normalizeData,this)},e.listVisualTypes=function(){return dA(e.visualHandlers)},e.isValidType=function(t){return e.visualHandlers.hasOwnProperty(t)},e.eachVisual=function(e,t,n){yA(e)?Q(e,t,n):t.call(n,e)},e.mapVisual=function(t,n,r){var i,a=mA(t)?[]:yA(t)?{}:(i=!0,null);return e.eachVisual(t,function(e,t){var o=n.call(r,e,t);i?a=o:a[t]=o}),a},e.retrieveVisuals=function(t){var n={},r;return t&&e4(e.visualHandlers,function(e,i){t.hasOwnProperty(i)&&(n[i]=t[i],r=!0)}),r?n:null},e.prepareVisualTypes=function(e){if(mA(e))e=e.slice();else if(MLe(e)){var t=[];e4(e,function(e,n){t.push(n)}),e=t}else return[];return e.sort(function(e,t){return t===`color`&&e!==`color`&&e.indexOf(`color`)===0?1:-1}),e},e.dependsOn=function(e,t){return t===`color`?!!(e&&e.indexOf(t)===0):e===t},e.findPieceIndex=function(e,t,n){for(var r,i=1/0,a=0,o=t.length;a=0;a--)r[a]??(delete n[t[a]],t.pop())}function r4(e,t){var n=e.visual,r=[];yA(n)?e4(n,function(e){r.push(e)}):n!=null&&r.push(n),!t&&r.length===1&&!{color:1,symbol:1}.hasOwnProperty(e.type)&&(r[1]=r[0]),d4(e,r)}function i4(e){return{applyVisual:function(t,n,r){var i=this.mapValueToVisual(t);r(`color`,e(n(`color`),i))},_normalizedToVisual:l4([0,1])}}function a4(e){var t=this.option.visual;return t[Math.round(yF(e,[0,1],[0,t.length-1],!0))]||{}}function o4(e){return function(t,n,r){r(e,this.mapValueToVisual(t))}}function s4(e){var t=this.option.visual;return t[this.option.loop&&e!==t4?e%t.length:e]}function c4(){return this.option.visual[0]}function l4(e){return{linear:function(t){return yF(t,e,this.option.visual,!0)},category:s4,piecewise:function(t,n){var r=u4.call(this,n);return r??=yF(t,e,this.option.visual,!0),r},fixed:c4}}function u4(e){var t=this.option,n=t.pieceList;if(t.hasSpecialVisual){var r=n[n4.findPieceIndex(e,n)];if(r&&r.visual)return r.visual[this.type]}}function d4(e,t){return e.visual=t,e.type===`color`&&(e.parsedVisual=sA(t,function(e){return uN(e)||[0,0,0,1]})),t}var FLe={linear:function(e){return yF(e,this.option.dataExtent,[0,1],!0)},piecewise:function(e){var t=this.option.pieceList,n=n4.findPieceIndex(e,t,!0);if(n!=null)return yF(n,[0,t.length-1],[0,1],!0)},category:function(e){return(this.option.categories?this.option.categoryMap[e]:e)??t4},fixed:WA};function f4(e,t,n){return e?t<=n:t=n.length||e===n[e.depth])&&m4(e,VLe(i,c,e,t,m,r),n,r)})}}}function RLe(e,t,n){var r=Z({},t),i=n.designatedVisualItemStyle;return Q([`color`,`colorAlpha`,`colorSaturation`],function(n){i[n]=t[n];var a=e.get(n);i[n]=null,a!=null&&(r[n]=a)}),r}function h4(e){var t=g4(e,`color`);if(t){var n=g4(e,`colorAlpha`),r=g4(e,`colorSaturation`);return r&&(t=hN(t,null,null,r)),n&&(t=gN(t,n)),t}}function zLe(e,t){return t==null?null:hN(t,null,null,e)}function g4(e,t){var n=e[t];if(n!=null&&n!==`none`)return n}function BLe(e,t,n,r,i,a){if(!(!a||!a.length)){var o=_4(t,`color`)||i.color!=null&&i.color!==`none`&&(_4(t,`colorAlpha`)||_4(t,`colorSaturation`));if(o){var s=t.get(`visualMin`),c=t.get(`visualMax`),l=n.dataExtent.slice();s!=null&&sl[1]&&(l[1]=c);var u=t.get(`colorMappingBy`),d={type:o.name,dataExtent:l,visual:o.range};d.type===`color`&&(u===`index`||u===`id`)?(d.mappingMethod=`category`,d.loop=!0):d.mappingMethod=`linear`;var f=new n4(d);return p4(f).drColorMappingBy=u,f}}}function _4(e,t){var n=e.get(t);return mA(n)&&n.length?{name:t,range:n}:null}function VLe(e,t,n,r,i,a){var o=Z({},t);if(i){var s=i.type,c=s===`color`&&p4(i).drColorMappingBy,l=c===`index`?r:c===`id`?a.mapIdToIndex(n.getId()):n.getValue(e.get(`visualDimension`));o[s]=i.mapValueToVisual(l)}return o}function HLe(e){e.registerSeriesModel(sLe),e.registerChartView(kLe),e.registerVisual(LLe),e.registerLayout(vLe),oLe(e)}function v4(e){return`_EC_`+e}var ULe=function(){function e(e){this.type=`graph`,this.nodes=[],this.edges=[],this._nodesMap={},this._edgesMap={},this._directed=e||!1}return e.prototype.isDirected=function(){return this._directed},e.prototype.addNode=function(e,t){e=e==null?``+t:``+e;var n=this._nodesMap;if(!n[v4(e)]){var r=new y4(e,t);return r.hostGraph=this,this.nodes.push(r),n[v4(e)]=r,r}},e.prototype.getNodeByIndex=function(e){var t=this.data.getRawIndex(e);return this.nodes[t]},e.prototype.getNodeById=function(e){return this._nodesMap[v4(e)]},e.prototype.addEdge=function(e,t,n){var r=this._nodesMap,i=this._edgesMap;if(vA(e)&&(e=this.nodes[e]),vA(t)&&(t=this.nodes[t]),e instanceof y4||(e=r[v4(e)]),t instanceof y4||(t=r[v4(t)]),!(!e||!t)){var a=e.id+`-`+t.id,o=new b4(e,t,n);return o.hostGraph=this,this._directed&&(e.outEdges.push(o),t.inEdges.push(o)),e.edges.push(o),e!==t&&t.edges.push(o),this.edges.push(o),i[a]=o,o}},e.prototype.getEdgeByIndex=function(e){var t=this.edgeData.getRawIndex(e);return this.edges[t]},e.prototype.getEdge=function(e,t){e instanceof y4&&(e=e.id),t instanceof y4&&(t=t.id);var n=this._edgesMap;return this._directed?n[e+`-`+t]:n[e+`-`+t]||n[t+`-`+e]},e.prototype.eachNode=function(e,t){for(var n=this.nodes,r=n.length,i=0;i=0&&e.call(t,n[i],i)},e.prototype.eachEdge=function(e,t){for(var n=this.edges,r=n.length,i=0;i=0&&n[i].node1.dataIndex>=0&&n[i].node2.dataIndex>=0&&e.call(t,n[i],i)},e.prototype.breadthFirstTraverse=function(e,t,n,r){if(t instanceof y4||(t=this._nodesMap[v4(t)]),t){for(var i=n===`out`?`outEdges`:n===`in`?`inEdges`:`edges`,a=0;a=0&&n.node2.dataIndex>=0});for(var i=0,a=r.length;i=0&&!e.hasKey(p)&&(e.set(p,!0),a.push(f.node1))}for(s=0;s=0&&!e.hasKey(v)&&(e.set(v,!0),o.push(_.node2))}}}return{edge:e.keys(),node:t.keys()}},e}(),b4=function(){function e(e,t,n){this.dataIndex=-1,this.node1=e,this.node2=t,this.dataIndex=n??-1}return e.prototype.getModel=function(e){if(!(this.dataIndex<0))return this.hostGraph.edgeData.getItemModel(this.dataIndex).getModel(e)},e.prototype.getAdjacentDataIndices=function(){return{edge:[this.dataIndex],node:[this.node1.dataIndex,this.node2.dataIndex]}},e.prototype.getTrajectoryDataIndices=function(){var e=zA(),t=zA();e.set(this.dataIndex,!0);for(var n=[this.node1],r=[this.node2],i=0;i=0&&!e.hasKey(u)&&(e.set(u,!0),n.push(l.node1))}for(i=0;i=0&&!e.hasKey(m)&&(e.set(m,!0),r.push(p.node2))}return{edge:e.keys(),node:t.keys()}},e}();function x4(e,t){return{getValue:function(n){var r=this[e][t];return r.getStore().get(r.getDimensionIndex(n||`value`),this.dataIndex)},setVisual:function(n,r){this.dataIndex>=0&&this[e][t].setItemVisual(this.dataIndex,n,r)},getVisual:function(n){return this[e][t].getItemVisual(this.dataIndex,n)},setLayout:function(n,r){this.dataIndex>=0&&this[e][t].setItemLayout(this.dataIndex,n,r)},getLayout:function(){return this[e][t].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[e][t].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[e][t].getRawIndex(this.dataIndex)}}}aA(y4,x4(`hostGraph`,`data`)),aA(b4,x4(`hostGraph`,`edgeData`));function S4(e,t,n,r,i){for(var a=new ULe(r),o=0;o `+f)),l++)}var p=n.get(`coordinateSystem`),m;if(p===`cartesian2d`||p===`polar`||p===`matrix`)m=kq(e,n);else{var h=VV.get(p),g=h&&h.dimensions||[];rA(g,`value`)<0&&g.concat([`value`]);var _=wq(e,{coordDimensions:g,encodeDefine:n.getEncode()}).dimensions;m=new Cq(_,n),m.initData(e)}var v=new Cq([`value`],n);return v.initData(c,s),i&&i(m,v),h2({mainData:m,struct:a,structAttr:`graph`,datas:{node:m,edge:v},datasAttr:{node:`data`,edge:`edgeData`}}),a.update(),a}var C4=`-->`,w4=function(e){return e.get(`autoCurveness`)||null},T4=function(e,t){var n=w4(e),r=20,i=[];if(vA(n))r=n;else if(mA(n)){e.__curvenessList=n;return}t>r&&(r=t);var a=r%2?r+2:r+3;i=[];for(var o=0;o `),value:i.value,noValue:i.value==null})}return aW({series:this,dataIndex:e,multipleSeries:t})},t.prototype._updateCategoriesData=function(){var e=sA(this.option.categories||[],function(e){return e.value==null?Z({value:0},e):e}),t=new Cq([`value`],this);t.initData(e),this._categoriesData=t,this._categoriesModels=t.mapArray(function(e){return t.getItemModel(e)})},t.prototype.isAnimationEnabled=function(){return e.prototype.isAnimationEnabled.call(this)&&!(this.get(`layout`)===`force`&&this.get([`force`,`layoutAnimation`]))},t.prototype.__ownRoamView=function(){var e=this.coordinateSystem;return x0(e)&&e},t.type=`series.`+A4,t.dependencies=[`grid`,`polar`,`geo`,`singleAxis`,`calendar`],t.defaultOption={z:2,coordinateSystem:`view`,legendHoverLink:!0,layout:null,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:`center`,top:`center`,symbol:`circle`,symbolSize:10,edgeSymbol:[`none`,`none`],edgeSymbolSize:10,edgeLabel:{position:`middle`,distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:`{b}`},itemStyle:{},lineStyle:{color:$.color.neutral50,width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:$.color.primary}}},t}(lW);function j4(e){return e instanceof Array||(e=[e,e]),e}var YLe=vI(A4,XLe);function XLe(e){e.eachSeriesByType(A4,function(e){var t=e.getGraph(),n=e.getEdgeData(),r=j4(e.get(`edgeSymbol`)),i=j4(e.get(`edgeSymbolSize`));n.setVisual(`fromSymbol`,r&&r[0]),n.setVisual(`toSymbol`,r&&r[1]),n.setVisual(`fromSymbolSize`,i&&i[0]),n.setVisual(`toSymbolSize`,i&&i[1]),n.setVisual(`style`,e.getModel(`lineStyle`).getLineStyle()),n.each(function(e){var r=n.getItemModel(e),i=t.getEdgeByIndex(e),a=j4(r.getShallow(`symbol`,!0)),o=j4(r.getShallow(`symbolSize`,!0)),s=r.getModel(`lineStyle`).getLineStyle(),c=n.ensureUniqueItemVisual(e,`style`);switch(Z(c,s),c.stroke){case`source`:var l=i.node1.getVisual(`style`);c.stroke=l&&l.fill;break;case`target`:var l=i.node2.getVisual(`style`);c.stroke=l&&l.fill;break}a[0]&&i.setVisual(`fromSymbol`,a[0]),a[1]&&i.setVisual(`toSymbol`,a[1]),o[0]&&i.setVisual(`fromSymbolSize`,o[0]),o[1]&&i.setVisual(`toSymbolSize`,o[1])})})}function M4(e){var t=e.coordinateSystem;if(!(t&&t.type!==`view`)){var n=e.getGraph();n.eachNode(function(e){var t=e.getModel();e.setLayout([+t.get(`x`),+t.get(`y`)])}),N4(n,e)}}function N4(e,t){e.eachEdge(function(e,n){var r=kA(e.getModel().get([`lineStyle`,`curveness`]),-k4(e,t,n,!0),0),i=XA(e.node1.getLayout()),a=XA(e.node2.getLayout()),o=[i,a];+r&&o.push([(i[0]+a[0])/2-(i[1]-a[1])*r,(i[1]+a[1])/2-(a[0]-i[0])*r]),e.setLayout(o)})}var ZLe=vI(A4,QLe);function QLe(e,t){e.eachSeriesByType(A4,function(e){var t=e.get(`layout`),n=e.coordinateSystem;if(n&&n.type!==`view`){var r=e.getData(),i=[];Q(n.dimensions,function(e){i=i.concat(r.mapDimensionsAll(e))});for(var a=0;a0&&(y[0]=-y[0],y[1]=-y[1]);var x=v[0]<0?-1:1;if(r.__position!==`start`&&r.__position!==`end`){var S=-Math.atan2(v[1],v[0]);l[0].8?`left`:u[0]<-.8?`right`:`center`,p=u[1]>.8?`top`:u[1]<-.8?`bottom`:`middle`;break;case`start`:r.x=-u[0]*h+c[0],r.y=-u[1]*g+c[1],f=u[0]>.8?`right`:u[0]<-.8?`left`:`center`,p=u[1]>.8?`bottom`:u[1]<-.8?`top`:`middle`;break;case`insideStartTop`:case`insideStart`:case`insideStartBottom`:r.x=h*x+c[0],r.y=c[1]+C,f=v[0]<0?`right`:`left`,r.originX=-h*x,r.originY=-C;break;case`insideMiddleTop`:case`insideMiddle`:case`insideMiddleBottom`:case`middle`:r.x=b[0],r.y=b[1]+C,f=`center`,r.originY=-C;break;case`insideEndTop`:case`insideEnd`:case`insideEndBottom`:r.x=-h*x+l[0],r.y=l[1]+C,f=v[0]>=0?`right`:`left`,r.originX=h*x,r.originY=-C;break}r.scaleX=r.scaleY=i,r.setStyle({verticalAlign:r.__verticalAlign||p,align:r.__align||f})}},t}($P),Q4=function(){function e(e){this.group=new $P,this._LineCtor=e||Z4}return e.prototype.updateData=function(e){var t=this;this._progressiveEls=null;var n=this,r=n.group,i=n._lineData;n._lineData=e,i||r.removeAll();var a=$4(e);e.diff(i).add(function(n){t._doAdd(e,n,a)}).update(function(n,r){t._doUpdate(i,e,r,n,a)}).remove(function(e){r.remove(i.getItemGraphicEl(e))}).execute()},e.prototype.updateLayout=function(){var e=this._lineData;e&&e.eachItemGraphicEl(function(t,n){t.updateLayout(e,n)},this)},e.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=$4(e),this._lineData=null,this.group.removeAll()},e.prototype.incrementalUpdate=function(e,t,n){this._progressiveEls=[];function r(e){!e.isGroup&&!cRe(e)&&(e.incremental=n,e.ensureState(`emphasis`).hoverLayer=2)}for(var i=e.start;i0}function $4(e){var t=e.hostModel,n=t.getModel(`emphasis`);return{lineStyle:t.getModel(`lineStyle`).getLineStyle(),emphasisLineStyle:n.getModel([`lineStyle`]).getLineStyle(),blurLineStyle:t.getModel([`blur`,`lineStyle`]).getLineStyle(),selectLineStyle:t.getModel([`select`,`lineStyle`]).getLineStyle(),emphasisDisabled:n.get(`disabled`),blurScope:n.get(`blurScope`),focus:n.get(`focus`),labelStatesModels:CB(t)}}function e3(e){return isNaN(e[0])||isNaN(e[1])}function t3(e){return e&&!e3(e[0])&&!e3(e[1])}var n3=[],r3=[],i3=[],a3=WM,o3=cj,s3=Math.abs;function c3(e,t,n){for(var r=e[0],i=e[1],a=e[2],o=1/0,s,c=n*n,l=.1,u=.1;u<=.9;u+=.1){n3[0]=a3(r[0],i[0],a[0],u),n3[1]=a3(r[1],i[1],a[1],u);var d=s3(o3(n3,t)-c);d=0?s+=l:s-=l:m>=0?s-=l:s+=l}return s}function l3(e,t){var n=[],r=qM,i=[[],[],[]],a=[[],[]],o=[];t/=2,e.eachEdge(function(e,s){var c=e.getLayout(),l=e.getVisual(`fromSymbol`),u=e.getVisual(`toSymbol`);c.__original||(c.__original=[XA(c[0]),XA(c[1])],c[2]&&c.__original.push(XA(c[2])));var d=c.__original;if(c[2]!=null){if(YA(i[0],d[0]),YA(i[1],d[2]),YA(i[2],d[1]),l&&l!==`none`){var f=F4(e.node1),p=c3(i,d[0],f*t);r(i[0][0],i[1][0],i[2][0],p,n),i[0][0]=n[3],i[1][0]=n[4],r(i[0][1],i[1][1],i[2][1],p,n),i[0][1]=n[3],i[1][1]=n[4]}if(u&&u!==`none`){var f=F4(e.node2),p=c3(i,d[1],f*t);r(i[0][0],i[1][0],i[2][0],p,n),i[1][0]=n[1],i[2][0]=n[2],r(i[0][1],i[1][1],i[2][1],p,n),i[1][1]=n[1],i[2][1]=n[2]}YA(c[0],i[0]),YA(c[1],i[2]),YA(c[2],i[1])}else{if(YA(a[0],d[0]),YA(a[1],d[1]),ej(o,a[1],a[0]),ij(o,o),l&&l!==`none`){var f=F4(e.node1);$A(a[0],a[0],o,f*t)}if(u&&u!==`none`){var f=F4(e.node2);$A(a[1],a[1],o,-f*t)}YA(c[0],a[0]),YA(c[1],a[1])}})}var u3=tI();function lRe(e){if(e)return u3(e).bridge}function d3(e,t){e&&(u3(e).bridge=t)}var uRe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=A4,t}return t.prototype.init=function(e,t){var n=new EZ,r=new Q4,i=this.group,a=new $P;this._controller=new b1(t.getZr()),a.add(n.group),a.add(r.group),i.add(a),this._symbolDraw=n,this._lineDraw=r,this._mainGroup=a,this._firstRender=!0},t.prototype.render=function(e,t,n){var r=this,i=E0(e),a=!1;this._model=e,this._api=n,this._active=!0;var o=this._mainGroup,s=this._getThumbnailInfo();s&&s.bridge.reset(n);var c=this._symbolDraw,l=this._lineDraw;i&&S0(o,2,i,this._firstRender?null:e),l3(e.getGraph(),P4(e));var u=e.getData();c.updateData(u);var d=e.getEdgeData();l.updateData(d),this._updateNodeAndLinkScale(),i&&F0(e,n,this._controller,function(t,n,r){return e.coordinateSystem.containPoint([n,r])},null),clearTimeout(this._layoutTimeout);var f=e.forceLayout,p=e.get([`force`,`layoutAnimation`]);f&&(a=!0,this._startForceLayoutIteration(f,n,p));var m=e.get(`layout`);u.graph.eachNode(function(t){var i=t.dataIndex,a=t.getGraphicEl(),o=t.getModel();if(a){a.off(`drag`).off(`dragend`);var s=o.get(`draggable`);s&&a.on(`drag`,function(o){switch(m){case`force`:f.warmUp(),!r._layouting&&r._startForceLayoutIteration(f,n,p),f.setFixed(i),u.setItemLayout(i,[a.x,a.y]);break;case`circular`:u.setItemLayout(i,[a.x,a.y]),t.setLayout({fixed:!0},!0),R4(e,`symbolSize`,t,[o.offsetX,o.offsetY]),r.updateLayout(e);break;default:u.setItemLayout(i,[a.x,a.y]),N4(e.getGraph(),e),r.updateLayout(e);break}}).on(`dragend`,function(){f&&f.setUnfixed(i)}),a.setDraggable(s,!!o.get(`cursor`)),o.get([`emphasis`,`focus`])===`adjacency`&&(ML(a).focus=t.getAdjacentDataIndices())}}),u.graph.eachEdge(function(e){var t=e.getGraphicEl(),n=e.getModel().get([`emphasis`,`focus`]);t&&n===`adjacency`&&(ML(t).focus={edge:[e.dataIndex],node:[e.node1.dataIndex,e.node2.dataIndex]})});var h=e.get(`layout`)===`circular`&&e.get([`circular`,`rotateLabel`]),g=u.getLayout(`cx`),_=u.getLayout(`cy`);u.graph.eachNode(function(e){z4(e,h,g,_)}),this._firstRender=!1,a||this._renderThumbnail(e,n,this._symbolDraw,this._lineDraw)},t.prototype.dispose=function(){this.remove(),this._controller&&this._controller.dispose()},t.prototype._startForceLayoutIteration=function(e,t,n){var r=this,i=!1;(function a(){e.step(function(e){r.updateLayout(r._model),(e||!i)&&(i=!0,r._renderThumbnail(r._model,t,r._symbolDraw,r._lineDraw)),(r._layouting=!e)&&(n?r._layoutTimeout=setTimeout(a,16):a())})})()},t.prototype.__updateOnOwnRoam=function(e,t,n){var r=E0(t);!this._active||!r||(S0(this._mainGroup,2,r,null),B0(e)&&(this._updateNodeAndLinkScale(),l3(t.getGraph(),P4(t)),this._lineDraw.updateLayout(),n.updateLabelLayout()),this._updateThumbnailWindow())},t.prototype._updateNodeAndLinkScale=function(){var e=this._model,t=e.getData(),n=P4(e);t.eachItemGraphicEl(function(e,t){e&&e.setSymbolScale(n)})},t.prototype.updateLayout=function(e){this._active&&(l3(e.getGraph(),P4(e)),this._symbolDraw.updateLayout(),this._lineDraw.updateLayout())},t.prototype.remove=function(){this._active=!1,clearTimeout(this._layoutTimeout),this._layouting=!1,this._layoutTimeout=null,this._symbolDraw&&this._symbolDraw.remove(),this._lineDraw&&this._lineDraw.remove(),this._controller&&this._controller.disable()},t.prototype._getThumbnailInfo=function(){var e=this._model,t=e.coordinateSystem;if(t.type===`view`){var n=lRe(e);if(n)return{bridge:n,coordSys:t}}},t.prototype._updateThumbnailWindow=function(){var e=this._getThumbnailInfo();e&&e.bridge.updateWindow(t0(null,e.coordSys),this._api)},t.prototype._renderThumbnail=function(e,t,n,r){var i=this._getThumbnailInfo();if(i){var a=new $P,o=n.group.children(),s=r.group.children(),c=new $P,l=new $P;a.add(l),a.add(c);for(var u=0;u `),value:r.value,noValue:r.value==null})}return YU(`nameValue`,{name:r.name,value:r.value,noValue:r.value==null})},t.prototype.getDataParams=function(t,n){var r=e.prototype.getDataParams.call(this,t,n);if(n===`node`){var i=this.getData(),a=this.getGraph().getNodeByIndex(t);r.name??=i.getName(t),r.value??=a.getLayout().value}return r},t.type=`series.`+f3,t.defaultOption={z:2,coordinateSystem:`none`,legendHoverLink:!0,colorBy:`data`,left:0,top:0,right:0,bottom:0,width:null,height:null,center:[`50%`,`50%`],radius:[`70%`,`80%`],clockwise:!0,startAngle:90,endAngle:`auto`,minAngle:0,padAngle:3,itemStyle:{borderRadius:[0,0,5,5]},lineStyle:{width:0,color:`source`,opacity:.2},label:{show:!0,position:`outside`,distance:5},emphasis:{focus:`adjacency`,lineStyle:{opacity:.5}}},t}(lW),p3=function(e){X(t,e);function t(t,n,r){var i=e.call(this)||this;ML(i).dataType=`node`,i.z2=2;var a=new AL;return i.setTextContent(a),i.updateData(t,n,r,!0),i}return t.prototype.updateData=function(e,t,n,r){var i=this,a=e.graph.getNodeByIndex(t),o=e.hostModel,s=a.getModel(),c=s.getModel(`emphasis`),l=e.getItemLayout(t),u=Z(QQ(s.getModel(`itemStyle`),l,!0),l),d=this;if(isNaN(u.startAngle)){d.setShape(u);return}r?d.setShape(u):Sz(d,{shape:u},o,t);var f=Z(QQ(s.getModel(`itemStyle`),l,!0),l);i.setShape(f),i.useStyle(e.getItemVisual(t,`style`)),gR(i,s),this._updateLabel(o,s,a),e.setItemGraphicEl(t,d),gR(d,s,`itemStyle`);var p=c.get(`focus`);pR(this,p===`adjacency`?a.getAdjacentDataIndices():p,c.get(`blurScope`),c.get(`disabled`))},t.prototype._updateLabel=function(e,t,n){var r=this.getTextContent(),i=n.getLayout(),a=(i.startAngle+i.endAngle)/2,o=Math.cos(a),s=Math.sin(a),c=t.getModel(`label`);r.ignore=!c.get(`show`);var l=CB(t),u=n.getVisual(`style`);SB(r,l,{labelFetcher:{getFormattedLabel:function(n,r,i,a,o,s){return e.getFormattedLabel(n,r,`node`,a,kA(o,l.normal&&l.normal.get(`formatter`),t.get(`name`)),s)}},labelDataIndex:n.dataIndex,defaultText:n.dataIndex+``,inheritColor:u.fill,defaultOpacity:u.opacity,defaultOutsidePosition:`startArc`});var d=c.get(`position`)||`outside`,f=c.get(`distance`)||0,p=d===`outside`?i.r+f:(i.r+i.r0)/2;this.textConfig={inside:d!==`outside`};var m=d===`outside`?o>0?`left`:`right`:c.get(`align`)||`center`,h=d===`outside`?s>0?`top`:`bottom`:c.get(`verticalAlign`)||`middle`;r.attr({x:o*p+i.cx,y:s*p+i.cy,rotation:0,style:{align:m,verticalAlign:h}})},t}(XR);(function(){function e(){this.s1=[0,0],this.s2=[0,0],this.sStartAngle=0,this.sEndAngle=0,this.t1=[0,0],this.t2=[0,0],this.tStartAngle=0,this.tEndAngle=0,this.cx=0,this.cy=0,this.r=0,this.clockwise=!0}return e})();var _Re=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this)||this;return ML(a).dataType=`edge`,a.updateData(t,n,r,i,!0),a}return t.prototype.buildPath=function(e,t){e.moveTo(t.s1[0],t.s1[1]);var n=.7,r=t.clockwise;e.arc(t.cx,t.cy,t.r,t.sStartAngle,t.sEndAngle,!r),e.bezierCurveTo((t.cx-t.s2[0])*n+t.s2[0],(t.cy-t.s2[1])*n+t.s2[1],(t.cx-t.t1[0])*n+t.t1[0],(t.cy-t.t1[1])*n+t.t1[1],t.t1[0],t.t1[1]),e.arc(t.cx,t.cy,t.r,t.tStartAngle,t.tEndAngle,!r),e.bezierCurveTo((t.cx-t.t2[0])*n+t.t2[0],(t.cy-t.t2[1])*n+t.t2[1],(t.cx-t.s1[0])*n+t.s1[0],(t.cy-t.s1[1])*n+t.s1[1],t.s1[0],t.s1[1]),e.closePath()},t.prototype.updateData=function(e,t,n,r,i){var a=e.hostModel,o=t.graph.getEdgeByIndex(n),s=o.getLayout(),c=o.node1.getModel(),l=t.getItemModel(o.dataIndex),u=l.getModel(`lineStyle`),d=l.getModel(`emphasis`),f=d.get(`focus`),p=Z(QQ(c.getModel(`itemStyle`),s,!0),s),m=this;if(isNaN(p.sStartAngle)||isNaN(p.tStartAngle)){m.setShape(p);return}i?(m.setShape(p),m3(m,o,e,u)):(Oz(m),m3(m,o,e,u),Sz(m,{shape:p},a,n)),pR(this,f===`adjacency`?o.getAdjacentDataIndices():f,d.get(`blurScope`),d.get(`disabled`)),gR(m,l,`lineStyle`),t.setItemGraphicEl(o.dataIndex,m)},t}(SL);function m3(e,t,n,r){var i=t.node1,a=t.node2,o=e.style;switch(e.setStyle(r.getLineStyle()),r.get(`color`)){case`source`:o.fill=n.getItemVisual(i.dataIndex,`style`).fill,o.decal=i.getVisual(`style`).decal;break;case`target`:o.fill=n.getItemVisual(a.dataIndex,`style`).fill,o.decal=a.getVisual(`style`).decal;break;case`gradient`:var s=n.getItemVisual(i.dataIndex,`style`).fill,c=n.getItemVisual(a.dataIndex,`style`).fill;if(gA(s)&&gA(c)){var l=e.shape;o.fill=new cz((l.s1[0]+l.s2[0])/2,(l.s1[1]+l.s2[1])/2,(l.t1[0]+l.t2[0])/2,(l.t1[1]+l.t2[1])/2,[{offset:0,color:s},{offset:1,color:c}],!0)}break}}var vRe=Math.PI/180,yRe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=f3,t}return t.prototype.init=function(e,t){},t.prototype.render=function(e,t,n){var r=e.getData(),i=this._data,a=this.group,o=-e.get(`startAngle`)*vRe;if(r.diff(i).add(function(e){if(r.getItemLayout(e)){var t=new p3(r,e,o);ML(t).dataIndex=e,a.add(t)}}).update(function(t,n){var s=i.getItemGraphicEl(n);if(!r.getItemLayout(t)){s&&Dz(s,e,n);return}s?s.updateData(r,t,o):s=new p3(r,t,o),a.add(s)}).remove(function(t){var n=i.getItemGraphicEl(t);n&&Dz(n,e,t)}).execute(),!i){var s=e.get(`center`);this.group.scaleX=.01,this.group.scaleY=.01,this.group.originX=bF(s[0],n.getWidth()),this.group.originY=bF(s[1],n.getHeight()),Cz(this.group,{scaleX:1,scaleY:1},e)}this._data=r,this.renderEdges(e,o)},t.prototype.renderEdges=function(e,t){var n=e.getData(),r=e.getEdgeData(),i=this._edgeData,a=this.group;r.diff(i).add(function(e){var i=new _Re(n,r,e,t);ML(i).dataIndex=e,a.add(i)}).update(function(e,o){var s=i.getItemGraphicEl(o);s.updateData(n,r,e,t),a.add(s)}).remove(function(t){var n=i.getItemGraphicEl(t);n&&Dz(n,e,t)}).execute(),this._edgeData=r},t.prototype.dispose=function(){},t.type=f3,t}(gW),h3=Math.PI/180,bRe=vI(f3,xRe);function xRe(e,t){e.eachSeriesByType(f3,function(e){SRe(e,t)})}function SRe(e,t){var n=e.getData(),r=n.graph,i=e.getEdgeData();if(i.count()){var a=$V(e,t),o=a.cx,s=a.cy,c=a.r,l=a.r0,u=Math.max((e.get(`padAngle`)||0)*h3,0),d=Math.max((e.get(`minAngle`)||0)*h3,0),f=-e.get(`startAngle`)*h3,p=f+Math.PI*2,m=e.get(`clockwise`),h=m?1:-1,g=[f,p];uL(g,!m);var _=g[0],v=g[1]-_,y=n.getSum(`value`)===0&&i.getSum(`value`)===0,b=[],x=0;r.eachEdge(function(e){var t=y?1:e.getValue(`value`);y&&(t>0||d)&&(x+=2);var n=e.node1.dataIndex,r=e.node2.dataIndex;b[n]=(b[n]||0)+t,b[r]=(b[r]||0)+t});var S=0;if(r.eachNode(function(e){var t=e.getValue(`value`);isNaN(t)||(b[e.dataIndex]=Math.max(t,b[e.dataIndex]||0)),!y&&(b[e.dataIndex]>0||d)&&x++,S+=b[e.dataIndex]||0}),!(x===0||S===0)){u*x>=Math.abs(v)&&(u=Math.max(0,(Math.abs(v)-d*x)/x)),(u+d)*x>=Math.abs(v)&&(d=(Math.abs(v)-u*x)/x);var C=(v-u*x*h)/S,w=0,T=0,E=0,D=1/0;r.eachNode(function(e){var t=b[e.dataIndex]||0,n=C*(S?t:1)*h;Math.abs(n)T){var k=w/T;r.eachNode(function(e){var t=e.getLayout().angle;Math.abs(t)>=d?e.setLayout({angle:t*k,ratio:k},!0):e.setLayout({angle:d,ratio:d===0?1:t/d},!0)})}else r.eachNode(function(e){if(!O){var t=e.getLayout().angle;t-Math.min(t/E,1)*wd&&d>0){var n=O?1:Math.min(t/E,1),r=t-d,i=Math.min(r,Math.min(A,w*n));A-=i,e.setLayout({angle:t-i,ratio:(t-i)/t},!0)}else d>0&&e.setLayout({angle:d,ratio:t===0?1:d/t},!0)}});var j=_,M=[];r.eachNode(function(e){var t=Math.max(e.getLayout().angle,d);e.setLayout({cx:o,cy:s,r0:l,r:c,startAngle:j,endAngle:j+t*h,clockwise:m},!0),M[e.dataIndex]=j,j+=(t+u)*h}),r.eachEdge(function(e){var t=y?1:e.getValue(`value`),n=C*(S?t:1)*h,r=e.node1.dataIndex,i=M[r]||0,a=i+Math.abs((e.node1.getLayout().ratio||1)*n)*h,c=[o+l*Math.cos(i),s+l*Math.sin(i)],u=[o+l*Math.cos(a),s+l*Math.sin(a)],d=e.node2.dataIndex,f=M[d]||0,p=f+Math.abs((e.node2.getLayout().ratio||1)*n)*h,g=[o+l*Math.cos(f),s+l*Math.sin(f)],_=[o+l*Math.cos(p),s+l*Math.sin(p)];e.setLayout({s1:c,s2:u,sStartAngle:i,sEndAngle:a,t1:g,t2:_,tStartAngle:f,tEndAngle:p,cx:o,cy:s,r:l,value:t,clockwise:m}),M[r]=a,M[d]=p})}}}function CRe(e){e.registerChartView(yRe),e.registerSeriesModel(gRe),e.registerLayout(e.PRIORITY.VISUAL.POST_CHART_LAYOUT,bRe),e.registerProcessor(p$(`chord`))}var wRe=function(){function e(){this.angle=0,this.width=10,this.r=10,this.x=0,this.y=0}return e}(),TRe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`pointer`,n}return t.prototype.getDefaultShape=function(){return new wRe},t.prototype.buildPath=function(e,t){var n=Math.cos,r=Math.sin,i=t.r,a=t.width,o=t.angle,s=t.x-n(o)*a*(a>=i/3?1:2),c=t.y-r(o)*a*(a>=i/3?1:2);o=t.angle-Math.PI/2,e.moveTo(s,c),e.lineTo(t.x+n(o)*a,t.y+r(o)*a),e.lineTo(t.x+n(t.angle)*i,t.y+r(t.angle)*i),e.lineTo(t.x-n(o)*a,t.y-r(o)*a),e.lineTo(s,c)},t}(SL);function ERe(e,t){var n=e.get(`center`),r=t.getWidth(),i=t.getHeight(),a=Math.min(r,i);return{cx:bF(n[0],t.getWidth()),cy:bF(n[1],t.getHeight()),r:bF(e.get(`radius`),a/2)}}function g3(e,t){var n=e==null?``:e+``;return t&&(gA(t)?n=t.replace(`{value}`,n):hA(t)&&(n=t(e))),n}var DRe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){this.group.removeAll();var r=e.get([`axisLine`,`lineStyle`,`color`]),i=ERe(e,n);this._renderMain(e,t,n,r,i),this._data=e.getData()},t.prototype.dispose=function(){},t.prototype._renderMain=function(e,t,n,r,i){var a=this.group,o=e.get(`clockwise`),s=-e.get(`startAngle`)/180*Math.PI,c=-e.get(`endAngle`)/180*Math.PI,l=e.getModel(`axisLine`),u=l.get(`roundCap`)?YQ:XR,d=l.get(`show`),f=l.getModel(`lineStyle`),p=f.get(`width`),m=[s,c];uL(m,!o),s=m[0],c=m[1];for(var h=c-s,g=s,_=[],v=0;d&&v=e&&(t===0?0:r[t-1][0])Math.PI/2&&(R+=Math.PI)):L===`tangential`?R=-S-Math.PI/2:vA(L)&&(R=L*Math.PI/180),R===0?l.add(new AL({style:wB(_,{text:N,x:F,y:I,verticalAlign:k<-.8?`top`:k>.8?`bottom`:`middle`,align:O<-.4?`left`:O>.4?`right`:`center`},{inheritColor:P}),silent:!0})):l.add(new AL({style:wB(_,{text:N,x:F,y:I,verticalAlign:`middle`,align:`center`},{inheritColor:P}),silent:!0,originX:F,originY:I,rotation:R}))}if(g.get(`show`)&&A!==v){var j=g.get(`distance`);j=j?j+c:c;for(var z=0;z<=y;z++){O=Math.cos(S),k=Math.sin(S);var B=new tz({shape:{x1:O*(f-j)+u,y1:k*(f-j)+d,x2:O*(f-x-j)+u,y2:k*(f-x-j)+d},silent:!0,style:E});E.stroke===`auto`&&B.setStyle({stroke:r((A+z/y)/v)}),l.add(B),S+=w}S-=w}else S+=C}},t.prototype._renderPointer=function(e,t,n,r,i,a,o,s,c){var l=this.group,u=this._data,d=this._progressEls,f=[],p=e.get([`pointer`,`show`]),m=e.getModel(`progress`),h=m.get(`show`),g=e.getData(),_=g.mapDimension(`value`),v=+e.get(`min`),y=+e.get(`max`),b=[v,y],x=[a,o];function S(t,n){var r=g.getItemModel(t).getModel(`pointer`),a=bF(r.get(`width`),i.r),o=bF(r.get(`length`),i.r),s=e.get([`pointer`,`icon`]),c=r.get(`offsetCenter`),l=bF(c[0],i.r),u=bF(c[1],i.r),d=r.get(`keepAspect`),f=s?aG(s,l-a/2,u-o,a,o,null,d):new TRe({shape:{angle:-Math.PI/2,width:a,r:o,x:l,y:u}});return f.rotation=-(n+Math.PI/2),f.x=i.cx,f.y=i.cy,f}function C(e,t){var n=m.get(`roundCap`)?YQ:XR,r=m.get(`overlap`),o=r?m.get(`width`):c/g.count(),l=r?i.r-o:i.r-(e+1)*o,u=r?i.r:i.r-e*o,d=new n({shape:{startAngle:a,endAngle:t,cx:i.cx,cy:i.cy,clockwise:s,r0:l,r:u}});return r&&(d.z2=yF(g.get(_,e),[v,y],[100,0],!0)),d}(h||p)&&(g.diff(u).add(function(t){var n=g.get(_,t);if(p){var r=S(t,a);Cz(r,{rotation:-((isNaN(+n)?x[0]:yF(n,b,x,!0))+Math.PI/2)},e),l.add(r),g.setItemGraphicEl(t,r)}if(h){var i=C(t,a);Cz(i,{shape:{endAngle:yF(n,b,x,m.get(`clip`))}},e),l.add(i),NL(e.seriesIndex,g.dataType,t,i),f[t]=i}}).update(function(t,n){var r=g.get(_,t);if(p){var i=u.getItemGraphicEl(n),o=i?i.rotation:a,s=S(t,o);s.rotation=o,Sz(s,{rotation:-((isNaN(+r)?x[0]:yF(r,b,x,!0))+Math.PI/2)},e),l.add(s),g.setItemGraphicEl(t,s)}if(h){var c=d[n],v=C(t,c?c.shape.endAngle:a);Sz(v,{shape:{endAngle:yF(r,b,x,m.get(`clip`))}},e),l.add(v),NL(e.seriesIndex,g.dataType,t,v),f[t]=v}}).execute(),g.each(function(e){var t=g.getItemModel(e),n=t.getModel(`emphasis`),i=n.get(`focus`),a=n.get(`blurScope`),o=n.get(`disabled`),s=r(yF(g.get(_,e),b,[0,1],!0));if(p){var c=g.getItemGraphicEl(e),l=g.getItemVisual(e,`style`),u=l.fill;if(c instanceof wL){var d=c.style;c.useStyle(Z({image:d.image,x:d.x,y:d.y,width:d.width,height:d.height},l))}else c.useStyle(l),c.type!==`pointer`&&c.setColor(u);c.setStyle(t.getModel([`pointer`,`itemStyle`]).getItemStyle()),c.style.fill===`auto`&&c.setStyle(`fill`,s),c.z2EmphasisLift=0,gR(c,t),pR(c,i,a,o)}if(h){var m=f[e];m.useStyle(g.getItemVisual(e,`style`)),m.setStyle(t.getModel([`progress`,`itemStyle`]).getItemStyle()),m.style.fill===`auto`&&m.setStyle(`fill`,s),m.z2EmphasisLift=0,gR(m,t),pR(m,i,a,o)}}),this._progressEls=f)},t.prototype._renderAnchor=function(e,t){var n=e.getModel(`anchor`);if(n.get(`show`)){var r=n.get(`size`),i=n.get(`icon`),a=n.get(`offsetCenter`),o=n.get(`keepAspect`),s=aG(i,t.cx-r/2+bF(a[0],t.r),t.cy-r/2+bF(a[1],t.r),r,r,null,o);s.z2=+!!n.get(`showAbove`),s.setStyle(n.getModel(`itemStyle`).getItemStyle()),this.group.add(s)}},t.prototype._renderTitleAndDetail=function(e,t,n,r,i){var a=this,o=e.getData(),s=o.mapDimension(`value`),c=+e.get(`min`),l=+e.get(`max`),u=new $P,d=[],f=[],p=e.isAnimationEnabled(),m=e.get([`pointer`,`showAbove`]);o.diff(this._data).add(function(e){d[e]=new AL({silent:!0}),f[e]=new AL({silent:!0})}).update(function(e,t){d[e]=a._titleEls[t],f[e]=a._detailEls[t]}).execute(),o.each(function(t){var n=o.getItemModel(t),a=o.get(s,t),h=new $P,g=r(yF(a,[c,l],[0,1],!0)),_=n.getModel(`title`);if(_.get(`show`)){var v=_.get(`offsetCenter`),y=i.cx+bF(v[0],i.r),b=i.cy+bF(v[1],i.r),x=d[t];x.attr({z2:m?0:2,style:wB(_,{x:y,y:b,text:o.getName(t),align:`center`,verticalAlign:`middle`},{inheritColor:g})}),h.add(x)}var S=n.getModel(`detail`);if(S.get(`show`)){var C=S.get(`offsetCenter`),w=i.cx+bF(C[0],i.r),T=i.cy+bF(C[1],i.r),E=bF(S.get(`width`),i.r),D=bF(S.get(`height`),i.r),O=e.get([`progress`,`show`])?o.getItemVisual(t,`style`).fill:g,x=f[t],k=S.get(`formatter`);x.attr({z2:m?0:2,style:wB(S,{x:w,y:T,text:g3(a,k),width:isNaN(E)?null:E,height:isNaN(D)?null:D,align:`center`,verticalAlign:`middle`},{inheritColor:O})}),MB(x,{normal:S},a,function(e){return g3(e,k)}),p&&NB(x,t,o,e,{getFormattedLabel:function(e,t,n,r,i,o){return g3(o?o.interpolatedValue:a,k)}}),h.add(x)}u.add(h)}),this.group.add(u),this._titleEls=d,this._detailEls=f},t.type=`gauge`,t}(gW),ORe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.visualStyleAccessPath=`itemStyle`,n}return t.prototype.getInitialData=function(e,t){return m$(this,[`value`])},t.type=`series.gauge`,t.defaultOption={z:2,colorBy:`data`,center:[`50%`,`50%`],legendHoverLink:!0,radius:`75%`,startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,roundCap:!1,lineStyle:{color:[[1,$.color.neutral10]],width:10}},progress:{show:!1,overlap:!0,width:10,roundCap:!1,clip:!0},splitLine:{show:!0,length:10,distance:10,lineStyle:{color:$.color.axisTick,width:3,type:`solid`}},axisTick:{show:!0,splitNumber:5,length:6,distance:10,lineStyle:{color:$.color.axisTickMinor,width:1,type:`solid`}},axisLabel:{show:!0,distance:15,color:$.color.axisLabel,fontSize:12,rotate:0},pointer:{icon:null,offsetCenter:[0,0],show:!0,showAbove:!0,length:`60%`,width:6,keepAspect:!1},anchor:{show:!1,showAbove:!1,size:6,icon:`circle`,offsetCenter:[0,0],keepAspect:!1,itemStyle:{color:$.color.neutral00,borderWidth:0,borderColor:$.color.theme[0]}},title:{show:!0,offsetCenter:[0,`20%`],color:$.color.secondary,fontSize:16,valueAnimation:!1},detail:{show:!0,backgroundColor:$.color.transparent,borderWidth:0,borderColor:$.color.neutral40,width:100,height:null,padding:[5,10],offsetCenter:[0,`40%`],color:$.color.primary,fontSize:30,fontWeight:`bold`,lineHeight:30,valueAnimation:!1}},t}(lW);function kRe(e){e.registerChartView(DRe),e.registerSeriesModel(ORe)}var _3=`funnel`,ARe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t){e.prototype.init.apply(this,arguments),this.legendVisualProvider=new h$(fA(this.getData,this),fA(this.getRawData,this)),this._defaultLabelLine(t)},t.prototype.getInitialData=function(e,t){return m$(this,{coordDimensions:[`value`],encodeDefaulter:pA(bH,this)})},t.prototype._defaultLabelLine=function(e){JF(e,`labelLine`,[`show`]);var t=e.labelLine,n=e.emphasis.labelLine;t.show=t.show&&e.label.show,n.show=n.show&&e.emphasis.label.show},t.prototype.getDataParams=function(t){var n=this.getData(),r=e.prototype.getDataParams.call(this,t),i=n.mapDimension(`value`),a=n.getSum(i);return r.percent=a?+(n.get(i,t)/a*100).toFixed(2):0,r.$vars.push(`percent`),r},t.type=`series.`+_3,t.defaultOption={coordinateSystemUsage:`box`,z:2,legendHoverLink:!0,colorBy:`data`,left:80,top:60,right:80,bottom:65,minSize:`0%`,maxSize:`100%`,sort:`descending`,orient:`vertical`,gap:0,funnelAlign:`center`,label:{show:!0,position:`outer`},labelLine:{show:!0,length:20,lineStyle:{width:1}},itemStyle:{borderColor:$.color.neutral00,borderWidth:1},emphasis:{label:{show:!0}},select:{itemStyle:{borderColor:$.color.primary}}},t}(lW),jRe=[`itemStyle`,`opacity`],MRe=function(e){X(t,e);function t(t,n){var r=e.call(this)||this,i=r,a=new ez,o=new AL;return i.setTextContent(o),r.setTextGuideLine(a),r.updateData(t,n,!0),r}return t.prototype.updateData=function(e,t,n){var r=this,i=e.hostModel,a=e.getItemModel(t),o=e.getItemLayout(t),s=a.getModel(`emphasis`),c=a.get(jRe);c??=1,n||Oz(r),r.useStyle(e.getItemVisual(t,`style`)),r.style.lineJoin=`round`,n?(r.setShape({points:o.points}),r.style.opacity=0,Cz(r,{style:{opacity:c}},i,t)):Sz(r,{style:{opacity:c},shape:{points:o.points}},i,t),gR(r,a),this._updateLabel(e,t),pR(this,s.get(`focus`),s.get(`blurScope`),s.get(`disabled`))},t.prototype._updateLabel=function(e,t){var n=this,r=this.getTextGuideLine(),i=n.getTextContent(),a=e.hostModel,o=e.getItemModel(t),s=e.getItemLayout(t).label,c=e.getItemVisual(t,`style`),l=c.fill;SB(i,CB(o),{labelFetcher:e.hostModel,labelDataIndex:t,defaultOpacity:c.opacity,defaultText:e.getName(t)},{normal:{align:s.textAlign,verticalAlign:s.verticalAlign}});var u=o.getModel(`label`).get(`color`)===`inherit`?l:null;n.setTextConfig({local:!0,inside:!!s.inside,insideStroke:u,outsideFill:u});var d=s.linePoints;r.setShape({points:d}),n.textGuideLineConfig={anchor:d?new Vj(d[0][0],d[0][1]):null},Sz(i,{style:{x:s.x,y:s.y}},a,t),i.attr({rotation:s.rotation,originX:s.x,originY:s.y,z2:10}),RY(n,zY(o),{stroke:l})},t}($R),NRe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=_3,t.ignoreLabelLineUpdate=!0,t}return t.prototype.render=function(e,t,n){var r=e.getData(),i=this._data,a=this.group;r.diff(i).add(function(e){var t=new MRe(r,e);r.setItemGraphicEl(e,t),a.add(t)}).update(function(e,t){var n=i.getItemGraphicEl(t);n.updateData(r,e),a.add(n),r.setItemGraphicEl(e,n)}).remove(function(t){Dz(i.getItemGraphicEl(t),e,t)}).execute(),this._data=r},t.prototype.remove=function(){this.group.removeAll(),this._data=null},t.prototype.dispose=function(){},t.type=_3,t}(gW);function PRe(e,t){for(var n=e.mapDimension(`value`),r=e.mapArray(n,function(e){return e}),i=[],a=t===`ascending`,o=0,s=e.count();o-1&&(i=`left`),n&&rA([`left`,`right`],i)>-1&&(i=`bottom`)),i===`left`?(p=(s[3][0]+s[0][0])/2,m=(s[3][1]+s[0][1])/2,h=p-_,u=h-5,l=`right`):i===`right`?(p=(s[1][0]+s[2][0])/2,m=(s[1][1]+s[2][1])/2,h=p+_,u=h+5,l=`left`):i===`top`?(p=(s[3][0]+s[0][0])/2,m=(s[3][1]+s[0][1])/2,g=m-_,d=g-5,l=`center`):i===`bottom`?(p=(s[1][0]+s[2][0])/2,m=(s[1][1]+s[2][1])/2,g=m+_,d=g+5,l=`center`):i===`rightTop`?(p=n?s[3][0]:s[1][0],m=n?s[3][1]:s[1][1],n?(g=m-_,d=g-5,l=`center`):(h=p+_,u=h+5,l=`top`)):i===`rightBottom`?(p=s[2][0],m=s[2][1],n?(g=m+_,d=g+5,l=`center`):(h=p+_,u=h+5,l=`bottom`)):i===`leftTop`?(p=s[0][0],m=n?s[0][1]:s[1][1],n?(g=m-_,d=g-5,l=`center`):(h=p-_,u=h-5,l=`right`)):i===`leftBottom`?(p=n?s[1][0]:s[3][0],m=n?s[1][1]:s[2][1],n?(g=m+_,d=g+5,l=`center`):(h=p-_,u=h-5,l=`right`)):(p=(s[1][0]+s[2][0])/2,m=(s[1][1]+s[2][1])/2,n?(g=m+_,d=g+5,l=`center`):(h=p+_,u=h+5,l=`left`)),n?(h=p,u=h):(g=m,d=g),f=[[p,m],[h,g]]}o.label={linePoints:f,x:u,y:d,verticalAlign:`middle`,textAlign:l,inside:c}})}var IRe=vI(_3,LRe);function LRe(e,t){e.eachSeriesByType(_3,function(e){var n=e.getData(),r=n.mapDimension(`value`),i=e.get(`sort`),a=rH(e,t),o=eH(e.getBoxLayoutParams(),a.refContainer),s=v3(e),c=o.width,l=o.height,u=PRe(n,i),d=o.x,f=o.y,p=s?[bF(e.get(`minSize`),l),bF(e.get(`maxSize`),l)]:[bF(e.get(`minSize`),c),bF(e.get(`maxSize`),c)],m=n.getDataExtent(r),h=e.get(`min`),g=e.get(`max`);h??=Math.min(m[0],0),g??=m[1];var _=e.get(`funnelAlign`),v=e.get(`gap`),y=((s?c:l)-v*(n.count()-1))/n.count(),b=function(e,t){if(s){var i=yF(n.get(r,e)||0,[h,g],p,!0),a=void 0;switch(_){case`top`:a=f;break;case`center`:a=f+(l-i)/2;break;case`bottom`:a=f+(l-i);break}return[[t,a],[t,a+i]]}var o=yF(n.get(r,e)||0,[h,g],p,!0),u;switch(_){case`left`:u=d;break;case`center`:u=d+(c-o)/2;break;case`right`:u=d+c-o;break}return[[u,t],[u+o,t]]};i===`ascending`&&(y=-y,v=-v,s?d+=c:f+=l,u=u.reverse());for(var x=0;xZRe)return;var r=this._model.coordinateSystem.getSlidedAxisExpandWindow([e.offsetX,e.offsetY]);r.behavior!==`none`&&this._dispatchExpand({axisExpandWindow:r.axisExpandWindow})}this._mouseDownPoint=null},mousemove:function(e){if(!(this._mouseDownPoint||!C3(this,`mousemove`))){var t=this._model,n=t.coordinateSystem.getSlidedAxisExpandWindow([e.offsetX,e.offsetY]),r=n.behavior;r===`jump`&&this._throttledDispatchExpand.debounceNextCall(t.get(`axisExpandDebounce`)),this._throttledDispatchExpand(r===`none`?null:{axisExpandWindow:n.axisExpandWindow,animation:r===`jump`?null:{duration:0}})}}};function C3(e,t){var n=e._model;return n.get(`axisExpandable`)&&n.get(`axisExpandTriggerOn`)===t}var w3=`parallel`,T3=w3,eze=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(){e.prototype.init.apply(this,arguments),this.mergeOption({})},t.prototype.mergeOption=function(e){var t=this.option;e&&$k(t,e,!0),this._initDimensions()},t.prototype.contains=function(e,t){var n=e.get(`parallelIndex`);return n!=null&&t.getComponent(`parallel`,n)===this},t.prototype.setAxisExpand=function(e){Q([`axisExpandable`,`axisExpandCenter`,`axisExpandCount`,`axisExpandWidth`,`axisExpandWindow`],function(t){e.hasOwnProperty(t)&&(this.option[t]=e[t])},this)},t.prototype._initDimensions=function(){var e=this.dimensions=[],t=this.parallelAxisIndex=[];Q(lA(this.ecModel.queryComponents({mainType:`parallelAxis`}),function(e){return(e.get(`parallelIndex`)||0)===this.componentIndex},this),function(n){e.push(`dim`+n.get(`dim`)),t.push(n.componentIndex)})},t.type=T3,t.dependencies=[`parallelAxis`],t.layoutMode=`box`,t.defaultOption={z:0,left:80,top:60,right:80,bottom:60,layout:`horizontal`,axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:`click`,parallelAxisDefault:null},t}(lH),tze=function(e){X(t,e);function t(t,n,r,i,a){var o=e.call(this,t,n,r)||this;return o.type=i||`value`,o.axisIndex=a,o}return t.prototype.isHorizontal=function(){return this.coordinateSystem.getModel().get(`layout`)!==`horizontal`},t}(xY);function E3(e,t,n,r,i,a){e||=0;var o=kF(n[1],-n[0]);if(i!=null&&(i=O3(i,[0,o])),a!=null&&(a=Math.max(a,i??0)),r===`all`){var s=Math.abs(kF(t[1],-t[0]));s=O3(s,[0,o]),i=a=O3(s,[i,a]),r=0}t[0]=O3(t[0],n),t[1]=O3(t[1],n);var c=D3(t,r);t[r]+=e;var l=i||0,u=n.slice();c.sign<0?u[0]=kF(u[0],l):u[1]=kF(u[1],-l),t[r]=O3(t[r],u);var d=D3(t,r);return i!=null&&(d.sign!==c.sign||d.spana&&(t[1-r]=kF(t[r],d.sign*a)),t}function D3(e,t){var n=e[t]-e[1-t];return{span:Math.abs(n),sign:n>0?-1:n<0?1:t?-1:1}}function O3(e,t){return Math.min(t[1]==null?1/0:t[1],Math.max(t[0]==null?-1/0:t[0],e))}var nze=function(){function e(e,t,n){this.type=w3,this._axesMap=zA(),this._axesLayout={},this.dimensions=e.dimensions,this._model=e,this._init(e,t,n)}return e.prototype._init=function(e,t,n){var r=e.dimensions,i=e.parallelAxisIndex;Q(r,function(e,n){var r=i[n],a=t.getComponent(`parallelAxis`,r),o=pJ(a),s=this._axesMap.set(e,new tze(e,mJ(a,o,!1),[0,0],o,r));s.onBand=CJ(s.scale,a),s.inverse=a.get(`inverse`),a.axis=s,s.model=a,s.coordinateSystem=a.coordinateSystem=this},this)},e.prototype.update=function(e,t){Q(this.dimensions,function(e){var t=this._axesMap.get(e);UJ(t,1),YJ(t)},this)},e.prototype.containPoint=function(e){var t=this._makeLayoutInfo(),n=t.axisBase,r=t.layoutBase,i=t.pixelDimIndex,a=e[1-i],o=e[i];return a>=n&&a<=n+t.axisLength&&o>=r&&o<=r+t.layoutLength},e.prototype.getModel=function(){return this._model},e.prototype.resize=function(e,t){var n=rH(e,t).refContainer;this._rect=eH(e.getBoxLayoutParams(),n),this._layoutAxes()},e.prototype.getRect=function(){return this._rect},e.prototype._makeLayoutInfo=function(){var e=this._model,t=this._rect,n=[`x`,`y`],r=[`width`,`height`],i=e.get(`layout`),a=i===`horizontal`?0:1,o=t[r[a]],s=[0,o],c=this.dimensions.length,l=k3(e.get(`axisExpandWidth`),s),u=k3(e.get(`axisExpandCount`)||0,[0,c]),d=e.get(`axisExpandable`)&&c>3&&c>u&&u>1&&l>0&&o>0,f=e.get(`axisExpandWindow`),p;f?(p=k3(f[1]-f[0],s),f[1]=f[0]+p):(p=k3(l*(u-1),s),f=[l*(e.get(`axisExpandCenter`)||pF(c/2))-p/2],f[1]=f[0]+p);var m=(o-p)/(c-u);m<3&&(m=0);var h=[pF(CF(f[0]/l,1))+1,mF(CF(f[1]/l,1))-1],g=m/l*f[0];return{layout:i,pixelDimIndex:a,layoutBase:t[n[a]],layoutLength:o,axisBase:t[n[1-a]],axisLength:t[r[1-a]],axisExpandable:d,axisExpandWidth:l,axisCollapseWidth:m,axisExpandWindow:f,axisCount:c,winInnerIndices:h,axisExpandWindow0Pos:g}},e.prototype._layoutAxes=function(){var e=this._rect,t=this._axesMap,n=this.dimensions,r=this._makeLayoutInfo(),i=r.layout;t.each(function(e){var t=[0,r.axisLength],n=+!!e.inverse;e.setExtent(t[n],t[1-n])}),Q(n,function(t,n){var a=(r.axisExpandable?ize:rze)(n,r),o={horizontal:{x:a.position,y:r.axisLength},vertical:{x:0,y:a.position}},s={horizontal:vF/2,vertical:0},c=[o[i].x+e.x,o[i].y+e.y],l=s[i],u=Mj();Lj(u,u,l),Ij(u,u,c),this._axesLayout[t]={position:c,rotation:l,transform:u,axisNameAvailableWidth:a.axisNameAvailableWidth,axisLabelShow:a.axisLabelShow,nameTruncateMaxWidth:a.nameTruncateMaxWidth,tickDirection:1,labelDirection:1}},this)},e.prototype.getAxis=function(e){return this._axesMap.get(e)},e.prototype.dataToPoint=function(e,t){return this.axisCoordToPoint(this._axesMap.get(t).dataToCoord(e),t)},e.prototype.eachActiveState=function(e,t,n,r){n??=0,r??=e.count();var i=this._axesMap,a=this.dimensions,o=[],s=[];Q(a,function(t){o.push(e.mapDimension(t)),s.push(i.get(t).model)});for(var c=this.hasAxisBrushed(),l=n;li*(1-u[0])?(c=`jump`,s=o-i*(1-u[2])):(s=o-i*u[1])>=0&&(s=o-i*(1-u[1]))<=0&&(s=0),s*=t.axisExpandWidth/l,s?E3(s,r,a,`all`):c=`none`;else{var f=r[1]-r[0];r=[uF(0,a[1]*o/f-f/2)],r[1]=lF(a[1],r[0]+f),r[0]=r[1]-f}return{axisExpandWindow:r,behavior:c}},e}();function k3(e,t){return lF(uF(e,t[0]),t[1])}function rze(e,t){var n=t.layoutLength/(t.axisCount-1);return{position:n*e,axisNameAvailableWidth:n,axisLabelShow:!0}}function ize(e,t){var n=t.layoutLength,r=t.axisExpandWidth,i=t.axisCount,a=t.axisCollapseWidth,o=t.winInnerIndices,s,c=a,l=!1,u;return e=0;n--)wF(t[n])},t.prototype.getActiveState=function(e){var t=this.activeIntervals;if(!t.length)return`normal`;if(e==null||isNaN(+e))return`inactive`;if(t.length===1){var n=t[0];if(n[0]<=e&&e<=n[1])return`active`}else for(var r=0,i=t.length;rlze}function q3(e){var t=e.length-1;return t<0&&(t=0),[e[0],e[t]]}function J3(e,t,n,r){var i=new $P;return i.add(new OL({name:`main`,style:Q3(n),silent:!0,draggable:!0,cursor:`move`,drift:pA(vze,e,t,i,[`n`,`s`,`w`,`e`]),ondragend:pA(K3,t,{isEnd:!0})})),Q(r,function(n){i.add(new OL({name:n.join(``),style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:pA(vze,e,t,i,n),ondragend:pA(K3,t,{isEnd:!0})}))}),i}function Y3(e,t,n,r){var i=r.brushStyle.lineWidth||0,a=N3(i,uze),o=n[0][0],s=n[1][0],c=o-i/2,l=s-i/2,u=n[0][1],d=n[1][1],f=u-a+i/2,p=d-a+i/2,m=u-o,h=d-s,g=m+i,_=h+i;Z3(e,t,`main`,o,s,m,h),r.transformable&&(Z3(e,t,`w`,c,l,a,_),Z3(e,t,`e`,f,l,a,_),Z3(e,t,`n`,c,l,g,a),Z3(e,t,`s`,c,p,g,a),Z3(e,t,`nw`,c,l,a,a),Z3(e,t,`ne`,f,l,a,a),Z3(e,t,`sw`,c,p,a,a),Z3(e,t,`se`,f,p,a,a))}function X3(e,t){var n=t.__brushOption,r=n.transformable,i=t.childAt(0);i.useStyle(Q3(n)),i.attr({silent:!r,cursor:r?`move`:`default`}),Q([[`w`],[`e`],[`n`],[`s`],[`s`,`e`],[`s`,`w`],[`n`,`e`],[`n`,`w`]],function(n){var i=t.childOfName(n.join(``)),a=n.length===1?$3(e,n[0]):_ze(e,n);i&&i.attr({silent:!r,invisible:!r,cursor:r?fze[a]+`-resize`:null})})}function Z3(e,t,n,r,i,a,o){var s=t.childOfName(n);s&&s.setShape(xze(e6(e,t,[[r,i],[r+a,i+o]])))}function Q3(e){return nA({strokeNoScale:!0},e.brushStyle)}function hze(e,t,n,r){var i=[M3(e,n),M3(t,r)],a=[N3(e,n),N3(t,r)];return[[i[0],a[0]],[i[1],a[1]]]}function gze(e){return Wz(e.group)}function $3(e,t){return{left:`w`,right:`e`,top:`n`,bottom:`s`}[Kz({w:`left`,e:`right`,n:`top`,s:`bottom`}[t],gze(e))]}function _ze(e,t){var n=[$3(e,t[0]),$3(e,t[1])];return(n[0]===`e`||n[0]===`w`)&&n.reverse(),n.join(``)}function vze(e,t,n,r,i,a){var o=n.__brushOption,s=e.toRectRange(o.range),c=bze(t,i,a);Q(r,function(e){var t=dze[e];s[t[0]][t[1]]+=c[t[0]]}),o.range=e.fromRectRange(hze(s[0][0],s[1][0],s[0][1],s[1][1])),V3(t,n),K3(t,{isEnd:!1})}function yze(e,t,n,r){var i=t.__brushOption.range,a=bze(e,n,r);Q(i,function(e){e[0]+=a[0],e[1]+=a[1]}),V3(e,t),K3(e,{isEnd:!1})}function bze(e,t,n){var r=e.group,i=r.transformCoordToLocal(t,n),a=r.transformCoordToLocal(0,0);return[i[0]-a[0],i[1]-a[1]]}function e6(e,t,n){var r=W3(e,t);return r&&r!==j3?r.clipPath(n,e._transform):Qk(n)}function xze(e){var t=M3(e[0][0],e[1][0]),n=M3(e[0][1],e[1][1]),r=N3(e[0][0],e[1][0]),i=N3(e[0][1],e[1][1]);return{x:t,y:n,width:r-t,height:i-n}}function Sze(e,t,n){if(!(!e._brushType||Dze(e,t.offsetX,t.offsetY))){var r=e._zr,i=e._covers,a=U3(e,t,n);if(!e._dragging)for(var o=0;or.getWidth()||n<0||n>r.getHeight()}var r6={lineX:Oze(0),lineY:Oze(1),rect:{createCover:function(e,t){function n(e){return e}return J3({toRectRange:n,fromRectRange:n},e,t,[[`w`],[`e`],[`n`],[`s`],[`s`,`e`],[`s`,`w`],[`n`,`e`],[`n`,`w`]])},getCreatingRange:function(e){var t=q3(e);return hze(t[1][0],t[1][1],t[0][0],t[0][1])},updateCoverShape:function(e,t,n,r){Y3(e,t,n,r)},updateCommon:X3,contain:n6},polygon:{createCover:function(e,t){var n=new $P;return n.add(new ez({name:`main`,style:Q3(t),silent:!0})),n},getCreatingRange:function(e){return e},endCreating:function(e,t){t.remove(t.childAt(0)),t.add(new $R({name:`main`,draggable:!0,drift:pA(yze,e,t),ondragend:pA(K3,e,{isEnd:!0})}))},updateCoverShape:function(e,t,n,r){t.childAt(0).setShape({points:e6(e,t,n)})},updateCommon:X3,contain:n6}};function Oze(e){return{createCover:function(t,n){return J3({toRectRange:function(t){var n=[t,[0,100]];return e&&n.reverse(),n},fromRectRange:function(t){return t[e]}},t,n,[[[`w`],[`e`]],[[`n`],[`s`]]][e])},getCreatingRange:function(t){var n=q3(t);return[M3(n[0][e],n[1][e]),N3(n[0][e],n[1][e])]},updateCoverShape:function(t,n,r,i){var a,o=W3(t,n);if(o!==j3&&o.getLinearBrushOtherExtent)a=o.getLinearBrushOtherExtent(e);else{var s=t._zr;a=[0,[s.getWidth(),s.getHeight()][1-e]]}var c=[r,a];e&&c.reverse(),Y3(t,n,c,i)},updateCommon:X3,contain:n6}}function kze(e){return e=i6(e),function(t){return Yz(t,e)}}function Aze(e,t){return e=i6(e),function(n){var r=t??n,i=r?e.width:e.height,a=r?e.x:e.y;return[a,a+(i||0)]}}function jze(e,t,n){var r=i6(e);return function(e,i){return r.contain(i[0],i[1])&&!y1(e,t,n)}}function i6(e){return eM.create(e)}var Mze=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t,n){e.prototype.init.apply(this,arguments),(this._brushController=new I3(n.getZr())).on(`brush`,fA(this._onBrush,this))},t.prototype.render=function(e,t,n,r){if(!Nze(e,t,r)){this.axisModel=e,this.api=n,this.group.removeAll();var i=this._axisGroup;if(this._axisGroup=new $P,this.group.add(this._axisGroup),e.get(`show`)){var a=Fze(e,t),o=a.coordinateSystem,s=e.getAreaSelectStyle(),c=s.width,l=e.axis.dim,u=o.getAxisLayout(l),d=Z({strokeContainThreshold:c},u),f=new bQ(e,n,d);f.build(),this._axisGroup.add(f.group),this._refreshBrushController(d,s,e,a,c,n),Jz(i,this._axisGroup,e)}}},t.prototype._refreshBrushController=function(e,t,n,r,i,a){var o=n.axis.getExtent(),s=o[1]-o[0],c=Math.min(30,Math.abs(s)*.1),l=eM.create({x:o[0],y:-i/2,width:s,height:i});l.x-=c,l.width+=2*c,this._brushController.mount({enableGlobalPan:!0,rotation:e.rotation,x:e.position[0],y:e.position[1]}).setPanels([{panelId:`pl`,clipPath:kze(l),isTargetByCursor:jze(l,a,r),getLinearBrushOtherExtent:Aze(l,0)}]).enableBrush({brushType:`lineX`,brushStyle:t,removeOnClick:!0}).updateCovers(Pze(n))},t.prototype._onBrush=function(e){var t=e.areas,n=this.axisModel,r=n.axis,i=sA(t,function(e){return[r.coordToData(e.range[0],!0),r.coordToData(e.range[1],!0)]});(!n.option.realtime===e.isEnd||e.removeOnClick)&&this.api.dispatchAction({type:`axisAreaSelect`,parallelAxisId:n.id,intervals:i})},t.prototype.dispose=function(){this._brushController.dispose()},t.type=`parallelAxis`,t}(pW);function Nze(e,t,n){return n&&n.type===`axisAreaSelect`&&t.findComponents({mainType:`parallelAxis`,query:n})[0]===e}function Pze(e){var t=e.axis;return sA(e.activeIntervals,function(e){return{brushType:`lineX`,panelId:`pl`,range:[t.dataToCoord(e[0],!0),t.dataToCoord(e[1],!0)]}})}function Fze(e,t){return t.getComponent(`parallel`,e.get(`parallelIndex`))}var Ize={type:`axisAreaSelect`,event:`axisAreaSelected`};function Lze(e){e.registerAction(Ize,function(e,t){t.eachComponent({mainType:`parallelAxis`,query:e},function(t){t.axis.model.setActiveIntervals(e.intervals)})}),e.registerAction(`parallelAxisExpand`,function(e,t){t.eachComponent({mainType:`parallel`,query:e},function(t){t.setAxisExpand(e)})})}var Rze={type:`value`,areaSelectStyle:{width:20,borderWidth:1,borderColor:`rgba(160,197,232)`,color:`rgba(160,197,232)`,opacity:.3},realtime:!0,z:10};function zze(e){e.registerComponentView(QRe),e.registerComponentModel(eze),e.registerCoordinateSystem(`parallel`,oze),e.registerPreprocessor(JRe),e.registerComponentModel(A3),e.registerComponentView(Mze),j$(e,`parallel`,A3,Rze),Lze(e)}function Bze(e){tq(zze),e.registerChartView(BRe),e.registerSeriesModel(URe),e.registerVisual(e.PRIORITY.VISUAL.BRUSH,qRe)}var a6=`sankey`,Vze=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.getInitialData=function(e,t){var n=e.edges||e.links||[],r=e.data||e.nodes||[],i=e.levels||[];this.levelModels=[];for(var a=this.levelModels,o=0;o=0&&(a[i[o].depth]=new zB(i[o],this,t));return S4(r,n,this,!0,s).data;function s(e,t){e.wrapMethod(`getItemModel`,function(e,t){var n=e.parentModel,r=n.getData().getItemLayout(t);if(r){var i=r.depth,a=n.levelModels[i];a&&(e.parentModel=a)}return e}),t.wrapMethod(`getItemModel`,function(e,t){var n=e.parentModel,r=n.getGraph().getEdgeByIndex(t).node1.getLayout();if(r){var i=r.depth,a=n.levelModels[i];a&&(e.parentModel=a)}return e})}},t.prototype.setNodePosition=function(e,t){var n=(this.option.data||this.option.nodes)[e];n.localX=t[0],n.localY=t[1]},t.prototype.getGraph=function(){return this.getData().graph},t.prototype.getEdgeData=function(){return this.getGraph().edgeData},t.prototype.formatTooltip=function(e,t,n){function r(e){return isNaN(e)||e==null}if(n===`edge`){var i=this.getDataParams(e,n),a=i.data,o=i.value;return YU(`nameValue`,{name:a.source+` -- `+a.target,value:o,noValue:r(o)})}else{var s=this.getGraph().getNodeByIndex(e).getLayout().value,c=this.getDataParams(e,n).data.name;return YU(`nameValue`,{name:c==null?null:c+``,value:s,noValue:r(s)})}},t.prototype.optionUpdated=function(){},t.prototype.getDataParams=function(t,n){var r=e.prototype.getDataParams.call(this,t,n);return r.value==null&&n===`node`&&(r.value=this.getGraph().getNodeByIndex(t).getLayout().value),r},t.prototype.__ownRoamView=function(){return this.coordinateSystem},t.type=`series.`+a6,t.layoutMode=`box`,t.defaultOption={z:2,coordinateSystemUsage:`box`,left:`5%`,top:`5%`,right:`20%`,bottom:`5%`,orient:`horizontal`,nodeWidth:20,nodeGap:8,draggable:!0,layoutIterations:32,roam:!1,roamTrigger:`global`,center:null,zoom:1,label:{show:!0,position:`right`,fontSize:12},edgeLabel:{show:!1,fontSize:12},levels:[],nodeAlign:`justify`,lineStyle:{color:$.color.neutral50,opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},select:{itemStyle:{borderColor:$.color.primary}},animationEasing:`linear`,animationDuration:1e3},t}(lW),Hze=function(){function e(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.cpx2=0,this.cpy2=0,this.extent=0}return e}(),Uze=function(e){X(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new Hze},t.prototype.buildPath=function(e,t){var n=t.extent;e.moveTo(t.x1,t.y1),e.bezierCurveTo(t.cpx1,t.cpy1,t.cpx2,t.cpy2,t.x2,t.y2),t.orient===`vertical`?(e.lineTo(t.x2+n,t.y2),e.bezierCurveTo(t.cpx2+n,t.cpy2,t.cpx1+n,t.cpy1,t.x1+n,t.y1)):(e.lineTo(t.x2,t.y2+n),e.bezierCurveTo(t.cpx2,t.cpy2+n,t.cpx1,t.cpy1+n,t.x1,t.y1+n)),e.closePath()},t.prototype.highlight=function(){eR(this)},t.prototype.downplay=function(){tR(this)},t}(SL),Wze=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=a6,t._mainGroup=new $P,t}return t.prototype.init=function(e,t){this._controller=new b1(t.getZr()),this.group.add(this._mainGroup),this._firstRender=!0},t.prototype.render=function(e,t,n){var r=e.getGraph(),i=this._mainGroup,a=e.layoutInfo,o=a.width,s=a.height,c=e.getData(),l=e.getData(`edge`),u=e.get(`orient`);i.removeAll(),i.x=a.x,i.y=a.y,this._updateViewCoordSys(e,n),F0(e,n,this._controller,I0(i),null),r.eachEdge(function(t){var n=new Uze,r=ML(n);r.dataIndex=t.dataIndex,r.seriesIndex=e.seriesIndex,r.dataType=`edge`;var a=t.getModel(),c=a.getModel(`lineStyle`),d=c.get(`curveness`),f=t.node1.getLayout(),p=t.node1.getModel(),m=p.get(`localX`),h=p.get(`localY`),g=t.node2.getLayout(),_=t.node2.getModel(),v=_.get(`localX`),y=_.get(`localY`),b=t.getLayout(),x,S,C,w,T,E,D,O;n.shape.extent=Math.max(1,b.dy),n.shape.orient=u,u===`vertical`?(x=(m==null?f.x:m*o)+b.sy,S=(h==null?f.y:h*s)+f.dy,C=(v==null?g.x:v*o)+b.ty,w=y==null?g.y:y*s,T=x,E=S*(1-d)+w*d,D=C,O=S*d+w*(1-d)):(x=(m==null?f.x:m*o)+f.dx,S=(h==null?f.y:h*s)+b.sy,C=v==null?g.x:v*o,w=(y==null?g.y:y*s)+b.ty,T=x*(1-d)+C*d,E=S,D=x*d+C*(1-d),O=w),n.setShape({x1:x,y1:S,x2:C,y2:w,cpx1:T,cpy1:E,cpx2:D,cpy2:O}),n.useStyle(c.getItemStyle()),Gze(n.style,u,t);var k=``+a.get(`value`),A=CB(a,`edgeLabel`);SB(n,A,{labelFetcher:{getFormattedLabel:function(t,n,r,i,a,o){return e.getFormattedLabel(t,n,`edge`,i,kA(a,A.normal&&A.normal.get(`formatter`),k),o)}},labelDataIndex:t.dataIndex,defaultText:k}),n.setTextConfig({position:`inside`});var j=a.getModel(`emphasis`);gR(n,a,`lineStyle`,function(e){var n=e.getItemStyle();return Gze(n,u,t),n}),i.add(n),l.setItemGraphicEl(t.dataIndex,n);var M=j.get(`focus`);pR(n,M===`adjacency`?t.getAdjacentDataIndices():M===`trajectory`?t.getTrajectoryDataIndices():M,j.get(`blurScope`),j.get(`disabled`))}),r.eachNode(function(t){var n=t.getLayout(),r=t.getModel(),a=r.get(`localX`),l=r.get(`localY`),u=r.getModel(`emphasis`),d=r.get([`itemStyle`,`borderRadius`])||0,f=new OL({shape:{x:a==null?n.x:a*o,y:l==null?n.y:l*s,width:n.dx,height:n.dy,r:d},style:r.getModel(`itemStyle`).getItemStyle(),z2:10});SB(f,CB(r),{labelFetcher:{getFormattedLabel:function(t,n){return e.getFormattedLabel(t,n,`node`)}},labelDataIndex:t.dataIndex,defaultText:t.id}),f.disableLabelAnimation=!0,f.setStyle(`fill`,t.getVisual(`color`)),f.setStyle(`decal`,t.getVisual(`style`).decal),gR(f,r),i.add(f),c.setItemGraphicEl(t.dataIndex,f),ML(f).dataType=`node`;var p=u.get(`focus`);pR(f,p===`adjacency`?t.getAdjacentDataIndices():p===`trajectory`?t.getTrajectoryDataIndices():p,u.get(`blurScope`),u.get(`disabled`))}),c.eachItemGraphicEl(function(t,r){c.getItemModel(r).get(`draggable`)&&(t.drift=function(t,i){this.shape.x+=t,this.shape.y+=i,this.dirty(),n.dispatchAction({type:`dragNode`,seriesId:e.id,dataIndex:c.getRawIndex(r),localX:this.shape.x/o,localY:this.shape.y/s})},t.draggable=!0,t.cursor=`move`)}),!this._data&&e.isAnimationEnabled()&&i.setClipPath(Kze(i.getBoundingRect(),e,function(){i.removeClipPath()})),this._data=e.getData(),this._firstRender=!1},t.prototype.__updateOnOwnRoam=function(e,t,n){S0(this.group,2,t.coordinateSystem,null)},t.prototype.dispose=function(){this._controller&&this._controller.dispose()},t.prototype._updateViewCoordSys=function(e,t){var n=e.layoutInfo,r=e.coordinateSystem=V0(e,t,n.x,n.y,n.width,n.height);S0(this.group,2,r,this._firstRender?null:e)},t.type=a6,t}(gW);function Gze(e,t,n){switch(e.fill){case`source`:e.fill=n.node1.getVisual(`color`),e.decal=n.node1.getVisual(`style`).decal;break;case`target`:e.fill=n.node2.getVisual(`color`),e.decal=n.node2.getVisual(`style`).decal;break;case`gradient`:var r=n.node1.getVisual(`color`),i=n.node2.getVisual(`color`);gA(r)&&gA(i)&&(e.fill=new cz(0,0,+(t===`horizontal`),+(t===`vertical`),[{color:r,offset:0},{color:i,offset:1}]))}}function Kze(e,t,n){var r=new OL({shape:{x:e.x-10,y:e.y-10,width:0,height:e.height+20}});return Cz(r,{shape:{width:e.width+20}},t,n),r}var qze=vI(a6,Jze);function Jze(e,t){e.eachSeriesByType(a6,function(e){var n=e.get(`nodeWidth`),r=e.get(`nodeGap`),i=rH(e,t).refContainer,a=eH(e.getBoxLayoutParams(),i);e.layoutInfo=a;var o=a.width,s=a.height,c=e.getGraph(),l=c.nodes,u=c.edges;Xze(l),Yze(l,u,n,r,o,s,lA(l,function(e){return e.getLayout().value===0}).length===0?e.get(`layoutIterations`):0,e.get(`orient`),e.get(`nodeAlign`))})}function Yze(e,t,n,r,i,a,o,s,c){Zze(e,t,n,i,a,s,c),nBe(e,t,a,i,r,o,s),dBe(e,s)}function Xze(e){Q(e,function(e){var t=l6(e.outEdges,c6),n=l6(e.inEdges,c6),r=e.getValue()||0,i=Math.max(t,n,r);e.setLayout({value:i},!0)})}function Zze(e,t,n,r,i,a,o){for(var s=[],c=[],l=[],u=[],d=0,f=0;f=0;_&&g.depth>p&&(p=g.depth),h.setLayout({depth:_?g.depth:d},!0),a===`vertical`?h.setLayout({dy:n},!0):h.setLayout({dx:n},!0);for(var v=0;vd-1?p:d-1;o&&o!==`left`&&$ze(e,o,a,C),tBe(e,a===`vertical`?(i-n)/C:(r-n)/C,a)}function Qze(e){var t=e.hostGraph.data.getRawDataItem(e.dataIndex);return t.depth!=null&&t.depth>=0}function $ze(e,t,n,r){if(t===`right`){for(var i=[],a=e,o=0;a.length;){for(var s=0;s0;a--)c*=.99,aBe(s,c,o),o6(s,i,n,r,o),uBe(s,c,o),o6(s,i,n,r,o)}function rBe(e,t){var n=[],r=t===`vertical`?`y`:`x`,i=sI(e,function(e){return e.getLayout()[r]});return wF(i.keys),Q(i.keys,function(e){n.push(i.buckets.get(e))}),n}function iBe(e,t,n,r,i,a){var o=1/0;Q(e,function(e){var t=e.length,s=0;Q(e,function(e){s+=e.getLayout().value});var c=a===`vertical`?(r-(t-1)*i)/s:(n-(t-1)*i)/s;c0&&(o=s.getLayout()[a]+c,i===`vertical`?s.setLayout({x:o},!0):s.setLayout({y:o},!0)),l=s.getLayout()[a]+s.getLayout()[d]+t;var p=i===`vertical`?r:n;if(c=l-t-p,c>0){o=s.getLayout()[a]-c,i===`vertical`?s.setLayout({x:o},!0):s.setLayout({y:o},!0),l=o;for(var f=u-2;f>=0;--f)s=e[f],c=s.getLayout()[a]+s.getLayout()[d]+t-l,c>0&&(o=s.getLayout()[a]-c,i===`vertical`?s.setLayout({x:o},!0):s.setLayout({y:o},!0)),l=s.getLayout()[a]}})}function aBe(e,t,n){Q(e.slice().reverse(),function(e){Q(e,function(e){if(e.outEdges.length){var r=l6(e.outEdges,oBe,n)/l6(e.outEdges,c6);if(isNaN(r)){var i=e.outEdges.length;r=i?l6(e.outEdges,sBe,n)/i:0}if(n===`vertical`){var a=e.getLayout().x+(r-s6(e,n))*t;e.setLayout({x:a},!0)}else{var o=e.getLayout().y+(r-s6(e,n))*t;e.setLayout({y:o},!0)}}})})}function oBe(e,t){return s6(e.node2,t)*e.getValue()}function sBe(e,t){return s6(e.node2,t)}function cBe(e,t){return s6(e.node1,t)*e.getValue()}function lBe(e,t){return s6(e.node1,t)}function s6(e,t){return t===`vertical`?e.getLayout().x+e.getLayout().dx/2:e.getLayout().y+e.getLayout().dy/2}function c6(e){return e.getValue()}function l6(e,t,n){for(var r=0,i=e.length,a=-1;++aa&&(a=t)}),Q(n,function(t){var n=new n4({type:`color`,mappingMethod:`linear`,dataExtent:[i,a],visual:e.get(`color`)}).mapValueToVisual(t.getLayout().value),r=t.getModel().get([`itemStyle`,`color`]);r==null?(t.setVisual(`color`,n),t.setVisual(`style`,{fill:n})):(t.setVisual(`color`,r),t.setVisual(`style`,{fill:r}))})}r.length&&Q(r,function(e){var t=e.getModel().get(`lineStyle`);e.setVisual(`style`,t)})})}function mBe(e){e.registerChartView(Wze),e.registerSeriesModel(Vze),e.registerLayout(qze),e.registerVisual(fBe),e.registerAction({type:`dragNode`,event:`dragnode`,update:`update`},function(e,t){t.eachComponent({mainType:PL,subType:a6,query:e},function(t){t.setNodePosition(e.dataIndex,[e.localX,e.localY])})}),R0(e,PL,a6)}var hBe=function(){function e(){}return e.prototype._hasEncodeRule=function(e){var t=this.getEncode();return t&&t.get(e)!=null},e.prototype.getInitialData=function(e,t){var n,r=t.getComponent(`xAxis`,this.get(`xAxisIndex`)),i=t.getComponent(`yAxis`,this.get(`yAxisIndex`)),a=r.get(`type`),o=i.get(`type`),s,c=e.layout;a===`category`?(c=`horizontal`,n=r.getOrdinalMeta(),s=!this._hasEncodeRule(`x`)):o===`category`&&(c=`vertical`,n=i.getOrdinalMeta(),s=!this._hasEncodeRule(`y`)),c||=o===`time`?`vertical`:`horizontal`,this._layout=c;var l=[`x`,`y`],u=c===`horizontal`?0:1,d=this._baseAxisDim=l[u],f=l[1-u],p=[r,i],m=p[u].get(`type`),h=p[1-u].get(`type`),g=e.data;if(g&&s){var _=[];Q(g,function(e,t){var n;mA(e)?(n=e.slice(),e.unshift(t)):mA(e.value)?(n=Z({},e),n.value=n.value.slice(),e.value.unshift(t)):n=e,_.push(n)}),e.data=_}var v=this.defaultValueDimensions,y=[{name:d,type:oq(m),ordinalMeta:n,otherDims:{tooltip:!1,itemName:0},dimsDef:[`base`]},{name:f,type:oq(h),dimsDef:v.slice()}];return m$(this,{coordDimensions:y,dimensionsCount:v.length+1,encodeDefaulter:pA(yH,y,this)})},e.prototype.getBaseAxis=function(){var e=this._baseAxisDim;return this.ecModel.getComponent(e+`Axis`,this.get(e+`AxisIndex`)).axis},e.prototype.getWhiskerBoxesLayout=function(){return this._layout},e}();function u6(e,t){for(var n=t.ends.length,r=0,i=0;ih){var b=[_,y];r.push(b)}}}return{boxData:n,outliers:r}}var ABe={type:`echarts:boxplot`,transform:function(e){var t=e.upstream;t.sourceFormat!==`arrayRows`&&KF(``);var n=kBe(t.getRawData(),e.config);return[{dimensions:[`ItemName`,`Low`,`Q1`,`Q2`,`Q3`,`High`],data:n.boxData},{data:n.outliers}]}};function jBe(e){e.registerSeriesModel(gBe),e.registerChartView(_Be),e.registerLayout(wBe),e.registerTransform(ABe),OBe(e)}var f6=`candlestick`,MBe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.defaultValueDimensions=[{name:`open`,defaultTooltip:!0},{name:`close`,defaultTooltip:!0},{name:`lowest`,defaultTooltip:!0},{name:`highest`,defaultTooltip:!0}],n}return t.prototype.getShadowDim=function(){return`open`},t.prototype.brushSelector=function(e,t,n){var r=t.getItemLayout(e);return r&&n.rect(r.brushRect)},t.type=`series.`+f6,t.dependencies=[`xAxis`,`yAxis`,`grid`],t.defaultOption={z:2,coordinateSystem:`cartesian2d`,legendHoverLink:!0,layout:null,clip:!0,itemStyle:{color:`#eb5454`,color0:`#47b262`,borderColor:`#eb5454`,borderColor0:`#47b262`,borderColorDoji:null,borderWidth:1},emphasis:{itemStyle:{borderWidth:2}},barMaxWidth:null,barMinWidth:null,barWidth:null,large:!0,largeThreshold:600,progressive:3e3,progressiveThreshold:1e4,progressiveChunkMode:`mod`,animationEasing:`linear`,animationDuration:300},t}(lW);aA(MBe,hBe,!0);var NBe=[`itemStyle`,`borderColor`],PBe=[`itemStyle`,`borderColor0`],FBe=[`itemStyle`,`borderColorDoji`],IBe=[`itemStyle`,`color`],LBe=[`itemStyle`,`color0`];function p6(e,t){return t.get(e>0?IBe:LBe)}function m6(e,t){return t.get(e===0?FBe:e>0?NBe:PBe)}var RBe={seriesType:f6,plan:mW(),performRawSeries:!0,reset:function(e,t){if(!t.isSeriesFiltered(e))return!e.pipelineContext.large&&{progress:function(e,t){for(var n;(n=e.next())!=null;){var r=t.getItemModel(n),i=t.getItemLayout(n).sign,a=r.getItemStyle();a.fill=p6(i,r),a.stroke=m6(i,r)||a.fill,Z(t.ensureUniqueItemVisual(n,`style`),a)}}}}},zBe=[`color`,`borderColor`],BBe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){this.group.removeClipPath(),this._progressiveEls=null,this._updateDrawMode(e),this._isLargeDraw?this._renderLarge(e):this._renderNormal(e)},t.prototype.incrementalPrepareRender=function(e,t,n){this._clear(),this._updateDrawMode(e)},t.prototype.incrementalRender=function(e,t,n,r){this._progressiveEls=[],this._isLargeDraw?this._incrementalRenderLarge(e,t):this._incrementalRenderNormal(e,t)},t.prototype.eachRendered=function(e){oB(this._progressiveEls||this.group,e)},t.prototype._updateDrawMode=function(e){var t=e.pipelineContext.large;(this._isLargeDraw==null||t!==this._isLargeDraw)&&(this._isLargeDraw=t,this._clear())},t.prototype._renderNormal=function(e){var t=e.getData(),n=this._data,r=this.group,i=t.getLayout(`isSimpleBox`),a=e.get(`clip`,!0),o=e.coordinateSystem,s=o.getArea&&o.getArea(),c=a&&zZ(o,!1,e);this._data||r.removeAll();var l=WBe(e);t.diff(n).add(function(n){if(t.hasValue(n)){var o=t.getItemLayout(n),u=a?u6(s,o):0;if(u===2)return;var d=h6(o,n,l,!0);Cz(d,{shape:{points:o.ends}},e,n),BZ(u===1,d,c),g6(d,t,n,i),r.add(d),t.setItemGraphicEl(n,d)}}).update(function(o,u){var d=n.getItemGraphicEl(u);if(!t.hasValue(o)){r.remove(d);return}var f=t.getItemLayout(o),p=a?u6(s,f):0;if(p===2){r.remove(d);return}d?(Sz(d,{shape:{points:f.ends}},e,o),Oz(d)):d=h6(f,o,l),g6(d,t,o,i),BZ(p===1,d,c),r.add(d),t.setItemGraphicEl(o,d)}).remove(function(e){var t=n.getItemGraphicEl(e);t&&r.remove(t)}).execute(),this._data=t},t.prototype._renderLarge=function(e){this._clear(),KBe(e,this.group);var t=e.get(`clip`,!0)?zZ(e.coordinateSystem,!1,e):null;BZ(!!t,this.group,t)},t.prototype._incrementalRenderNormal=function(e,t){for(var n=t.getData(),r=n.getLayout(`isSimpleBox`),i=WBe(t),a;(a=e.next())!=null;){var o=h6(n.getItemLayout(a),a,i);g6(o,n,a,r),o.incremental=_I(t),this.group.add(o),this._progressiveEls.push(o)}},t.prototype._incrementalRenderLarge=function(e,t){KBe(t,this.group,this._progressiveEls,!0)},t.prototype.remove=function(e){this._clear()},t.prototype._clear=function(){this.group.removeAll(),BZ(!1,this.group,null),this._data=null},t.type=f6,t}(gW),VBe=function(){function e(){}return e}(),HBe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`normalCandlestickBox`,n}return t.prototype.getDefaultShape=function(){return new VBe},t.prototype.buildPath=function(e,t){var n=t.points;this.__simpleBox?(e.moveTo(n[4][0],n[4][1]),e.lineTo(n[6][0],n[6][1])):(e.moveTo(n[0][0],n[0][1]),e.lineTo(n[1][0],n[1][1]),e.lineTo(n[2][0],n[2][1]),e.lineTo(n[3][0],n[3][1]),e.closePath(),e.moveTo(n[4][0],n[4][1]),e.lineTo(n[5][0],n[5][1]),e.moveTo(n[6][0],n[6][1]),e.lineTo(n[7][0],n[7][1]))},t}(SL);function h6(e,t,n,r){var i=e.ends;return new HBe({shape:{points:r?UBe(i,n,e):i},z2:100})}function g6(e,t,n,r){var i=t.getItemModel(n);e.useStyle(t.getItemVisual(n,`style`)),e.style.strokeNoScale=!0;var a=i.getShallow(`cursor`);a&&e.attr(`cursor`,a),e.__simpleBox=r,gR(e,i);var o=t.getItemLayout(n).sign;Q(e.states,function(e,t){var n=i.getModel(t),r=p6(o,n),a=m6(o,n)||r,s=e.style||={};r&&(s.fill=r),a&&(s.stroke=a)});var s=i.getModel(`emphasis`);pR(e,s.get(`focus`),s.get(`blurScope`),s.get(`disabled`))}function UBe(e,t,n){return sA(e,function(e){return e=e.slice(),e[t]=n.initBaseline,e})}function WBe(e){return+(e.getWhiskerBoxesLayout()===`horizontal`)}var GBe=function(){function e(){}return e}(),_6=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`largeCandlestickBox`,n}return t.prototype.getDefaultShape=function(){return new GBe},t.prototype.buildPath=function(e,t){for(var n=t.points,r=0;rh?x[a]:b[a],ends:w,brushRect:O(g,_,p)})}function E(e,n){var r=[];return r[i]=n,r[a]=e,isNaN(n)||isNaN(e)?[NaN,NaN]:t.dataToPoint(r)}function D(e,t,n){var a=t.slice(),o=t.slice();a[i]=Uz(a[i]+r/2,1,!1),o[i]=Uz(o[i]-r/2,1,!0),n?e.push(a,o):e.push(o,a)}function O(e,t,n){var o=E(e,n),s=E(t,n);return o[i]-=r/2,s[i]-=r/2,{x:o[0],y:o[1],width:a?r:s[0]-o[0],height:a?s[1]-o[1]:r}}function k(e){return e[i]=Uz(e[i],1),e}}function m(n,r){for(var o=AZ(n.count*4),c=0,p,m=[],h=[],g,_=r.getStore(),v=!!e.get([`itemStyle`,`borderColorDoji`]);(g=n.next())!=null;){var y=_.get(s,g),b=_.get(l,g),x=_.get(u,g),S=_.get(d,g),C=_.get(f,g);if(isNaN(y)||isNaN(S)||isNaN(C)){o[c++]=NaN,c+=3;continue}o[c++]=XBe(_,g,b,x,u,v),m[i]=y,m[a]=S,p=t.dataToPoint(m,null,h),o[c++]=p?p[0]:NaN,o[c++]=p?p[1]:NaN,m[a]=C,p=t.dataToPoint(m,null,h),o[c++]=p?p[1]:NaN}r.setLayout(`largePoints`,o)}}};function XBe(e,t,n,r,i,a){return n>r?-1:n0?e.get(i,t-1)<=r?1:-1:1}function ZBe(e,t){var n=yY(e.getBaseAxis(),{fromStat:{key:MQ(f6)},min:1}).w,r=bF(OA(e.get(`barMaxWidth`),n),n),i=bF(OA(e.get(`barMinWidth`),1),n),a=e.get(`barWidth`);return a==null?uF(lF(n/2,r),i):bF(a,n)}function QBe(e){JBe(e,function(){var t=MQ(f6);IJ(e,{key:t,seriesType:f6,getMetrics:PQ}),GJ(t,jQ(t))})}function $Be(e){e.registerChartView(BBe),e.registerSeriesModel(MBe),e.registerPreprocessor(qBe),e.registerVisual(RBe),e.registerLayout(YBe),QBe(e)}function eVe(e,t){var n=t.rippleEffectColor||t.color;e.eachChild(function(e){e.attr({z:t.z,zlevel:t.zlevel,style:{stroke:t.brushType===`stroke`?n:null,fill:t.brushType===`fill`?n:null}})})}var tVe=function(e){X(t,e);function t(t,n){var r=e.call(this)||this,i=new xZ(t,n),a=new $P;return r.add(i),r.add(a),r.updateData(t,n),r}return t.prototype.stopEffectAnimation=function(){this.childAt(1).removeAll()},t.prototype.startEffectAnimation=function(e){for(var t=e.symbolType,n=e.color,r=e.rippleNumber,i=this.childAt(1),a=0;a0&&(a=this._getLineLength(r)/c*1e3),a!==this._period||o!==this._loop||s!==this._roundTrip){r.stopAnimation();var u=void 0;u=hA(l)?l(n):l,r.__t>0&&(u=-a*r.__t),this._animateSymbol(r,a,u,o,s)}this._period=a,this._loop=o,this._roundTrip=s}},t.prototype._animateSymbol=function(e,t,n,r,i){if(t>0){e.__t=0;var a=this,o=e.animate(``,r).when(i?t*2:t,{__t:i?2:1}).delay(n).during(function(){a._updateSymbolPosition(e)});r||o.done(function(){a.remove(e)}),o.start()}},t.prototype._getLineLength=function(e){return oj(e.__p1,e.__cp1)+oj(e.__cp1,e.__p2)},t.prototype._updateAnimationPoints=function(e,t){e.__p1=t[0],e.__p2=t[1],e.__cp1=t[2]||[(t[0][0]+t[1][0])/2,(t[0][1]+t[1][1])/2]},t.prototype.updateData=function(e,t,n){this.childAt(0).updateData(e,t,n),this._updateEffectSymbol(e,t)},t.prototype._updateSymbolPosition=function(e){var t=e.__p1,n=e.__p2,r=e.__cp1,i=e.__t<=1?e.__t:2-e.__t,a=[e.x,e.y],o=a.slice(),s=WM,c=GM;a[0]=s(t[0],r[0],n[0],i),a[1]=s(t[1],r[1],n[1],i);var l=e.__t<=1?c(t[0],r[0],n[0],i):c(n[0],r[0],t[0],1-i),u=e.__t<=1?c(t[1],r[1],n[1],i):c(n[1],r[1],t[1],1-i);e.rotation=-Math.atan2(u,l)-Math.PI/2,(this._symbolType===`line`||this._symbolType===`rect`||this._symbolType===`roundRect`)&&(e.__lastT!==void 0&&e.__lastT=0&&!(r[o]<=t);o--);o=Math.min(o,i-2)}else{for(o=a;ot);o++);o=Math.min(o-1,i-2)}var s=(t-r[o])/(r[o+1]-r[o]),c=n[o],l=n[o+1];e.x=c[0]*(1-s)+s*l[0],e.y=c[1]*(1-s)+s*l[1];var u=e.__t<=1?l[0]-c[0]:c[0]-l[0],d=e.__t<=1?l[1]-c[1]:c[1]-l[1];e.rotation=-Math.atan2(d,u)-Math.PI/2,this._lastFrame=o,this._lastFramePercent=t,e.ignore=!1}},t}(oVe),lVe=function(){function e(){this.polyline=!1,this.curveness=0,this.segs=[]}return e}(),uVe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return t.prototype.reset=function(){this.notClear=!1,this._off=0},t.prototype.beforeBrush=function(e){e&&!e.contentRetained&&this.reset()},t.prototype.getDefaultStyle=function(){return{stroke:$.color.neutral99,fill:null}},t.prototype.getDefaultShape=function(){return new lVe},t.prototype.buildPath=function(e,t){var n=t.segs,r=t.curveness,i;if(t.polyline)for(i=this._off;i0){e.moveTo(n[i++],n[i++]);for(var o=1;o0){var d=(s+l)/2-(c-u)*r,f=(c+u)/2-(l-s)*r;e.quadraticCurveTo(d,f,l,u)}else e.lineTo(l,u)}this.incremental&&(this._off=i,this.notClear=!0)},t.prototype.findDataIndex=function(e,t){var n=this.shape,r=n.segs,i=n.curveness,a=this.style.lineWidth;if(n.polyline)for(var o=0,s=0;s0)for(var l=r[s++],u=r[s++],d=1;d0){if(sTe(l,u,(l+f)/2-(u-p)*i,(u+p)/2-(f-l)*i,f,p,a,e,t))return o}else if(fL(l,u,f,p,a,e,t))return o;o++}return-1},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect();return e=n[0],t=n[1],r.contain(e,t)?(this.hoverDataIdx=this.findDataIndex(e,t))>=0:(this.hoverDataIdx=-1,!1)},t.prototype.getBoundingRect=function(){var e=this._rect;if(!e){for(var t=this.shape.segs,n=1/0,r=1/0,i=-1/0,a=-1/0,o=0;o0&&(a.dataIndex=n+e.__startIndex)})},e.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},e}(),fVe={seriesType:`lines`,plan:mW(),reset:function(e){var t=e.coordinateSystem;if(t){var n=e.get(`polyline`),r=e.pipelineContext.large;return{progress:function(i,a){var o=[];if(r){var s=void 0,c=i.end-i.start;if(n){for(var l=0,u=i.start;u0&&c&&s.configLayer(a,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(o/10+.9,1),0)}),i.updateData(r);var l=e.get(`clip`,!0)&&zZ(e.coordinateSystem,!1,e);l?this.group.setClipPath(l):this.group.removeClipPath(),this._lastZlevel=a,this._finished=!0},t.prototype.incrementalPrepareRender=function(e,t,n){var r=e.getData();this._updateLineDraw(r,e).incrementalPrepareUpdate(r),this._clearLayer(n),this._finished=!1},t.prototype.incrementalRender=function(e,t,n){this._lineDraw.incrementalUpdate(e,t.getData(),_I(t)),this._finished=e.end===t.getData().count()},t.prototype.eachRendered=function(e){this._lineDraw&&this._lineDraw.eachRendered(e)},t.prototype.updateTransform=function(e,t,n){var r=e.getData(),i=this._lineDraw;if(!this._finished||!i||!i.updateLayout)return{update:!0};var a=fVe.reset(e,t,n);a.progress&&a.progress({start:0,end:r.count(),count:r.count()},r),i.updateLayout(),this._clearLayer(n)},t.prototype._updateLineDraw=function(e,t){var n=this._lineDraw,r=this._showEffect(t),i=!!t.get(`polyline`),a=t.pipelineContext.large;return(!n||r!==this._hasEffet||i!==this._isPolyline||a!==this._isLargeDraw)&&(n&&n.remove(),n=this._lineDraw=a?new dVe:new Q4(i?r?cVe:sVe:r?oVe:Z4),this._hasEffet=r,this._isPolyline=i,this._isLargeDraw=a),this.group.add(n.group),n},t.prototype._showEffect=function(e){return!!e.get([`effect`,`show`])},t.prototype._clearLayer=function(e){var t=vB(e);t&&this._lastZlevel!=null&&t.getLayer(this._lastZlevel).clear(!0)},t.prototype.remove=function(e,t){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(t)},t.prototype.dispose=function(e,t){this.remove(e,t)},t.type=`lines`,t}(gW),mVe=typeof Uint32Array>`u`?Array:Uint32Array,hVe=typeof Float64Array>`u`?Array:Float64Array;function gVe(e){var t=e.data;t&&t[0]&&t[0][0]&&t[0][0].coord&&(e.data=sA(t,function(e){var t={coords:[e[0].coord,e[1].coord]};return e[0].name&&(t.fromName=e[0].name),e[1].name&&(t.toName=e[1].name),eA([t,e[0],e[1]])}))}var _Ve=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.visualStyleAccessPath=`lineStyle`,n.visualDrawType=`stroke`,n}return t.prototype.init=function(t){t.data=t.data||[],gVe(t);var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count)),e.prototype.init.apply(this,arguments)},t.prototype.mergeOption=function(t){if(gVe(t),t.data){var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count))}e.prototype.mergeOption.apply(this,arguments)},t.prototype.appendData=function(e){var t=this._processFlatCoordsArray(e.data);t.flatCoords&&(this._flatCoords?(this._flatCoords=BA(this._flatCoords,t.flatCoords),this._flatCoordsOffset=BA(this._flatCoordsOffset,t.flatCoordsOffset)):(this._flatCoords=t.flatCoords,this._flatCoordsOffset=t.flatCoordsOffset),e.data=new Float32Array(t.count)),this.getRawData().appendData(e.data)},t.prototype._getCoordsFromItemModel=function(e){var t=this.getData().getItemModel(e);return t.option instanceof Array?t.option:t.getShallow(`coords`)},t.prototype.getLineCoordsCount=function(e){return this._flatCoordsOffset?this._flatCoordsOffset[e*2+1]:this._getCoordsFromItemModel(e).length},t.prototype.getLineCoords=function(e,t){if(this._flatCoordsOffset){for(var n=this._flatCoordsOffset[e*2],r=this._flatCoordsOffset[e*2+1],i=0;i `)}return YU(`nameValue`,{name:o,value:i,noValue:i==null||isNaN(i)})},t.prototype.preventIncremental=function(){return!!this.get([`effect`,`show`])},t.prototype.getProgressive=function(){return this.option.progressive??(this.option.large?1e4:this.get(`progressive`))},t.prototype.getProgressiveThreshold=function(){return this.option.progressiveThreshold??(this.option.large?2e4:this.get(`progressiveThreshold`))},t.prototype.getZLevelKey=function(){var e=this.getModel(`effect`),t=e.get(`trailLength`);return this.getData().count()>this.getProgressiveThreshold()?this.id:e.get(`show`)&&t>0?t+``:``},t.type=`series.lines`,t.dependencies=[`grid`,`polar`,`geo`,`calendar`],t.defaultOption={coordinateSystem:`geo`,z:2,legendHoverLink:!0,xAxisIndex:0,yAxisIndex:0,symbol:[`none`,`none`],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:`circle`,symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:`end`},lineStyle:{opacity:.5}},t}(lW);function y6(e){return e instanceof Array||(e=[e,e]),e}var vVe={seriesType:`lines`,reset:function(e){var t=y6(e.get(`symbol`)),n=y6(e.get(`symbolSize`)),r=e.getData();r.setVisual(`fromSymbol`,t&&t[0]),r.setVisual(`toSymbol`,t&&t[1]),r.setVisual(`fromSymbolSize`,n&&n[0]),r.setVisual(`toSymbolSize`,n&&n[1]);function i(e,t){var n=e.getItemModel(t),r=y6(n.getShallow(`symbol`,!0)),i=y6(n.getShallow(`symbolSize`,!0));r[0]&&e.setItemVisual(t,`fromSymbol`,r[0]),r[1]&&e.setItemVisual(t,`toSymbol`,r[1]),i[0]&&e.setItemVisual(t,`fromSymbolSize`,i[0]),i[1]&&e.setItemVisual(t,`toSymbolSize`,i[1])}return{dataEach:r.hasItemOption?i:null}}};function yVe(e){e.registerChartView(pVe),e.registerSeriesModel(_Ve),e.registerLayout(fVe),e.registerVisual(vVe)}var bVe=256,xVe=function(){function e(){this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={inRange:null,outOfRange:null};var e=zk.createCanvas();this.canvas=e}return e.prototype.update=function(e,t,n,r,i,a){var o=this._getBrush(),s=this._getGradient(i,`inRange`),c=this._getGradient(i,`outOfRange`),l=this.pointSize+this.blurSize,u=this.canvas,d=u.getContext(`2d`),f=e.length;u.width=t,u.height=n;for(var p=0;p0){var E=a(v)?s:c;v>0&&(v=v*w+C),b[x++]=E[T],b[x++]=E[T+1],b[x++]=E[T+2],b[x++]=E[T+3]*v*256}else x+=4}return d.putImageData(y,0,0),u},e.prototype._getBrush=function(){var e=this._brushCanvas||=zk.createCanvas(),t=this.pointSize+this.blurSize,n=t*2;e.width=n,e.height=n;var r=e.getContext(`2d`);return r.clearRect(0,0,n,n),r.shadowOffsetX=n,r.shadowBlur=this.blurSize,r.shadowColor=$.color.neutral99,r.beginPath(),r.arc(-t,t,this.pointSize,0,Math.PI*2,!0),r.closePath(),r.fill(),e},e.prototype._getGradient=function(e,t){for(var n=this._gradientPixels,r=n[t]||(n[t]=new Uint8ClampedArray(256*4)),i=[0,0,0,0],a=0,o=0;o<256;o++)e[t](o/255,!0,i),r[a++]=i[0],r[a++]=i[1],r[a++]=i[2],r[a++]=i[3];return r},e}();function SVe(e,t,n){var r=e[1]-e[0];t=sA(t,function(t){return{interval:[(t.interval[0]-e[0])/r,(t.interval[1]-e[0])/r]}});var i=t.length,a=0;return function(e){var r;for(r=a;r=0;r--){var o=t[r].interval;if(o[0]<=e&&e<=o[1]){a=r;break}}return r>=0&&r=t[0]&&e<=t[1]}}var wVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r;t.eachComponent(`visualMap`,function(t){t.eachTargetSeries(function(n){n===e&&(r=t)})}),this._progressiveEls=null,this.group.removeAll();var i=e.coordinateSystem;i.type===`cartesian2d`||i.type===`calendar`||i.type===`matrix`?this._renderOnGridLike(e,n,0,e.getData().count()):UZ(i)&&this._renderOnGeo(i,e,r,n)},t.prototype.incrementalPrepareRender=function(e,t,n){this.group.removeAll()},t.prototype.incrementalRender=function(e,t,n,r){var i=t.coordinateSystem;i&&(UZ(i)?this.render(t,n,r):(this._progressiveEls=[],this._renderOnGridLike(t,r,e.start,e.end,!0)))},t.prototype.eachRendered=function(e){oB(this._progressiveEls||this.group,e)},t.prototype._renderOnGridLike=function(e,t,n,r,i){var a=e.coordinateSystem,o=HZ(a,`cartesian2d`),s=HZ(a,`matrix`),c,l,u,d;if(o){var f=a.getAxis(`x`),p=a.getAxis(`y`);c=yY(f).w+.5,l=yY(p).w+.5,u=f.scale.getExtent(),d=p.scale.getExtent()}for(var m=this.group,h=e.getData(),g=e.getModel([`emphasis`,`itemStyle`]).getItemStyle(),_=e.getModel([`blur`,`itemStyle`]).getItemStyle(),v=e.getModel([`select`,`itemStyle`]).getItemStyle(),y=e.get([`itemStyle`,`borderRadius`]),b=CB(e),x=e.getModel(`emphasis`),S=x.get(`focus`),C=x.get(`blurScope`),w=x.get(`disabled`),T=o||s?[h.mapDimension(`x`),h.mapDimension(`y`),h.mapDimension(`value`)]:[h.mapDimension(`time`),h.mapDimension(`value`)],E=n;Eu[1]||Ad[1])continue;var j=a.dataToPoint([k,A]);D=new OL({shape:{x:j[0]-c/2,y:j[1]-l/2,width:c,height:l},style:O})}else if(s){var M=a.dataToLayout([h.get(T[0],E),h.get(T[1],E)]).rect;if(EA(M.x))continue;D=new OL({z2:1,shape:M,style:O})}else{if(isNaN(h.get(T[1],E)))continue;var N=a.dataToLayout([h.get(T[0],E)]),M=N.contentRect||N.rect;if(EA(M.x)||EA(M.y))continue;D=new OL({z2:1,shape:M,style:O})}if(h.hasItemOption){var P=h.getItemModel(E),F=P.getModel(`emphasis`);g=F.getModel(`itemStyle`).getItemStyle(),_=P.getModel([`blur`,`itemStyle`]).getItemStyle(),v=P.getModel([`select`,`itemStyle`]).getItemStyle(),y=P.get([`itemStyle`,`borderRadius`]),S=F.get(`focus`),C=F.get(`blurScope`),w=F.get(`disabled`),b=CB(P)}D.shape.r=y;var I=e.getRawValue(E),L=`-`;I&&I[2]!=null&&(L=I[2]+``),SB(D,b,{labelFetcher:e,labelDataIndex:E,defaultOpacity:O.opacity,defaultText:L}),D.ensureState(`emphasis`).style=g,D.ensureState(`blur`).style=_,D.ensureState(`select`).style=v,pR(D,S,C,w),D.incremental=_I(e,i),i&&(D.states.emphasis.hoverLayer=2),m.add(D),h.setItemGraphicEl(E,D),this._progressiveEls&&this._progressiveEls.push(D)}},t.prototype._renderOnGeo=function(e,t,n,r){var i=n.targetVisuals.inRange,a=n.targetVisuals.outOfRange,o=t.getData(),s=this._hmLayer||this._hmLayer||new xVe;s.blurSize=t.get(`blurSize`),s.pointSize=t.get(`pointSize`),s.minOpacity=t.get(`minOpacity`),s.maxOpacity=t.get(`maxOpacity`);var c=e.getViewRect().clone(),l=e.getRoamTransform();c.applyTransform(l);var u=Math.max(c.x,0),d=Math.max(c.y,0),f=Math.min(c.width+c.x,r.getWidth()),p=Math.min(c.height+c.y,r.getHeight()),m=f-u,h=p-d,g=[o.mapDimension(`lng`),o.mapDimension(`lat`),o.mapDimension(`value`)],_=o.mapArray(g,function(t,n,r){var i=e.dataToPoint([t,n]);return i[0]-=u,i[1]-=d,i.push(r),i}),v=n.getExtent(),y=n.type===`visualMap.continuous`?CVe(v,n.option.range):SVe(v,n.getPieceList(),n.option.selected);s.update(_,m,h,i.color.getNormalizer(),{inRange:i.color.getColorMapper(),outOfRange:a.color.getColorMapper()},y);var b=new wL({style:{width:m,height:h,x:u,y:d,image:s.canvas},silent:!0});this.group.add(b)},t.type=`heatmap`,t}(gW),TVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.getInitialData=function(e,t){return kq(null,this,{generateCoord:`value`})},t.prototype.preventIncremental=function(){var e=VV.get(this.get(`coordinateSystem`));if(e&&e.dimensions)return e.dimensions[0]===`lng`&&e.dimensions[1]===`lat`},t.type=`series.heatmap`,t.dependencies=[`grid`,`geo`,`calendar`,`matrix`],t.defaultOption={coordinateSystem:`cartesian2d`,z:2,geoIndex:0,blurSize:30,pointSize:20,maxOpacity:1,minOpacity:0,select:{itemStyle:{borderColor:$.color.primary}}},t}(lW);function EVe(e){e.registerChartView(wVe),e.registerSeriesModel(TVe)}var DVe=[`itemStyle`,`borderWidth`],OVe=[{xy:`x`,wh:`width`,index:0,posDesc:[`left`,`right`]},{xy:`y`,wh:`height`,index:1,posDesc:[`top`,`bottom`]}],b6=new LR,kVe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=FQ,t}return t.prototype.render=function(e,t,n){var r=this.group,i=e.getData(),a=this._data,o=e.coordinateSystem,s=o.getBaseAxis().isHorizontal(),c=o.master.getRect(),l={ecSize:{width:n.getWidth(),height:n.getHeight()},seriesModel:e,coordSys:o,coordSysExtent:[[c.x,c.x+c.width],[c.y,c.y+c.height]],isHorizontal:s,valueDim:OVe[+s],categoryDim:OVe[1-s]};i.diff(a).add(function(e){if(i.hasValue(e)){var t=AVe(i,e,BVe(i,e),l),n=UVe(i,l,t);i.setItemGraphicEl(e,n),r.add(n),qVe(n,l,t)}}).update(function(e,t){var n=a.getItemGraphicEl(t);if(!i.hasValue(e)){r.remove(n);return}var o=AVe(i,e,BVe(i,e),l),s=KVe(i,o);n&&s!==n.__pictorialShapeStr&&(r.remove(n),i.setItemGraphicEl(e,null),n=null),n?WVe(n,l,o):n=UVe(i,l,o,!0),i.setItemGraphicEl(e,n),n.__pictorialSymbolMeta=o,r.add(n),qVe(n,l,o)}).remove(function(e){var t=a.getItemGraphicEl(e);t&&GVe(a,e,t.__pictorialSymbolMeta.animationModel,t)}).execute();var u=e.get(`clip`,!0)?zZ(e.coordinateSystem,!1,e):null;return u?r.setClipPath(u):r.removeClipPath(),this._data=i,this.group},t.prototype.remove=function(e,t){var n=this.group,r=this._data;e.get(`animation`)?r&&r.eachItemGraphicEl(function(t){GVe(r,ML(t).dataIndex,e,t)}):n.removeAll()},t.type=FQ,t}(gW);function AVe(e,t,n,r){var i=e.getItemLayout(t),a=n.get(`symbolRepeat`),o=n.get(`symbolClip`),s=n.get(`symbolPosition`)||`start`,c=(n.get(`symbolRotate`)||0)*Math.PI/180||0,l=n.get(`symbolPatternSize`)||2,u=n.isAnimationEnabled(),d={dataIndex:t,layout:i,itemModel:n,symbolType:e.getItemVisual(t,`symbol`)||`circle`,style:e.getItemVisual(t,`style`),symbolClip:o,symbolRepeat:a,symbolRepeatDirection:n.get(`symbolRepeatDirection`),symbolPatternSize:l,rotation:c,animationModel:u?n:null,hoverScale:u&&n.get([`emphasis`,`scale`]),z2:n.getShallow(`z`,!0)||0};jVe(n,a,i,r,d),MVe(e,t,i,a,o,d.boundingLength,d.pxSign,l,r,d),NVe(n,d.symbolScale,c,r,d);var f=d.symbolSize;return PVe(n,f,i,a,o,sG(n.get(`symbolOffset`),f),s,d.valueLineWidth,d.boundingLength,d.repeatCutLength,r,d),d}function jVe(e,t,n,r,i){var a=r.valueDim,o=e.get(`symbolBoundingData`),s=r.coordSys.getOtherAxis(r.coordSys.getBaseAxis()),c=s.toGlobalCoord(s.dataToCoord(0)),l=1-(n[a.wh]<=0),u;if(mA(o)){var d=[x6(s,o[0])-c,x6(s,o[1])-c];d[1]=0?1:-1:u>0?1:-1}function x6(e,t){return e.toGlobalCoord(e.dataToCoord(e.scale.parse(t)))}function MVe(e,t,n,r,i,a,o,s,c,l){var u=c.valueDim,d=c.categoryDim,f=Math.abs(n[d.wh]),p=e.getItemVisual(t,`symbolSize`),m=mA(p)?p.slice():p==null?[`100%`,`100%`]:[p,p];m[d.index]=bF(m[d.index],f),m[u.index]=bF(m[u.index],r?f:Math.abs(a)),l.symbolSize=m;var h=l.symbolScale=[m[0]/s,m[1]/s];h[u.index]*=(c.isHorizontal?-1:1)*o}function NVe(e,t,n,r,i){var a=e.get(DVe)||0;a&&(b6.attr({scaleX:t[0],scaleY:t[1],rotation:n}),b6.updateTransform(),a/=b6.getLineScale(),a*=t[r.valueDim.index]),i.valueLineWidth=a||0}function PVe(e,t,n,r,i,a,o,s,c,l,u,d){var f=u.categoryDim,p=u.valueDim,m=d.pxSign,h=Math.max(t[p.index]+s,0),g=h;if(r){var _=Math.abs(c),v=DA(e.get(`symbolMargin`),`15%`)+``,y=!1;v.lastIndexOf(`!`)===v.length-1&&(y=!0,v=v.slice(0,v.length-1));var b=bF(v,t[p.index]),x=Math.max(h+b*2,0),S=y?0:b*2,C=BF(r),w=C?r:JVe((_+S)/x);b=(_-w*h)/2/(y?w:Math.max(w-1,1)),x=h+b*2,S=y?0:b*2,!C&&r!==`fixed`&&(w=l?JVe((Math.abs(l)+S)/x):0),g=w*x-S,d.repeatTimes=w,d.symbolMargin=b}var T=g/2*m,E=d.pathPosition=[];E[f.index]=n[f.wh]/2,E[p.index]=o===`start`?T:o===`end`?c-T:c/2,a&&(E[0]+=a[0],E[1]+=a[1]);var D=d.bundlePosition=[];D[f.index]=n[f.xy],D[p.index]=n[p.xy];var O=d.barRectShape=Z({},n);O[p.wh]=m*Math.max(Math.abs(n[p.wh]),Math.abs(E[p.index]+T)),O[f.wh]=n[f.wh];var k=d.clipShape={};k[f.xy]=-n[f.xy],k[f.wh]=u.ecSize[f.wh],k[p.xy]=0,k[p.wh]=n[p.wh]}function FVe(e){var t=e.symbolPatternSize,n=aG(e.symbolType,-t/2,-t/2,t,t);return n.attr({culling:!0}),n.type!==`image`&&n.setStyle({strokeNoScale:!0}),n}function IVe(e,t,n,r){var i=e.__pictorialBundle,a=n.symbolSize,o=n.valueLineWidth,s=n.pathPosition,c=t.valueDim,l=n.repeatTimes||0,u=0,d=a[t.valueDim.index]+o+n.symbolMargin*2;for(S6(e,function(e){e.__pictorialAnimationIndex=u,e.__pictorialRepeatTimes=l,u0:r<0)&&(i=l-1-e),t[c.index]=d*(i-l/2+.5)+s[c.index],{x:t[0],y:t[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation}}}function LVe(e,t,n,r){var i=e.__pictorialBundle,a=e.__pictorialMainPath;a?C6(a,null,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation},n,r):(a=e.__pictorialMainPath=FVe(n),i.add(a),C6(a,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:0,scaleY:0,rotation:n.rotation},{scaleX:n.symbolScale[0],scaleY:n.symbolScale[1]},n,r))}function RVe(e,t,n){var r=Z({},t.barRectShape),i=e.__pictorialBarRect;i?C6(i,null,{shape:r},t,n):(i=e.__pictorialBarRect=new OL({z2:2,shape:r,silent:!0,style:{stroke:`transparent`,fill:`transparent`,lineWidth:0}}),i.disableMorphing=!0,e.add(i))}function zVe(e,t,n,r){if(n.symbolClip){var i=e.__pictorialClipPath,a=Z({},n.clipShape),o=t.valueDim,s=n.animationModel,c=n.dataIndex;if(i)Sz(i,{shape:a},s,c);else{a[o.wh]=0,i=new OL({shape:a}),e.__pictorialBundle.setClipPath(i),e.__pictorialClipPath=i;var l={};l[o.wh]=n.clipShape[o.wh],kz[r?`updateProps`:`initProps`](i,{shape:l},s,c)}}}function BVe(e,t){var n=e.getItemModel(t);return n.getAnimationDelayParams=VVe,n.isAnimationEnabled=HVe,n}function VVe(e){return{index:e.__pictorialAnimationIndex,count:e.__pictorialRepeatTimes}}function HVe(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow(`animation`)}function UVe(e,t,n,r){var i=new $P,a=new $P;return i.add(a),i.__pictorialBundle=a,a.x=n.bundlePosition[0],a.y=n.bundlePosition[1],n.symbolRepeat?IVe(i,t,n):LVe(i,t,n),RVe(i,n,r),zVe(i,t,n,r),i.__pictorialShapeStr=KVe(e,n),i.__pictorialSymbolMeta=n,i}function WVe(e,t,n){var r=n.animationModel,i=n.dataIndex,a=e.__pictorialBundle;Sz(a,{x:n.bundlePosition[0],y:n.bundlePosition[1]},r,i),n.symbolRepeat?IVe(e,t,n,!0):LVe(e,t,n,!0),RVe(e,n,!0),zVe(e,t,n,!0)}function GVe(e,t,n,r){var i=r.__pictorialBarRect;i&&i.removeTextContent();var a=[];S6(r,function(e){a.push(e)}),r.__pictorialMainPath&&a.push(r.__pictorialMainPath),r.__pictorialClipPath&&(n=null),Q(a,function(e){Tz(e,{scaleX:0,scaleY:0},n,t,function(){r.parent&&r.parent.remove(r)})}),e.setItemGraphicEl(t,null)}function KVe(e,t){return[e.getItemVisual(t.dataIndex,`symbol`)||`none`,!!t.symbolRepeat,!!t.symbolClip].join(`:`)}function S6(e,t,n){Q(e.__pictorialBundle.children(),function(r){r!==e.__pictorialBarRect&&t.call(n,r)})}function C6(e,t,n,r,i,a){t&&e.attr(t),r.symbolClip&&!i?n&&e.attr(n):n&&kz[i?`updateProps`:`initProps`](e,n,r.animationModel,r.dataIndex,a)}function qVe(e,t,n){var r=n.dataIndex,i=n.itemModel,a=i.getModel(`emphasis`),o=a.getModel(`itemStyle`).getItemStyle(),s=i.getModel([`blur`,`itemStyle`]).getItemStyle(),c=i.getModel([`select`,`itemStyle`]).getItemStyle(),l=i.getShallow(`cursor`),u=a.get(`focus`),d=a.get(`blurScope`),f=a.get(`scale`);S6(e,function(e){if(e instanceof wL){var t=e.style;e.useStyle(Z({image:t.image,x:t.x,y:t.y,width:t.width,height:t.height},n.style))}else e.useStyle(n.style);var r=e.ensureState(`emphasis`);r.style=o,f&&(r.scaleX=e.scaleX*1.1,r.scaleY=e.scaleY*1.1),e.ensureState(`blur`).style=s,e.ensureState(`select`).style=c,l&&(e.cursor=l),e.z2=n.z2});var p=t.valueDim.posDesc[+(n.boundingLength>0)],m=e.__pictorialBarRect;m.ignoreClip=!0,SB(m,CB(i),{labelFetcher:t.seriesModel,labelDataIndex:r,defaultText:yZ(t.seriesModel.getData(),r),inheritColor:n.style.fill,defaultOpacity:n.style.opacity,defaultOutsidePosition:p}),pR(e,u,d,a.get(`disabled`))}function JVe(e){var t=Math.round(e);return Math.abs(e-t)<1e-4?t:Math.ceil(e)}var YVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.hasSymbolVisual=!0,n.defaultSymbol=`roundRect`,n}return t.prototype.getInitialData=function(t){return t.stack=null,e.prototype.getInitialData.apply(this,arguments)},t.type=`series.`+FQ,t.dependencies=[`grid`],t.defaultOption=VB(JQ.defaultOption,{symbol:`circle`,symbolSize:null,symbolRotate:null,symbolPosition:null,symbolOffset:null,symbolMargin:null,symbolRepeat:!1,symbolRepeatDirection:`end`,symbolClip:!1,symbolBoundingData:null,symbolPatternSize:400,barGap:`-100%`,clip:!1,progressive:0,emphasis:{scale:!1},select:{itemStyle:{borderColor:$.color.primary}}}),t}(JQ);function XVe(e){e.registerChartView(kVe),e.registerSeriesModel(YVe),e.registerLayout(e.PRIORITY.VISUAL.LAYOUT,WQ(FQ)),e.registerLayout(e.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,GQ(FQ)),qQ(e)}var w6=2,T6=`themeRiver`,ZVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t){e.prototype.init.apply(this,arguments),this.legendVisualProvider=new h$(fA(this.getData,this),fA(this.getRawData,this))},t.prototype.fixData=function(e){var t=e.length,n={},r=sI(e,function(e){return n.hasOwnProperty(e[0]+``)||(n[e[0]+``]=-1),e[2]}),i=[];r.buckets.each(function(e,t){i.push({name:t,dataList:e})});for(var a=i.length,o=0;oa&&(a=s),r.push(s)}for(var l=0;la&&(a=d)}return{y0:i,max:a}}function iHe(e){e.registerChartView(QVe),e.registerSeriesModel(ZVe),e.registerLayout(eHe),e.registerProcessor(p$(T6))}var aHe=2,oHe=4,sHe=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this)||this;a.z2=aHe,a.textConfig={inside:!0},ML(a).seriesIndex=n.seriesIndex;var o=new AL({z2:oHe,silent:t.getModel().get([`label`,`silent`])});return a.setTextContent(o),a.updateData(!0,t,n,r,i),a}return t.prototype.updateData=function(e,t,n,r,i){this.node=t,t.piece=this,n||=this._seriesModel,r||=this._ecModel;var a=this;ML(a).dataIndex=t.dataIndex;var o=t.getModel(),s=o.getModel(`emphasis`),c=t.getLayout(),l=Z({},c);l.label=null;var u=t.getVisual(`style`);u.lineJoin=`bevel`;var d=t.getVisual(`decal`);d&&(u.decal=FG(d,i)),Z(l,QQ(o.getModel(`itemStyle`),l,!0)),Q(HL,function(e){var t=a.ensureState(e),n=o.getModel([e,`itemStyle`]);t.style=n.getItemStyle();var r=QQ(n,l);r&&(t.shape=r)}),e?(a.setShape(l),a.shape.r=c.r0,Cz(a,{shape:{r:c.r}},n,t.dataIndex)):(Sz(a,{shape:l},n),Oz(a)),a.useStyle(u),this._updateLabel(n);var f=o.getShallow(`cursor`);f&&a.attr(`cursor`,f),this._seriesModel=n||this._seriesModel,this._ecModel=r||this._ecModel;var p=s.get(`focus`),m=p===`relative`?BA(t.getAncestorsIndices(),t.getDescendantIndices()):p===`ancestor`?t.getAncestorsIndices():p===`descendant`?t.getDescendantIndices():p;pR(this,m,s.get(`blurScope`),s.get(`disabled`))},t.prototype._updateLabel=function(e){var t=this,n=this.node.getModel(),r=n.getModel(`label`),i=this.node.getLayout(),a=i.endAngle-i.startAngle,o=(i.startAngle+i.endAngle)/2,s=Math.cos(o),c=Math.sin(o),l=this,u=l.getTextContent(),d=this.node.dataIndex,f=r.get(`minAngle`)/180*Math.PI;u.ignore=!(r.get(`show`)&&!(f!=null&&Math.abs(a)T&&!MF(D-T)&&D0?(i.virtualPiece?i.virtualPiece.updateData(!1,r,e,t,n):(i.virtualPiece=new sHe(r,e,t,n),c.add(i.virtualPiece)),a.piece.off(`click`),i.virtualPiece.on(`click`,function(e){i._rootToNode(a.parentNode)})):i.virtualPiece&&=(c.remove(i.virtualPiece),null)}},t.prototype._initEvents=function(){var e=this;this.group.off(`click`),this.group.on(`click`,function(t){var n=!1;e.seriesModel.getViewRoot().eachNode(function(r){if(!n&&r.piece&&r.piece===t.target){var i=r.getModel().get(`nodeClick`);if(i===`rootToNode`)e._rootToNode(r);else if(i===`link`){var a=r.getModel(),o=a.get(`link`);o&&RV(o,a.get(`target`,!0)||`_blank`)}n=!0}})})},t.prototype._rootToNode=function(e){e!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:D6,from:this.uid,seriesId:this.seriesModel.id,targetNode:e})},t.prototype.containPoint=function(e,t){var n=t.getData().getItemLayout(0);if(n){var r=e[0]-n.cx,i=e[1]-n.cy,a=Math.sqrt(r*r+i*i);return a<=n.r&&a>=n.r0}},t.type=E6,t}(gW),mHe=vI(E6,hHe);function hHe(e){var t={};function n(e,n,r){if(e.depth===0)return $.color.neutral50;for(var i=e;i&&i.depth>1;)i=i.parentNode;var a=n.getColorFromPalette(i.name||i.dataIndex+``,t);return e.depth>1&&gA(a)&&(a=fN(a,(e.depth-1)/(r-1)*.5)),a}e.eachSeriesByType(E6,function(e){var t=e.getData(),r=t.tree;r.eachNode(function(i){var a=i.getModel().getModel(`itemStyle`).getItemStyle();a.fill||=n(i,e,r.root.height),Z(t.ensureUniqueItemVisual(i.dataIndex,`style`),a)})})}var gHe=Math.PI/180,_He=vI(E6,vHe);function vHe(e,t){e.eachSeriesByType(E6,function(e){var n=e.get(`center`),r=e.get(`radius`);mA(r)||(r=[0,r]),mA(n)||(n=[n,n]);var i=t.getWidth(),a=t.getHeight(),o=Math.min(i,a),s=bF(n[0],i),c=bF(n[1],a),l=bF(r[0],o/2),u=bF(r[1],o/2),d=-e.get(`startAngle`)*gHe,f=e.get(`minAngle`)*gHe,p=e.getData().tree.root,m=e.getViewRoot(),h=m.depth,g=e.get(`sort`);g!=null&&yHe(m,g);var _=0;Q(m.children,function(e){!isNaN(e.getValue())&&_++});var v=m.getValue(),y=Math.PI/(v||_)*2,b=m.depth>0,x=m.height-(b?-1:1),S=(u-l)/(x||1),C=e.get(`clockwise`),w=e.get(`stillShowZeroSum`),T=C?1:-1,E=function(t,n){if(t){var r=n;if(t!==p){var i=t.getValue(),a=v===0&&w?y:i*y;ar[1]&&r.reverse(),{coordSys:{type:`polar`,cx:e.cx,cy:e.cy,r:r[1],r0:r[0]},api:{coord:function(r){var i=t.dataToRadius(r[0]),a=n.dataToAngle(r[1]),o=e.coordToPoint([i,a]);return o.push(i,a*Math.PI/180),o},size:fA(jHe,e)}}}function NHe(e){var t=e.getRect(),n=e.getRangeInfo();return{coordSys:{type:`calendar`,x:t.x,y:t.y,width:t.width,height:t.height,cellWidth:e.getCellWidth(),cellHeight:e.getCellHeight(),rangeInfo:{start:n.start,end:n.end,weeks:n.weeks,dayCount:n.allDay}},api:{coord:function(t,n){return e.dataToPoint(t,n)},layout:function(t,n){return e.dataToLayout(t,n)}}}}function PHe(e){var t=e.getRect();return{coordSys:{type:`matrix`,x:t.x,y:t.y,width:t.width,height:t.height},api:{coord:function(t,n){return e.dataToPoint(t,n)},layout:function(t,n){return e.dataToLayout(t,n)}}}}var FHe={position:[`x`,`y`],scale:[`scaleX`,`scaleY`],origin:[`originX`,`originY`]},IHe=dA(FHe);cA(DP,function(e,t){return e[t]=1,e},{}),DP.join(`, `);var k6=[``,`style`,`shape`,`extra`],A6=tI();function j6(e,t,n,r,i){var a=e+`Animation`,o=bz(e,r,i)||{},s=A6(t).userDuring;return o.duration>0&&(o.during=s?fA(HHe,{el:t,userDuring:s}):null,o.setToFinal=!0,o.scope=e),Z(o,n[a]),o}function M6(e,t,n,r){r||={};var i=r.dataIndex,a=r.isInit,o=r.clearStyle,s=n.isAnimationEnabled(),c=A6(e),l=t.style;c.userDuring=t.during;var u={},d={};if(GHe(e,t,d),e.type===`compound`)for(var f=e.shape.paths,p=t.shape.paths,m=0;m0&&e.animateFrom(g,_)}else zHe(e,t,i||0,n,u);LHe(e,t),l?e.dirty():e.markRedraw()}function LHe(e,t){for(var n=A6(e).leaveToProps,r=0;r0&&e.animateFrom(i,a)}}function BHe(e,t){UA(t,`silent`)&&(e.silent=t.silent),UA(t,`ignore`)&&(e.ignore=t.ignore),e instanceof FI&&UA(t,`invisible`)&&(e.invisible=t.invisible),e instanceof SL&&UA(t,`autoBatch`)&&(e.autoBatch=t.autoBatch)}var F6={},VHe={setTransform:function(e,t){return F6.el[e]=t,this},getTransform:function(e){return F6.el[e]},setShape:function(e,t){var n=F6.el,r=n.shape||={};return r[e]=t,n.dirtyShape&&n.dirtyShape(),this},getShape:function(e){var t=F6.el.shape;if(t)return t[e]},setStyle:function(e,t){var n=F6.el,r=n.style;return r&&(r[e]=t,n.dirtyStyle&&n.dirtyStyle()),this},getStyle:function(e){var t=F6.el.style;if(t)return t[e]},setExtra:function(e,t){var n=F6.el.extra||(F6.el.extra={});return n[e]=t,this},getExtra:function(e){var t=F6.el.extra;if(t)return t[e]}};function HHe(){var e=this,t=e.el;if(t){var n=A6(t).userDuring,r=e.userDuring;if(n!==r){e.el=e.userDuring=null;return}F6.el=t,r(VHe)}}function UHe(e,t,n,r){var i=n[e];if(i){var a=t[e],o;if(a){var s=n.transition,c=i.transition;if(c)if(!o&&(o=r[e]={}),P6(c))Z(o,a);else for(var l=qF(c),u=0;u=0){!o&&(o=r[e]={});for(var p=dA(a),u=0;u=0)){var f=e.getAnimationStyleProps(),p=f?f.style:null;if(p){!a&&(a=r.style={});for(var m=dA(n),l=0;l=0?t.getStore().get(i,n):void 0}var a=t.get(r.name,n),o=r&&r.ordinalMeta;return o?o.categories[a]:a}function C(n,r){r??=u;var i=t.getItemVisual(r,`style`),a=i&&i.fill,o=i&&i.opacity,s=y(r,z6).getItemStyle();a!=null&&(s.fill=a),o!=null&&(s.opacity=o);var c={inheritColor:gA(a)?a:$.color.neutral99},l=b(r,z6),d=wB(l,null,c,!1,!0);d.text=l.getShallow(`show`)?OA(e.getFormattedLabel(r,z6),yZ(t,r)):null;var f=TB(l,c,!1);return E(n,s),s=qZ(s,d,f),n&&T(s,n),s.legacy=!0,s}function w(n,r){r??=u;var i=y(r,R6).getItemStyle(),a=b(r,R6),o=wB(a,null,null,!0,!0);o.text=a.getShallow(`show`)?kA(e.getFormattedLabel(r,R6),e.getFormattedLabel(r,z6),yZ(t,r)):null;var s=TB(a,null,!0);return E(n,i),i=qZ(i,o,s),n&&T(i,n),i.legacy=!0,i}function T(e,t){for(var n in t)UA(t,n)&&(e[n]=t[n])}function E(e,t){e&&(e.textFill&&(t.textFill=e.textFill),e.textPosition&&(t.textPosition=e.textPosition))}function D(e,n){if(n??=u,UA(SHe,e)){var r=t.getItemVisual(n,`style`);return r?r[SHe[e]]:null}if(UA(CHe,e))return t.getItemVisual(n,e)}function O(e){if(o.type===`cartesian2d`)return sPe(nA({axis:o.getBaseAxis()},e))}function k(){return n.getCurrentSeriesIndices()}function A(e){return AB(e,n)}}function oUe(e){var t={};return Q(e.dimensions,function(n){var r=e.getDimensionInfo(n);if(!r.isExtraCoord){var i=r.coordDim,a=t[i]=t[i]||[];a[r.coordDimIndex]=e.getDimensionIndex(n)}}),t}function X6(e,t,n,r,i,a,o){if(!r){a.remove(t);return}var s=Z6(e,t,n,r,i,a);return s&&o.setItemGraphicEl(n,s),s&&pR(s,r.focus,r.blurScope,r.emphasisDisabled),s}function Z6(e,t,n,r,i,a){var o=-1,s=t;t&&sUe(t,r,i)&&(o=rA(a.childrenRef(),t),t=null);var c=!t,l=t;l?l.clearStates():(l=J6(r),s&&eUe(s,l)),r.morph===!1?l.disableMorphing=!0:l.disableMorphing&&=!1,r.tooltipDisabled&&(l.tooltipDisabled=!0),G6.normal.cfg=G6.normal.conOpt=G6.emphasis.cfg=G6.emphasis.conOpt=G6.blur.cfg=G6.blur.conOpt=G6.select.cfg=G6.select.conOpt=null,G6.isLegacy=!1,lUe(l,n,r,i,c,G6),cUe(l,n,r,i,c),Y6(e,l,n,r,G6,i,c),UA(r,`info`)&&(O6(l).info=r.info);for(var u=0;u=0?a.replaceAt(l,o):a.add(l),l}function sUe(e,t,n){var r=O6(e),i=t.type,a=t.shape,o=t.style;return n.isUniversalTransitionEnabled()||i!=null&&i!==r.customGraphicType||i===`path`&&vUe(a)&&_Ue(a)!==r.customPathData||i===`image`&&UA(o,`image`)&&o.image!==r.customImagePath}function cUe(e,t,n,r,i){var a=n.clipPath;if(a===!1)e&&e.getClipPath()&&e.removeClipPath();else if(a){var o=e.getClipPath();o&&sUe(o,a,r)&&(o=null),o||(o=J6(a),e.setClipPath(o)),Y6(null,o,t,a,null,r,i)}}function lUe(e,t,n,r,i,a){if(!(e.isGroup||e.type===`compoundPath`)){uUe(n,null,a),uUe(n,R6,a);var o=a.normal.conOpt,s=a.emphasis.conOpt,c=a.blur.conOpt,l=a.select.conOpt;if(o!=null||s!=null||l!=null||c!=null){var u=e.getTextContent();if(o===!1)u&&e.removeTextContent();else{o=a.normal.conOpt=o||{type:`text`},u?u.clearStates():(u=J6(o),e.setTextContent(u)),Y6(null,u,t,o,null,r,i);for(var d=o&&o.style,f=0;f=u;p--)fUe(t,t.childAt(p),i)}}function fUe(e,t,n){t&&N6(t,O6(e).option,n)}function pUe(e){new iq(e.oldChildren,e.newChildren,mUe,mUe,e).add(hUe).update(hUe).remove(gUe).execute()}function mUe(e,t){return(e&&e.name)??QHe+t}function hUe(e,t){var n=this.context,r=e==null?null:n.newChildren[e],i=t==null?null:n.oldChildren[t];Z6(n.api,i,n.dataIndex,r,n.seriesModel,n.group)}function gUe(e){var t=this.context,n=t.oldChildren[e];n&&N6(n,O6(n).option,t.seriesModel)}function _Ue(e){return e&&(e.pathData||e.d)}function vUe(e){return e&&(UA(e,`pathData`)||UA(e,`d`))}function yUe(e){e.registerChartView(tUe),e.registerSeriesModel(wHe)}var e8=tI(),bUe=Qk,t8=fA,n8=function(){function e(){this._dragging=!1,this.animationThreshold=15}return e.prototype.render=function(e,t,n,r){var i=t.get(`value`),a=t.get(`status`);if(this._axisModel=e,this._axisPointerModel=t,this._api=n,!(!r&&this._lastValue===i&&this._lastStatus===a)){this._lastValue=i,this._lastStatus=a;var o=this._group,s=this._handle;if(!a||a===`hide`){o&&o.hide(),s&&s.hide();return}o&&o.show(),s&&s.show();var c={};this.makeElOption(c,i,e,t,n);var l=c.graphicKey;l!==this._lastGraphicKey&&this.clear(n),this._lastGraphicKey=l;var u=this._moveAnimation=this.determineAnimation(e,t);if(!o)o=this._group=new $P,this.createPointerEl(o,c,e,t),this.createLabelEl(o,c,e,t),n.getZr().add(o);else{var d=pA(xUe,t,u);this.updatePointerEl(o,c,d),this.updateLabelEl(o,c,d,t)}wUe(o,t,!0),this._renderHandle(i)}},e.prototype.remove=function(e){this.clear(e)},e.prototype.dispose=function(e){this.clear(e)},e.prototype.determineAnimation=function(e,t){var n=t.get(`animation`),r=e.axis,i=r.type===`category`,a=t.get(`snap`);if(!a&&!i)return!1;if(n===`auto`||n==null){var o=this.animationThreshold;if(i&&yY(r).w>o)return!0;if(a){var s=K$(e).seriesDataCount,c=r.getExtent();return Math.abs(c[0]-c[1])/s>o}return!1}return n===!0},e.prototype.makeElOption=function(e,t,n,r,i){},e.prototype.createPointerEl=function(e,t,n,r){var i=t.pointer;if(i){var a=e8(e).pointerEl=new kz[i.type](bUe(t.pointer));e.add(a)}},e.prototype.createLabelEl=function(e,t,n,r){if(t.label){var i=e8(e).labelEl=new AL(bUe(t.label));e.add(i),CUe(i,r)}},e.prototype.updatePointerEl=function(e,t,n){var r=e8(e).pointerEl;r&&t.pointer&&(r.setStyle(t.pointer.style),n(r,{shape:t.pointer.shape}))},e.prototype.updateLabelEl=function(e,t,n,r){var i=e8(e).labelEl;i&&(i.setStyle(t.label.style),n(i,{x:t.label.x,y:t.label.y}),CUe(i,r))},e.prototype._renderHandle=function(e){if(!(this._dragging||!this.updateHandleTransform)){var t=this._axisPointerModel,n=this._api.getZr(),r=this._handle,i=t.getModel(`handle`),a=t.get(`status`);if(!i.get(`show`)||!a||a===`hide`){r&&n.remove(r),this._handle=null;return}var o;this._handle||(o=!0,r=this._handle=Zz(i.get(`icon`),{cursor:`move`,draggable:!0,onmousemove:function(e){Oj(e.event)},onmousedown:t8(this._onHandleDragMove,this,0,0),drift:t8(this._onHandleDragMove,this),ondragend:t8(this._onHandleDragEnd,this)}),n.add(r)),wUe(r,t,!1),r.setStyle(i.getItemStyle(null,[`color`,`borderColor`,`borderWidth`,`opacity`,`shadowColor`,`shadowBlur`,`shadowOffsetX`,`shadowOffsetY`]));var s=i.get(`size`);mA(s)||(s=[s,s]),r.scaleX=s[0]/2,r.scaleY=s[1]/2,CW(this,`_doDispatchAxisPointer`,i.get(`throttle`)||0,`fixRate`),this._moveHandleToValue(e,o)}},e.prototype._moveHandleToValue=function(e,t){xUe(this._axisPointerModel,!t&&this._moveAnimation,this._handle,r8(this.getHandleTransform(e,this._axisModel,this._axisPointerModel)))},e.prototype._onHandleDragMove=function(e,t){var n=this._handle;if(n){this._dragging=!0;var r=this.updateHandleTransform(r8(n),[e,t],this._axisModel,this._axisPointerModel);this._payloadInfo=r,n.stopAnimation(),n.attr(r8(r)),e8(n).lastProp=null,this._doDispatchAxisPointer()}},e.prototype._doDispatchAxisPointer=function(){if(this._handle){var e=this._payloadInfo,t=this._axisModel;this._api.dispatchAction({type:`updateAxisPointer`,x:e.cursorPoint[0],y:e.cursorPoint[1],tooltipOption:e.tooltipOption,axesInfo:[{axisDim:t.axis.dim,axisIndex:t.componentIndex}]})}},e.prototype._onHandleDragEnd=function(){if(this._dragging=!1,this._handle){var e=this._axisPointerModel.get(`value`);this._moveHandleToValue(e),this._api.dispatchAction({type:`hideTip`})}},e.prototype.clear=function(e){this._lastValue=null,this._lastStatus=null;var t=e.getZr(),n=this._group,r=this._handle;t&&n&&(this._lastGraphicKey=null,n&&t.remove(n),r&&t.remove(r),this._group=null,this._handle=null,this._payloadInfo=null),wW(this,`_doDispatchAxisPointer`)},e.prototype.doClear=function(){},e.prototype.buildLabel=function(e,t,n){return n||=0,{x:e[n],y:e[1-n],width:t[n],height:t[1-n]}},e}();function xUe(e,t,n,r){SUe(e8(n).lastProp,r)||(e8(n).lastProp=r,t?Sz(n,r,e):(n.stopAnimation(),n.attr(r)))}function SUe(e,t){if(yA(e)&&yA(t)){var n=!0;return Q(t,function(t,r){n&&=SUe(e[r],t)}),!!n}else return e===t}function CUe(e,t){e[t.get([`label`,`show`])?`show`:`hide`]()}function r8(e){return{x:e.x||0,y:e.y||0,rotation:e.rotation||0}}function wUe(e,t,n){var r=t.get(`z`),i=t.get(`zlevel`);e&&e.traverse(function(e){e.type!==`group`&&(r!=null&&(e.z=r),i!=null&&(e.zlevel=i),e.silent=n)})}function i8(e){var t=e.get(`type`),n=e.getModel(t+`Style`),r;return t===`line`?(r=n.getLineStyle(),r.fill=null):t===`shadow`&&(r=n.getAreaStyle(),r.stroke=null),r}function TUe(e,t,n,r,i){var a=DUe(n.get(`value`),t.axis,t.ecModel,n.get(`seriesDataIndices`),{precision:n.get([`label`,`precision`]),formatter:n.get([`label`,`formatter`])}),o=n.getModel(`label`),s=AV(o.get(`padding`)||0),c=o.getFont(),l=IP(a,c),u=i.position,d=l.width+s[1]+s[3],f=l.height+s[0]+s[2],p=i.align;p===`right`&&(u[0]-=d),p===`center`&&(u[0]-=d/2);var m=i.verticalAlign;m===`bottom`&&(u[1]-=f),m===`middle`&&(u[1]-=f/2),EUe(u,d,f,r);var h=o.get(`backgroundColor`);(!h||h===`auto`)&&(h=t.get([`axisLine`,`lineStyle`,`color`])),e.label={x:u[0],y:u[1],style:wB(o,{text:a,font:c,fill:o.getTextColor(),padding:s,backgroundColor:h}),z2:10}}function EUe(e,t,n,r){var i=r.getWidth(),a=r.getHeight();e[0]=Math.min(e[0]+t,i)-t,e[1]=Math.min(e[1]+n,a)-n,e[0]=Math.max(e[0],0),e[1]=Math.max(e[1],0)}function DUe(e,t,n,r,i){e=t.scale.parse(e);var a=t.scale.getLabel({value:e},{precision:i.precision}),o=i.formatter;if(o){var s={value:gJ(t,{value:e}),axisDimension:t.dim,axisIndex:t.index,seriesData:[]};Q(r,function(e){var t=n.getSeriesByIndex(e.seriesIndex),r=e.dataIndexInside,i=t&&t.getDataParams(r);i&&s.seriesData.push(i)}),gA(o)?a=o.replace(`{value}`,a):hA(o)&&(a=o(s))}return a}function a8(e,t,n){var r=Mj();return Lj(r,r,n.rotation),Ij(r,r,n.position),Gz([e.dataToCoord(t),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],r)}function OUe(e,t,n,r,i,a){var o=bQ.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=i.get([`label`,`margin`]),TUe(t,r,i,a,{position:a8(r.axis,e,n),align:o.textAlign,verticalAlign:o.textVerticalAlign})}function o8(e,t,n){return n||=0,{x1:e[n],y1:e[1-n],x2:t[n],y2:t[1-n]}}function kUe(e,t,n){return n||=0,{x:e[n],y:e[1-n],width:t[n],height:t[1-n]}}function AUe(e,t,n,r,i,a){return{cx:e,cy:t,r0:n,r,startAngle:i,endAngle:a,clockwise:!0}}function s8(e,t,n){return yY(e,{fromStat:{sers:sA(t,function(e){return n.getSeriesByIndex(e.seriesIndex)})},min:1}).w}function c8(e,t,n){return[uF(lF(t[0],t[1]),e-n/2),lF(e+n/2,uF(t[0],t[1]))]}var jUe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.makeElOption=function(e,t,n,r,i){var a=n.axis,o=a.grid,s=r.get(`type`),c=a.getGlobalExtent(),l=MUe(o,a).getOtherAxis(a).getGlobalExtent(),u=a.toGlobalCoord(a.dataToCoord(t,!0));if(s&&s!==`none`){var d=i8(r),f=NUe[s](a,u,c,l,r.get(`seriesDataIndices`),r.ecModel);f.style=d,e.graphicKey=f.type,e.pointer=f}OUe(t,e,kQ(o.getRect(),n),n,r,i)},t.prototype.getHandleTransform=function(e,t,n){var r=kQ(t.axis.grid.getRect(),t,{labelInside:!1});r.labelMargin=n.get([`handle`,`margin`]);var i=a8(t.axis,e,r);return{x:i[0],y:i[1],rotation:r.rotation+(r.labelDirection<0?Math.PI:0)}},t.prototype.updateHandleTransform=function(e,t,n,r){var i=n.axis,a=i.grid,o=i.getGlobalExtent(!0),s=MUe(a,i).getOtherAxis(i).getGlobalExtent(),c=i.dim===`x`?0:1,l=[e.x,e.y];l[c]+=t[c],l[c]=lF(o[1],l[c]),l[c]=uF(o[0],l[c]);var u=(s[1]+s[0])/2,d=[u,u];return d[c]=l[c],{x:l[0],y:l[1],rotation:e.rotation,cursorPoint:d,tooltipOption:[{verticalAlign:`middle`},{align:`center`}][c]}},t}(n8);function MUe(e,t){var n={};return n[t.dim+`AxisIndex`]=t.index,e.getCartesian(n)}var NUe={line:function(e,t,n,r){return{type:`Line`,subPixelOptimize:!0,shape:o8([t,r[0]],[t,r[1]],PUe(e))}},shadow:function(e,t,n,r,i,a){var o=s8(e,i,a),s=r[1]-r[0],c=c8(t,n,o),l=c[0],u=c[1];return{type:`Rect`,shape:kUe([l,r[0]],[u-l,s],PUe(e))}}};function PUe(e){return e.dim===`x`?0:1}var FUe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`axisPointer`,t.defaultOption={show:`auto`,z:50,type:`line`,snap:!1,triggerTooltip:!0,triggerEmphasis:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:$.color.border,width:1,type:`dashed`},shadowStyle:{color:$.color.shadowTint},label:{show:!0,formatter:null,precision:`auto`,margin:3,color:$.color.neutral00,padding:[5,7,5,7],backgroundColor:$.color.accent60,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:$.color.accent40,throttle:40}},t}(lH),l8=tI(),IUe=Q;function LUe(e,t,n){if(!Rk.node){var r=t.getZr();l8(r).records||(l8(r).records={}),RUe(r,t);var i=l8(r).records[e]||(l8(r).records[e]={});i.handler=n}}function RUe(e,t){if(l8(e).initialized)return;l8(e).initialized=!0,n(`click`,pA(u8,`click`)),n(`mousemove`,pA(u8,`mousemove`)),n(`mousewheel`,pA(u8,`mousewheel`)),n(`globalout`,BUe);function n(n,r){e.on(n,function(n){var i=VUe(t);IUe(l8(e).records,function(e){e&&r(e,n,i.dispatchAction)}),zUe(i.pendings,t)})}}function zUe(e,t){var n=e.showTip.length,r=e.hideTip.length,i;n?i=e.showTip[n-1]:r&&(i=e.hideTip[r-1]),i&&(i.dispatchAction=null,t.dispatchAction(i))}function BUe(e,t,n){e.handler(`leave`,null,n)}function u8(e,t,n,r){t.handler(e,n,r)}function VUe(e){var t={showTip:[],hideTip:[]},n=function(r){var i=t[r.type];i?i.push(r):(r.dispatchAction=n,e.dispatchAction(r))};return{dispatchAction:n,pendings:t}}function d8(e,t){if(!Rk.node){var n=t.getZr();(l8(n).records||{})[e]&&(l8(n).records[e]=null)}}var HUe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r=t.getComponent(`tooltip`),i=e.get(`triggerOn`)||r&&r.get(`triggerOn`)||`mousemove|click|mousewheel`;LUe(`axisPointer`,n,function(e,t,n){i!==`none`&&(e===`leave`||i.indexOf(e)>=0)&&n({type:`updateAxisPointer`,currTrigger:e,x:t&&t.offsetX,y:t&&t.offsetY})})},t.prototype.remove=function(e,t){d8(`axisPointer`,t)},t.prototype.dispose=function(e,t){d8(`axisPointer`,t)},t.type=`axisPointer`,t}(pW);function UUe(e,t){var n=[],r=e.seriesIndex,i;if(r==null||!(i=t.getSeriesByIndex(r)))return{point:[]};var a=i.getData(),o=eI(a,e);if(o==null||o<0||mA(o))return{point:[]};var s=a.getItemGraphicEl(o),c=i.coordinateSystem;if(i.getTooltipPosition)n=i.getTooltipPosition(o)||[];else if(c&&c.dataToPoint)if(e.isStacked){var l=c.getBaseAxis(),u=c.getOtherAxis(l).dim,d=l.dim,f=+(u===`x`||u===`radius`),p=a.mapDimension(d),m=[];m[f]=a.get(p,o),m[1-f]=a.get(a.getCalculationInfo(`stackResultDimension`),o),n=c.dataToPoint(m)||[]}else n=c.dataToPoint(a.getValues(sA(c.dimensions,function(e){return a.mapDimension(e)}),o))||[];else if(s){var h=s.getBoundingRect().clone();h.applyTransform(s.transform),n=[h.x+h.width/2,h.y+h.height/2]}return{point:n,el:s}}var WUe=tI();function GUe(e,t,n){var r=e.currTrigger,i=[e.x,e.y],a=e,o=e.dispatchAction||fA(n.dispatchAction,n),s=t.getComponent(`axisPointer`).coordSysAxesInfo;if(s){f8(i)&&(i=UUe({seriesIndex:a.seriesIndex,dataIndex:a.dataIndex},t).point);var c=f8(i),l=a.axesInfo,u=s.axesInfo,d=r===`leave`||f8(i),f={},p={},m={list:[],map:{}},h={showPointer:pA(JUe,p),showTooltip:pA(YUe,m)};Q(s.coordSysMap,function(e,t){var n=c||e.containPoint(i);Q(s.coordSysAxesInfo[t],function(e,t){var r=e.axis,a=$Ue(l,e);if(!d&&n&&(!l||a)){var o=a&&a.value;o==null&&!c&&(o=r.pointToData(i)),o!=null&&KUe(e,o,h,!1,f)}})});var g={};return Q(u,function(e,t){var n=e.linkGroup;n&&!p[t]&&Q(n.axesInfo,function(t,r){var i=p[r];if(t!==e&&i){var a=i.value;n.mapper&&(a=e.axis.scale.parse(n.mapper(a,eWe(t),eWe(e)))),g[e.key]=a}})}),Q(g,function(e,t){KUe(u[t],e,h,!0,f)}),XUe(p,u,f),ZUe(m,i,e,o),QUe(u,o,n),f}}function KUe(e,t,n,r,i){var a=e.axis;if(!(a.scale.isBlank()||!a.containData(t))){if(!e.involveSeries){n.showPointer(e,t);return}var o=qUe(t,e),s=o.payloadBatch,c=o.snapToValue;s[0]&&i.seriesIndex==null&&Z(i,s[0]),!r&&e.snap&&a.containData(c)&&c!=null&&(t=c),n.showPointer(e,t,s),n.showTooltip(e,o,c)}}function qUe(e,t){var n=t.axis,r=n.dim,i=e,a=[],o=Number.MAX_VALUE,s=-1;return Q(t.seriesModels,function(t,c){var l=t.getData().mapDimensionsAll(r),u,d;if(t.getAxisTooltipData){var f=t.getAxisTooltipData(l,e,n);d=f.dataIndices,u=f.nestestValue}else{if(d=t.indicesOfNearest(r,l[0],e,n.type===`category`?.5:null),!d.length)return;u=t.getData().get(l[0],d[0])}if(WF(u)){var p=e-u,m=Math.abs(p);m<=o&&((m=0&&s<0)&&(o=m,s=p,i=u,a.length=0),Q(d,function(e){a.push({seriesIndex:t.seriesIndex,dataIndexInside:e,dataIndex:t.getData().getRawIndex(e)})}))}}),{payloadBatch:a,snapToValue:i}}function JUe(e,t,n,r){e[t.key]={value:n,payloadBatch:r}}function YUe(e,t,n,r){var i=n.payloadBatch,a=t.axis,o=a.model,s=t.axisPointerModel;if(!(!t.triggerTooltip||!i.length)){var c=t.coordSys.model,l=J$(c),u=e.map[l];u||(u=e.map[l]={coordSysId:c.id,coordSysIndex:c.componentIndex,coordSysType:c.type,coordSysMainType:c.mainType,dataByAxis:[]},e.list.push(u)),u.dataByAxis.push({axisDim:a.dim,axisIndex:o.componentIndex,axisType:o.type,axisId:o.id,value:r,valueLabelOpt:{precision:s.get([`label`,`precision`]),formatter:s.get([`label`,`formatter`])},seriesDataIndices:i.slice()})}}function XUe(e,t,n){var r=n.axesInfo=[];Q(t,function(t,n){var i=t.axisPointerModel.option,a=e[n];a?(!t.useHandle&&(i.status=`show`),i.value=a.value,i.seriesDataIndices=(a.payloadBatch||[]).slice()):!t.useHandle&&(i.status=`hide`),i.status===`show`&&r.push({axisDim:t.axis.dim,axisIndex:t.axis.model.componentIndex,value:i.value})})}function ZUe(e,t,n,r){if(f8(t)||!e.list.length){r({type:`hideTip`});return}var i=((e.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};r({type:`showTip`,escapeConnect:!0,x:t[0],y:t[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:i.dataIndexInside,dataIndex:i.dataIndex,seriesIndex:i.seriesIndex,dataByCoordSys:e.list})}function QUe(e,t,n){var r=n.getZr(),i=`axisPointerLastHighlights`,a=WUe(r)[i]||{},o=WUe(r)[i]={};Q(e,function(e,t){var n=e.axisPointerModel.option;n.status===`show`&&e.triggerEmphasis&&Q(n.seriesDataIndices,function(e){o[e.seriesIndex+`|`+e.dataIndex]=e})});var s=[],c=[];function l(e){return{seriesIndex:e.seriesIndex,dataIndex:e.dataIndex}}Q(a,function(e,t){!o[t]&&c.push(l(e))}),Q(o,function(e,t){!a[t]&&s.push(l(e))}),c.length&&n.dispatchAction({type:`downplay`,escapeConnect:!0,notBlur:!0,batch:c}),s.length&&n.dispatchAction({type:`highlight`,escapeConnect:!0,notBlur:!0,batch:s})}function $Ue(e,t){for(var n=0;n<(e||[]).length;n++){var r=e[n];if(t.axis.dim===r.axisDim&&t.axis.model.componentIndex===r.axisIndex)return r}}function eWe(e){var t=e.axis.model,n={},r=n.axisDim=e.axis.dim;return n.axisIndex=n[r+`AxisIndex`]=t.componentIndex,n.axisName=n[r+`AxisName`]=t.name,n.axisId=n[r+`AxisId`]=t.id,n}function f8(e){return!e||e[0]==null||isNaN(e[0])||e[1]==null||isNaN(e[1])}function p8(e){X$.registerAxisPointerClass(`CartesianAxisPointer`,jUe),e.registerComponentModel(FUe),e.registerComponentView(HUe),e.registerPreprocessor(function(e){if(e){(!e.axisPointer||e.axisPointer.length===0)&&(e.axisPointer={});var t=e.axisPointer.link;t&&!mA(t)&&(e.axisPointer.link=[t])}}),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,{overallReset:function(e,t){e.getComponent(`axisPointer`).coordSysAxesInfo=eFe(e,t)}}),e.registerAction({type:`updateAxisPointer`,event:`updateAxisPointer`,update:`:updateAxisPointer`},GUe)}function tWe(e){tq(r1),tq(p8)}var nWe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.makeElOption=function(e,t,n,r,i){var a=n.axis;a.dim===`angle`&&(this.animationThreshold=Math.PI/18);var o=a.polar,s=a.getExtent(),c=o.getOtherAxis(a).getExtent(),l=a.dataToCoord(t),u=r.get(`type`);if(u&&u!==`none`){var d=i8(r),f=iWe[u](a,o,l,s,c,r.get(`seriesDataIndices`),r.ecModel);f.style=d,e.graphicKey=f.type,e.pointer=f}TUe(e,n,r,i,rWe(t,n,r,o,r.get([`label`,`margin`])))},t}(n8);function rWe(e,t,n,r,i){var a=t.axis,o=a.dataToCoord(e),s=r.getAngleAxis().getExtent()[0];s=s/180*Math.PI;var c=r.getRadiusAxis().getExtent(),l,u,d;if(a.dim===`radius`){var f=Mj();Lj(f,f,s),Ij(f,f,[r.cx,r.cy]),l=Gz([o,-i],f);var p=t.getModel(`axisLabel`).get(`rotate`)||0,m=bQ.innerTextLayout(s,p*Math.PI/180,-1);u=m.textAlign,d=m.textVerticalAlign}else{var h=c[1];l=r.coordToPoint([h+i,o]);var g=r.cx,_=r.cy;u=Math.abs(l[0]-g)/h<.3?`center`:l[0]>g?`left`:`right`,d=Math.abs(l[1]-_)/h<.3?`middle`:l[1]>_?`top`:`bottom`}return{position:l,align:u,verticalAlign:d}}var iWe={line:function(e,t,n,r,i){return e.dim===`angle`?{type:`Line`,shape:o8(t.coordToPoint([i[0],n]),t.coordToPoint([i[1],n]))}:{type:`Circle`,shape:{cx:t.cx,cy:t.cy,r:n}}},shadow:function(e,t,n,r,i,a,o){var s=Math.PI/180,c=s8(e,a,o),l;if(e.dim===`angle`)l=AUe(t.cx,t.cy,i[0],i[1],(-n-c/2)*s,(-n+c/2)*s);else{var u=c8(n,r,c),d=u[0],f=u[1];l=AUe(t.cx,t.cy,d,f,0,Math.PI*2)}return{type:`Sector`,shape:l}}},m8=`polar`,aWe=m8,oWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.findAxisModel=function(e){var t;return this.ecModel.eachComponent(e,function(e){e.getCoordSysModel()===this&&(t=e)},this),t},t.type=m8,t.dependencies=[`radiusAxis`,`angleAxis`],t.defaultOption={z:0,center:[`50%`,`50%`],radius:`80%`},t}(lH),h8=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.getCoordSysModel=function(){return this.getReferringComponents(`polar`,iI).models[0]},t.type=`polarAxis`,t}(lH);aA(h8,wJ);var sWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`angleAxis`,t}(h8),cWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`radiusAxis`,t}(h8),g8=function(e){X(t,e);function t(t,n){return e.call(this,`radius`,t,n)||this}return t.prototype.pointToData=function(e,t){return this.polar.pointToData(e,t)[this.dim===`radius`?0:1]},t}(xY);g8.prototype.dataToRadius=xY.prototype.dataToCoord,g8.prototype.radiusToData=xY.prototype.coordToData;var lWe=tI(),_8=function(e){X(t,e);function t(t,n){return e.call(this,`angle`,t,n||[0,360])||this}return t.prototype.pointToData=function(e,t){return this.polar.pointToData(e,t)[this.dim===`radius`?0:1]},t.prototype.calculateCategoryInterval=function(){var e=this,t=e.getLabelModel(),n=e.scale,r=n.getExtent(),i=n.count();if(r[1]-r[0]<1)return 0;var a=r[0],o=e.dataToCoord(a+1)-e.dataToCoord(a),s=Math.abs(o),c=IP(a==null?``:a+``,t.getFont(),`center`,`top`),l=Math.max(c.height,7)/s;isNaN(l)&&(l=1/0);var u=Math.max(0,Math.floor(l)),d=lWe(e.model),f=d.lastAutoInterval,p=d.lastTickCount;return f!=null&&p!=null&&Math.abs(f-u)<=1&&Math.abs(p-i)<=1&&f>u?u=f:(d.lastTickCount=i,d.lastAutoInterval=u),u},t}(xY);_8.prototype.dataToAngle=xY.prototype.dataToCoord,_8.prototype.angleToData=xY.prototype.coordToData;var uWe=[`radius`,`angle`],dWe=function(){function e(e){this.dimensions=uWe,this.type=m8,this.cx=0,this.cy=0,this._radiusAxis=new g8,this._angleAxis=new _8,this.axisPointerEnabled=!0,this.name=e||``,this._radiusAxis.polar=this._angleAxis.polar=this}return e.prototype.containPoint=function(e){var t=this.pointToCoord(e);return this._radiusAxis.contain(t[0])&&this._angleAxis.contain(t[1])},e.prototype.containData=function(e){return this._radiusAxis.containData(e[0])&&this._angleAxis.containData(e[1])},e.prototype.getAxis=function(e){var t=`_`+e+`Axis`;return this[t]},e.prototype.getAxes=function(){return[this._radiusAxis,this._angleAxis]},e.prototype.getAxesByScale=function(e){var t=[],n=this._angleAxis,r=this._radiusAxis;return n.scale.type===e&&t.push(n),r.scale.type===e&&t.push(r),t},e.prototype.getAngleAxis=function(){return this._angleAxis},e.prototype.getRadiusAxis=function(){return this._radiusAxis},e.prototype.getOtherAxis=function(e){var t=this._angleAxis;return e===t?this._radiusAxis:t},e.prototype.getBaseAxis=function(){return this.getAxesByScale(`ordinal`)[0]||this.getAxesByScale(`time`)[0]||this.getAngleAxis()},e.prototype.getTooltipAxes=function(e){var t=e!=null&&e!==`auto`?this.getAxis(e):this.getBaseAxis();return{baseAxes:[t],otherAxes:[this.getOtherAxis(t)]}},e.prototype.dataToPoint=function(e,t,n){return this.coordToPoint([this._radiusAxis.dataToRadius(e[0],t),this._angleAxis.dataToAngle(e[1],t)],n)},e.prototype.pointToData=function(e,t,n){n||=[];var r=this.pointToCoord(e);return n[0]=this._radiusAxis.radiusToData(r[0],t),n[1]=this._angleAxis.angleToData(r[1],t),n},e.prototype.pointToCoord=function(e){var t=e[0]-this.cx,n=e[1]-this.cy,r=this.getAngleAxis(),i=r.getExtent(),a=Math.min(i[0],i[1]),o=Math.max(i[0],i[1]);r.inverse?a=o-360:o=a+360;var s=Math.sqrt(t*t+n*n);t/=s,n/=s;for(var c=Math.atan2(-n,t)/Math.PI*180,l=co;)c+=l*360;return[s,c]},e.prototype.coordToPoint=function(e,t){t||=[];var n=e[0],r=e[1]/180*Math.PI;return t[0]=Math.cos(r)*n+this.cx,t[1]=-Math.sin(r)*n+this.cy,t},e.prototype.getArea=function(){var e=this.getAngleAxis(),t=this.getRadiusAxis().getExtent().slice();t[0]>t[1]&&t.reverse();var n=e.getExtent(),r=Math.PI/180,i=1e-4;return{cx:this.cx,cy:this.cy,r0:t[0],r:t[1],startAngle:-n[0]*r,endAngle:-n[1]*r,clockwise:e.inverse,contain:function(e,t){var n=e-this.cx,r=t-this.cy,a=n*n+r*r,o=this.r,s=this.r0;return o!==s&&a-i<=o*o&&a+i>=s*s},x:this.cx-t[1],y:this.cy-t[1],width:t[1]*2,height:t[1]*2}},e.prototype.convertToPixel=function(e,t,n){return fWe(t)===this?this.dataToPoint(n):null},e.prototype.convertFromPixel=function(e,t,n){return fWe(t)===this?this.pointToData(n):null},e}();function fWe(e){var t=e.seriesModel,n=e.polarModel;return n&&n.coordinateSystem||t&&t.coordinateSystem}function pWe(e,t,n){var r=t.get(`center`),i=rH(t,n).refContainer;e.cx=bF(r[0],i.width)+i.x,e.cy=bF(r[1],i.height)+i.y;var a=e.getRadiusAxis(),o=Math.min(i.width,i.height)/2,s=t.get(`radius`);s==null?s=[0,`100%`]:mA(s)||(s=[0,s]);var c=[bF(s[0],o),bF(s[1],o)];a.inverse?a.setExtent(c[1],c[0]):a.setExtent(c[0],c[1])}function mWe(e,t){var n=this,r=n.getAngleAxis(),i=n.getRadiusAxis();if(UJ(r,1),UJ(i,1),YJ(r),YJ(i),r.type===`category`&&!r.onBand){var a=r.getExtent(),o=360/r.scale.count();r.inverse?a[1]+=o:a[1]-=o,r.setExtent(a[0],a[1])}}function hWe(e){return e.mainType===`angleAxis`}function gWe(e,t){if(e.type=pJ(t),e.scale=mJ(t,e.type,!1),e.onBand=CJ(e.scale,t),e.inverse=t.get(`inverse`),hWe(t)){e.inverse=e.inverse!==t.get(`clockwise`);var n=t.get(`startAngle`),r=t.get(`endAngle`)??n+(e.inverse?-360:360);e.setExtent(n,r)}t.axis=e,e.model=t}var _We={dimensions:uWe,create:function(e,t){var n=[];return e.eachComponent(aWe,function(e,r){var i=new dWe(r+``);i.update=mWe;var a=i.getRadiusAxis(),o=i.getAngleAxis(),s=e.findAxisModel(`radiusAxis`),c=e.findAxisModel(`angleAxis`);gWe(a,s),gWe(o,c),pWe(i,e,t),n.push(i),e.coordinateSystem=i,i.model=e}),e.eachSeries(function(e){if(e.get(`coordinateSystem`)===`polar`){var t=e.coordinateSystem=e.getReferringComponents(aWe,iI).models[0].coordinateSystem;t&&(PJ(t.getRadiusAxis(),e,m8),PJ(t.getAngleAxis(),e,m8))}}),n}},vWe=[`axisLine`,`axisLabel`,`axisTick`,`minorTick`,`splitLine`,`minorSplitLine`,`splitArea`];function v8(e,t,n){t[1]>t[0]&&(t=t.slice().reverse());var r=e.coordToPoint([t[0],n]),i=e.coordToPoint([t[1],n]);return{x1:r[0],y1:r[1],x2:i[0],y2:i[1]}}function y8(e){return+!e.getRadiusAxis().inverse}function yWe(e){var t=e[0],n=e[e.length-1];t&&n&&Math.abs(Math.abs(t.coord-n.coord)-360)<1e-4&&e.pop()}var bWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.axisPointerClass=`PolarAxisPointer`,n}return t.prototype.render=function(e,t){if(this.group.removeAll(),e.get(`show`)){var n=e.axis,r=n.polar,i=r.getRadiusAxis().getExtent(),a=n.getTicksCoords({breakTicks:`none`}),o=n.getMinorTicksCoords(),s=[];Q(n.getViewLabels(),function(e){if(!e.tick.offInterval){e=Qk(e);var t=n.scale;e.coord=n.dataToCoord(SJ(t,e.tick)),s.push(e)}}),yWe(s),yWe(a),Q(vWe,function(t){e.get([t,`show`])&&(!n.scale.isBlank()||t===`axisLine`)&&xWe[t](this.group,e,r,a,o,i,s)},this)}},t.type=`angleAxis`,t}(X$),xWe={axisLine:function(e,t,n,r,i,a){var o=t.getModel([`axisLine`,`lineStyle`]),s=n.getAngleAxis(),c=Math.PI/180,l=s.getExtent(),u=y8(n),d=+!u,f,p=Math.abs(l[1]-l[0])===360?`Circle`:`Arc`;f=a[d]===0?new kz[p]({shape:{cx:n.cx,cy:n.cy,r:a[u],startAngle:-l[0]*c,endAngle:-l[1]*c,clockwise:s.inverse},style:o.getLineStyle(),z2:1,silent:!0}):new ZR({shape:{cx:n.cx,cy:n.cy,r:a[u],r0:a[d]},style:o.getLineStyle(),z2:1,silent:!0}),f.style.fill=null,e.add(f)},axisTick:function(e,t,n,r,i,a){var o=t.getModel(`axisTick`),s=(o.get(`inside`)?-1:1)*o.get(`length`),c=a[y8(n)],l=sA(r,function(e){return new tz({shape:v8(n,[c,c+s],e.coord)})});e.add(Bz(l,{style:nA(o.getModel(`lineStyle`).getLineStyle(),{stroke:t.get([`axisLine`,`lineStyle`,`color`])})}))},minorTick:function(e,t,n,r,i,a){if(i.length){for(var o=t.getModel(`axisTick`),s=t.getModel(`minorTick`),c=(o.get(`inside`)?-1:1)*s.get(`length`),l=a[y8(n)],u=[],d=0;dm?`left`:`right`,_=Math.abs(p[1]-h)/f<.3?`middle`:p[1]>h?`top`:`bottom`;if(s&&s[d]){var v=s[d];yA(v)&&v.textStyle&&(o=new zB(v.textStyle,c,c.ecModel))}var y=new AL({silent:bQ.isLabelSilent(t),style:wB(o,{x:p[0],y:p[1],fill:o.getTextColor()||t.get([`axisLine`,`lineStyle`,`color`]),text:r.formattedLabel,align:g,verticalAlign:_})});if(e.add(y),iB({el:y,componentModel:t,itemName:r.formattedLabel,formatterParamsExtra:{isTruncated:function(){return y.isTruncated},value:r.rawLabel,tickIndex:i}}),u){var b=bQ.makeAxisEventDataBase(t);b.targetType=`axisLabel`,b.value=r.rawLabel,ML(y).eventData=b}},this)},splitLine:function(e,t,n,r,i,a){var o=t.getModel(`splitLine`).getModel(`lineStyle`),s=o.get(`color`),c=0;s=s instanceof Array?s:[s];for(var l=[],u=0;u=0?`p`:`n`,T=y;_&&(r[a][C]||(r[a][C]={p:y,n:y}),T=r[a][C][w]);var E=void 0,D=void 0,O=void 0,k=void 0;if(u.dim===`radius`){var A=u.dataToCoord(S)-y,j=e.dataToCoord(C);dF(A)=k})}}function jWe(e,t){var n=NQ(t,m8),r=yY(e,{fromStat:{key:n},min:1}).w,i=r,a=0,o=`20%`,s=`30%`,c={};kJ(e,n,function(e){var t=DWe(e);c[t]||a++,c[t]=c[t]||{width:0,maxWidth:0};var n=bF(e.get(`barWidth`),r),l=bF(e.get(`barMaxWidth`),r),u=e.get(`barGap`),d=e.get(`barCategoryGap`);n&&!c[t].width&&(n=lF(i,n),c[t].width=n,i-=n),l&&(c[t].maxWidth=l),u!=null&&(s=u),d!=null&&(o=d)});var l={},u=bF(o,r),d=bF(s,1),f=(i-u)/(a+(a-1)*d);f=uF(f,0),Q(c,function(e,t){var n=e.maxWidth;n&&n=t.y&&e[1]<=t.y+t.height:n.contain(n.toLocalCoord(e[1]))&&e[0]>=t.y&&e[0]<=t.y+t.height},e.prototype.pointToData=function(e,t,n){n||=[];var r=this.getAxis();return n[0]=r.coordToData(r.toLocalCoord(e[r.orient===`horizontal`?0:1])),n},e.prototype.dataToPoint=function(e,t,n){var r=this.getAxis(),i=this.getRect();n||=[];var a=r.orient===`horizontal`?0:1;return e instanceof Array&&(e=e[0]),n[a]=r.toGlobalCoord(r.dataToCoord(+e)),n[1-a]=a===0?i.y+i.height/2:i.x+i.width/2,n},e.prototype.convertToPixel=function(e,t,n){return UWe(t)===this?this.dataToPoint(n):null},e.prototype.convertFromPixel=function(e,t,n){return UWe(t)===this?this.pointToData(n):null},e}();function UWe(e){var t=e.seriesModel,n=e.singleAxisModel;return n&&n.coordinateSystem||t&&t.coordinateSystem}function WWe(e,t){var n=[];return e.eachComponent(a1,function(r,i){var a=new HWe(r,e,t);a.name=`single_`+i,a.resize(r,t),r.coordinateSystem=a,n.push(a)}),e.eachSeries(function(e){if(e.get(`coordinateSystem`)===`singleAxis`){var t=e.getReferringComponents(a1,iI).models[0],n=e.coordinateSystem=t&&t.coordinateSystem;n&&PJ(n.getAxis(),e,i1)}}),n}var GWe={create:WWe,dimensions:VWe},KWe=[`x`,`y`],qWe=[`width`,`height`],JWe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.makeElOption=function(e,t,n,r,i){var a=n.axis,o=a.coordinateSystem,s=x8(a),c=S8(o,s),l=S8(o,1-s),u=o.dataToPoint(t)[0],d=r.get(`type`);if(d&&d!==`none`){var f=i8(r),p=YWe[d](a,u,c,l,r.get(`seriesDataIndices`),r.ecModel);p.style=f,e.graphicKey=p.type,e.pointer=p}OUe(t,e,b8(n),n,r,i)},t.prototype.getHandleTransform=function(e,t,n){var r=b8(t,{labelInside:!1});r.labelMargin=n.get([`handle`,`margin`]);var i=a8(t.axis,e,r);return{x:i[0],y:i[1],rotation:r.rotation+(r.labelDirection<0?Math.PI:0)}},t.prototype.updateHandleTransform=function(e,t,n,r){var i=n.axis,a=i.coordinateSystem,o=x8(i),s=S8(a,o),c=[e.x,e.y];c[o]+=t[o],c[o]=Math.min(s[1],c[o]),c[o]=Math.max(s[0],c[o]);var l=S8(a,1-o),u=(l[1]+l[0])/2,d=[u,u];return d[o]=c[o],{x:c[0],y:c[1],rotation:e.rotation,cursorPoint:d,tooltipOption:{verticalAlign:`middle`}}},t}(n8),YWe={line:function(e,t,n,r){return{type:`Line`,subPixelOptimize:!0,shape:o8([t,r[0]],[t,r[1]],x8(e))}},shadow:function(e,t,n,r,i,a){var o=s8(e,i,a),s=r[1]-r[0],c=c8(t,n,o),l=c[0],u=c[1];return{type:`Rect`,shape:kUe([l,r[0]],[u-l,s],x8(e))}}};function x8(e){return+!e.isHorizontal()}function S8(e,t){var n=e.getRect();return[n[KWe[t]],n[KWe[t]]+n[qWe[t]]]}var XWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`single`,t}(pW);function ZWe(e){tq(p8),X$.registerAxisPointerClass(`SingleAxisPointer`,JWe),e.registerComponentView(XWe),e.registerComponentView(RWe),e.registerComponentModel(o1),j$(e,`single`,o1,o1.defaultOption),e.registerCoordinateSystem(`single`,GWe)}var QWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t,n,r){var i=sH(t);e.prototype.init.apply(this,arguments),$We(t,i)},t.prototype.mergeOption=function(t){e.prototype.mergeOption.apply(this,arguments),$We(this.option,t)},t.prototype.getCellSize=function(){return this.option.cellSize},t.type=`calendar`,t.layoutMode=`box`,t.defaultOption={z:2,left:80,top:60,cellSize:20,orient:`horizontal`,splitLine:{show:!0,lineStyle:{color:$.color.axisLine,width:1,type:`solid`}},itemStyle:{color:$.color.neutral00,borderWidth:1,borderColor:$.color.neutral10},dayLabel:{show:!0,firstDay:0,position:`start`,margin:$.size.s,color:$.color.secondary},monthLabel:{show:!0,position:`start`,margin:$.size.s,align:`center`,formatter:null,color:$.color.secondary},yearLabel:{show:!0,position:null,margin:$.size.xl,formatter:null,color:$.color.quaternary,fontFamily:`sans-serif`,fontWeight:`bolder`,fontSize:20}},t}(lH);function $We(e,t){var n=e.cellSize,r=mA(n)?n:e.cellSize=[n,n];r.length===1&&(r[1]=r[0]),oH(e,t,{type:`box`,ignoreSize:sA([0,1],function(e){return kDe(t,e)&&(r[e]=`auto`),r[e]!=null&&r[e]!==`auto`})})}var eGe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r=this.group;r.removeAll();var i=e.coordinateSystem,a=i.getRangeInfo(),o=i.getOrient(),s=t.getLocaleModel();this._renderDayRect(e,a,r),this._renderLines(e,a,o,r),this._renderYearText(e,a,o,r),this._renderMonthText(e,s,o,r),this._renderWeekText(e,s,a,o,r)},t.prototype._renderDayRect=function(e,t,n){for(var r=e.coordinateSystem,i=e.getModel(`itemStyle`).getItemStyle(),a=r.getCellWidth(),o=r.getCellHeight(),s=t.start.time;s<=t.end.time;s=r.getNextNDay(s,1).time){var c=r.dataToCalendarLayout([s],!1).tl,l=new OL({shape:{x:c[0],y:c[1],width:a,height:o},cursor:`default`,style:i});n.add(l)}},t.prototype._renderLines=function(e,t,n,r){var i=this,a=e.coordinateSystem,o=e.getModel([`splitLine`,`lineStyle`]).getLineStyle(),s=e.get([`splitLine`,`show`]),c=o.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var l=t.start,u=0;l.time<=t.end.time;u++){f(l.formatedDate),u===0&&(l=a.getDateInfo(t.start.y+`-`+t.start.m));var d=l.date;d.setMonth(d.getMonth()+1),l=a.getDateInfo(d)}f(a.getNextNDay(t.end.time,1).formatedDate);function f(t){i._firstDayOfMonth.push(a.getDateInfo(t)),i._firstDayPoints.push(a.dataToCalendarLayout([t],!1).tl);var c=i._getLinePointsOfOneWeek(e,t,n);i._tlpoints.push(c[0]),i._blpoints.push(c[c.length-1]),s&&i._drawSplitline(c,o,r)}s&&this._drawSplitline(i._getEdgesPoints(i._tlpoints,c,n),o,r),s&&this._drawSplitline(i._getEdgesPoints(i._blpoints,c,n),o,r)},t.prototype._getEdgesPoints=function(e,t,n){var r=[e[0].slice(),e[e.length-1].slice()],i=n===`horizontal`?0:1;return r[0][i]=r[0][i]-t/2,r[1][i]=r[1][i]+t/2,r},t.prototype._drawSplitline=function(e,t,n){var r=new ez({z2:20,shape:{points:e},style:t});n.add(r)},t.prototype._getLinePointsOfOneWeek=function(e,t,n){for(var r=e.coordinateSystem,i=r.getDateInfo(t),a=[],o=0;o<7;o++){var s=r.getNextNDay(i.time,o),c=r.dataToCalendarLayout([s.time],!1);a[2*s.day]=c.tl,a[2*s.day+1]=c[n===`horizontal`?`bl`:`tr`]}return a},t.prototype._formatterLabel=function(e,t){return gA(e)&&e?FV(e,t):hA(e)?e(t):t.nameMap},t.prototype._yearTextPositionControl=function(e,t,n,r,i){var a=t[0],o=t[1],s=[`center`,`bottom`];r===`bottom`?(o+=i,s=[`center`,`top`]):r===`left`?a-=i:r===`right`?(a+=i,s=[`center`,`top`]):o-=i;var c=0;return(r===`left`||r===`right`)&&(c=Math.PI/2),{rotation:c,x:a,y:o,style:{align:s[0],verticalAlign:s[1]}}},t.prototype._renderYearText=function(e,t,n,r){var i=e.getModel(`yearLabel`);if(i.get(`show`)){var a=i.get(`margin`),o=i.get(`position`);o||=n===`horizontal`?`left`:`top`;var s=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],c=(s[0][0]+s[1][0])/2,l=(s[0][1]+s[1][1])/2,u=n===`horizontal`?0:1,d={top:[c,s[u][1]],bottom:[c,s[1-u][1]],left:[s[1-u][0],l],right:[s[u][0],l]},f=t.start.y;+t.end.y>+t.start.y&&(f=f+`-`+t.end.y);var p=i.get(`formatter`),m={start:t.start.y,end:t.end.y,nameMap:f},h=new AL({z2:30,style:wB(i,{text:this._formatterLabel(p,m)}),silent:i.get(`silent`)});h.attr(this._yearTextPositionControl(h,d[o],n,o,a)),r.add(h)}},t.prototype._monthTextPositionControl=function(e,t,n,r,i){var a=`left`,o=`top`,s=e[0],c=e[1];return n===`horizontal`?(c+=i,t&&(a=`center`),r===`start`&&(o=`bottom`)):(s+=i,t&&(o=`middle`),r===`start`&&(a=`right`)),{x:s,y:c,align:a,verticalAlign:o}},t.prototype._renderMonthText=function(e,t,n,r){var i=e.getModel(`monthLabel`);if(i.get(`show`)){var a=i.get(`nameMap`),o=i.get(`margin`),s=i.get(`position`),c=i.get(`align`),l=[this._tlpoints,this._blpoints];(!a||gA(a))&&(a&&(t=YB(a)||t),a=t.get([`time`,`monthAbbr`])||[]);var u=s===`start`?0:1,d=n===`horizontal`?0:1;o=s===`start`?-o:o;for(var f=c===`center`,p=i.get(`silent`),m=0;m=i.start.time&&r.timeo.end.time&&t.reverse(),t},e.prototype._getRangeInfo=function(e){var t=[this.getDateInfo(e[0]),this.getDateInfo(e[1])],n;t[0].time>t[1].time&&(n=!0,t.reverse());var r=Math.floor(t[1].time/C8)-Math.floor(t[0].time/C8)+1,i=new Date(t[0].time),a=i.getDate(),o=t[1].date.getDate();i.setDate(a+r-1);var s=i.getDate();if(s!==o)for(var c=i.getTime()-t[1].time>0?1:-1;(s=i.getDate())!==o&&(i.getTime()-t[1].time)*c>0;)r-=c,i.setDate(s-c);var l=Math.floor((r+t[0].day+6)/7),u=n?-l+1:l-1;return n&&t.reverse(),{range:[t[0].formatedDate,t[1].formatedDate],start:t[0],end:t[1],allDay:r,weeks:l,nthWeek:u,fweek:t[0].day,lweek:t[1].day}},e.prototype._getDateByWeeksAndDay=function(e,t,n){var r=this._getRangeInfo(n);if(e>r.weeks||e===0&&tr.lweek)return null;var i=(e-1)*7-r.fweek+t,a=new Date(r.start.time);return a.setDate(+r.start.d+i),this.getDateInfo(a)},e.create=function(t,n){var r=[];return t.eachComponent(`calendar`,function(i){var a=new e(i,t,n);r.push(a),i.coordinateSystem=a}),t.eachComponent(function(e,t){GV({targetModel:t,coordSysType:`calendar`,coordSysProvider:KV})}),r},e.dimensions=[`time`,`value`],e}();function w8(e){var t=e.calendarModel,n=e.seriesModel;return t?t.coordinateSystem:n?n.coordinateSystem:null}function nGe(e){e.registerComponentModel(QWe),e.registerComponentView(eGe),e.registerCoordinateSystem(`calendar`,tGe)}var T8={level:1,leaf:2,nonLeaf:3},E8={none:0,all:1,body:2,corner:3};function D8(e,t,n){var r=t[jz[n]].getCell(e);return!r&&vA(e)&&e<0&&(r=t[jz[1-n]].getUnitLayoutInfo(n,Math.round(e))),r}function rGe(e){var t=e||[];return t[0]=t[0]||[],t[1]=t[1]||[],t[0][0]=t[0][1]=t[1][0]=t[1][1]=NaN,t}function iGe(e,t,n,r,i){aGe(e[0],t,i,n,r,0),aGe(e[1],t,i,n,r,1)}function aGe(e,t,n,r,i,a){e[0]=1/0,e[1]=-1/0;var o=r[a],s=mA(o)?o:[o],c=s.length,l=!!n;if(c>=1?(oGe(e,t,s,l,i,a,0),c>1&&oGe(e,t,s,l,i,a,c-1)):e[0]=e[1]=NaN,l){var u=-i[jz[1-a]].getLocatorCount(a),d=i[jz[a]].getLocatorCount(a)-1;n===E8.body?u=uF(0,u):n===E8.corner&&(d=lF(-1,d)),d=t[0]&&e[0]<=t[1]}function dGe(e,t){e.id.set(t[0][0],t[1][0]),e.span.set(t[0][1]-e.id.x+1,t[1][1]-e.id.y+1)}function fGe(e,t){e[0][0]=t[0][0],e[0][1]=t[0][1],e[1][0]=t[1][0],e[1][1]=t[1][1]}function pGe(e,t,n,r){var i=D8(t[r][0],n,r),a=D8(t[r][1],n,r);e[jz[r]]=e[Mz[r]]=NaN,i&&a&&(e[jz[r]]=i.xy,e[Mz[r]]=a.xy+a.wh-i.xy)}function k8(e,t,n,r){return e[jz[t]]=n,e[jz[1-t]]=r,e}function mGe(e){return e&&(e.type===T8.leaf||e.type===T8.nonLeaf)?e:null}function A8(){return{x:NaN,y:NaN,width:NaN,height:NaN}}var hGe=function(){function e(e,t){this._cells=[],this._levels=[],this.dim=e,this.dimIdx=e===`x`?0:1,this._model=t,this._uniqueValueGen=gGe(e);var n=t.get(`data`,!0),r=t.get(`length`,!0);if(n!=null&&!mA(n)&&(n=[]),n)this._initByDimModelData(n);else if(r!=null){n=Array(r);for(var i=0;i=1,y=n[jz[r]],b=a.getLocatorCount(r)-1,x=new cI;for(o.resetLayoutIterator(x,r);x.next();)S(x.item);for(a.resetLayoutIterator(x,r);x.next();)S(x.item);function S(e){EA(e.wh)&&(e.wh=_),e.xy=y,e.id[jz[r]]===b&&!v&&(e.wh=n[jz[r]]+n[Mz[r]]-e.xy),y+=e.wh}}function PGe(e,t){for(var n=t[jz[e]].resetCellIterator();n.next();){var r=n.item;U8(r.rect,e,r.id,r.span,t),U8(r.rect,1-e,r.id,r.span,t),r.type===T8.nonLeaf&&(r.xy=r.rect[jz[e]],r.wh=r.rect[Mz[e]])}}function FGe(e,t){e.travelExistingCells(function(e){var n=e.span;if(n){var r=e.spanRect,i=e.id;U8(r,0,i,n,t),U8(r,1,i,n,t)}})}function U8(e,t,n,r,i){e[Mz[t]]=0;var a=n[jz[t]]<0?i[jz[1-t]]:i[jz[t]],o=a.getUnitLayoutInfo(t,n[jz[t]]);if(e[jz[t]]=o.xy,e[Mz[t]]=o.wh,r[jz[t]]>1){var s=a.getUnitLayoutInfo(t,n[jz[t]]+r[jz[t]]-1);e[Mz[t]]=s.xy+s.wh-o.xy}}function IGe(e,t,n){return W8(xF(e,n[Mz[t]]),n[Mz[t]])}function W8(e,t){return Math.max(Math.min(e,OA(t,1/0)),0)}function G8(e){var t=e.matrixModel,n=e.seriesModel;return t?t.coordinateSystem:n?n.coordinateSystem:null}var K8={inBody:1,inCorner:2,outside:3},q8={x:null,y:null,point:[]};function LGe(e,t,n,r,i){var a=n[jz[t]],o=n[jz[1-t]],s=a.getUnitLayoutInfo(t,a.getLocatorCount(t)-1),c=a.getUnitLayoutInfo(t,0),l=o.getUnitLayoutInfo(t,-o.getLocatorCount(t)),u=o.shouldShow()?o.getUnitLayoutInfo(t,-1):null,d=e.point[t]=r[t];if(!c&&!u){e[jz[t]]=K8.outside;return}if(i===E8.body){c?(e[jz[t]]=K8.inBody,d=lF(s.xy+s.wh,uF(c.xy,d)),e.point[t]=d):e[jz[t]]=K8.outside;return}else if(i===E8.corner){u?(e[jz[t]]=K8.inCorner,d=lF(u.xy+u.wh,uF(l.xy,d)),e.point[t]=d):e[jz[t]]=K8.outside;return}var f=c?c.xy:u?u.xy+u.wh:NaN,p=l?l.xy:f,m=s?s.xy+s.wh:f;if(dm){if(!i){e[jz[t]]=K8.outside;return}d=m}e.point[t]=d,e[jz[t]]=f<=d&&d<=m?K8.inBody:p<=d&&d<=f?K8.inCorner:K8.outside}function RGe(e,t,n,r){var i=1-n;if(e[jz[n]]!==K8.outside)for(r[jz[n]].resetCellIterator(H8);H8.next();){var a=H8.item;if(VGe(e.point[n],a.rect,n)&&VGe(e.point[i],a.rect,i)){t[n]=a.ordinal,t[i]=a.id[jz[i]];return}}}function zGe(e,t,n,r){if(e[jz[n]]!==K8.outside){for((e[jz[n]]===K8.inCorner?r[jz[1-n]]:r[jz[n]]).resetLayoutIterator(V8,n);V8.next();)if(BGe(e.point[n],V8.item)){t[n]=V8.item.id[jz[n]];return}}}function BGe(e,t){return t.xy<=e&&e<=t.xy+t.wh}function VGe(e,t,n){return t[jz[n]]<=e&&e<=t[jz[n]]+t[Mz[n]]}function HGe(e){e.registerComponentModel(xGe),e.registerComponentView(DGe),e.registerCoordinateSystem(`matrix`,MGe)}function UGe(e,t){var n=e.existing;if(t.id=e.keyInfo.id,!t.type&&n&&(t.type=n.type),t.parentId==null){var r=t.parentOption;r?t.parentId=r.id:n&&(t.parentId=n.parentId)}t.parentOption=null}function WGe(e,t){var n;return Q(t,function(t){e[t]!=null&&e[t]!==`auto`&&(n=!0)}),n}function GGe(e,t,n){var r=Z({},n),i=e[t],a=n.$action||`merge`;a===`merge`?i?($k(i,r,!0),oH(i,r,{ignoreSize:!0}),cH(n,i),J8(n,i),J8(n,i,`shape`),J8(n,i,`style`),J8(n,i,`extra`),n.clipPath=i.clipPath):e[t]=r:a===`replace`?e[t]=r:a===`remove`&&i&&(e[t]=null)}var KGe=[`transition`,`enterFrom`,`leaveTo`],qGe=KGe.concat([`enterAnimation`,`updateAnimation`,`leaveAnimation`]);function J8(e,t,n){if(n&&(!e[n]&&t[n]&&(e[n]={}),e=e[n],t=t[n]),!(!e||!t))for(var r=n?KGe:qGe,i=0;i=0;c--){var l=n[c],u=ZF(l.id,null),d=u==null?null:i.get(u);if(d){var f=d.parent,h=Y8(f),g=f===r?{width:a,height:o}:{width:h.width,height:h.height},_={},v=iH(d,l,g,null,{hv:l.hv,boundingMode:l.bounding},_);if(!Y8(d).isNew&&v){for(var y=l.transition,b={},x=0;x=0)?b[S]=C:d[S]=C}Sz(d,b,e,0)}else d.attr(_)}}},t.prototype._clear=function(){var e=this,t=this._elMap;t.each(function(n){Z8(n,Y8(n).option,t,e._lastGraphicModel)}),this._elMap=zA()},t.prototype.dispose=function(){this._clear()},t.type=`graphic`,t}(pW);function X8(e){var t=new(UA(XGe,e)?XGe[e]:Iz(e))({});return Y8(t).type=e,t}function QGe(e,t,n,r){var i=X8(n);return t.add(i),r.set(e,i),Y8(i).id=e,Y8(i).isNew=!0,i}function Z8(e,t,n,r){e&&e.parent&&(e.type===`group`&&e.traverse(function(e){Z8(e,t,n,r)}),N6(e,t,r),n.removeKey(Y8(e).id))}function $Ge(e,t,n,r){e.isGroup||Q([[`cursor`,FI.prototype.cursor],[`zlevel`,r||0],[`z`,n||0],[`z2`,0]],function(n){var r=n[0];UA(t,r)?e[r]=OA(t[r],n[1]):e[r]??(e[r]=n[1])}),Q(dA(t),function(n){if(n.indexOf(`on`)===0){var r=t[n];e[n]=hA(r)?r:null}}),UA(t,`draggable`)&&(e.draggable=t.draggable),t.name!=null&&(e.name=t.name),t.id!=null&&(e.id=t.id)}function eKe(e){return e=Z({},e),Q([`id`,`parentId`,`$action`,`hv`,`bounding`,`textContent`,`clipPath`].concat(JV),function(t){delete e[t]}),e}function tKe(e,t,n){var r=ML(e).eventData;!e.silent&&!e.ignore&&!r&&(r=ML(e).eventData={componentType:`graphic`,componentIndex:t.componentIndex,name:e.name}),r&&(r.info=n.info)}function nKe(e){e.registerComponentModel(YGe),e.registerComponentView(ZGe),e.registerPreprocessor(function(e){var t=e.graphic;mA(t)?!t[0]||!t[0].elements?e.graphic=[{elements:t}]:e.graphic=[e.graphic[0]]:t&&!t.elements&&(e.graphic=[{elements:[t]}])})}var rKe=[`x`,`y`,`radius`,`angle`,`single`],iKe=tI(),aKe=[`cartesian2d`,`polar`,`singleAxis`];function oKe(e){return rA(aKe,e.get(`coordinateSystem`))>=0}function Q8(e){return e+`Axis`}function sKe(e,t){var n=zA(),r=[],i=zA();e.eachComponent({mainType:`dataZoom`,query:t},function(e){i.get(e.uid)||s(e)});var a;do a=!1,e.eachComponent(`dataZoom`,o);while(a);function o(e){!i.get(e.uid)&&c(e)&&(s(e),a=!0)}function s(e){i.set(e.uid,!0),r.push(e),l(e)}function c(e){var t=!1;return e.eachTargetAxis(function(e,r){var i=n.get(e);i&&i[r]&&(t=!0)}),t}function l(e){e.eachTargetAxis(function(e,t){(n.get(e)||n.set(e,[]))[t]=!0})}return r}function cKe(e){var t=e.ecModel,n={infoList:[],infoMap:zA()};return e.eachTargetAxis(function(e,r){var i=t.getComponent(Q8(e),r);if(i){var a=i.getCoordSysModel();if(a){var o=a.uid,s=n.infoMap.get(o);s||(s={model:a,axisModels:[]},n.infoList.push(s),n.infoMap.set(o,s)),s.axisModels.push(i)}}}),n}function lKe(e){var t=iKe(nG(e));return t.axisProxyMap||=zA()}function $8(e){if(e)return lKe(e.ecModel).get(e.uid)}function uKe(e,t){lKe(e.ecModel).set(e.uid,t)}function dKe(e,t){var n=t.getAxisModel().axis.__alignTo;return n&&e.getAxisProxy(n.dim,n.model.componentIndex)?$8(n.model):null}var e5=function(){function e(){this.indexList=[],this.indexMap=[]}return e.prototype.add=function(e){this.indexMap[e]||(this.indexList.push(e),this.indexMap[e]=!0)},e}(),t5=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n._autoThrottle=!0,n._noTarget=!0,n._rangePropMode=[`percent`,`percent`],n}return t.prototype.init=function(e,t,n){var r=fKe(e);this.settledOption=r,this.mergeDefaultAndTheme(e,n),this._doInit(r)},t.prototype.mergeOption=function(e){var t=fKe(e);$k(this.option,e,!0),$k(this.settledOption,t,!0),this._doInit(t)},t.prototype._doInit=function(e){var t=this.option;this._setDefaultThrottle(e),this._updateRangeUse(e);var n=this.settledOption;Q([[`start`,`startValue`],[`end`,`endValue`]],function(e,r){this._rangePropMode[r]===`value`&&(t[e[0]]=n[e[0]]=null)},this),this._resetTarget()},t.prototype._resetTarget=function(){var e=this.get(`orient`,!0),t=this._targetAxisInfoMap=zA();this._fillSpecifiedTargetAxis(t)?this._orient=e||this._makeAutoOrientByTargetAxis():(this._orient=e||`horizontal`,this._fillAutoTargetAxisByOrient(t,this._orient)),this._noTarget=!0,t.each(function(e){e.indexList.length&&(this._noTarget=!1)},this)},t.prototype._fillSpecifiedTargetAxis=function(e){var t=!1;return Q(rKe,function(n){var r=this.getReferringComponents(Q8(n),awe);if(r.specified){t=!0;var i=new e5;Q(r.models,function(e){i.add(e.componentIndex)}),e.set(n,i)}},this),t},t.prototype._fillAutoTargetAxisByOrient=function(e,t){var n=this.ecModel,r=!0;if(r){var i=t===`vertical`?`y`:`x`,a=n.findComponents({mainType:i+`Axis`});o(a,i)}if(r){var a=n.findComponents({mainType:`singleAxis`,filter:function(e){return e.get(`orient`,!0)===t}});o(a,`single`)}function o(t,n){var i=t[0];if(i){var a=new e5;if(a.add(i.componentIndex),e.set(n,a),r=!1,n===`x`||n===`y`){var o=i.getReferringComponents(`grid`,iI).models[0];o&&Q(t,function(e){i.componentIndex!==e.componentIndex&&o===e.getReferringComponents(`grid`,iI).models[0]&&a.add(e.componentIndex)})}}}r&&Q(rKe,function(t){if(r){var i=n.findComponents({mainType:Q8(t),filter:function(e){return e.get(`type`,!0)===`category`}});if(i[0]){var a=new e5;a.add(i[0].componentIndex),e.set(t,a),r=!1}}},this)},t.prototype._makeAutoOrientByTargetAxis=function(){var e;return this.eachTargetAxis(function(t){!e&&(e=t)},this),e===`y`?`vertical`:`horizontal`},t.prototype._setDefaultThrottle=function(e){if(e.hasOwnProperty(`throttle`)&&(this._autoThrottle=!1),this._autoThrottle){var t=this.ecModel.option;this.option.throttle=t.animation&&t.animationDurationUpdate>0?100:20}},t.prototype._updateRangeUse=function(e){var t=this._rangePropMode,n=this.get(`rangeMode`);Q([[`start`,`startValue`],[`end`,`endValue`]],function(r,i){var a=e[r[0]]!=null,o=e[r[1]]!=null;a&&!o?t[i]=`percent`:!a&&o?t[i]=`value`:n?t[i]=n[i]:a&&(t[i]=`percent`)})},t.prototype.noTarget=function(){return this._noTarget},t.prototype.getFirstTargetAxisModel=function(){var e;return this.eachTargetAxis(function(t,n){e??=this.ecModel.getComponent(Q8(t),n)},this),e},t.prototype.eachTargetAxis=function(e,t){this._targetAxisInfoMap.each(function(n,r){Q(n.indexList,function(n){e.call(t,r,n)})})},t.prototype.getAxisProxy=function(e,t){return $8(this.getAxisModel(e,t))},t.prototype.getAxisModel=function(e,t){var n=this._targetAxisInfoMap.get(e);if(n&&n.indexMap[t])return this.ecModel.getComponent(Q8(e),t)},t.prototype.setRawRange=function(e){var t=this.option,n=this.settledOption;Q([[`start`,`startValue`],[`end`,`endValue`]],function(r){(e[r[0]]!=null||e[r[1]]!=null)&&(t[r[0]]=n[r[0]]=e[r[0]],t[r[1]]=n[r[1]]=e[r[1]])},this),this._updateRangeUse(e)},t.prototype.setCalculatedRange=function(e){var t=this.option;Q([`start`,`startValue`,`end`,`endValue`],function(n){t[n]=e[n]})},t.prototype.getPercentRange=function(){var e=this.findRepresentativeAxisProxy();if(e)return e.getWindow().percent},t.prototype.getValueRange=function(e,t){if(e==null&&t==null){var n=this.findRepresentativeAxisProxy();if(n)return n.getWindow().value}else return this.getAxisProxy(e,t).getWindow().value},t.prototype.findRepresentativeAxisProxy=function(e){if(e)return $8(e);for(var t,n=this._targetAxisInfoMap.keys(),r=0;ra[1];if(u&&!d&&!f)return!0;u&&(i=!0),d&&(t=!0),f&&(n=!0)}return i&&t&&n})}else Q(r,function(n){if(i===`empty`)e.setData(t=t.map(n,function(e){return o(e)?e:NaN}));else{var r={};r[n]=a,t.selectRange(r)}});Q(r,function(e){t.setApproximateExtent(a,e)})}});function o(e){return e>=a[0]&&e<=a[1]}},e.prototype._updateMinMaxSpan=function(){var e=this._minMaxSpan={},t=this._dataZoomModel,n=this._extent;Q([`min`,`max`],function(r){var i=t.get(r+`Span`),a=t.get(r+`ValueSpan`);a!=null&&(a=this.getAxisModel().axis.scale.parse(a)),a==null?i!=null&&(a=yF(i,[0,100],n,!0)-n[0]):i=yF(n[0]+a,n,[0,100],!0),e[r+`Span`]=i,e[r+`ValueSpan`]=a},this)},e}(),gKe={dirtyOnOverallProgress:!0,getTargetSeries:function(e){function t(t){e.eachComponent(`dataZoom`,function(n){n.eachTargetAxis(function(r,i){t(r,i,e.getComponent(Q8(r),i),n)})})}var n=[];t(function(t,r,i,a){if(!$8(i)){var o=new hKe(t,r,a,e);n.push(o),uKe(i,o)}});var r=zA();return Q(n,function(e){Q(e.getTargetSeriesModels(),function(e){r.set(e.uid,e)})}),r},overallReset:function(e,t){e.eachComponent(`dataZoom`,function(e){var n=[];e.eachTargetAxis(function(t,r){var i=e.getAxisProxy(t,r),a=dKe(e,i);a?n.push([i,a]):i.reset(e,null)}),Q(n,function(t){t[0].reset(e,t[1].getWindow().percentInverted)}),e.eachTargetAxis(function(n,r){e.getAxisProxy(n,r).filterData(e,t)})}),e.eachComponent(`dataZoom`,function(e){var t=e.findRepresentativeAxisProxy();if(t){var n=t.getWindow(),r=n.percent,i=n.value;e.setCalculatedRange({start:r[0],end:r[1],startValue:i[0],endValue:i[1]})}})}};function _Ke(e){e.registerAction(`dataZoom`,function(e,t){Q(sKe(t,e),function(t){t.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})})})}var vKe=hI();function r5(e){vKe(e,function(){e.registerProcessor(e.PRIORITY.PROCESSOR.FILTER,gKe),_Ke(e),e.registerSubTypeDefaulter(`dataZoom`,function(){return`slider`})})}function yKe(e){e.registerComponentModel(pKe),e.registerComponentView(mKe),r5(e)}var i5=function(){function e(){}return e}(),bKe={};function a5(e,t){bKe[e]=t}function xKe(e){return bKe[e]}var SKe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t,n,r){var i=r.getTheme().get(`toolbox`),a=i?i.feature:null;a&&(this._themeFeatureOption=Z({},a),i.feature={}),e.prototype.init.call(this,t,n,r),a&&(i.feature=a)},t.prototype.optionUpdated=function(){Q(this.option.feature,function(e,t){var n=this._themeFeatureOption,r=xKe(t);r&&(r.getDefaultOption&&(r.defaultOption=r.getDefaultOption(this.ecModel)),n&&n[t]&&($k(e,n[t]),n[t]=null),$k(e,r.defaultOption))},this)},t.type=`toolbox`,t.layoutMode={type:`box`,ignoreSize:!0},t.defaultOption={show:!0,z:6,orient:`horizontal`,left:`right`,top:`top`,backgroundColor:`transparent`,borderColor:$.color.border,borderRadius:0,borderWidth:0,padding:$.size.m,itemSize:15,itemGap:$.size.s,showTitle:!0,iconStyle:{borderColor:$.color.accent50,color:`none`},emphasis:{iconStyle:{borderColor:$.color.accent70}},tooltip:{show:!1,position:`bottom`}},t}(lH);function CKe(e,t){var n=AV(t.get(`padding`)),r=t.getItemStyle([`color`,`opacity`]);return r.fill=t.get(`backgroundColor`),new OL({shape:{x:e.x-n[3],y:e.y-n[0],width:e.width+n[1]+n[3],height:e.height+n[0]+n[2],r:t.get(`borderRadius`)},style:r,silent:!0,z2:-1})}var wKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.render=function(e,t,n,r){var i=this.group;if(i.removeAll(),!e.get(`show`))return;var a=+e.get(`itemSize`),o=e.get(`orient`)===`vertical`,s=e.get(`feature`)||{},c=this._features||=zA(),l=[];Q(s,function(e,t){l.push(t)}),new iq(this._featureNames||[],l).add(u).update(u).remove(pA(u,null)).execute(),this._featureNames=lA(l,function(e){return c.hasKey(e)});function u(i,a){var o=i!=null&&a==null,u=i!=null&&a!=null,f=i==null,p=o||u?l[i]:l[a],m=s[p],h=o||u?new zB(m,e,t):null,g=h&&h.get(`show`),_;if(o){if(!g)return;if(TKe(p))_={onclick:h.option.onclick,featureName:p};else{var v=xKe(p);if(!v)return;_=new v}c.set(p,_)}else _=c.get(p);if(f||!g){EKe(_)&&_.dispose&&_.dispose(t,n),c.removeKey(p);return}r&&r.newTitle!=null&&r.featureName===p&&(m.title=r.newTitle),o&&(_.uid=BB(`toolbox-feature`)),_.model=h,_.ecModel=t,_.api=n,d(h,_,p),h.setIconStatus=function(e,t){var n=this.option,r=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[e]=t,r[e]&&(t===`emphasis`?eR:tR)(r[e])},EKe(_)&&_.render&&_.render(h,t,n,r)}function d(r,s,c){var l=r.getModel(`iconStyle`),u=r.getModel([`emphasis`,`iconStyle`]),d=s instanceof i5&&s.getIcons?s.getIcons():r.get(`icon`),f=r.get(`title`)||{},p,m;gA(d)?(p={},p[c]=d):p=d,gA(f)?(m={},m[c]=f):m=f;var h=r.iconPaths={};Q(p,function(c,d){var f=Zz(c,{},{x:-a/2,y:-a/2,width:a,height:a});f.setStyle(l.getItemStyle());var p=f.ensureState(`emphasis`);p.style=u.getItemStyle();var g=new AL({style:{text:m[d],align:u.get(`textAlign`),borderRadius:u.get(`textBorderRadius`),padding:u.get(`textPadding`),fill:null,font:AB({fontStyle:u.get(`textFontStyle`),fontFamily:u.get(`textFontFamily`),fontSize:u.get(`textFontSize`),fontWeight:u.get(`textFontWeight`)},t)},ignore:!0});f.setTextContent(g),iB({el:f,componentModel:e,itemName:d,formatterParamsExtra:{title:m[d]}}),f.__title=m[d],f.on(`mouseover`,function(){var t=u.getItemStyle(),r=o?e.get(`right`)==null&&e.get(`left`)!==`right`?`right`:`left`:e.get(`bottom`)==null&&e.get(`top`)!==`bottom`?`bottom`:`top`;g.setStyle({fill:u.get(`textFill`)||t.fill||t.stroke||$.color.neutral99,backgroundColor:u.get(`textBackgroundColor`)}),f.setTextConfig({position:u.get(`textPosition`)||r}),g.ignore=!e.get(`showTitle`),n.enterEmphasis(this)}).on(`mouseout`,function(){r.get([`iconStatus`,d])!==`emphasis`&&n.leaveEmphasis(this),g.hide()}),(r.get([`iconStatus`,d])===`emphasis`?eR:tR)(f),i.add(f),f.on(`click`,fA(s.onclick,s,t,n,d)),h[d]=f})}var f=rH(e,n).refContainer,p=e.getBoxLayoutParams(),m=e.get(`padding`),h=eH(p,f,m);ZV(e.get(`orient`),i,e.get(`itemGap`),h.width,h.height),iH(i,p,f,m),i.add(CKe(i.getBoundingRect(),e)),o||i.eachChild(function(e){var t=e.__title,r=e.ensureState(`emphasis`),o=r.textConfig||={},s=e.getTextContent(),c=s&&s.ensureState(`emphasis`);if(c&&!hA(c)&&t){var l=c.style||={},u=IP(t,AL.makeFont(l)),d=e.x+i.x,f=e.y+i.y+a,p=!1;f+u.height>n.getHeight()&&(o.position=`top`,p=!0);var m=p?-5-u.height:a+10;d+u.width/2>n.getWidth()?(o.position=[`100%`,m],l.align=`right`):d-u.width/2<0&&(o.position=[0,m],l.align=`left`)}})},t.prototype.updateView=function(e,t,n,r){Q(this._features,function(e){e&&e instanceof i5&&e.updateView&&e.updateView(e.model,t,n,r)})},t.prototype.dispose=function(e,t){Q(this._features,function(n){n&&n instanceof i5&&n.dispose&&n.dispose(e,t)})},t.type=`toolbox`,t}(pW);function TKe(e){return e.indexOf(`my`)===0}function EKe(e){return e instanceof i5}var DKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.onclick=function(e,t){var n=this.model,r=n.get(`name`)||e.get(`title.0.text`)||`echarts`,i=t.getZr().painter.getType()===`svg`,a=i?`svg`:n.get(`type`,!0)||`png`,o=t.getConnectedDataURL({type:a,backgroundColor:n.get(`backgroundColor`,!0)||e.get(`backgroundColor`)||$.color.neutral00,connectedBackgroundColor:n.get(`connectedBackgroundColor`),excludeComponents:n.get(`excludeComponents`),pixelRatio:n.get(`pixelRatio`)}),s=Rk.browser;if(typeof MouseEvent==`function`&&(s.newEdge||!s.ie&&!s.edge)){var c=document.createElement(`a`);c.download=r+`.`+a,c.target=`_blank`,c.href=o;var l=new MouseEvent(`click`,{view:document.defaultView,bubbles:!0,cancelable:!1});c.dispatchEvent(l)}else if(window.navigator.msSaveOrOpenBlob||i){var u=o.split(`,`),d=u[0].indexOf(`base64`)>-1,f=i?decodeURIComponent(u[1]):u[1];d&&(f=window.atob(f));var p=r+`.`+a;if(window.navigator.msSaveOrOpenBlob){for(var m=f.length,h=new Uint8Array(m);m--;)h[m]=f.charCodeAt(m);var g=new Blob([h]);window.navigator.msSaveOrOpenBlob(g,p)}else{var _=document.createElement(`iframe`);document.body.appendChild(_);var v=_.contentWindow,y=v.document;y.open(`image/svg+xml`,`replace`),y.write(f),y.close(),v.focus(),y.execCommand(`SaveAs`,!0,p),document.body.removeChild(_)}}else{var b=n.get(`lang`),x=``,S=window.open();S.document.write(x),S.document.title=r}},t.getDefaultOption=function(e){return{show:!0,icon:`M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0`,title:e.getLocaleModel().get([`toolbox`,`saveAsImage`,`title`]),type:`png`,connectedBackgroundColor:$.color.neutral00,name:``,excludeComponents:[`toolbox`],lang:e.getLocaleModel().get([`toolbox`,`saveAsImage`,`lang`])}},t}(i5),OKe=`__ec_magicType_stack__`,kKe=[[`line`,`bar`],[`stack`]],AKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.getIcons=function(){var e=this.model,t=e.get(`icon`),n={};return Q(e.get(`type`),function(e){t[e]&&(n[e]=t[e])}),n},t.getDefaultOption=function(e){return{show:!0,type:[],icon:{line:`M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4`,bar:`M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7`,stack:`M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z`},title:e.getLocaleModel().get([`toolbox`,`magicType`,`title`]),option:{},seriesIndex:{}}},t.prototype.onclick=function(e,t,n){var r=this.model,i=r.get([`seriesIndex`,n]);if(jKe[n]){var a={series:[]};Q(kKe,function(e){rA(e,n)>=0&&Q(e,function(e){r.setIconStatus(e,`normal`)})}),r.setIconStatus(n,`emphasis`),e.eachComponent({mainType:`series`,query:i==null?null:{seriesIndex:i}},function(e){var t=e.subType,i=e.id,o=jKe[n](t,i,e,r);o&&(nA(o,e.option),a.series.push(o));var s=e.coordinateSystem;if(s&&s.type===`cartesian2d`&&(n===`line`||n===`bar`)){var c=s.getAxesByScale(`ordinal`)[0];if(c){var l=c.dim+`Axis`,u=e.getReferringComponents(l,iI).models[0].componentIndex;a[l]=a[l]||[];for(var d=0;d<=u;d++)a[l][u]=a[l][u]||{};a[l][u].boundaryGap=n===`bar`}}});var o,s=n;n===`stack`&&(o=$k({stack:r.option.title.tiled,tiled:r.option.title.stack},r.option.title),r.get([`iconStatus`,n])!==`emphasis`&&(s=`tiled`)),t.dispatchAction({type:`changeMagicType`,currentType:s,newOption:a,newTitle:o,featureName:`magicType`})}},t}(i5),jKe={line:function(e,t,n,r){if(e===`bar`)return $k({id:t,type:`line`,data:n.get(`data`),stack:n.get(`stack`),markPoint:n.get(`markPoint`),markLine:n.get(`markLine`)},r.get([`option`,`line`])||{},!0)},bar:function(e,t,n,r){if(e===`line`)return $k({id:t,type:`bar`,data:n.get(`data`),stack:n.get(`stack`),markPoint:n.get(`markPoint`),markLine:n.get(`markLine`)},r.get([`option`,`bar`])||{},!0)},stack:function(e,t,n,r){var i=n.get(`stack`)===OKe;if(e===`line`||e===`bar`)return r.setIconStatus(`stack`,i?`normal`:`emphasis`),$k({id:t,stack:i?``:OKe},r.get([`option`,`stack`])||{},!0)}};WK({type:`changeMagicType`,event:`magicTypeChanged`,update:`prepareAndUpdate`},function(e,t){t.mergeOption(e.newOption)});var o5=Array(60).join(`-`),s5=` `;function MKe(e){var t={},n=[],r=[];return e.eachRawSeries(function(e){var i=e.coordinateSystem;if(i&&(i.type===`cartesian2d`||i.type===`polar`)){var a=i.getBaseAxis();if(a.type===`category`){var o=nPe(a);t[o]||(t[o]={categoryAxis:a,valueAxis:i.getOtherAxis(a),series:[]},r.push({axisDim:a.dim,axisIndex:a.index})),t[o].series.push(e)}else n.push(e)}else n.push(e)}),{seriesGroupByCategoryAxis:t,other:n,meta:r}}function NKe(e){var t=[];return Q(e,function(e,n){var r=e.categoryAxis,i=e.valueAxis.dim,a=[` `].concat(sA(e.series,function(e){return e.name})),o=[r.model.getCategories()];Q(e.series,function(e){var t=e.getRawData();o.push(e.getRawData().mapArray(t.mapDimension(i),function(e){return e}))});for(var s=[a.join(s5)],c=0;c1||n>0&&!e.noHeader;return Q(e.blocks,function(e){var n=XU(e);n>=t&&(t=n+ +(r&&(!n||JU(e)&&!e.noHeader)))}),t}return 0}function POe(e,t,n,r){var i=t.noHeader,a=IOe(XU(t)),o=[],s=t.blocks||[];MA(!s||mA(s)),s||=[];var c=e.orderMode;if(t.sortBlocks&&c){s=s.slice();var l={valueAsc:`asc`,valueDesc:`desc`};if(UA(l,c)){var u=new kU(l[c],null);s.sort(function(e,t){return u.evaluate(e.sortParam,t.sortParam)})}else c===`seriesDesc`&&s.reverse()}Q(s,function(n,i){var s=t.valueFormatter,c=YU(n)(s?Z(Z({},e),{valueFormatter:s}):e,n,i>0?a.html:0,r);c!=null&&o.push(c)});var d=e.renderMode===`richText`?o.join(a.richText):QU(r,o.join(``),i?n:a.html);if(i)return d;var f=kV(t.header,`ordinal`,e.useUTC),p=KU(r,e.renderMode).nameStyle,m=GU(r);return e.renderMode===`richText`?$U(e,f,p)+a.richText+d:QU(r,`
`+xj(f)+`
`+d,n)}function FOe(e,t,n,r){var i=e.renderMode,a=t.noName,o=t.noValue,s=!t.markerType,c=t.name,l=e.useUTC,u=t.valueFormatter||e.valueFormatter||function(e){return e=mA(e)?e:[e],sA(e,function(e,t){return kV(e,mA(p)?p[t]:p,l)})};if(!(a&&o)){var d=s?``:e.markupStyleCreator.makeTooltipMarker(t.markerType,t.markerColor||$.color.secondary,i),f=a?``:kV(c,`ordinal`,l),p=t.valueType,m=o?[]:u(t.value,t.rawDataIndex),h=!s||!a,g=!s&&a,_=KU(r,i),v=_.nameStyle,y=_.valueStyle;return i===`richText`?(s?``:d)+(a?``:$U(e,f,v))+(o?``:zOe(e,m,h,g,y)):QU(r,(s?``:d)+(a?``:LOe(f,!s,v))+(o?``:ROe(m,h,g,y)),n)}}function ZU(e,t,n,r,i,a){if(e)return YU(e)({useUTC:i,renderMode:n,orderMode:r,markupStyleCreator:t,valueFormatter:e.valueFormatter},e,0,a)}function IOe(e){return{html:MOe[e],richText:NOe[e]}}function QU(e,t,n){var r=`
`,i=`margin: `+n+`px 0 0`,a=GU(e);return`
`+t+r+`
`}function LOe(e,t,n){var r=t?`margin-left:2px`:``;return``+xj(e)+``}function ROe(e,t,n,r){var i=t?`float:right;margin-left:`+(n?`10px`:`20px`):``;return e=mA(e)?e:[e],``+sA(e,function(e){return xj(e)}).join(`  `)+``}function $U(e,t,n){return e.markupStyleCreator.wrapRichTextStyle(t,n)}function zOe(e,t,n,r,i){var a=[i],o=r?10:20;return n&&a.push({padding:[0,0,0,o],align:`right`}),e.markupStyleCreator.wrapRichTextStyle(mA(t)?t.join(` `):t,a)}function eW(e,t){var n=e.getData().getItemVisual(t,`style`)[e.visualDrawType];return FV(n)}function tW(e,t){return e.get(`padding`)??(t===`richText`?[8,10]:10)}var nW=function(){function e(){this.richTextStyles={},this._nextStyleNameId=BF()}return e.prototype._generateStyleName=function(){return`__EC_aUTo_`+this._nextStyleNameId++},e.prototype.makeTooltipMarker=function(e,t,n){var r=n===`richText`?this._generateStyleName():null,i=PV({color:t,type:e,renderMode:n,markerId:r});return gA(i)?i:(this.richTextStyles[r]=i.style,i.content)},e.prototype.wrapRichTextStyle=function(e,t){var n={};mA(t)?Q(t,function(e){return Z(n,e)}):Z(n,t);var r=this._generateStyleName();return this.richTextStyles[r]=n,`{`+r+`|`+e+`}`},e}();function rW(e){var t=e.series,n=e.dataIndex,r=e.multipleSeries,i=t.getData(),a=i.mapDimensionsAll(`defaultedTooltip`),o=a.length,s=t.getRawValue(n),c=mA(s),l=eW(t,n),u,d,f,p;if(o>1||c&&!o){var m=BOe(s,t,n,a,l);u=m.inlineValues,d=m.inlineValueTypes,f=m.blocks,p=m.inlineValues[0]}else if(o){var h=i.getDimensionInfo(a[0]);p=u=xU(i,n,a[0]),d=h.type}else p=u=c?s[0]:s;var g=ZF(t),_=g&&t.name||``,v=i.getName(n),y=r?_:v;return qU(`section`,{header:_,noHeader:r||!g,sortParam:p,blocks:[qU(`nameValue`,{markerType:`item`,markerColor:l,name:y,noName:!NA(y),value:u,valueType:d,rawDataIndex:i.getRawIndex(n)})].concat(f||[])})}function BOe(e,t,n,r,i){var a=t.getData(),o=cA(e,function(e,t,n){var r=a.getDimensionInfo(n);return e||=r&&r.tooltip!==!1&&r.displayName!=null},!1),s=[],c=[],l=[];r.length?Q(r,function(e){u(xU(a,n,e),e)}):Q(e,u);function u(e,t){var n=a.getDimensionInfo(t);!n||n.otherDims.tooltip===!1||(o?l.push(qU(`nameValue`,{markerType:`subItem`,markerColor:i,name:n.displayName,value:e,valueType:n.type})):(s.push(e),c.push(n.type)))}return{inlineValues:s,inlineValueTypes:c,blocks:l}}var iW=eI();function aW(e,t){return e.getName(t)||e.getId(t)}var oW=`__universalTransitionEnabled`,sW=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t._selectedDataIndicesMap={},t}return t.prototype.init=function(e,t,n){this.seriesIndex=this.componentIndex,this.dataTask=wU({count:HOe,reset:UOe}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(e,n),(iW(this).sourceManager=new VU(this)).prepareSource();var r=this.getInitialData(e,n);lW(r,this),this.dataTask.context.data=r,iW(this).dataBeforeProcessed=r,cW(this),this._initSelectedMapFromData(r)},t.prototype.mergeDefaultAndTheme=function(e,t){var n=rH(this),r=n?aH(e):{},i=this.subType;sH.hasClass(i)&&(i+=`Series`),$k(e,t.getTheme().get(this.subType)),$k(e,this.getDefaultOption()),qF(e,`label`,[`show`]),this.fillDataTextStyle(e.data),n&&iH(e,r,n)},t.prototype.mergeOption=function(e,t){e=$k(this.option,e,!0),this.fillDataTextStyle(e.data);var n=rH(this);n&&iH(this.option,e,n);var r=iW(this).sourceManager;r.dirty(),r.prepareSource();var i=this.getInitialData(e,t);lW(i,this),this.dataTask.dirty(),this.dataTask.context.data=i,iW(this).dataBeforeProcessed=i,cW(this),this._initSelectedMapFromData(i)},t.prototype.fillDataTextStyle=function(e){if(e&&!xA(e))for(var t=[`show`],n=0;n=0&&u<0)&&(l=v,u=_,d=0),_===u&&(c[d++]=m))}return c.length=d,c},t.prototype.formatTooltip=function(e,t,n){return rW({series:this,dataIndex:e,multipleSeries:t})},t.prototype.isAnimationEnabled=function(){var e=this.ecModel;if(Rk.node&&!(e&&e.ssr))return!1;var t=this.getShallow(`animation`);return t&&this.getData().count()>this.getShallow(`animationThreshold`)&&(t=!1),!!t},t.prototype.restoreData=function(){this.dataTask.dirty()},t.prototype.getColorFromPalette=function(e,t,n){var r=this.ecModel,i=wH.prototype.getColorFromPalette.call(this,e,t,n);return i||=r.getColorFromPalette(e,t,n),i},t.prototype.coordDimToDataDim=function(e){return this.getRawData().mapDimensionsAll(e)},t.prototype.getProgressive=function(){return this.get(`progressive`)},t.prototype.getProgressiveThreshold=function(){return this.get(`progressiveThreshold`)},t.prototype.select=function(e,t){this._innerSelect(this.getData(t),e)},t.prototype.unselect=function(e,t){var n=this.option.selectedMap;if(n){var r=this.option.selectedMode,i=this.getData(t);if(r===`series`||n===`all`){this.option.selectedMap={},this._selectedDataIndicesMap={};return}for(var a=0;a=0&&n.push(i)}return n},t.prototype.isSelected=function(e,t){var n=this.option.selectedMap;if(!n)return!1;var r=this.getData(t);return(n===`all`||n[aW(r,e)])&&!r.getItemModel(e).get([`select`,`disabled`])},t.prototype.isUniversalTransitionEnabled=function(){if(this.__universalTransitionEnabled)return!0;var e=this.option.universalTransition;return e?e===!0?!0:e&&e.enabled:!1},t.prototype._innerSelect=function(e,t){var n,r,i=this.option,a=i.selectedMode,o=t.length;if(!(!a||!o)){if(a===`series`)i.selectedMap=`all`;else if(a===`multiple`){yA(i.selectedMap)||(i.selectedMap={});for(var s=i.selectedMap,c=0;c0&&this._innerSelect(e,t)}},t.registerClass=function(e){return sH.registerClass(e)},t.protoInitialize=function(){var e=t.prototype;e.type=`series.__base__`,e.seriesIndex=0,e.ignoreStyleOnData=!1,e.hasSymbolVisual=!1,e.defaultSymbol=`circle`,e.visualStyleAccessPath=`itemStyle`,e.visualDrawType=`fill`}(),t}(sH);aA(sW,SU),aA(sW,wH),wwe(sW,sH);function cW(e){var t=e.name;ZF(e)||(e.name=VOe(e)||t)}function VOe(e){var t=e.getRawData(),n=t.mapDimensionsAll(`seriesName`),r=[];return Q(n,function(e){var n=t.getDimensionInfo(e);n.displayName&&r.push(n.displayName)}),r.join(` `)}function HOe(e){return e.model.getRawData().count()}function UOe(e){var t=e.model;return t.setData(t.getRawData().cloneShallow()),WOe}function WOe(e,t){t.outputData&&e.end>t.outputData.count()&&t.model.getRawData().cloneShallow(t.outputData)}function lW(e,t){Q(BA(e.CHANGABLE_METHODS,e.DOWNSAMPLE_METHODS),function(n){e.wrapMethod(n,pA(GOe,t))})}function GOe(e,t){var n=uW(e);return n&&n.setOutputEnd((t||this).count()),t}function uW(e){var t=(e.ecModel||{}).scheduler,n=t&&t.getPipeline(e.uid);if(n){var r=n.currentTask;if(r){var i=r.agentStubMap;i&&(r=i.get(e.uid))}return r}}var dW=function(){function e(){this.group=new QP,this.uid=RB(`viewComponent`)}return e.prototype.init=function(e,t){},e.prototype.render=function(e,t,n,r){},e.prototype.dispose=function(e,t){},e.prototype.updateView=function(e,t,n,r){},e.prototype.updateLayout=function(e,t,n,r){},e.prototype.updateVisual=function(e,t,n,r){},e.prototype.toggleBlurSeries=function(e,t,n){},e.prototype.eachRendered=function(e){var t=this.group;t&&t.traverse(e)},e}();xI(dW),SI(dW);function fW(){var e=eI();return function(t){var n=e(t),r=t.pipelineContext,i=!!n.large,a=!!n.progressiveRender,o=n.large=!!(r&&r.large),s=n.progressiveRender=!!(r&&r.progressiveRender);return(i!==o||a!==s)&&`reset`}}var pW=eI(),KOe=fW(),mW=function(){function e(){this.group=new QP,this.uid=RB(`viewChart`),this.renderTask=wU({plan:qOe,reset:JOe}),this.renderTask.context={view:this}}return e.prototype.init=function(e,t){},e.prototype.render=function(e,t,n,r){},e.prototype.highlight=function(e,t,n,r){var i=e.getData(r&&r.dataType);i&&gW(i,r,`emphasis`)},e.prototype.downplay=function(e,t,n,r){var i=e.getData(r&&r.dataType);i&&gW(i,r,`normal`)},e.prototype.remove=function(e,t){this.group.removeAll()},e.prototype.dispose=function(e,t){},e.prototype.updateView=function(e,t,n,r){this.render(e,t,n,r)},e.prototype.updateVisual=function(e,t,n,r){this.render(e,t,n,r)},e.prototype.eachRendered=function(e){iB(this.group,e)},e.markUpdateMethod=function(e,t){pW(e).updateMethod=t},e.protoInitialize=function(){var t=e.prototype;t.type=`chart`}(),e}();function hW(e,t,n){e&&gR(e)&&(t===`emphasis`?$L:eR)(e,n)}function gW(e,t,n){var r=$F(e,t),i=t&&t.highlightKey!=null?CEe(t.highlightKey):null;r==null?e.eachItemGraphicEl(function(e){hW(e,n,i)}):Q(KF(r),function(t){hW(e.getItemGraphicEl(t),n,i)})}xI(mW,[`dispose`]),SI(mW);function qOe(e){return KOe(e.model)}function JOe(e){var t=e.model,n=e.ecModel,r=e.api,i=e.payload,a=t.pipelineContext.progressiveRender,o=e.view,s=i&&pW(i).updateMethod,c=a?`incrementalPrepareRender`:s&&o[s]?s:`render`;return c!==`render`&&o[c](t,n,r,i),YOe[c]}var YOe={incrementalPrepareRender:{progress:function(e,t){t.view.incrementalRender(e,t.model,t.ecModel,t.api,t.payload)}},render:{forceFirstProgress:!0,progress:function(e,t){t.view.render(t.model,t.ecModel,t.api,t.payload)}}},_W=`\0__throttleOriginMethod`,vW=`\0__throttleRate`,yW=`\0__throttleType`;function bW(e,t,n){var r,i=0,a=0,o=null,s,c,l,u;t||=0;function d(){a=new Date().getTime(),o=null,e.apply(c,l||[])}var f=function(){var e=[...arguments];r=new Date().getTime(),c=this,l=e;var f=u||t,p=u||n;u=null,s=r-(p?i:a)-f,clearTimeout(o),p?o=setTimeout(d,f):s>=0?d():o=setTimeout(d,-s),i=r};return f.clear=function(){o&&=(clearTimeout(o),null)},f.debounceNextCall=function(e){u=e},f}function xW(e,t,n,r){var i=e[t];if(i){var a=i[_W]||i,o=i[yW];if(i[vW]!==n||o!==r){if(n==null||!r)return e[t]=a;i=e[t]=bW(a,n,r===`debounce`),i[_W]=a,i[yW]=r,i[vW]=n}return i}}function SW(e,t){var n=e[t];n&&n[_W]&&(n.clear&&n.clear(),e[t]=n[_W])}var CW=eI(),wW={itemStyle:CI(IB,!0),lineStyle:CI(FB,!0)},XOe={lineStyle:`stroke`,itemStyle:`fill`};function TW(e,t){return e.visualStyleMapper||wW[t]||(console.warn(`Unknown style type '`+t+`'.`),wW.itemStyle)}function EW(e,t){return e.visualDrawType||XOe[t]||(console.warn(`Unknown style type '`+t+`'.`),`fill`)}var ZOe={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData(),r=e.visualStyleAccessPath||`itemStyle`,i=e.getModel(r),a=TW(e,r)(i),o=i.getShallow(`decal`);o&&(n.setVisual(`decal`,o),o.dirty=!0);var s=EW(e,r),c=a[s],l=hA(c)?c:null,u=a.fill===`auto`||a.stroke===`auto`;if(!a[s]||l||u){var d=e.getColorFromPalette(e.name,null,t.getSeriesCount());a[s]||(a[s]=d,n.setVisual(`colorFromPalette`,!0)),a.fill=a.fill===`auto`||hA(a.fill)?d:a.fill,a.stroke=a.stroke===`auto`||hA(a.stroke)?d:a.stroke}if(n.setVisual(`style`,a),n.setVisual(`drawType`,s),!t.isSeriesFiltered(e)&&l)return n.setVisual(`colorFromPalette`,!1),{dataEach:function(t,n){var r=e.getDataParams(n),i=Z({},a);i[s]=l(r),t.setItemVisual(n,`style`,i)}}}},DW=new LB,QOe={createOnAllSeries:!0,reset:function(e,t){if(!e.ignoreStyleOnData){var n=e.getData(),r=e.visualStyleAccessPath||`itemStyle`,i=TW(e,r),a=n.getVisual(`drawType`);return{dataEach:n.hasItemOption?function(e,t){var n=e.getRawDataItem(t);if(n&&n[r]){DW.option=n[r];var o=i(DW);Z(e.ensureUniqueItemVisual(t,`style`),o),DW.option.decal&&(e.setItemVisual(t,`decal`,DW.option.decal),DW.option.decal.dirty=!0),a in o&&e.setItemVisual(t,`colorFromPalette`,!1)}}:null}}}},$Oe={performRawSeries:!0,overallReset:function(e){var t=zA();e.eachSeries(function(e){if(!e.isColorBySeries()){var n=e.type+`-`+e.getColorBy();CW(e).scope=t.get(n)||t.set(n,{})}}),e.eachSeries(function(e){if(!e.isColorBySeries()){var t=e.getRawData(),n={},r=e.getData(),i=CW(e).scope,a=EW(e,e.visualStyleAccessPath||`itemStyle`);r.each(function(e){var t=r.getRawIndex(e);n[t]=e}),t.each(function(o){var s=n[o];if(r.getItemVisual(s,`colorFromPalette`)){var c=r.ensureUniqueItemVisual(s,`style`),l=t.getName(o)||o+``,u=t.count();c[a]=e.getColorFromPalette(l,i,u)}})}})}},OW=Math.PI;function eke(e,t){t||={},nA(t,{text:`loading`,textColor:$.color.primary,fontSize:12,fontWeight:`normal`,fontStyle:`normal`,fontFamily:`sans-serif`,maskColor:`rgba(255,255,255,0.8)`,showSpinner:!0,color:$.color.theme[0],spinnerRadius:10,lineWidth:5,zlevel:0});var n=new QP,r=new DL({style:{fill:t.maskColor},zlevel:t.zlevel,z:1e4});n.add(r);var i=new kL({style:{text:t.text,fill:t.textColor,fontSize:t.fontSize,fontWeight:t.fontWeight,fontStyle:t.fontStyle,fontFamily:t.fontFamily},zlevel:t.zlevel,z:10001}),a=new DL({style:{fill:`none`},textContent:i,textConfig:{position:`right`,distance:10},zlevel:t.zlevel,z:10001});n.add(a);var o;return t.showSpinner&&(o=new rz({shape:{startAngle:-OW/2,endAngle:-OW/2+.1,r:t.spinnerRadius},style:{stroke:t.color,lineCap:`round`,lineWidth:t.lineWidth},zlevel:t.zlevel,z:10001}),o.animateShape(!0).when(1e3,{endAngle:OW*3/2}).start(`circularInOut`),o.animateShape(!0).when(1e3,{startAngle:OW*3/2}).delay(300).start(`circularInOut`),n.add(o)),n.resize=function(){var n=i.getBoundingRect().width,s=t.showSpinner?t.spinnerRadius:0,c=(e.getWidth()-s*2-(t.showSpinner&&n?10:0)-n)/2-(t.showSpinner&&n?0:5+n/2)+(t.showSpinner?0:n/2)+(n?0:s),l=e.getHeight()/2;t.showSpinner&&o.setShape({cx:c,cy:l}),a.setShape({x:c-s,y:l-s,width:s*2,height:s*2}),r.setShape({x:0,y:0,width:e.getWidth(),height:e.getHeight()})},n.resize(),n}var kW=function(){function e(e,t,n,r){this._stageTaskMap=zA(),this.ecInstance=e,this.api=t,n=this._dataProcessorHandlers=n.slice(),r=this._visualHandlers=r.slice(),this._allHandlers=n.concat(r)}return e.prototype.restoreData=function(e,t){e.restoreData(t),this._stageTaskMap.each(function(e){var t=e.overallTask;t&&t.dirty()})},e.prototype.getPerformArgs=function(e,t){if(e.__pipeline){var n=this._pipelineMap.get(e.__pipeline.id),r=n.context,i=!t&&n.progressiveEnabled&&(!r||r.progressiveRender)&&e.__idxInPipeline>n.blockIndex?n.step:null,a=r&&r.modDataCount;return{step:i,modBy:a==null?null:Math.ceil(a/i),modDataCount:a}}},e.prototype.getPipeline=function(e){return this._pipelineMap.get(e)},e.prototype.updateStreamModes=function(e,t){var n=this._pipelineMap.get(e.uid);e.pipelineContext=n.context=e.__preparePipelineContext?e.__preparePipelineContext(t,n):vwe(e,t,n)},e.prototype.restorePipelines=function(e,t){var n=this,r=n._pipelineMap=zA();t.eachSeries(function(t){var i=e.painter.type===`canvas`&&t.getProgressive(),a=t.uid;r.set(a,{id:a,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:i&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),n._pipe(t,t.dataTask)})},e.prototype.prepareStageTasks=function(){var e=this._stageTaskMap,t=this.api.getModel(),n=this.api;Q(this._allHandlers,function(r){var i=e.get(r.uid)||e.set(r.uid,{});MA(!(r.reset&&r.overallReset),``),r.reset&&this._createSeriesStageTask(r,i,t,n),r.overallReset&&this._createOverallStageTask(r,i,t,n)},this)},e.prototype.prepareView=function(e,t,n,r){var i=e.renderTask,a=i.context;a.model=t,a.ecModel=n,a.api=r,i.__block=!e.incrementalPrepareRender,this._pipe(t,i)},e.prototype.performDataProcessorTasks=function(e,t){this._performStageTasks(this._dataProcessorHandlers,e,t,{block:!0})},e.prototype.performVisualTasks=function(e,t,n){this._performStageTasks(this._visualHandlers,e,t,n)},e.prototype._performStageTasks=function(e,t,n,r){r||={};var i=!1,a=this;Q(e,function(e,s){if(!(r.visualType&&r.visualType!==e.visualType)){var c=a._stageTaskMap.get(e.uid),l=c.seriesTaskMap,u=c.overallTask;if(u){var d,f=u.agentStubMap;f.each(function(e){o(r,e)&&(e.dirty(),d=!0)}),d&&u.dirty(),a.updatePayload(u,n);var p=a.getPerformArgs(u,r.block);f.each(function(e){e.perform(p)}),u.perform(p)&&(i=!0)}else l&&l.each(function(s,c){o(r,s)&&s.dirty();var l=a.getPerformArgs(s,r.block);l.skip=!e.performRawSeries&&t.isSeriesFiltered(s.context.model),a.updatePayload(s,n),s.perform(l)&&(i=!0)})}});function o(e,t){return e.setDirty&&(!e.dirtyMap||e.dirtyMap.get(t.__pipeline.id))}this.unfinished=i||this.unfinished},e.prototype.performSeriesTasks=function(e){var t;e.eachSeries(function(e){t=e.dataTask.perform()||t}),this.unfinished=t||this.unfinished},e.prototype.plan=function(){this._pipelineMap.each(function(e){var t=e.tail;do{if(t.__block){e.blockIndex=t.__idxInPipeline;break}t=t.getUpstream()}while(t)})},e.prototype.updatePayload=function(e,t){t!==`remain`&&(e.context.payload=t)},e.prototype._createSeriesStageTask=function(e,t,n,r){var i=this,a=t.seriesTaskMap,o=t.seriesTaskMap=zA(),s=e.seriesType,c=e.getTargetSeries;e.createOnAllSeries?n.eachRawSeries(l):s?n.eachRawSeriesByType(s,l):c&&c(n,r).each(l);function l(t){var s=t.uid,c=o.set(s,a&&a.get(s)||wU({plan:ake,reset:oke,count:cke}));c.context={model:t,ecModel:n,api:r,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:i},i._pipe(t,c)}},e.prototype._createOverallStageTask=function(e,t,n,r){var i=this,a=t.overallTask=t.overallTask||wU({reset:tke});a.context={ecModel:n,api:r,overallReset:e.overallReset,scheduler:i};var o=a.agentStubMap,s=a.agentStubMap=zA(),c=e.seriesType,l=e.getTargetSeries,u=e.dirtyOnOverallProgress,d=!1;MA(!e.createOnAllSeries,``),c?n.eachRawSeriesByType(c,f):l?l(n,r).each(f):Q(n.getSeries(),f);function f(e){var t=e.uid,n=s.set(t,o&&o.get(t)||(d=!0,wU({reset:nke,onDirty:ike})));n.context={model:e,dirtyOnOverallProgress:u},n.agent=a,n.__block=u,i._pipe(e,n)}d&&a.dirty()},e.prototype._pipe=function(e,t){var n=e.uid,r=this._pipelineMap.get(n);!r.head&&(r.head=t),r.tail&&r.tail.pipe(t),r.tail=t,t.__idxInPipeline=r.count++,t.__pipeline=r},e.wrapStageHandler=function(e,t){return hA(e)&&(e={overallReset:e,seriesType:lke(e)}),e.uid=RB(`stageHandler`),t&&(e.visualType=t),e},e}();function tke(e){e.overallReset(e.ecModel,e.api,e.payload)}function nke(e){return e.dirtyOnOverallProgress&&rke}function rke(){this.agent.dirty(),this.getDownstream().dirty()}function ike(){this.agent&&this.agent.dirty()}function ake(e){return e.plan?e.plan(e.model,e.ecModel,e.api,e.payload):null}function oke(e){e.useClearVisual&&e.data.clearAllVisual();var t=e.resetDefines=KF(e.reset(e.model,e.ecModel,e.api,e.payload));return t.length>1?sA(t,function(e,t){return AW(t)}):ske}var ske=AW(0);function AW(e){return function(t,n){var r=n.data,i=n.resetDefines[e];if(i&&i.dataEach)for(var a=t.start;a0&&u===i.length-l.length){var d=i.slice(0,u);d!==`data`&&(t.mainType=d,t[l.toLowerCase()]=e,s=!0)}}o.hasOwnProperty(i)&&(n[i]=e,s=!0),s||(r[i]=e)})}return{cptQuery:t,dataQuery:n,otherQuery:r}},e.prototype.filter=function(e,t){var n=this.eventInfo;if(!n)return!0;var r=n.targetEl,i=n.packedEvent,a=n.model,o=n.view;if(!a||!o)return!0;var s=t.cptQuery,c=t.dataQuery;return l(s,a,`mainType`)&&l(s,a,`subType`)&&l(s,a,`index`,`componentIndex`)&&l(s,a,`name`)&&l(s,a,`id`)&&l(c,i,`name`)&&l(c,i,`dataIndex`)&&l(c,i,`dataType`)&&(!o.filterForExposedEvent||o.filterForExposedEvent(e,t.otherQuery,r,i));function l(e,t,n,r){return e[n]==null||t[r||n]===e[n]}},e.prototype.afterTrigger=function(){this.eventInfo=null},e}(),BW=[`symbol`,`symbolSize`,`symbolRotate`,`symbolOffset`],VW=BW.concat([`symbolKeepAspect`]),dke={createOnAllSeries:!0,performRawSeries:!0,reset:function(e,t){var n=e.getData();if(e.legendIcon&&n.setVisual(`legendIcon`,e.legendIcon),!e.hasSymbolVisual)return;for(var r={},i={},a=!1,o=0;o=0&&oG(c)?c:.5,e.createRadialGradient(o,s,0,o,s,c)}function sG(e,t,n){for(var r=t.type===`radial`?Dke(e,t,n):Eke(e,t,n),i=t.colorStops,a=0;a0)?null:e===`dashed`?[4*t,2*t]:e===`dotted`?[t]:vA(e)?[e]:mA(e)?e:null}function uG(e){var t=e.style,n=t.lineDash&&t.lineWidth>0&&kke(t.lineDash,t.lineWidth),r=t.lineDashOffset;if(n){var i=t.strokeNoScale&&e.getLineScale?e.getLineScale():1;i&&i!==1&&(n=sA(n,function(e){return e/i}),r/=i)}return[n,r]}var Ake=new uL(!0);function dG(e){var t=e.stroke;return!(t==null||t===`none`||!(e.lineWidth>0))}function fG(e){return typeof e==`string`&&e!==`none`}function pG(e){var t=e.fill;return t!=null&&t!==`none`}function mG(e,t){if(t.fillOpacity!=null&&t.fillOpacity!==1){var n=e.globalAlpha;e.globalAlpha=t.fillOpacity*t.opacity,e.fill(),e.globalAlpha=n}else e.fill()}function hG(e,t){if(t.strokeOpacity!=null&&t.strokeOpacity!==1){var n=e.globalAlpha;e.globalAlpha=t.strokeOpacity*t.opacity,e.stroke(),e.globalAlpha=n}else e.stroke()}function gG(e,t,n){var r=TI(t.image,t.__image,n);if(EI(r)){var i=e.createPattern(r,t.repeat||`repeat`);if(typeof DOMMatrix==`function`&&i&&i.setTransform){var a=new DOMMatrix;a.translateSelf(t.x||0,t.y||0),a.rotateSelf(0,0,(t.rotation||0)*GA),a.scaleSelf(t.scaleX||1,t.scaleY||1),i.setTransform(a)}return i}}function jke(e,t,n,r,i){var a,o=dG(n),s=pG(n),c=n.strokePercent,l=c<1,u=!t.path;(!t.silent||l)&&u&&t.createPathProxy();var d=t.path||Ake,f=t.__dirty;if(!r){var p=n.fill,m=n.stroke,h=s&&!!p.colorStops,g=o&&!!m.colorStops,_=s&&!!p.image,v=o&&!!m.image,y=void 0,b=void 0,x=void 0,S=void 0,C=void 0;(h||g)&&(C=t.getBoundingRect()),h&&(y=f?sG(e,p,C):t.__canvasFillGradient,t.__canvasFillGradient=y),g&&(b=f?sG(e,m,C):t.__canvasStrokeGradient,t.__canvasStrokeGradient=b),_&&(x=f||!t.__canvasFillPattern?gG(e,p,t):t.__canvasFillPattern,t.__canvasFillPattern=x),v&&(S=f||!t.__canvasStrokePattern?gG(e,m,t):t.__canvasStrokePattern,t.__canvasStrokePattern=S),h?e.fillStyle=y:_&&(x?e.fillStyle=x:s=!1),g?e.strokeStyle=b:v&&(S?e.strokeStyle=S:o=!1)}var w=t.getGlobalScale();d.setScale(w[0],w[1],t.segmentIgnoreThreshold);var T,E;e.setLineDash&&n.lineDash&&(a=uG(t),T=a[0],E=a[1]);var D=!0;(u||f&4)&&(d.setDPR(e.dpr),l?d.setContext(null):(d.setContext(e),D=!1),d.reset(),t.buildPath(d,t.shape,r),d.toStatic(),t.pathUpdated()),D&&d.rebuildPath(e,l?c:1),T&&(e.setLineDash(T),e.lineDashOffset=E),r?(i.batchFill=s,i.batchStroke=o):n.strokeFirst?(o&&hG(e,n),s&&mG(e,n)):(s&&mG(e,n),o&&hG(e,n)),T&&e.setLineDash([])}function Mke(e,t,n){var r=t.__image=TI(n.image,t.__image,t,t.onload);if(!(!r||!EI(r))){var i=n.x||0,a=n.y||0,o=t.getWidth(),s=t.getHeight(),c=r.width/r.height;if(o==null&&s!=null?o=s*c:s==null&&o!=null?s=o/c:o==null&&s==null&&(o=r.width,s=r.height),n.sWidth&&n.sHeight){var l=n.sx||0,u=n.sy||0;e.drawImage(r,l,u,n.sWidth,n.sHeight,i,a,o,s)}else if(n.sx&&n.sy){var l=n.sx,u=n.sy,d=o-l,f=s-u;e.drawImage(r,l,u,d,f,i,a,o,s)}else e.drawImage(r,i,a,o,s)}}function Nke(e,t,n){var r,i=n.text;if(i!=null&&(i+=``),i){e.font=n.font||`12px sans-serif`,e.textAlign=n.textAlign,e.textBaseline=n.textBaseline;var a=void 0,o=void 0;e.setLineDash&&n.lineDash&&(r=uG(t),a=r[0],o=r[1]),a&&(e.setLineDash(a),e.lineDashOffset=o),n.strokeFirst?(dG(n)&&e.strokeText(i,n.x,n.y),pG(n)&&e.fillText(i,n.x,n.y)):(pG(n)&&e.fillText(i,n.x,n.y),dG(n)&&e.strokeText(i,n.x,n.y)),a&&e.setLineDash([])}}var _G=[`shadowBlur`,`shadowOffsetX`,`shadowOffsetY`],vG=[[`lineCap`,`butt`],[`lineJoin`,`miter`],[`miterLimit`,10]];function yG(e,t,n,r,i){var a=!1;if(!r&&(n||={},t===n))return!1;if(r||t.opacity!==n.opacity){EG(e,i),a=!0;var o=Math.max(Math.min(t.opacity,1),0);e.globalAlpha=isNaN(o)?MI.opacity:o}(r||t.blend!==n.blend)&&(a||=(EG(e,i),!0),e.globalCompositeOperation=t.blend||MI.blend);for(var s=0;s<_G.length;s++){var c=_G[s];(r||t[c]!==n[c])&&(a||=(EG(e,i),!0),e[c]=e.dpr*(t[c]||0))}return(r||t.shadowColor!==n.shadowColor)&&(a||=(EG(e,i),!0),e.shadowColor=t.shadowColor||MI.shadowColor),a}function bG(e,t,n,r,i){var a=t.style,o=r?null:n&&n.style||{};if(a===o)return!1;var s=yG(e,a,o,r,i);if((r||a.fill!==o.fill)&&(s||=(EG(e,i),!0),fG(a.fill)&&(e.fillStyle=a.fill)),(r||a.stroke!==o.stroke)&&(s||=(EG(e,i),!0),fG(a.stroke)&&(e.strokeStyle=a.stroke)),(r||a.opacity!==o.opacity)&&(s||=(EG(e,i),!0),e.globalAlpha=a.opacity==null?1:a.opacity),t.hasStroke()){var c=a.lineWidth/(a.strokeNoScale&&t.getLineScale?t.getLineScale():1);e.lineWidth!==c&&(s||=(EG(e,i),!0),e.lineWidth=c)}for(var l=0;l0&&e.unfinished);e.unfinished||this._zr.flush()}}},t.prototype.getDom=function(){return this._dom},t.prototype.getId=function(){return this.id},t.prototype.getZr=function(){return this._zr},t.prototype.isSSR=function(){return this._ssr},t.prototype.setOption=function(e,t,n){if(!this[WG]){if(this._disposed){this.id;return}var r,i,a;if(yA(t)&&(n=t.lazyUpdate,r=t.silent,i=t.replaceMerge,a=t.transition,t=t.notMerge),this[WG]=!0,bK(this),!this._model||t){var o=new KDe(this._api),s=this._theme,c=this._model=new jH;c.scheduler=this._scheduler,c.ssr=this._ssr,c.init(null,null,null,s,this._locale,o)}this._model.setOption(e,{replaceMerge:i},DK);var l={seriesTransition:a,optionChanged:!0};if(n)this[KG]={silent:r,updateParams:l},this[WG]=!1,this.getZr().wakeUp();else{try{nK(this),aK.update.call(this,null,l)}catch(e){throw this[KG]=null,this[WG]=!1,e}this._ssr||this._zr.flush(),this[KG]=null,this[WG]=!1,lK.call(this,r),uK.call(this,r)}}},t.prototype.setTheme=function(e,t){if(!this[WG]){if(this._disposed){this.id;return}var n=this._model;if(n){var r=t&&t.silent,i=null;this[KG]&&(r??=this[KG].silent,i=this[KG].updateParams,this[KG]=null),this[WG]=!0,bK(this);try{this._updateTheme(e),n.setTheme(this._theme),nK(this),aK.update.call(this,{type:`setTheme`},i)}catch(e){throw this[WG]=!1,e}this[WG]=!1,lK.call(this,r),uK.call(this,r)}}},t.prototype._updateTheme=function(e){gA(e)&&(e=kK[e]),e&&(e=Qk(e),e&&ZH(e,!0),this._theme=e)},t.prototype.getModel=function(){return this._model},t.prototype.getOption=function(){return this._model&&this._model.getOption()},t.prototype.getWidth=function(){return this._zr.getWidth()},t.prototype.getHeight=function(){return this._zr.getHeight()},t.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||Rk.hasGlobalWindow&&window.devicePixelRatio||1},t.prototype.getRenderedCanvas=function(e){return this.renderToCanvas(e)},t.prototype.renderToCanvas=function(e){return e||={},this._zr.painter.getRenderedCanvas({backgroundColor:e.backgroundColor||this._model.get(`backgroundColor`),pixelRatio:e.pixelRatio||this.getDevicePixelRatio()})},t.prototype.renderToSVGString=function(e){return e||={},this._zr.painter.renderToString({useViewBox:e.useViewBox})},t.prototype.getSvgDataURL=function(){var e=this._zr;return Q(e.storage.getDisplayList(),function(e){e.stopAnimation(null,!0)}),e.painter.toDataURL()},t.prototype.getDataURL=function(e){if(this._disposed){this.id;return}e||={};var t=e.excludeComponents,n=this._model,r=[],i=this;Q(t,function(e){n.eachComponent({mainType:e},function(e){var t=i._componentsMap[e.__viewId];t.group.ignore||(r.push(t),t.group.ignore=!0)})});var a=this._zr.painter.getType()===`svg`?this.getSvgDataURL():this.renderToCanvas(e).toDataURL(`image/`+(e&&e.type||`png`));return Q(r,function(e){e.group.ignore=!1}),a},t.prototype.getConnectedDataURL=function(e){if(this._disposed){this.id;return}var t=e.type===`svg`,n=this.group,r=Math.min,i=Math.max,a=1/0;if(MK[n]){var o=a,s=a,c=-a,l=-a,u=[],d=e&&e.pixelRatio||this.getDevicePixelRatio();Q(jK,function(a,d){if(a.group===n){var f=t?a.getZr().painter.getSvgDom().innerHTML:a.renderToCanvas(Qk(e)),p=a.getDom().getBoundingClientRect();o=r(p.left,o),s=r(p.top,s),c=i(p.right,c),l=i(p.bottom,l),u.push({dom:f,left:p.left,top:p.top})}}),o*=d,s*=d,c*=d,l*=d;var f=c-o,p=l-s,m=zk.createCanvas(),h=tF(m,{renderer:t?`svg`:`canvas`});if(h.resize({width:f,height:p}),t){var g=``;return Q(u,function(e){var t=e.left-o,n=e.top-s;g+=``+e.dom+``}),h.painter.getSvgRoot().innerHTML=g,e.connectedBackgroundColor&&h.painter.setBackgroundColor(e.connectedBackgroundColor),h.refreshImmediately(),h.painter.toDataURL()}else return e.connectedBackgroundColor&&h.add(new DL({shape:{x:0,y:0,width:f,height:p},style:{fill:e.connectedBackgroundColor}})),Q(u,function(e){var t=new CL({style:{x:e.left*d-o,y:e.top*d-s,image:e.dom}});h.add(t)}),h.refreshImmediately(),m.toDataURL(`image/`+(e&&e.type||`png`))}else return this.getDataURL(e)},t.prototype.convertToPixel=function(e,t,n){return oK(this,`convertToPixel`,e,t,n)},t.prototype.convertToLayout=function(e,t,n){return oK(this,`convertToLayout`,e,t,n)},t.prototype.convertFromPixel=function(e,t,n){return oK(this,`convertFromPixel`,e,t,n)},t.prototype.containPixel=function(e,t){if(this._disposed){this.id;return}var n=this._model,r;return Q(tI(n,e),function(e,n){n.indexOf(`Models`)>=0&&Q(e,function(e){var i=e.coordinateSystem;if(i&&i.containPoint)r||=!!i.containPoint(t);else if(n===`seriesModels`){var a=this._chartsMap[e.__viewId];a&&a.containPoint&&(r||=a.containPoint(t,e))}},this)},this),!!r},t.prototype.getVisual=function(e,t){var n=this._model,r=tI(n,e,{defaultMainType:`series`}),i=r.seriesModel.getData(),a=r.hasOwnProperty(`dataIndexInside`)?r.dataIndexInside:r.hasOwnProperty(`dataIndex`)?i.indexOfRawIndex(r.dataIndex):null;return a==null?UW(i,t):HW(i,a,t)},t.prototype.getViewOfComponentModel=function(e){return this._componentsMap[e.__viewId]},t.prototype.getViewOfSeriesModel=function(e){return this._chartsMap[e.__viewId]},t.prototype._initEvents=function(){var e=this;Q(iAe,function(t){var n=function(n){var r=e.getModel(),i=n.target,a;if(t===`globalout`?a={}:i&&qW(i,function(e){var t=jL(e);if(t&&t.dataIndex!=null){var n=t.dataModel||r.getSeriesByIndex(t.seriesIndex);return a=n&&n.getDataParams(t.dataIndex,t.dataType,i)||{},!0}else if(t.eventData)return a=Z({},t.eventData),!0},!0),a){var o=a.componentType,s=a.componentIndex;(o===`markLine`||o===`markPoint`||o===`markArea`)&&(o=`series`,s=a.seriesIndex);var c=o&&s!=null&&r.getComponent(o,s),l=c&&e[c.mainType===`series`?`_chartsMap`:`_componentsMap`][c.__viewId];a.event=n,a.type=t,e._$eventProcessor.eventInfo={targetEl:i,packedEvent:a,model:c,view:l},e.trigger(t,a)}};n.zrEventfulCallAtLast=!0,e._zr.on(t,n,e)});var t=this._messageCenter;Q(TK,function(n,r){t.on(r,function(t){e.trigger(r,t)})}),pke(t,this,this._api)},t.prototype.isDisposed=function(){return this._disposed},t.prototype.clear=function(){if(this._disposed){this.id;return}this.setOption({series:[]},!0)},t.prototype.dispose=function(){if(this._disposed){this.id;return}this._disposed=!0,this.getDom()&&swe(this.getDom(),NK,``);var e=this,t=e._api,n=e._model;Q(e._componentsViews,function(e){e.dispose(n,t)}),Q(e._chartsViews,function(e){e.dispose(n,t)}),e._zr.dispose(),e._dom=e._model=e._chartsMap=e._componentsMap=e._chartsViews=e._componentsViews=e._scheduler=e._api=e._zr=e._throttledZrFlush=e._theme=e._coordSysMgr=e._messageCenter=null,delete jK[e.id]},t.prototype.resize=function(e){if(!this[WG]){if(this._disposed){this.id;return}this._zr.resize(e);var t=this._model;if(this._loadingFX&&this._loadingFX.resize(),t){var n=t.resetOption(`media`),r=e&&e.silent;this[KG]&&(r??=this[KG].silent,n=!0,this[KG]=null),this[WG]=!0,bK(this);try{n&&nK(this),aK.update.call(this,{type:`resize`,animation:Z({duration:0},e&&e.animation)})}catch(e){throw this[WG]=!1,e}this[WG]=!1,lK.call(this,r),uK.call(this,r)}}},t.prototype.showLoading=function(e,t){if(this._disposed){this.id;return}if(yA(e)&&(t=e,e=``),e||=`default`,this.hideLoading(),AK[e]){var n=AK[e](this._api,t),r=this._zr;this._loadingFX=n,r.add(n)}},t.prototype.hideLoading=function(){if(this._disposed){this.id;return}this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null},t.prototype.makeActionFromEvent=function(e){var t=Z({},e);return t.type=wK[e.type],t},t.prototype.dispatchAction=function(e,t){if(this._disposed){this.id;return}if(yA(t)||(t={silent:!!t}),CK[e.type]&&this._model){if(this[WG]){this._pendingActions.push(e);return}var n=t.silent;cK.call(this,e,n);var r=t.flush;r?this._zr.flush():r!==!1&&Rk.browser.weChat&&this._throttledZrFlush(),lK.call(this,n),uK.call(this,n)}},t.prototype.updateLabelLayout=function(){JW.trigger(`series:layoutlabels`,this._model,this._api,{updatedSeries:[]})},t.prototype.appendData=function(e){if(this._disposed){this.id;return}var t=e.seriesIndex;this.getModel().getSeriesByIndex(t).appendData(e),this._scheduler.unfinished=!0,this.getZr().wakeUp()},t.internalField=function(){nK=function(e){gke(e._model);var t=e._scheduler;t.restorePipelines(e._zr,e._model),t.prepareStageTasks(),rK(e,!0),rK(e,!1),t.plan()},rK=function(e,t){for(var n=e._model,r=e._scheduler,i=t?e._componentsViews:e._chartsViews,a=t?e._componentsMap:e._chartsMap,o=e._zr,s=e._api,c=0;cOA(t.get(`hoverLayerThreshold`),mH.hoverLayerThreshold)&&!Rk.node&&!Rk.worker;(e._usingTHL||a)&&(t.eachSeries(function(t){if(!t.preventUsingHoverLayer){var n=e._chartsMap[t.__viewId];n.__alive&&n.eachRendered(function(e){var t=e.states.emphasis;t&&t.hoverLayer!==2&&(t.hoverLayer=+!!a)})}}),e._usingTHL=a)}}function a(e,t){var n=e.get(`blendMode`)||null;t.eachRendered(function(e){e.isGroup||(e.style.blend=n)})}function o(e,t){if(!e.preventAutoZ){var n=lB(e);t.eachRendered(function(e){return dB(e,n.z,n.zlevel),!0})}}function s(e,t){t.eachRendered(function(e){if(!Sz(e)){var t=e.getTextContent(),n=e.getTextGuideLine();e.stateTransition&&=null,t&&t.stateTransition&&(t.stateTransition=null),n&&n.stateTransition&&(n.stateTransition=null),e.hasState()?(e.prevStates=e.currentStates,e.clearStates()):e.prevStates&&=null}})}function c(e,t){var n=e.getModel(`stateAnimation`),i=e.isAnimationEnabled(),a=n.get(`duration`),o=a>0?{duration:a,delay:n.get(`delay`),easing:n.get(`easing`)}:null;t.eachRendered(function(e){if(e.states&&e.states.emphasis){if(Sz(e))return;if(e instanceof xL&&wEe(e),e.__dirty){var t=e.prevStates;t&&e.useStates(t)}if(i){e.stateTransition=o;var n=e.getTextContent(),a=e.getTextGuideLine();n&&(n.stateTransition=o),a&&(a.stateTransition=o)}e.__dirty&&r(e)}})}gK=function(e){return new(function(t){X(n,t);function n(){return t!==null&&t.apply(this,arguments)||this}return n.prototype.getCoordinateSystems=function(){return e._coordSysMgr.getCoordinateSystems()},n.prototype.getComponentByElement=function(t){for(;t;){var n=t.__ecComponentInfo;if(n!=null)return e._model.getComponent(n.mainType,n.index);t=t.parent}},n.prototype.enterEmphasis=function(t,n){$L(t,n),vK(e)},n.prototype.leaveEmphasis=function(t,n){eR(t,n),vK(e)},n.prototype.enterBlur=function(t){mEe(t),vK(e)},n.prototype.leaveBlur=function(t){tR(t),vK(e)},n.prototype.enterSelect=function(t){nR(t),vK(e)},n.prototype.leaveSelect=function(t){rR(t),vK(e)},n.prototype.getModel=function(){return e.getModel()},n.prototype.getViewOfComponentModel=function(t){return e.getViewOfComponentModel(t)},n.prototype.getViewOfSeriesModel=function(t){return e.getViewOfSeriesModel(t)},n.prototype.getECUpdateCycleVersion=function(){return e[GG]},n.prototype.usingTHL=function(){return e._usingTHL},n}(JTe))(e)},_K=function(e){function t(e,t){for(var n=0;n=0)){KK.push(n);var o=kW.wrapStageHandler(n,i);o.__prio=t,o.__raw=n,e.push(o)}}function JK(e,t){AK[e]=t}function mAe(e){Bk({createCanvas:e})}function YK(e,t,n){var r=XW(`registerMap`);r&&r(e,t,n)}function hAe(e){var t=XW(`getMap`);return t&&t(e)}var XK=TOe;GK(zG,ZOe),GK(VG,QOe),GK(VG,$Oe),GK(zG,dke),GK(VG,fke),GK(HG,Vke),LK(ZH),RK(qke,iOe),JK(`default`,eke),HK({type:UL,event:UL,update:UL},WA),HK({type:WL,event:WL,update:WL},WA),HK({type:$Te,event:GL,update:$Te,action:WA,refineEvent:ZK,publishNonRefinedEvent:!0}),HK({type:eEe,event:GL,update:eEe,action:WA,refineEvent:ZK,publishNonRefinedEvent:!0}),HK({type:tEe,event:GL,update:tEe,action:WA,refineEvent:ZK,publishNonRefinedEvent:!0});function ZK(e,t,n,r){return{eventContent:{selected:yEe(n),isFromClick:t.isFromClick||!1}}}IK(`default`,{}),IK(`dark`,zW);var gAe={},QK=[],_Ae={registerPreprocessor:LK,registerProcessor:RK,registerPostInit:zK,registerPostUpdate:BK,registerUpdateLifecycle:VK,registerAction:HK,registerCoordinateSystem:UK,registerLayout:WK,registerVisual:GK,registerTransform:XK,registerLoading:JK,registerMap:YK,registerImpl:mke,PRIORITY:UG,ComponentModel:sH,ComponentView:dW,SeriesModel:sW,ChartView:mW,registerComponentModel:function(e){sH.registerClass(e)},registerComponentView:function(e){dW.registerClass(e)},registerSeriesModel:function(e){sW.registerClass(e)},registerChartView:function(e){mW.registerClass(e)},registerCustomSeries:function(e,t){QW(e,t)},registerSubTypeDefaulter:function(e,t){sH.registerSubTypeDefaulter(e,t)},registerPainter:function(e,t){nF(e,t)}};function $K(e){if(mA(e)){Q(e,function(e){$K(e)});return}rA(QK,e)>=0||(QK.push(e),hA(e)&&(e={install:e}),e.install(_Ae))}function eq(e){return e==null?0:e.length||1}function tq(e){return e}var nq=function(){function e(e,t,n,r,i,a){this._old=e,this._new=t,this._oldKeyGetter=n||tq,this._newKeyGetter=r||tq,this.context=i,this._diffModeMultiple=a===`multiple`}return e.prototype.add=function(e){return this._add=e,this},e.prototype.update=function(e){return this._update=e,this},e.prototype.updateManyToOne=function(e){return this._updateManyToOne=e,this},e.prototype.updateOneToMany=function(e){return this._updateOneToMany=e,this},e.prototype.updateManyToMany=function(e){return this._updateManyToMany=e,this},e.prototype.remove=function(e){return this._remove=e,this},e.prototype.execute=function(){this[this._diffModeMultiple?`_executeMultiple`:`_executeOneToOne`]()},e.prototype._executeOneToOne=function(){var e=this._old,t=this._new,n={},r=Array(e.length),i=Array(t.length);this._initIndexMap(e,null,r,`_oldKeyGetter`),this._initIndexMap(t,n,i,`_newKeyGetter`);for(var a=0;a1){var l=s.shift();s.length===1&&(n[o]=s[0]),this._update&&this._update(l,a)}else c===1?(n[o]=null,this._update&&this._update(s,a)):this._remove&&this._remove(a)}this._performRestAdd(i,n)},e.prototype._executeMultiple=function(){var e=this._old,t=this._new,n={},r={},i=[],a=[];this._initIndexMap(e,n,i,`_oldKeyGetter`),this._initIndexMap(t,r,a,`_newKeyGetter`);for(var o=0;o1&&d===1)this._updateManyToOne&&this._updateManyToOne(l,c),r[s]=null;else if(u===1&&d>1)this._updateOneToMany&&this._updateOneToMany(l,c),r[s]=null;else if(u===1&&d===1)this._update&&this._update(l,c),r[s]=null;else if(u>1&&d>1)this._updateManyToMany&&this._updateManyToMany(l,c),r[s]=null;else if(u>1)for(var f=0;f1)for(var o=0;o30}var dq=yA,fq=sA,CAe=typeof Int32Array>`u`?Array:Int32Array,wAe=`e\0\0`,pq=-1,TAe=[`hasItemOption`,`_nameList`,`_idList`,`_invertedIndicesMap`,`_dimSummary`,`userOutput`,`_rawData`,`_dimValueGetter`,`_nameDimIdx`,`_idDimIdx`,`_nameRepeatCount`],EAe=[`_approximateExtent`],mq,hq,gq,_q,vq,yq,bq,xq=function(){function e(e,t){this.type=`list`,this._dimOmitted=!1,this._nameList=[],this._idList=[],this._visual={},this._layout={},this._itemVisuals=[],this._itemLayouts=[],this._graphicEls=[],this._approximateExtent={},this._calculationInfo={},this.hasItemOption=!1,this.TRANSFERABLE_METHODS=[`cloneShallow`,`downSample`,`minmaxDownSample`,`lttbDownSample`,`map`],this.CHANGABLE_METHODS=[`filterSelf`,`selectRange`],this.DOWNSAMPLE_METHODS=[`downSample`,`minmaxDownSample`,`lttbDownSample`];var n,r=!1;sq(e)?(n=e.dimensions,this._dimOmitted=e.isDimensionOmitted(),this._schema=e):(r=!0,n=e),n||=[`x`,`y`];for(var i={},a=[],o={},s=!1,c={},l=0;l=t)){var n=this._store.getProvider();this._updateOrdinalMeta();var r=this._nameList,i=this._idList;if(n.getSource().sourceFormat===`original`&&!n.pure)for(var a=[],o=e;o0},e.prototype.ensureUniqueItemVisual=function(e,t){var n=this._itemVisuals,r=n[e];r||=n[e]={};var i=r[t];return i??(i=this.getVisual(t),mA(i)?i=i.slice():dq(i)&&(i=Z({},i)),r[t]=i),i},e.prototype.setItemVisual=function(e,t,n){var r=this._itemVisuals[e]||{};this._itemVisuals[e]=r,dq(t)?Z(r,t):r[t]=n},e.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},e.prototype.setLayout=function(e,t){dq(e)?Z(this._layout,e):this._layout[e]=t},e.prototype.getLayout=function(e){return this._layout[e]},e.prototype.getItemLayout=function(e){return this._itemLayouts[e]},e.prototype.setItemLayout=function(e,t,n){this._itemLayouts[e]=n?Z(this._itemLayouts[e]||{},t):t},e.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},e.prototype.setItemGraphicEl=function(e,t){ML(this.hostModel&&this.hostModel.seriesIndex,this.dataType,e,t),this._graphicEls[e]=t},e.prototype.getItemGraphicEl=function(e){return this._graphicEls[e]},e.prototype.eachItemGraphicEl=function(e,t){Q(this._graphicEls,function(n,r){n&&e&&e.call(t,n,r)})},e.prototype.cloneShallow=function(t){return t||=new e(this._schema?this._schema:fq(this.dimensions,this._getDimInfo,this),this.hostModel),vq(t,this),t._store=this._store,t},e.prototype.wrapMethod=function(e,t){var n=this[e];hA(n)&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(e),this[e]=function(){var e=n.apply(this,arguments);return t.apply(this,[e].concat(AA(arguments)))})},e.internalField=function(){mq=function(e){var t=e._invertedIndicesMap;Q(t,function(n,r){var i=e._dimInfos[r],a=i.ordinalMeta,o=e._store;if(a){n=t[r]=new CAe(a.categories.length);for(var s=0;s1&&(s+=`__ec__`+l),r[t]=s}}}(),e}();function DAe(e,t){return Sq(e,t).dimensions}function Sq(e,t){$H(e)||(e=tU(e)),t||={};var n=t.coordDimensions||[],r=t.dimensionsDefine||e.dimensionsDefine||[],i=zA(),a=[],o=OAe(e,n,r,t.dimensionsCount),s=t.canOmitUnusedDimensions&&uq(o),c=r===e.dimensionsDefine,l=c?lq(e):cq(r),u=t.encodeDefine;!u&&t.encodeDefaulter&&(u=t.encodeDefaulter(e,o));for(var d=zA(u),f=new PU(o),p=0;p0&&(e.name+=t-1)}),new oq({source:e,dimensions:a,fullDimensionCount:o,dimensionOmitted:s})}function OAe(e,t,n,r){var i=Math.max(e.dimensionsDetectedCount||1,t.length,n.length,r||0);return Q(t,function(e){var t;yA(e)&&(t=e.dimsDef)&&(i=Math.max(i,t.length))}),i}function kAe(e,t,n){if(n||t.hasKey(e)){for(var r=0;t.hasKey(e+r);)r++;e+=r}return t.set(e,!0),e}var AAe=function(){function e(e){this.coordSysDims=[],this.axisMap=zA(),this.categoryAxisMap=zA(),this.coordSysName=e}return e}();function jAe(e){var t=e.get(`coordinateSystem`),n=new AAe(t),r=MAe[t];if(r)return r(e,n,n.axisMap,n.categoryAxisMap),n}var MAe={cartesian2d:function(e,t,n,r){var i=e.getReferringComponents(`xAxis`,rI).models[0],a=e.getReferringComponents(`yAxis`,rI).models[0];t.coordSysDims=[`x`,`y`],n.set(`x`,i),n.set(`y`,a),Cq(i)&&(r.set(`x`,i),t.firstCategoryDimIndex=0),Cq(a)&&(r.set(`y`,a),t.firstCategoryDimIndex??=1)},singleAxis:function(e,t,n,r){var i=e.getReferringComponents(`singleAxis`,rI).models[0];t.coordSysDims=[`single`],n.set(`single`,i),Cq(i)&&(r.set(`single`,i),t.firstCategoryDimIndex=0)},polar:function(e,t,n,r){var i=e.getReferringComponents(`polar`,rI).models[0],a=i.findAxisModel(`radiusAxis`),o=i.findAxisModel(`angleAxis`);t.coordSysDims=[`radius`,`angle`],n.set(`radius`,a),n.set(`angle`,o),Cq(a)&&(r.set(`radius`,a),t.firstCategoryDimIndex=0),Cq(o)&&(r.set(`angle`,o),t.firstCategoryDimIndex??=1)},geo:function(e,t,n,r){t.coordSysDims=[`lng`,`lat`]},parallel:function(e,t,n,r){var i=e.ecModel,a=i.getComponent(`parallel`,e.get(`parallelIndex`)),o=t.coordSysDims=a.dimensions.slice();Q(a.parallelAxisIndex,function(e,a){var s=i.getComponent(`parallelAxis`,e),c=o[a];n.set(c,s),Cq(s)&&(r.set(c,s),t.firstCategoryDimIndex??=a)})},matrix:function(e,t,n,r){var i=e.getReferringComponents(`matrix`,rI).models[0];t.coordSysDims=[`x`,`y`];var a=i.getDimensionModel(`x`),o=i.getDimensionModel(`y`);n.set(`x`,a),n.set(`y`,o),r.set(`x`,a),r.set(`y`,o)}};function Cq(e){return e.get(`type`)===`category`}function wq(e,t,n){n||={};var r=n.byIndex,i=n.stackedCoordDimension,a,o,s;NAe(t)?a=t:(o=t.schema,a=o.dimensions,s=t.store);var c=!!(e&&e.get(`stack`)),l,u,d,f,p=!0;function m(e){return e.type!==`ordinal`&&e.type!==`time`}if(Q(a,function(e,t){gA(e)&&(a[t]=e={name:e}),m(e)||(p=!1)}),Q(a,function(e,t){c&&!e.isExtraCoord&&(!r&&!l&&e.ordinalMeta&&(l=e),!u&&m(e)&&(!p||e.coordDim!==`x`&&e.coordDim!==`angle`)&&(!i||i===e.coordDim)&&(u=e))}),u&&!r&&!l&&(r=!0),u){d=`__\0ecstackresult_`+e.id,f=`__\0ecstackedover_`+e.id,l&&(l.createInvertedIndices=!0);var h=u.coordDim,g=u.type,_=0;Q(a,function(e){e.coordDim===h&&_++});var v={name:d,coordDim:h,coordDimIndex:_,type:g,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:a.length},y={name:f,coordDim:f,coordDimIndex:_+1,type:g,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:a.length+1};o?(s&&(v.storeDimIndex=s.ensureCalculationDimension(f,g),y.storeDimIndex=s.ensureCalculationDimension(d,g)),o.appendCalculationDimension(v),o.appendCalculationDimension(y)):(a.push(v),a.push(y))}return{stackedDimension:u&&u.name,stackedByDimension:l&&l.name,isStackedByIndex:r,stackedOverDimension:f,stackResultDimension:d}}function NAe(e){return!sq(e.schema)}function Tq(e,t){return!!t&&t===e.getCalculationInfo(`stackedDimension`)}function Eq(e,t){return Tq(e,t)?e.getCalculationInfo(`stackResultDimension`):t}function PAe(e,t){var n=e.get(`coordinateSystem`),r=zV.get(n),i;return t&&t.coordSysDims&&(i=sA(t.coordSysDims,function(e){var n={name:e},r=t.axisMap.get(e);return r&&(n.type=iq(r.get(`type`))),n})),i||=r&&(r.getDimensionsInfo?r.getDimensionsInfo():r.dimensions.slice())||[`x`,`y`],i}function FAe(e,t,n){var r,i;return n&&Q(e,function(e,a){var o=e.coordDim,s=n.categoryAxisMap.get(o);s&&(r??=a,e.ordinalMeta=s.getOrdinalMeta(),t&&(e.createInvertedIndices=!0)),e.otherDims.itemName!=null&&(i=!0)}),!i&&r!=null&&(e[r].otherDims.itemName=0),r}function Dq(e,t,n){n||={};var r=t.getSourceManager(),i,a=!1;e?(a=!0,i=tU(e)):(i=r.getSource(),a=i.sourceFormat===PL);var o=jAe(t),s=PAe(t,o),c=n.useEncodeDefaulter,l=hA(c)?c:c?pA(_H,s,t):null,u={coordDimensions:s,generateCoord:n.generateCoord,encodeDefine:t.getEncode(),encodeDefaulter:l,canOmitUnusedDimensions:!a},d=Sq(i,u),f=FAe(d.dimensions,n.createInvertedIndices,o),p=a?null:r.getSharedDataStore(d),m=wq(t,{schema:d,store:p}),h=new xq(d,t);h.setCalculationInfo(m);var g=f!=null&&IAe(i)?function(e,t,n,r){return r===f?n:this.defaultDimValueGetter(e,t,n,r)}:null;return h.hasItemOption=!1,h.initData(a?i:p,null,g),h}function IAe(e){if(e.sourceFormat===`original`)return!mA(JF(LAe(e.data||[])))}function LAe(e){for(var t=0;t=t[0]&&e<=t[1]},getExtent:function(){return this._extents[0].slice()},getExtentUnsafe:function(e){return this._extents[e]},setExtent:function(e,t){Rq(this._extents,0,e,t)},setExtent2:function(e,t,n){var r=this._extents;r[e]||(r[e]=r[0].slice()),Rq(r,e,t,n)},freeze:function(){}};function Rq(e,t,n,r){fI(n,r)&&(e[t][0]=n,e[t][1]=r)}function zq(e){return Bq(e)||Hq(e)}function Bq(e){return e.type===`interval`}function Vq(e){return e.type===`time`}function Hq(e){return e.type===`log`}function Uq(e){return e.type===`ordinal`}function HAe(e){var t=PF(e),n=mF(10,t),r=dF(e/n);return r?r===2?r=3:r===3?r=5:r*=2:r=1,SF(r*n,-t)}function Wq(e){return wF(e)+2}function Gq(e,t){return hF(e)/hF(t)}function Kq(e,t,n){var r=n&&n.lookup;if(r){for(var i=0;i1&&a/o>2&&(i=Math.round(Math.ceil(i/o)*o)),i!==r[0]&&c(r[0],!0,!0);for(var s=i;s<=r[1];s+=o)c(s,!1,s===r[0]||s===r[1]);s-o!==r[1]&&c(r[1],!0,!0);function c(e,t,r){n({value:e,offInterval:t},r)}}var Xq=function(e){X(t,e);function t(n){var r=e.call(this)||this;r.type=`ordinal`,r.parse=t.parse,Mq(r,t.decoratedMethods);var i=n.ordinalMeta;i||=new kq({}),mA(i)&&(i=new kq({categories:sA(i,function(e){return yA(e)?e.value:e})})),r._ordinalMeta=i;var a=jq(null,null,n.extent||[0,i.categories.length-1]);return r._mapper=a.mapper,Nq(r,a.mapper),r}return t.parse=function(e){return e==null?e=NaN:gA(e)?(e=this._ordinalMeta.getOrdinal(e),e??=NaN):e=dF(e),e},t.prototype.getTicks=function(){var e=[];return Yq(this,0,function(t){e.push(t)}),e},t.prototype.getMinorTicks=function(e){},t.prototype.setSortInfo=function(e){if(e==null){this._ordinalNumbersByTick=this._ticksByOrdinalNumber=null;return}for(var t=e.ordinalNumbers,n=this._ordinalNumbersByTick=[],r=this._ticksByOrdinalNumber=[],i=0,a=this._ordinalMeta.categories.length,o=cF(a,t.length);i=0&&e=0&&e=0&&eo[0]&&mi[1]||!isFinite(p)||!isFinite(i[1]))break}else{if(m>f)break;p=cF(p,i[1]),m===f&&(p=i[1])}if(l.push({value:p}),p=SF(p+n,a),s){var h=s.calcNiceTickMultiple(p,d);h>=0&&(p=SF(p+h*n,a))}if(l.length>0&&p===l[l.length-1].value)break;if(l.length>u)return[]}var g=l.length?l[l.length-1].value:i[1];return r[1]>g&&l.push({value:e.expandToNicedExtent?SF(g+n,a):r[1]}),c&&o.pruneTicksByBreak(e.pruneByBreak,l,s.breaks,function(e){return e.value},t.interval,r),c&&e.breakTicks!==`none`&&o.addBreaksToTicks(l,s.breaks,r),l},t.prototype.getMinorTicks=function(e){return Zq(this,e,ZB(this),this._cfg.interval)},t.prototype.getLabel=function(e,t){if(e==null)return``;var n=t&&t.precision;return n==null?n=wF(e.value)||0:n===`auto`&&(n=this._cfg.intervalPrecision),EV(SF(e.value,n,!0))},t.type=`interval`,t}(Oq);Oq.registerClass(Qq);var WAe=function(e,t,n,r){for(;n>>1;e[i][1]16?16:e>7.5?7:e>3.5?4:e>1.5?2:1}function KAe(e){var t=30*nV;return e/=t,e>6?6:e>3?3:e>2?2:1}function qAe(e){return e/=tV,e>12?12:e>6?6:e>3.5?4:e>2?2:1}function nJ(e,t){return e/=t?eV:$B,e>30?30:e>20?20:e>15?15:e>10?10:e>5?5:e>2?2:1}function JAe(e){return lF(FF(e,!0),1)}function YAe(e,t,n){var r=Math.max(0,rA(sV,t)-1);return fV(new Date(e),sV[r],n).getTime()}function XAe(e,t){var n=new Date(0);n[e](1);var r=n.getTime();n[e](1+t);var i=n.getTime()-r;return function(e,t){return Math.max(0,Math.round((t-e)/i))}}function ZAe(e,t,n,r,i,a){var o=vDe,s=0;function c(e,t,n,i,o,c,l){for(var u=XAe(o,e),d=t,f=new Date(d);d3e3));)if(f[o](f[i]()+e),d=f.getTime(),a){var p=a.calcNiceTickMultiple(d,u);p>0&&(f[o](f[i]()+p*e),d=f.getTime())}l.push({value:d,notAdd:d>r[1]})}function l(e,i,a){var o=[],s=!i.length;if(!tJ(lV(e),r[0],r[1],n)){s&&(i=[{value:YAe(r[0],e,n)},{value:r[1]}]);for(var l=0;l=r[0]&&u<=r[1]&&c(f,u,d,p,m,h,o),e===`year`&&a.length>1&&l===0&&a.unshift({value:a[0].value-f})}}for(var l=0;l=r[0]&&v<=r[1]&&f++)}var y=i/t;if(f>y*1.5&&p>y/1.5||(u.push(g),f>y||e===o[m]))break}d=[]}}for(var b=lA(sA(u,function(e){return lA(e,function(e){return e.value>=r[0]&&e.value<=r[1]&&!e.notAdd})}),function(e){return e.length>0}),x=b.length-1,S=[],m=0;mr[0])&&S.unshift({value:r[0],time:{level:0,upperTimeUnit:O,lowerTimeUnit:O},notNice:!0}),(!D||D.values&&(a=s);var c=eJ.length,l=Math.min(WAe(eJ,a,0,c),c-1),u=eJ[l][1],d=eJ[Math.max(l-1,0)][0];e.setTimeInterval({approxInterval:a,interval:u,minLevelUnit:d})};Oq.registerClass($q);var rJ=0,iJ=1,$Ae=2,aJ=function(e){X(t,e);function t(n){var r=e.call(this)||this;r.type=`log`,r.parse=Qq.parse,r.base=n.logBase||10;var i=[],a=[],o=r._lookup={from:i,to:a};i[rJ]=i[iJ]=a[rJ]=a[iJ]=NaN,Mq(r,t.mapperMethods);var s=YB(),c=n.breakOption,l={lookup:o};return s&&s.parseAxisBreakOptionInwardTransform(c,r,{noNegative:!0},$Ae,l),r.powStub=new Qq({breakParsed:l.original}),r.intervalStub=new Qq({breakParsed:l.transformed}),Nq(r,r.intervalStub),r}return t.prototype.getTicks=function(e){var t=this.base,n=this.powStub,r=YB(),i=this.intervalStub,a={lookup:{from:i.getExtent(),to:n.getExtent()}};return sA(i.getTicks(e||{}),function(e){var i=e.value,o=Kq(i,t,a),s;if(r){var c=r.getTicksBreakOutwardTransform(this,e,ZB(n),this._lookup);c&&(s=c.vBreak,o=c.tickVal)}return{value:o,break:s}},this)},t.prototype.getMinorTicks=function(e){return Zq(this,e,ZB(this.powStub),this.intervalStub.getConfig().interval)},t.prototype.getLabel=function(e,t){return this.intervalStub.getLabel(e,t)},t.type=`log`,t.mapperMethods={needTransform:function(){return!0},normalize:function(e){return this.intervalStub.normalize(Gq(e,this.base))},scale:function(e){return Kq(this.intervalStub.scale(e),this.base,null)},transformIn:function(e,t){return e=Gq(e,this.base),t&&t.depth===2?e:this.intervalStub.transformIn(e,t)},transformOut:function(e,t){var n=t?t.depth:null;return oJ.depth=n,sJ.lookup=this._lookup,Kq(n===2?e:this.intervalStub.transformOut(e,oJ),this.base,sJ)},contain:function(e){return this.powStub.contain(e)},setExtent:function(e,t){this.setExtent2(0,e,t)},setExtent2:function(e,t,n){if(!(!fI(t,n)||t<=0||n<=0)){var r=cJ,i=cJ;if(e===0){var a=this._lookup;r=a.to,i=a.from}this.powStub.setExtent2(e,r[rJ]=t,r[iJ]=n);var o=this.base;this.intervalStub.setExtent2(e,i[rJ]=Gq(t,o),i[iJ]=Gq(n,o))}},getFilter:function(){return{g:0}},sanitize:function(e,t){return fI(t[0],t[1])&&UF(e)&&e<=0&&(e=t[0]),e},getDefaultStartValue:function(){return 1},getExtent:function(){return this.powStub.getExtent()},getExtentUnsafe:function(e,t){return t===null?this.powStub.getExtentUnsafe(e,null):this.intervalStub.getExtentUnsafe(e,t)}},t}(Oq);Oq.registerClass(aJ);var oJ={},sJ={},cJ=[],lJ={value:1,category:1,time:1,log:1},uJ=eI();function dJ(e){var t=e.get(`type`);return(t==null||!UA(lJ,t)&&!Oq.getClass(t))&&(t=`value`),t}function fJ(e,t,n){var r=YB(),i;switch(r&&(i=vJ(e,t,n)),t){case`category`:return new Xq({ordinalMeta:e.getOrdinalMeta?e.getOrdinalMeta():e.getCategories(),extent:lI()});case`time`:return new $q({locale:e.ecModel.getLocaleModel(),useUTC:e.ecModel.get(`useUTC`),breakOption:i});case`log`:return new aJ({logBase:e.get(`logBase`),breakOption:i});case`value`:return new Qq({breakOption:i});default:return new((Oq.getClass(t))||Qq)({})}}function eje(e,t,n){var r=n?Fq(e,null):e.getExtentUnsafe(0,null),i=r[0],a=r[1];return fI(i,a)?i===t||a===t?2:it?1:3:3}function tje(e){uJ(e).noOnMyZero=!0}function nje(e){return uJ(e).noOnMyZero}function pJ(e){var t=e.getLabelModel().get(`formatter`);if(e.type===`time`){var n=yDe(t);return function(t,r){return e.scale.getFormattedLabel(t,r,n)}}else if(gA(t))return function(n){var r=e.scale.getLabel(n);return t.replace(`{value}`,r??``)};else if(hA(t)){if(e.type===`category`)return function(n,r){return t(mJ(e,n),n.value-e.scale.getExtent()[0],null)};var r=YB();return function(n,i){var a=null;return r&&(a=r.makeAxisLabelFormatterParamBreak(a,n.break)),t(mJ(e,n),i,a)}}else return function(t){return e.scale.getLabel(t)}}function mJ(e,t){var n=e.scale;return Uq(n)?n.getLabel(t):t.value}function hJ(e){return e.get(`interval`)??`auto`}function rje(e){return e.type===`category`&&hJ(e.getLabelModel())===0}function ije(e,t){var n={};return Q(e.mapDimensionsAll(t),function(t){n[Eq(e,t)]=!0}),dA(n)}function gJ(e){return e===`middle`||e===`center`}function _J(e){return e.getShallow(`show`)}function vJ(e,t,n){var r=e.get(`breaks`,!0);if(r!=null)return!YB()||!n||!aje(t)?void 0:r}function aje(e){return e!==`category`}function yJ(e,t,n,r,i,a){var o=Hq(e),s=o?e.intervalStub:e;if(s.setExtent(r[0],r[1]),o){var c=e.powStub,l={depth:2},u=e.transformOut(r[0],l),d=e.transformOut(r[1],l),f=UAe(n,r);t[0]&&!f[0]&&(u=i[0]),t[1]&&!f[1]&&(d=i[1]),c.setExtent(u,d)}s.setConfig(a)}function bJ(e,t){return Uq(e)?e.getRawOrdinalNumber(t.value):t.value}function xJ(e,t){return Uq(e)&&!!t.get(`boundaryGap`)}var SJ=function(){function e(){}return e.prototype.needIncludeZero=function(){return!this.option.scale},e.prototype.getCoordSysModel=function(){},e}(),oje=mI(),CJ=eI(),sje=eI();function wJ(e,t){var n=e.model,r=CJ(tG(n.ecModel)).keyed,i=r&&r.get(t);return i&&i.get(n.uid)}function cje(e,t){return EJ(wJ(e,t))}function lje(e,t){var n=[];return TJ(e.model.ecModel,function(e){for(var r=0;r0&&u[1]>0&&!d[0]&&(u[0]=0),u[0]<0&&u[1]<0&&!d[1]&&(u[1]=0));var y=!1;u[0]>u[1]&&(u.reverse(),y=!0);var b=RJ(e,t.get(`startValue`,!0)),x=b!=null;!UF(b)&&r&&(b=e.getDefaultStartValue?e.getDefaultStartValue():0),UF(b)&&(x||!_||v)&&(bu[1]&&!d[1]&&(u[1]=b,d[1]=!0)),LJ(this._i={scale:e,dataMM:l,noZoomEffMM:u,zoomMM:[],fixMM:d,zoomFixMM:[!1,!1],startValue:b,isBlank:g,incl0:v,tggAxInv:y,ctnShp:i},u)}return e.prototype.makeNoZoom=function(){return this._i.noZoomEffMM.slice()},e.prototype.makeFinal=function(){var e=this._i,t=e.zoomMM,n=e.noZoomEffMM,r=e.zoomFixMM,i=e.fixMM,a={fixMM:i,zoomFixMM:r,isBlank:e.isBlank,incl0:e.incl0,tggAxInv:e.tggAxInv,ctnShp:e.ctnShp,effMM:n.slice()},o=a.effMM;return t[0]!=null&&(o[0]=t[0],i[0]=r[0]=!0),t[1]!=null&&(o[1]=t[1],i[1]=r[1]=!0),LJ(e,o),a},e.prototype.makeRenderInfo=function(){return{startValue:this._i.startValue}},e.prototype.setZoomMM=function(e,t){this._i.zoomMM[e]=t},e}();function LJ(e,t){var n=e.scale,r=e.dataMM;n.sanitize&&(t[0]=n.sanitize(t[0],r),t[1]=n.sanitize(t[1],r),pI(t))}function RJ(e,t){return t==null?null:EA(t)?NaN:e.parse(t)}function gje(e,t){var n;if(Uq(e))n=[0,0];else{var r=t.get(`boundaryGap`);typeof r==`boolean`&&(r=null),n=mA(r)?r:[r,r]}return[zJ(n[0]),zJ(n[1])]}function zJ(e){return BP(typeof e==`boolean`?0:e,1)||0}function BJ(e){var t=mje(e.scale);return t.extent||=lI(),t}function _je(e,t){BJ(e).dimIdxInCoord=t.get(e.dim)}function VJ(e,t){var n=e.scale,r=e.model,i=e.dim;n.rawExtentInfo||vje(n,e,i,r,t)}function vje(e,t,n,r,i){var a=BJ(t),o=a.extent,s=!1;uje(t,function(r){if(r.boxCoordinateSystem){var i=VV(r).coord,c=a.dimIdxInCoord;if(c>=0&&mA(i)){var l=i[c];l!=null&&!mA(l)&&uI(o,e.parse(l))}}else if(r.coordinateSystem){var u=r.getData();if(u){var d=e.getFilter?e.getFilter():null;Q(ije(u,n),function(e){pwe(o,u.getApproximateExtent(e,d))})}r.__requireStartValue&&r.__requireStartValue(t)&&(s=!0)}});var c=bje(e,t,r);HJ(e,new IJ(e,r,o,s,c),i),a.extent=null}function yje(e,t){var n=e.scale;HJ(n,new IJ(n,e.model,t,!1,!1),hje)}function HJ(e,t,n){e.rawExtentInfo=t,t.from=n}function UJ(e,t){WJ.set(e,t)}var WJ=zA();function GJ(e,t,n,r,i){e.rawExtentInfo||yje({scale:e,model:t},i||lI());var a=e.rawExtentInfo.makeFinal(),o=a.effMM;return e.setExtent(o[0],o[1]),e.setBlank(a.isBlank),r&&a.tggAxInv&&n&&!n.get(`legacyMinMaxDontInverseAxis`)&&(r.inverse=!r.inverse),a}function bje(e,t,n){var r=xJ(e,n),i=n.get(`containShape`,!0);if(i==null&&!r&&(i=!0),!i)return!1;var a=!1;return AJ(t,function(e){a=!!WJ.get(e)||a}),a}function xje(e,t,n,r){if(n.ctnShp){var i;if(AJ(e,function(t){var n=WJ.get(t);if(n){var a=n(e,r);a&&(i||=[0,0],dwe(i,a[0]),fwe(i,a[1]),tje(e))}}),i){var a=t.getExtent();if(Uq(t))e.onBand||t.setExtent2(1,cF(a[0],a[0]+i[0]),lF(a[1],a[1]+i[1]));else{var o=a.slice();n.zoomFixMM[0]||(o[0]=cF(o[0],t.transformOut(t.transformIn(o[0],null)+i[0],null))),n.zoomFixMM[1]||(o[1]=lF(o[1],t.transformOut(t.transformIn(o[1],null)+i[1],null))),(o[0]a[1])&&t.setExtent2(1,o[0],o[1])}}}}function KJ(e,t){var n=Hq(e),r=n?e.intervalStub:e,i=t.fixMinMax||[],a=n?e.getExtent():null,o=r.getExtent(),s=qq(o,i,t.rawExtentResult);r.setExtent(s[0],s[1]),s=r.getExtent();var c=n?Cje(r,t):Sje(r,t),l=c.intervalPrecision,u=c.interval,d=t.userInterval;d!=null&&(c.interval=d,c.intervalPrecision=Wq(d)),i[0]||(s[0]=SF(fF(s[0]/u)*u,l)),i[1]||(s[1]=SF(pF(s[1]/u)*u,l)),d!=null&&(c.niceExtent=s.slice()),yJ(e,i,o,s,a,c)}function Sje(e,t){var n=Jq(t.splitNumber,5),r=Iq(e),i=t.minInterval,a=t.maxInterval,o=FF(r/n,!0);i!=null&&oa&&(o=a);var s=Wq(o),c=e.getExtent(),l=[SF(pF(c[0]/o)*o,s),SF(fF(c[1]/o)*o,s)];return{interval:o,intervalPrecision:s,niceExtent:l}}function Cje(e,t){var n=Jq(t.splitNumber,10),r=e.getExtent(),i=Iq(e),a=lF(NF(i),1);n/i*a<=.5&&(a*=10);var o=Wq(a),s=[SF(pF(r[0]/a)*a,o),SF(fF(r[1]/a)*a,o)];return{intervalPrecision:o,interval:a,niceExtent:s}}function qJ(e){var t=e.scale,n=e.model,r=n.axis,i=n.ecModel;JJ(t,n,r,i,null)}function JJ(e,t,n,r,i){var a=GJ(e,t,r,n,i),o=Bq(e)||Vq(e);YJ(e,{splitNumber:t.get(`splitNumber`),fixMinMax:a.fixMM,userInterval:t.get(`interval`),minInterval:o?t.get(`minInterval`):null,maxInterval:o?t.get(`maxInterval`):null,rawExtentResult:a}),n&&r&&xje(n,e,a,r)}function YJ(e,t){wje[e.type](e,t)}var wje={interval:KJ,log:KJ,time:QAe,ordinal:WA},Tje=s({createDimensions:()=>DAe,createList:()=>Eje,createScale:()=>Oje,createSymbol:()=>rG,createTextStyle:()=>Aje,dataStack:()=>Dje,enableHoverEmphasis:()=>uR,getECData:()=>jL,getLayoutRect:()=>QV,mixinAxisModelCommonMethods:()=>kje});function Eje(e){return Dq(null,e)}var Dje={isDimensionStacked:Tq,enableDataStack:wq,getStackedDimension:Eq};function Oje(e,t){var n=t;t instanceof LB||(n=new LB(t));var r=dJ(n),i=fJ(n,r,!1);return e[1]n&&(t=i,n=o)}if(t)return Nje(t.exterior);var s=this.getBoundingRect();return[s.x+s.width/2,s.y+s.height/2]},t.prototype.getBoundingRect=function(e){var t=this._rect;if(t&&!e)return t;var n=[1/0,1/0],r=[-1/0,-1/0],i=this.geometries;return Q(i,function(t){t.type===`polygon`?$J(t.exterior,n,r,e):Q(t.points,function(t){$J(t,n,r,e)})}),isFinite(n[0])&&isFinite(n[1])&&isFinite(r[0])&&isFinite(r[1])||(n[0]=n[1]=r[0]=r[1]=0),t=new eM(n[0],n[1],r[0]-n[0],r[1]-n[1]),e||(this._rect=t),t},t.prototype.contain=function(e){var t=this.getBoundingRect(),n=this.geometries;if(!t.contain(e[0],e[1]))return!1;loopGeo:for(var r=0,i=n.length;r>1^-(s&1),c=c>>1^-(c&1),s+=i,c+=a,i=s,a=c,r.push([s/n,c/n])}return r}function oY(e,t){return e=Fje(e),sA(lA(e.features,function(e){return e.geometry&&e.properties&&e.geometry.coordinates.length>0}),function(e){var n=e.properties,r=e.geometry,i=[];switch(r.type){case`Polygon`:var a=r.coordinates;i.push(new tY(a[0],a.slice(1)));break;case`MultiPolygon`:Q(r.coordinates,function(e){e[0]&&i.push(new tY(e[0],e.slice(1)))});break;case`LineString`:i.push(new nY([r.coordinates]));break;case`MultiLineString`:i.push(new nY(r.coordinates))}var o=new rY(n[t||`name`],i,n.cp);return o.properties=n,o})}var Ije=s({MAX_SAFE_INTEGER:()=>kF,asc:()=>CF,getPercentWithPrecision:()=>ICe,getPixelPrecision:()=>FCe,getPrecision:()=>wF,getPrecisionSafe:()=>TF,isNumeric:()=>zF,isRadianAroundZero:()=>jF,linearMap:()=>vF,nice:()=>FF,numericToNumber:()=>RF,parseDate:()=>MF,parsePercent:()=>yF,quantile:()=>IF,quantity:()=>NF,quantityExponent:()=>PF,reformIntervals:()=>LF,remRadian:()=>AF,round:()=>PCe}),Lje=s({format:()=>uV,parse:()=>MF,roundTime:()=>fV}),Rje=s({Arc:()=>rz,BezierCurve:()=>nz,BoundingRect:()=>eM,Circle:()=>FR,CompoundPath:()=>iz,Ellipse:()=>IR,Group:()=>QP,Image:()=>CL,IncrementalDisplayable:()=>gz,Line:()=>$R,LinearGradient:()=>oz,Polygon:()=>ZR,Polyline:()=>QR,RadialGradient:()=>sz,Rect:()=>DL,Ring:()=>YR,Sector:()=>JR,Text:()=>kL,clipPointsByRect:()=>qz,clipRectByRect:()=>Jz,createIcon:()=>Yz,extendPath:()=>Mz,extendShape:()=>jz,getShapeClass:()=>Pz,getTransform:()=>Hz,initProps:()=>xz,makeImage:()=>Iz,makePath:()=>Fz,mergePath:()=>Rz,registerShape:()=>Nz,resizePath:()=>zz,updateProps:()=>bz}),zje=s({addCommas:()=>EV,capitalFirst:()=>DDe,encodeHTML:()=>xj,formatTime:()=>EDe,formatTpl:()=>MV,getTextRect:()=>TDe,getTooltipMarker:()=>PV,normalizeCssArray:()=>OV,toCamelCase:()=>DV,truncateText:()=>Nwe}),Bje=s({bind:()=>fA,clone:()=>Qk,curry:()=>pA,defaults:()=>nA,each:()=>Q,extend:()=>Z,filter:()=>lA,indexOf:()=>rA,inherits:()=>iA,isArray:()=>mA,isFunction:()=>hA,isObject:()=>yA,isString:()=>gA,map:()=>sA,merge:()=>$k,reduce:()=>cA}),Vje=eI(),sY=eI(),cY={estimate:1,determine:2};function lY(e){return{out:{noPxChangeTryDetermine:[]},kind:e}}function Hje(e,t){var n=e.getLabelModel().get(`customValues`);if(n){var r=e.scale;return{labels:sA(uY(n,r),function(t,n){return{formattedLabel:pJ(e)(t,n),rawLabel:r.getLabel(t),tick:t}})}}return e.type===`category`?Wje(e,t):Kje(e)}function Uje(e,t,n){var r=e.scale,i=e.getTickModel().get(`customValues`);return i?{ticks:uY(i,r)}:e.type===`category`?Gje(e,t):{ticks:r.getTicks(n)}}function uY(e,t){var n=t.getExtent(),r=[];return Q(e,function(e){e=t.parse(e),e>=n[0]&&e<=n[1]&&r.push(e)}),hI(r,_we,null),CF(r),sA(r,function(e){return{value:e}})}function Wje(e,t){var n=e.getLabelModel(),r=dY(e,n,t);return!n.get(`show`)||e.scale.isBlank()?{labels:[]}:r}function dY(e,t,n){var r=Jje(e),i=hJ(t),a=n.kind===cY.estimate;if(!a){var o=pY(r,i);if(o)return o}var s,c;hA(i)?s=gY(e,i,!1):(c=i===`auto`?Yje(e,n):i,s=gY(e,c,!1));var l={labels:s,labelCategoryInterval:c};return a?n.out.noPxChangeTryDetermine.push(function(){return mY(r,i,l),!0}):mY(r,i,l),l}function Gje(e,t){var n=qje(e),r=hJ(t),i=pY(n,r);if(i)return i;var a,o;if((!t.get(`show`)||e.scale.isBlank())&&(a=[]),hA(r))a=gY(e,r,!0);else if(r===`auto`){var s=dY(e,e.getLabelModel(),lY(cY.determine));o=s.labelCategoryInterval,a=sA(s.labels,function(e){return e.tick})}else o=r,a=gY(e,o,!0);return mY(n,r,{ticks:a,tickCategoryInterval:o})}function Kje(e){var t=e.scale.getTicks(),n=pJ(e);return{labels:sA(t,function(t,r){return{formattedLabel:n(t,r),rawLabel:e.scale.getLabel(t),tick:t}})}}var qje=fY(`axisTick`),Jje=fY(`axisLabel`);function fY(e){return function(t){return sY(t)[e]||(sY(t)[e]={list:[]})}}function pY(e,t){for(var n=0;nu&&(l=Math.max(1,Math.floor(c/u)));for(var d=s[0],f=e.dataToCoord(d+1)-e.dataToCoord(d),p=Math.abs(f*Math.cos(a)),m=Math.abs(f*Math.sin(a)),h=0,g=0;d<=s[1];d+=l){var _=0,v=0,y=IP(i({value:d}),r.font,`center`,`top`);_=y.width*1.3,v=y.height*1.3,h=Math.max(h,_,7),g=Math.max(g,v,7)}var b=h/p,x=g/m;isNaN(b)&&(b=1/0),isNaN(x)&&(x=1/0);var S=Math.max(0,Math.floor(Math.min(b,x)));return n===cY.estimate?(t.out.noPxChangeTryDetermine.push(fA(Zje,null,e,S,c)),S):hY(e,S,c)??S}function Zje(e,t,n){return hY(e,t,n)==null}function hY(e,t,n){var r=Vje(e.model),i=e.getExtent(),a=r.lastAutoInterval,o=r.lastTickCount;if(a!=null&&o!=null&&Math.abs(a-t)<=1&&Math.abs(o-n)<=1&&a>t&&r.axisExtent0===i[0]&&r.axisExtent1===i[1])return a;r.lastTickCount=n,r.lastAutoInterval=t,r.axisExtent0=i[0],r.axisExtent1=i[1]}function Qje(e){var t=e.getLabelModel();return{axisRotate:e.getRotate?e.getRotate():e.isHorizontal&&!e.isHorizontal()?90:0,labelRotate:t.get(`rotate`)||0,font:t.getFont()}}function gY(e,t,n){var r=pJ(e),i=e.scale,a=[],o=hA(t);return Yq(i,o?0:t,function(e,s){var c=i.getLabel(e);if(o){var l=!!t(e.value,c);if(e.offInterval=!l,!l&&!s)return}a.push(n?e:{formattedLabel:r(e),rawLabel:c,tick:e})}),a}var $je=.8;function _Y(e,t){t||={};var n={w:NaN,w2:NaN},r=e.scale,i=t.fromStat,a=t.min,o=BAe(r);UF(o)||(o=NaN);var s=e.getExtent(),c=uF(s[1]-s[0]);return Uq(r)?eMe(n,e,o,c):i&&tMe(n,e,o,c,i),a!=null&&(n.w=UF(n.w)?lF(a,n.w):a),n}function eMe(e,t,n,r){var i=t.onBand,a=n+ +!!i;a===0&&(a=1),e.w=r/a,!i&&n&&r&&(e.w2=e.w*n/r)}function tMe(e,t,n,r,i){var a=!1,o=-1/0;Q(i.key?[cje(t,i.key)]:lje(t,i.sers||[]),function(e){var t=e.liPosMinGap;t!=null&&(t>0?(t>o&&(o=t),a=!1):t===-2&&(a=!0))}),UF(n)&&n>0&&UF(o)?(e.w=r/n*o,e.w2=o):a&&(e.w=r*$je,e.w2=e.w*n/r)}var vY=[0,1],yY=function(){function e(e,t,n){this.onBand=!1,this.inverse=!1,this.dim=e,this.scale=t,this._extent=n||[0,0]}return e.prototype.contain=function(e){var t=this._extent,n=Math.min(t[0],t[1]),r=Math.max(t[0],t[1]);return e>=n&&e<=r},e.prototype.containData=function(e){return this.scale.contain(this.scale.parse(e))},e.prototype.getExtent=function(){return this._extent.slice()},e.prototype.setExtent=function(e,t){var n=this._extent;n[0]=e,n[1]=t},e.prototype.dataToCoord=function(e,t){var n=this.scale;return e=n.normalize(n.parse(e)),vF(e,vY,bY(this),t)},e.prototype.coordToData=function(e,t){var n=vF(e,bY(this),vY,t);return this.scale.scale(n)},e.prototype.pointToData=function(e,t){},e.prototype.getTicksCoords=function(e){e||={};var t=e.tickModel||this.getTickModel(),n=sA(Uje(this,t,{breakTicks:e.breakTicks,pruneByBreak:e.pruneByBreak}).ticks,function(e){return{coord:this.dataToCoord(bJ(this.scale,e)),tick:e}},this),r=t.get(`alignWithLabel`),i=nMe(this,n,r);return sA(n,function(e){return{coord:e.coord,tickValue:e.tick.value,onBand:i}})},e.prototype.getMinorTicksCoords=function(){if(Uq(this.scale))return[];var e=this.model.getModel(`minorTick`).get(`splitNumber`);return e>0&&e<100||(e=5),sA(this.scale.getMinorTicks(e),function(e){return sA(e,function(e){return{coord:this.dataToCoord(e),tickValue:e}},this)},this)},e.prototype.getViewLabels=function(e){return e||=lY(cY.determine),Hje(this,e).labels},e.prototype.getLabelModel=function(){return this.model.getModel(`axisLabel`)},e.prototype.getTickModel=function(){return this.model.getModel(`axisTick`)},e.prototype.getBandWidth=function(){return _Y(this,{min:1}).w},e.prototype.calculateCategoryInterval=function(e){return e||=lY(cY.determine),Xje(this,e)},e}();function bY(e){var t=e.getExtent();if(e.onBand){var n=(t[1]-t[0])/e.scale.count()/2;t[0]+=n,t[1]-=n}return t}function nMe(e,t,n){var r=t.length;if(!e.onBand||n||!r)return!1;var i=_Y(e).w;if(!i)return!1;Q(t,function(e){e.coord-=i/2});var a=e.scale.getExtent(),o=t[r-1];return o.tick.offInterval&&t.pop(),t.push({coord:o.coord+i,tick:{value:a[1]+1}}),!0}function rMe(e){var t=sH.extend(e);return sH.registerClass(t),t}function iMe(e){var t=dW.extend(e);return dW.registerClass(t),t}function aMe(e){var t=sW.extend(e);return sW.registerClass(t),t}function oMe(e){var t=mW.extend(e);return mW.registerClass(t),t}var xY=Math.PI*2,SY=uL.CMD,sMe=[`top`,`right`,`bottom`,`left`];function cMe(e,t,n,r,i){var a=n.width,o=n.height;switch(e){case`top`:r.set(n.x+a/2,n.y-t),i.set(0,-1);break;case`bottom`:r.set(n.x+a/2,n.y+o+t),i.set(0,1);break;case`left`:r.set(n.x-t,n.y+o/2),i.set(-1,0);break;case`right`:r.set(n.x+a+t,n.y+o/2),i.set(1,0);break}}function lMe(e,t,n,r,i,a,o,s,c){o-=e,s-=t;var l=Math.sqrt(o*o+s*s);o/=l,s/=l;var u=o*n+e,d=s*n+t;if(Math.abs(r-i)%xY<1e-4)return c[0]=u,c[1]=d,l-n;if(a){var f=r;r=fL(i),i=fL(f)}else r=fL(r),i=fL(i);r>i&&(i+=xY);var p=Math.atan2(s,o);if(p<0&&(p+=xY),p>=r&&p<=i||p+xY>=r&&p+xY<=i)return c[0]=u,c[1]=d,l-n;var m=n*Math.cos(r)+e,h=n*Math.sin(r)+t,g=n*Math.cos(i)+e,_=n*Math.sin(i)+t,v=(m-o)*(m-o)+(h-s)*(h-s),y=(g-o)*(g-o)+(_-s)*(_-s);return v0){t=t/180*Math.PI,EY.fromArray(e[0]),DY.fromArray(e[1]),OY.fromArray(e[2]),Vj.sub(kY,EY,DY),Vj.sub(AY,OY,DY);var n=kY.len(),r=AY.len();if(!(n<.001||r<.001)){kY.scale(1/n),AY.scale(1/r);var i=kY.dot(AY);if(Math.cos(t)1&&Vj.copy(NY,OY),NY.toArray(e[1])}}}}function fMe(e,t,n){if(n<=180&&n>0){n=n/180*Math.PI,EY.fromArray(e[0]),DY.fromArray(e[1]),OY.fromArray(e[2]),Vj.sub(kY,DY,EY),Vj.sub(AY,OY,DY);var r=kY.len(),i=AY.len();if(!(r<.001||i<.001)&&(kY.scale(1/r),AY.scale(1/i),kY.dot(t)=o)Vj.copy(NY,OY);else{NY.scaleAndAdd(AY,a/Math.tan(Math.PI/2-s));var c=OY.x===DY.x?(NY.y-DY.y)/(OY.y-DY.y):(NY.x-DY.x)/(OY.x-DY.x);if(isNaN(c))return;c<0?Vj.copy(NY,DY):c>1&&Vj.copy(NY,OY)}NY.toArray(e[1])}}}function FY(e,t,n,r){var i=n===`normal`,a=i?e:e.ensureState(n);a.ignore=t;var o=r.get(`smooth`);o=o===!0?.3:Math.max(+o,0)||0,a.shape=a.shape||{},a.shape.smooth=o;var s=r.getModel(`lineStyle`).getLineStyle();i?e.useStyle(s):a.style=s}function pMe(e,t){var n=t.smooth,r=t.points;if(r)if(e.moveTo(r[0][0],r[0][1]),n>0&&r.length>=3){var i=oj(r[0],r[1]),a=oj(r[1],r[2]);if(!i||!a){e.lineTo(r[1][0],r[1][1]),e.lineTo(r[2][0],r[2][1]);return}var o=Math.min(i,a)*n,s=lj([],r[1],r[0],o/i),c=lj([],r[1],r[2],o/a),l=lj([],s,c,.5);e.bezierCurveTo(s[0],s[1],s[0],s[1],l[0],l[1]),e.bezierCurveTo(c[0],c[1],c[0],c[1],r[2][0],r[2][1])}else for(var u=1;u0&&i&&S(-d/a,0,a);var g=e[0],_=e[a-1],v,y;b(),v<0&&C(-v,.8),y<0&&C(y,.8),b(),x(v,y,1),x(y,v,-1),b(),v<0&&w(-v),y<0&&w(y);function b(){v=g.rect[o]-n,y=r-_.rect[o]-_.rect[s]}function x(e,t,n){if(e<0){var r=Math.min(t,-e);if(r>0){S(r*n,0,a);var i=r+e;i<0&&C(-i*n,1)}else C(-e*n,1)}}function S(t,n,r){t!==0&&(u=!0);for(var i=n;i0)for(var c=0;c0;c--){var f=r[c-1]*d;S(-f,c,a)}}}function w(e){var t=e<0?-1:1;e=Math.abs(e);for(var n=Math.ceil(e/(a-1)),r=0;r0?S(n,0,r+1):S(-n,a-r-1,a),e-=n,e<=0)return}return u}function gMe(e){for(var t=0;t=0&&n.attr(i.oldLayoutSelect),rA(u,`emphasis`)>=0&&n.attr(i.oldLayoutEmphasis)),bz(n,c,t,s)}else if(n.attr(c),!kB(n).valueAnimation){var d=OA(n.style.opacity,1);n.style.opacity=0,xz(n,{style:{opacity:d}},t,s)}if(i.oldLayout=c,n.states.select){var f=i.oldLayoutSelect={};tX(f,c,nX),tX(f,n.states.select,nX)}if(n.states.emphasis){var p=i.oldLayoutEmphasis={};tX(p,c,nX),tX(p,n.states.emphasis,nX)}jB(n,s,l,t,t)}if(r&&!r.ignore&&!r.invisible){var i=yMe(r),a=i.oldLayout,m={points:r.shape.points};a?(r.attr({shape:a}),bz(r,{shape:m},t)):(r.setShape(m),r.style.strokePercent=0,xz(r,{style:{strokePercent:1}},t)),i.oldLayout=m}},e}(),rX=eI();function xMe(e){e.registerUpdateLifecycle(`series:beforeupdate`,function(e,t,n){var r=rX(t).labelManager;r||=rX(t).labelManager=new bMe,r.clearLabels()}),e.registerUpdateLifecycle(`series:layoutlabels`,function(e,t,n){var r=rX(t).labelManager;Q(n.updatedSeries,function(e){r.addLabelsOfSeries(t.getViewOfSeriesModel(e))}),r.updateLayoutConfig(t),r.layout(t),r.processLabelsOverall()})}var iX=Math.sin,aX=Math.cos,oX=Math.PI,sX=Math.PI*2,SMe=180/oX,cX=function(){function e(){}return e.prototype.reset=function(e){this._start=!0,this._d=[],this._str=``,this._p=10**(e||4)},e.prototype.moveTo=function(e,t){this._add(`M`,e,t)},e.prototype.lineTo=function(e,t){this._add(`L`,e,t)},e.prototype.bezierCurveTo=function(e,t,n,r,i,a){this._add(`C`,e,t,n,r,i,a)},e.prototype.quadraticCurveTo=function(e,t,n,r){this._add(`Q`,e,t,n,r)},e.prototype.arc=function(e,t,n,r,i,a){this.ellipse(e,t,n,n,0,r,i,a)},e.prototype.ellipse=function(e,t,n,r,i,a,o,s){var c=o-a,l=!s,u=Math.abs(c),d=wN(u-sX)||(l?c>=sX:-c>=sX),f=c>0?c%sX:c%sX+sX,p=!1;p=d?!0:wN(u)?!1:f>=oX==!!l;var m=e+n*aX(a),h=t+r*iX(a);this._start&&this._add(`M`,m,h);var g=Math.round(i*SMe);if(d){var _=1/this._p,v=(l?1:-1)*(sX-_);this._add(`A`,n,r,g,1,+l,e+n*aX(a+v),t+r*iX(a+v)),_>.01&&this._add(`A`,n,r,g,0,+l,m,h)}else{var y=e+n*aX(o),b=t+r*iX(o);this._add(`A`,n,r,g,+p,+l,y,b)}},e.prototype.rect=function(e,t,n,r){this._add(`M`,e,t),this._add(`l`,n,0),this._add(`l`,0,r),this._add(`l`,-n,0),this._add(`Z`)},e.prototype.closePath=function(){this._d.length>0&&this._add(`Z`)},e.prototype._add=function(e,t,n,r,i,a,o,s,c){for(var l=[],u=this._p,d=1;d`}function MMe(e){return``}function hX(e,t){t||={};var n=t.newline?` +`:``;function r(e){var t=e.children,i=e.tag,a=e.attrs,o=e.text;return jMe(i,a)+(i===`style`?o||``:xj(o))+(t?``+n+sA(t,function(e){return r(e)}).join(n)+n:``)+MMe(i)}return r(e)}function NMe(e,t,n){n||={};var r=n.newline?` +`:``,i=` {`+r,a=r+`}`,o=sA(dA(e),function(t){return t+i+sA(dA(e[t]),function(n){return n+`:`+e[t][n]+`;`}).join(r)+a}).join(r),s=sA(dA(t),function(e){return`@keyframes `+e+i+sA(dA(t[e]),function(n){return n+i+sA(dA(t[e][n]),function(r){var i=t[e][n][r];return r===`d`&&(i=`path("`+i+`")`),r+`:`+i+`;`}).join(r)+a}).join(r)+a}).join(r);return!o&&!s?``:[``].join(r)}function gX(e){return{zrId:e,shadowCache:{},patternCache:{},gradientCache:{},clipPathCache:{},defs:{},cssNodes:{},cssAnims:{},cssStyleCache:{},cssAnimIdx:0,shadowIdx:0,gradientIdx:0,patternIdx:0,clipPathIdx:0}}function _X(e,t,n,r){return mX(`svg`,`root`,{width:e,height:t,xmlns:dX,"xmlns:xlink":fX,version:`1.1`,baseProfile:`full`,viewBox:r?`0 0 `+e+` `+t:!1},n)}var PMe=0;function vX(){return PMe++}var yX={cubicIn:`0.32,0,0.67,0`,cubicOut:`0.33,1,0.68,1`,cubicInOut:`0.65,0,0.35,1`,quadraticIn:`0.11,0,0.5,0`,quadraticOut:`0.5,1,0.89,1`,quadraticInOut:`0.45,0,0.55,1`,quarticIn:`0.5,0,0.75,0`,quarticOut:`0.25,1,0.5,1`,quarticInOut:`0.76,0,0.24,1`,quinticIn:`0.64,0,0.78,0`,quinticOut:`0.22,1,0.36,1`,quinticInOut:`0.83,0,0.17,1`,sinusoidalIn:`0.12,0,0.39,0`,sinusoidalOut:`0.61,1,0.88,1`,sinusoidalInOut:`0.37,0,0.63,1`,exponentialIn:`0.7,0,0.84,0`,exponentialOut:`0.16,1,0.3,1`,exponentialInOut:`0.87,0,0.13,1`,circularIn:`0.55,0,1,0.45`,circularOut:`0,0.55,0.45,1`,circularInOut:`0.85,0,0.15,1`},bX=`transform-origin`;function FMe(e,t,n){var r=Z({},e.shape);Z(r,t),e.buildPath(n,r);var i=new cX;return i.reset(NN(e)),n.rebuildPath(i,1),i.generateStr(),i.getStr()}function IMe(e,t){var n=t.originX,r=t.originY;(n||r)&&(e[bX]=n+`px `+r+`px`)}var LMe={fill:`fill`,opacity:`opacity`,lineWidth:`stroke-width`,lineDashOffset:`stroke-dashoffset`};function xX(e,t){var n=t.zrId+`-ani-`+t.cssAnimIdx++;return t.cssAnims[n]=e,n}function RMe(e,t,n){var r=e.shape.paths,i={},a,o;if(Q(r,function(e){var t=gX(n.zrId);t.animation=!0,CX(e,{},t,!0);var r=t.cssAnims,s=t.cssNodes,c=dA(r),l=c.length;if(l){o=c[l-1];var u=r[o];for(var d in u){var f=u[d];i[d]=i[d]||{d:``},i[d].d+=f.d||``}for(var p in s){var m=s[p].animation;m.indexOf(o)>=0&&(a=m)}}}),a){t.d=!1;var s=xX(i,n);return a.replace(o,s)}}function SX(e){return gA(e)?yX[e]?`cubic-bezier(`+yX[e]+`)`:YM(e)?e:``:``}function CX(e,t,n,r){var i=e.animators,a=i.length,o=[];if(e instanceof iz){var s=RMe(e,t,n);if(s)o.push(s);else if(!a)return}else if(!a)return;for(var c={},l=0;l0}).length)return xX(l,n)+` `+i[0]+` both`}for(var g in c){var s=h(c[g]);s&&o.push(s)}if(o.length){var _=n.zrId+`-cls-`+vX();n.cssNodes[`.`+_]={animation:o.join(`,`)},t.class=_}}function zMe(e,t,n){if(!e.ignore)if(e.isSilent()){var r={"pointer-events":`none`};wX(r,t,n,!0)}else{var i=e.states.emphasis&&e.states.emphasis.style?e.states.emphasis.style:{},a=i.fill;if(!a){var o=e.style&&e.style.fill,s=e.states.select&&e.states.select.style&&e.states.select.style.fill,c=e.currentStates.indexOf(`select`)>=0&&s||o;c&&(a=bN(c))}var l=i.lineWidth;if(l){var u=!i.strokeNoScale&&e.transform?e.transform[0]:1;l/=u}var r={cursor:`pointer`};a&&(r.fill=a),i.stroke&&(r.stroke=i.stroke),l&&(r[`stroke-width`]=l),wX(r,t,n,!0)}}function wX(e,t,n,r){var i=JSON.stringify(e),a=n.cssStyleCache[i];a||(a=n.zrId+`-cls-`+vX(),n.cssStyleCache[i]=a,n.cssNodes[`.`+a+(r?`:hover`:``)]=e),t.class=t.class?t.class+` `+a:a}var TX=Math.round;function EX(e){return e&&gA(e.src)}function DX(e){return e&&hA(e.toDataURL)}function OX(e,t,n,r){DMe(function(i,a){var o=i===`fill`||i===`stroke`;o&&jN(a)?IX(t,e,i,r):o&&ON(a)?LX(n,e,i,r):e[i]=a,o&&r.ssr&&a===`none`&&(e[`pointer-events`]=`visible`)},t,n,!1),KMe(n,e,r)}function kX(e,t){var n=iF(t);n&&(n.each(function(t,n){t!=null&&(e[(`ecmeta_`+n).toLowerCase()]=t+``)}),t.isSilent()&&(e[AMe+`silent`]=`true`))}function AX(e){return wN(e[0]-1)&&wN(e[1])&&wN(e[2])&&wN(e[3]-1)}function BMe(e){return wN(e[4])&&wN(e[5])}function jX(e,t,n){if(t&&!(BMe(t)&&AX(t))){var r=n?10:1e4;e.transform=AX(t)?`translate(`+TX(t[4]*r)/r+` `+TX(t[5]*r)/r+`)`:qSe(t)}}function MX(e,t,n){for(var r=e.points,i=[],a=0;a`u`){var g=`Image width/height must been given explictly in svg-ssr renderer.`;MA(f,g),MA(p,g)}else if(f==null||p==null){var _=function(e,t){if(e){var n=e.elm,r=f||t.width,i=p||t.height;e.tag===`pattern`&&(l?(i=1,r/=a.width):u&&(r=1,i/=a.height)),e.attrs.width=r,e.attrs.height=i,n&&(n.setAttribute(`width`,r),n.setAttribute(`height`,i))}},v=TI(m,null,e,function(e){c||_(S,e),_(d,e)});v&&v.width&&v.height&&(f||=v.width,p||=v.height)}d=mX(`image`,`img`,{href:m,width:f,height:p}),o.width=f,o.height=p}else i.svgElement&&(d=Qk(i.svgElement),o.width=i.svgWidth,o.height=i.svgHeight);if(d){var y,b;c?y=b=1:l?(b=1,y=o.width/a.width):u?(y=1,b=o.height/a.height):o.patternUnits=`userSpaceOnUse`,y!=null&&!isNaN(y)&&(o.width=y),b!=null&&!isNaN(b)&&(o.height=b);var x=PN(i);x&&(o.patternTransform=x);var S=mX(`pattern`,``,o,[d]),C=hX(S),w=r.patternCache,T=w[C];T||(T=r.zrId+`-p`+r.patternIdx++,w[C]=T,o.id=T,S=r.defs[T]=mX(`pattern`,T,o,[d])),t[n]=MN(T)}}function qMe(e,t,n){var r=n.clipPathCache,i=n.defs,a=r[e.id];if(!a){a=n.zrId+`-c`+n.clipPathIdx++;var o={id:a};r[e.id]=a,i[a]=mX(`clipPath`,a,o,[PX(e,n)])}t[`clip-path`]=MN(a)}function RX(e){return document.createTextNode(e)}function zX(e,t,n){e.insertBefore(t,n)}function BX(e,t){e.removeChild(t)}function VX(e,t){e.appendChild(t)}function HX(e){return e.parentNode}function UX(e){return e.nextSibling}function WX(e,t){e.textContent=t}var GX=58,JMe=120,YMe=mX(``,``);function KX(e){return e===void 0}function qX(e){return e!==void 0}function XMe(e,t,n){for(var r={},i=t;i<=n;++i){var a=e[i].key;a!==void 0&&(r[a]=i)}return r}function JX(e,t){var n=e.key===t.key;return e.tag===t.tag&&n}function YX(e){var t,n=e.children,r=e.tag;if(qX(r)){var i=e.elm=pX(r);if(QX(YMe,e),mA(n))for(t=0;ta?(m=n[c+1]==null?null:n[c+1].elm,XX(e,m,n,i,c)):ZX(e,t,r,a))}function $X(e,t){var n=t.elm=e.elm,r=e.children,i=t.children;e!==t&&(QX(e,t),KX(t.text)?qX(r)&&qX(i)?r!==i&&ZMe(n,r,i):qX(i)?(qX(e.text)&&WX(n,``),XX(n,null,i,0,i.length-1)):qX(r)?ZX(n,r,0,r.length-1):qX(e.text)&&WX(n,``):e.text!==t.text&&(qX(r)&&ZX(n,r,0,r.length-1),WX(n,t.text)))}function QMe(e,t){if(JX(e,t))$X(e,t);else{var n=e.elm,r=HX(n);YX(t),r!==null&&(zX(r,t.elm,UX(n)),ZX(r,[e],0,0))}return t}var $Me=0,eNe=function(){function e(e,t,n){if(this.type=`svg`,this.configLayer=tNe(`configLayer`),this.storage=t,this._opts=n=Z({},n),this.root=e,this._id=`zr`+$Me++,this._oldVNode=_X(n.width,n.height),e&&!n.ssr){var r=this._viewport=document.createElement(`div`);r.style.cssText=`position:relative;overflow:hidden`;var i=this._svgDom=this._oldVNode.elm=pX(`svg`);QX(null,this._oldVNode),r.appendChild(i),e.appendChild(r)}this.resize(n.width,n.height)}return e.prototype.getType=function(){return this.type},e.prototype.getViewportRoot=function(){return this._viewport},e.prototype.getViewportRootOffset=function(){var e=this.getViewportRoot();if(e)return{offsetLeft:e.offsetLeft||0,offsetTop:e.offsetTop||0}},e.prototype.getSvgDom=function(){return this._svgDom},e.prototype.refresh=function(){if(this.root){var e=this.renderToVNode({willUpdate:!0});e.attrs.style=`position:absolute;left:0;top:0;user-select:none`,QMe(this._oldVNode,e),this._oldVNode=e}},e.prototype.renderOneToVNode=function(e){return FX(e,gX(this._id))},e.prototype.renderToVNode=function(e){e||={};var t=this.storage.getDisplayList(!0),n=this._width,r=this._height,i=gX(this._id);i.animation=e.animation,i.willUpdate=e.willUpdate,i.compress=e.compress,i.emphasis=e.emphasis,i.ssr=this._opts.ssr;var a=[],o=this._bgVNode=nNe(n,r,this._backgroundColor,i);o&&a.push(o);var s=e.compress?null:this._mainVNode=mX(`g`,`main`,{},[]);this._paintList(t,i,s?s.children:a),s&&a.push(s);var c=sA(dA(i.defs),function(e){return i.defs[e]});if(c.length&&a.push(mX(`defs`,`defs`,{},c)),e.animation){var l=NMe(i.cssNodes,i.cssAnims,{newline:!0});if(l){var u=mX(`style`,`stl`,{},[],l);a.push(u)}}return _X(n,r,a,e.useViewBox)},e.prototype.renderToString=function(e){return e||={},hX(this.renderToVNode({animation:OA(e.cssAnimation,!0),emphasis:OA(e.cssEmphasis,!0),willUpdate:!1,compress:!0,useViewBox:OA(e.useViewBox,!0)}),{newline:!0})},e.prototype.setBackgroundColor=function(e){this._backgroundColor=e},e.prototype.getSvgRoot=function(){return this._mainVNode&&this._mainVNode.elm},e.prototype._paintList=function(e,t,n){for(var r=e.length,i=[],a=0,o,s,c=0,l=0;l=0&&!(d&&s&&d[m]===s[m]);m--);for(var h=p-1;h>m;h--)a--,o=i[a-1];for(var g=m+1;g=a}}for(var l=nZ(this),u=l.startIdx;u=0)&&(a=!0)}),!(!a&&!i.__dirty)){var o=n._opts.useDirtyRect&&!tZ(i)?i.createRepaintRects(e,t,n._width,n._height):null,s=n._i.layerStack[0],c=!0;if(i.__dirty){c=!1,i.__dirty=!1;var l=i.zlevel===s.zl&&i.zlevel2===s.zl2?n._backgroundColor:null;i.clear(!1,l,o)}uZ(i,function(t){var a=n._paintPerCursor(i,t,e,o,c);r&&=a})}},gZ),Rk.wxa&&fZ(this._i,function(e){e&&e.ctx&&e.ctx.draw&&e.ctx.draw()}),r},e.prototype._paintPerCursor=function(e,t,n,r,i){var a=e.ctx;if(r)if(!r.length)t.drawIdx=t.endIdx;else for(var o=this.dpr,s=0;s=t.endIdx},e.prototype._paintPerCursorInRect=function(e,t,n,r,i){for(var a={inHover:!1,allClipped:!1,prevEl:null,viewWidth:this._width,viewHeight:this._height,beforeBrushParam:{contentRetained:i}},o=e.ctx,s=tZ(e),c=s&&zk.getTime(),l=t.drawIdx,u=t.notClearIdx,d=u>=0?Math.min(u,l):l;d15){d++;break}}}kG(o,a),t.drawIdx=Math.max(d,l)},e.prototype.getLayer=function(e,t){return this._ensureLayer(e,0,t)},e.prototype._ensureLayer=function(e,t,n){t||=0;var r=this._singleCanvas;r&&!this._needsManuallyCompositing&&(e=aZ,t=0);var i=dZ(this._i,e)[t];return i||(i=cZ(`zr_`+e+`.`+t,this,e,t),this._layerConfig[e]&&$k(i,this._layerConfig[e],!0),(n||r&&e!==aZ)&&(i.virtual=!0),this._insertLayer(i,e,t,!1),i.initContext()),i},e.prototype.insertLayer=function(e,t){this._insertLayer(t,e,0,!1)},e.prototype._insertLayer=function(e,t,n,r){var i=this._i,a=i.layers,o=i.layerStack,s=this._domRoot,c=null;if(!(a[t]&&a[t][n])&&aNe(e)){for(var l=o.length,u=0;u0&&(c=dZ(i,o[u-1].zl)[o[u-1].zl2]),o.splice(u,0,{zl:t,zl2:n}),dZ(i,t)[n]=e,!r&&!e.virtual)if(c){var d=c.dom;d.nextSibling?s.insertBefore(e.dom,d.nextSibling):s.appendChild(e.dom)}else s.firstChild?s.insertBefore(e.dom,s.firstChild):s.appendChild(e.dom);e.painter||=this}},e.prototype.eachLayer=function(e,t){return fZ(this._i,function(n,r){e.call(t,n,r)})},e.prototype.eachBuiltinLayer=function(e,t){return fZ(this._i,function(n,r){e.call(t,n,r)},pZ)},e.prototype.eachOtherLayer=function(e,t){return fZ(this._i,function(n,r){e.call(t,n,r)},mZ)},e.prototype.getLayers=function(){var e={};return fZ(this._i,function(t,n,r){e[t.id]=t}),e},e.prototype._updateLayerStatus=function(e,t){var n=this;if(n._singleCanvas)for(var r=1;r=0;a--){var o=i.get(r[a]);if(!o.used)t.__dirty=!0,i.removeKey(r[a]),r.splice(a,1);else{var s=o.endIdxNew;(tZ(t)?s=0;r--){var i=t[r];if(i.zl===e){var a=n[e][i.zl2];if(a.__builtin__)continue;if(t.splice(r,1),n[e][i.zl2]=void 0,!a.virtual){var o=a.dom.parentNode;o&&o.removeChild(a.dom)}}}},e.prototype.resize=function(e,t){if(this._domRoot.style){var n=this._domRoot;n.style.display=`none`;var r=this._opts,i=this.root;e!=null&&(r.width=e),t!=null&&(r.height=t),e=lG(i,0,r),t=lG(i,1,r),n.style.display=``,(this._width!==e||t!==this._height)&&(n.style.width=e+`px`,n.style.height=t+`px`,fZ(this._i,function(n){n.resize(e,t)}),this.refresh({paintAll:!0})),this._width=e,this._height=t}else{if(e==null||t==null)return;this._width=e,this._height=t,this._ensureLayer(aZ).resize(e,t)}return this},e.prototype.clearLayer=function(e){Q(this._i.layers[e],function(e){e&&!e.__builtin__&&e.clear()})},e.prototype.dispose=function(){this.root.innerHTML=``,this.root=this.storage=this._domRoot=this._i=null},e.prototype.getRenderedCanvas=function(e){if(e||={},this._singleCanvas&&!this._compositeManually)return this._i.layers[aZ][0].dom;var t=new rZ(`image`,this,e.pixelRatio||this.dpr);t.initContext(),t.clear(!1,e.backgroundColor||this._backgroundColor);var n=t.ctx;if(e.pixelRatio<=this.dpr){this.refresh();var r=t.dom.width,i=t.dom.height;fZ(this._i,function(e){e.__builtin__?n.drawImage(e.dom,0,0,r,i):e.renderToCanvas&&(n.save(),e.renderToCanvas(n),n.restore())})}else{for(var a={inHover:!1,viewWidth:this._width,viewHeight:this._height,beforeBrushParam:{}},o=this.storage.getDisplayList(!0),s=0,c=o.length;s-1&&(s.style.stroke=s.style.fill,s.style.fill=$.color.neutral00,s.style.lineWidth=2),t},t.type=`series.line`,t.dependencies=[`grid`,`polar`],t.defaultOption={z:3,coordinateSystem:`cartesian2d`,legendHoverLink:!0,clip:!0,label:{position:`top`},endLabel:{show:!1,valueAnimation:!0,distance:8},lineStyle:{width:2,type:`solid`},emphasis:{scale:!0},step:!1,smooth:!1,smoothMonotone:null,symbol:`emptyCircle`,symbolSize:6,symbolRotate:null,showSymbol:!0,showAllSymbol:`auto`,connectNulls:!1,sampling:`none`,animationEasing:`linear`,progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:`clone`},triggerLineEvent:!1,triggerEvent:!1},t}(sW);function _Z(e,t){var n=e.mapDimensionsAll(`defaultedLabel`),r=n.length;if(r===1){var i=xU(e,t,n[0]);return i==null?null:i+``}else if(r){for(var a=[],o=0;o=0&&r.push(t[a])}return r.join(` `)}var yZ=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this)||this;return a.updateData(t,n,r,i),a}return t.prototype._createSymbol=function(e,t,n,r,i,a){this.removeAll();var o=rG(e,-1,-1,2,2,null,a);o.attr({z2:OA(i,100),culling:!0,scaleX:r[0]/2,scaleY:r[1]/2}),o.drift=fNe,this._symbolType=e,this.add(o)},t.prototype.stopSymbolAnimation=function(e){this.childAt(0).stopAnimation(null,e)},t.prototype.getSymbolType=function(){return this._symbolType},t.prototype.getSymbolPath=function(){return this.childAt(0)},t.prototype.highlight=function(){$L(this.childAt(0))},t.prototype.downplay=function(){eR(this.childAt(0))},t.prototype.setZ=function(e,t){var n=this.childAt(0);n.zlevel=e,n.z=t},t.prototype.setDraggable=function(e,t){var n=this.childAt(0);n.draggable=e,n.cursor=!t&&e?`move`:n.cursor},t.prototype.updateData=function(e,n,r,i){this.silent=!1;var a=e.getItemVisual(n,`symbol`)||`circle`,o=e.hostModel,s=t.getSymbolSize(e,n),c=t.getSymbolZ2(e,n),l=a!==this._symbolType,u=i&&i.disableAnimation;if(l){var d=e.getItemVisual(n,`symbolKeepAspect`);this._createSymbol(a,e,n,s,c,d)}else{var f=this.childAt(0);f.silent=!1;var p={scaleX:s[0]/2,scaleY:s[1]/2};u?f.attr(p):bz(f,p,o,n),Ez(f)}if(this._updateCommon(e,n,s,r,i),l){var f=this.childAt(0);if(!u){var p={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:f.style.opacity}};f.scaleX=f.scaleY=0,f.style.opacity=0,xz(f,p,o,n)}}u&&this.childAt(0).stopAnimation(`leave`)},t.prototype._updateCommon=function(e,t,n,r,i){var a=this.childAt(0),o=e.hostModel,s,c,l,u,d,f,p,m,h;if(r&&(s=r.emphasisItemStyle,c=r.blurItemStyle,l=r.selectItemStyle,u=r.focus,d=r.blurScope,p=r.labelStatesModels,m=r.hoverScale,h=r.cursorStyle,f=r.emphasisDisabled),!r||e.hasItemOption){var g=r&&r.itemModel?r.itemModel:e.getItemModel(t),_=g.getModel(`emphasis`);s=_.getModel(`itemStyle`).getItemStyle(),l=g.getModel([`select`,`itemStyle`]).getItemStyle(),c=g.getModel([`blur`,`itemStyle`]).getItemStyle(),u=_.get(`focus`),d=_.get(`blurScope`),f=_.get(`disabled`),p=xB(g),m=_.getShallow(`scale`),h=g.getShallow(`cursor`)}var v=e.getItemVisual(t,`symbolRotate`);a.attr(`rotation`,(v||0)*Math.PI/180||0);var y=aG(e.getItemVisual(t,`symbolOffset`),n);y&&(a.x=y[0],a.y=y[1]),h&&a.attr(`cursor`,h);var b=e.getItemVisual(t,`style`),x=b.fill;if(a instanceof CL){var S=a.style;a.useStyle(Z({image:S.image,x:S.x,y:S.y,width:S.width,height:S.height},b))}else a.__isEmptyBrush?a.useStyle(Z({},b)):a.useStyle(b),a.style.decal=null,a.setColor(x,i&&i.symbolInnerColor),a.style.strokeNoScale=!0;var C=e.getItemVisual(t,`liftZ`),w=this._z2;C==null?w!=null&&(a.z2=w,this._z2=null):w??(this._z2=a.z2,a.z2+=C);var T=i&&i.useNameLabel;bB(a,p,{labelFetcher:o,labelDataIndex:t,defaultText:E,inheritColor:x,defaultOpacity:b.opacity});function E(t){return T?e.getName(t):_Z(e,t)}this._sizeX=n[0]/2,this._sizeY=n[1]/2;var D=a.ensureState(`emphasis`);D.style=s,a.ensureState(`select`).style=l,a.ensureState(`blur`).style=c;var O=m==null||m===!0?Math.max(1.1,3/this._sizeY):isFinite(m)&&m>0?+m:1;D.scaleX=this._sizeX*O,D.scaleY=this._sizeY*O,this.setSymbolScale(1),dR(this,u,d,f)},t.prototype.setSymbolScale=function(e){this.scaleX=this.scaleY=e},t.prototype.fadeOut=function(e,t,n){var r=this.childAt(0),i=jL(this).dataIndex,a=n&&n.animation;if(this.silent=r.silent=!0,n&&n.fadeLabel){var o=r.getTextContent();o&&Cz(o,{style:{opacity:0}},t,{dataIndex:i,removeOpt:a,cb:function(){r.removeTextContent()}})}else r.removeTextContent();Cz(r,{style:{opacity:0},scaleX:0,scaleY:0},t,{dataIndex:i,cb:e,removeOpt:a})},t.getSymbolSize=function(e,t){return iG(e.getItemVisual(t,`symbolSize`))},t.getSymbolZ2=function(e,t){return e.getItemVisual(t,`z2`)},t}(QP);function fNe(e,t){this.parent.drift(e,t)}function bZ(e,t,n,r){return t&&!isNaN(t[0])&&!isNaN(t[1])&&!(r&&r.isIgnore&&r.isIgnore(n))&&!(r&&r.clipShape&&!r.clipShape.contain(t[0],t[1]))&&e.getItemVisual(n,`symbol`)!==`none`}function xZ(e){return e!=null&&!yA(e)&&(e={isIgnore:e}),e||{}}function SZ(e){var t=e.hostModel,n=t.getModel(`emphasis`);return{emphasisItemStyle:n.getModel(`itemStyle`).getItemStyle(),blurItemStyle:t.getModel([`blur`,`itemStyle`]).getItemStyle(),selectItemStyle:t.getModel([`select`,`itemStyle`]).getItemStyle(),focus:n.get(`focus`),blurScope:n.get(`blurScope`),emphasisDisabled:n.get(`disabled`),hoverScale:n.get(`scale`),labelStatesModels:xB(t),cursorStyle:t.get(`cursor`)}}function CZ(e,t,n,r,i,a,o){var s=new e(t,n,r,i);return s.setPosition(a),t.setItemGraphicEl(n,s),o.add(s),s}var wZ=function(){function e(e){this.group=new QP,this._SymbolCtor=e||yZ}return e.prototype.updateData=function(e,t){this._progressiveEls=null,t=xZ(t);var n=this.group,r=e.hostModel,i=this._data,a=this._SymbolCtor,o=t.disableAnimation,s=this._seriesScope=SZ(e),c={disableAnimation:o},l=t.getSymbolPoint||function(t){return e.getItemLayout(t)};i||n.removeAll(),e.diff(i).add(function(r){var i=l(r);bZ(e,i,r,t)&&CZ(a,e,r,s,c,i,n)}).update(function(u,d){var f=i.getItemGraphicEl(d),p=l(u);if(!bZ(e,p,u,t)){n.remove(f);return}var m=e.getItemVisual(u,`symbol`)||`circle`,h=f&&f.getSymbolType&&f.getSymbolType();if(!f||h&&h!==m)n.remove(f),f=new a(e,u,s,c),f.setPosition(p);else{f.updateData(e,u,s,c);var g={x:p[0],y:p[1]};o?f.attr(g):bz(f,g,r)}n.add(f),e.setItemGraphicEl(u,f)}).remove(function(e){var t=i.getItemGraphicEl(e);t&&t.fadeOut(function(){n.remove(t)},r)}).execute(),this._getSymbolPoint=l,this._data=e},e.prototype.updateLayout=function(e){var t=this._data;if(t)for(var n=this,r=t.getStore(),i=0,a=r.count();i0?n=r[0]:r[1]<0&&(n=r[1]),n}function EZ(e,t,n,r){var i=NaN;e.stacked&&(i=n.get(n.getCalculationInfo(`stackedOverDimension`),r)),isNaN(i)&&(i=e.valueStart);var a=e.baseDataOffset,o=[];return o[a]=n.get(e.baseDim,r),o[1-a]=i,t.dataToPoint(o)}function DZ(e,t){return!isFinite(e)||!isFinite(t)}var mNe=typeof Float32Array<`u`?Float32Array:void 0,hNe=typeof Float64Array<`u`?Float64Array:void 0;function OZ(e){return kZ({ctor:mNe},e).arr}function kZ(e,t){var n=e.arr,r=e.ctor;if(t>kF&&(t=kF),!n||e.typed&&n.length=i||h<0)break;if(DZ(_,v)){if(c){h+=a;continue}break}if(h===n)e[a>0?`moveTo`:`lineTo`](_,v),d=_,f=v;else{var y=_-l,b=v-u;if(y*y+b*b<.5){h+=a;continue}if(o>0){for(var x=h+a,S=t[x*2],C=t[x*2+1];S===_&&C===v&&g=r||DZ(S,C))p=_,m=v;else{E=S-l,D=C-u;var A=_-l,j=S-_,M=v-u,N=C-v,P=void 0,F=void 0;if(s===`x`){P=Math.abs(A),F=Math.abs(j);var I=E>0?1:-1;p=_-I*P*o,m=v,O=_+I*F*o,k=v}else if(s===`y`){P=Math.abs(M),F=Math.abs(N);var L=D>0?1:-1;p=_,m=v-L*P*o,O=_,k=v+L*F*o}else P=Math.sqrt(A*A+M*M),F=Math.sqrt(j*j+N*N),T=F/(F+P),p=_-E*o*(1-T),m=v-D*o*(1-T),O=_+E*o*T,k=v+D*o*T,O=AZ(O,jZ(S,_)),k=AZ(k,jZ(C,v)),O=jZ(O,AZ(S,_)),k=jZ(k,AZ(C,v)),E=O-_,D=k-v,p=_-E*P/F,m=v-D*P/F,p=AZ(p,jZ(l,_)),m=AZ(m,jZ(u,v)),p=jZ(p,AZ(l,_)),m=jZ(m,AZ(u,v)),E=_-p,D=v-m,O=_+E*F/P,k=v+D*F/P}e.bezierCurveTo(d,f,p,m,_,v),d=O,f=k}else e.lineTo(_,v)}l=_,u=v,h+=a}return g}var NZ=function(){function e(){this.smooth=0,this.smoothConstraint=!0}return e}(),vNe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`ec-polyline`,n}return t.prototype.getDefaultStyle=function(){return{stroke:$.color.neutral99,fill:null}},t.prototype.getDefaultShape=function(){return new NZ},t.prototype.buildPath=function(e,t){var n=t.points,r=0,i=n.length/2;if(t.connectNulls){for(;i>0&&DZ(n[i*2-2],n[i*2-1]);i--);for(;r=0){var _=o?(d-a)*g+a:(u-i)*g+i;return o?[e,_]:[_,e]}i=u,a=d;break;case r.C:u=n[c++],d=n[c++],f=n[c++],p=n[c++],m=n[c++],h=n[c++];var v=o?BM(i,u,f,m,e,s):BM(a,d,p,h,e,s);if(v>0)for(var y=0;y=0){var _=o?RM(a,d,p,h,b):RM(i,u,f,m,b);return o?[e,_]:[_,e]}}i=m,a=h;break}}},t}(xL),yNe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t}(NZ),PZ=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`ec-polygon`,n}return t.prototype.getDefaultShape=function(){return new yNe},t.prototype.buildPath=function(e,t){var n=t.points,r=t.stackedOnPoints,i=0,a=n.length/2,o=t.smoothMonotone;if(t.connectNulls){for(;a>0&&DZ(n[a*2-2],n[a*2-1]);a--);for(;i=0,a=e.fill||$.color.neutral99;KZ(r,t);var o=r.textFill==null;return i?o&&(r.textFill=n.insideFill||$.color.neutral00,!r.textStroke&&n.insideStroke&&(r.textStroke=n.insideStroke),!r.textStroke&&(r.textStroke=a),r.textStrokeWidth??=2):(o&&(r.textFill=e.fill||n.outsideFill||$.color.neutral00),!r.textStroke&&n.outsideStroke&&(r.textStroke=n.outsideStroke)),r.text=t.text,r.rich=t.rich,Q(t.rich,function(e){KZ(e,e)}),r}function KZ(e,t){t&&(UA(t,`fill`)&&(e.textFill=t.fill),UA(t,`stroke`)&&(e.textStroke=t.fill),UA(t,`lineWidth`)&&(e.textStrokeWidth=t.lineWidth),UA(t,`font`)&&(e.font=t.font),UA(t,`fontStyle`)&&(e.fontStyle=t.fontStyle),UA(t,`fontWeight`)&&(e.fontWeight=t.fontWeight),UA(t,`fontSize`)&&(e.fontSize=t.fontSize),UA(t,`fontFamily`)&&(e.fontFamily=t.fontFamily),UA(t,`align`)&&(e.textAlign=t.align),UA(t,`verticalAlign`)&&(e.textVerticalAlign=t.verticalAlign),UA(t,`lineHeight`)&&(e.textLineHeight=t.lineHeight),UA(t,`width`)&&(e.textWidth=t.width),UA(t,`height`)&&(e.textHeight=t.height),UA(t,`backgroundColor`)&&(e.textBackgroundColor=t.backgroundColor),UA(t,`padding`)&&(e.textPadding=t.padding),UA(t,`borderColor`)&&(e.textBorderColor=t.borderColor),UA(t,`borderWidth`)&&(e.textBorderWidth=t.borderWidth),UA(t,`borderRadius`)&&(e.textBorderRadius=t.borderRadius),UA(t,`shadowColor`)&&(e.textBoxShadowColor=t.shadowColor),UA(t,`shadowBlur`)&&(e.textBoxShadowBlur=t.shadowBlur),UA(t,`shadowOffsetX`)&&(e.textBoxShadowOffsetX=t.shadowOffsetX),UA(t,`shadowOffsetY`)&&(e.textBoxShadowOffsetY=t.shadowOffsetY),UA(t,`textShadowColor`)&&(e.textShadowColor=t.textShadowColor),UA(t,`textShadowBlur`)&&(e.textShadowBlur=t.textShadowBlur),UA(t,`textShadowOffsetX`)&&(e.textShadowOffsetX=t.textShadowOffsetX),UA(t,`textShadowOffsetY`)&&(e.textShadowOffsetY=t.textShadowOffsetY))}function qZ(e,t){if(e.length===t.length){for(var n=0;nt){a?n.push(o(a,c,t)):i&&n.push(o(i,c,0),o(i,c,t));break}else i&&=(n.push(o(i,c,0)),null),n.push(c),a=c}return n}function SNe(e,t,n){var r=e.getVisual(`visualMeta`);if(!(!r||!r.length||!e.count())&&t.type===`cartesian2d`){for(var i,a,o=r.length-1;o>=0;o--){var s=e.getDimensionInfo(r[o].dimension);if(i=s&&s.coordDim,i===`x`||i===`y`){a=r[o];break}}if(a){var c=t.getAxis(i),l=sA(a.stops,function(e){return{coord:c.toGlobalCoord(c.dataToCoord(e.value)),color:e.color}}),u=l.length,d=a.outerColors.slice();u&&l[0].coord>l[u-1].coord&&(l.reverse(),d.reverse());var f=xNe(l,i===`x`?n.getWidth():n.getHeight()),p=f.length;if(!p&&u)return l[0].coord<0?d[1]?d[1]:l[u-1].color:d[0]?d[0]:l[0].color;var m=10,h=f[0].coord-m,g=f[p-1].coord+m,_=g-h;if(_<.001)return`transparent`;Q(f,function(e){e.offset=(e.coord-h)/_}),f.push({offset:p?f[p-1].offset:.5,color:d[1]||`transparent`}),f.unshift({offset:p?f[0].offset:.5,color:d[0]||`transparent`});var v=new oz(0,0,0,0,f,!0);return v[i]=h,v[i+`2`]=g,v}}}function CNe(e,t,n){var r=e.get(`showAllSymbol`),i=r===`auto`;if(!(r&&!i)){var a=n.getAxesByScale(`ordinal`)[0];if(a&&!(i&&wNe(a,t))){var o=t.mapDimension(a.dim),s={};return Q(a.getViewLabels(),function(e){e.tick.offInterval||(s[bJ(a.scale,e.tick)]=1)}),function(e){return!s.hasOwnProperty(t.get(o,e))}}}}function wNe(e,t){var n=e.getExtent(),r=Math.abs(n[1]-n[0])/e.scale.count();isNaN(r)&&(r=0);for(var i=t.count(),a=Math.max(1,Math.round(i/5)),o=0;or)return!1;return!0}function TNe(e){for(var t=e.length/2;t>0&&DZ(e[t*2-2],e[t*2-1]);t--);return t-1}function QZ(e,t){return[e[t*2],e[t*2+1]]}function ENe(e,t,n){for(var r=e.length/2,i=n===`x`?0:1,a,o,s=0,c=-1,l=0;l=t||a>=t&&o<=t){c=l;break}s=l,a=o}return{range:[s,c],t:(t-a)/(o-a)}}function $Z(e){if(e.get([`endLabel`,`show`]))return!0;for(var t=0;t0&&e.get([`emphasis`,`lineStyle`,`width`])===`bolder`){var M=f.getState(`emphasis`).style;M.lineWidth=+f.style.lineWidth+1}jL(f).seriesIndex=e.seriesIndex,dR(f,k,A,j);var N=XZ(e.get(`smooth`)),P=e.get(`smoothMonotone`);if(f.setShape({smooth:N,smoothMonotone:P,connectNulls:x}),p){var F=a.getCalculationInfo(`stackedOnSeries`),I=0;p.useStyle(nA(s.getAreaStyle(),{fill:E,opacity:.7,lineJoin:`bevel`,decal:a.getVisual(`style`).decal})),F&&(I=XZ(F.get(`smooth`))),p.setShape({smooth:N,stackedOnSmooth:I,smoothMonotone:P,connectNulls:x}),mR(p,e,`areaStyle`),jL(p).seriesIndex=e.seriesIndex,dR(p,k,A,j)}var L=this._changePolyState;a.eachItemGraphicEl(function(e){e&&(e.onHoverStateChange=L)}),this._polyline.onHoverStateChange=L,this._data=a,this._coordSys=r,this._stackedOnPoints=y,this._points=c,this._step=w,this._valueOrigin=_;var R=e.get(`triggerEvent`),z=e.get(`triggerLineEvent`),B=z===!0||R===!0||R===`line`,V=z===!0||R===!0||R===`area`;this.packEventData(e,f,B),p&&this.packEventData(e,p,V)},t.prototype.packEventData=function(e,t,n){jL(t).eventData=n?{componentType:`series`,componentSubType:`line`,componentIndex:e.componentIndex,seriesIndex:e.seriesIndex,seriesName:e.name,seriesType:`line`,selfType:t===this._polygon?`area`:`line`}:null},t.prototype.highlight=function(e,t,n,r){var i=e.getData(),a=$F(i,r);if(this._changePolyState(`emphasis`),!(a instanceof Array)&&a!=null&&a>=0){var o=i.getLayout(`points`),s=i.getItemGraphicEl(a);if(!s){var c=o[a*2],l=o[a*2+1];if(DZ(c,l)||this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(c,l))return;var u=e.get(`zlevel`)||0,d=e.get(`z`)||0;s=new yZ(i,a),s.x=c,s.y=l,s.setZ(u,d);var f=s.getSymbolPath().getTextContent();f&&(f.zlevel=u,f.z=d,f.z2=this._polyline.z2+1),s.__temp=!0,i.setItemGraphicEl(a,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else mW.prototype.highlight.call(this,e,t,n,r)},t.prototype.downplay=function(e,t,n,r){var i=e.getData(),a=$F(i,r);if(this._changePolyState(`normal`),a!=null&&a>=0){var o=i.getItemGraphicEl(a);o&&(o.__temp?(i.setItemGraphicEl(a,null),this.group.remove(o)):o.downplay())}else mW.prototype.downplay.call(this,e,t,n,r)},t.prototype._changePolyState=function(e){var t=this._polygon;XL(this._polyline,e),t&&XL(t,e)},t.prototype._newPolyline=function(e){var t=this._polyline;return t&&this._lineGroup.remove(t),t=new vNe({shape:{points:e},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(t),this._polyline=t,t},t.prototype._newPolygon=function(e,t){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new PZ({shape:{points:e,stackedOnPoints:t},segmentIgnoreThreshold:2}),this._lineGroup.add(n),this._polygon=n,n},t.prototype._initSymbolLabelAnimation=function(e,t,n){var r,i,a=t.getBaseAxis(),o=a.inverse;t.type===`cartesian2d`?(r=a.isHorizontal(),i=!1):t.type===`polar`&&(r=a.dim===`angle`,i=!0);var s=e.hostModel,c=s.get(`animationDuration`);hA(c)&&(c=c(null));var l=s.get(`animationDelay`)||0,u=hA(l)?l(null):l;e.eachItemGraphicEl(function(e,a){var s=e;if(s){var d=[e.x,e.y],f=void 0,p=void 0,m=void 0;if(n)if(i){var h=n,g=t.pointToCoord(d);r?(f=h.startAngle,p=h.endAngle,m=-g[1]/180*Math.PI):(f=h.r0,p=h.r,m=g[0])}else{var _=n;r?(f=_.x,p=_.x+_.width,m=e.x):(f=_.y+_.height,p=_.y,m=e.y)}var v=p===f?0:(m-f)/(p-f);o&&(v=1-v);var y=hA(l)?l(a):c*v+u,b=s.getSymbolPath(),x=b.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:y}),x&&x.animateFrom({style:{opacity:0}},{duration:300,delay:y}),b.disableLabelAnimation=!0}})},t.prototype._initOrUpdateEndLabel=function(e,t,n){var r=e.getModel(`endLabel`);if($Z(e)){var i=e.getData(),a=this._polyline,o=i.getLayout(`points`);if(!o){a.removeTextContent(),this._endLabel=null;return}var s=this._endLabel;s||(s=this._endLabel=new kL({z2:200}),s.ignoreClip=!0,a.setTextContent(this._endLabel),a.disableLabelAnimation=!0);var c=TNe(o);c>=0&&(bB(a,xB(e,`endLabel`),{inheritColor:n,labelFetcher:e,labelDataIndex:c,defaultText:function(e,t,n){return n==null?_Z(i,e):vZ(i,n)},enableTextSetter:!0},DNe(r,t)),a.textConfig.position=null)}else this._endLabel&&=(this._polyline.removeTextContent(),null)},t.prototype._endLabelOnDuring=function(e,t,n,r,i,a,o){var s=this._endLabel,c=this._polyline;if(s){e<1&&r.originalX==null&&(r.originalX=s.x,r.originalY=s.y);var l=n.getLayout(`points`),u=n.hostModel,d=u.get(`connectNulls`),f=a.get(`precision`),p=a.get(`distance`)||0,m=o.getBaseAxis(),h=m.isHorizontal(),g=m.inverse,_=t.shape,v=g?h?_.x:_.y+_.height:h?_.x+_.width:_.y,y=(h?p:0)*(g?-1:1),b=(h?0:-p)*(g?-1:1),x=h?`x`:`y`,S=ENe(l,v,x),C=S.range,w=C[1]-C[0],T=void 0;if(w>=1){if(w>1&&!d){var E=QZ(l,C[0]);s.attr({x:E[0]+y,y:E[1]+b}),i&&(T=u.getRawValue(C[0]))}else{var E=c.getPointOn(v,x);E&&s.attr({x:E[0]+y,y:E[1]+b});var D=u.getRawValue(C[0]),O=u.getRawValue(C[1]);i&&(T=uwe(n,f,D,O,S.t))}r.lastFrameIndex=C[0]}else{var k=e===1||r.lastFrameIndex>0?C[0]:0,E=QZ(l,k);i&&(T=u.getRawValue(k)),s.attr({x:E[0]+y,y:E[1]+b})}if(i){var A=kB(s);typeof A.setLabelText==`function`&&A.setLabelText(T)}}},t.prototype._doUpdateAnimation=function(e,t,n,r,i,a,o){var s=this._polyline,c=this._polygon,l=e.hostModel,u=_Ne(this._data,e,this._stackedOnPoints,t,this._coordSys,n,this._valueOrigin,a),d=u.current,f=u.stackedOnCurrent,p=u.next,m=u.stackedOnNext;if(i&&(f=ZZ(u.stackedOnCurrent,u.current,n,i,o),d=ZZ(u.current,null,n,i,o),m=ZZ(u.stackedOnNext,u.next,n,i,o),p=ZZ(u.next,null,n,i,o)),YZ(d,p)>3e3||c&&YZ(f,m)>3e3){s.stopAnimation(),s.setShape({points:p}),c&&(c.stopAnimation(),c.setShape({points:p,stackedOnPoints:m}));return}s.shape.__points=u.current,s.shape.points=d;var h={shape:{points:p}};u.current!==d&&(h.shape.__points=u.next),s.stopAnimation(),bz(s,h,l),c&&(c.setShape({points:d,stackedOnPoints:f}),c.stopAnimation(),bz(c,{shape:{stackedOnPoints:m}},l),s.shape.points!==c.shape.points&&(c.shape.points=s.shape.points));for(var g=[],_=u.status,v=0;v<_.length;v++)if(_[v].cmd===`=`){var y=e.getItemGraphicEl(_[v].idx1);y&&g.push({el:y,ptIdx:v})}s.animators&&s.animators.length&&s.animators[0].during(function(){c&&c.dirtyShape();for(var e=s.shape.__points,t=0;tt&&(t=e[n]);return isFinite(t)?t:NaN},min:function(e){for(var t=1/0,n=0;n10&&a.type===`cartesian2d`&&i){var s=a.getBaseAxis(),c=a.getOtherAxis(s),l=s.getExtent(),u=n.getDevicePixelRatio(),d=Math.abs(l[1]-l[0])*(u||1),f=Math.round(o/d);if(isFinite(f)&&f>1){i===`lttb`?e.setData(r.lttbDownSample(r.mapDimension(c.dim),1/f)):i===`minmax`&&e.setData(r.minmaxDownSample(r.mapDimension(c.dim),1/f));var p=void 0;gA(i)?p=kNe[i]:hA(i)&&(p=i),p&&e.setData(r.downSample(r.mapDimension(c.dim),1/f,p,ANe))}}}}}function jNe(e){e.registerChartView(ONe),e.registerSeriesModel(dNe),e.registerLayout(tQ(`line`,!0)),e.registerVisual({seriesType:`line`,reset:function(e){var t=e.getData(),n=e.getModel(`lineStyle`).getLineStyle();n&&!n.stroke&&(n.stroke=t.getVisual(`style`).fill),t.setVisual(`legendLineStyle`,n)}}),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,nQ(`line`))}var rQ=function(e){X(t,e);function t(t,n,r,i,a){var o=e.call(this,t,n,r)||this;return o.index=0,o.type=i||`value`,o.position=a||`bottom`,o}return t.prototype.isHorizontal=function(){var e=this.position;return e===`top`||e===`bottom`},t.prototype.getGlobalExtent=function(e){var t=this.getExtent();return t[0]=this.toGlobalCoord(t[0]),t[1]=this.toGlobalCoord(t[1]),e&&t[0]>t[1]&&t.reverse(),t},t.prototype.pointToData=function(e,t){return this.coordToData(this.toLocalCoord(e[this.dim===`x`?0:1]),t)},t.prototype.setCategorySortInfo=function(e){if(this.type!==`category`)return!1;this.model.option.categorySortInfo=e,this.scale.setSortInfo(e)},t}(yY),iQ=null;function MNe(e){iQ||=e}function aQ(){return iQ}var oQ=`expandAxisBreak`,NNe=`collapseAxisBreak`,PNe=`toggleAxisBreak`,sQ=`axisbreakchanged`,FNe={type:oQ,event:sQ,update:`update`,refineEvent:cQ},INe={type:NNe,event:sQ,update:`update`,refineEvent:cQ},LNe={type:PNe,event:sQ,update:`update`,refineEvent:cQ};function cQ(e,t,n,r){var i=[];return Q(e,function(e){i=i.concat(e.eventBreaks)}),{eventContent:{breaks:i}}}function RNe(e){e.registerAction(FNe,t),e.registerAction(INe,t),e.registerAction(LNe,t);function t(e,t){var n=[],r=tI(t,e);function i(t,i){Q(r[t],function(t){Q(t.updateAxisBreaks(e).breaks,function(e){var r;n.push(nA((r={},r[i]=t.componentIndex,r),e))})})}return i(`xAxisModels`,`xAxisIndex`),i(`yAxisModels`,`yAxisIndex`),i(`singleAxisModels`,`singleAxisIndex`),{eventBreaks:n}}}var lQ=Math.PI,zNe=[[1,2,1,2],[5,3,5,3],[8,3,8,3]],BNe=[[0,1,0,1],[0,3,0,3],[0,3,0,3]],uQ=eI(),dQ=eI(),fQ=function(){function e(e){this.recordMap={},this.resolveAxisNameOverlap=e}return e.prototype.ensureRecord=function(e){var t=e.axis.dim,n=e.componentIndex,r=this.recordMap,i=r[t]||(r[t]=[]);return i[n]||(i[n]={ready:{}})},e}();function VNe(e,t,n,r){var i=n.axis,a=t.ensureRecord(n),o=[],s,c=EQ(e.axisName)&&gJ(e.nameLocation);Q(r,function(e){var t=UY(e);if(!(!t||t.label.ignore)){o.push(t);var n=a.transGroup;c&&(n.transform?zj(pQ,n.transform):Nj(pQ),t.transform&&Fj(pQ,pQ,t.transform),eM.copy(mQ,t.localRect),mQ.applyTransform(pQ),s?s.union(mQ):eM.copy(s=new eM(0,0,0,0),mQ))}});var l=Math.abs(a.dirVec.x)>.1?`x`:`y`,u=a.transGroup[l];if(o.sort(function(e,t){return Math.abs(e.label[l]-u)-Math.abs(t.label[l]-u)}),c&&s){var d=i.getExtent(),f=Math.min(d[0],d[1]),p=Math.max(d[0],d[1])-f;s.union(new eM(f,0,p,1))}a.stOccupiedRect=s,a.labelInfoList=o}var pQ=Mj(),mQ=new eM(0,0,0,0),hQ=function(e,t,n,r,i,a){if(gJ(e.nameLocation)){var o=a.stOccupiedRect;o&&gQ(hMe({},o,a.transGroup.transform),r,i)}else _Q(a.labelInfoList,a.dirVec,r,i)};function gQ(e,t,n){var r=new Vj;ZY(e,t,r,{direction:Math.atan2(n.y,n.x),bidirectional:!1,touchThreshold:.05})&&KY(t,r)}function _Q(e,t,n,r){for(var i=Vj.dot(r,t)>=0,a=0,o=e.length;a0?`top`:`bottom`,i=`center`):jF(r-lQ)?(a=n>0?`bottom`:`top`,i=`center`):(a=`middle`,i=r>0&&r0?`right`:`left`:n>0?`left`:`right`),{rotation:r,textAlign:i,textVerticalAlign:a}},e.makeAxisEventDataBase=function(e){var t={componentType:e.mainType,componentIndex:e.componentIndex};return t[e.mainType+`Index`]=e.componentIndex,t},e.isLabelSilent=function(e){var t=e.get(`tooltip`);return e.get(`silent`)||!(e.get(`triggerEvent`)||t&&t.show)},e}(),HNe=[`axisLine`,`axisTickLabelEstimate`,`axisTickLabelDetermine`,`axisName`],UNe={axisLine:function(e,t,n,r,i,a,o){var s=r.get([`axisLine`,`show`]);if(s===`auto`&&(s=!0,e.raw.axisLineAutoShow!=null&&(s=!!e.raw.axisLineAutoShow)),s){var c=r.axis.getExtent(),l=a.transform,u=[c[0],0],d=[c[1],0],f=u[0]>d[0];l&&(uj(u,u,l),uj(d,d,l));var p=Z({lineCap:`round`},r.getModel([`axisLine`,`lineStyle`]).getLineStyle()),m={strokeContainThreshold:e.raw.strokeContainThreshold||5,silent:!0,z2:1,style:p};if(r.get([`axisLine`,`breakLine`])&&QB(r.axis.scale))aQ().buildAxisBreakLine(r,i,a,m);else{var h=new $R(Z({shape:{x1:u[0],y1:u[1],x2:d[0],y2:d[1]}},m));Bz(h.shape,h.style.lineWidth),h.anid=`line`,i.add(h)}var g=r.get([`axisLine`,`symbol`]);if(g!=null){var _=r.get([`axisLine`,`symbolSize`]);gA(g)&&(g=[g,g]),(gA(_)||vA(_))&&(_=[_,_]);var v=aG(r.get([`axisLine`,`symbolOffset`])||0,_),y=_[0],b=_[1];Q([{rotate:e.rotation+Math.PI/2,offset:v[0],r:0},{rotate:e.rotation-Math.PI/2,offset:v[1],r:Math.sqrt((u[0]-d[0])*(u[0]-d[0])+(u[1]-d[1])*(u[1]-d[1]))}],function(t,n){if(g[n]!==`none`&&g[n]!=null){var r=rG(g[n],-y/2,-b/2,y,b,p.stroke,!0),a=t.r+t.offset,o=f?d:u;r.attr({rotation:t.rotate,x:o[0]+a*Math.cos(e.rotation),y:o[1]-a*Math.sin(e.rotation),silent:!0,z2:11}),i.add(r)}})}}},axisTickLabelEstimate:function(e,t,n,r,i,a,o,s){SQ(t,i,s)&&yQ(e,t,n,r,i,a,o,cY.estimate)},axisTickLabelDetermine:function(e,t,n,r,i,a,o,s){SQ(t,i,s)&&yQ(e,t,n,r,i,a,o,cY.determine);var c=qNe(e,i,a,r);KNe(e,t.labelLayoutList,c),JNe(e,i,a,r,e.tickDirection)},axisName:function(e,t,n,r,i,a,o,s){var c=n.ensureRecord(r);t.nameEl&&=(i.remove(t.nameEl),c.nameLayout=c.nameLocation=null);var l=e.axisName;if(EQ(l)){var u=e.nameLocation,d=e.nameDirection,f=r.getModel(`nameTextStyle`),p=r.get(`nameGap`)||0,m=r.axis.getExtent(),h=r.axis.inverse?-1:1,g=new Vj(0,0),_=new Vj(0,0);u===`start`?(g.x=m[0]-h*p,_.x=-h):u===`end`?(g.x=m[1]+h*p,_.x=h):(g.x=(m[0]+m[1])/2,g.y=e.labelOffset+d*p,_.y=d);var v=Mj();_.transform(Lj(v,v,e.rotation));var y=r.get(`nameRotate`);y!=null&&(y=y*lQ/180);var b,x;gJ(u)?b=vQ.innerTextLayout(e.rotation,y??e.rotation,d):(b=WNe(e.rotation,u,y||0,m),x=e.raw.axisNameAvailableWidth,x!=null&&(x=Math.abs(x/Math.sin(b.rotation)),!isFinite(x)&&(x=null)));var S=f.getFont(),C=r.get(`nameTruncate`,!0)||{},w=C.ellipsis,T=DA(e.raw.nameTruncateMaxWidth,C.maxWidth,x),E=s.nameMarginLevel||0,D=new kL({x:g.x,y:g.y,rotation:b.rotation,silent:vQ.isLabelSilent(r),style:SB(f,{text:l,font:S,overflow:`truncate`,width:T,ellipsis:w,fill:f.getTextColor()||r.get([`axisLine`,`lineStyle`,`color`]),align:f.get(`align`)||b.textAlign,verticalAlign:f.get(`verticalAlign`)||b.textVerticalAlign}),z2:1});if(nB({el:D,componentModel:r,itemName:l}),D.__fullText=l,D.anid=`name`,r.get(`triggerEvent`)){var O=vQ.makeAxisEventDataBase(r);O.targetType=`axisName`,O.name=l,jL(D).eventData=O}a.add(D),D.updateTransform(),t.nameEl=D;var k=c.nameLayout=UY({label:D,priority:D.z2,defaultAttr:{ignore:D.ignore},marginDefault:gJ(u)?zNe[E]:BNe[E]});if(c.nameLocation=u,i.add(D),D.decomposeTransform(),e.shouldNameMoveOverlap&&k){var A=n.ensureRecord(r);n.resolveAxisNameOverlap(e,n,r,k,_,A)}}}};function yQ(e,t,n,r,i,a,o,s){CQ(t)||YNe(e,t,i,s,r,o);var c=t.labelLayoutList;XNe(e,r,c,a),$Ne(r,e.rotation,c);var l=e.optionHideOverlap;GNe(r,c,l),l&&XY(lA(c,function(e){return e&&!e.label.ignore})),VNe(e,n,r,c)}function WNe(e,t,n,r){var i=AF(n-e),a,o,s=r[0]>r[1],c=t===`start`&&!s||t!==`start`&&s;return jF(i-lQ/2)?(o=c?`bottom`:`top`,a=`center`):jF(i-lQ*1.5)?(o=c?`top`:`bottom`,a=`center`):(o=`middle`,a=ilQ/2?c?`left`:`right`:c?`right`:`left`),{rotation:i,textAlign:a,textVerticalAlign:o}}function GNe(e,t,n){var r=e.axis,i=e.get([`axisLabel`,`customValues`]);if(rje(r))return;function a(e,a,o){var s=UY(t[a]),c=UY(t[o]),l=r.scale;if(!(!s||!c)){if(e==null){if(!n&&i)return;var u=uQ(s.label).labelInfo.tick;if(Vq(l)&&u.notNice||Uq(l)&&u.offInterval){bQ(s.label);return}}if(e===!1||s.suggestIgnore){bQ(s.label);return}if(c.suggestIgnore){bQ(c.label);return}var d=.1;if(!n){var f=[0,0,0,0];s=qY({marginForce:f},s),c=qY({marginForce:f},c)}ZY(s,c,null,{touchThreshold:d})&&bQ(e?c.label:s.label)}}var o=e.get([`axisLabel`,`showMinLabel`]),s=e.get([`axisLabel`,`showMaxLabel`]),c=t.length;a(o,0,1),a(s,c-1,c-2)}function KNe(e,t,n){e.showMinorTicks||Q(t,function(e){if(e&&e.label.ignore)for(var t=0;t=0&&n(r,e,t.getStore())})}var p=0;if(f(function(e,t,n){r.set(t.uid,1),(!i||!i.hasKey(t.uid))&&(o=!0),p+=n.count()}),(!i||i.keys().length!==r.keys().length)&&(o=!0),!o&&a!=null){t.liPosMinGap=a;return}kZ(OQ,p);var m=0;f(function(e,t,n){for(var r=0,i=n.count();r0&&v0?-2:-1,n.serUids=r}var OQ=kZ({ctor:hNe},50);function kQ(e){return function(t,n){var r=_Y(t,{fromStat:{key:e}});if(UF(r.w2))return[-r.w2/2,r.w2/2]}}function AQ(e){return e+`|&`}function jQ(e,t){return e+`|&`+t}function MQ(e){return aPe(),{liPosMinGap:!Uq(e.scale)}}var NQ=`pictorialBar`;function PQ(e,t,n,r){PJ(e,{key:t,seriesType:n,coordSysType:r,getMetrics:MQ})}function FQ(e){return e.scale.rawExtentInfo.makeRenderInfo().startValue}var IQ={left:0,right:0,top:0,bottom:0},LQ=[`25%`,`25%`],RQ=`cartesian2d`,sPe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.mergeDefaultAndTheme=function(t,n){var r=aH(t.outerBounds);e.prototype.mergeDefaultAndTheme.apply(this,arguments),r&&t.outerBounds&&iH(t.outerBounds,r)},t.prototype.mergeOption=function(t,n){e.prototype.mergeOption.apply(this,arguments),this.option.outerBounds&&t.outerBounds&&iH(this.option.outerBounds,t.outerBounds)},t.type=`grid`,t.dependencies=[`xAxis`,`yAxis`],t.layoutMode=`box`,t.defaultOption={show:!1,z:0,left:`15%`,top:65,right:`10%`,bottom:80,containLabel:!1,outerBoundsMode:`auto`,outerBounds:IQ,outerBoundsContain:`all`,outerBoundsClampWidth:LQ[0],outerBoundsClampHeight:LQ[1],backgroundColor:$.color.transparent,borderWidth:1,borderColor:$.color.neutral30},t}(sH),cPe=mI(),zQ=`__ec_stack_`;function BQ(e){return e.get(`stack`)||zQ+e.seriesIndex}function lPe(e){if(Uq(e.axis.scale)){for(var t=_Y(e.axis),n=[],r=0;ro&&(o=a),o!==u&&(t.width=o,n-=o+l*o,r--)}}),u=(n-c)/(r+(r-1)*l),u=lF(u,0);var d=0,f;Q(o,function(e){var t=s[e];t.width||=u,f=t,d+=t.width*(1+l)}),f&&(d-=f.width*l);var p={},m=-d/2;return Q(o,function(e){var n=s[e];p[e]=p[e]||{bandWidth:t,offset:m,width:n.width},m+=n.width*(1+l)}),p}function HQ(e){return{seriesType:e,overallReset:function(t){var n=jQ(e,RQ);kJ(t,n,function(t){var r=uPe(t,e);DJ(t,n,function(e){var t=r.columnMap[BQ(e)];e.getData().setLayout({bandWidth:t.bandWidth,offset:t.offset,size:t.width})})})}}}function UQ(e){return{seriesType:e,plan:fW(),reset:function(e){if(ePe(e)){var t=e.getData(),n=e.coordinateSystem,r=n.getBaseAxis(),i=n.getOtherAxis(r),a=t.getDimensionIndex(t.mapDimension(i.dim)),o=t.getDimensionIndex(t.mapDimension(r.dim)),s=e.get(`showBackground`,!0),c=t.mapDimension(i.dim),l=t.getCalculationInfo(`stackResultDimension`),u=Tq(t,c)&&!!t.getCalculationInfo(`stackedOnSeries`),d=i.isHorizontal(),f=i.toGlobalCoord(i.dataToCoord(FQ(i))),p=WQ(e),m=e.get(`barMinHeight`)||0,h=l&&t.getDimensionIndex(l),g=t.getLayout(`size`),_=t.getLayout(`offset`);return{progress:function(e,t){for(var r=e.count,i=p&&OZ(r*3),c=p&&s&&OZ(r*3),l=p&&OZ(r),v=n.master.getRect(),y=d?v.width:v.height,b,x=t.getStore(),S=0;(b=e.next())!=null;){var C=x.get(u?h:a,b),w=x.get(o,b),T=f,E=void 0;u&&(E=+C-x.get(a,b));var D=void 0,O=void 0,k=void 0,A=void 0;if(d){var j=n.dataToPoint([C,w]);u&&(T=n.dataToPoint([E,w])[0]),D=T,O=j[1]+_,k=j[0]-T,A=g,uF(k)s){u=(p+l)/2;break}f===1&&(d=m-r[0].tickValue)}u??(l?l&&(u=r[r.length-1].coord):u=r[0].coord),a[n]=e.toGlobalCoord(u)}});else{var o=this.getData(),s=o.getLayout(`offset`),c=o.getLayout(`size`),l=+!r.getBaseAxis().isHorizontal();a[l]+=s+c/2}return a}return[NaN,NaN]},t.prototype.__requireStartValue=function(e){return this.getBaseAxis()!==e},t.type=`series.__base_bar__`,t.defaultOption={z:2,coordinateSystem:`cartesian2d`,legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:`mod`,defaultBarGap:`10%`},t}(sW);sW.registerClass(KQ);var pPe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.getInitialData=function(){return Dq(null,this,{useEncodeDefaulter:!0,createInvertedIndices:!!this.get(`realtimeSort`,!0)||null})},t.prototype.getProgressive=function(){return this.get(`large`)?this.get(`progressive`):!1},t.prototype.__preparePipelineContext=function(e,t){var n=vwe(this,e,t);return n.progressiveRender&&(n.large=!0),n},t.prototype.brushSelector=function(e,t,n){return n.rect(t.getItemLayout(e))},t.type=`series.bar`,t.dependencies=[`grid`,`polar`],t.defaultOption=zB(KQ.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:$.color.primary,borderWidth:2}},realtimeSort:!1}),t}(KQ),mPe=function(){function e(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=Math.PI*2,this.clockwise=!0}return e}(),qQ=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`sausage`,n}return t.prototype.getDefaultShape=function(){return new mPe},t.prototype.buildPath=function(e,t){var n=t.cx,r=t.cy,i=Math.max(t.r0||0,0),a=Math.max(t.r,0),o=(a-i)*.5,s=i+o,c=t.startAngle,l=t.endAngle,u=t.clockwise,d=Math.PI*2,f=u?l-cMath.PI/2&&ua)return!0;a=l}return!1},t.prototype._isOrderDifferentInView=function(e,t){for(var n=t.scale,r=n.getExtent(),i=Math.max(0,r[0]),a=Math.min(r[1],n.getOrdinalMeta().categories.length-1);i<=a;++i)if(e.ordinalNumbers[i]!==n.getRawOrdinalNumber(i))return!0},t.prototype._updateSortWithinSameData=function(e,t,n,r){if(this._isOrderChangedWithinSameData(e,t,n)){var i=this._dataSort(e,n,t);this._isOrderDifferentInView(i,n)&&(this._removeOnRenderedListener(r),r.dispatchAction({type:`changeAxisOrder`,componentType:n.dim+`Axis`,axisId:n.index,sortInfo:i}))}},t.prototype._dispatchInitSort=function(e,t,n){var r=t.baseAxis,i=this._dataSort(e,r,function(n){return e.get(e.mapDimension(t.otherAxis.dim),n)});n.dispatchAction({type:`changeAxisOrder`,componentType:r.dim+`Axis`,isInitSort:!0,axisId:r.index,sortInfo:i})},t.prototype.remove=function(e,t){this._clear(this._model),this._removeOnRenderedListener(t)},t.prototype.dispose=function(e,t){this._removeOnRenderedListener(t)},t.prototype._removeOnRenderedListener=function(e){this._onRendered&&=(e.getZr().off(`rendered`,this._onRendered),null)},t.prototype._clear=function(e){var t=this.group,n=this._data;e&&e.isAnimationEnabled()&&n&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],n.eachItemGraphicEl(function(t){Tz(t,e,jL(t).dataIndex)})):t.removeAll(),this._data=null,this._isFirstFrame=!0},t.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},t.type=`bar`,t}(mW),$Q={cartesian2d:function(e,t){var n=t.width<0?-1:1,r=t.height<0?-1:1;n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height);var i=e.x+e.width,a=e.y+e.height,o=ZQ(t.x,e.x),s=QQ(t.x+t.width,i),c=ZQ(t.y,e.y),l=QQ(t.y+t.height,a),u=si?s:o,t.y=d&&c>a?l:c,t.width=u?0:s-o,t.height=d?0:l-c,n<0&&(t.x+=t.width,t.width=-t.width),r<0&&(t.y+=t.height,t.height=-t.height),u||d},polar:function(e,t){var n=t.r0<=t.r?1:-1;if(n<0){var r=t.r;t.r=t.r0,t.r0=r}var i=QQ(t.r,e.r),a=ZQ(t.r0,e.r0);t.r=i,t.r0=a;var o=i-a<0;if(n<0){var r=t.r;t.r=t.r0,t.r0=r}return o}},e$={cartesian2d:function(e,t,n,r,i,a,o,s,c){var l=new DL({shape:Z({},r),z2:1});if(l.__dataIndex=n,l.name=`item`,a){var u=l.shape,d=i?`height`:`width`;u[d]=0}return l},polar:function(e,t,n,r,i,a,o,s,c){var l=!i&&c?qQ:JR,u=new l({shape:r,z2:1});if(u.name=`item`,u.calculateTextPosition=hPe(a$(i),{isRoundCap:l===qQ}),a){var d=u.shape,f=i?`r`:`endAngle`,p={};d[f]=i?r.r0:r.startAngle,p[f]=r[f],(s?bz:xz)(u,{shape:p},a)}return u}};function vPe(e,t){var n=e.get(`realtimeSort`,!0),r=t.getBaseAxis();if(n&&r.type===`category`&&t.type===`cartesian2d`)return{baseAxis:r,otherAxis:t.getOtherAxis(r)}}function t$(e,t,n,r,i,a,o,s){var c,l;a?(l={x:r.x,width:r.width},c={y:r.y,height:r.height}):(l={y:r.y,height:r.height},c={x:r.x,width:r.width}),s||(o?bz:xz)(n,{shape:c},t,i,null);var u=t?e.baseAxis.model:null;(o?bz:xz)(n,{shape:l},u,i)}function n$(e,t){for(var n=0;n0?1:-1,o=r.height>0?1:-1;return{x:r.x+a*i/2,y:r.y+o*i/2,width:r.width-a*i,height:r.height-o*i}},polar:function(e,t,n){var r=e.getItemLayout(t);return{cx:r.cx,cy:r.cy,r0:r.r0,r:r.r,startAngle:r.startAngle,endAngle:r.endAngle,clockwise:r.clockwise}}};function xPe(e){return e.startAngle!=null&&e.endAngle!=null&&e.startAngle===e.endAngle}function a$(e){return function(e){var t=e?`Arc`:`Angle`;return function(e){switch(e){case`start`:case`insideStart`:case`end`:case`insideEnd`:return e+t;default:return e}}}(e)}function o$(e,t,n,r,i,a,o,s){var c=t.getItemVisual(n,`style`);if(!s){var l=r.get([`itemStyle`,`borderRadius`])||0;e.setShape(`r`,l)}else if(!a.get(`roundCap`)){var u=e.shape;Z(u,XQ(r.getModel(`itemStyle`),u,!0)),e.setShape(u)}e.useStyle(c);var d=r.getShallow(`cursor`);d&&e.attr(`cursor`,d);var f=s?o?i.r>=i.r0?`endArc`:`startArc`:i.endAngle>=i.startAngle?`endAngle`:`startAngle`:o?EPe(i,a.coordinateSystem):DPe(i,a.coordinateSystem),p=xB(r);bB(e,p,{labelFetcher:a,labelDataIndex:n,defaultText:_Z(a.getData(),n),inheritColor:c.fill,defaultOpacity:c.opacity,defaultOutsidePosition:f});var m=e.getTextContent();if(s&&m){var h=r.get([`label`,`position`]);e.textConfig.inside=h===`middle`?!0:null,gPe(e,h===`outside`?f:h,a$(o),r.get([`label`,`rotate`]))}AB(m,p,a.getRawValue(n),function(e){return vZ(t,e)});var g=r.getModel([`emphasis`]);dR(e,g.get(`focus`),g.get(`blurScope`),g.get(`disabled`)),mR(e,r),xPe(i)&&(e.style.fill=`none`,e.style.stroke=`none`,Q(e.states,function(e){e.style&&(e.style.fill=e.style.stroke=`none`)}))}function SPe(e,t){var n=e.get([`itemStyle`,`borderColor`]);if(!n||n===`none`)return 0;var r=e.get([`itemStyle`,`borderWidth`])||0,i=isNaN(t.width)?Number.MAX_VALUE:Math.abs(t.width),a=isNaN(t.height)?Number.MAX_VALUE:Math.abs(t.height);return Math.min(r,i,a)}var CPe=function(){function e(){}return e}(),s$=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`largeBar`,n}return t.prototype.getDefaultShape=function(){return new CPe},t.prototype.buildPath=function(e,t){for(var n=t.points,r=this.baseDimIdx,i=1-this.baseDimIdx,a=[],o=[],s=this.barWidth,c=0;c=0?n:null},30,!1);function wPe(e,t,n){for(var r=e.baseDimIdx,i=1-r,a=e.shape.points,o=e.largeDataIndices,s=[],c=[],l=e.barWidth,u=0,d=a.length/3;u=s[0]&&t<=s[0]+c[0]&&n>=s[1]&&n<=s[1]+c[1])return o[u]}return-1}function u$(e,t,n){if(BZ(n,`cartesian2d`)){var r=t,i=n.getArea();return{x:e?r.x:i.x,y:e?i.y:r.y,width:e?r.width:i.width,height:e?i.height:r.height}}else{var i=n.getArea(),a=t;return{cx:i.cx,cy:i.cy,r0:e?i.r0:a.r0,r:e?i.r:a.r,startAngle:e?a.startAngle:0,endAngle:e?a.endAngle:Math.PI*2}}}function TPe(e,t,n){return new(e.type===`polar`?JR:DL)({shape:u$(t,n,e),silent:!0,z2:0})}function EPe(e,t){return e.height===0?t.getOtherAxis(t.getBaseAxis()).inverse?`bottom`:`top`:e.height>0?`bottom`:`top`}function DPe(e,t){return e.width===0?t.getOtherAxis(t.getBaseAxis()).inverse?`left`:`right`:e.width>=0?`right`:`left`}function OPe(e){e.registerChartView(_Pe),e.registerSeriesModel(pPe),e.registerLayout(e.PRIORITY.VISUAL.LAYOUT,HQ(`bar`)),e.registerLayout(e.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,UQ(`bar`)),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,nQ(`bar`)),e.registerAction({type:`changeAxisOrder`,event:`changeAxisOrder`,update:`update`},function(e,t){var n=e.componentType||`series`;t.eachComponent({mainType:n,query:e},function(t){e.sortInfo&&t.axis.setCategorySortInfo(e.sortInfo)})}),GQ(e)}function d$(e){return{seriesType:e,reset:function(e,t){var n=t.findComponents({mainType:`legend`});if(!(!n||!n.length)){var r=e.getData();r.filterSelf(function(e){for(var t=r.getName(e),i=0;i=0},e.prototype.indexOfName=function(e){return this._getDataWithEncodedVisual().indexOfName(e)},e.prototype.getItemVisual=function(e,t){return this._getDataWithEncodedVisual().getItemVisual(e,t)},e}(),kPe=eI(),m$=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t){e.prototype.init.apply(this,arguments),this.legendVisualProvider=new p$(fA(this.getData,this),fA(this.getRawData,this)),this._defaultLabelLine(t)},t.prototype.mergeOption=function(){e.prototype.mergeOption.apply(this,arguments)},t.prototype.getInitialData=function(){return f$(this,{coordDimensions:[`value`],encodeDefaulter:pA(vH,this)})},t.prototype.getDataParams=function(t){var n=this.getData(),r=kPe(n),i=r.seats;if(!i){var a=[];n.each(n.mapDimension(`value`),function(e){a.push(e)}),i=r.seats=DF(a,n.hostModel.get(`percentPrecision`))}var o=e.prototype.getDataParams.call(this,t);return o.percent=i[t]||0,o.$vars.push(`percent`),o},t.prototype._defaultLabelLine=function(e){qF(e,`labelLine`,[`show`]);var t=e.labelLine,n=e.emphasis.labelLine;t.show=t.show&&e.label.show,n.show=n.show&&e.emphasis.label.show},t.type=`series.pie`,t.defaultOption={z:2,legendHoverLink:!0,colorBy:`data`,center:[`50%`,`50%`],radius:[0,`50%`],clockwise:!0,startAngle:90,endAngle:`auto`,padAngle:0,minAngle:0,minShowLabelAngle:0,selectedOffset:10,percentPrecision:2,stillShowZeroSum:!0,coordinateSystemUsage:`box`,left:0,top:0,right:0,bottom:0,width:null,height:null,label:{rotate:0,show:!0,overflow:`truncate`,position:`outer`,alignTo:`none`,edgeDistance:`25%`,distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:30,smooth:!1,minTurnAngle:90,maxSurfaceAngle:90,lineStyle:{width:1,type:`solid`}},itemStyle:{borderWidth:1,borderJoin:`round`},showEmptyCircle:!0,emptyCircleStyle:{color:`lightgray`,opacity:1},labelLayout:{hideOverlap:!0},emphasis:{scale:!0,scaleSize:5},avoidLabelOverlap:!0,animationType:`expansion`,animationDuration:1e3,animationTypeUpdate:`transition`,animationEasingUpdate:`cubicInOut`,animationDurationUpdate:500,animationEasing:`cubicInOut`},t}(sW);kDe({fullType:m$.type,getCoord2:function(e){return e.getShallow(`center`)}});var APe=Math.PI/180;function h$(e,t,n,r,i,a,o,s,c,l){if(e.length<2)return;function u(e){for(var a=e.rB,o=a*a,s=0;sn?o:a,d=Math.abs(c.label.y-n);if(d>=l.maxY){var f=c.label.x-t-c.len2*i,p=r+c.len;l.rB=Math.abs(f)e.unconstrainedWidth?null:f:null;r.setStyle(`width`,p)}_$(a,r)}}}function _$(e,t){v$.rect=e,WY(v$,t,MPe)}var MPe={minMarginForce:[null,0,null,0],marginDefault:[1,0,1,0]},v$={};function y$(e){return e.position===`center`}function NPe(e){var t=e.getData(),n=[],r,i,a=!1,o=(e.get(`minShowLabelAngle`)||0)*APe,s=t.getLayout(`viewRect`),c=t.getLayout(`r`),l=s.width,u=s.x,d=s.y,f=s.height;function p(e){e.ignore=!0}function m(e){if(!e.ignore)return!0;for(var t in e.states)if(e.states[t].ignore===!1)return!0;return!1}t.each(function(e){var s=t.getItemGraphicEl(e),d=s.shape,h=s.getTextContent(),g=s.getTextGuideLine(),_=t.getItemModel(e),v=_.getModel(`label`),y=v.get(`position`)||_.get([`emphasis`,`label`,`position`]),b=v.get(`distanceToLabelLine`),x=v.get(`alignTo`),S=yF(v.get(`edgeDistance`),l),C=v.get(`bleedMargin`);C??=Math.min(l,f)>200?10:2;var w=_.getModel(`labelLine`),T=w.get(`length`);T=yF(T,l);var E=w.get(`length2`);if(E=yF(E,l),Math.abs(d.endAngle-d.startAngle)0?`right`:`left`:O>0?`left`:`right`}var V=Math.PI,H=0,U=v.get(`rotate`);if(vA(U))H=V/180*U;else if(y===`center`)H=0;else if(U===`radial`||U===!0)H=O<0?-D+V:-D;else if(U===`tangential`||U===`tangential-noflip`&&y!==`outside`&&y!==`outer`){var W=Math.atan2(O,k);W<0&&(W=V*2+W),k>0&&U!==`tangential-noflip`&&(W=V+W),H=W-V}if(a=!!H,h.x=A,h.y=j,h.rotation=H,h.setStyle({verticalAlign:`middle`}),P){h.setStyle({align:N});var G=h.states.select;G&&(G.x+=h.x,G.y+=h.y)}else{var ee=new eM(0,0,0,0);_$(ee,h),n.push({label:h,labelLine:g,position:y,len:T,len2:E,minTurnAngle:w.get(`minTurnAngle`),maxSurfaceAngle:w.get(`maxSurfaceAngle`),surfaceNormal:new Vj(O,k),linePoints:M,textAlign:N,labelDistance:b,labelAlignTo:x,edgeDistance:S,bleedMargin:C,rect:ee,unconstrainedWidth:ee.width,labelStyleWidth:h.style.width})}s.setTextConfig({inside:P})}}),!a&&e.get(`avoidLabelOverlap`)&&jPe(n,r,i,c,l,f,u,d);for(var h=0;hr?(l=O+x*r/2,u=l):(l=O+C,u=i-C),n.setItemLayout(t,{angle:r,startAngle:l,endAngle:u,clockwise:_,cx:a,cy:o,r0:c,r:v?vF(e,b,[c,s]):s}),O=i}),E0){for(var c=i.getItemLayout(0),l=1;isNaN(c&&c.startAngle)&&l=n.r0}},t.type=`pie`,t}(mW);function RPe(e){return{seriesType:e,reset:function(e,t){var n=e.getData();n.filterSelf(function(e){var t=n.mapDimension(`value`),r=n.get(t,e);return!(vA(r)&&!isNaN(r)&&r<0)})}}}function zPe(e){e.registerChartView(LPe),e.registerSeriesModel(m$),GW(`pie`,e.registerAction),e.registerLayout(PPe),e.registerProcessor(d$(`pie`)),e.registerProcessor(RPe(`pie`))}var BPe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.hasSymbolVisual=!0,n}return t.prototype.getInitialData=function(e,t){return Dq(null,this,{useEncodeDefaulter:!0})},t.prototype.getProgressive=function(){return this.option.progressive??(this.option.large?5e3:this.get(`progressive`))},t.prototype.getProgressiveThreshold=function(){return this.option.progressiveThreshold??(this.option.large?1e4:this.get(`progressiveThreshold`))},t.prototype.brushSelector=function(e,t,n){return n.point(t.getItemLayout(e))},t.prototype.getZLevelKey=function(){return this.getData().count()>this.getProgressiveThreshold()?this.id:``},t.type=`series.scatter`,t.dependencies=[`grid`,`polar`,`geo`,`singleAxis`,`calendar`,`matrix`],t.defaultOption={coordinateSystem:`cartesian2d`,z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:$.color.primary}},universalTransition:{divideShape:`clone`}},t}(sW),C$=4,VPe=function(){function e(){}return e}(),HPe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return t.prototype.getDefaultShape=function(){return new VPe},t.prototype.reset=function(){this.notClear=!1,this._off=0},t.prototype.beforeBrush=function(e){e&&!e.contentRetained&&this.reset()},t.prototype.buildPath=function(e,t){var n=t.points,r=t.size,i=this.symbolProxy,a=i.shape,o=e.getContext?e.getContext():e,s=o&&r[0]=0;s--){var c=s*2,l=r[c]-a/2,u=r[c+1]-o/2;if(e>=l&&t>=u&&e<=l+a&&t<=u+o)return s}return-1},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect();return e=n[0],t=n[1],r.contain(e,t)?(this.hoverDataIdx=this.findDataIndex(e,t))>=0:(this.hoverDataIdx=-1,!1)},t.prototype.getBoundingRect=function(){var e=this._rect;if(!e){for(var t=this.shape,n=t.points,r=t.size,i=r[0],a=r[1],o=1/0,s=1/0,c=-1/0,l=-1/0,u=0;u=0&&(c.dataIndex=n+(e.startIndex||0))})},e.prototype.remove=function(){this._clear()},e.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},e}(),WPe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r=e.getData();this._updateSymbolDraw(r,e).updateData(r,w$(e)),this._finished=!0},t.prototype.incrementalPrepareRender=function(e,t,n){var r=e.getData();this._updateSymbolDraw(r,e).incrementalPrepareUpdate(r),this._finished=!1},t.prototype.incrementalRender=function(e,t,n){this._symbolDraw.incrementalUpdate(e,t.getData(),gI(t),w$(t)),this._finished=e.end===t.getData().count()},t.prototype.updateTransform=function(e,t,n){var r=e.getData();if(this.group.dirty(),this._finished){var i=tQ(``).reset(e,t,n);i.progress&&i.progress({start:0,end:r.count(),count:r.count()},r),this._symbolDraw.updateLayout(w$(e))}else return{update:!0}},t.prototype.eachRendered=function(e){this._symbolDraw&&this._symbolDraw.eachRendered(e)},t.prototype._updateSymbolDraw=function(e,t){var n=this._symbolDraw,r=t.pipelineContext.large;return(!n||r!==this._isLargeDraw)&&(n&&n.remove(),n=this._symbolDraw=r?new UPe:new wZ,this._isLargeDraw=r,this.group.removeAll()),this.group.add(n.group),n},t.prototype.remove=function(e,t){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},t.prototype.dispose=function(){},t.type=`scatter`,t}(mW);function w$(e){return{clipShape:zZ(e)}}var T$=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.getCoordSysModel=function(){return this.getReferringComponents(`grid`,rI).models[0]},t.type=`cartesian2dAxis`,t}(sH);aA(T$,SJ);var E$={show:!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:`auto`,onZeroAxisIndex:null,lineStyle:{color:$.color.axisLine,width:1,type:`solid`},symbol:[`none`,`none`],symbolSize:[10,15],breakLine:!0},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,color:$.color.axisLabel,textMargin:[0,3]},splitLine:{show:!0,showMinLine:!0,showMaxLine:!0,lineStyle:{color:$.color.axisSplitLine,width:1,type:`solid`}},splitArea:{show:!1,areaStyle:{color:[$.color.backgroundTint,$.color.backgroundTransparent]}},breakArea:{show:!0,itemStyle:{color:$.color.neutral00,borderColor:$.color.border,borderWidth:1,borderType:[3,3],opacity:.6},zigzagAmplitude:4,zigzagMinSpan:4,zigzagMaxSpan:20,zigzagZ:100,expandOnClick:!0},breakLabelLayout:{moveOverlap:`auto`}},GPe=$k({boundaryGap:!0,deduplication:null,jitter:0,jitterOverlap:!0,jitterMargin:2,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:`auto`,show:`auto`},axisLabel:{interval:`auto`}},E$),D$=$k({boundaryGap:[0,0],axisLine:{show:`auto`},axisTick:{show:`auto`},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:$.color.axisMinorSplitLine,width:1}}},E$),O$={category:GPe,value:D$,time:$k({splitNumber:6,axisLabel:{rich:{primary:{fontWeight:`bold`}}},splitLine:{show:!1}},D$),log:nA({logBase:10},D$)};function k$(e,t,n,r){Q(lJ,function(i,a){var o=$k($k({},O$[a],!0),r,!0),s=function(e){X(n,e);function n(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t+`Axis.`+a,n}return n.prototype.mergeDefaultAndTheme=function(e,t){var n=rH(this),r=n?aH(e):{};$k(e,t.getTheme().get(a+`Axis`)),$k(e,this.getDefaultOption()),e.type=A$(e),n&&iH(e,r,n)},n.prototype.optionUpdated=function(){this.option.type===`category`&&(this.__ordinalMeta=kq.createByAxisModel(this))},n.prototype.getCategories=function(e){var t=this.option;if(t.type===`category`)return e?t.data:this.__ordinalMeta.categories},n.prototype.getOrdinalMeta=function(){return this.__ordinalMeta},n.prototype.updateAxisBreaks=function(e){var t=aQ();return t?t.updateModelAxisBreak(this,e):{breaks:[]}},n.type=t+`Axis.`+a,n.defaultOption=o,n}(n);e.registerComponentModel(s)}),e.registerSubTypeDefaulter(t+`Axis`,A$)}function A$(e){return e.type||(e.data?`category`:`value`)}var KPe=function(){function e(e){this.type=`cartesian`,this._dimList=[],this._axes={},this.name=e||``}return e.prototype.getAxis=function(e){return this._axes[e]},e.prototype.getAxes=function(){return sA(this._dimList,function(e){return this._axes[e]},this)},e.prototype.getAxesByScale=function(e){return e=e.toLowerCase(),lA(this.getAxes(),function(t){return t.scale.type===e})},e.prototype.addAxis=function(e){var t=e.dim;this._axes[t]=e,this._dimList.push(t)},e}(),j$=[`x`,`y`];function M$(e){return(e.type===`interval`||e.type===`time`)&&!QB(e)}var qPe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=RQ,t.dimensions=j$,t}return t.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var e=this.getAxis(`x`).scale,t=this.getAxis(`y`).scale;if(!(!M$(e)||!M$(t))){var n=Fq(e,null),r=Fq(t,null),i=this.dataToPoint([n[0],r[0]]),a=this.dataToPoint([n[1],r[1]]),o=n[1]-n[0],s=r[1]-r[0];if(!(!o||!s)){var c=(a[0]-i[0])/o,l=(a[1]-i[1])/s,u=i[0]-n[0]*c,d=i[1]-r[0]*l,f=this._transform=[c,0,0,l,u,d];this._invTransform=zj([],f)}}},t.prototype.getBaseAxis=function(){return this.getAxesByScale(`ordinal`)[0]||this.getAxesByScale(`time`)[0]||this.getAxis(`x`)},t.prototype.containPoint=function(e){var t=this.getAxis(`x`),n=this.getAxis(`y`);return t.contain(t.toLocalCoord(e[0]))&&n.contain(n.toLocalCoord(e[1]))},t.prototype.containData=function(e){return this.getAxis(`x`).containData(e[0])&&this.getAxis(`y`).containData(e[1])},t.prototype.containZone=function(e,t){var n=this.dataToPoint(e),r=this.dataToPoint(t),i=this.getArea(),a=new eM(n[0],n[1],r[0]-n[0],r[1]-n[1]);return i.intersect(a)},t.prototype.dataToPoint=function(e,t,n){n||=[];var r=e[0],i=e[1];if(this._transform&&r!=null&&isFinite(r)&&i!=null&&isFinite(i))return uj(n,e,this._transform);var a=this.getAxis(`x`),o=this.getAxis(`y`);return n[0]=a.toGlobalCoord(a.dataToCoord(r,t)),n[1]=o.toGlobalCoord(o.dataToCoord(i,t)),n},t.prototype.clampData=function(e,t){var n=this.getAxis(`x`).scale,r=this.getAxis(`y`).scale,i=n.getExtent(),a=r.getExtent(),o=n.parse(e[0]),s=r.parse(e[1]);return t||=[],t[0]=Math.min(Math.max(Math.min(i[0],i[1]),o),Math.max(i[0],i[1])),t[1]=Math.min(Math.max(Math.min(a[0],a[1]),s),Math.max(a[0],a[1])),t},t.prototype.pointToData=function(e,t,n){if(n||=[],this._invTransform)return uj(n,e,this._invTransform);var r=this.getAxis(`x`),i=this.getAxis(`y`);return n[0]=r.coordToData(r.toLocalCoord(e[0]),t),n[1]=i.coordToData(i.toLocalCoord(e[1]),t),n},t.prototype.getOtherAxis=function(e){return this.getAxis(e.dim===`x`?`y`:`x`)},t.prototype.getArea=function(e){e||=0;var t=this.getAxis(`x`).getGlobalExtent(),n=this.getAxis(`y`).getGlobalExtent(),r=Math.min(t[0],t[1])-e,i=Math.min(n[0],n[1])-e;return new eM(r,i,Math.max(t[0],t[1])-r+e,Math.max(n[0],n[1])-i+e)},t}(KPe);function N$(e,t){var n=e.scale,r=e.model,i=GJ(n,r,r.ecModel,e,null),a=Hq(n),o=Hq(t)?t.intervalStub:t,s=a?n.intervalStub:n,c=n.base,l=o.getTicks(),u=o.getTicks({expandToNicedExtent:!0}),d=l.length-1,f,p,m;if(d===1)f=p=0,m=1;else if(d===2){var h=uF(l[0].value-l[1].value),g=uF(l[1].value-l[2].value);f=p=0,h===g?m=2:(m=1,h=C[1])return!0})):b[1]?(T=C[1],A(function(){if(P(),k=SF(O-E*m,D),j(),w<=C[0])return!0})):A(function(){k=SF(pF(C[0]/E)*E,D),O=SF(fF(C[1]/E)*E,D);var e=dF((O-k)/E);if(e<=m){var t=m-e,n=void 0,r=i.incl0||a;if(r&&C[0]===0)n=[0,t];else if(r&&C[1]===0)n=[t,0];else{var o=fF(t/2);n=t%2==0?[o,o]:w+T=C[1])return!0}})}yJ(n,b,S,[w,T],x,{interval:E,intervalCount:m,intervalPrecision:D,niceExtent:[k,O]})}var P$=[[3,1],[0,2]],JPe=function(){function e(e,t,n){this.type=`grid`,this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=j$,this._initCartesian(e,t,n),this.model=e}return e.prototype.getRect=function(){return this._rect},e.prototype.update=function(e,t){var n=this._axesMap;Q(this._axesList,function(e){VJ(e,1);var t=e.scale;Uq(t)&&t.setSortInfo(e.model.get(`categorySortInfo`))});function r(e){for(var t=dA(e),n=[],r=t.length-1;r>=0;r--){var i=e[+t[r]];i.__alignTo?n.push(i):qJ(i)}Q(n,function(e){XPe(e,e.__alignTo)?qJ(e):N$(e,e.__alignTo.scale)})}r(n.x),r(n.y);var i={};Q(n.x,function(e){F$(n,`y`,e,i)}),Q(n.y,function(e){F$(n,`x`,e,i)}),this.resize(this.model,t)},e.prototype.resize=function(e,t,n){var r=tH(e,t),i=this._rect=QV(e.getBoxLayoutParams(),r.refContainer),a=this._axesMap,o=this._coordsList,s=e.get(`containLabel`);if(R$(a,i),!n){var c=$Pe(i,o,a,s,t),l=void 0;if(s)B$?(B$(this._axesList,i),R$(a,i)):l=V$(i.clone(),`axisLabel`,null,i,a,c,r);else{var u=eFe(e,i,r),d=u.outerBoundsRect,f=u.parsedOuterBoundsContain,p=u.outerBoundsClamp;d&&(l=V$(d,f,p,i,a,c,r))}H$(i,a,cY.determine,null,l,r),Q(this._coordsList,function(e){e.calcAffineTransform()})}},e.prototype.getAxis=function(e,t){var n=this._axesMap[e];if(n!=null)return n[t||0]},e.prototype.getAxes=function(){return this._axesList.slice()},e.prototype.getCartesian=function(e,t){if(e!=null&&t!=null){var n=`x`+e+`y`+t;return this._coordsMap[n]}yA(e)&&(t=e.yAxisIndex,e=e.xAxisIndex);for(var r=0,i=this._coordsList;r=0;i--){var a=e[+t[i]];zq(a.scale)&&vJ(a.model,a.type,!0)==null&&(a.model.get(`alignTicks`)&&a.model.get(`interval`)==null?r.push(a):n=a)}n||=r.pop(),n&&Q(r,function(e){e.__alignTo=n})}function XPe(e,t){return QB(e.scale)||QB(t.scale)||t.scale.getTicks().length<2}function ZPe(e,t){var n=e.getExtent(),r=n[0]+n[1];e.toGlobalCoord=e.dim===`x`?function(e){return e+t}:function(e){return r-e+t},e.toLocalCoord=e.dim===`x`?function(e){return e-t}:function(e){return r-e+t}}function R$(e,t){Q(e.x,function(e){return z$(e,t.x,t.width)}),Q(e.y,function(e){return z$(e,t.y,t.height)})}function z$(e,t,n){var r=[0,n],i=+!!e.inverse;e.setExtent(r[i],r[1-i]),ZPe(e,t)}var B$;function QPe(e){B$=e}function V$(e,t,n,r,i,a,o){H$(r,i,cY.estimate,t,!1,o);var s=[0,0,0,0];l(0),l(1),u(r,0,NaN),u(r,1,NaN);var c=uA(s,function(e){return e>0})==null;return $z(r,s,!0,!0,n),R$(i,r),c;function l(e){Q(i[kz[e]],function(t){if(_J(t.model)){var n=a.ensureRecord(t.model),r=n.labelInfoList;if(r)for(var i=0;i0&&!EA(t)&&t>1e-4&&(e/=t),e}}function $Pe(e,t,n,r,i){var a=new fQ(tFe);return Q(n,function(n){return Q(n,function(n){if(_J(n.model)){var o=!r;n.axisBuilder=nPe(e,t,n.model,i,a,o)}})}),a}function H$(e,t,n,r,i,a){var o=n===cY.determine;Q(t,function(t){return Q(t,function(t){_J(t.model)&&(rPe(t.axisBuilder,e,t.model),t.axisBuilder.build(o?{axisTickLabelDetermine:!0}:{axisTickLabelEstimate:!0},{noPxChange:i}))})});var s={x:0,y:0};c(0),c(1);function c(t){s[kz[1-t]]=e[Az[t]]<=a.refContainer[Az[t]]*.5?0:1-t==1?2:1}Q(t,function(e,t){return Q(e,function(e){_J(e.model)&&((r===`all`||o)&&e.axisBuilder.build({axisName:!0},{nameMarginLevel:s[t]}),o&&e.axisBuilder.build({axisLine:!0}))})})}function eFe(e,t,n){var r,i=e.get(`outerBoundsMode`,!0);i===`same`?r=t.clone():(i==null||i===`auto`)&&(r=QV(e.get(`outerBounds`,!0)||IQ,n.refContainer));var a=e.get(`outerBoundsContain`,!0),o=a==null||a===`auto`||rA([`all`,`axisLabel`],a)<0?`all`:a,s=[bF(OA(e.get(`outerBoundsClampWidth`,!0),LQ[0]),t.width),bF(OA(e.get(`outerBoundsClampHeight`,!0),LQ[1]),t.height)];return{outerBoundsRect:r,parsedOuterBoundsContain:o,outerBoundsClamp:s}}var tFe=function(e,t,n,r,i,a){var o=n.axis.dim===`x`?`y`:`x`;hQ(e,t,n,r,i,a),gJ(e.nameLocation)||Q(t.recordMap[o],function(e){e&&e.labelInfoList&&e.dirVec&&_Q(e.labelInfoList,e.dirVec,r,i)})};function nFe(e,t){var n={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return rFe(n,e,t),n.seriesInvolved&&aFe(n,e),n}function rFe(e,t,n){var r=t.getComponent(`tooltip`),i=t.getComponent(`axisPointer`),a=i.get(`link`,!0)||[],o=[];Q(n.getCoordinateSystems(),function(n){if(!n.axisPointerEnabled)return;var s=K$(n.model),c=e.coordSysAxesInfo[s]={};e.coordSysMap[s]=n;var l=n.model.getModel(`tooltip`,r);if(Q(n.getAxes(),pA(p,!1,null)),n.getTooltipAxes&&r&&l.get(`show`)){var u=l.get(`trigger`)===`axis`,d=l.get([`axisPointer`,`type`])===`cross`,f=n.getTooltipAxes(l.get([`axisPointer`,`axis`]));(u||d)&&Q(f.baseAxes,pA(p,d?`cross`:!0,u)),d&&Q(f.otherAxes,pA(p,`cross`,!1))}function p(r,s,u){var d=u.model.getModel(`axisPointer`,i),f=d.get(`show`);if(!(!f||f===`auto`&&!r&&!G$(d))){s??=d.get(`triggerTooltip`),d=r?iFe(u,l,i,t,r,s):d;var p=d.get(`snap`),m=d.get(`triggerEmphasis`),h=K$(u.model),g=s||p||u.type===`category`,_=e.axesInfo[h]={key:h,axis:u,coordSys:n,axisPointerModel:d,triggerTooltip:s,triggerEmphasis:m,involveSeries:g,snap:p,useHandle:G$(d),seriesModels:[],linkGroup:null};c[h]=_,e.seriesInvolved=e.seriesInvolved||g;var v=oFe(a,u);if(v!=null){var y=o[v]||(o[v]={axesInfo:{}});y.axesInfo[h]=_,y.mapper=a[v].mapper,_.linkGroup=y}}}})}function iFe(e,t,n,r,i,a){var o=t.getModel(`axisPointer`),s=[`type`,`snap`,`lineStyle`,`shadowStyle`,`label`,`animation`,`animationDurationUpdate`,`animationEasingUpdate`,`z`],c={};Q(s,function(e){c[e]=Qk(o.get(e))}),c.snap=e.type!==`category`&&!!a,o.get(`type`)===`cross`&&(c.type=`line`);var l=c.label||={};if(l.show??=!1,i===`cross`&&(l.show=o.get([`label`,`show`])??!0,!a)){var u=c.lineStyle=o.get(`crossStyle`);u&&nA(l,u.textStyle)}return e.model.getModel(`axisPointer`,new LB(c,n,r))}function aFe(e,t){t.eachSeries(function(t){var n=t.coordinateSystem,r=t.get([`tooltip`,`trigger`],!0),i=t.get([`tooltip`,`show`],!0);!n||!n.model||r===`none`||r===!1||r===`item`||i===!1||t.get([`axisPointer`,`show`],!0)===!1||Q(e.coordSysAxesInfo[K$(n.model)],function(e){var r=e.axis;n.getAxis(r.dim)===r&&(e.seriesModels.push(t),e.seriesDataCount??=0,e.seriesDataCount+=t.getData().count())})})}function oFe(e,t){for(var n=t.model,r=t.dim,i=0;i=0||e===t}function sFe(e){var t=W$(e);if(t){var n=t.axisPointerModel,r=t.axis.scale,i=n.option,a=n.get(`status`),o=n.get(`value`);o!=null&&(o=r.parse(o));var s=G$(n);a??(i.status=s?`show`:`hide`);var c=r.getExtent();(o==null||o>c[1])&&(o=c[1]),o0;return o&&s}var mFe=eI();function a1(e,t,n,r){if(e instanceof rQ&&e.scale.type!==`ordinal`)return n;var i=e.model,a=i.get(`jitter`);if(!(a>0))return n;var o=i.get(`jitterOverlap`),s=i.get(`jitterMargin`)||0,c=Uq(e.scale)?_Y(e).w:null;return o?o1(n,a,c,r):hFe(e,t,n,r,a,s)}function o1(e,t,n,r){if(n===null)return e+(Math.random()-.5)*t;var i=n-r*2,a=Math.min(Math.max(0,t),i);return e+(Math.random()-.5)*a}function hFe(e,t,n,r,i,a){var o=mFe(e);o.items||=[];var s=o.items,c=s1(s,t,n,r,i,a,1),l=s1(s,t,n,r,i,a,-1),u=Math.abs(c-n)i/2||d&&f>d/2-r?o1(n,i,d,r):(s.push({fixedCoord:t,floatCoord:u,r}),u)}function s1(e,t,n,r,i,a,o){for(var s=n,c=0;ci/2)return Number.MAX_VALUE;if(o===1&&m>s||o===-1&&m0&&!f.min?f.min=0:f.min!=null&&f.min<0&&!f.max&&(f.max=0);var p=s;f.color!=null&&(p=nA({color:f.color},s));var m=$k(Qk(f),{boundaryGap:e,splitNumber:t,clockwise:n,scale:r,axisLine:i,axisTick:a,axisLabel:o,name:f.text,showName:c,nameLocation:`end`,nameGap:u,nameTextStyle:p,triggerEvent:d},!1);if(gA(l)){var h=m.name;m.name=l.replace(`{value}`,h??``)}else hA(l)&&(m.name=l(m.name,m));var g=new LB(m,null,this.ecModel);return aA(g,SJ.prototype),g.mainType=`radar`,g.componentIndex=this.componentIndex,g.uid=RB(`ec_radar`),g},this);this._indicatorModels=f},t.prototype.getIndicatorModels=function(){return this._indicatorModels},t.type=d1,t.defaultOption={z:0,center:[`50%`,`50%`],radius:`50%`,startAngle:90,clockwise:!1,axisName:{show:!0,color:$.color.axisLabel},boundaryGap:[0,0],splitNumber:5,axisNameGap:15,scale:!1,shape:`polygon`,axisLine:$k({lineStyle:{color:$.color.neutral20}},l1.axisLine),axisLabel:f1(l1.axisLabel,!1),axisTick:f1(l1.axisTick,!1),splitLine:f1(l1.splitLine,!0),splitArea:f1(l1.splitArea,!0),indicator:[]},t}(sH),wFe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){this.group.removeAll(),this._buildAxes(e,n),this._buildSplitLineAndArea(e)},t.prototype._buildAxes=function(e,t){var n=e.coordinateSystem;Q(sA(n.getIndicatorAxes(),function(e){var r=e.model.get(`showName`)?e.name:``;return new vQ(e.model,t,{axisName:r,position:[n.cx,n.cy],rotation:e.angle,labelDirection:-1,tickDirection:-1,nameDirection:1})}),function(e){e.build(),this.group.add(e.group)},this)},t.prototype._buildSplitLineAndArea=function(e){var t=e.coordinateSystem,n=t.getIndicatorAxes();if(!n.length)return;var r=e.get(`shape`),i=e.getModel(`splitLine`),a=e.getModel(`splitArea`),o=i.getModel(`lineStyle`),s=a.getModel(`areaStyle`),c=i.get(`show`),l=a.get(`show`),u=o.get(`color`),d=s.get(`color`),f=mA(u)?u:[u],p=mA(d)?d:[d],m=[],h=[];function g(e,t,n){var r=n%t.length;return e[r]=e[r]||[],r}if(r===`circle`)for(var _=n[0].getTicksCoords(),v=t.cx,y=t.cy,b=0;b<_.length;b++){if(c){var x=g(m,f,b);m[x].push(new FR({shape:{cx:v,cy:y,r:_[b].coord}}))}if(l&&b<_.length-1){var x=g(h,p,b);h[x].push(new YR({shape:{cx:v,cy:y,r0:_[b].coord,r:_[b+1].coord}}))}}else for(var S,C=sA(n,function(e,n){var r=e.getTicksCoords();return S=S==null?r.length-1:Math.min(r.length-1,S),sA(r,function(e){return t.coordToPoint(e.coord,n)})}),w=[],b=0;b<=S;b++){for(var T=[],E=0;E3?1.4:i>1?1.2:1.1,c=r>0?s:1/s;this._checkTriggerMoveZoom(this,`zoom`,`zoomOnMouseWheel`,e,{scale:c,originX:a,originY:o,isAvailableBehavior:null})}if(n){var l=Math.abs(r),u=(r>0?1:-1)*(l>3?.4:l>1?.15:.05);this._checkTriggerMoveZoom(this,`scrollMove`,`moveOnMouseWheel`,e,{scrollDelta:u,originX:a,originY:o,isAvailableBehavior:null})}}}},t.prototype._pinchHandler=function(e){if(!(g1(this._zr,`globalPan`)||y1(e))){var t=e.pinchScale>1?1.1:1/1.1;this._checkTriggerMoveZoom(this,`zoom`,null,e,{scale:t,originX:e.pinchX,originY:e.pinchY,isAvailableBehavior:null})}},t.prototype._checkTriggerMoveZoom=function(e,t,n,r,i){e._checkPointer(r,i.originX,i.originY)&&(Oj(r.event),r.__ecRoamConsumed=!0,C1(e,t,n,r,i))},t}(mj);function y1(e){return e.__ecRoamConsumed}var PFe=eI();function b1(e){var t=PFe(e);return t.roam=t.roam||{},t.uniform=t.uniform||{},t}function x1(e,t,n,r){for(var i=b1(e).roam,a=i[t]=i[t]||[],o=0;o=4&&(l={x:parseFloat(d[0]||0),y:parseFloat(d[1]||0),width:parseFloat(d[2]),height:parseFloat(d[3])})}if(l&&o!=null&&s!=null&&(u=H1(l,{x:0,y:0,width:o,height:s}),!t.ignoreViewBox)){var f=r;r=new QP,r.add(f),f.scaleX=f.scaleY=u.scale,f.x=u.x,f.y=u.y}return!t.ignoreRootClip&&o!=null&&s!=null&&r.setClipPath(new DL({shape:{x:0,y:0,width:o,height:s}})),{root:r,width:o,height:s,viewBoxRect:l,viewBoxTransform:u,named:i}},e.prototype._parseNode=function(e,t,n,r,i,a){var o=e.nodeName.toLowerCase(),s,c=r;if(o===`defs`&&(i=!0),o===`text`&&(a=!0),o===`defs`||o===`switch`)s=t;else{if(!i){var l=E1[o];if(l&&UA(E1,o)){s=l.call(this,e,t);var u=e.getAttribute(`name`);if(u){var d={name:u,namedFrom:null,svgNodeTagLower:o,el:s};n.push(d),o===`g`&&(c=d)}else r&&n.push({name:r.name,namedFrom:r,svgNodeTagLower:o,el:s});t.add(s)}}var f=j1[o];if(f&&UA(j1,o)){var p=f.call(this,e),m=e.getAttribute(`id`);m&&(this._defs[m]=p)}}if(s&&s.isGroup)for(var h=e.firstChild;h;)h.nodeType===1?this._parseNode(h,s,n,c,i,a):h.nodeType===3&&a&&this._parseText(h,s),h=h.nextSibling},e.prototype._parseText=function(e,t){var n=new SL({style:{text:e.textContent},silent:!0,x:this._textX||0,y:this._textY||0});P1(t,n),I1(e,n,this._defsUsePending,!1,!1),RFe(n,t);var r=n.style,i=r.fontSize;i&&i<9&&(r.fontSize=9,n.scaleX*=i/9,n.scaleY*=i/9),r.font=(r.fontSize||r.fontFamily)&&[r.fontStyle,r.fontWeight,(r.fontSize||12)+`px`,r.fontFamily||`sans-serif`].join(` `);var a=n.getBoundingRect();return this._textX+=a.width,t.add(n),n},e.internalField=(function(){E1={g:function(e,t){var n=new QP;return P1(t,n),I1(e,n,this._defsUsePending,!1,!1),n},rect:function(e,t){var n=new DL;return P1(t,n),I1(e,n,this._defsUsePending,!1,!1),n.setShape({x:parseFloat(e.getAttribute(`x`)||`0`),y:parseFloat(e.getAttribute(`y`)||`0`),width:parseFloat(e.getAttribute(`width`)||`0`),height:parseFloat(e.getAttribute(`height`)||`0`)}),n.silent=!0,n},circle:function(e,t){var n=new FR;return P1(t,n),I1(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute(`cx`)||`0`),cy:parseFloat(e.getAttribute(`cy`)||`0`),r:parseFloat(e.getAttribute(`r`)||`0`)}),n.silent=!0,n},line:function(e,t){var n=new $R;return P1(t,n),I1(e,n,this._defsUsePending,!1,!1),n.setShape({x1:parseFloat(e.getAttribute(`x1`)||`0`),y1:parseFloat(e.getAttribute(`y1`)||`0`),x2:parseFloat(e.getAttribute(`x2`)||`0`),y2:parseFloat(e.getAttribute(`y2`)||`0`)}),n.silent=!0,n},ellipse:function(e,t){var n=new IR;return P1(t,n),I1(e,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(e.getAttribute(`cx`)||`0`),cy:parseFloat(e.getAttribute(`cy`)||`0`),rx:parseFloat(e.getAttribute(`rx`)||`0`),ry:parseFloat(e.getAttribute(`ry`)||`0`)}),n.silent=!0,n},polygon:function(e,t){var n=e.getAttribute(`points`),r;n&&(r=F1(n));var i=new ZR({shape:{points:r||[]},silent:!0});return P1(t,i),I1(e,i,this._defsUsePending,!1,!1),i},polyline:function(e,t){var n=e.getAttribute(`points`),r;n&&(r=F1(n));var i=new QR({shape:{points:r||[]},silent:!0});return P1(t,i),I1(e,i,this._defsUsePending,!1,!1),i},image:function(e,t){var n=new CL;return P1(t,n),I1(e,n,this._defsUsePending,!1,!1),n.setStyle({image:e.getAttribute(`xlink:href`)||e.getAttribute(`href`),x:+e.getAttribute(`x`),y:+e.getAttribute(`y`),width:+e.getAttribute(`width`),height:+e.getAttribute(`height`)}),n.silent=!0,n},text:function(e,t){var n=e.getAttribute(`x`)||`0`,r=e.getAttribute(`y`)||`0`,i=e.getAttribute(`dx`)||`0`,a=e.getAttribute(`dy`)||`0`;this._textX=parseFloat(n)+parseFloat(i),this._textY=parseFloat(r)+parseFloat(a);var o=new QP;return P1(t,o),I1(e,o,this._defsUsePending,!1,!0),o},tspan:function(e,t){var n=e.getAttribute(`x`),r=e.getAttribute(`y`);n!=null&&(this._textX=parseFloat(n)),r!=null&&(this._textY=parseFloat(r));var i=e.getAttribute(`dx`)||`0`,a=e.getAttribute(`dy`)||`0`,o=new QP;return P1(t,o),I1(e,o,this._defsUsePending,!1,!0),this._textX+=parseFloat(i),this._textY+=parseFloat(a),o},path:function(e,t){var n=NR(e.getAttribute(`d`)||``);return P1(t,n),I1(e,n,this._defsUsePending,!1,!1),n.silent=!0,n}}})(),e}(),j1={lineargradient:function(e){var t=new oz(parseInt(e.getAttribute(`x1`)||`0`,10),parseInt(e.getAttribute(`y1`)||`0`,10),parseInt(e.getAttribute(`x2`)||`10`,10),parseInt(e.getAttribute(`y2`)||`0`,10));return M1(e,t),N1(e,t),t},radialgradient:function(e){var t=new sz(parseInt(e.getAttribute(`cx`)||`0`,10),parseInt(e.getAttribute(`cy`)||`0`,10),parseInt(e.getAttribute(`r`)||`0`,10));return M1(e,t),N1(e,t),t}};function M1(e,t){e.getAttribute(`gradientUnits`)===`userSpaceOnUse`&&(t.global=!0)}function N1(e,t){for(var n=e.firstChild;n;){if(n.nodeType===1&&n.nodeName.toLocaleLowerCase()===`stop`){var r=n.getAttribute(`offset`),i=void 0;i=r&&r.indexOf(`%`)>0?parseInt(r,10)/100:r?parseFloat(r):0;var a={};V1(n,a,a);var o=a.stopColor||n.getAttribute(`stop-color`)||`#000000`,s=a.stopOpacity||n.getAttribute(`stop-opacity`);if(s){var c=uN(o);c&&c[3]&&(c[3]*=nN(s),o=_N(c,`rgba`))}t.colorStops.push({offset:i,color:o})}n=n.nextSibling}}function P1(e,t){e&&e.__inheritedStyle&&(t.__inheritedStyle||={},nA(t.__inheritedStyle,e.__inheritedStyle))}function F1(e){for(var t=R1(e),n=[],r=0;r0;a-=2){var o=r[a],s=r[a-1],c=R1(o);switch(i||=Mj(),s){case`translate`:Ij(i,i,[parseFloat(c[0]),parseFloat(c[1]||`0`)]);break;case`scale`:Rj(i,i,[parseFloat(c[0]),parseFloat(c[1]||c[0])]);break;case`rotate`:Lj(i,i,-parseFloat(c[0])*z1,[parseFloat(c[1]||`0`),parseFloat(c[2]||`0`)]);break;case`skewX`:var l=Math.tan(parseFloat(c[0])*z1);Fj(i,[1,0,l,1,0,0],i);break;case`skewY`:var u=Math.tan(parseFloat(c[0])*z1);Fj(i,[1,u,0,1,0,0],i);break;case`matrix`:i[0]=parseFloat(c[0]),i[1]=parseFloat(c[1]),i[2]=parseFloat(c[2]),i[3]=parseFloat(c[3]),i[4]=parseFloat(c[4]),i[5]=parseFloat(c[5]);break}}t.setLocalTransform(i)}}var B1=/([^\s:;]+)\s*:\s*([^:;]+)/g;function V1(e,t,n){var r=e.getAttribute(`style`);if(r){B1.lastIndex=0;for(var i;(i=B1.exec(r))!=null;){var a=i[1],o=UA(D1,a)?D1[a]:null;o&&(t[o]=i[2]);var s=UA(k1,a)?k1[a]:null;s&&(n[s]=i[2])}}}function WFe(e,t,n){for(var r=0;r1e-6;k0[0]=o?(i[0]-r.x)/a:i[0],k0[1]=o?(i[1]-r.y)/a:i[1],uj(k0,k0,e.mtRawInv);var s=hIe(e,k0);A0(t,s,a),Q(n,function(e){e!==t&&A0(e,s.slice(),a)})}var k0=[];function A0(e,t,n){var r=e.option;r.center=t,r.zoom=n}function j0(e,t){if(t){var n=t.min||0,r=t.max||1/0;e=Math.max(Math.min(r,e),n)}return e}function M0(e,t){var n=t.getShallow(`nodeScaleRatio`,!0)||1,r=X1(e);return((r.zoom-1)*n+1)/(r.trans[2].scaleX||1)}function N0(e,t,n,r,i,a,o,s){if(!w0(e)){n.disable();return}n.enable(OA(e.get(`roam`),o),{api:t,zInfo:{component:e},triggerInfo:{roamTrigger:e.get(`roamTrigger`),isInSelf:r,isInClip:function(e,t,n){return!i||i.contain(t,n)}}});function c(n){var r=e.mainType,i=pB(nA({type:L0(r,e.subType,KTe)},n));s&&(i.componentType=r),i[r+`Id`]=e.id,t.dispatchAction(i)}n.off(`pan`).off(`zoom`).on(`pan`,function(e){a&&a(`pan`),c({dx:e.dx,dy:e.dy})}).on(`zoom`,function(e){a&&a(`zoom`),c({zoom:e.scale,originX:e.originX,originY:e.originY})})}function P0(e){return function(t,n,r){return F0.copy(e.getBoundingRect()),F0.applyTransform(e.getComputedTransform()),F0.contain(n,r)}}var F0=new eM(0,0,0,0);function I0(e,t,n){var r=L0(t,n,KTe);e.registerAction({type:r,event:r,update:`none`},function(e,r,i){r.eachComponent(aI(e,t,n),function(t){C0(e,t),T0(e,t,r,i)})})}function L0(e,t,n){return(e===`series`?t===`map`?`geo`:t:e)+n}function R0(e){return e.zoom!=null}function z0(e,t,n,r,i,a,o){var s=new Z1(null,O0(e.ecModel,t));return s0(s,n,r,i,a),o?c0(s,o.x,o.y,o.width,o.height):c0(s,n,r,i,a),o0(s,e),s}var B0=[`rect`,`circle`,`line`,`ellipse`,`polygon`,`polyline`,`path`],_Ie=zA(B0),vIe=zA(B0.concat([`g`])),yIe=zA(B0.concat([`g`])),V0=eI();function H0(e){var t=e.getItemStyle(),n=e.get(`areaColor`);return n!=null&&(t.fill=n),t}function U0(e){var t=e.style;t&&(t.stroke=t.stroke||t.fill,t.fill=null)}var W0=function(){function e(e){var t=this.group=new QP,n=this._transformGroup=new QP;t.add(n),this.uid=RB(`ec_map_draw`),this._controller=new v1(e.getZr()),n.add(this._regionsGroup=new QP),n.add(this._svgGroup=new QP)}return e.prototype.draw=function(e,t,n,r,i){var a=this,o=e.getData&&e.getData();Z0(e)&&t.eachComponent({mainType:`series`,subType:`map`},function(t){!o&&t.getHostGeoModel()===e&&(o=t.getData())});var s=e.coordinateSystem,c=s.view,l=this._regionsGroup,u=this._transformGroup,d=!l.childAt(0)||i,f;s.shouldClip()?(f=t0(null,c),this.group.setClipPath(new DL({shape:f.clone()}))):this.group.removeClipPath(),b0(u,1,c,d?null:e);var p=o&&o.getVisual(`visualMeta`)&&o.getVisual(`visualMeta`).length>0;s.resourceType===`geoJSON`?this._buildGeoJSON(c,n,s,e,o,p):s.resourceType===`geoSVG`&&this._buildSVG(c,n,s,e,o,p),N0(e,n,this._controller,function(t,n,r){return e.coordinateSystem.containPoint([n,r])},f,function(){a._mouseDownFlag=!1},!1,!0),this._updateMapSelectHandler(e,l,n,r)},e.prototype.__updateOnOwnRoam=function(e){b0(this._transformGroup,1,e.coordinateSystem.view,null)},e.prototype._buildGeoJSON=function(e,t,n,r,i,a){var o=this._regionsGroupByName=zA(),s=zA(),c=this._regionsGroup,l=n.projection,u=l&&l.stream,d=TP(n0(null,e,0));function f(e,t){return t&&(e=t(e)),e&&uj([],e,d)}function p(e){for(var t=[],n=!u&&l&&l.project,r=0;r=0)&&(u=e);var d=o?{normal:{align:`center`,verticalAlign:`middle`}}:null;bB(n,xB(i),{labelFetcher:u,labelDataIndex:l,defaultText:r},d);var f=n.getTextContent();if(f&&(V0(f).ignore=f.ignore,n.textConfig&&o)){var p=n.getBoundingRect().clone();n.textConfig.layoutRect=p,n.textConfig.position=[(o[0]-p.x)/p.width*100+`%`,(o[1]-p.y)/p.height*100+`%`]}n.disableLabelAnimation=!0}else n.removeTextContent(),n.removeTextConfig(),n.disableLabelAnimation=null}function q0(e,t,n,r,i,a){t?t.setItemGraphicEl(a,n):jL(n).eventData={componentType:`geo`,componentIndex:e.componentIndex,geoIndex:e.componentIndex,name:r,region:i&&i.option||{}}}function J0(e,t,n,r,i){t||nB({el:n,componentModel:e,itemName:r,itemTooltipOption:i.get(`tooltip`)})}function Y0(e,t,n,r){t.highDownSilentOnTouch=!!e.get(`selectedMode`);var i=r.getModel(`emphasis`),a=i.get(`focus`);return dR(t,a,i.get(`blurScope`),i.get(`disabled`)),Z0(e)&&SEe(t,e,n),a}function X0(e,t,n){var r=[],i;function a(){i=[]}function o(){i.length&&(r.push(i),i=[])}var s=t({polygonStart:a,polygonEnd:o,lineStart:a,lineEnd:o,point:function(e,t){isFinite(e)&&isFinite(t)&&i.push([e,t])},sphere:function(){}});return!n&&s.polygonStart(),Q(e,function(e){s.lineStart();for(var t=0;t-1&&(n.style.stroke=n.style.fill,n.style.fill=$.color.neutral00,n.style.lineWidth=2),n},t.prototype.__ownRoamView=function(){return $0(this)?this.coordinateSystem.view:null},t.type=`series.map`,t.dependencies=[`geo`],t.layoutMode=`box`,t.defaultOption={z:2,coordinateSystem:`geo`,map:``,left:`center`,top:`center`,aspectScale:null,showLegendSymbol:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,selectedMode:!0,label:{show:!1,color:$.color.tertiary},itemStyle:{borderWidth:.5,borderColor:$.color.border,areaColor:$.color.background},emphasis:{label:{show:!0,color:$.color.primary},itemStyle:{areaColor:$.color.highlight}},select:{label:{show:!0,color:$.color.primary},itemStyle:{color:$.color.highlight}},nameProperty:`name`},t}(sW);function Q0(e){return e.indexOf(`i`)===0}function $0(e){return e2(e.seriesGroup)===e&&!e.getHostGeoModel()}function e2(e){return e.f[0]}function t2(e,t){var n={};return e.eachRawSeriesByType(`map`,function(r){var i=r.getHostGeoModel(),a=i?`o`+i.id:`i`+r.getMapType(),o=n[a]=n[a]||{f:[],r:[]};!e.isSeriesFiltered(r)&&!t&&o.f.push(r),o.r.push(r)}),n}var xIe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=`map`,t}return t.prototype.render=function(e,t,n,r){if(!(r&&r.type===`mapToggleSelect`&&r.from===this.uid)){var i=this.group;if(i.removeAll(),!e.getHostGeoModel()){var a=this._mapDraw;a&&r&&r.type===`geoRoam`&&a.resetForLabelLayout(),r&&r.type===`geoRoam`&&r.componentType===`series`&&r.seriesId===e.id?a&&i.add(a.group):$0(e)?(a||=this._mapDraw=new W0(n),i.add(a.group),a.draw(e,t,n,this,r)):this._clearMapDraw(),e.get(`showLegendSymbol`)&&t.getComponent(`legend`)&&this._renderSymbols(e)}}},t.prototype.__updateOnOwnRoam=function(e,t,n){var r=this._mapDraw;$0(t)&&r&&r.__updateOnOwnRoam(t)},t.prototype.remove=function(){this._clearMapDraw(),this.group.removeAll()},t.prototype.dispose=function(){this._clearMapDraw()},t.prototype._clearMapDraw=function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null},t.prototype._renderSymbols=function(e){var t=e.originalData,n=this.group;t.each(t.mapDimension(`value`),function(r,i){if(!isNaN(r)){var a=t.getItemLayout(i);if(!(!a||!a.point)){var o=a.point,s=a.offset,c=new FR({style:{fill:e.getData().getVisual(`style`).fill},shape:{cx:o[0]+s*9,cy:o[1],r:3},silent:!0,z2:8+(s?0:11)});if(!s){var l=e2(e.seriesGroup).getData(),u=t.getName(i),d=l.indexOfName(u),f=t.getItemModel(i),p=f.getModel(`label`),m=l.getItemGraphicEl(d);bB(c,xB(f),{labelFetcher:{getFormattedLabel:function(t,n){return e.getFormattedLabel(d,n)}},defaultText:u}),c.disableLabelAnimation=!0,p.get(`position`)||c.setTextConfig({position:`bottom`}),m.onHoverStateChange=function(e){XL(c,e)}}n.add(c)}}})},t.type=`map`,t}(mW),SIe={geoJSON:{aspectScale:.75,invertLongitute:!0},geoSVG:{aspectScale:1,invertLongitute:!1}},n2=[`lng`,`lat`],r2=function(e){X(t,e);function t(t,n,r){var i=e.call(this)||this;i.dimensions=n2,i.type=`geo`,i._nameCoordMap=zA(),i.name=t;var a=r.projection,o=Y1.load(n,r.nameMap,r.nameProperty),s=Y1.getGeoResource(n);i.resourceType=s?s.type:null;var c=i.regions=o.regions,l=SIe[s.type];i._clip=r.clip,i.view=new Z1(a?!1:l.invertLongitute,O0(r.ecModel,r.api),i),i.map=n,i._regionsMap=o.regionsMap,i.regions=o.regions,i.projection=a;var u;if(a)for(var d=0;d1?(b.width=y,b.height=y/g):(b.height=y,b.width=y*g),b.y=v[1]-b.height/2,b.x=v[0]-b.width/2;else{var x=e.getBoxLayoutParams();x.aspect=g,b=QV(x,h),b=$V(e,b,g)}c0(n,b.x,b.y,b.width,b.height),o0(n,e)}function CIe(e,t){Q(t.get(`geoCoord`),function(t,n){e.addGeoCoord(n,t)})}var o2=new(function(){function e(){this.dimensions=n2}return e.prototype.create=function(e,t){var n=[];function r(e){return{nameProperty:e.get(`nameProperty`),aspectScale:e.get(`aspectScale`),projection:e.get(`projection`),clip:e.getShallow(`clip`,!0)}}return e.eachComponent(`geo`,function(i,a){var o=i.get(`map`),s=new r2(o+a,o,Z({nameMap:i.get(`nameMap`),api:t,ecModel:e},r(i)));n.push(s),i.coordinateSystem=s,s.model=i,s.resize=a2,s.resize(i,t)}),e.eachSeries(function(e){UV({targetModel:e,coordSysType:`geo`,coordSysProvider:function(){var t=e.subType===`map`?e.getHostGeoModel():e.getReferringComponents(`geo`,rI).models[0];return t&&t.coordinateSystem},allowNotFound:!0})}),Q(t2(e,!0),function(i,a){if(Q0(a)){var o=i.r[0],s=[];Q(i.r,function(e){s.push(e.get(`nameMap`)),e.seriesGroup=null});var c=a.slice(1),l=new r2(c,c,Z({nameMap:eA(s),api:t,ecModel:e},r(o))),u;Q(i.r,function(e){u=OA(u,e.get(`scaleLimit`))}),n.push(l),l.resize=a2,l.resize(o,t),Q(i.r,function(e){e.coordinateSystem=l,CIe(l,e)})}}),n},e.prototype.getFilledRegions=function(e,t,n,r){for(var i=(e||[]).slice(),a=zA(),o=0;o=0;a--){var o=i[a];o.hierNode={defaultAncestor:null,ancestor:o,prelim:0,modifier:0,change:0,shift:0,i:a,thread:null},n.push(o)}}function PIe(e,t){var n=e.isExpand?e.children:[],r=e.parentNode.children,i=e.hierNode.i?r[e.hierNode.i-1]:null;if(n.length){IIe(e);var a=(n[0].hierNode.prelim+n[n.length-1].hierNode.prelim)/2;i?(e.hierNode.prelim=i.hierNode.prelim+t(e,i),e.hierNode.modifier=e.hierNode.prelim-a):e.hierNode.prelim=a}else i&&(e.hierNode.prelim=i.hierNode.prelim+t(e,i));e.parentNode.hierNode.defaultAncestor=LIe(e,i,e.parentNode.hierNode.defaultAncestor||r[0],t)}function FIe(e){var t=e.hierNode.prelim+e.parentNode.hierNode.modifier;e.setLayout({x:t},!0),e.hierNode.modifier+=e.parentNode.hierNode.modifier}function c2(e){return arguments.length?e:BIe}function l2(e,t){return e-=Math.PI/2,{x:t*Math.cos(e),y:t*Math.sin(e)}}function IIe(e){for(var t=e.children,n=t.length,r=0,i=0;--n>=0;){var a=t[n];a.hierNode.prelim+=r,a.hierNode.modifier+=r,i+=a.hierNode.change,r+=a.hierNode.shift+i}}function LIe(e,t,n,r){if(t){for(var i=e,a=e,o=a.parentNode.children[0],s=t,c=i.hierNode.modifier,l=a.hierNode.modifier,u=o.hierNode.modifier,d=s.hierNode.modifier;s=u2(s),a=d2(a),s&&a;){i=u2(i),o=d2(o),i.hierNode.ancestor=e;var f=s.hierNode.prelim+d-a.hierNode.prelim-l+r(s,a);f>0&&(zIe(RIe(s,e,n),e,f),l+=f,c+=f),d+=s.hierNode.modifier,l+=a.hierNode.modifier,c+=i.hierNode.modifier,u+=o.hierNode.modifier}s&&!u2(i)&&(i.hierNode.thread=s,i.hierNode.modifier+=d-c),a&&!d2(o)&&(o.hierNode.thread=a,o.hierNode.modifier+=l-u,n=e)}return n}function u2(e){var t=e.children;return t.length&&e.isExpand?t[t.length-1]:e.hierNode.thread}function d2(e){var t=e.children;return t.length&&e.isExpand?t[0]:e.hierNode.thread}function RIe(e,t,n){return e.hierNode.ancestor.parentNode===t.parentNode?e.hierNode.ancestor:n}function zIe(e,t,n){var r=n/(t.hierNode.i-e.hierNode.i);t.hierNode.change-=r,t.hierNode.shift+=n,t.hierNode.modifier+=n,t.hierNode.prelim+=n,e.hierNode.change+=r}function BIe(e,t){return e.parentNode===t.parentNode?1:2}var f2=eI();function p2(e){var t=e.mainData,n=e.datas;n||(n={main:t},e.datasAttr={main:`data`}),e.datas=e.mainData=null,m2(t,n,e),Q(n,function(n){Q(t.TRANSFERABLE_METHODS,function(t){n.wrapMethod(t,pA(VIe,e))})}),t.wrapMethod(`cloneShallow`,pA(UIe,e)),Q(t.CHANGABLE_METHODS,function(n){t.wrapMethod(n,pA(HIe,e))}),MA(n[t.dataType]===t)}function VIe(e,t){if(KIe(this)){var n=Z({},f2(this).datas);n[this.dataType]=t,m2(t,n,e)}else h2(t,this.dataType,f2(this).mainData,e);return t}function HIe(e,t){return e.struct&&e.struct.update(),t}function UIe(e,t){return Q(f2(t).datas,function(n,r){n!==t&&h2(n.cloneShallow(),r,t,e)}),t}function WIe(e){var t=f2(this).mainData;return e==null||t==null?t:f2(t).datas[e]}function GIe(){var e=f2(this).mainData;return e==null?[{data:e}]:sA(dA(f2(e).datas),function(t){return{type:t,data:f2(e).datas[t]}})}function KIe(e){return f2(e).mainData===e}function m2(e,t,n){f2(e).datas={},Q(t,function(t,r){h2(t,r,e,n)})}function h2(e,t,n,r){f2(n).datas[t]=e,f2(e).mainData=n,e.dataType=t,r.struct&&(e[r.structAttr]=r.struct,r.struct[r.datasAttr[t]]=e),e.getLinkedData=WIe,e.getLinkedDataAll=GIe}var qIe=function(){function e(e,t){this.depth=0,this.height=0,this.dataIndex=-1,this.children=[],this.viewChildren=[],this.isExpand=!1,this.name=e||``,this.hostTree=t}return e.prototype.isRemoved=function(){return this.dataIndex<0},e.prototype.eachNode=function(e,t,n){hA(e)&&(n=t,t=e,e=null),e||={},gA(e)&&(e={order:e});var r=e.order||`preorder`,i=this[e.attr||`children`],a;r===`preorder`&&(a=t.call(n,this));for(var o=0;!a&&ot&&(t=r.height)}this.height=t+1},e.prototype.getNodeById=function(e){if(this.getId()===e)return this;for(var t=0,n=this.children,r=n.length;t=0&&this.hostTree.data.setItemLayout(this.dataIndex,e,t)},e.prototype.getLayout=function(){return this.hostTree.data.getItemLayout(this.dataIndex)},e.prototype.getModel=function(e){if(!(this.dataIndex<0))return this.hostTree.data.getItemModel(this.dataIndex).getModel(e)},e.prototype.getLevelModel=function(){return(this.hostTree.levelModels||[])[this.depth]},e.prototype.setVisual=function(e,t){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,e,t)},e.prototype.getVisual=function(e){return this.hostTree.data.getItemVisual(this.dataIndex,e)},e.prototype.getRawIndex=function(){return this.hostTree.data.getRawIndex(this.dataIndex)},e.prototype.getId=function(){return this.hostTree.data.getId(this.dataIndex)},e.prototype.getChildIndex=function(){if(this.parentNode){for(var e=this.parentNode.children,t=0;t=0){var r=n.getData().tree.root,i=e.targetNode;if(gA(i)&&(i=r.getNodeById(i)),i&&r.contains(i))return{node:i};var a=e.targetNodeId;if(a!=null&&(i=r.getNodeById(a)))return{node:i}}}function v2(e){for(var t=[];e;)e=e.parentNode,e&&t.push(e);return t.reverse()}function y2(e,t){return rA(v2(e),t)>=0}function b2(e,t){for(var n=[];e;){var r=e.dataIndex;n.push({name:e.name,dataIndex:r,value:t.getRawValue(r)}),e=e.parentNode}return n.reverse(),n}var x2=`tree`,YIe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.hasSymbolVisual=!0,n.ignoreStyleOnData=!0,n}return t.prototype.getInitialData=function(e){var t={name:e.name,children:e.data},n=new LB(e.leaves||{},this,this.ecModel),r=g2.createTree(t,this,i);function i(e){e.wrapMethod(`getItemModel`,function(e,t){var i=r.getNodeByDataIndex(t);return i&&i.children.length&&i.isExpand||(e.parentModel=n),e})}var a=0;r.eachNode(`preorder`,function(e){e.depth>a&&(a=e.depth)});var o=e.expandAndCollapse&&e.initialTreeDepth>=0?e.initialTreeDepth:a;return r.root.eachNode(`preorder`,function(e){var t=e.hostTree.data.getRawDataItem(e.dataIndex);e.isExpand=t&&t.collapsed!=null?!t.collapsed:e.depth<=o}),r.data},t.prototype.getOrient=function(){var e=this.get(`orient`);return e===`horizontal`?e=`LR`:e===`vertical`&&(e=`TB`),e},t.prototype.formatTooltip=function(e,t,n){for(var r=this.getData().tree,i=r.root.children[0],a=r.getNodeByDataIndex(e),o=a.getValue(),s=a.name;a&&a!==i;)s=a.parentNode.name+`.`+s,a=a.parentNode;return qU(`nameValue`,{name:s,value:o,noValue:isNaN(o)||o==null})},t.prototype.getDataParams=function(t){var n=e.prototype.getDataParams.apply(this,arguments),r=this.getData().tree.getNodeByDataIndex(t);return n.treeAncestors=b2(r,this),n.collapsed=!r.isExpand,n},t.prototype.__ownRoamView=function(){return this.coordinateSystem},t.type=`series.`+x2,t.layoutMode=`box`,t.defaultOption={z:2,coordinateSystemUsage:`box`,left:`12%`,top:`12%`,right:`12%`,bottom:`12%`,layout:`orthogonal`,edgeShape:`curve`,edgeForkPosition:`50%`,roam:!1,roamTrigger:`global`,nodeScaleRatio:.4,center:null,zoom:1,orient:`LR`,symbol:`emptyCircle`,symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:$.color.borderTint,width:1.5,curveness:.5},itemStyle:{color:`lightsteelblue`,borderWidth:1.5},label:{show:!0},animationEasing:`linear`,animationDuration:700,animationDurationUpdate:500},t}(sW),XIe=function(){function e(){this.parentPoint=[],this.childPoints=[]}return e}(),ZIe=function(e){X(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultStyle=function(){return{stroke:$.color.neutral99,fill:null}},t.prototype.getDefaultShape=function(){return new XIe},t.prototype.buildPath=function(e,t){var n=t.childPoints,r=n.length,i=t.parentPoint,a=n[0],o=n[r-1];if(r===1){e.moveTo(i[0],i[1]),e.lineTo(a[0],a[1]);return}var s=t.orient,c=s===`TB`||s===`BT`?0:1,l=1-c,u=yF(t.forkPosition,1),d=[];d[c]=i[c],d[l]=i[l]+(o[l]-i[l])*u,e.moveTo(i[0],i[1]),e.lineTo(d[0],d[1]),e.moveTo(a[0],a[1]),d[c]=a[c],e.lineTo(d[0],d[1]),d[c]=o[c],e.lineTo(d[0],d[1]),e.lineTo(o[0],o[1]);for(var f=1;fv.x,x||(b-=Math.PI));var C=x?`left`:`right`,w=s.getModel(`label`),T=w.get(`rotate`),E=Math.PI/180*T,D=g.getTextContent();D&&(g.setTextConfig({position:w.get(`position`)||C,rotation:T==null?-b:E,origin:`center`}),D.setStyle(`verticalAlign`,`middle`))}var O=s.get([`emphasis`,`focus`]),k=O===`relative`?BA(o.getAncestorsIndices(),o.getDescendantIndices()):O===`ancestor`?o.getAncestorsIndices():O===`descendant`?o.getDescendantIndices():null;k&&(jL(n).focus=k),$Ie(i,o,u,n,m,p,h,r),n.__edge&&(n.onHoverStateChange=function(t){if(t!==`blur`){var r=o.parentNode&&e.getItemGraphicEl(o.parentNode.dataIndex);r&&r.hoverState===1||XL(n.__edge,t)}})}function $Ie(e,t,n,r,i,a,o,s){var c=t.getModel(),l=e.get(`edgeShape`),u=e.get(`layout`),d=e.getOrient(),f=e.get([`lineStyle`,`curveness`]),p=e.get(`edgeForkPosition`),m=c.getModel(`lineStyle`).getLineStyle(),h=r.__edge;if(l===`curve`)t.parentNode&&t.parentNode!==n&&(h||=r.__edge=new nz({shape:D2(u,d,f,i,i)}),bz(h,{shape:D2(u,d,f,a,o)},e));else if(l===`polyline`&&u===`orthogonal`&&t!==n&&t.children&&t.children.length!==0&&t.isExpand===!0){for(var g=t.children,_=[],v=0;v=0;a--)n.push(i[a])}}function tLe(e,t){e.eachSeriesByType(`tree`,function(e){nLe(e,t)})}function nLe(e,t){var n=tH(e,t).refContainer,r=QV(e.getBoxLayoutParams(),n);e.layoutInfo=r;var i=e.get(`layout`),a=0,o=0,s=null;i===`radial`?(a=2*Math.PI,o=Math.min(r.height,r.width)/2,s=c2(function(e,t){return(e.parentNode===t.parentNode?1:2)/e.depth})):(a=r.width,o=r.height,s=c2());var c=e.getData().tree.root,l=c.children[0];if(l){NIe(c),eLe(l,PIe,s),c.hierNode.modifier=-l.hierNode.prelim,O2(l,FIe);var u=l,d=l,f=l;O2(l,function(e){var t=e.getLayout().x;td.getLayout().x&&(d=e),e.depth>f.depth&&(f=e)});var p=u===d?1:s(u,d)/2,m=p-u.getLayout().x,h=0,g=0,_=0,v=0;if(i===`radial`)h=a/(d.getLayout().x+p+m),g=o/(f.depth-1||1),O2(l,function(e){_=(e.getLayout().x+m)*h,v=(e.depth-1)*g;var t=l2(_,v);e.setLayout({x:t.x,y:t.y,rawX:_,rawY:v},!0)});else{var y=e.getOrient();y===`RL`||y===`LR`?(g=o/(d.getLayout().x+p+m),h=a/(f.depth-1||1),O2(l,function(e){v=(e.getLayout().x+m)*g,_=y===`LR`?(e.depth-1)*h:a-(e.depth-1)*h,e.setLayout({x:_,y:v},!0)})):(y===`TB`||y===`BT`)&&(h=a/(d.getLayout().x+p+m),g=o/(f.depth-1||1),O2(l,function(e){_=(e.getLayout().x+m)*h,v=y===`TB`?(e.depth-1)*g:o-(e.depth-1)*g,e.setLayout({x:_,y:v},!0)}))}}}function rLe(e){e.registerAction({type:`treeExpandAndCollapse`,event:`treeExpandAndCollapse`,update:`update`},function(e,t){t.eachComponent({mainType:NL,subType:x2,query:e},function(t){var n=e.dataIndex,r=t.getData().tree.getNodeByDataIndex(n);r.isExpand=!r.isExpand})}),I0(e,NL,x2)}var iLe=_I(x2,aLe);function aLe(e){e.eachSeriesByType(x2,function(e){var t=e.getData();t.tree.eachNode(function(e){var n=e.getModel().getModel(`itemStyle`).getItemStyle();Z(t.ensureUniqueItemVisual(e.dataIndex,`style`),n)})})}function oLe(e){e.registerChartView(QIe),e.registerSeriesModel(YIe),e.registerLayout(tLe),e.registerVisual(iLe),rLe(e)}var k2=[`treemapZoomToNode`,`treemapRender`,`treemapMove`];function sLe(e){for(var t=0;t1;)r=r.parentNode;var i=TH(e.ecModel,r.name||r.dataIndex+``,n);t.setVisual(`decal`,i)})}var cLe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.preventUsingHoverLayer=!0,n}return t.prototype.getInitialData=function(e,t){var n={name:e.name,children:e.data};j2(n);var r=e.levels||[],i=new LB({itemStyle:this.designatedVisualItemStyle={}},this,t);r=e.levels=lLe(r,t);var a=sA(r||[],function(e){return new LB(e,i,t)},this),o=g2.createTree(n,this,s);function s(e){e.wrapMethod(`getItemModel`,function(e,t){var n=o.getNodeByDataIndex(t);return e.parentModel=(n?a[n.depth]:null)||i,e})}return o.data},t.prototype.optionUpdated=function(){this.resetViewRoot()},t.prototype.formatTooltip=function(e,t,n){var r=this.getData(),i=this.getRawValue(e);return qU(`nameValue`,{name:r.getName(e),value:i})},t.prototype.getDataParams=function(t){var n=e.prototype.getDataParams.apply(this,arguments);return n.treeAncestors=b2(this.getData().tree.getNodeByDataIndex(t),this),n.treePathInfo=n.treeAncestors,n},t.prototype.setLayoutInfo=function(e){this.layoutInfo=this.layoutInfo||{},Z(this.layoutInfo,e)},t.prototype.mapIdToIndex=function(e){var t=this._idIndexMap;t||(t=this._idIndexMap=zA(),this._idIndexMapCount=0);var n=t.get(e);return n??t.set(e,n=this._idIndexMapCount++),n},t.prototype.getViewRoot=function(){return this._viewRoot},t.prototype.resetViewRoot=function(e){e?this._viewRoot=e:e=this._viewRoot;var t=this.getRawData().tree.root;(!e||e!==t&&!t.contains(e))&&(this._viewRoot=t)},t.prototype.enableAriaDecal=function(){A2(this)},t.type=`series.treemap`,t.layoutMode=`box`,t.defaultOption={progressive:0,coordinateSystemUsage:`box`,left:$.size.l,top:$.size.xxxl,right:$.size.l,bottom:$.size.xxxl,sort:!0,clipWindow:`origin`,squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:`▶`,zoomToNodeRatio:.32*.32,scaleLimit:{max:5,min:.2},roam:!0,roamTrigger:`global`,nodeClick:`zoomToNode`,animation:!0,animationDurationUpdate:900,animationEasing:`quinticInOut`,breadcrumb:{show:!0,height:22,left:`center`,bottom:$.size.m,emptyItemWidth:25,itemStyle:{color:$.color.backgroundShade,textStyle:{color:$.color.secondary}},emphasis:{itemStyle:{color:$.color.background}}},label:{show:!0,distance:0,padding:5,position:`inside`,color:$.color.neutral00,overflow:`truncate`},upperLabel:{show:!1,position:[0,`50%`],height:20,overflow:`truncate`,verticalAlign:`middle`},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:$.color.neutral00,borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,`50%`],overflow:`truncate`,verticalAlign:`middle`}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:`index`,visibleMin:10,childrenVisibleMin:null,levels:[]},t}(sW);function j2(e){var t=0;Q(e.children,function(e){j2(e);var n=e.value;mA(n)&&(n=n[0]),t+=n});var n=e.value;mA(n)&&(n=n[0]),(n==null||isNaN(n))&&(n=t),n<0&&(n=0),mA(e.value)?e.value[0]=n:e.value=n}function lLe(e,t){var n=KF(t.get(`color`)),r=KF(t.get([`aria`,`decal`,`decals`]));if(n){e||=[];var i,a;Q(e,function(e){var t=new LB(e),n=t.get(`color`),r=t.get(`decal`);(t.get([`itemStyle`,`color`])||n&&n!==`none`)&&(i=!0),(t.get([`itemStyle`,`decal`])||r&&r!==`none`)&&(a=!0)});var o=e[0]||={};return i||(o.color=n.slice()),!a&&r&&(o.decal=r.slice()),e}}var uLe=8,M2=8,N2=5,dLe=function(){function e(e){this.group=new QP,e.add(this.group)}return e.prototype.render=function(e,t,n,r){var i=e.getModel(`breadcrumb`),a=this.group;if(a.removeAll(),!(!i.get(`show`)||!n)){var o=i.getModel(`itemStyle`),s=i.getModel(`emphasis`),c=o.getModel(`textStyle`),l=s.getModel([`itemStyle`,`textStyle`]),u=tH(e,t).refContainer,d={left:i.get(`left`),right:i.get(`right`),top:i.get(`top`),bottom:i.get(`bottom`)},f={emptyItemWidth:i.get(`emptyItemWidth`),totalWidth:0,renderList:[]},p=QV(d,u);this._prepare(n,f,c),this._renderContent(e,f,p,o,s,c,l,r),nH(a,d,u)}},e.prototype._prepare=function(e,t,n){for(var r=e;r;r=r.parentNode){var i=XF(r.getModel().get(`name`),``),a=n.getTextRect(i),o=Math.max(a.width+uLe*2,t.emptyItemWidth);t.totalWidth+=o+M2,t.renderList.push({node:r,text:i,width:o})}},e.prototype._renderContent=function(e,t,n,r,i,a,o,s){for(var c=0,l=t.emptyItemWidth,u=e.get([`breadcrumb`,`height`]),d=t.totalWidth,f=t.renderList,p=i.getModel(`itemStyle`).getItemStyle(),m=f.length-1;m>=0;m--){var h=f[m],g=h.node,_=h.width,v=h.text;d>n.width&&(d-=_-l,_=l,v=null);var y=new ZR({shape:{points:fLe(c,0,_,u,m===f.length-1,m===0)},style:nA(r.getItemStyle(),{lineJoin:`bevel`}),textContent:new kL({style:SB(a,{text:v})}),textConfig:{position:`inside`},z2:10*1e4,onclick:pA(s,g)});y.disableLabelAnimation=!0,y.getTextContent().ensureState(`emphasis`).style=SB(o,{text:v}),y.ensureState(`emphasis`).style=p,dR(y,i.get(`focus`),i.get(`blurScope`),i.get(`disabled`)),this.group.add(y),pLe(y,e,g),c+=_+M2}},e.prototype.remove=function(){this.group.removeAll()},e}();function fLe(e,t,n,r,i,a){var o=[[i?e:e-N2,t],[e+n,t],[e+n,t+r],[i?e:e-N2,t+r]];return!a&&o.splice(2,0,[e+n+N2,t+r/2]),!i&&o.push([e,t+r/2]),o}function pLe(e,t,n){jL(e).eventData={componentType:`series`,componentSubType:`treemap`,componentIndex:t.componentIndex,seriesIndex:t.seriesIndex,seriesName:t.name,seriesType:`treemap`,selfType:`breadcrumb`,nodeData:{dataIndex:n&&n.dataIndex,name:n&&n.name},treePathInfo:n&&b2(n,t)}}var mLe=function(){function e(){this._storage=[],this._elExistsMap={}}return e.prototype.add=function(e,t,n,r,i){return this._elExistsMap[e.id]?!1:(this._elExistsMap[e.id]=!0,this._storage.push({el:e,target:t,duration:n,delay:r,easing:i}),!0)},e.prototype.finished=function(e){return this._finishedCallback=e,this},e.prototype.start=function(){for(var e=this,t=this._storage.length,n=function(){t--,t<=0&&(e._storage.length=0,e._elExistsMap={},e._finishedCallback&&e._finishedCallback())},r=0,i=this._storage.length;r=0;c--){var l=i[r===`asc`?o-c-1:c].getValue();l/n*ts[1]&&(s[1]=t)})),{sum:r,dataExtent:s}}function wLe(e,t,n){for(var r=0,i=1/0,a=0,o=void 0,s=e.length;ar&&(r=o));var c=e.area*e.area,l=t*t*n;return c?P2(l*r/c,c/(l*i)):1/0}function z2(e,t,n,r,i){var a=t===n.width?0:1,o=1-a,s=[`x`,`y`],c=[`width`,`height`],l=n[s[a]],u=t?e.area/t:0;(i||u>n[c[o]])&&(u=n[c[o]]);for(var d=0,f=e.length;dkF&&(u=kF),i=c}uK2||Math.abs(e.dy)>K2)){var t=this.seriesModel.getData().tree.root;if(!t)return;var n=t.getLayout();if(!n)return;this.api.dispatchAction({type:`treemapMove`,from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:n.x+e.dx,y:n.y+e.dy,width:n.width,height:n.height}})}},t.prototype._onZoom=function(e){var t=e.originX,n=e.originY,r=e.scale,i=this.seriesModel;if(this._state!==`animating`){var a=i.getData().tree.root;if(!a)return;var o=a.getLayout();if(!o)return;var s=new eM(o.x,o.y,o.width,o.height),c=i.layoutInfo,l=H2(c,o),u=l*r;u=U2(u,i);var d=u/l;t-=c.x,n-=c.y;var f=Mj();Ij(f,f,[-t,-n]),Rj(f,f,[d,d]),Ij(f,f,[t,n]),s.applyTransform(f),this.api.dispatchAction({type:`treemapRender`,from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:s.x,y:s.y,width:s.width,height:s.height}})}},t.prototype._initEvents=function(e){var t=this;e.on(`click`,function(e){if(t._state===`ready`){var n=t.seriesModel.get(`nodeClick`,!0);if(n){var r=t.findTarget(e.offsetX,e.offsetY);if(r){var i=r.node;if(i.getLayout().isLeafRoot)t._rootToNode(r);else if(n===`zoomToNode`)t._zoomToNode(r);else if(n===`link`){var a=i.hostTree.data.getItemModel(i.dataIndex),o=a.get(`link`,!0),s=a.get(`target`,!0)||`blank`;o&&IV(o,s)}}}}},this)},t.prototype._renderBreadcrumb=function(e,t,n){var r=this;n||(n=e.get(`leafDepth`,!0)==null?this.findTarget(t.getWidth()/2,t.getHeight()/2):{node:e.getViewRoot()},n||={node:e.getData().tree.root}),(this._breadcrumb||=new dLe(this.group)).render(e,t,n.node,function(t){r._state!==`animating`&&(y2(e.getViewRoot(),t)?r._rootToNode({node:t}):r._zoomToNode({node:t}))})},t.prototype.remove=function(){this._clearController(),this._containerGroup&&this._containerGroup.removeAll(),this._storage=Q2(),this._state=`ready`,this._breadcrumb&&this._breadcrumb.remove()},t.prototype.dispose=function(){this._clearController()},t.prototype._zoomToNode=function(e){this.api.dispatchAction({type:`treemapZoomToNode`,from:this.uid,seriesId:this.seriesModel.id,targetNode:e.node})},t.prototype._rootToNode=function(e){this.api.dispatchAction({type:`treemapRootToNode`,from:this.uid,seriesId:this.seriesModel.id,targetNode:e.node})},t.prototype.findTarget=function(e,t){var n;return this.seriesModel.getViewRoot().eachNode({attr:`viewChildren`,order:`preorder`},function(r){var i=this._storage.background[r.getRawIndex()];if(i){var a=i.transformCoordToLocal(e,t),o=i.shape;if(o.x<=a[0]&&a[0]<=o.x+o.width&&o.y<=a[1]&&a[1]<=o.y+o.height)n={node:r,offsetX:a[0],offsetY:a[1]};else return!1}},this),n},t.type=`treemap`,t}(mW);function Q2(){return{nodeGroup:[],background:[],content:[]}}function jLe(e,t,n,r,i,a,o,s,c,l){if(!o)return;var u=o.getLayout(),d=e.getData(),f=o.getModel();if(d.setItemGraphicEl(o.dataIndex,null),!u||!u.isInView)return;var p=u.width,m=u.height,h=u.borderWidth,g=u.invisible,_=o.getRawIndex(),v=s&&s.getRawIndex(),y=o.viewChildren,b=u.upperHeight,x=y&&y.length,S=f.getModel(`itemStyle`),C=f.getModel([`emphasis`,`itemStyle`]),w=f.getModel([`blur`,`itemStyle`]),T=f.getModel([`select`,`itemStyle`]),E=S.get(`borderRadius`)||0,D=V(`nodeGroup`,W2);if(!D)return;if(c.add(D),D.x=u.x||0,D.y=u.y||0,D.markRedraw(),Z2(D).nodeWidth=p,Z2(D).nodeHeight=m,u.isAboveViewRoot)return D;var O=V(`background`,G2,l,OLe);O&&I(D,O,x&&u.upperLabelHeight);var k=f.getModel(`emphasis`),A=k.get(`focus`),j=k.get(`blurScope`),M=k.get(`disabled`),N=A===`ancestor`?o.getAncestorsIndices():A===`descendant`?o.getDescendantIndices():A;if(x)gR(D)&&hR(D,!1),O&&(hR(O,!M),d.setItemGraphicEl(o.dataIndex,O),fR(O,N,j));else{var P=V(`content`,G2,l,kLe);P&&L(D,P),O.disableMorphing=!0,O&&gR(O)&&hR(O,!1),hR(D,!M),d.setItemGraphicEl(o.dataIndex,D);var F=f.getShallow(`cursor`);F&&P.attr(`cursor`,F),fR(D,N,j)}return D;function I(t,n,r){var i=jL(n);if(i.dataIndex=o.dataIndex,i.seriesIndex=e.seriesIndex,n.setShape({x:0,y:0,width:p,height:m,r:E}),g)R(n);else{n.invisible=!1;var a=o.getVisual(`style`),s=a.stroke,c=X2(S);c.fill=s;var l=Y2(C);l.fill=C.get(`borderColor`);var u=Y2(w);u.fill=w.get(`borderColor`);var d=Y2(T);if(d.fill=T.get(`borderColor`),r){var f=p-2*h;z(n,s,a.opacity,{x:h,y:0,width:f,height:b})}else n.removeTextContent();n.setStyle(c),n.ensureState(`emphasis`).style=l,n.ensureState(`blur`).style=u,n.ensureState(`select`).style=d,QL(n)}t.add(n)}function L(t,n){var r=jL(n);r.dataIndex=o.dataIndex,r.seriesIndex=e.seriesIndex;var i=Math.max(p-2*h,0),a=Math.max(m-2*h,0);if(n.culling=!0,n.setShape({x:h,y:h,width:i,height:a,r:E}),g)R(n);else{n.invisible=!1;var s=o.getVisual(`style`),c=s.fill,l=X2(S);l.fill=c,l.decal=s.decal;var u=Y2(C),d=Y2(w),f=Y2(T);z(n,c,s.opacity,null),n.setStyle(l),n.ensureState(`emphasis`).style=u,n.ensureState(`blur`).style=d,n.ensureState(`select`).style=f,QL(n)}t.add(n)}function R(e){!e.invisible&&a.push(e)}function z(t,n,r,i){var a=f.getModel(i?J2:q2),s=XF(f.get(`name`),null),c=a.getShallow(`show`);bB(t,xB(f,i?J2:q2),{defaultText:c?s:null,inheritColor:n,defaultOpacity:r,labelFetcher:e,labelDataIndex:o.dataIndex});var l=t.getTextContent();if(l){var d=l.style,p=jA(d.padding||0);i&&(t.setTextConfig({layoutRect:i}),l.disableLabelLayout=!0),l.beforeUpdate=function(){var e=Math.max((i?i.width:t.shape.width)-p[1]-p[3],0),n=Math.max((i?i.height:t.shape.height)-p[0]-p[2],0);(d.width!==e||d.height!==n)&&l.setStyle({width:e,height:n})},d.truncateMinChar=2,d.lineOverflow=`truncate`,B(d,i,u);var m=l.getState(`emphasis`);B(m?m.style:null,i,u)}}function B(t,n,r){var i=t?t.text:null;if(!n&&r.isLeafRoot&&i!=null){var a=e.get(`drillDownIcon`,!0);t.text=a?a+` `+i:i}}function V(e,r,a,o){var s=v!=null&&n[e][v],c=i[e];return s?(n[e][v]=null,H(c,s)):g||(s=new r,s instanceof PI&&(s.z2=MLe(a,o)),U(c,s)),t[e][_]=s}function H(e,t){var n=e[_]={};t instanceof W2?(n.oldX=t.x,n.oldY=t.y):n.oldShape=Z({},t.shape)}function U(e,t){var n=e[_]={},a=o.parentNode,s=t instanceof QP;if(a&&(!r||r.direction===`drillDown`)){var c=0,l=0,u=i.background[a.getRawIndex()];!r&&u&&u.oldShape&&(c=u.oldShape.width,l=u.oldShape.height),s?(n.oldX=0,n.oldY=l):n.oldShape={x:c,y:l,width:0,height:0}}n.fadein=!s}}function MLe(e,t){return e*DLe+t}var $2=Q,NLe=yA,e4=-1,t4=function(){function e(t){var n=t.mappingMethod,r=t.type,i=this.option=Qk(t);this.type=r,this.mappingMethod=n,this._normalizeData=ILe[n];var a=e.visualHandlers[r];this.applyVisual=a.applyVisual,this.getColorMapper=a.getColorMapper,this._normalizedToVisual=a._normalizedToVisual[n],n===`piecewise`?(n4(i),PLe(i)):n===`category`?i.categories?FLe(i):n4(i,!0):(MA(n!==`linear`||i.dataExtent),n4(i))}return e.prototype.mapValueToVisual=function(e){var t=this._normalizeData(e);return this._normalizedToVisual(t,e)},e.prototype.getNormalizer=function(){return fA(this._normalizeData,this)},e.listVisualTypes=function(){return dA(e.visualHandlers)},e.isValidType=function(t){return e.visualHandlers.hasOwnProperty(t)},e.eachVisual=function(e,t,n){yA(e)?Q(e,t,n):t.call(n,e)},e.mapVisual=function(t,n,r){var i,a=mA(t)?[]:yA(t)?{}:(i=!0,null);return e.eachVisual(t,function(e,t){var o=n.call(r,e,t);i?a=o:a[t]=o}),a},e.retrieveVisuals=function(t){var n={},r;return t&&$2(e.visualHandlers,function(e,i){t.hasOwnProperty(i)&&(n[i]=t[i],r=!0)}),r?n:null},e.prepareVisualTypes=function(e){if(mA(e))e=e.slice();else if(NLe(e)){var t=[];$2(e,function(e,n){t.push(n)}),e=t}else return[];return e.sort(function(e,t){return t===`color`&&e!==`color`&&e.indexOf(`color`)===0?1:-1}),e},e.dependsOn=function(e,t){return t===`color`?!!(e&&e.indexOf(t)===0):e===t},e.findPieceIndex=function(e,t,n){for(var r,i=1/0,a=0,o=t.length;a=0;a--)r[a]??(delete n[t[a]],t.pop())}function n4(e,t){var n=e.visual,r=[];yA(n)?$2(n,function(e){r.push(e)}):n!=null&&r.push(n),!t&&r.length===1&&!{color:1,symbol:1}.hasOwnProperty(e.type)&&(r[1]=r[0]),u4(e,r)}function r4(e){return{applyVisual:function(t,n,r){var i=this.mapValueToVisual(t);r(`color`,e(n(`color`),i))},_normalizedToVisual:c4([0,1])}}function i4(e){var t=this.option.visual;return t[Math.round(vF(e,[0,1],[0,t.length-1],!0))]||{}}function a4(e){return function(t,n,r){r(e,this.mapValueToVisual(t))}}function o4(e){var t=this.option.visual;return t[this.option.loop&&e!==e4?e%t.length:e]}function s4(){return this.option.visual[0]}function c4(e){return{linear:function(t){return vF(t,e,this.option.visual,!0)},category:o4,piecewise:function(t,n){var r=l4.call(this,n);return r??=vF(t,e,this.option.visual,!0),r},fixed:s4}}function l4(e){var t=this.option,n=t.pieceList;if(t.hasSpecialVisual){var r=n[t4.findPieceIndex(e,n)];if(r&&r.visual)return r.visual[this.type]}}function u4(e,t){return e.visual=t,e.type===`color`&&(e.parsedVisual=sA(t,function(e){return uN(e)||[0,0,0,1]})),t}var ILe={linear:function(e){return vF(e,this.option.dataExtent,[0,1],!0)},piecewise:function(e){var t=this.option.pieceList,n=t4.findPieceIndex(e,t,!0);if(n!=null)return vF(n,[0,t.length-1],[0,1],!0)},category:function(e){return(this.option.categories?this.option.categoryMap[e]:e)??e4},fixed:WA};function d4(e,t,n){return e?t<=n:t=n.length||e===n[e.depth])&&p4(e,HLe(i,c,e,t,m,r),n,r)})}}}function zLe(e,t,n){var r=Z({},t),i=n.designatedVisualItemStyle;return Q([`color`,`colorAlpha`,`colorSaturation`],function(n){i[n]=t[n];var a=e.get(n);i[n]=null,a!=null&&(r[n]=a)}),r}function m4(e){var t=h4(e,`color`);if(t){var n=h4(e,`colorAlpha`),r=h4(e,`colorSaturation`);return r&&(t=hN(t,null,null,r)),n&&(t=gN(t,n)),t}}function BLe(e,t){return t==null?null:hN(t,null,null,e)}function h4(e,t){var n=e[t];if(n!=null&&n!==`none`)return n}function VLe(e,t,n,r,i,a){if(!(!a||!a.length)){var o=g4(t,`color`)||i.color!=null&&i.color!==`none`&&(g4(t,`colorAlpha`)||g4(t,`colorSaturation`));if(o){var s=t.get(`visualMin`),c=t.get(`visualMax`),l=n.dataExtent.slice();s!=null&&sl[1]&&(l[1]=c);var u=t.get(`colorMappingBy`),d={type:o.name,dataExtent:l,visual:o.range};d.type===`color`&&(u===`index`||u===`id`)?(d.mappingMethod=`category`,d.loop=!0):d.mappingMethod=`linear`;var f=new t4(d);return f4(f).drColorMappingBy=u,f}}}function g4(e,t){var n=e.get(t);return mA(n)&&n.length?{name:t,range:n}:null}function HLe(e,t,n,r,i,a){var o=Z({},t);if(i){var s=i.type,c=s===`color`&&f4(i).drColorMappingBy,l=c===`index`?r:c===`id`?a.mapIdToIndex(n.getId()):n.getValue(e.get(`visualDimension`));o[s]=i.mapValueToVisual(l)}return o}function ULe(e){e.registerSeriesModel(cLe),e.registerChartView(ALe),e.registerVisual(RLe),e.registerLayout(yLe),sLe(e)}function _4(e){return`_EC_`+e}var WLe=function(){function e(e){this.type=`graph`,this.nodes=[],this.edges=[],this._nodesMap={},this._edgesMap={},this._directed=e||!1}return e.prototype.isDirected=function(){return this._directed},e.prototype.addNode=function(e,t){e=e==null?``+t:``+e;var n=this._nodesMap;if(!n[_4(e)]){var r=new v4(e,t);return r.hostGraph=this,this.nodes.push(r),n[_4(e)]=r,r}},e.prototype.getNodeByIndex=function(e){var t=this.data.getRawIndex(e);return this.nodes[t]},e.prototype.getNodeById=function(e){return this._nodesMap[_4(e)]},e.prototype.addEdge=function(e,t,n){var r=this._nodesMap,i=this._edgesMap;if(vA(e)&&(e=this.nodes[e]),vA(t)&&(t=this.nodes[t]),e instanceof v4||(e=r[_4(e)]),t instanceof v4||(t=r[_4(t)]),!(!e||!t)){var a=e.id+`-`+t.id,o=new y4(e,t,n);return o.hostGraph=this,this._directed&&(e.outEdges.push(o),t.inEdges.push(o)),e.edges.push(o),e!==t&&t.edges.push(o),this.edges.push(o),i[a]=o,o}},e.prototype.getEdgeByIndex=function(e){var t=this.edgeData.getRawIndex(e);return this.edges[t]},e.prototype.getEdge=function(e,t){e instanceof v4&&(e=e.id),t instanceof v4&&(t=t.id);var n=this._edgesMap;return this._directed?n[e+`-`+t]:n[e+`-`+t]||n[t+`-`+e]},e.prototype.eachNode=function(e,t){for(var n=this.nodes,r=n.length,i=0;i=0&&e.call(t,n[i],i)},e.prototype.eachEdge=function(e,t){for(var n=this.edges,r=n.length,i=0;i=0&&n[i].node1.dataIndex>=0&&n[i].node2.dataIndex>=0&&e.call(t,n[i],i)},e.prototype.breadthFirstTraverse=function(e,t,n,r){if(t instanceof v4||(t=this._nodesMap[_4(t)]),t){for(var i=n===`out`?`outEdges`:n===`in`?`inEdges`:`edges`,a=0;a=0&&n.node2.dataIndex>=0});for(var i=0,a=r.length;i=0&&!e.hasKey(p)&&(e.set(p,!0),a.push(f.node1))}for(s=0;s=0&&!e.hasKey(v)&&(e.set(v,!0),o.push(_.node2))}}}return{edge:e.keys(),node:t.keys()}},e}(),y4=function(){function e(e,t,n){this.dataIndex=-1,this.node1=e,this.node2=t,this.dataIndex=n??-1}return e.prototype.getModel=function(e){if(!(this.dataIndex<0))return this.hostGraph.edgeData.getItemModel(this.dataIndex).getModel(e)},e.prototype.getAdjacentDataIndices=function(){return{edge:[this.dataIndex],node:[this.node1.dataIndex,this.node2.dataIndex]}},e.prototype.getTrajectoryDataIndices=function(){var e=zA(),t=zA();e.set(this.dataIndex,!0);for(var n=[this.node1],r=[this.node2],i=0;i=0&&!e.hasKey(u)&&(e.set(u,!0),n.push(l.node1))}for(i=0;i=0&&!e.hasKey(m)&&(e.set(m,!0),r.push(p.node2))}return{edge:e.keys(),node:t.keys()}},e}();function b4(e,t){return{getValue:function(n){var r=this[e][t];return r.getStore().get(r.getDimensionIndex(n||`value`),this.dataIndex)},setVisual:function(n,r){this.dataIndex>=0&&this[e][t].setItemVisual(this.dataIndex,n,r)},getVisual:function(n){return this[e][t].getItemVisual(this.dataIndex,n)},setLayout:function(n,r){this.dataIndex>=0&&this[e][t].setItemLayout(this.dataIndex,n,r)},getLayout:function(){return this[e][t].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[e][t].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[e][t].getRawIndex(this.dataIndex)}}}aA(v4,b4(`hostGraph`,`data`)),aA(y4,b4(`hostGraph`,`edgeData`));function x4(e,t,n,r,i){for(var a=new WLe(r),o=0;o `+f)),l++)}var p=n.get(`coordinateSystem`),m;if(p===`cartesian2d`||p===`polar`||p===`matrix`)m=Dq(e,n);else{var h=zV.get(p),g=h&&h.dimensions||[];rA(g,`value`)<0&&g.concat([`value`]);var _=Sq(e,{coordDimensions:g,encodeDefine:n.getEncode()}).dimensions;m=new xq(_,n),m.initData(e)}var v=new xq([`value`],n);return v.initData(c,s),i&&i(m,v),p2({mainData:m,struct:a,structAttr:`graph`,datas:{node:m,edge:v},datasAttr:{node:`data`,edge:`edgeData`}}),a.update(),a}var S4=`-->`,C4=function(e){return e.get(`autoCurveness`)||null},w4=function(e,t){var n=C4(e),r=20,i=[];if(vA(n))r=n;else if(mA(n)){e.__curvenessList=n;return}t>r&&(r=t);var a=r%2?r+2:r+3;i=[];for(var o=0;o `),value:i.value,noValue:i.value==null})}return rW({series:this,dataIndex:e,multipleSeries:t})},t.prototype._updateCategoriesData=function(){var e=sA(this.option.categories||[],function(e){return e.value==null?Z({value:0},e):e}),t=new xq([`value`],this);t.initData(e),this._categoriesData=t,this._categoriesModels=t.mapArray(function(e){return t.getItemModel(e)})},t.prototype.isAnimationEnabled=function(){return e.prototype.isAnimationEnabled.call(this)&&!(this.get(`layout`)===`force`&&this.get([`force`,`layoutAnimation`]))},t.prototype.__ownRoamView=function(){var e=this.coordinateSystem;return y0(e)&&e},t.type=`series.`+k4,t.dependencies=[`grid`,`polar`,`geo`,`singleAxis`,`calendar`],t.defaultOption={z:2,coordinateSystem:`view`,legendHoverLink:!0,layout:null,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:`center`,top:`center`,symbol:`circle`,symbolSize:10,edgeSymbol:[`none`,`none`],edgeSymbolSize:10,edgeLabel:{position:`middle`,distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:`{b}`},itemStyle:{},lineStyle:{color:$.color.neutral50,width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:$.color.primary}}},t}(sW);function A4(e){return e instanceof Array||(e=[e,e]),e}var XLe=_I(k4,ZLe);function ZLe(e){e.eachSeriesByType(k4,function(e){var t=e.getGraph(),n=e.getEdgeData(),r=A4(e.get(`edgeSymbol`)),i=A4(e.get(`edgeSymbolSize`));n.setVisual(`fromSymbol`,r&&r[0]),n.setVisual(`toSymbol`,r&&r[1]),n.setVisual(`fromSymbolSize`,i&&i[0]),n.setVisual(`toSymbolSize`,i&&i[1]),n.setVisual(`style`,e.getModel(`lineStyle`).getLineStyle()),n.each(function(e){var r=n.getItemModel(e),i=t.getEdgeByIndex(e),a=A4(r.getShallow(`symbol`,!0)),o=A4(r.getShallow(`symbolSize`,!0)),s=r.getModel(`lineStyle`).getLineStyle(),c=n.ensureUniqueItemVisual(e,`style`);switch(Z(c,s),c.stroke){case`source`:var l=i.node1.getVisual(`style`);c.stroke=l&&l.fill;break;case`target`:var l=i.node2.getVisual(`style`);c.stroke=l&&l.fill;break}a[0]&&i.setVisual(`fromSymbol`,a[0]),a[1]&&i.setVisual(`toSymbol`,a[1]),o[0]&&i.setVisual(`fromSymbolSize`,o[0]),o[1]&&i.setVisual(`toSymbolSize`,o[1])})})}function j4(e){var t=e.coordinateSystem;if(!(t&&t.type!==`view`)){var n=e.getGraph();n.eachNode(function(e){var t=e.getModel();e.setLayout([+t.get(`x`),+t.get(`y`)])}),M4(n,e)}}function M4(e,t){e.eachEdge(function(e,n){var r=kA(e.getModel().get([`lineStyle`,`curveness`]),-O4(e,t,n,!0),0),i=XA(e.node1.getLayout()),a=XA(e.node2.getLayout()),o=[i,a];+r&&o.push([(i[0]+a[0])/2-(i[1]-a[1])*r,(i[1]+a[1])/2-(a[0]-i[0])*r]),e.setLayout(o)})}var QLe=_I(k4,$Le);function $Le(e,t){e.eachSeriesByType(k4,function(e){var t=e.get(`layout`),n=e.coordinateSystem;if(n&&n.type!==`view`){var r=e.getData(),i=[];Q(n.dimensions,function(e){i=i.concat(r.mapDimensionsAll(e))});for(var a=0;a0&&(y[0]=-y[0],y[1]=-y[1]);var x=v[0]<0?-1:1;if(r.__position!==`start`&&r.__position!==`end`){var S=-Math.atan2(v[1],v[0]);l[0].8?`left`:u[0]<-.8?`right`:`center`,p=u[1]>.8?`top`:u[1]<-.8?`bottom`:`middle`;break;case`start`:r.x=-u[0]*h+c[0],r.y=-u[1]*g+c[1],f=u[0]>.8?`right`:u[0]<-.8?`left`:`center`,p=u[1]>.8?`bottom`:u[1]<-.8?`top`:`middle`;break;case`insideStartTop`:case`insideStart`:case`insideStartBottom`:r.x=h*x+c[0],r.y=c[1]+C,f=v[0]<0?`right`:`left`,r.originX=-h*x,r.originY=-C;break;case`insideMiddleTop`:case`insideMiddle`:case`insideMiddleBottom`:case`middle`:r.x=b[0],r.y=b[1]+C,f=`center`,r.originY=-C;break;case`insideEndTop`:case`insideEnd`:case`insideEndBottom`:r.x=-h*x+l[0],r.y=l[1]+C,f=v[0]>=0?`right`:`left`,r.originX=h*x,r.originY=-C;break}r.scaleX=r.scaleY=i,r.setStyle({verticalAlign:r.__verticalAlign||p,align:r.__align||f})}},t}(QP),Z4=function(){function e(e){this.group=new QP,this._LineCtor=e||X4}return e.prototype.updateData=function(e){var t=this;this._progressiveEls=null;var n=this,r=n.group,i=n._lineData;n._lineData=e,i||r.removeAll();var a=Q4(e);e.diff(i).add(function(n){t._doAdd(e,n,a)}).update(function(n,r){t._doUpdate(i,e,r,n,a)}).remove(function(e){r.remove(i.getItemGraphicEl(e))}).execute()},e.prototype.updateLayout=function(){var e=this._lineData;e&&e.eachItemGraphicEl(function(t,n){t.updateLayout(e,n)},this)},e.prototype.incrementalPrepareUpdate=function(e){this._seriesScope=Q4(e),this._lineData=null,this.group.removeAll()},e.prototype.incrementalUpdate=function(e,t,n){this._progressiveEls=[];function r(e){!e.isGroup&&!lRe(e)&&(e.incremental=n,e.ensureState(`emphasis`).hoverLayer=2)}for(var i=e.start;i0}function Q4(e){var t=e.hostModel,n=t.getModel(`emphasis`);return{lineStyle:t.getModel(`lineStyle`).getLineStyle(),emphasisLineStyle:n.getModel([`lineStyle`]).getLineStyle(),blurLineStyle:t.getModel([`blur`,`lineStyle`]).getLineStyle(),selectLineStyle:t.getModel([`select`,`lineStyle`]).getLineStyle(),emphasisDisabled:n.get(`disabled`),blurScope:n.get(`blurScope`),focus:n.get(`focus`),labelStatesModels:xB(t)}}function $4(e){return isNaN(e[0])||isNaN(e[1])}function e3(e){return e&&!$4(e[0])&&!$4(e[1])}var t3=[],n3=[],r3=[],i3=WM,a3=cj,o3=Math.abs;function s3(e,t,n){for(var r=e[0],i=e[1],a=e[2],o=1/0,s,c=n*n,l=.1,u=.1;u<=.9;u+=.1){t3[0]=i3(r[0],i[0],a[0],u),t3[1]=i3(r[1],i[1],a[1],u);var d=o3(a3(t3,t)-c);d=0?s+=l:s-=l:m>=0?s-=l:s+=l}return s}function c3(e,t){var n=[],r=qM,i=[[],[],[]],a=[[],[]],o=[];t/=2,e.eachEdge(function(e,s){var c=e.getLayout(),l=e.getVisual(`fromSymbol`),u=e.getVisual(`toSymbol`);c.__original||(c.__original=[XA(c[0]),XA(c[1])],c[2]&&c.__original.push(XA(c[2])));var d=c.__original;if(c[2]!=null){if(YA(i[0],d[0]),YA(i[1],d[2]),YA(i[2],d[1]),l&&l!==`none`){var f=P4(e.node1),p=s3(i,d[0],f*t);r(i[0][0],i[1][0],i[2][0],p,n),i[0][0]=n[3],i[1][0]=n[4],r(i[0][1],i[1][1],i[2][1],p,n),i[0][1]=n[3],i[1][1]=n[4]}if(u&&u!==`none`){var f=P4(e.node2),p=s3(i,d[1],f*t);r(i[0][0],i[1][0],i[2][0],p,n),i[1][0]=n[1],i[2][0]=n[2],r(i[0][1],i[1][1],i[2][1],p,n),i[1][1]=n[1],i[2][1]=n[2]}YA(c[0],i[0]),YA(c[1],i[2]),YA(c[2],i[1])}else{if(YA(a[0],d[0]),YA(a[1],d[1]),ej(o,a[1],a[0]),ij(o,o),l&&l!==`none`){var f=P4(e.node1);$A(a[0],a[0],o,f*t)}if(u&&u!==`none`){var f=P4(e.node2);$A(a[1],a[1],o,-f*t)}YA(c[0],a[0]),YA(c[1],a[1])}})}var l3=eI();function uRe(e){if(e)return l3(e).bridge}function u3(e,t){e&&(l3(e).bridge=t)}var dRe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=k4,t}return t.prototype.init=function(e,t){var n=new wZ,r=new Z4,i=this.group,a=new QP;this._controller=new v1(t.getZr()),a.add(n.group),a.add(r.group),i.add(a),this._symbolDraw=n,this._lineDraw=r,this._mainGroup=a,this._firstRender=!0},t.prototype.render=function(e,t,n){var r=this,i=w0(e),a=!1;this._model=e,this._api=n,this._active=!0;var o=this._mainGroup,s=this._getThumbnailInfo();s&&s.bridge.reset(n);var c=this._symbolDraw,l=this._lineDraw;i&&b0(o,2,i,this._firstRender?null:e),c3(e.getGraph(),N4(e));var u=e.getData();c.updateData(u);var d=e.getEdgeData();l.updateData(d),this._updateNodeAndLinkScale(),i&&N0(e,n,this._controller,function(t,n,r){return e.coordinateSystem.containPoint([n,r])},null),clearTimeout(this._layoutTimeout);var f=e.forceLayout,p=e.get([`force`,`layoutAnimation`]);f&&(a=!0,this._startForceLayoutIteration(f,n,p));var m=e.get(`layout`);u.graph.eachNode(function(t){var i=t.dataIndex,a=t.getGraphicEl(),o=t.getModel();if(a){a.off(`drag`).off(`dragend`);var s=o.get(`draggable`);s&&a.on(`drag`,function(o){switch(m){case`force`:f.warmUp(),!r._layouting&&r._startForceLayoutIteration(f,n,p),f.setFixed(i),u.setItemLayout(i,[a.x,a.y]);break;case`circular`:u.setItemLayout(i,[a.x,a.y]),t.setLayout({fixed:!0},!0),L4(e,`symbolSize`,t,[o.offsetX,o.offsetY]),r.updateLayout(e);break;default:u.setItemLayout(i,[a.x,a.y]),M4(e.getGraph(),e),r.updateLayout(e);break}}).on(`dragend`,function(){f&&f.setUnfixed(i)}),a.setDraggable(s,!!o.get(`cursor`)),o.get([`emphasis`,`focus`])===`adjacency`&&(jL(a).focus=t.getAdjacentDataIndices())}}),u.graph.eachEdge(function(e){var t=e.getGraphicEl(),n=e.getModel().get([`emphasis`,`focus`]);t&&n===`adjacency`&&(jL(t).focus={edge:[e.dataIndex],node:[e.node1.dataIndex,e.node2.dataIndex]})});var h=e.get(`layout`)===`circular`&&e.get([`circular`,`rotateLabel`]),g=u.getLayout(`cx`),_=u.getLayout(`cy`);u.graph.eachNode(function(e){R4(e,h,g,_)}),this._firstRender=!1,a||this._renderThumbnail(e,n,this._symbolDraw,this._lineDraw)},t.prototype.dispose=function(){this.remove(),this._controller&&this._controller.dispose()},t.prototype._startForceLayoutIteration=function(e,t,n){var r=this,i=!1;(function a(){e.step(function(e){r.updateLayout(r._model),(e||!i)&&(i=!0,r._renderThumbnail(r._model,t,r._symbolDraw,r._lineDraw)),(r._layouting=!e)&&(n?r._layoutTimeout=setTimeout(a,16):a())})})()},t.prototype.__updateOnOwnRoam=function(e,t,n){var r=w0(t);!this._active||!r||(b0(this._mainGroup,2,r,null),R0(e)&&(this._updateNodeAndLinkScale(),c3(t.getGraph(),N4(t)),this._lineDraw.updateLayout(),n.updateLabelLayout()),this._updateThumbnailWindow())},t.prototype._updateNodeAndLinkScale=function(){var e=this._model,t=e.getData(),n=N4(e);t.eachItemGraphicEl(function(e,t){e&&e.setSymbolScale(n)})},t.prototype.updateLayout=function(e){this._active&&(c3(e.getGraph(),N4(e)),this._symbolDraw.updateLayout(),this._lineDraw.updateLayout())},t.prototype.remove=function(){this._active=!1,clearTimeout(this._layoutTimeout),this._layouting=!1,this._layoutTimeout=null,this._symbolDraw&&this._symbolDraw.remove(),this._lineDraw&&this._lineDraw.remove(),this._controller&&this._controller.disable()},t.prototype._getThumbnailInfo=function(){var e=this._model,t=e.coordinateSystem;if(t.type===`view`){var n=uRe(e);if(n)return{bridge:n,coordSys:t}}},t.prototype._updateThumbnailWindow=function(){var e=this._getThumbnailInfo();e&&e.bridge.updateWindow($1(null,e.coordSys),this._api)},t.prototype._renderThumbnail=function(e,t,n,r){var i=this._getThumbnailInfo();if(i){var a=new QP,o=n.group.children(),s=r.group.children(),c=new QP,l=new QP;a.add(l),a.add(c);for(var u=0;u `),value:r.value,noValue:r.value==null})}return qU(`nameValue`,{name:r.name,value:r.value,noValue:r.value==null})},t.prototype.getDataParams=function(t,n){var r=e.prototype.getDataParams.call(this,t,n);if(n===`node`){var i=this.getData(),a=this.getGraph().getNodeByIndex(t);r.name??=i.getName(t),r.value??=a.getLayout().value}return r},t.type=`series.`+d3,t.defaultOption={z:2,coordinateSystem:`none`,legendHoverLink:!0,colorBy:`data`,left:0,top:0,right:0,bottom:0,width:null,height:null,center:[`50%`,`50%`],radius:[`70%`,`80%`],clockwise:!0,startAngle:90,endAngle:`auto`,minAngle:0,padAngle:3,itemStyle:{borderRadius:[0,0,5,5]},lineStyle:{width:0,color:`source`,opacity:.2},label:{show:!0,position:`outside`,distance:5},emphasis:{focus:`adjacency`,lineStyle:{opacity:.5}}},t}(sW),f3=function(e){X(t,e);function t(t,n,r){var i=e.call(this)||this;jL(i).dataType=`node`,i.z2=2;var a=new kL;return i.setTextContent(a),i.updateData(t,n,r,!0),i}return t.prototype.updateData=function(e,t,n,r){var i=this,a=e.graph.getNodeByIndex(t),o=e.hostModel,s=a.getModel(),c=s.getModel(`emphasis`),l=e.getItemLayout(t),u=Z(XQ(s.getModel(`itemStyle`),l,!0),l),d=this;if(isNaN(u.startAngle)){d.setShape(u);return}r?d.setShape(u):bz(d,{shape:u},o,t);var f=Z(XQ(s.getModel(`itemStyle`),l,!0),l);i.setShape(f),i.useStyle(e.getItemVisual(t,`style`)),mR(i,s),this._updateLabel(o,s,a),e.setItemGraphicEl(t,d),mR(d,s,`itemStyle`);var p=c.get(`focus`);dR(this,p===`adjacency`?a.getAdjacentDataIndices():p,c.get(`blurScope`),c.get(`disabled`))},t.prototype._updateLabel=function(e,t,n){var r=this.getTextContent(),i=n.getLayout(),a=(i.startAngle+i.endAngle)/2,o=Math.cos(a),s=Math.sin(a),c=t.getModel(`label`);r.ignore=!c.get(`show`);var l=xB(t),u=n.getVisual(`style`);bB(r,l,{labelFetcher:{getFormattedLabel:function(n,r,i,a,o,s){return e.getFormattedLabel(n,r,`node`,a,kA(o,l.normal&&l.normal.get(`formatter`),t.get(`name`)),s)}},labelDataIndex:n.dataIndex,defaultText:n.dataIndex+``,inheritColor:u.fill,defaultOpacity:u.opacity,defaultOutsidePosition:`startArc`});var d=c.get(`position`)||`outside`,f=c.get(`distance`)||0,p=d===`outside`?i.r+f:(i.r+i.r0)/2;this.textConfig={inside:d!==`outside`};var m=d===`outside`?o>0?`left`:`right`:c.get(`align`)||`center`,h=d===`outside`?s>0?`top`:`bottom`:c.get(`verticalAlign`)||`middle`;r.attr({x:o*p+i.cx,y:s*p+i.cy,rotation:0,style:{align:m,verticalAlign:h}})},t}(JR);(function(){function e(){this.s1=[0,0],this.s2=[0,0],this.sStartAngle=0,this.sEndAngle=0,this.t1=[0,0],this.t2=[0,0],this.tStartAngle=0,this.tEndAngle=0,this.cx=0,this.cy=0,this.r=0,this.clockwise=!0}return e})();var vRe=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this)||this;return jL(a).dataType=`edge`,a.updateData(t,n,r,i,!0),a}return t.prototype.buildPath=function(e,t){e.moveTo(t.s1[0],t.s1[1]);var n=.7,r=t.clockwise;e.arc(t.cx,t.cy,t.r,t.sStartAngle,t.sEndAngle,!r),e.bezierCurveTo((t.cx-t.s2[0])*n+t.s2[0],(t.cy-t.s2[1])*n+t.s2[1],(t.cx-t.t1[0])*n+t.t1[0],(t.cy-t.t1[1])*n+t.t1[1],t.t1[0],t.t1[1]),e.arc(t.cx,t.cy,t.r,t.tStartAngle,t.tEndAngle,!r),e.bezierCurveTo((t.cx-t.t2[0])*n+t.t2[0],(t.cy-t.t2[1])*n+t.t2[1],(t.cx-t.s1[0])*n+t.s1[0],(t.cy-t.s1[1])*n+t.s1[1],t.s1[0],t.s1[1]),e.closePath()},t.prototype.updateData=function(e,t,n,r,i){var a=e.hostModel,o=t.graph.getEdgeByIndex(n),s=o.getLayout(),c=o.node1.getModel(),l=t.getItemModel(o.dataIndex),u=l.getModel(`lineStyle`),d=l.getModel(`emphasis`),f=d.get(`focus`),p=Z(XQ(c.getModel(`itemStyle`),s,!0),s),m=this;if(isNaN(p.sStartAngle)||isNaN(p.tStartAngle)){m.setShape(p);return}i?(m.setShape(p),p3(m,o,e,u)):(Ez(m),p3(m,o,e,u),bz(m,{shape:p},a,n)),dR(this,f===`adjacency`?o.getAdjacentDataIndices():f,d.get(`blurScope`),d.get(`disabled`)),mR(m,l,`lineStyle`),t.setItemGraphicEl(o.dataIndex,m)},t}(xL);function p3(e,t,n,r){var i=t.node1,a=t.node2,o=e.style;switch(e.setStyle(r.getLineStyle()),r.get(`color`)){case`source`:o.fill=n.getItemVisual(i.dataIndex,`style`).fill,o.decal=i.getVisual(`style`).decal;break;case`target`:o.fill=n.getItemVisual(a.dataIndex,`style`).fill,o.decal=a.getVisual(`style`).decal;break;case`gradient`:var s=n.getItemVisual(i.dataIndex,`style`).fill,c=n.getItemVisual(a.dataIndex,`style`).fill;if(gA(s)&&gA(c)){var l=e.shape;o.fill=new oz((l.s1[0]+l.s2[0])/2,(l.s1[1]+l.s2[1])/2,(l.t1[0]+l.t2[0])/2,(l.t1[1]+l.t2[1])/2,[{offset:0,color:s},{offset:1,color:c}],!0)}break}}var yRe=Math.PI/180,bRe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=d3,t}return t.prototype.init=function(e,t){},t.prototype.render=function(e,t,n){var r=e.getData(),i=this._data,a=this.group,o=-e.get(`startAngle`)*yRe;if(r.diff(i).add(function(e){if(r.getItemLayout(e)){var t=new f3(r,e,o);jL(t).dataIndex=e,a.add(t)}}).update(function(t,n){var s=i.getItemGraphicEl(n);if(!r.getItemLayout(t)){s&&Tz(s,e,n);return}s?s.updateData(r,t,o):s=new f3(r,t,o),a.add(s)}).remove(function(t){var n=i.getItemGraphicEl(t);n&&Tz(n,e,t)}).execute(),!i){var s=e.get(`center`);this.group.scaleX=.01,this.group.scaleY=.01,this.group.originX=yF(s[0],n.getWidth()),this.group.originY=yF(s[1],n.getHeight()),xz(this.group,{scaleX:1,scaleY:1},e)}this._data=r,this.renderEdges(e,o)},t.prototype.renderEdges=function(e,t){var n=e.getData(),r=e.getEdgeData(),i=this._edgeData,a=this.group;r.diff(i).add(function(e){var i=new vRe(n,r,e,t);jL(i).dataIndex=e,a.add(i)}).update(function(e,o){var s=i.getItemGraphicEl(o);s.updateData(n,r,e,t),a.add(s)}).remove(function(t){var n=i.getItemGraphicEl(t);n&&Tz(n,e,t)}).execute(),this._edgeData=r},t.prototype.dispose=function(){},t.type=d3,t}(mW),m3=Math.PI/180,xRe=_I(d3,SRe);function SRe(e,t){e.eachSeriesByType(d3,function(e){CRe(e,t)})}function CRe(e,t){var n=e.getData(),r=n.graph,i=e.getEdgeData();if(i.count()){var a=ZV(e,t),o=a.cx,s=a.cy,c=a.r,l=a.r0,u=Math.max((e.get(`padAngle`)||0)*m3,0),d=Math.max((e.get(`minAngle`)||0)*m3,0),f=-e.get(`startAngle`)*m3,p=f+Math.PI*2,m=e.get(`clockwise`),h=m?1:-1,g=[f,p];lL(g,!m);var _=g[0],v=g[1]-_,y=n.getSum(`value`)===0&&i.getSum(`value`)===0,b=[],x=0;r.eachEdge(function(e){var t=y?1:e.getValue(`value`);y&&(t>0||d)&&(x+=2);var n=e.node1.dataIndex,r=e.node2.dataIndex;b[n]=(b[n]||0)+t,b[r]=(b[r]||0)+t});var S=0;if(r.eachNode(function(e){var t=e.getValue(`value`);isNaN(t)||(b[e.dataIndex]=Math.max(t,b[e.dataIndex]||0)),!y&&(b[e.dataIndex]>0||d)&&x++,S+=b[e.dataIndex]||0}),!(x===0||S===0)){u*x>=Math.abs(v)&&(u=Math.max(0,(Math.abs(v)-d*x)/x)),(u+d)*x>=Math.abs(v)&&(d=(Math.abs(v)-u*x)/x);var C=(v-u*x*h)/S,w=0,T=0,E=0,D=1/0;r.eachNode(function(e){var t=b[e.dataIndex]||0,n=C*(S?t:1)*h;Math.abs(n)T){var k=w/T;r.eachNode(function(e){var t=e.getLayout().angle;Math.abs(t)>=d?e.setLayout({angle:t*k,ratio:k},!0):e.setLayout({angle:d,ratio:d===0?1:t/d},!0)})}else r.eachNode(function(e){if(!O){var t=e.getLayout().angle;t-Math.min(t/E,1)*wd&&d>0){var n=O?1:Math.min(t/E,1),r=t-d,i=Math.min(r,Math.min(A,w*n));A-=i,e.setLayout({angle:t-i,ratio:(t-i)/t},!0)}else d>0&&e.setLayout({angle:d,ratio:t===0?1:d/t},!0)}});var j=_,M=[];r.eachNode(function(e){var t=Math.max(e.getLayout().angle,d);e.setLayout({cx:o,cy:s,r0:l,r:c,startAngle:j,endAngle:j+t*h,clockwise:m},!0),M[e.dataIndex]=j,j+=(t+u)*h}),r.eachEdge(function(e){var t=y?1:e.getValue(`value`),n=C*(S?t:1)*h,r=e.node1.dataIndex,i=M[r]||0,a=i+Math.abs((e.node1.getLayout().ratio||1)*n)*h,c=[o+l*Math.cos(i),s+l*Math.sin(i)],u=[o+l*Math.cos(a),s+l*Math.sin(a)],d=e.node2.dataIndex,f=M[d]||0,p=f+Math.abs((e.node2.getLayout().ratio||1)*n)*h,g=[o+l*Math.cos(f),s+l*Math.sin(f)],_=[o+l*Math.cos(p),s+l*Math.sin(p)];e.setLayout({s1:c,s2:u,sStartAngle:i,sEndAngle:a,t1:g,t2:_,tStartAngle:f,tEndAngle:p,cx:o,cy:s,r:l,value:t,clockwise:m}),M[r]=a,M[d]=p})}}}function wRe(e){e.registerChartView(bRe),e.registerSeriesModel(_Re),e.registerLayout(e.PRIORITY.VISUAL.POST_CHART_LAYOUT,xRe),e.registerProcessor(d$(`chord`))}var TRe=function(){function e(){this.angle=0,this.width=10,this.r=10,this.x=0,this.y=0}return e}(),ERe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`pointer`,n}return t.prototype.getDefaultShape=function(){return new TRe},t.prototype.buildPath=function(e,t){var n=Math.cos,r=Math.sin,i=t.r,a=t.width,o=t.angle,s=t.x-n(o)*a*(a>=i/3?1:2),c=t.y-r(o)*a*(a>=i/3?1:2);o=t.angle-Math.PI/2,e.moveTo(s,c),e.lineTo(t.x+n(o)*a,t.y+r(o)*a),e.lineTo(t.x+n(t.angle)*i,t.y+r(t.angle)*i),e.lineTo(t.x-n(o)*a,t.y-r(o)*a),e.lineTo(s,c)},t}(xL);function DRe(e,t){var n=e.get(`center`),r=t.getWidth(),i=t.getHeight(),a=Math.min(r,i);return{cx:yF(n[0],t.getWidth()),cy:yF(n[1],t.getHeight()),r:yF(e.get(`radius`),a/2)}}function h3(e,t){var n=e==null?``:e+``;return t&&(gA(t)?n=t.replace(`{value}`,n):hA(t)&&(n=t(e))),n}var ORe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){this.group.removeAll();var r=e.get([`axisLine`,`lineStyle`,`color`]),i=DRe(e,n);this._renderMain(e,t,n,r,i),this._data=e.getData()},t.prototype.dispose=function(){},t.prototype._renderMain=function(e,t,n,r,i){var a=this.group,o=e.get(`clockwise`),s=-e.get(`startAngle`)/180*Math.PI,c=-e.get(`endAngle`)/180*Math.PI,l=e.getModel(`axisLine`),u=l.get(`roundCap`)?qQ:JR,d=l.get(`show`),f=l.getModel(`lineStyle`),p=f.get(`width`),m=[s,c];lL(m,!o),s=m[0],c=m[1];for(var h=c-s,g=s,_=[],v=0;d&&v=e&&(t===0?0:r[t-1][0])Math.PI/2&&(R+=Math.PI)):L===`tangential`?R=-S-Math.PI/2:vA(L)&&(R=L*Math.PI/180),R===0?l.add(new kL({style:SB(_,{text:N,x:F,y:I,verticalAlign:k<-.8?`top`:k>.8?`bottom`:`middle`,align:O<-.4?`left`:O>.4?`right`:`center`},{inheritColor:P}),silent:!0})):l.add(new kL({style:SB(_,{text:N,x:F,y:I,verticalAlign:`middle`,align:`center`},{inheritColor:P}),silent:!0,originX:F,originY:I,rotation:R}))}if(g.get(`show`)&&A!==v){var j=g.get(`distance`);j=j?j+c:c;for(var z=0;z<=y;z++){O=Math.cos(S),k=Math.sin(S);var B=new $R({shape:{x1:O*(f-j)+u,y1:k*(f-j)+d,x2:O*(f-x-j)+u,y2:k*(f-x-j)+d},silent:!0,style:E});E.stroke===`auto`&&B.setStyle({stroke:r((A+z/y)/v)}),l.add(B),S+=w}S-=w}else S+=C}},t.prototype._renderPointer=function(e,t,n,r,i,a,o,s,c){var l=this.group,u=this._data,d=this._progressEls,f=[],p=e.get([`pointer`,`show`]),m=e.getModel(`progress`),h=m.get(`show`),g=e.getData(),_=g.mapDimension(`value`),v=+e.get(`min`),y=+e.get(`max`),b=[v,y],x=[a,o];function S(t,n){var r=g.getItemModel(t).getModel(`pointer`),a=yF(r.get(`width`),i.r),o=yF(r.get(`length`),i.r),s=e.get([`pointer`,`icon`]),c=r.get(`offsetCenter`),l=yF(c[0],i.r),u=yF(c[1],i.r),d=r.get(`keepAspect`),f=s?rG(s,l-a/2,u-o,a,o,null,d):new ERe({shape:{angle:-Math.PI/2,width:a,r:o,x:l,y:u}});return f.rotation=-(n+Math.PI/2),f.x=i.cx,f.y=i.cy,f}function C(e,t){var n=m.get(`roundCap`)?qQ:JR,r=m.get(`overlap`),o=r?m.get(`width`):c/g.count(),l=r?i.r-o:i.r-(e+1)*o,u=r?i.r:i.r-e*o,d=new n({shape:{startAngle:a,endAngle:t,cx:i.cx,cy:i.cy,clockwise:s,r0:l,r:u}});return r&&(d.z2=vF(g.get(_,e),[v,y],[100,0],!0)),d}(h||p)&&(g.diff(u).add(function(t){var n=g.get(_,t);if(p){var r=S(t,a);xz(r,{rotation:-((isNaN(+n)?x[0]:vF(n,b,x,!0))+Math.PI/2)},e),l.add(r),g.setItemGraphicEl(t,r)}if(h){var i=C(t,a);xz(i,{shape:{endAngle:vF(n,b,x,m.get(`clip`))}},e),l.add(i),ML(e.seriesIndex,g.dataType,t,i),f[t]=i}}).update(function(t,n){var r=g.get(_,t);if(p){var i=u.getItemGraphicEl(n),o=i?i.rotation:a,s=S(t,o);s.rotation=o,bz(s,{rotation:-((isNaN(+r)?x[0]:vF(r,b,x,!0))+Math.PI/2)},e),l.add(s),g.setItemGraphicEl(t,s)}if(h){var c=d[n],v=C(t,c?c.shape.endAngle:a);bz(v,{shape:{endAngle:vF(r,b,x,m.get(`clip`))}},e),l.add(v),ML(e.seriesIndex,g.dataType,t,v),f[t]=v}}).execute(),g.each(function(e){var t=g.getItemModel(e),n=t.getModel(`emphasis`),i=n.get(`focus`),a=n.get(`blurScope`),o=n.get(`disabled`),s=r(vF(g.get(_,e),b,[0,1],!0));if(p){var c=g.getItemGraphicEl(e),l=g.getItemVisual(e,`style`),u=l.fill;if(c instanceof CL){var d=c.style;c.useStyle(Z({image:d.image,x:d.x,y:d.y,width:d.width,height:d.height},l))}else c.useStyle(l),c.type!==`pointer`&&c.setColor(u);c.setStyle(t.getModel([`pointer`,`itemStyle`]).getItemStyle()),c.style.fill===`auto`&&c.setStyle(`fill`,s),c.z2EmphasisLift=0,mR(c,t),dR(c,i,a,o)}if(h){var m=f[e];m.useStyle(g.getItemVisual(e,`style`)),m.setStyle(t.getModel([`progress`,`itemStyle`]).getItemStyle()),m.style.fill===`auto`&&m.setStyle(`fill`,s),m.z2EmphasisLift=0,mR(m,t),dR(m,i,a,o)}}),this._progressEls=f)},t.prototype._renderAnchor=function(e,t){var n=e.getModel(`anchor`);if(n.get(`show`)){var r=n.get(`size`),i=n.get(`icon`),a=n.get(`offsetCenter`),o=n.get(`keepAspect`),s=rG(i,t.cx-r/2+yF(a[0],t.r),t.cy-r/2+yF(a[1],t.r),r,r,null,o);s.z2=+!!n.get(`showAbove`),s.setStyle(n.getModel(`itemStyle`).getItemStyle()),this.group.add(s)}},t.prototype._renderTitleAndDetail=function(e,t,n,r,i){var a=this,o=e.getData(),s=o.mapDimension(`value`),c=+e.get(`min`),l=+e.get(`max`),u=new QP,d=[],f=[],p=e.isAnimationEnabled(),m=e.get([`pointer`,`showAbove`]);o.diff(this._data).add(function(e){d[e]=new kL({silent:!0}),f[e]=new kL({silent:!0})}).update(function(e,t){d[e]=a._titleEls[t],f[e]=a._detailEls[t]}).execute(),o.each(function(t){var n=o.getItemModel(t),a=o.get(s,t),h=new QP,g=r(vF(a,[c,l],[0,1],!0)),_=n.getModel(`title`);if(_.get(`show`)){var v=_.get(`offsetCenter`),y=i.cx+yF(v[0],i.r),b=i.cy+yF(v[1],i.r),x=d[t];x.attr({z2:m?0:2,style:SB(_,{x:y,y:b,text:o.getName(t),align:`center`,verticalAlign:`middle`},{inheritColor:g})}),h.add(x)}var S=n.getModel(`detail`);if(S.get(`show`)){var C=S.get(`offsetCenter`),w=i.cx+yF(C[0],i.r),T=i.cy+yF(C[1],i.r),E=yF(S.get(`width`),i.r),D=yF(S.get(`height`),i.r),O=e.get([`progress`,`show`])?o.getItemVisual(t,`style`).fill:g,x=f[t],k=S.get(`formatter`);x.attr({z2:m?0:2,style:SB(S,{x:w,y:T,text:h3(a,k),width:isNaN(E)?null:E,height:isNaN(D)?null:D,align:`center`,verticalAlign:`middle`},{inheritColor:O})}),AB(x,{normal:S},a,function(e){return h3(e,k)}),p&&jB(x,t,o,e,{getFormattedLabel:function(e,t,n,r,i,o){return h3(o?o.interpolatedValue:a,k)}}),h.add(x)}u.add(h)}),this.group.add(u),this._titleEls=d,this._detailEls=f},t.type=`gauge`,t}(mW),kRe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.visualStyleAccessPath=`itemStyle`,n}return t.prototype.getInitialData=function(e,t){return f$(this,[`value`])},t.type=`series.gauge`,t.defaultOption={z:2,colorBy:`data`,center:[`50%`,`50%`],legendHoverLink:!0,radius:`75%`,startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,roundCap:!1,lineStyle:{color:[[1,$.color.neutral10]],width:10}},progress:{show:!1,overlap:!0,width:10,roundCap:!1,clip:!0},splitLine:{show:!0,length:10,distance:10,lineStyle:{color:$.color.axisTick,width:3,type:`solid`}},axisTick:{show:!0,splitNumber:5,length:6,distance:10,lineStyle:{color:$.color.axisTickMinor,width:1,type:`solid`}},axisLabel:{show:!0,distance:15,color:$.color.axisLabel,fontSize:12,rotate:0},pointer:{icon:null,offsetCenter:[0,0],show:!0,showAbove:!0,length:`60%`,width:6,keepAspect:!1},anchor:{show:!1,showAbove:!1,size:6,icon:`circle`,offsetCenter:[0,0],keepAspect:!1,itemStyle:{color:$.color.neutral00,borderWidth:0,borderColor:$.color.theme[0]}},title:{show:!0,offsetCenter:[0,`20%`],color:$.color.secondary,fontSize:16,valueAnimation:!1},detail:{show:!0,backgroundColor:$.color.transparent,borderWidth:0,borderColor:$.color.neutral40,width:100,height:null,padding:[5,10],offsetCenter:[0,`40%`],color:$.color.primary,fontSize:30,fontWeight:`bold`,lineHeight:30,valueAnimation:!1}},t}(sW);function ARe(e){e.registerChartView(ORe),e.registerSeriesModel(kRe)}var g3=`funnel`,jRe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t){e.prototype.init.apply(this,arguments),this.legendVisualProvider=new p$(fA(this.getData,this),fA(this.getRawData,this)),this._defaultLabelLine(t)},t.prototype.getInitialData=function(e,t){return f$(this,{coordDimensions:[`value`],encodeDefaulter:pA(vH,this)})},t.prototype._defaultLabelLine=function(e){qF(e,`labelLine`,[`show`]);var t=e.labelLine,n=e.emphasis.labelLine;t.show=t.show&&e.label.show,n.show=n.show&&e.emphasis.label.show},t.prototype.getDataParams=function(t){var n=this.getData(),r=e.prototype.getDataParams.call(this,t),i=n.mapDimension(`value`),a=n.getSum(i);return r.percent=a?+(n.get(i,t)/a*100).toFixed(2):0,r.$vars.push(`percent`),r},t.type=`series.`+g3,t.defaultOption={coordinateSystemUsage:`box`,z:2,legendHoverLink:!0,colorBy:`data`,left:80,top:60,right:80,bottom:65,minSize:`0%`,maxSize:`100%`,sort:`descending`,orient:`vertical`,gap:0,funnelAlign:`center`,label:{show:!0,position:`outer`},labelLine:{show:!0,length:20,lineStyle:{width:1}},itemStyle:{borderColor:$.color.neutral00,borderWidth:1},emphasis:{label:{show:!0}},select:{itemStyle:{borderColor:$.color.primary}}},t}(sW),MRe=[`itemStyle`,`opacity`],NRe=function(e){X(t,e);function t(t,n){var r=e.call(this)||this,i=r,a=new QR,o=new kL;return i.setTextContent(o),r.setTextGuideLine(a),r.updateData(t,n,!0),r}return t.prototype.updateData=function(e,t,n){var r=this,i=e.hostModel,a=e.getItemModel(t),o=e.getItemLayout(t),s=a.getModel(`emphasis`),c=a.get(MRe);c??=1,n||Ez(r),r.useStyle(e.getItemVisual(t,`style`)),r.style.lineJoin=`round`,n?(r.setShape({points:o.points}),r.style.opacity=0,xz(r,{style:{opacity:c}},i,t)):bz(r,{style:{opacity:c},shape:{points:o.points}},i,t),mR(r,a),this._updateLabel(e,t),dR(this,s.get(`focus`),s.get(`blurScope`),s.get(`disabled`))},t.prototype._updateLabel=function(e,t){var n=this,r=this.getTextGuideLine(),i=n.getTextContent(),a=e.hostModel,o=e.getItemModel(t),s=e.getItemLayout(t).label,c=e.getItemVisual(t,`style`),l=c.fill;bB(i,xB(o),{labelFetcher:e.hostModel,labelDataIndex:t,defaultOpacity:c.opacity,defaultText:e.getName(t)},{normal:{align:s.textAlign,verticalAlign:s.verticalAlign}});var u=o.getModel(`label`).get(`color`)===`inherit`?l:null;n.setTextConfig({local:!0,inside:!!s.inside,insideStroke:u,outsideFill:u});var d=s.linePoints;r.setShape({points:d}),n.textGuideLineConfig={anchor:d?new Vj(d[0][0],d[0][1]):null},bz(i,{style:{x:s.x,y:s.y}},a,t),i.attr({rotation:s.rotation,originX:s.x,originY:s.y,z2:10}),IY(n,LY(o),{stroke:l})},t}(ZR),PRe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=g3,t.ignoreLabelLineUpdate=!0,t}return t.prototype.render=function(e,t,n){var r=e.getData(),i=this._data,a=this.group;r.diff(i).add(function(e){var t=new NRe(r,e);r.setItemGraphicEl(e,t),a.add(t)}).update(function(e,t){var n=i.getItemGraphicEl(t);n.updateData(r,e),a.add(n),r.setItemGraphicEl(e,n)}).remove(function(t){Tz(i.getItemGraphicEl(t),e,t)}).execute(),this._data=r},t.prototype.remove=function(){this.group.removeAll(),this._data=null},t.prototype.dispose=function(){},t.type=g3,t}(mW);function FRe(e,t){for(var n=e.mapDimension(`value`),r=e.mapArray(n,function(e){return e}),i=[],a=t===`ascending`,o=0,s=e.count();o-1&&(i=`left`),n&&rA([`left`,`right`],i)>-1&&(i=`bottom`)),i===`left`?(p=(s[3][0]+s[0][0])/2,m=(s[3][1]+s[0][1])/2,h=p-_,u=h-5,l=`right`):i===`right`?(p=(s[1][0]+s[2][0])/2,m=(s[1][1]+s[2][1])/2,h=p+_,u=h+5,l=`left`):i===`top`?(p=(s[3][0]+s[0][0])/2,m=(s[3][1]+s[0][1])/2,g=m-_,d=g-5,l=`center`):i===`bottom`?(p=(s[1][0]+s[2][0])/2,m=(s[1][1]+s[2][1])/2,g=m+_,d=g+5,l=`center`):i===`rightTop`?(p=n?s[3][0]:s[1][0],m=n?s[3][1]:s[1][1],n?(g=m-_,d=g-5,l=`center`):(h=p+_,u=h+5,l=`top`)):i===`rightBottom`?(p=s[2][0],m=s[2][1],n?(g=m+_,d=g+5,l=`center`):(h=p+_,u=h+5,l=`bottom`)):i===`leftTop`?(p=s[0][0],m=n?s[0][1]:s[1][1],n?(g=m-_,d=g-5,l=`center`):(h=p-_,u=h-5,l=`right`)):i===`leftBottom`?(p=n?s[1][0]:s[3][0],m=n?s[1][1]:s[2][1],n?(g=m+_,d=g+5,l=`center`):(h=p-_,u=h-5,l=`right`)):(p=(s[1][0]+s[2][0])/2,m=(s[1][1]+s[2][1])/2,n?(g=m+_,d=g+5,l=`center`):(h=p+_,u=h+5,l=`left`)),n?(h=p,u=h):(g=m,d=g),f=[[p,m],[h,g]]}o.label={linePoints:f,x:u,y:d,verticalAlign:`middle`,textAlign:l,inside:c}})}var LRe=_I(g3,RRe);function RRe(e,t){e.eachSeriesByType(g3,function(e){var n=e.getData(),r=n.mapDimension(`value`),i=e.get(`sort`),a=tH(e,t),o=QV(e.getBoxLayoutParams(),a.refContainer),s=_3(e),c=o.width,l=o.height,u=FRe(n,i),d=o.x,f=o.y,p=s?[yF(e.get(`minSize`),l),yF(e.get(`maxSize`),l)]:[yF(e.get(`minSize`),c),yF(e.get(`maxSize`),c)],m=n.getDataExtent(r),h=e.get(`min`),g=e.get(`max`);h??=Math.min(m[0],0),g??=m[1];var _=e.get(`funnelAlign`),v=e.get(`gap`),y=((s?c:l)-v*(n.count()-1))/n.count(),b=function(e,t){if(s){var i=vF(n.get(r,e)||0,[h,g],p,!0),a=void 0;switch(_){case`top`:a=f;break;case`center`:a=f+(l-i)/2;break;case`bottom`:a=f+(l-i);break}return[[t,a],[t,a+i]]}var o=vF(n.get(r,e)||0,[h,g],p,!0),u;switch(_){case`left`:u=d;break;case`center`:u=d+(c-o)/2;break;case`right`:u=d+c-o;break}return[[u,t],[u+o,t]]};i===`ascending`&&(y=-y,v=-v,s?d+=c:f+=l,u=u.reverse());for(var x=0;xQRe)return;var r=this._model.coordinateSystem.getSlidedAxisExpandWindow([e.offsetX,e.offsetY]);r.behavior!==`none`&&this._dispatchExpand({axisExpandWindow:r.axisExpandWindow})}this._mouseDownPoint=null},mousemove:function(e){if(!(this._mouseDownPoint||!S3(this,`mousemove`))){var t=this._model,n=t.coordinateSystem.getSlidedAxisExpandWindow([e.offsetX,e.offsetY]),r=n.behavior;r===`jump`&&this._throttledDispatchExpand.debounceNextCall(t.get(`axisExpandDebounce`)),this._throttledDispatchExpand(r===`none`?null:{axisExpandWindow:n.axisExpandWindow,animation:r===`jump`?null:{duration:0}})}}};function S3(e,t){var n=e._model;return n.get(`axisExpandable`)&&n.get(`axisExpandTriggerOn`)===t}var C3=`parallel`,w3=C3,tze=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(){e.prototype.init.apply(this,arguments),this.mergeOption({})},t.prototype.mergeOption=function(e){var t=this.option;e&&$k(t,e,!0),this._initDimensions()},t.prototype.contains=function(e,t){var n=e.get(`parallelIndex`);return n!=null&&t.getComponent(`parallel`,n)===this},t.prototype.setAxisExpand=function(e){Q([`axisExpandable`,`axisExpandCenter`,`axisExpandCount`,`axisExpandWidth`,`axisExpandWindow`],function(t){e.hasOwnProperty(t)&&(this.option[t]=e[t])},this)},t.prototype._initDimensions=function(){var e=this.dimensions=[],t=this.parallelAxisIndex=[];Q(lA(this.ecModel.queryComponents({mainType:`parallelAxis`}),function(e){return(e.get(`parallelIndex`)||0)===this.componentIndex},this),function(n){e.push(`dim`+n.get(`dim`)),t.push(n.componentIndex)})},t.type=w3,t.dependencies=[`parallelAxis`],t.layoutMode=`box`,t.defaultOption={z:0,left:80,top:60,right:80,bottom:60,layout:`horizontal`,axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:`click`,parallelAxisDefault:null},t}(sH),nze=function(e){X(t,e);function t(t,n,r,i,a){var o=e.call(this,t,n,r)||this;return o.type=i||`value`,o.axisIndex=a,o}return t.prototype.isHorizontal=function(){return this.coordinateSystem.getModel().get(`layout`)!==`horizontal`},t}(yY);function T3(e,t,n,r,i,a){e||=0;var o=OF(n[1],-n[0]);if(i!=null&&(i=D3(i,[0,o])),a!=null&&(a=Math.max(a,i??0)),r===`all`){var s=Math.abs(OF(t[1],-t[0]));s=D3(s,[0,o]),i=a=D3(s,[i,a]),r=0}t[0]=D3(t[0],n),t[1]=D3(t[1],n);var c=E3(t,r);t[r]+=e;var l=i||0,u=n.slice();c.sign<0?u[0]=OF(u[0],l):u[1]=OF(u[1],-l),t[r]=D3(t[r],u);var d=E3(t,r);return i!=null&&(d.sign!==c.sign||d.spana&&(t[1-r]=OF(t[r],d.sign*a)),t}function E3(e,t){var n=e[t]-e[1-t];return{span:Math.abs(n),sign:n>0?-1:n<0?1:t?-1:1}}function D3(e,t){return Math.min(t[1]==null?1/0:t[1],Math.max(t[0]==null?-1/0:t[0],e))}var rze=function(){function e(e,t,n){this.type=C3,this._axesMap=zA(),this._axesLayout={},this.dimensions=e.dimensions,this._model=e,this._init(e,t,n)}return e.prototype._init=function(e,t,n){var r=e.dimensions,i=e.parallelAxisIndex;Q(r,function(e,n){var r=i[n],a=t.getComponent(`parallelAxis`,r),o=dJ(a),s=this._axesMap.set(e,new nze(e,fJ(a,o,!1),[0,0],o,r));s.onBand=xJ(s.scale,a),s.inverse=a.get(`inverse`),a.axis=s,s.model=a,s.coordinateSystem=a.coordinateSystem=this},this)},e.prototype.update=function(e,t){Q(this.dimensions,function(e){var t=this._axesMap.get(e);VJ(t,1),qJ(t)},this)},e.prototype.containPoint=function(e){var t=this._makeLayoutInfo(),n=t.axisBase,r=t.layoutBase,i=t.pixelDimIndex,a=e[1-i],o=e[i];return a>=n&&a<=n+t.axisLength&&o>=r&&o<=r+t.layoutLength},e.prototype.getModel=function(){return this._model},e.prototype.resize=function(e,t){var n=tH(e,t).refContainer;this._rect=QV(e.getBoxLayoutParams(),n),this._layoutAxes()},e.prototype.getRect=function(){return this._rect},e.prototype._makeLayoutInfo=function(){var e=this._model,t=this._rect,n=[`x`,`y`],r=[`width`,`height`],i=e.get(`layout`),a=i===`horizontal`?0:1,o=t[r[a]],s=[0,o],c=this.dimensions.length,l=O3(e.get(`axisExpandWidth`),s),u=O3(e.get(`axisExpandCount`)||0,[0,c]),d=e.get(`axisExpandable`)&&c>3&&c>u&&u>1&&l>0&&o>0,f=e.get(`axisExpandWindow`),p;f?(p=O3(f[1]-f[0],s),f[1]=f[0]+p):(p=O3(l*(u-1),s),f=[l*(e.get(`axisExpandCenter`)||fF(c/2))-p/2],f[1]=f[0]+p);var m=(o-p)/(c-u);m<3&&(m=0);var h=[fF(SF(f[0]/l,1))+1,pF(SF(f[1]/l,1))-1],g=m/l*f[0];return{layout:i,pixelDimIndex:a,layoutBase:t[n[a]],layoutLength:o,axisBase:t[n[1-a]],axisLength:t[r[1-a]],axisExpandable:d,axisExpandWidth:l,axisCollapseWidth:m,axisExpandWindow:f,axisCount:c,winInnerIndices:h,axisExpandWindow0Pos:g}},e.prototype._layoutAxes=function(){var e=this._rect,t=this._axesMap,n=this.dimensions,r=this._makeLayoutInfo(),i=r.layout;t.each(function(e){var t=[0,r.axisLength],n=+!!e.inverse;e.setExtent(t[n],t[1-n])}),Q(n,function(t,n){var a=(r.axisExpandable?aze:ize)(n,r),o={horizontal:{x:a.position,y:r.axisLength},vertical:{x:0,y:a.position}},s={horizontal:_F/2,vertical:0},c=[o[i].x+e.x,o[i].y+e.y],l=s[i],u=Mj();Lj(u,u,l),Ij(u,u,c),this._axesLayout[t]={position:c,rotation:l,transform:u,axisNameAvailableWidth:a.axisNameAvailableWidth,axisLabelShow:a.axisLabelShow,nameTruncateMaxWidth:a.nameTruncateMaxWidth,tickDirection:1,labelDirection:1}},this)},e.prototype.getAxis=function(e){return this._axesMap.get(e)},e.prototype.dataToPoint=function(e,t){return this.axisCoordToPoint(this._axesMap.get(t).dataToCoord(e),t)},e.prototype.eachActiveState=function(e,t,n,r){n??=0,r??=e.count();var i=this._axesMap,a=this.dimensions,o=[],s=[];Q(a,function(t){o.push(e.mapDimension(t)),s.push(i.get(t).model)});for(var c=this.hasAxisBrushed(),l=n;li*(1-u[0])?(c=`jump`,s=o-i*(1-u[2])):(s=o-i*u[1])>=0&&(s=o-i*(1-u[1]))<=0&&(s=0),s*=t.axisExpandWidth/l,s?T3(s,r,a,`all`):c=`none`;else{var f=r[1]-r[0];r=[lF(0,a[1]*o/f-f/2)],r[1]=cF(a[1],r[0]+f),r[0]=r[1]-f}return{axisExpandWindow:r,behavior:c}},e}();function O3(e,t){return cF(lF(e,t[0]),t[1])}function ize(e,t){var n=t.layoutLength/(t.axisCount-1);return{position:n*e,axisNameAvailableWidth:n,axisLabelShow:!0}}function aze(e,t){var n=t.layoutLength,r=t.axisExpandWidth,i=t.axisCount,a=t.axisCollapseWidth,o=t.winInnerIndices,s,c=a,l=!1,u;return e=0;n--)CF(t[n])},t.prototype.getActiveState=function(e){var t=this.activeIntervals;if(!t.length)return`normal`;if(e==null||isNaN(+e))return`inactive`;if(t.length===1){var n=t[0];if(n[0]<=e&&e<=n[1])return`active`}else for(var r=0,i=t.length;ruze}function K3(e){var t=e.length-1;return t<0&&(t=0),[e[0],e[t]]}function q3(e,t,n,r){var i=new QP;return i.add(new DL({name:`main`,style:X3(n),silent:!0,draggable:!0,cursor:`move`,drift:pA(bze,e,t,i,[`n`,`s`,`w`,`e`]),ondragend:pA(G3,t,{isEnd:!0})})),Q(r,function(n){i.add(new DL({name:n.join(``),style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:pA(bze,e,t,i,n),ondragend:pA(G3,t,{isEnd:!0})}))}),i}function gze(e,t,n,r){var i=r.brushStyle.lineWidth||0,a=M3(i,dze),o=n[0][0],s=n[1][0],c=o-i/2,l=s-i/2,u=n[0][1],d=n[1][1],f=u-a+i/2,p=d-a+i/2,m=u-o,h=d-s,g=m+i,_=h+i;Y3(e,t,`main`,o,s,m,h),r.transformable&&(Y3(e,t,`w`,c,l,a,_),Y3(e,t,`e`,f,l,a,_),Y3(e,t,`n`,c,l,g,a),Y3(e,t,`s`,c,p,g,a),Y3(e,t,`nw`,c,l,a,a),Y3(e,t,`ne`,f,l,a,a),Y3(e,t,`sw`,c,p,a,a),Y3(e,t,`se`,f,p,a,a))}function J3(e,t){var n=t.__brushOption,r=n.transformable,i=t.childAt(0);i.useStyle(X3(n)),i.attr({silent:!r,cursor:r?`move`:`default`}),Q([[`w`],[`e`],[`n`],[`s`],[`s`,`e`],[`s`,`w`],[`n`,`e`],[`n`,`w`]],function(n){var i=t.childOfName(n.join(``)),a=n.length===1?Z3(e,n[0]):yze(e,n);i&&i.attr({silent:!r,invisible:!r,cursor:r?pze[a]+`-resize`:null})})}function Y3(e,t,n,r,i,a,o){var s=t.childOfName(n);s&&s.setShape(Cze(Q3(e,t,[[r,i],[r+a,i+o]])))}function X3(e){return nA({strokeNoScale:!0},e.brushStyle)}function _ze(e,t,n,r){var i=[j3(e,n),j3(t,r)],a=[M3(e,n),M3(t,r)];return[[i[0],a[0]],[i[1],a[1]]]}function vze(e){return Hz(e.group)}function Z3(e,t){return{left:`w`,right:`e`,top:`n`,bottom:`s`}[Wz({w:`left`,e:`right`,n:`top`,s:`bottom`}[t],vze(e))]}function yze(e,t){var n=[Z3(e,t[0]),Z3(e,t[1])];return(n[0]===`e`||n[0]===`w`)&&n.reverse(),n.join(``)}function bze(e,t,n,r,i,a){var o=n.__brushOption,s=e.toRectRange(o.range),c=Sze(t,i,a);Q(r,function(e){var t=fze[e];s[t[0]][t[1]]+=c[t[0]]}),o.range=e.fromRectRange(_ze(s[0][0],s[1][0],s[0][1],s[1][1])),B3(t,n),G3(t,{isEnd:!1})}function xze(e,t,n,r){var i=t.__brushOption.range,a=Sze(e,n,r);Q(i,function(e){e[0]+=a[0],e[1]+=a[1]}),B3(e,t),G3(e,{isEnd:!1})}function Sze(e,t,n){var r=e.group,i=r.transformCoordToLocal(t,n),a=r.transformCoordToLocal(0,0);return[i[0]-a[0],i[1]-a[1]]}function Q3(e,t,n){var r=U3(e,t);return r&&r!==A3?r.clipPath(n,e._transform):Qk(n)}function Cze(e){var t=j3(e[0][0],e[1][0]),n=j3(e[0][1],e[1][1]),r=M3(e[0][0],e[1][0]),i=M3(e[0][1],e[1][1]);return{x:t,y:n,width:r-t,height:i-n}}function wze(e,t,n){if(!(!e._brushType||kze(e,t.offsetX,t.offsetY))){var r=e._zr,i=e._covers,a=H3(e,t,n);if(!e._dragging)for(var o=0;or.getWidth()||n<0||n>r.getHeight()}var t6={lineX:Aze(0),lineY:Aze(1),rect:{createCover:function(e,t){function n(e){return e}return q3({toRectRange:n,fromRectRange:n},e,t,[[`w`],[`e`],[`n`],[`s`],[`s`,`e`],[`s`,`w`],[`n`,`e`],[`n`,`w`]])},getCreatingRange:function(e){var t=K3(e);return _ze(t[1][0],t[1][1],t[0][0],t[0][1])},updateCoverShape:function(e,t,n,r){gze(e,t,n,r)},updateCommon:J3,contain:e6},polygon:{createCover:function(e,t){var n=new QP;return n.add(new QR({name:`main`,style:X3(t),silent:!0})),n},getCreatingRange:function(e){return e},endCreating:function(e,t){t.remove(t.childAt(0)),t.add(new ZR({name:`main`,draggable:!0,drift:pA(xze,e,t),ondragend:pA(G3,e,{isEnd:!0})}))},updateCoverShape:function(e,t,n,r){t.childAt(0).setShape({points:Q3(e,t,n)})},updateCommon:J3,contain:e6}};function Aze(e){return{createCover:function(t,n){return q3({toRectRange:function(t){var n=[t,[0,100]];return e&&n.reverse(),n},fromRectRange:function(t){return t[e]}},t,n,[[[`w`],[`e`]],[[`n`],[`s`]]][e])},getCreatingRange:function(t){var n=K3(t);return[j3(n[0][e],n[1][e]),M3(n[0][e],n[1][e])]},updateCoverShape:function(t,n,r,i){var a,o=U3(t,n);if(o!==A3&&o.getLinearBrushOtherExtent)a=o.getLinearBrushOtherExtent(e);else{var s=t._zr;a=[0,[s.getWidth(),s.getHeight()][1-e]]}var c=[r,a];e&&c.reverse(),gze(t,n,c,i)},updateCommon:J3,contain:e6}}function jze(e){return e=n6(e),function(t){return qz(t,e)}}function Mze(e,t){return e=n6(e),function(n){var r=t??n,i=r?e.width:e.height,a=r?e.x:e.y;return[a,a+(i||0)]}}function Nze(e,t,n){var r=n6(e);return function(e,i){return r.contain(i[0],i[1])&&!_1(e,t,n)}}function n6(e){return eM.create(e)}var Pze=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t,n){e.prototype.init.apply(this,arguments),(this._brushController=new F3(n.getZr())).on(`brush`,fA(this._onBrush,this))},t.prototype.render=function(e,t,n,r){if(!Fze(e,t,r)){this.axisModel=e,this.api=n,this.group.removeAll();var i=this._axisGroup;if(this._axisGroup=new QP,this.group.add(this._axisGroup),e.get(`show`)){var a=Lze(e,t),o=a.coordinateSystem,s=e.getAreaSelectStyle(),c=s.width,l=e.axis.dim,u=o.getAxisLayout(l),d=Z({strokeContainThreshold:c},u),f=new vQ(e,n,d);f.build(),this._axisGroup.add(f.group),this._refreshBrushController(d,s,e,a,c,n),Kz(i,this._axisGroup,e)}}},t.prototype._refreshBrushController=function(e,t,n,r,i,a){var o=n.axis.getExtent(),s=o[1]-o[0],c=Math.min(30,Math.abs(s)*.1),l=eM.create({x:o[0],y:-i/2,width:s,height:i});l.x-=c,l.width+=2*c,this._brushController.mount({enableGlobalPan:!0,rotation:e.rotation,x:e.position[0],y:e.position[1]}).setPanels([{panelId:`pl`,clipPath:jze(l),isTargetByCursor:Nze(l,a,r),getLinearBrushOtherExtent:Mze(l,0)}]).enableBrush({brushType:`lineX`,brushStyle:t,removeOnClick:!0}).updateCovers(Ize(n))},t.prototype._onBrush=function(e){var t=e.areas,n=this.axisModel,r=n.axis,i=sA(t,function(e){return[r.coordToData(e.range[0],!0),r.coordToData(e.range[1],!0)]});(!n.option.realtime===e.isEnd||e.removeOnClick)&&this.api.dispatchAction({type:`axisAreaSelect`,parallelAxisId:n.id,intervals:i})},t.prototype.dispose=function(){this._brushController.dispose()},t.type=`parallelAxis`,t}(dW);function Fze(e,t,n){return n&&n.type===`axisAreaSelect`&&t.findComponents({mainType:`parallelAxis`,query:n})[0]===e}function Ize(e){var t=e.axis;return sA(e.activeIntervals,function(e){return{brushType:`lineX`,panelId:`pl`,range:[t.dataToCoord(e[0],!0),t.dataToCoord(e[1],!0)]}})}function Lze(e,t){return t.getComponent(`parallel`,e.get(`parallelIndex`))}var Rze={type:`axisAreaSelect`,event:`axisAreaSelected`};function zze(e){e.registerAction(Rze,function(e,t){t.eachComponent({mainType:`parallelAxis`,query:e},function(t){t.axis.model.setActiveIntervals(e.intervals)})}),e.registerAction(`parallelAxisExpand`,function(e,t){t.eachComponent({mainType:`parallel`,query:e},function(t){t.setAxisExpand(e)})})}var Bze={type:`value`,areaSelectStyle:{width:20,borderWidth:1,borderColor:`rgba(160,197,232)`,color:`rgba(160,197,232)`,opacity:.3},realtime:!0,z:10};function Vze(e){e.registerComponentView($Re),e.registerComponentModel(tze),e.registerCoordinateSystem(`parallel`,sze),e.registerPreprocessor(YRe),e.registerComponentModel(k3),e.registerComponentView(Pze),k$(e,`parallel`,k3,Bze),zze(e)}function Hze(e){$K(Vze),e.registerChartView(VRe),e.registerSeriesModel(WRe),e.registerVisual(e.PRIORITY.VISUAL.BRUSH,JRe)}var r6=`sankey`,Uze=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.getInitialData=function(e,t){var n=e.edges||e.links||[],r=e.data||e.nodes||[],i=e.levels||[];this.levelModels=[];for(var a=this.levelModels,o=0;o=0&&(a[i[o].depth]=new LB(i[o],this,t));return x4(r,n,this,!0,s).data;function s(e,t){e.wrapMethod(`getItemModel`,function(e,t){var n=e.parentModel,r=n.getData().getItemLayout(t);if(r){var i=r.depth,a=n.levelModels[i];a&&(e.parentModel=a)}return e}),t.wrapMethod(`getItemModel`,function(e,t){var n=e.parentModel,r=n.getGraph().getEdgeByIndex(t).node1.getLayout();if(r){var i=r.depth,a=n.levelModels[i];a&&(e.parentModel=a)}return e})}},t.prototype.setNodePosition=function(e,t){var n=(this.option.data||this.option.nodes)[e];n.localX=t[0],n.localY=t[1]},t.prototype.getGraph=function(){return this.getData().graph},t.prototype.getEdgeData=function(){return this.getGraph().edgeData},t.prototype.formatTooltip=function(e,t,n){function r(e){return isNaN(e)||e==null}if(n===`edge`){var i=this.getDataParams(e,n),a=i.data,o=i.value;return qU(`nameValue`,{name:a.source+` -- `+a.target,value:o,noValue:r(o)})}else{var s=this.getGraph().getNodeByIndex(e).getLayout().value,c=this.getDataParams(e,n).data.name;return qU(`nameValue`,{name:c==null?null:c+``,value:s,noValue:r(s)})}},t.prototype.optionUpdated=function(){},t.prototype.getDataParams=function(t,n){var r=e.prototype.getDataParams.call(this,t,n);return r.value==null&&n===`node`&&(r.value=this.getGraph().getNodeByIndex(t).getLayout().value),r},t.prototype.__ownRoamView=function(){return this.coordinateSystem},t.type=`series.`+r6,t.layoutMode=`box`,t.defaultOption={z:2,coordinateSystemUsage:`box`,left:`5%`,top:`5%`,right:`20%`,bottom:`5%`,orient:`horizontal`,nodeWidth:20,nodeGap:8,draggable:!0,layoutIterations:32,roam:!1,roamTrigger:`global`,center:null,zoom:1,label:{show:!0,position:`right`,fontSize:12},edgeLabel:{show:!1,fontSize:12},levels:[],nodeAlign:`justify`,lineStyle:{color:$.color.neutral50,opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},select:{itemStyle:{borderColor:$.color.primary}},animationEasing:`linear`,animationDuration:1e3},t}(sW),Wze=function(){function e(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.cpx2=0,this.cpy2=0,this.extent=0}return e}(),Gze=function(e){X(t,e);function t(t){return e.call(this,t)||this}return t.prototype.getDefaultShape=function(){return new Wze},t.prototype.buildPath=function(e,t){var n=t.extent;e.moveTo(t.x1,t.y1),e.bezierCurveTo(t.cpx1,t.cpy1,t.cpx2,t.cpy2,t.x2,t.y2),t.orient===`vertical`?(e.lineTo(t.x2+n,t.y2),e.bezierCurveTo(t.cpx2+n,t.cpy2,t.cpx1+n,t.cpy1,t.x1+n,t.y1)):(e.lineTo(t.x2,t.y2+n),e.bezierCurveTo(t.cpx2,t.cpy2+n,t.cpx1,t.cpy1+n,t.x1,t.y1+n)),e.closePath()},t.prototype.highlight=function(){$L(this)},t.prototype.downplay=function(){eR(this)},t}(xL),Kze=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=r6,t._mainGroup=new QP,t}return t.prototype.init=function(e,t){this._controller=new v1(t.getZr()),this.group.add(this._mainGroup),this._firstRender=!0},t.prototype.render=function(e,t,n){var r=e.getGraph(),i=this._mainGroup,a=e.layoutInfo,o=a.width,s=a.height,c=e.getData(),l=e.getData(`edge`),u=e.get(`orient`);i.removeAll(),i.x=a.x,i.y=a.y,this._updateViewCoordSys(e,n),N0(e,n,this._controller,P0(i),null),r.eachEdge(function(t){var n=new Gze,r=jL(n);r.dataIndex=t.dataIndex,r.seriesIndex=e.seriesIndex,r.dataType=`edge`;var a=t.getModel(),c=a.getModel(`lineStyle`),d=c.get(`curveness`),f=t.node1.getLayout(),p=t.node1.getModel(),m=p.get(`localX`),h=p.get(`localY`),g=t.node2.getLayout(),_=t.node2.getModel(),v=_.get(`localX`),y=_.get(`localY`),b=t.getLayout(),x,S,C,w,T,E,D,O;n.shape.extent=Math.max(1,b.dy),n.shape.orient=u,u===`vertical`?(x=(m==null?f.x:m*o)+b.sy,S=(h==null?f.y:h*s)+f.dy,C=(v==null?g.x:v*o)+b.ty,w=y==null?g.y:y*s,T=x,E=S*(1-d)+w*d,D=C,O=S*d+w*(1-d)):(x=(m==null?f.x:m*o)+f.dx,S=(h==null?f.y:h*s)+b.sy,C=v==null?g.x:v*o,w=(y==null?g.y:y*s)+b.ty,T=x*(1-d)+C*d,E=S,D=x*d+C*(1-d),O=w),n.setShape({x1:x,y1:S,x2:C,y2:w,cpx1:T,cpy1:E,cpx2:D,cpy2:O}),n.useStyle(c.getItemStyle()),qze(n.style,u,t);var k=``+a.get(`value`),A=xB(a,`edgeLabel`);bB(n,A,{labelFetcher:{getFormattedLabel:function(t,n,r,i,a,o){return e.getFormattedLabel(t,n,`edge`,i,kA(a,A.normal&&A.normal.get(`formatter`),k),o)}},labelDataIndex:t.dataIndex,defaultText:k}),n.setTextConfig({position:`inside`});var j=a.getModel(`emphasis`);mR(n,a,`lineStyle`,function(e){var n=e.getItemStyle();return qze(n,u,t),n}),i.add(n),l.setItemGraphicEl(t.dataIndex,n);var M=j.get(`focus`);dR(n,M===`adjacency`?t.getAdjacentDataIndices():M===`trajectory`?t.getTrajectoryDataIndices():M,j.get(`blurScope`),j.get(`disabled`))}),r.eachNode(function(t){var n=t.getLayout(),r=t.getModel(),a=r.get(`localX`),l=r.get(`localY`),u=r.getModel(`emphasis`),d=r.get([`itemStyle`,`borderRadius`])||0,f=new DL({shape:{x:a==null?n.x:a*o,y:l==null?n.y:l*s,width:n.dx,height:n.dy,r:d},style:r.getModel(`itemStyle`).getItemStyle(),z2:10});bB(f,xB(r),{labelFetcher:{getFormattedLabel:function(t,n){return e.getFormattedLabel(t,n,`node`)}},labelDataIndex:t.dataIndex,defaultText:t.id}),f.disableLabelAnimation=!0,f.setStyle(`fill`,t.getVisual(`color`)),f.setStyle(`decal`,t.getVisual(`style`).decal),mR(f,r),i.add(f),c.setItemGraphicEl(t.dataIndex,f),jL(f).dataType=`node`;var p=u.get(`focus`);dR(f,p===`adjacency`?t.getAdjacentDataIndices():p===`trajectory`?t.getTrajectoryDataIndices():p,u.get(`blurScope`),u.get(`disabled`))}),c.eachItemGraphicEl(function(t,r){c.getItemModel(r).get(`draggable`)&&(t.drift=function(t,i){this.shape.x+=t,this.shape.y+=i,this.dirty(),n.dispatchAction({type:`dragNode`,seriesId:e.id,dataIndex:c.getRawIndex(r),localX:this.shape.x/o,localY:this.shape.y/s})},t.draggable=!0,t.cursor=`move`)}),!this._data&&e.isAnimationEnabled()&&i.setClipPath(Jze(i.getBoundingRect(),e,function(){i.removeClipPath()})),this._data=e.getData(),this._firstRender=!1},t.prototype.__updateOnOwnRoam=function(e,t,n){b0(this.group,2,t.coordinateSystem,null)},t.prototype.dispose=function(){this._controller&&this._controller.dispose()},t.prototype._updateViewCoordSys=function(e,t){var n=e.layoutInfo,r=e.coordinateSystem=z0(e,t,n.x,n.y,n.width,n.height);b0(this.group,2,r,this._firstRender?null:e)},t.type=r6,t}(mW);function qze(e,t,n){switch(e.fill){case`source`:e.fill=n.node1.getVisual(`color`),e.decal=n.node1.getVisual(`style`).decal;break;case`target`:e.fill=n.node2.getVisual(`color`),e.decal=n.node2.getVisual(`style`).decal;break;case`gradient`:var r=n.node1.getVisual(`color`),i=n.node2.getVisual(`color`);gA(r)&&gA(i)&&(e.fill=new oz(0,0,+(t===`horizontal`),+(t===`vertical`),[{color:r,offset:0},{color:i,offset:1}]))}}function Jze(e,t,n){var r=new DL({shape:{x:e.x-10,y:e.y-10,width:0,height:e.height+20}});return xz(r,{shape:{width:e.width+20}},t,n),r}var Yze=_I(r6,Xze);function Xze(e,t){e.eachSeriesByType(r6,function(e){var n=e.get(`nodeWidth`),r=e.get(`nodeGap`),i=tH(e,t).refContainer,a=QV(e.getBoxLayoutParams(),i);e.layoutInfo=a;var o=a.width,s=a.height,c=e.getGraph(),l=c.nodes,u=c.edges;Qze(l),Zze(l,u,n,r,o,s,lA(l,function(e){return e.getLayout().value===0}).length===0?e.get(`layoutIterations`):0,e.get(`orient`),e.get(`nodeAlign`))})}function Zze(e,t,n,r,i,a,o,s,c){$ze(e,t,n,i,a,s,c),iBe(e,t,a,i,r,o,s),pBe(e,s)}function Qze(e){Q(e,function(e){var t=s6(e.outEdges,o6),n=s6(e.inEdges,o6),r=e.getValue()||0,i=Math.max(t,n,r);e.setLayout({value:i},!0)})}function $ze(e,t,n,r,i,a,o){for(var s=[],c=[],l=[],u=[],d=0,f=0;f=0;_&&g.depth>p&&(p=g.depth),h.setLayout({depth:_?g.depth:d},!0),a===`vertical`?h.setLayout({dy:n},!0):h.setLayout({dx:n},!0);for(var v=0;vd-1?p:d-1;o&&o!==`left`&&tBe(e,o,a,C),rBe(e,a===`vertical`?(i-n)/C:(r-n)/C,a)}function eBe(e){var t=e.hostGraph.data.getRawDataItem(e.dataIndex);return t.depth!=null&&t.depth>=0}function tBe(e,t,n,r){if(t===`right`){for(var i=[],a=e,o=0;a.length;){for(var s=0;s0;a--)c*=.99,sBe(s,c,o),i6(s,i,n,r,o),fBe(s,c,o),i6(s,i,n,r,o)}function aBe(e,t){var n=[],r=t===`vertical`?`y`:`x`,i=oI(e,function(e){return e.getLayout()[r]});return CF(i.keys),Q(i.keys,function(e){n.push(i.buckets.get(e))}),n}function oBe(e,t,n,r,i,a){var o=1/0;Q(e,function(e){var t=e.length,s=0;Q(e,function(e){s+=e.getLayout().value});var c=a===`vertical`?(r-(t-1)*i)/s:(n-(t-1)*i)/s;c0&&(o=s.getLayout()[a]+c,i===`vertical`?s.setLayout({x:o},!0):s.setLayout({y:o},!0)),l=s.getLayout()[a]+s.getLayout()[d]+t;var p=i===`vertical`?r:n;if(c=l-t-p,c>0){o=s.getLayout()[a]-c,i===`vertical`?s.setLayout({x:o},!0):s.setLayout({y:o},!0),l=o;for(var f=u-2;f>=0;--f)s=e[f],c=s.getLayout()[a]+s.getLayout()[d]+t-l,c>0&&(o=s.getLayout()[a]-c,i===`vertical`?s.setLayout({x:o},!0):s.setLayout({y:o},!0)),l=s.getLayout()[a]}})}function sBe(e,t,n){Q(e.slice().reverse(),function(e){Q(e,function(e){if(e.outEdges.length){var r=s6(e.outEdges,cBe,n)/s6(e.outEdges,o6);if(isNaN(r)){var i=e.outEdges.length;r=i?s6(e.outEdges,lBe,n)/i:0}if(n===`vertical`){var a=e.getLayout().x+(r-a6(e,n))*t;e.setLayout({x:a},!0)}else{var o=e.getLayout().y+(r-a6(e,n))*t;e.setLayout({y:o},!0)}}})})}function cBe(e,t){return a6(e.node2,t)*e.getValue()}function lBe(e,t){return a6(e.node2,t)}function uBe(e,t){return a6(e.node1,t)*e.getValue()}function dBe(e,t){return a6(e.node1,t)}function a6(e,t){return t===`vertical`?e.getLayout().x+e.getLayout().dx/2:e.getLayout().y+e.getLayout().dy/2}function o6(e){return e.getValue()}function s6(e,t,n){for(var r=0,i=e.length,a=-1;++aa&&(a=t)}),Q(n,function(t){var n=new t4({type:`color`,mappingMethod:`linear`,dataExtent:[i,a],visual:e.get(`color`)}).mapValueToVisual(t.getLayout().value),r=t.getModel().get([`itemStyle`,`color`]);r==null?(t.setVisual(`color`,n),t.setVisual(`style`,{fill:n})):(t.setVisual(`color`,r),t.setVisual(`style`,{fill:r}))})}r.length&&Q(r,function(e){var t=e.getModel().get(`lineStyle`);e.setVisual(`style`,t)})})}function gBe(e){e.registerChartView(Kze),e.registerSeriesModel(Uze),e.registerLayout(Yze),e.registerVisual(mBe),e.registerAction({type:`dragNode`,event:`dragnode`,update:`update`},function(e,t){t.eachComponent({mainType:NL,subType:r6,query:e},function(t){t.setNodePosition(e.dataIndex,[e.localX,e.localY])})}),I0(e,NL,r6)}var _Be=function(){function e(){}return e.prototype._hasEncodeRule=function(e){var t=this.getEncode();return t&&t.get(e)!=null},e.prototype.getInitialData=function(e,t){var n,r=t.getComponent(`xAxis`,this.get(`xAxisIndex`)),i=t.getComponent(`yAxis`,this.get(`yAxisIndex`)),a=r.get(`type`),o=i.get(`type`),s,c=e.layout;a===`category`?(c=`horizontal`,n=r.getOrdinalMeta(),s=!this._hasEncodeRule(`x`)):o===`category`&&(c=`vertical`,n=i.getOrdinalMeta(),s=!this._hasEncodeRule(`y`)),c||=o===`time`?`vertical`:`horizontal`,this._layout=c;var l=[`x`,`y`],u=c===`horizontal`?0:1,d=this._baseAxisDim=l[u],f=l[1-u],p=[r,i],m=p[u].get(`type`),h=p[1-u].get(`type`),g=e.data;if(g&&s){var _=[];Q(g,function(e,t){var n;mA(e)?(n=e.slice(),e.unshift(t)):mA(e.value)?(n=Z({},e),n.value=n.value.slice(),e.value.unshift(t)):n=e,_.push(n)}),e.data=_}var v=this.defaultValueDimensions,y=[{name:d,type:iq(m),ordinalMeta:n,otherDims:{tooltip:!1,itemName:0},dimsDef:[`base`]},{name:f,type:iq(h),dimsDef:v.slice()}];return f$(this,{coordDimensions:y,dimensionsCount:v.length+1,encodeDefaulter:pA(_H,y,this)})},e.prototype.getBaseAxis=function(){var e=this._baseAxisDim;return this.ecModel.getComponent(e+`Axis`,this.get(e+`AxisIndex`)).axis},e.prototype.getWhiskerBoxesLayout=function(){return this._layout},e}();function c6(e,t){for(var n=t.ends.length,r=0,i=0;ih){var b=[_,y];r.push(b)}}}return{boxData:n,outliers:r}}var MBe={type:`echarts:boxplot`,transform:function(e){var t=e.upstream;t.sourceFormat!==`arrayRows`&&GF(``);var n=jBe(t.getRawData(),e.config);return[{dimensions:[`ItemName`,`Low`,`Q1`,`Q2`,`Q3`,`High`],data:n.boxData},{data:n.outliers}]}};function NBe(e){e.registerSeriesModel(vBe),e.registerChartView(yBe),e.registerLayout(EBe),e.registerTransform(MBe),ABe(e)}var u6=`candlestick`,PBe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.defaultValueDimensions=[{name:`open`,defaultTooltip:!0},{name:`close`,defaultTooltip:!0},{name:`lowest`,defaultTooltip:!0},{name:`highest`,defaultTooltip:!0}],n}return t.prototype.getShadowDim=function(){return`open`},t.prototype.brushSelector=function(e,t,n){var r=t.getItemLayout(e);return r&&n.rect(r.brushRect)},t.type=`series.`+u6,t.dependencies=[`xAxis`,`yAxis`,`grid`],t.defaultOption={z:2,coordinateSystem:`cartesian2d`,legendHoverLink:!0,layout:null,clip:!0,itemStyle:{color:`#eb5454`,color0:`#47b262`,borderColor:`#eb5454`,borderColor0:`#47b262`,borderColorDoji:null,borderWidth:1},emphasis:{itemStyle:{borderWidth:2}},barMaxWidth:null,barMinWidth:null,barWidth:null,large:!0,largeThreshold:600,progressive:3e3,progressiveThreshold:1e4,progressiveChunkMode:`mod`,animationEasing:`linear`,animationDuration:300},t}(sW);aA(PBe,_Be,!0);var FBe=[`itemStyle`,`borderColor`],IBe=[`itemStyle`,`borderColor0`],LBe=[`itemStyle`,`borderColorDoji`],RBe=[`itemStyle`,`color`],zBe=[`itemStyle`,`color0`];function d6(e,t){return t.get(e>0?RBe:zBe)}function f6(e,t){return t.get(e===0?LBe:e>0?FBe:IBe)}var BBe={seriesType:u6,plan:fW(),performRawSeries:!0,reset:function(e,t){if(!t.isSeriesFiltered(e))return!e.pipelineContext.large&&{progress:function(e,t){for(var n;(n=e.next())!=null;){var r=t.getItemModel(n),i=t.getItemLayout(n).sign,a=r.getItemStyle();a.fill=d6(i,r),a.stroke=f6(i,r)||a.fill,Z(t.ensureUniqueItemVisual(n,`style`),a)}}}}},VBe=[`color`,`borderColor`],HBe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){this.group.removeClipPath(),this._progressiveEls=null,this._updateDrawMode(e),this._isLargeDraw?this._renderLarge(e):this._renderNormal(e)},t.prototype.incrementalPrepareRender=function(e,t,n){this._clear(),this._updateDrawMode(e)},t.prototype.incrementalRender=function(e,t,n,r){this._progressiveEls=[],this._isLargeDraw?this._incrementalRenderLarge(e,t):this._incrementalRenderNormal(e,t)},t.prototype.eachRendered=function(e){iB(this._progressiveEls||this.group,e)},t.prototype._updateDrawMode=function(e){var t=e.pipelineContext.large;(this._isLargeDraw==null||t!==this._isLargeDraw)&&(this._isLargeDraw=t,this._clear())},t.prototype._renderNormal=function(e){var t=e.getData(),n=this._data,r=this.group,i=t.getLayout(`isSimpleBox`),a=e.get(`clip`,!0),o=e.coordinateSystem,s=o.getArea&&o.getArea(),c=a&&LZ(o,!1,e);this._data||r.removeAll();var l=KBe(e);t.diff(n).add(function(n){if(t.hasValue(n)){var o=t.getItemLayout(n),u=a?c6(s,o):0;if(u===2)return;var d=p6(o,n,l,!0);xz(d,{shape:{points:o.ends}},e,n),RZ(u===1,d,c),m6(d,t,n,i),r.add(d),t.setItemGraphicEl(n,d)}}).update(function(o,u){var d=n.getItemGraphicEl(u);if(!t.hasValue(o)){r.remove(d);return}var f=t.getItemLayout(o),p=a?c6(s,f):0;if(p===2){r.remove(d);return}d?(bz(d,{shape:{points:f.ends}},e,o),Ez(d)):d=p6(f,o,l),m6(d,t,o,i),RZ(p===1,d,c),r.add(d),t.setItemGraphicEl(o,d)}).remove(function(e){var t=n.getItemGraphicEl(e);t&&r.remove(t)}).execute(),this._data=t},t.prototype._renderLarge=function(e){this._clear(),JBe(e,this.group);var t=e.get(`clip`,!0)?LZ(e.coordinateSystem,!1,e):null;RZ(!!t,this.group,t)},t.prototype._incrementalRenderNormal=function(e,t){for(var n=t.getData(),r=n.getLayout(`isSimpleBox`),i=KBe(t),a;(a=e.next())!=null;){var o=p6(n.getItemLayout(a),a,i);m6(o,n,a,r),o.incremental=gI(t),this.group.add(o),this._progressiveEls.push(o)}},t.prototype._incrementalRenderLarge=function(e,t){JBe(t,this.group,this._progressiveEls,!0)},t.prototype.remove=function(e){this._clear()},t.prototype._clear=function(){this.group.removeAll(),RZ(!1,this.group,null),this._data=null},t.type=u6,t}(mW),UBe=function(){function e(){}return e}(),WBe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`normalCandlestickBox`,n}return t.prototype.getDefaultShape=function(){return new UBe},t.prototype.buildPath=function(e,t){var n=t.points;this.__simpleBox?(e.moveTo(n[4][0],n[4][1]),e.lineTo(n[6][0],n[6][1])):(e.moveTo(n[0][0],n[0][1]),e.lineTo(n[1][0],n[1][1]),e.lineTo(n[2][0],n[2][1]),e.lineTo(n[3][0],n[3][1]),e.closePath(),e.moveTo(n[4][0],n[4][1]),e.lineTo(n[5][0],n[5][1]),e.moveTo(n[6][0],n[6][1]),e.lineTo(n[7][0],n[7][1]))},t}(xL);function p6(e,t,n,r){var i=e.ends;return new WBe({shape:{points:r?GBe(i,n,e):i},z2:100})}function m6(e,t,n,r){var i=t.getItemModel(n);e.useStyle(t.getItemVisual(n,`style`)),e.style.strokeNoScale=!0;var a=i.getShallow(`cursor`);a&&e.attr(`cursor`,a),e.__simpleBox=r,mR(e,i);var o=t.getItemLayout(n).sign;Q(e.states,function(e,t){var n=i.getModel(t),r=d6(o,n),a=f6(o,n)||r,s=e.style||={};r&&(s.fill=r),a&&(s.stroke=a)});var s=i.getModel(`emphasis`);dR(e,s.get(`focus`),s.get(`blurScope`),s.get(`disabled`))}function GBe(e,t,n){return sA(e,function(e){return e=e.slice(),e[t]=n.initBaseline,e})}function KBe(e){return+(e.getWhiskerBoxesLayout()===`horizontal`)}var qBe=function(){function e(){}return e}(),h6=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n.type=`largeCandlestickBox`,n}return t.prototype.getDefaultShape=function(){return new qBe},t.prototype.buildPath=function(e,t){for(var n=t.points,r=0;rh?x[a]:b[a],ends:w,brushRect:O(g,_,p)})}function E(e,n){var r=[];return r[i]=n,r[a]=e,isNaN(n)||isNaN(e)?[NaN,NaN]:t.dataToPoint(r)}function D(e,t,n){var a=t.slice(),o=t.slice();a[i]=Vz(a[i]+r/2,1,!1),o[i]=Vz(o[i]-r/2,1,!0),n?e.push(a,o):e.push(o,a)}function O(e,t,n){var o=E(e,n),s=E(t,n);return o[i]-=r/2,s[i]-=r/2,{x:o[0],y:o[1],width:a?r:s[0]-o[0],height:a?s[1]-o[1]:r}}function k(e){return e[i]=Vz(e[i],1),e}}function m(n,r){for(var o=OZ(n.count*4),c=0,p,m=[],h=[],g,_=r.getStore(),v=!!e.get([`itemStyle`,`borderColorDoji`]);(g=n.next())!=null;){var y=_.get(s,g),b=_.get(l,g),x=_.get(u,g),S=_.get(d,g),C=_.get(f,g);if(isNaN(y)||isNaN(S)||isNaN(C)){o[c++]=NaN,c+=3;continue}o[c++]=QBe(_,g,b,x,u,v),m[i]=y,m[a]=S,p=t.dataToPoint(m,null,h),o[c++]=p?p[0]:NaN,o[c++]=p?p[1]:NaN,m[a]=C,p=t.dataToPoint(m,null,h),o[c++]=p?p[1]:NaN}r.setLayout(`largePoints`,o)}}};function QBe(e,t,n,r,i,a){return n>r?-1:n0?e.get(i,t-1)<=r?1:-1:1}function $Be(e,t){var n=_Y(e.getBaseAxis(),{fromStat:{key:AQ(u6)},min:1}).w,r=yF(OA(e.get(`barMaxWidth`),n),n),i=yF(OA(e.get(`barMinWidth`),1),n),a=e.get(`barWidth`);return a==null?lF(cF(n/2,r),i):yF(a,n)}function eVe(e){XBe(e,function(){var t=AQ(u6);PJ(e,{key:t,seriesType:u6,getMetrics:MQ}),UJ(t,kQ(t))})}function tVe(e){e.registerChartView(HBe),e.registerSeriesModel(PBe),e.registerPreprocessor(YBe),e.registerVisual(BBe),e.registerLayout(ZBe),eVe(e)}function nVe(e,t){var n=t.rippleEffectColor||t.color;e.eachChild(function(e){e.attr({z:t.z,zlevel:t.zlevel,style:{stroke:t.brushType===`stroke`?n:null,fill:t.brushType===`fill`?n:null}})})}var rVe=function(e){X(t,e);function t(t,n){var r=e.call(this)||this,i=new yZ(t,n),a=new QP;return r.add(i),r.add(a),r.updateData(t,n),r}return t.prototype.stopEffectAnimation=function(){this.childAt(1).removeAll()},t.prototype.startEffectAnimation=function(e){for(var t=e.symbolType,n=e.color,r=e.rippleNumber,i=this.childAt(1),a=0;a0&&(a=this._getLineLength(r)/c*1e3),a!==this._period||o!==this._loop||s!==this._roundTrip){r.stopAnimation();var u=void 0;u=hA(l)?l(n):l,r.__t>0&&(u=-a*r.__t),this._animateSymbol(r,a,u,o,s)}this._period=a,this._loop=o,this._roundTrip=s}},t.prototype._animateSymbol=function(e,t,n,r,i){if(t>0){e.__t=0;var a=this,o=e.animate(``,r).when(i?t*2:t,{__t:i?2:1}).delay(n).during(function(){a._updateSymbolPosition(e)});r||o.done(function(){a.remove(e)}),o.start()}},t.prototype._getLineLength=function(e){return oj(e.__p1,e.__cp1)+oj(e.__cp1,e.__p2)},t.prototype._updateAnimationPoints=function(e,t){e.__p1=t[0],e.__p2=t[1],e.__cp1=t[2]||[(t[0][0]+t[1][0])/2,(t[0][1]+t[1][1])/2]},t.prototype.updateData=function(e,t,n){this.childAt(0).updateData(e,t,n),this._updateEffectSymbol(e,t)},t.prototype._updateSymbolPosition=function(e){var t=e.__p1,n=e.__p2,r=e.__cp1,i=e.__t<=1?e.__t:2-e.__t,a=[e.x,e.y],o=a.slice(),s=WM,c=GM;a[0]=s(t[0],r[0],n[0],i),a[1]=s(t[1],r[1],n[1],i);var l=e.__t<=1?c(t[0],r[0],n[0],i):c(n[0],r[0],t[0],1-i),u=e.__t<=1?c(t[1],r[1],n[1],i):c(n[1],r[1],t[1],1-i);e.rotation=-Math.atan2(u,l)-Math.PI/2,(this._symbolType===`line`||this._symbolType===`rect`||this._symbolType===`roundRect`)&&(e.__lastT!==void 0&&e.__lastT=0&&!(r[o]<=t);o--);o=Math.min(o,i-2)}else{for(o=a;ot);o++);o=Math.min(o-1,i-2)}var s=(t-r[o])/(r[o+1]-r[o]),c=n[o],l=n[o+1];e.x=c[0]*(1-s)+s*l[0],e.y=c[1]*(1-s)+s*l[1];var u=e.__t<=1?l[0]-c[0]:c[0]-l[0],d=e.__t<=1?l[1]-c[1]:c[1]-l[1];e.rotation=-Math.atan2(d,u)-Math.PI/2,this._lastFrame=o,this._lastFramePercent=t,e.ignore=!1}},t}(cVe),dVe=function(){function e(){this.polyline=!1,this.curveness=0,this.segs=[]}return e}(),fVe=function(e){X(t,e);function t(t){var n=e.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return t.prototype.reset=function(){this.notClear=!1,this._off=0},t.prototype.beforeBrush=function(e){e&&!e.contentRetained&&this.reset()},t.prototype.getDefaultStyle=function(){return{stroke:$.color.neutral99,fill:null}},t.prototype.getDefaultShape=function(){return new dVe},t.prototype.buildPath=function(e,t){var n=t.segs,r=t.curveness,i;if(t.polyline)for(i=this._off;i0){e.moveTo(n[i++],n[i++]);for(var o=1;o0){var d=(s+l)/2-(c-u)*r,f=(c+u)/2-(l-s)*r;e.quadraticCurveTo(d,f,l,u)}else e.lineTo(l,u)}this.incremental&&(this._off=i,this.notClear=!0)},t.prototype.findDataIndex=function(e,t){var n=this.shape,r=n.segs,i=n.curveness,a=this.style.lineWidth;if(n.polyline)for(var o=0,s=0;s0)for(var l=r[s++],u=r[s++],d=1;d0){if(cTe(l,u,(l+f)/2-(u-p)*i,(u+p)/2-(f-l)*i,f,p,a,e,t))return o}else if(dL(l,u,f,p,a,e,t))return o;o++}return-1},t.prototype.contain=function(e,t){var n=this.transformCoordToLocal(e,t),r=this.getBoundingRect();return e=n[0],t=n[1],r.contain(e,t)?(this.hoverDataIdx=this.findDataIndex(e,t))>=0:(this.hoverDataIdx=-1,!1)},t.prototype.getBoundingRect=function(){var e=this._rect;if(!e){for(var t=this.shape.segs,n=1/0,r=1/0,i=-1/0,a=-1/0,o=0;o0&&(a.dataIndex=n+e.__startIndex)})},e.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},e}(),mVe={seriesType:`lines`,plan:fW(),reset:function(e){var t=e.coordinateSystem;if(t){var n=e.get(`polyline`),r=e.pipelineContext.large;return{progress:function(i,a){var o=[];if(r){var s=void 0,c=i.end-i.start;if(n){for(var l=0,u=i.start;u0&&c&&s.configLayer(a,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(o/10+.9,1),0)}),i.updateData(r);var l=e.get(`clip`,!0)&&LZ(e.coordinateSystem,!1,e);l?this.group.setClipPath(l):this.group.removeClipPath(),this._lastZlevel=a,this._finished=!0},t.prototype.incrementalPrepareRender=function(e,t,n){var r=e.getData();this._updateLineDraw(r,e).incrementalPrepareUpdate(r),this._clearLayer(n),this._finished=!1},t.prototype.incrementalRender=function(e,t,n){this._lineDraw.incrementalUpdate(e,t.getData(),gI(t)),this._finished=e.end===t.getData().count()},t.prototype.eachRendered=function(e){this._lineDraw&&this._lineDraw.eachRendered(e)},t.prototype.updateTransform=function(e,t,n){var r=e.getData(),i=this._lineDraw;if(!this._finished||!i||!i.updateLayout)return{update:!0};var a=mVe.reset(e,t,n);a.progress&&a.progress({start:0,end:r.count(),count:r.count()},r),i.updateLayout(),this._clearLayer(n)},t.prototype._updateLineDraw=function(e,t){var n=this._lineDraw,r=this._showEffect(t),i=!!t.get(`polyline`),a=t.pipelineContext.large;return(!n||r!==this._hasEffet||i!==this._isPolyline||a!==this._isLargeDraw)&&(n&&n.remove(),n=this._lineDraw=a?new pVe:new Z4(i?r?uVe:lVe:r?cVe:X4),this._hasEffet=r,this._isPolyline=i,this._isLargeDraw=a),this.group.add(n.group),n},t.prototype._showEffect=function(e){return!!e.get([`effect`,`show`])},t.prototype._clearLayer=function(e){var t=gB(e);t&&this._lastZlevel!=null&&t.getLayer(this._lastZlevel).clear(!0)},t.prototype.remove=function(e,t){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(t)},t.prototype.dispose=function(e,t){this.remove(e,t)},t.type=`lines`,t}(mW),gVe=typeof Uint32Array>`u`?Array:Uint32Array,_Ve=typeof Float64Array>`u`?Array:Float64Array;function vVe(e){var t=e.data;t&&t[0]&&t[0][0]&&t[0][0].coord&&(e.data=sA(t,function(e){var t={coords:[e[0].coord,e[1].coord]};return e[0].name&&(t.fromName=e[0].name),e[1].name&&(t.toName=e[1].name),eA([t,e[0],e[1]])}))}var yVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.visualStyleAccessPath=`lineStyle`,n.visualDrawType=`stroke`,n}return t.prototype.init=function(t){t.data=t.data||[],vVe(t);var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count)),e.prototype.init.apply(this,arguments)},t.prototype.mergeOption=function(t){if(vVe(t),t.data){var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count))}e.prototype.mergeOption.apply(this,arguments)},t.prototype.appendData=function(e){var t=this._processFlatCoordsArray(e.data);t.flatCoords&&(this._flatCoords?(this._flatCoords=BA(this._flatCoords,t.flatCoords),this._flatCoordsOffset=BA(this._flatCoordsOffset,t.flatCoordsOffset)):(this._flatCoords=t.flatCoords,this._flatCoordsOffset=t.flatCoordsOffset),e.data=new Float32Array(t.count)),this.getRawData().appendData(e.data)},t.prototype._getCoordsFromItemModel=function(e){var t=this.getData().getItemModel(e);return t.option instanceof Array?t.option:t.getShallow(`coords`)},t.prototype.getLineCoordsCount=function(e){return this._flatCoordsOffset?this._flatCoordsOffset[e*2+1]:this._getCoordsFromItemModel(e).length},t.prototype.getLineCoords=function(e,t){if(this._flatCoordsOffset){for(var n=this._flatCoordsOffset[e*2],r=this._flatCoordsOffset[e*2+1],i=0;i `)}return qU(`nameValue`,{name:o,value:i,noValue:i==null||isNaN(i)})},t.prototype.preventIncremental=function(){return!!this.get([`effect`,`show`])},t.prototype.getProgressive=function(){return this.option.progressive??(this.option.large?1e4:this.get(`progressive`))},t.prototype.getProgressiveThreshold=function(){return this.option.progressiveThreshold??(this.option.large?2e4:this.get(`progressiveThreshold`))},t.prototype.getZLevelKey=function(){var e=this.getModel(`effect`),t=e.get(`trailLength`);return this.getData().count()>this.getProgressiveThreshold()?this.id:e.get(`show`)&&t>0?t+``:``},t.type=`series.lines`,t.dependencies=[`grid`,`polar`,`geo`,`calendar`],t.defaultOption={coordinateSystem:`geo`,z:2,legendHoverLink:!0,xAxisIndex:0,yAxisIndex:0,symbol:[`none`,`none`],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:`circle`,symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:`end`},lineStyle:{opacity:.5}},t}(sW);function _6(e){return e instanceof Array||(e=[e,e]),e}var bVe={seriesType:`lines`,reset:function(e){var t=_6(e.get(`symbol`)),n=_6(e.get(`symbolSize`)),r=e.getData();r.setVisual(`fromSymbol`,t&&t[0]),r.setVisual(`toSymbol`,t&&t[1]),r.setVisual(`fromSymbolSize`,n&&n[0]),r.setVisual(`toSymbolSize`,n&&n[1]);function i(e,t){var n=e.getItemModel(t),r=_6(n.getShallow(`symbol`,!0)),i=_6(n.getShallow(`symbolSize`,!0));r[0]&&e.setItemVisual(t,`fromSymbol`,r[0]),r[1]&&e.setItemVisual(t,`toSymbol`,r[1]),i[0]&&e.setItemVisual(t,`fromSymbolSize`,i[0]),i[1]&&e.setItemVisual(t,`toSymbolSize`,i[1])}return{dataEach:r.hasItemOption?i:null}}};function xVe(e){e.registerChartView(hVe),e.registerSeriesModel(yVe),e.registerLayout(mVe),e.registerVisual(bVe)}var SVe=256,CVe=function(){function e(){this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={inRange:null,outOfRange:null};var e=zk.createCanvas();this.canvas=e}return e.prototype.update=function(e,t,n,r,i,a){var o=this._getBrush(),s=this._getGradient(i,`inRange`),c=this._getGradient(i,`outOfRange`),l=this.pointSize+this.blurSize,u=this.canvas,d=u.getContext(`2d`),f=e.length;u.width=t,u.height=n;for(var p=0;p0){var E=a(v)?s:c;v>0&&(v=v*w+C),b[x++]=E[T],b[x++]=E[T+1],b[x++]=E[T+2],b[x++]=E[T+3]*v*256}else x+=4}return d.putImageData(y,0,0),u},e.prototype._getBrush=function(){var e=this._brushCanvas||=zk.createCanvas(),t=this.pointSize+this.blurSize,n=t*2;e.width=n,e.height=n;var r=e.getContext(`2d`);return r.clearRect(0,0,n,n),r.shadowOffsetX=n,r.shadowBlur=this.blurSize,r.shadowColor=$.color.neutral99,r.beginPath(),r.arc(-t,t,this.pointSize,0,Math.PI*2,!0),r.closePath(),r.fill(),e},e.prototype._getGradient=function(e,t){for(var n=this._gradientPixels,r=n[t]||(n[t]=new Uint8ClampedArray(256*4)),i=[0,0,0,0],a=0,o=0;o<256;o++)e[t](o/255,!0,i),r[a++]=i[0],r[a++]=i[1],r[a++]=i[2],r[a++]=i[3];return r},e}();function wVe(e,t,n){var r=e[1]-e[0];t=sA(t,function(t){return{interval:[(t.interval[0]-e[0])/r,(t.interval[1]-e[0])/r]}});var i=t.length,a=0;return function(e){var r;for(r=a;r=0;r--){var o=t[r].interval;if(o[0]<=e&&e<=o[1]){a=r;break}}return r>=0&&r=t[0]&&e<=t[1]}}var EVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r;t.eachComponent(`visualMap`,function(t){t.eachTargetSeries(function(n){n===e&&(r=t)})}),this._progressiveEls=null,this.group.removeAll();var i=e.coordinateSystem;i.type===`cartesian2d`||i.type===`calendar`||i.type===`matrix`?this._renderOnGridLike(e,n,0,e.getData().count()):VZ(i)&&this._renderOnGeo(i,e,r,n)},t.prototype.incrementalPrepareRender=function(e,t,n){this.group.removeAll()},t.prototype.incrementalRender=function(e,t,n,r){var i=t.coordinateSystem;i&&(VZ(i)?this.render(t,n,r):(this._progressiveEls=[],this._renderOnGridLike(t,r,e.start,e.end,!0)))},t.prototype.eachRendered=function(e){iB(this._progressiveEls||this.group,e)},t.prototype._renderOnGridLike=function(e,t,n,r,i){var a=e.coordinateSystem,o=BZ(a,`cartesian2d`),s=BZ(a,`matrix`),c,l,u,d;if(o){var f=a.getAxis(`x`),p=a.getAxis(`y`);c=_Y(f).w+.5,l=_Y(p).w+.5,u=f.scale.getExtent(),d=p.scale.getExtent()}for(var m=this.group,h=e.getData(),g=e.getModel([`emphasis`,`itemStyle`]).getItemStyle(),_=e.getModel([`blur`,`itemStyle`]).getItemStyle(),v=e.getModel([`select`,`itemStyle`]).getItemStyle(),y=e.get([`itemStyle`,`borderRadius`]),b=xB(e),x=e.getModel(`emphasis`),S=x.get(`focus`),C=x.get(`blurScope`),w=x.get(`disabled`),T=o||s?[h.mapDimension(`x`),h.mapDimension(`y`),h.mapDimension(`value`)]:[h.mapDimension(`time`),h.mapDimension(`value`)],E=n;Eu[1]||Ad[1])continue;var j=a.dataToPoint([k,A]);D=new DL({shape:{x:j[0]-c/2,y:j[1]-l/2,width:c,height:l},style:O})}else if(s){var M=a.dataToLayout([h.get(T[0],E),h.get(T[1],E)]).rect;if(EA(M.x))continue;D=new DL({z2:1,shape:M,style:O})}else{if(isNaN(h.get(T[1],E)))continue;var N=a.dataToLayout([h.get(T[0],E)]),M=N.contentRect||N.rect;if(EA(M.x)||EA(M.y))continue;D=new DL({z2:1,shape:M,style:O})}if(h.hasItemOption){var P=h.getItemModel(E),F=P.getModel(`emphasis`);g=F.getModel(`itemStyle`).getItemStyle(),_=P.getModel([`blur`,`itemStyle`]).getItemStyle(),v=P.getModel([`select`,`itemStyle`]).getItemStyle(),y=P.get([`itemStyle`,`borderRadius`]),S=F.get(`focus`),C=F.get(`blurScope`),w=F.get(`disabled`),b=xB(P)}D.shape.r=y;var I=e.getRawValue(E),L=`-`;I&&I[2]!=null&&(L=I[2]+``),bB(D,b,{labelFetcher:e,labelDataIndex:E,defaultOpacity:O.opacity,defaultText:L}),D.ensureState(`emphasis`).style=g,D.ensureState(`blur`).style=_,D.ensureState(`select`).style=v,dR(D,S,C,w),D.incremental=gI(e,i),i&&(D.states.emphasis.hoverLayer=2),m.add(D),h.setItemGraphicEl(E,D),this._progressiveEls&&this._progressiveEls.push(D)}},t.prototype._renderOnGeo=function(e,t,n,r){var i=n.targetVisuals.inRange,a=n.targetVisuals.outOfRange,o=t.getData(),s=this._hmLayer||this._hmLayer||new CVe;s.blurSize=t.get(`blurSize`),s.pointSize=t.get(`pointSize`),s.minOpacity=t.get(`minOpacity`),s.maxOpacity=t.get(`maxOpacity`);var c=e.getViewRect().clone(),l=e.getRoamTransform();c.applyTransform(l);var u=Math.max(c.x,0),d=Math.max(c.y,0),f=Math.min(c.width+c.x,r.getWidth()),p=Math.min(c.height+c.y,r.getHeight()),m=f-u,h=p-d,g=[o.mapDimension(`lng`),o.mapDimension(`lat`),o.mapDimension(`value`)],_=o.mapArray(g,function(t,n,r){var i=e.dataToPoint([t,n]);return i[0]-=u,i[1]-=d,i.push(r),i}),v=n.getExtent(),y=n.type===`visualMap.continuous`?TVe(v,n.option.range):wVe(v,n.getPieceList(),n.option.selected);s.update(_,m,h,i.color.getNormalizer(),{inRange:i.color.getColorMapper(),outOfRange:a.color.getColorMapper()},y);var b=new CL({style:{width:m,height:h,x:u,y:d,image:s.canvas},silent:!0});this.group.add(b)},t.type=`heatmap`,t}(mW),DVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.getInitialData=function(e,t){return Dq(null,this,{generateCoord:`value`})},t.prototype.preventIncremental=function(){var e=zV.get(this.get(`coordinateSystem`));if(e&&e.dimensions)return e.dimensions[0]===`lng`&&e.dimensions[1]===`lat`},t.type=`series.heatmap`,t.dependencies=[`grid`,`geo`,`calendar`,`matrix`],t.defaultOption={coordinateSystem:`cartesian2d`,z:2,geoIndex:0,blurSize:30,pointSize:20,maxOpacity:1,minOpacity:0,select:{itemStyle:{borderColor:$.color.primary}}},t}(sW);function OVe(e){e.registerChartView(EVe),e.registerSeriesModel(DVe)}var kVe=[`itemStyle`,`borderWidth`],AVe=[{xy:`x`,wh:`width`,index:0,posDesc:[`left`,`right`]},{xy:`y`,wh:`height`,index:1,posDesc:[`top`,`bottom`]}],v6=new FR,jVe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=NQ,t}return t.prototype.render=function(e,t,n){var r=this.group,i=e.getData(),a=this._data,o=e.coordinateSystem,s=o.getBaseAxis().isHorizontal(),c=o.master.getRect(),l={ecSize:{width:n.getWidth(),height:n.getHeight()},seriesModel:e,coordSys:o,coordSysExtent:[[c.x,c.x+c.width],[c.y,c.y+c.height]],isHorizontal:s,valueDim:AVe[+s],categoryDim:AVe[1-s]};i.diff(a).add(function(e){if(i.hasValue(e)){var t=MVe(i,e,HVe(i,e),l),n=GVe(i,l,t);i.setItemGraphicEl(e,n),r.add(n),YVe(n,l,t)}}).update(function(e,t){var n=a.getItemGraphicEl(t);if(!i.hasValue(e)){r.remove(n);return}var o=MVe(i,e,HVe(i,e),l),s=JVe(i,o);n&&s!==n.__pictorialShapeStr&&(r.remove(n),i.setItemGraphicEl(e,null),n=null),n?KVe(n,l,o):n=GVe(i,l,o,!0),i.setItemGraphicEl(e,n),n.__pictorialSymbolMeta=o,r.add(n),YVe(n,l,o)}).remove(function(e){var t=a.getItemGraphicEl(e);t&&qVe(a,e,t.__pictorialSymbolMeta.animationModel,t)}).execute();var u=e.get(`clip`,!0)?LZ(e.coordinateSystem,!1,e):null;return u?r.setClipPath(u):r.removeClipPath(),this._data=i,this.group},t.prototype.remove=function(e,t){var n=this.group,r=this._data;e.get(`animation`)?r&&r.eachItemGraphicEl(function(t){qVe(r,jL(t).dataIndex,e,t)}):n.removeAll()},t.type=NQ,t}(mW);function MVe(e,t,n,r){var i=e.getItemLayout(t),a=n.get(`symbolRepeat`),o=n.get(`symbolClip`),s=n.get(`symbolPosition`)||`start`,c=(n.get(`symbolRotate`)||0)*Math.PI/180||0,l=n.get(`symbolPatternSize`)||2,u=n.isAnimationEnabled(),d={dataIndex:t,layout:i,itemModel:n,symbolType:e.getItemVisual(t,`symbol`)||`circle`,style:e.getItemVisual(t,`style`),symbolClip:o,symbolRepeat:a,symbolRepeatDirection:n.get(`symbolRepeatDirection`),symbolPatternSize:l,rotation:c,animationModel:u?n:null,hoverScale:u&&n.get([`emphasis`,`scale`]),z2:n.getShallow(`z`,!0)||0};NVe(n,a,i,r,d),PVe(e,t,i,a,o,d.boundingLength,d.pxSign,l,r,d),FVe(n,d.symbolScale,c,r,d);var f=d.symbolSize;return IVe(n,f,i,a,o,aG(n.get(`symbolOffset`),f),s,d.valueLineWidth,d.boundingLength,d.repeatCutLength,r,d),d}function NVe(e,t,n,r,i){var a=r.valueDim,o=e.get(`symbolBoundingData`),s=r.coordSys.getOtherAxis(r.coordSys.getBaseAxis()),c=s.toGlobalCoord(s.dataToCoord(0)),l=1-(n[a.wh]<=0),u;if(mA(o)){var d=[y6(s,o[0])-c,y6(s,o[1])-c];d[1]=0?1:-1:u>0?1:-1}function y6(e,t){return e.toGlobalCoord(e.dataToCoord(e.scale.parse(t)))}function PVe(e,t,n,r,i,a,o,s,c,l){var u=c.valueDim,d=c.categoryDim,f=Math.abs(n[d.wh]),p=e.getItemVisual(t,`symbolSize`),m=mA(p)?p.slice():p==null?[`100%`,`100%`]:[p,p];m[d.index]=yF(m[d.index],f),m[u.index]=yF(m[u.index],r?f:Math.abs(a)),l.symbolSize=m;var h=l.symbolScale=[m[0]/s,m[1]/s];h[u.index]*=(c.isHorizontal?-1:1)*o}function FVe(e,t,n,r,i){var a=e.get(kVe)||0;a&&(v6.attr({scaleX:t[0],scaleY:t[1],rotation:n}),v6.updateTransform(),a/=v6.getLineScale(),a*=t[r.valueDim.index]),i.valueLineWidth=a||0}function IVe(e,t,n,r,i,a,o,s,c,l,u,d){var f=u.categoryDim,p=u.valueDim,m=d.pxSign,h=Math.max(t[p.index]+s,0),g=h;if(r){var _=Math.abs(c),v=DA(e.get(`symbolMargin`),`15%`)+``,y=!1;v.lastIndexOf(`!`)===v.length-1&&(y=!0,v=v.slice(0,v.length-1));var b=yF(v,t[p.index]),x=Math.max(h+b*2,0),S=y?0:b*2,C=zF(r),w=C?r:XVe((_+S)/x);b=(_-w*h)/2/(y?w:Math.max(w-1,1)),x=h+b*2,S=y?0:b*2,!C&&r!==`fixed`&&(w=l?XVe((Math.abs(l)+S)/x):0),g=w*x-S,d.repeatTimes=w,d.symbolMargin=b}var T=g/2*m,E=d.pathPosition=[];E[f.index]=n[f.wh]/2,E[p.index]=o===`start`?T:o===`end`?c-T:c/2,a&&(E[0]+=a[0],E[1]+=a[1]);var D=d.bundlePosition=[];D[f.index]=n[f.xy],D[p.index]=n[p.xy];var O=d.barRectShape=Z({},n);O[p.wh]=m*Math.max(Math.abs(n[p.wh]),Math.abs(E[p.index]+T)),O[f.wh]=n[f.wh];var k=d.clipShape={};k[f.xy]=-n[f.xy],k[f.wh]=u.ecSize[f.wh],k[p.xy]=0,k[p.wh]=n[p.wh]}function LVe(e){var t=e.symbolPatternSize,n=rG(e.symbolType,-t/2,-t/2,t,t);return n.attr({culling:!0}),n.type!==`image`&&n.setStyle({strokeNoScale:!0}),n}function RVe(e,t,n,r){var i=e.__pictorialBundle,a=n.symbolSize,o=n.valueLineWidth,s=n.pathPosition,c=t.valueDim,l=n.repeatTimes||0,u=0,d=a[t.valueDim.index]+o+n.symbolMargin*2;for(b6(e,function(e){e.__pictorialAnimationIndex=u,e.__pictorialRepeatTimes=l,u0:r<0)&&(i=l-1-e),t[c.index]=d*(i-l/2+.5)+s[c.index],{x:t[0],y:t[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation}}}function zVe(e,t,n,r){var i=e.__pictorialBundle,a=e.__pictorialMainPath;a?x6(a,null,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation},n,r):(a=e.__pictorialMainPath=LVe(n),i.add(a),x6(a,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:0,scaleY:0,rotation:n.rotation},{scaleX:n.symbolScale[0],scaleY:n.symbolScale[1]},n,r))}function BVe(e,t,n){var r=Z({},t.barRectShape),i=e.__pictorialBarRect;i?x6(i,null,{shape:r},t,n):(i=e.__pictorialBarRect=new DL({z2:2,shape:r,silent:!0,style:{stroke:`transparent`,fill:`transparent`,lineWidth:0}}),i.disableMorphing=!0,e.add(i))}function VVe(e,t,n,r){if(n.symbolClip){var i=e.__pictorialClipPath,a=Z({},n.clipShape),o=t.valueDim,s=n.animationModel,c=n.dataIndex;if(i)bz(i,{shape:a},s,c);else{a[o.wh]=0,i=new DL({shape:a}),e.__pictorialBundle.setClipPath(i),e.__pictorialClipPath=i;var l={};l[o.wh]=n.clipShape[o.wh],Dz[r?`updateProps`:`initProps`](i,{shape:l},s,c)}}}function HVe(e,t){var n=e.getItemModel(t);return n.getAnimationDelayParams=UVe,n.isAnimationEnabled=WVe,n}function UVe(e){return{index:e.__pictorialAnimationIndex,count:e.__pictorialRepeatTimes}}function WVe(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow(`animation`)}function GVe(e,t,n,r){var i=new QP,a=new QP;return i.add(a),i.__pictorialBundle=a,a.x=n.bundlePosition[0],a.y=n.bundlePosition[1],n.symbolRepeat?RVe(i,t,n):zVe(i,t,n),BVe(i,n,r),VVe(i,t,n,r),i.__pictorialShapeStr=JVe(e,n),i.__pictorialSymbolMeta=n,i}function KVe(e,t,n){var r=n.animationModel,i=n.dataIndex,a=e.__pictorialBundle;bz(a,{x:n.bundlePosition[0],y:n.bundlePosition[1]},r,i),n.symbolRepeat?RVe(e,t,n,!0):zVe(e,t,n,!0),BVe(e,n,!0),VVe(e,t,n,!0)}function qVe(e,t,n,r){var i=r.__pictorialBarRect;i&&i.removeTextContent();var a=[];b6(r,function(e){a.push(e)}),r.__pictorialMainPath&&a.push(r.__pictorialMainPath),r.__pictorialClipPath&&(n=null),Q(a,function(e){Cz(e,{scaleX:0,scaleY:0},n,t,function(){r.parent&&r.parent.remove(r)})}),e.setItemGraphicEl(t,null)}function JVe(e,t){return[e.getItemVisual(t.dataIndex,`symbol`)||`none`,!!t.symbolRepeat,!!t.symbolClip].join(`:`)}function b6(e,t,n){Q(e.__pictorialBundle.children(),function(r){r!==e.__pictorialBarRect&&t.call(n,r)})}function x6(e,t,n,r,i,a){t&&e.attr(t),r.symbolClip&&!i?n&&e.attr(n):n&&Dz[i?`updateProps`:`initProps`](e,n,r.animationModel,r.dataIndex,a)}function YVe(e,t,n){var r=n.dataIndex,i=n.itemModel,a=i.getModel(`emphasis`),o=a.getModel(`itemStyle`).getItemStyle(),s=i.getModel([`blur`,`itemStyle`]).getItemStyle(),c=i.getModel([`select`,`itemStyle`]).getItemStyle(),l=i.getShallow(`cursor`),u=a.get(`focus`),d=a.get(`blurScope`),f=a.get(`scale`);b6(e,function(e){if(e instanceof CL){var t=e.style;e.useStyle(Z({image:t.image,x:t.x,y:t.y,width:t.width,height:t.height},n.style))}else e.useStyle(n.style);var r=e.ensureState(`emphasis`);r.style=o,f&&(r.scaleX=e.scaleX*1.1,r.scaleY=e.scaleY*1.1),e.ensureState(`blur`).style=s,e.ensureState(`select`).style=c,l&&(e.cursor=l),e.z2=n.z2});var p=t.valueDim.posDesc[+(n.boundingLength>0)],m=e.__pictorialBarRect;m.ignoreClip=!0,bB(m,xB(i),{labelFetcher:t.seriesModel,labelDataIndex:r,defaultText:_Z(t.seriesModel.getData(),r),inheritColor:n.style.fill,defaultOpacity:n.style.opacity,defaultOutsidePosition:p}),dR(e,u,d,a.get(`disabled`))}function XVe(e){var t=Math.round(e);return Math.abs(e-t)<1e-4?t:Math.ceil(e)}var ZVe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.hasSymbolVisual=!0,n.defaultSymbol=`roundRect`,n}return t.prototype.getInitialData=function(t){return t.stack=null,e.prototype.getInitialData.apply(this,arguments)},t.type=`series.`+NQ,t.dependencies=[`grid`],t.defaultOption=zB(KQ.defaultOption,{symbol:`circle`,symbolSize:null,symbolRotate:null,symbolPosition:null,symbolOffset:null,symbolMargin:null,symbolRepeat:!1,symbolRepeatDirection:`end`,symbolClip:!1,symbolBoundingData:null,symbolPatternSize:400,barGap:`-100%`,clip:!1,progressive:0,emphasis:{scale:!1},select:{itemStyle:{borderColor:$.color.primary}}}),t}(KQ);function QVe(e){e.registerChartView(jVe),e.registerSeriesModel(ZVe),e.registerLayout(e.PRIORITY.VISUAL.LAYOUT,HQ(NQ)),e.registerLayout(e.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,UQ(NQ)),GQ(e)}var S6=2,C6=`themeRiver`,$Ve=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t){e.prototype.init.apply(this,arguments),this.legendVisualProvider=new p$(fA(this.getData,this),fA(this.getRawData,this))},t.prototype.fixData=function(e){var t=e.length,n={},r=oI(e,function(e){return n.hasOwnProperty(e[0]+``)||(n[e[0]+``]=-1),e[2]}),i=[];r.buckets.each(function(e,t){i.push({name:t,dataList:e})});for(var a=i.length,o=0;oa&&(a=s),r.push(s)}for(var l=0;la&&(a=d)}return{y0:i,max:a}}function oHe(e){e.registerChartView(eHe),e.registerSeriesModel($Ve),e.registerLayout(nHe),e.registerProcessor(d$(C6))}var sHe=2,cHe=4,lHe=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this)||this;a.z2=sHe,a.textConfig={inside:!0},jL(a).seriesIndex=n.seriesIndex;var o=new kL({z2:cHe,silent:t.getModel().get([`label`,`silent`])});return a.setTextContent(o),a.updateData(!0,t,n,r,i),a}return t.prototype.updateData=function(e,t,n,r,i){this.node=t,t.piece=this,n||=this._seriesModel,r||=this._ecModel;var a=this;jL(a).dataIndex=t.dataIndex;var o=t.getModel(),s=o.getModel(`emphasis`),c=t.getLayout(),l=Z({},c);l.label=null;var u=t.getVisual(`style`);u.lineJoin=`bevel`;var d=t.getVisual(`decal`);d&&(u.decal=NG(d,i)),Z(l,XQ(o.getModel(`itemStyle`),l,!0)),Q(VL,function(e){var t=a.ensureState(e),n=o.getModel([e,`itemStyle`]);t.style=n.getItemStyle();var r=XQ(n,l);r&&(t.shape=r)}),e?(a.setShape(l),a.shape.r=c.r0,xz(a,{shape:{r:c.r}},n,t.dataIndex)):(bz(a,{shape:l},n),Ez(a)),a.useStyle(u),this._updateLabel(n);var f=o.getShallow(`cursor`);f&&a.attr(`cursor`,f),this._seriesModel=n||this._seriesModel,this._ecModel=r||this._ecModel;var p=s.get(`focus`),m=p===`relative`?BA(t.getAncestorsIndices(),t.getDescendantIndices()):p===`ancestor`?t.getAncestorsIndices():p===`descendant`?t.getDescendantIndices():p;dR(this,m,s.get(`blurScope`),s.get(`disabled`))},t.prototype._updateLabel=function(e){var t=this,n=this.node.getModel(),r=n.getModel(`label`),i=this.node.getLayout(),a=i.endAngle-i.startAngle,o=(i.startAngle+i.endAngle)/2,s=Math.cos(o),c=Math.sin(o),l=this,u=l.getTextContent(),d=this.node.dataIndex,f=r.get(`minAngle`)/180*Math.PI;u.ignore=!(r.get(`show`)&&!(f!=null&&Math.abs(a)T&&!jF(D-T)&&D0?(i.virtualPiece?i.virtualPiece.updateData(!1,r,e,t,n):(i.virtualPiece=new lHe(r,e,t,n),c.add(i.virtualPiece)),a.piece.off(`click`),i.virtualPiece.on(`click`,function(e){i._rootToNode(a.parentNode)})):i.virtualPiece&&=(c.remove(i.virtualPiece),null)}},t.prototype._initEvents=function(){var e=this;this.group.off(`click`),this.group.on(`click`,function(t){var n=!1;e.seriesModel.getViewRoot().eachNode(function(r){if(!n&&r.piece&&r.piece===t.target){var i=r.getModel().get(`nodeClick`);if(i===`rootToNode`)e._rootToNode(r);else if(i===`link`){var a=r.getModel(),o=a.get(`link`);o&&IV(o,a.get(`target`,!0)||`_blank`)}n=!0}})})},t.prototype._rootToNode=function(e){e!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:T6,from:this.uid,seriesId:this.seriesModel.id,targetNode:e})},t.prototype.containPoint=function(e,t){var n=t.getData().getItemLayout(0);if(n){var r=e[0]-n.cx,i=e[1]-n.cy,a=Math.sqrt(r*r+i*i);return a<=n.r&&a>=n.r0}},t.type=w6,t}(mW),gHe=_I(w6,_He);function _He(e){var t={};function n(e,n,r){if(e.depth===0)return $.color.neutral50;for(var i=e;i&&i.depth>1;)i=i.parentNode;var a=n.getColorFromPalette(i.name||i.dataIndex+``,t);return e.depth>1&&gA(a)&&(a=fN(a,(e.depth-1)/(r-1)*.5)),a}e.eachSeriesByType(w6,function(e){var t=e.getData(),r=t.tree;r.eachNode(function(i){var a=i.getModel().getModel(`itemStyle`).getItemStyle();a.fill||=n(i,e,r.root.height),Z(t.ensureUniqueItemVisual(i.dataIndex,`style`),a)})})}var vHe=Math.PI/180,yHe=_I(w6,bHe);function bHe(e,t){e.eachSeriesByType(w6,function(e){var n=e.get(`center`),r=e.get(`radius`);mA(r)||(r=[0,r]),mA(n)||(n=[n,n]);var i=t.getWidth(),a=t.getHeight(),o=Math.min(i,a),s=yF(n[0],i),c=yF(n[1],a),l=yF(r[0],o/2),u=yF(r[1],o/2),d=-e.get(`startAngle`)*vHe,f=e.get(`minAngle`)*vHe,p=e.getData().tree.root,m=e.getViewRoot(),h=m.depth,g=e.get(`sort`);g!=null&&xHe(m,g);var _=0;Q(m.children,function(e){!isNaN(e.getValue())&&_++});var v=m.getValue(),y=Math.PI/(v||_)*2,b=m.depth>0,x=m.height-(b?-1:1),S=(u-l)/(x||1),C=e.get(`clockwise`),w=e.get(`stillShowZeroSum`),T=C?1:-1,E=function(t,n){if(t){var r=n;if(t!==p){var i=t.getValue(),a=v===0&&w?y:i*y;ar[1]&&r.reverse(),{coordSys:{type:`polar`,cx:e.cx,cy:e.cy,r:r[1],r0:r[0]},api:{coord:function(r){var i=t.dataToRadius(r[0]),a=n.dataToAngle(r[1]),o=e.coordToPoint([i,a]);return o.push(i,a*Math.PI/180),o},size:fA(NHe,e)}}}function FHe(e){var t=e.getRect(),n=e.getRangeInfo();return{coordSys:{type:`calendar`,x:t.x,y:t.y,width:t.width,height:t.height,cellWidth:e.getCellWidth(),cellHeight:e.getCellHeight(),rangeInfo:{start:n.start,end:n.end,weeks:n.weeks,dayCount:n.allDay}},api:{coord:function(t,n){return e.dataToPoint(t,n)},layout:function(t,n){return e.dataToLayout(t,n)}}}}function IHe(e){var t=e.getRect();return{coordSys:{type:`matrix`,x:t.x,y:t.y,width:t.width,height:t.height},api:{coord:function(t,n){return e.dataToPoint(t,n)},layout:function(t,n){return e.dataToLayout(t,n)}}}}var LHe={position:[`x`,`y`],scale:[`scaleX`,`scaleY`],origin:[`originX`,`originY`]},RHe=dA(LHe);cA(DP,function(e,t){return e[t]=1,e},{}),DP.join(`, `);var D6=[``,`style`,`shape`,`extra`],O6=eI();function k6(e,t,n,r,i){var a=e+`Animation`,o=vz(e,r,i)||{},s=O6(t).userDuring;return o.duration>0&&(o.during=s?fA(WHe,{el:t,userDuring:s}):null,o.setToFinal=!0,o.scope=e),Z(o,n[a]),o}function A6(e,t,n,r){r||={};var i=r.dataIndex,a=r.isInit,o=r.clearStyle,s=n.isAnimationEnabled(),c=O6(e),l=t.style;c.userDuring=t.during;var u={},d={};if(qHe(e,t,d),e.type===`compound`)for(var f=e.shape.paths,p=t.shape.paths,m=0;m0&&e.animateFrom(g,_)}else VHe(e,t,i||0,n,u);zHe(e,t),l?e.dirty():e.markRedraw()}function zHe(e,t){for(var n=O6(e).leaveToProps,r=0;r0&&e.animateFrom(i,a)}}function HHe(e,t){UA(t,`silent`)&&(e.silent=t.silent),UA(t,`ignore`)&&(e.ignore=t.ignore),e instanceof PI&&UA(t,`invisible`)&&(e.invisible=t.invisible),e instanceof xL&&UA(t,`autoBatch`)&&(e.autoBatch=t.autoBatch)}var N6={},UHe={setTransform:function(e,t){return N6.el[e]=t,this},getTransform:function(e){return N6.el[e]},setShape:function(e,t){var n=N6.el,r=n.shape||={};return r[e]=t,n.dirtyShape&&n.dirtyShape(),this},getShape:function(e){var t=N6.el.shape;if(t)return t[e]},setStyle:function(e,t){var n=N6.el,r=n.style;return r&&(r[e]=t,n.dirtyStyle&&n.dirtyStyle()),this},getStyle:function(e){var t=N6.el.style;if(t)return t[e]},setExtra:function(e,t){var n=N6.el.extra||(N6.el.extra={});return n[e]=t,this},getExtra:function(e){var t=N6.el.extra;if(t)return t[e]}};function WHe(){var e=this,t=e.el;if(t){var n=O6(t).userDuring,r=e.userDuring;if(n!==r){e.el=e.userDuring=null;return}N6.el=t,r(UHe)}}function GHe(e,t,n,r){var i=n[e];if(i){var a=t[e],o;if(a){var s=n.transition,c=i.transition;if(c)if(!o&&(o=r[e]={}),M6(c))Z(o,a);else for(var l=KF(c),u=0;u=0){!o&&(o=r[e]={});for(var p=dA(a),u=0;u=0)){var f=e.getAnimationStyleProps(),p=f?f.style:null;if(p){!a&&(a=r.style={});for(var m=dA(n),l=0;l=0?t.getStore().get(i,n):void 0}var a=t.get(r.name,n),o=r&&r.ordinalMeta;return o?o.categories[a]:a}function C(n,r){r??=u;var i=t.getItemVisual(r,`style`),a=i&&i.fill,o=i&&i.opacity,s=y(r,L6).getItemStyle();a!=null&&(s.fill=a),o!=null&&(s.opacity=o);var c={inheritColor:gA(a)?a:$.color.neutral99},l=b(r,L6),d=SB(l,null,c,!1,!0);d.text=l.getShallow(`show`)?OA(e.getFormattedLabel(r,L6),_Z(t,r)):null;var f=CB(l,c,!1);return E(n,s),s=GZ(s,d,f),n&&T(s,n),s.legacy=!0,s}function w(n,r){r??=u;var i=y(r,I6).getItemStyle(),a=b(r,I6),o=SB(a,null,null,!0,!0);o.text=a.getShallow(`show`)?kA(e.getFormattedLabel(r,I6),e.getFormattedLabel(r,L6),_Z(t,r)):null;var s=CB(a,null,!0);return E(n,i),i=GZ(i,o,s),n&&T(i,n),i.legacy=!0,i}function T(e,t){for(var n in t)UA(t,n)&&(e[n]=t[n])}function E(e,t){e&&(e.textFill&&(t.textFill=e.textFill),e.textPosition&&(t.textPosition=e.textPosition))}function D(e,n){if(n??=u,UA(wHe,e)){var r=t.getItemVisual(n,`style`);return r?r[wHe[e]]:null}if(UA(THe,e))return t.getItemVisual(n,e)}function O(e){if(o.type===`cartesian2d`)return lPe(nA({axis:o.getBaseAxis()},e))}function k(){return n.getCurrentSeriesIndices()}function A(e){return OB(e,n)}}function cUe(e){var t={};return Q(e.dimensions,function(n){var r=e.getDimensionInfo(n);if(!r.isExtraCoord){var i=r.coordDim,a=t[i]=t[i]||[];a[r.coordDimIndex]=e.getDimensionIndex(n)}}),t}function J6(e,t,n,r,i,a,o){if(!r){a.remove(t);return}var s=Y6(e,t,n,r,i,a);return s&&o.setItemGraphicEl(n,s),s&&dR(s,r.focus,r.blurScope,r.emphasisDisabled),s}function Y6(e,t,n,r,i,a){var o=-1,s=t;t&&lUe(t,r,i)&&(o=rA(a.childrenRef(),t),t=null);var c=!t,l=t;l?l.clearStates():(l=K6(r),s&&nUe(s,l)),r.morph===!1?l.disableMorphing=!0:l.disableMorphing&&=!1,r.tooltipDisabled&&(l.tooltipDisabled=!0),U6.normal.cfg=U6.normal.conOpt=U6.emphasis.cfg=U6.emphasis.conOpt=U6.blur.cfg=U6.blur.conOpt=U6.select.cfg=U6.select.conOpt=null,U6.isLegacy=!1,dUe(l,n,r,i,c,U6),uUe(l,n,r,i,c),q6(e,l,n,r,U6,i,c),UA(r,`info`)&&(E6(l).info=r.info);for(var u=0;u=0?a.replaceAt(l,o):a.add(l),l}function lUe(e,t,n){var r=E6(e),i=t.type,a=t.shape,o=t.style;return n.isUniversalTransitionEnabled()||i!=null&&i!==r.customGraphicType||i===`path`&&bUe(a)&&yUe(a)!==r.customPathData||i===`image`&&UA(o,`image`)&&o.image!==r.customImagePath}function uUe(e,t,n,r,i){var a=n.clipPath;if(a===!1)e&&e.getClipPath()&&e.removeClipPath();else if(a){var o=e.getClipPath();o&&lUe(o,a,r)&&(o=null),o||(o=K6(a),e.setClipPath(o)),q6(null,o,t,a,null,r,i)}}function dUe(e,t,n,r,i,a){if(!(e.isGroup||e.type===`compoundPath`)){fUe(n,null,a),fUe(n,I6,a);var o=a.normal.conOpt,s=a.emphasis.conOpt,c=a.blur.conOpt,l=a.select.conOpt;if(o!=null||s!=null||l!=null||c!=null){var u=e.getTextContent();if(o===!1)u&&e.removeTextContent();else{o=a.normal.conOpt=o||{type:`text`},u?u.clearStates():(u=K6(o),e.setTextContent(u)),q6(null,u,t,o,null,r,i);for(var d=o&&o.style,f=0;f=u;p--)mUe(t,t.childAt(p),i)}}function mUe(e,t,n){t&&j6(t,E6(e).option,n)}function hUe(e){new nq(e.oldChildren,e.newChildren,gUe,gUe,e).add(_Ue).update(_Ue).remove(vUe).execute()}function gUe(e,t){return(e&&e.name)??eUe+t}function _Ue(e,t){var n=this.context,r=e==null?null:n.newChildren[e],i=t==null?null:n.oldChildren[t];Y6(n.api,i,n.dataIndex,r,n.seriesModel,n.group)}function vUe(e){var t=this.context,n=t.oldChildren[e];n&&j6(n,E6(n).option,t.seriesModel)}function yUe(e){return e&&(e.pathData||e.d)}function bUe(e){return e&&(UA(e,`pathData`)||UA(e,`d`))}function xUe(e){e.registerChartView(rUe),e.registerSeriesModel(EHe)}var Q6=eI(),SUe=Qk,$6=fA,e8=function(){function e(){this._dragging=!1,this.animationThreshold=15}return e.prototype.render=function(e,t,n,r){var i=t.get(`value`),a=t.get(`status`);if(this._axisModel=e,this._axisPointerModel=t,this._api=n,!(!r&&this._lastValue===i&&this._lastStatus===a)){this._lastValue=i,this._lastStatus=a;var o=this._group,s=this._handle;if(!a||a===`hide`){o&&o.hide(),s&&s.hide();return}o&&o.show(),s&&s.show();var c={};this.makeElOption(c,i,e,t,n);var l=c.graphicKey;l!==this._lastGraphicKey&&this.clear(n),this._lastGraphicKey=l;var u=this._moveAnimation=this.determineAnimation(e,t);if(!o)o=this._group=new QP,this.createPointerEl(o,c,e,t),this.createLabelEl(o,c,e,t),n.getZr().add(o);else{var d=pA(CUe,t,u);this.updatePointerEl(o,c,d),this.updateLabelEl(o,c,d,t)}EUe(o,t,!0),this._renderHandle(i)}},e.prototype.remove=function(e){this.clear(e)},e.prototype.dispose=function(e){this.clear(e)},e.prototype.determineAnimation=function(e,t){var n=t.get(`animation`),r=e.axis,i=r.type===`category`,a=t.get(`snap`);if(!a&&!i)return!1;if(n===`auto`||n==null){var o=this.animationThreshold;if(i&&_Y(r).w>o)return!0;if(a){var s=W$(e).seriesDataCount,c=r.getExtent();return Math.abs(c[0]-c[1])/s>o}return!1}return n===!0},e.prototype.makeElOption=function(e,t,n,r,i){},e.prototype.createPointerEl=function(e,t,n,r){var i=t.pointer;if(i){var a=Q6(e).pointerEl=new Dz[i.type](SUe(t.pointer));e.add(a)}},e.prototype.createLabelEl=function(e,t,n,r){if(t.label){var i=Q6(e).labelEl=new kL(SUe(t.label));e.add(i),TUe(i,r)}},e.prototype.updatePointerEl=function(e,t,n){var r=Q6(e).pointerEl;r&&t.pointer&&(r.setStyle(t.pointer.style),n(r,{shape:t.pointer.shape}))},e.prototype.updateLabelEl=function(e,t,n,r){var i=Q6(e).labelEl;i&&(i.setStyle(t.label.style),n(i,{x:t.label.x,y:t.label.y}),TUe(i,r))},e.prototype._renderHandle=function(e){if(!(this._dragging||!this.updateHandleTransform)){var t=this._axisPointerModel,n=this._api.getZr(),r=this._handle,i=t.getModel(`handle`),a=t.get(`status`);if(!i.get(`show`)||!a||a===`hide`){r&&n.remove(r),this._handle=null;return}var o;this._handle||(o=!0,r=this._handle=Yz(i.get(`icon`),{cursor:`move`,draggable:!0,onmousemove:function(e){Oj(e.event)},onmousedown:$6(this._onHandleDragMove,this,0,0),drift:$6(this._onHandleDragMove,this),ondragend:$6(this._onHandleDragEnd,this)}),n.add(r)),EUe(r,t,!1),r.setStyle(i.getItemStyle(null,[`color`,`borderColor`,`borderWidth`,`opacity`,`shadowColor`,`shadowBlur`,`shadowOffsetX`,`shadowOffsetY`]));var s=i.get(`size`);mA(s)||(s=[s,s]),r.scaleX=s[0]/2,r.scaleY=s[1]/2,xW(this,`_doDispatchAxisPointer`,i.get(`throttle`)||0,`fixRate`),this._moveHandleToValue(e,o)}},e.prototype._moveHandleToValue=function(e,t){CUe(this._axisPointerModel,!t&&this._moveAnimation,this._handle,t8(this.getHandleTransform(e,this._axisModel,this._axisPointerModel)))},e.prototype._onHandleDragMove=function(e,t){var n=this._handle;if(n){this._dragging=!0;var r=this.updateHandleTransform(t8(n),[e,t],this._axisModel,this._axisPointerModel);this._payloadInfo=r,n.stopAnimation(),n.attr(t8(r)),Q6(n).lastProp=null,this._doDispatchAxisPointer()}},e.prototype._doDispatchAxisPointer=function(){if(this._handle){var e=this._payloadInfo,t=this._axisModel;this._api.dispatchAction({type:`updateAxisPointer`,x:e.cursorPoint[0],y:e.cursorPoint[1],tooltipOption:e.tooltipOption,axesInfo:[{axisDim:t.axis.dim,axisIndex:t.componentIndex}]})}},e.prototype._onHandleDragEnd=function(){if(this._dragging=!1,this._handle){var e=this._axisPointerModel.get(`value`);this._moveHandleToValue(e),this._api.dispatchAction({type:`hideTip`})}},e.prototype.clear=function(e){this._lastValue=null,this._lastStatus=null;var t=e.getZr(),n=this._group,r=this._handle;t&&n&&(this._lastGraphicKey=null,n&&t.remove(n),r&&t.remove(r),this._group=null,this._handle=null,this._payloadInfo=null),SW(this,`_doDispatchAxisPointer`)},e.prototype.doClear=function(){},e.prototype.buildLabel=function(e,t,n){return n||=0,{x:e[n],y:e[1-n],width:t[n],height:t[1-n]}},e}();function CUe(e,t,n,r){wUe(Q6(n).lastProp,r)||(Q6(n).lastProp=r,t?bz(n,r,e):(n.stopAnimation(),n.attr(r)))}function wUe(e,t){if(yA(e)&&yA(t)){var n=!0;return Q(t,function(t,r){n&&=wUe(e[r],t)}),!!n}else return e===t}function TUe(e,t){e[t.get([`label`,`show`])?`show`:`hide`]()}function t8(e){return{x:e.x||0,y:e.y||0,rotation:e.rotation||0}}function EUe(e,t,n){var r=t.get(`z`),i=t.get(`zlevel`);e&&e.traverse(function(e){e.type!==`group`&&(r!=null&&(e.z=r),i!=null&&(e.zlevel=i),e.silent=n)})}function n8(e){var t=e.get(`type`),n=e.getModel(t+`Style`),r;return t===`line`?(r=n.getLineStyle(),r.fill=null):t===`shadow`&&(r=n.getAreaStyle(),r.stroke=null),r}function DUe(e,t,n,r,i){var a=kUe(n.get(`value`),t.axis,t.ecModel,n.get(`seriesDataIndices`),{precision:n.get([`label`,`precision`]),formatter:n.get([`label`,`formatter`])}),o=n.getModel(`label`),s=OV(o.get(`padding`)||0),c=o.getFont(),l=IP(a,c),u=i.position,d=l.width+s[1]+s[3],f=l.height+s[0]+s[2],p=i.align;p===`right`&&(u[0]-=d),p===`center`&&(u[0]-=d/2);var m=i.verticalAlign;m===`bottom`&&(u[1]-=f),m===`middle`&&(u[1]-=f/2),OUe(u,d,f,r);var h=o.get(`backgroundColor`);(!h||h===`auto`)&&(h=t.get([`axisLine`,`lineStyle`,`color`])),e.label={x:u[0],y:u[1],style:SB(o,{text:a,font:c,fill:o.getTextColor(),padding:s,backgroundColor:h}),z2:10}}function OUe(e,t,n,r){var i=r.getWidth(),a=r.getHeight();e[0]=Math.min(e[0]+t,i)-t,e[1]=Math.min(e[1]+n,a)-n,e[0]=Math.max(e[0],0),e[1]=Math.max(e[1],0)}function kUe(e,t,n,r,i){e=t.scale.parse(e);var a=t.scale.getLabel({value:e},{precision:i.precision}),o=i.formatter;if(o){var s={value:mJ(t,{value:e}),axisDimension:t.dim,axisIndex:t.index,seriesData:[]};Q(r,function(e){var t=n.getSeriesByIndex(e.seriesIndex),r=e.dataIndexInside,i=t&&t.getDataParams(r);i&&s.seriesData.push(i)}),gA(o)?a=o.replace(`{value}`,a):hA(o)&&(a=o(s))}return a}function r8(e,t,n){var r=Mj();return Lj(r,r,n.rotation),Ij(r,r,n.position),Uz([e.dataToCoord(t),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],r)}function AUe(e,t,n,r,i,a){var o=vQ.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=i.get([`label`,`margin`]),DUe(t,r,i,a,{position:r8(r.axis,e,n),align:o.textAlign,verticalAlign:o.textVerticalAlign})}function i8(e,t,n){return n||=0,{x1:e[n],y1:e[1-n],x2:t[n],y2:t[1-n]}}function jUe(e,t,n){return n||=0,{x:e[n],y:e[1-n],width:t[n],height:t[1-n]}}function MUe(e,t,n,r,i,a){return{cx:e,cy:t,r0:n,r,startAngle:i,endAngle:a,clockwise:!0}}function a8(e,t,n){return _Y(e,{fromStat:{sers:sA(t,function(e){return n.getSeriesByIndex(e.seriesIndex)})},min:1}).w}function o8(e,t,n){return[lF(cF(t[0],t[1]),e-n/2),cF(e+n/2,lF(t[0],t[1]))]}var NUe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.makeElOption=function(e,t,n,r,i){var a=n.axis,o=a.grid,s=r.get(`type`),c=a.getGlobalExtent(),l=PUe(o,a).getOtherAxis(a).getGlobalExtent(),u=a.toGlobalCoord(a.dataToCoord(t,!0));if(s&&s!==`none`){var d=n8(r),f=FUe[s](a,u,c,l,r.get(`seriesDataIndices`),r.ecModel);f.style=d,e.graphicKey=f.type,e.pointer=f}AUe(t,e,DQ(o.getRect(),n),n,r,i)},t.prototype.getHandleTransform=function(e,t,n){var r=DQ(t.axis.grid.getRect(),t,{labelInside:!1});r.labelMargin=n.get([`handle`,`margin`]);var i=r8(t.axis,e,r);return{x:i[0],y:i[1],rotation:r.rotation+(r.labelDirection<0?Math.PI:0)}},t.prototype.updateHandleTransform=function(e,t,n,r){var i=n.axis,a=i.grid,o=i.getGlobalExtent(!0),s=PUe(a,i).getOtherAxis(i).getGlobalExtent(),c=i.dim===`x`?0:1,l=[e.x,e.y];l[c]+=t[c],l[c]=cF(o[1],l[c]),l[c]=lF(o[0],l[c]);var u=(s[1]+s[0])/2,d=[u,u];return d[c]=l[c],{x:l[0],y:l[1],rotation:e.rotation,cursorPoint:d,tooltipOption:[{verticalAlign:`middle`},{align:`center`}][c]}},t}(e8);function PUe(e,t){var n={};return n[t.dim+`AxisIndex`]=t.index,e.getCartesian(n)}var FUe={line:function(e,t,n,r){return{type:`Line`,subPixelOptimize:!0,shape:i8([t,r[0]],[t,r[1]],IUe(e))}},shadow:function(e,t,n,r,i,a){var o=a8(e,i,a),s=r[1]-r[0],c=o8(t,n,o),l=c[0],u=c[1];return{type:`Rect`,shape:jUe([l,r[0]],[u-l,s],IUe(e))}}};function IUe(e){return e.dim===`x`?0:1}var LUe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`axisPointer`,t.defaultOption={show:`auto`,z:50,type:`line`,snap:!1,triggerTooltip:!0,triggerEmphasis:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:$.color.border,width:1,type:`dashed`},shadowStyle:{color:$.color.shadowTint},label:{show:!0,formatter:null,precision:`auto`,margin:3,color:$.color.neutral00,padding:[5,7,5,7],backgroundColor:$.color.accent60,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:$.color.accent40,throttle:40}},t}(sH),s8=eI(),RUe=Q;function zUe(e,t,n){if(!Rk.node){var r=t.getZr();s8(r).records||(s8(r).records={}),BUe(r,t);var i=s8(r).records[e]||(s8(r).records[e]={});i.handler=n}}function BUe(e,t){if(s8(e).initialized)return;s8(e).initialized=!0,n(`click`,pA(c8,`click`)),n(`mousemove`,pA(c8,`mousemove`)),n(`mousewheel`,pA(c8,`mousewheel`)),n(`globalout`,HUe);function n(n,r){e.on(n,function(n){var i=UUe(t);RUe(s8(e).records,function(e){e&&r(e,n,i.dispatchAction)}),VUe(i.pendings,t)})}}function VUe(e,t){var n=e.showTip.length,r=e.hideTip.length,i;n?i=e.showTip[n-1]:r&&(i=e.hideTip[r-1]),i&&(i.dispatchAction=null,t.dispatchAction(i))}function HUe(e,t,n){e.handler(`leave`,null,n)}function c8(e,t,n,r){t.handler(e,n,r)}function UUe(e){var t={showTip:[],hideTip:[]},n=function(r){var i=t[r.type];i?i.push(r):(r.dispatchAction=n,e.dispatchAction(r))};return{dispatchAction:n,pendings:t}}function l8(e,t){if(!Rk.node){var n=t.getZr();(s8(n).records||{})[e]&&(s8(n).records[e]=null)}}var WUe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r=t.getComponent(`tooltip`),i=e.get(`triggerOn`)||r&&r.get(`triggerOn`)||`mousemove|click|mousewheel`;zUe(`axisPointer`,n,function(e,t,n){i!==`none`&&(e===`leave`||i.indexOf(e)>=0)&&n({type:`updateAxisPointer`,currTrigger:e,x:t&&t.offsetX,y:t&&t.offsetY})})},t.prototype.remove=function(e,t){l8(`axisPointer`,t)},t.prototype.dispose=function(e,t){l8(`axisPointer`,t)},t.type=`axisPointer`,t}(dW);function GUe(e,t){var n=[],r=e.seriesIndex,i;if(r==null||!(i=t.getSeriesByIndex(r)))return{point:[]};var a=i.getData(),o=$F(a,e);if(o==null||o<0||mA(o))return{point:[]};var s=a.getItemGraphicEl(o),c=i.coordinateSystem;if(i.getTooltipPosition)n=i.getTooltipPosition(o)||[];else if(c&&c.dataToPoint)if(e.isStacked){var l=c.getBaseAxis(),u=c.getOtherAxis(l).dim,d=l.dim,f=+(u===`x`||u===`radius`),p=a.mapDimension(d),m=[];m[f]=a.get(p,o),m[1-f]=a.get(a.getCalculationInfo(`stackResultDimension`),o),n=c.dataToPoint(m)||[]}else n=c.dataToPoint(a.getValues(sA(c.dimensions,function(e){return a.mapDimension(e)}),o))||[];else if(s){var h=s.getBoundingRect().clone();h.applyTransform(s.transform),n=[h.x+h.width/2,h.y+h.height/2]}return{point:n,el:s}}var KUe=eI();function qUe(e,t,n){var r=e.currTrigger,i=[e.x,e.y],a=e,o=e.dispatchAction||fA(n.dispatchAction,n),s=t.getComponent(`axisPointer`).coordSysAxesInfo;if(s){u8(i)&&(i=GUe({seriesIndex:a.seriesIndex,dataIndex:a.dataIndex},t).point);var c=u8(i),l=a.axesInfo,u=s.axesInfo,d=r===`leave`||u8(i),f={},p={},m={list:[],map:{}},h={showPointer:pA(XUe,p),showTooltip:pA(ZUe,m)};Q(s.coordSysMap,function(e,t){var n=c||e.containPoint(i);Q(s.coordSysAxesInfo[t],function(e,t){var r=e.axis,a=tWe(l,e);if(!d&&n&&(!l||a)){var o=a&&a.value;o==null&&!c&&(o=r.pointToData(i)),o!=null&&JUe(e,o,h,!1,f)}})});var g={};return Q(u,function(e,t){var n=e.linkGroup;n&&!p[t]&&Q(n.axesInfo,function(t,r){var i=p[r];if(t!==e&&i){var a=i.value;n.mapper&&(a=e.axis.scale.parse(n.mapper(a,nWe(t),nWe(e)))),g[e.key]=a}})}),Q(g,function(e,t){JUe(u[t],e,h,!0,f)}),QUe(p,u,f),$Ue(m,i,e,o),eWe(u,o,n),f}}function JUe(e,t,n,r,i){var a=e.axis;if(!(a.scale.isBlank()||!a.containData(t))){if(!e.involveSeries){n.showPointer(e,t);return}var o=YUe(t,e),s=o.payloadBatch,c=o.snapToValue;s[0]&&i.seriesIndex==null&&Z(i,s[0]),!r&&e.snap&&a.containData(c)&&c!=null&&(t=c),n.showPointer(e,t,s),n.showTooltip(e,o,c)}}function YUe(e,t){var n=t.axis,r=n.dim,i=e,a=[],o=Number.MAX_VALUE,s=-1;return Q(t.seriesModels,function(t,c){var l=t.getData().mapDimensionsAll(r),u,d;if(t.getAxisTooltipData){var f=t.getAxisTooltipData(l,e,n);d=f.dataIndices,u=f.nestestValue}else{if(d=t.indicesOfNearest(r,l[0],e,n.type===`category`?.5:null),!d.length)return;u=t.getData().get(l[0],d[0])}if(UF(u)){var p=e-u,m=Math.abs(p);m<=o&&((m=0&&s<0)&&(o=m,s=p,i=u,a.length=0),Q(d,function(e){a.push({seriesIndex:t.seriesIndex,dataIndexInside:e,dataIndex:t.getData().getRawIndex(e)})}))}}),{payloadBatch:a,snapToValue:i}}function XUe(e,t,n,r){e[t.key]={value:n,payloadBatch:r}}function ZUe(e,t,n,r){var i=n.payloadBatch,a=t.axis,o=a.model,s=t.axisPointerModel;if(!(!t.triggerTooltip||!i.length)){var c=t.coordSys.model,l=K$(c),u=e.map[l];u||(u=e.map[l]={coordSysId:c.id,coordSysIndex:c.componentIndex,coordSysType:c.type,coordSysMainType:c.mainType,dataByAxis:[]},e.list.push(u)),u.dataByAxis.push({axisDim:a.dim,axisIndex:o.componentIndex,axisType:o.type,axisId:o.id,value:r,valueLabelOpt:{precision:s.get([`label`,`precision`]),formatter:s.get([`label`,`formatter`])},seriesDataIndices:i.slice()})}}function QUe(e,t,n){var r=n.axesInfo=[];Q(t,function(t,n){var i=t.axisPointerModel.option,a=e[n];a?(!t.useHandle&&(i.status=`show`),i.value=a.value,i.seriesDataIndices=(a.payloadBatch||[]).slice()):!t.useHandle&&(i.status=`hide`),i.status===`show`&&r.push({axisDim:t.axis.dim,axisIndex:t.axis.model.componentIndex,value:i.value})})}function $Ue(e,t,n,r){if(u8(t)||!e.list.length){r({type:`hideTip`});return}var i=((e.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};r({type:`showTip`,escapeConnect:!0,x:t[0],y:t[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:i.dataIndexInside,dataIndex:i.dataIndex,seriesIndex:i.seriesIndex,dataByCoordSys:e.list})}function eWe(e,t,n){var r=n.getZr(),i=`axisPointerLastHighlights`,a=KUe(r)[i]||{},o=KUe(r)[i]={};Q(e,function(e,t){var n=e.axisPointerModel.option;n.status===`show`&&e.triggerEmphasis&&Q(n.seriesDataIndices,function(e){o[e.seriesIndex+`|`+e.dataIndex]=e})});var s=[],c=[];function l(e){return{seriesIndex:e.seriesIndex,dataIndex:e.dataIndex}}Q(a,function(e,t){!o[t]&&c.push(l(e))}),Q(o,function(e,t){!a[t]&&s.push(l(e))}),c.length&&n.dispatchAction({type:`downplay`,escapeConnect:!0,notBlur:!0,batch:c}),s.length&&n.dispatchAction({type:`highlight`,escapeConnect:!0,notBlur:!0,batch:s})}function tWe(e,t){for(var n=0;n<(e||[]).length;n++){var r=e[n];if(t.axis.dim===r.axisDim&&t.axis.model.componentIndex===r.axisIndex)return r}}function nWe(e){var t=e.axis.model,n={},r=n.axisDim=e.axis.dim;return n.axisIndex=n[r+`AxisIndex`]=t.componentIndex,n.axisName=n[r+`AxisName`]=t.name,n.axisId=n[r+`AxisId`]=t.id,n}function u8(e){return!e||e[0]==null||isNaN(e[0])||e[1]==null||isNaN(e[1])}function d8(e){J$.registerAxisPointerClass(`CartesianAxisPointer`,NUe),e.registerComponentModel(LUe),e.registerComponentView(WUe),e.registerPreprocessor(function(e){if(e){(!e.axisPointer||e.axisPointer.length===0)&&(e.axisPointer={});var t=e.axisPointer.link;t&&!mA(t)&&(e.axisPointer.link=[t])}}),e.registerProcessor(e.PRIORITY.PROCESSOR.STATISTIC,{overallReset:function(e,t){e.getComponent(`axisPointer`).coordSysAxesInfo=nFe(e,t)}}),e.registerAction({type:`updateAxisPointer`,event:`updateAxisPointer`,update:`:updateAxisPointer`},qUe)}function rWe(e){$K(t1),$K(d8)}var iWe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.makeElOption=function(e,t,n,r,i){var a=n.axis;a.dim===`angle`&&(this.animationThreshold=Math.PI/18);var o=a.polar,s=a.getExtent(),c=o.getOtherAxis(a).getExtent(),l=a.dataToCoord(t),u=r.get(`type`);if(u&&u!==`none`){var d=n8(r),f=oWe[u](a,o,l,s,c,r.get(`seriesDataIndices`),r.ecModel);f.style=d,e.graphicKey=f.type,e.pointer=f}DUe(e,n,r,i,aWe(t,n,r,o,r.get([`label`,`margin`])))},t}(e8);function aWe(e,t,n,r,i){var a=t.axis,o=a.dataToCoord(e),s=r.getAngleAxis().getExtent()[0];s=s/180*Math.PI;var c=r.getRadiusAxis().getExtent(),l,u,d;if(a.dim===`radius`){var f=Mj();Lj(f,f,s),Ij(f,f,[r.cx,r.cy]),l=Uz([o,-i],f);var p=t.getModel(`axisLabel`).get(`rotate`)||0,m=vQ.innerTextLayout(s,p*Math.PI/180,-1);u=m.textAlign,d=m.textVerticalAlign}else{var h=c[1];l=r.coordToPoint([h+i,o]);var g=r.cx,_=r.cy;u=Math.abs(l[0]-g)/h<.3?`center`:l[0]>g?`left`:`right`,d=Math.abs(l[1]-_)/h<.3?`middle`:l[1]>_?`top`:`bottom`}return{position:l,align:u,verticalAlign:d}}var oWe={line:function(e,t,n,r,i){return e.dim===`angle`?{type:`Line`,shape:i8(t.coordToPoint([i[0],n]),t.coordToPoint([i[1],n]))}:{type:`Circle`,shape:{cx:t.cx,cy:t.cy,r:n}}},shadow:function(e,t,n,r,i,a,o){var s=Math.PI/180,c=a8(e,a,o),l;if(e.dim===`angle`)l=MUe(t.cx,t.cy,i[0],i[1],(-n-c/2)*s,(-n+c/2)*s);else{var u=o8(n,r,c),d=u[0],f=u[1];l=MUe(t.cx,t.cy,d,f,0,Math.PI*2)}return{type:`Sector`,shape:l}}},f8=`polar`,sWe=f8,cWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.findAxisModel=function(e){var t;return this.ecModel.eachComponent(e,function(e){e.getCoordSysModel()===this&&(t=e)},this),t},t.type=f8,t.dependencies=[`radiusAxis`,`angleAxis`],t.defaultOption={z:0,center:[`50%`,`50%`],radius:`80%`},t}(sH),p8=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.getCoordSysModel=function(){return this.getReferringComponents(`polar`,rI).models[0]},t.type=`polarAxis`,t}(sH);aA(p8,SJ);var lWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`angleAxis`,t}(p8),uWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`radiusAxis`,t}(p8),m8=function(e){X(t,e);function t(t,n){return e.call(this,`radius`,t,n)||this}return t.prototype.pointToData=function(e,t){return this.polar.pointToData(e,t)[this.dim===`radius`?0:1]},t}(yY);m8.prototype.dataToRadius=yY.prototype.dataToCoord,m8.prototype.radiusToData=yY.prototype.coordToData;var dWe=eI(),h8=function(e){X(t,e);function t(t,n){return e.call(this,`angle`,t,n||[0,360])||this}return t.prototype.pointToData=function(e,t){return this.polar.pointToData(e,t)[this.dim===`radius`?0:1]},t.prototype.calculateCategoryInterval=function(){var e=this,t=e.getLabelModel(),n=e.scale,r=n.getExtent(),i=n.count();if(r[1]-r[0]<1)return 0;var a=r[0],o=e.dataToCoord(a+1)-e.dataToCoord(a),s=Math.abs(o),c=IP(a==null?``:a+``,t.getFont(),`center`,`top`),l=Math.max(c.height,7)/s;isNaN(l)&&(l=1/0);var u=Math.max(0,Math.floor(l)),d=dWe(e.model),f=d.lastAutoInterval,p=d.lastTickCount;return f!=null&&p!=null&&Math.abs(f-u)<=1&&Math.abs(p-i)<=1&&f>u?u=f:(d.lastTickCount=i,d.lastAutoInterval=u),u},t}(yY);h8.prototype.dataToAngle=yY.prototype.dataToCoord,h8.prototype.angleToData=yY.prototype.coordToData;var fWe=[`radius`,`angle`],pWe=function(){function e(e){this.dimensions=fWe,this.type=f8,this.cx=0,this.cy=0,this._radiusAxis=new m8,this._angleAxis=new h8,this.axisPointerEnabled=!0,this.name=e||``,this._radiusAxis.polar=this._angleAxis.polar=this}return e.prototype.containPoint=function(e){var t=this.pointToCoord(e);return this._radiusAxis.contain(t[0])&&this._angleAxis.contain(t[1])},e.prototype.containData=function(e){return this._radiusAxis.containData(e[0])&&this._angleAxis.containData(e[1])},e.prototype.getAxis=function(e){var t=`_`+e+`Axis`;return this[t]},e.prototype.getAxes=function(){return[this._radiusAxis,this._angleAxis]},e.prototype.getAxesByScale=function(e){var t=[],n=this._angleAxis,r=this._radiusAxis;return n.scale.type===e&&t.push(n),r.scale.type===e&&t.push(r),t},e.prototype.getAngleAxis=function(){return this._angleAxis},e.prototype.getRadiusAxis=function(){return this._radiusAxis},e.prototype.getOtherAxis=function(e){var t=this._angleAxis;return e===t?this._radiusAxis:t},e.prototype.getBaseAxis=function(){return this.getAxesByScale(`ordinal`)[0]||this.getAxesByScale(`time`)[0]||this.getAngleAxis()},e.prototype.getTooltipAxes=function(e){var t=e!=null&&e!==`auto`?this.getAxis(e):this.getBaseAxis();return{baseAxes:[t],otherAxes:[this.getOtherAxis(t)]}},e.prototype.dataToPoint=function(e,t,n){return this.coordToPoint([this._radiusAxis.dataToRadius(e[0],t),this._angleAxis.dataToAngle(e[1],t)],n)},e.prototype.pointToData=function(e,t,n){n||=[];var r=this.pointToCoord(e);return n[0]=this._radiusAxis.radiusToData(r[0],t),n[1]=this._angleAxis.angleToData(r[1],t),n},e.prototype.pointToCoord=function(e){var t=e[0]-this.cx,n=e[1]-this.cy,r=this.getAngleAxis(),i=r.getExtent(),a=Math.min(i[0],i[1]),o=Math.max(i[0],i[1]);r.inverse?a=o-360:o=a+360;var s=Math.sqrt(t*t+n*n);t/=s,n/=s;for(var c=Math.atan2(-n,t)/Math.PI*180,l=co;)c+=l*360;return[s,c]},e.prototype.coordToPoint=function(e,t){t||=[];var n=e[0],r=e[1]/180*Math.PI;return t[0]=Math.cos(r)*n+this.cx,t[1]=-Math.sin(r)*n+this.cy,t},e.prototype.getArea=function(){var e=this.getAngleAxis(),t=this.getRadiusAxis().getExtent().slice();t[0]>t[1]&&t.reverse();var n=e.getExtent(),r=Math.PI/180,i=1e-4;return{cx:this.cx,cy:this.cy,r0:t[0],r:t[1],startAngle:-n[0]*r,endAngle:-n[1]*r,clockwise:e.inverse,contain:function(e,t){var n=e-this.cx,r=t-this.cy,a=n*n+r*r,o=this.r,s=this.r0;return o!==s&&a-i<=o*o&&a+i>=s*s},x:this.cx-t[1],y:this.cy-t[1],width:t[1]*2,height:t[1]*2}},e.prototype.convertToPixel=function(e,t,n){return mWe(t)===this?this.dataToPoint(n):null},e.prototype.convertFromPixel=function(e,t,n){return mWe(t)===this?this.pointToData(n):null},e}();function mWe(e){var t=e.seriesModel,n=e.polarModel;return n&&n.coordinateSystem||t&&t.coordinateSystem}function hWe(e,t,n){var r=t.get(`center`),i=tH(t,n).refContainer;e.cx=yF(r[0],i.width)+i.x,e.cy=yF(r[1],i.height)+i.y;var a=e.getRadiusAxis(),o=Math.min(i.width,i.height)/2,s=t.get(`radius`);s==null?s=[0,`100%`]:mA(s)||(s=[0,s]);var c=[yF(s[0],o),yF(s[1],o)];a.inverse?a.setExtent(c[1],c[0]):a.setExtent(c[0],c[1])}function gWe(e,t){var n=this,r=n.getAngleAxis(),i=n.getRadiusAxis();if(VJ(r,1),VJ(i,1),qJ(r),qJ(i),r.type===`category`&&!r.onBand){var a=r.getExtent(),o=360/r.scale.count();r.inverse?a[1]+=o:a[1]-=o,r.setExtent(a[0],a[1])}}function _We(e){return e.mainType===`angleAxis`}function vWe(e,t){if(e.type=dJ(t),e.scale=fJ(t,e.type,!1),e.onBand=xJ(e.scale,t),e.inverse=t.get(`inverse`),_We(t)){e.inverse=e.inverse!==t.get(`clockwise`);var n=t.get(`startAngle`),r=t.get(`endAngle`)??n+(e.inverse?-360:360);e.setExtent(n,r)}t.axis=e,e.model=t}var yWe={dimensions:fWe,create:function(e,t){var n=[];return e.eachComponent(sWe,function(e,r){var i=new pWe(r+``);i.update=gWe;var a=i.getRadiusAxis(),o=i.getAngleAxis(),s=e.findAxisModel(`radiusAxis`),c=e.findAxisModel(`angleAxis`);vWe(a,s),vWe(o,c),hWe(i,e,t),n.push(i),e.coordinateSystem=i,i.model=e}),e.eachSeries(function(e){if(e.get(`coordinateSystem`)===`polar`){var t=e.coordinateSystem=e.getReferringComponents(sWe,rI).models[0].coordinateSystem;t&&(MJ(t.getRadiusAxis(),e,f8),MJ(t.getAngleAxis(),e,f8))}}),n}},bWe=[`axisLine`,`axisLabel`,`axisTick`,`minorTick`,`splitLine`,`minorSplitLine`,`splitArea`];function g8(e,t,n){t[1]>t[0]&&(t=t.slice().reverse());var r=e.coordToPoint([t[0],n]),i=e.coordToPoint([t[1],n]);return{x1:r[0],y1:r[1],x2:i[0],y2:i[1]}}function _8(e){return+!e.getRadiusAxis().inverse}function xWe(e){var t=e[0],n=e[e.length-1];t&&n&&Math.abs(Math.abs(t.coord-n.coord)-360)<1e-4&&e.pop()}var SWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.axisPointerClass=`PolarAxisPointer`,n}return t.prototype.render=function(e,t){if(this.group.removeAll(),e.get(`show`)){var n=e.axis,r=n.polar,i=r.getRadiusAxis().getExtent(),a=n.getTicksCoords({breakTicks:`none`}),o=n.getMinorTicksCoords(),s=[];Q(n.getViewLabels(),function(e){if(!e.tick.offInterval){e=Qk(e);var t=n.scale;e.coord=n.dataToCoord(bJ(t,e.tick)),s.push(e)}}),xWe(s),xWe(a),Q(bWe,function(t){e.get([t,`show`])&&(!n.scale.isBlank()||t===`axisLine`)&&CWe[t](this.group,e,r,a,o,i,s)},this)}},t.type=`angleAxis`,t}(J$),CWe={axisLine:function(e,t,n,r,i,a){var o=t.getModel([`axisLine`,`lineStyle`]),s=n.getAngleAxis(),c=Math.PI/180,l=s.getExtent(),u=_8(n),d=+!u,f,p=Math.abs(l[1]-l[0])===360?`Circle`:`Arc`;f=a[d]===0?new Dz[p]({shape:{cx:n.cx,cy:n.cy,r:a[u],startAngle:-l[0]*c,endAngle:-l[1]*c,clockwise:s.inverse},style:o.getLineStyle(),z2:1,silent:!0}):new YR({shape:{cx:n.cx,cy:n.cy,r:a[u],r0:a[d]},style:o.getLineStyle(),z2:1,silent:!0}),f.style.fill=null,e.add(f)},axisTick:function(e,t,n,r,i,a){var o=t.getModel(`axisTick`),s=(o.get(`inside`)?-1:1)*o.get(`length`),c=a[_8(n)],l=sA(r,function(e){return new $R({shape:g8(n,[c,c+s],e.coord)})});e.add(Rz(l,{style:nA(o.getModel(`lineStyle`).getLineStyle(),{stroke:t.get([`axisLine`,`lineStyle`,`color`])})}))},minorTick:function(e,t,n,r,i,a){if(i.length){for(var o=t.getModel(`axisTick`),s=t.getModel(`minorTick`),c=(o.get(`inside`)?-1:1)*s.get(`length`),l=a[_8(n)],u=[],d=0;dm?`left`:`right`,_=Math.abs(p[1]-h)/f<.3?`middle`:p[1]>h?`top`:`bottom`;if(s&&s[d]){var v=s[d];yA(v)&&v.textStyle&&(o=new LB(v.textStyle,c,c.ecModel))}var y=new kL({silent:vQ.isLabelSilent(t),style:SB(o,{x:p[0],y:p[1],fill:o.getTextColor()||t.get([`axisLine`,`lineStyle`,`color`]),text:r.formattedLabel,align:g,verticalAlign:_})});if(e.add(y),nB({el:y,componentModel:t,itemName:r.formattedLabel,formatterParamsExtra:{isTruncated:function(){return y.isTruncated},value:r.rawLabel,tickIndex:i}}),u){var b=vQ.makeAxisEventDataBase(t);b.targetType=`axisLabel`,b.value=r.rawLabel,jL(y).eventData=b}},this)},splitLine:function(e,t,n,r,i,a){var o=t.getModel(`splitLine`).getModel(`lineStyle`),s=o.get(`color`),c=0;s=s instanceof Array?s:[s];for(var l=[],u=0;u=0?`p`:`n`,T=y;_&&(r[a][C]||(r[a][C]={p:y,n:y}),T=r[a][C][w]);var E=void 0,D=void 0,O=void 0,k=void 0;if(u.dim===`radius`){var A=u.dataToCoord(S)-y,j=e.dataToCoord(C);uF(A)=k})}}function NWe(e,t){var n=jQ(t,f8),r=_Y(e,{fromStat:{key:n},min:1}).w,i=r,a=0,o=`20%`,s=`30%`,c={};DJ(e,n,function(e){var t=kWe(e);c[t]||a++,c[t]=c[t]||{width:0,maxWidth:0};var n=yF(e.get(`barWidth`),r),l=yF(e.get(`barMaxWidth`),r),u=e.get(`barGap`),d=e.get(`barCategoryGap`);n&&!c[t].width&&(n=cF(i,n),c[t].width=n,i-=n),l&&(c[t].maxWidth=l),u!=null&&(s=u),d!=null&&(o=d)});var l={},u=yF(o,r),d=yF(s,1),f=(i-u)/(a+(a-1)*d);f=lF(f,0),Q(c,function(e,t){var n=e.maxWidth;n&&n=t.y&&e[1]<=t.y+t.height:n.contain(n.toLocalCoord(e[1]))&&e[0]>=t.y&&e[0]<=t.y+t.height},e.prototype.pointToData=function(e,t,n){n||=[];var r=this.getAxis();return n[0]=r.coordToData(r.toLocalCoord(e[r.orient===`horizontal`?0:1])),n},e.prototype.dataToPoint=function(e,t,n){var r=this.getAxis(),i=this.getRect();n||=[];var a=r.orient===`horizontal`?0:1;return e instanceof Array&&(e=e[0]),n[a]=r.toGlobalCoord(r.dataToCoord(+e)),n[1-a]=a===0?i.y+i.height/2:i.x+i.width/2,n},e.prototype.convertToPixel=function(e,t,n){return GWe(t)===this?this.dataToPoint(n):null},e.prototype.convertFromPixel=function(e,t,n){return GWe(t)===this?this.pointToData(n):null},e}();function GWe(e){var t=e.seriesModel,n=e.singleAxisModel;return n&&n.coordinateSystem||t&&t.coordinateSystem}function KWe(e,t){var n=[];return e.eachComponent(r1,function(r,i){var a=new WWe(r,e,t);a.name=`single_`+i,a.resize(r,t),r.coordinateSystem=a,n.push(a)}),e.eachSeries(function(e){if(e.get(`coordinateSystem`)===`singleAxis`){var t=e.getReferringComponents(r1,rI).models[0],n=e.coordinateSystem=t&&t.coordinateSystem;n&&MJ(n.getAxis(),e,n1)}}),n}var qWe={create:KWe,dimensions:UWe},JWe=[`x`,`y`],YWe=[`width`,`height`],XWe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.makeElOption=function(e,t,n,r,i){var a=n.axis,o=a.coordinateSystem,s=y8(a),c=b8(o,s),l=b8(o,1-s),u=o.dataToPoint(t)[0],d=r.get(`type`);if(d&&d!==`none`){var f=n8(r),p=ZWe[d](a,u,c,l,r.get(`seriesDataIndices`),r.ecModel);p.style=f,e.graphicKey=p.type,e.pointer=p}AUe(t,e,v8(n),n,r,i)},t.prototype.getHandleTransform=function(e,t,n){var r=v8(t,{labelInside:!1});r.labelMargin=n.get([`handle`,`margin`]);var i=r8(t.axis,e,r);return{x:i[0],y:i[1],rotation:r.rotation+(r.labelDirection<0?Math.PI:0)}},t.prototype.updateHandleTransform=function(e,t,n,r){var i=n.axis,a=i.coordinateSystem,o=y8(i),s=b8(a,o),c=[e.x,e.y];c[o]+=t[o],c[o]=Math.min(s[1],c[o]),c[o]=Math.max(s[0],c[o]);var l=b8(a,1-o),u=(l[1]+l[0])/2,d=[u,u];return d[o]=c[o],{x:c[0],y:c[1],rotation:e.rotation,cursorPoint:d,tooltipOption:{verticalAlign:`middle`}}},t}(e8),ZWe={line:function(e,t,n,r){return{type:`Line`,subPixelOptimize:!0,shape:i8([t,r[0]],[t,r[1]],y8(e))}},shadow:function(e,t,n,r,i,a){var o=a8(e,i,a),s=r[1]-r[0],c=o8(t,n,o),l=c[0],u=c[1];return{type:`Rect`,shape:jUe([l,r[0]],[u-l,s],y8(e))}}};function y8(e){return+!e.isHorizontal()}function b8(e,t){var n=e.getRect();return[n[JWe[t]],n[JWe[t]]+n[YWe[t]]]}var QWe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`single`,t}(dW);function $We(e){$K(d8),J$.registerAxisPointerClass(`SingleAxisPointer`,XWe),e.registerComponentView(QWe),e.registerComponentView(BWe),e.registerComponentModel(i1),k$(e,`single`,i1,i1.defaultOption),e.registerCoordinateSystem(`single`,qWe)}var eGe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t,n,r){var i=aH(t);e.prototype.init.apply(this,arguments),tGe(t,i)},t.prototype.mergeOption=function(t){e.prototype.mergeOption.apply(this,arguments),tGe(this.option,t)},t.prototype.getCellSize=function(){return this.option.cellSize},t.type=`calendar`,t.layoutMode=`box`,t.defaultOption={z:2,left:80,top:60,cellSize:20,orient:`horizontal`,splitLine:{show:!0,lineStyle:{color:$.color.axisLine,width:1,type:`solid`}},itemStyle:{color:$.color.neutral00,borderWidth:1,borderColor:$.color.neutral10},dayLabel:{show:!0,firstDay:0,position:`start`,margin:$.size.s,color:$.color.secondary},monthLabel:{show:!0,position:`start`,margin:$.size.s,align:`center`,formatter:null,color:$.color.secondary},yearLabel:{show:!0,position:null,margin:$.size.xl,formatter:null,color:$.color.quaternary,fontFamily:`sans-serif`,fontWeight:`bolder`,fontSize:20}},t}(sH);function tGe(e,t){var n=e.cellSize,r=mA(n)?n:e.cellSize=[n,n];r.length===1&&(r[1]=r[0]),iH(e,t,{type:`box`,ignoreSize:sA([0,1],function(e){return jDe(t,e)&&(r[e]=`auto`),r[e]!=null&&r[e]!==`auto`})})}var nGe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){var r=this.group;r.removeAll();var i=e.coordinateSystem,a=i.getRangeInfo(),o=i.getOrient(),s=t.getLocaleModel();this._renderDayRect(e,a,r),this._renderLines(e,a,o,r),this._renderYearText(e,a,o,r),this._renderMonthText(e,s,o,r),this._renderWeekText(e,s,a,o,r)},t.prototype._renderDayRect=function(e,t,n){for(var r=e.coordinateSystem,i=e.getModel(`itemStyle`).getItemStyle(),a=r.getCellWidth(),o=r.getCellHeight(),s=t.start.time;s<=t.end.time;s=r.getNextNDay(s,1).time){var c=r.dataToCalendarLayout([s],!1).tl,l=new DL({shape:{x:c[0],y:c[1],width:a,height:o},cursor:`default`,style:i});n.add(l)}},t.prototype._renderLines=function(e,t,n,r){var i=this,a=e.coordinateSystem,o=e.getModel([`splitLine`,`lineStyle`]).getLineStyle(),s=e.get([`splitLine`,`show`]),c=o.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var l=t.start,u=0;l.time<=t.end.time;u++){f(l.formatedDate),u===0&&(l=a.getDateInfo(t.start.y+`-`+t.start.m));var d=l.date;d.setMonth(d.getMonth()+1),l=a.getDateInfo(d)}f(a.getNextNDay(t.end.time,1).formatedDate);function f(t){i._firstDayOfMonth.push(a.getDateInfo(t)),i._firstDayPoints.push(a.dataToCalendarLayout([t],!1).tl);var c=i._getLinePointsOfOneWeek(e,t,n);i._tlpoints.push(c[0]),i._blpoints.push(c[c.length-1]),s&&i._drawSplitline(c,o,r)}s&&this._drawSplitline(i._getEdgesPoints(i._tlpoints,c,n),o,r),s&&this._drawSplitline(i._getEdgesPoints(i._blpoints,c,n),o,r)},t.prototype._getEdgesPoints=function(e,t,n){var r=[e[0].slice(),e[e.length-1].slice()],i=n===`horizontal`?0:1;return r[0][i]=r[0][i]-t/2,r[1][i]=r[1][i]+t/2,r},t.prototype._drawSplitline=function(e,t,n){var r=new QR({z2:20,shape:{points:e},style:t});n.add(r)},t.prototype._getLinePointsOfOneWeek=function(e,t,n){for(var r=e.coordinateSystem,i=r.getDateInfo(t),a=[],o=0;o<7;o++){var s=r.getNextNDay(i.time,o),c=r.dataToCalendarLayout([s.time],!1);a[2*s.day]=c.tl,a[2*s.day+1]=c[n===`horizontal`?`bl`:`tr`]}return a},t.prototype._formatterLabel=function(e,t){return gA(e)&&e?NV(e,t):hA(e)?e(t):t.nameMap},t.prototype._yearTextPositionControl=function(e,t,n,r,i){var a=t[0],o=t[1],s=[`center`,`bottom`];r===`bottom`?(o+=i,s=[`center`,`top`]):r===`left`?a-=i:r===`right`?(a+=i,s=[`center`,`top`]):o-=i;var c=0;return(r===`left`||r===`right`)&&(c=Math.PI/2),{rotation:c,x:a,y:o,style:{align:s[0],verticalAlign:s[1]}}},t.prototype._renderYearText=function(e,t,n,r){var i=e.getModel(`yearLabel`);if(i.get(`show`)){var a=i.get(`margin`),o=i.get(`position`);o||=n===`horizontal`?`left`:`top`;var s=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],c=(s[0][0]+s[1][0])/2,l=(s[0][1]+s[1][1])/2,u=n===`horizontal`?0:1,d={top:[c,s[u][1]],bottom:[c,s[1-u][1]],left:[s[1-u][0],l],right:[s[u][0],l]},f=t.start.y;+t.end.y>+t.start.y&&(f=f+`-`+t.end.y);var p=i.get(`formatter`),m={start:t.start.y,end:t.end.y,nameMap:f},h=new kL({z2:30,style:SB(i,{text:this._formatterLabel(p,m)}),silent:i.get(`silent`)});h.attr(this._yearTextPositionControl(h,d[o],n,o,a)),r.add(h)}},t.prototype._monthTextPositionControl=function(e,t,n,r,i){var a=`left`,o=`top`,s=e[0],c=e[1];return n===`horizontal`?(c+=i,t&&(a=`center`),r===`start`&&(o=`bottom`)):(s+=i,t&&(o=`middle`),r===`start`&&(a=`right`)),{x:s,y:c,align:a,verticalAlign:o}},t.prototype._renderMonthText=function(e,t,n,r){var i=e.getModel(`monthLabel`);if(i.get(`show`)){var a=i.get(`nameMap`),o=i.get(`margin`),s=i.get(`position`),c=i.get(`align`),l=[this._tlpoints,this._blpoints];(!a||gA(a))&&(a&&(t=qB(a)||t),a=t.get([`time`,`monthAbbr`])||[]);var u=s===`start`?0:1,d=n===`horizontal`?0:1;o=s===`start`?-o:o;for(var f=c===`center`,p=i.get(`silent`),m=0;m=i.start.time&&r.timeo.end.time&&t.reverse(),t},e.prototype._getRangeInfo=function(e){var t=[this.getDateInfo(e[0]),this.getDateInfo(e[1])],n;t[0].time>t[1].time&&(n=!0,t.reverse());var r=Math.floor(t[1].time/x8)-Math.floor(t[0].time/x8)+1,i=new Date(t[0].time),a=i.getDate(),o=t[1].date.getDate();i.setDate(a+r-1);var s=i.getDate();if(s!==o)for(var c=i.getTime()-t[1].time>0?1:-1;(s=i.getDate())!==o&&(i.getTime()-t[1].time)*c>0;)r-=c,i.setDate(s-c);var l=Math.floor((r+t[0].day+6)/7),u=n?-l+1:l-1;return n&&t.reverse(),{range:[t[0].formatedDate,t[1].formatedDate],start:t[0],end:t[1],allDay:r,weeks:l,nthWeek:u,fweek:t[0].day,lweek:t[1].day}},e.prototype._getDateByWeeksAndDay=function(e,t,n){var r=this._getRangeInfo(n);if(e>r.weeks||e===0&&tr.lweek)return null;var i=(e-1)*7-r.fweek+t,a=new Date(r.start.time);return a.setDate(+r.start.d+i),this.getDateInfo(a)},e.create=function(t,n){var r=[];return t.eachComponent(`calendar`,function(i){var a=new e(i,t,n);r.push(a),i.coordinateSystem=a}),t.eachComponent(function(e,t){UV({targetModel:t,coordSysType:`calendar`,coordSysProvider:WV})}),r},e.dimensions=[`time`,`value`],e}();function S8(e){var t=e.calendarModel,n=e.seriesModel;return t?t.coordinateSystem:n?n.coordinateSystem:null}function iGe(e){e.registerComponentModel(eGe),e.registerComponentView(nGe),e.registerCoordinateSystem(`calendar`,rGe)}var C8={level:1,leaf:2,nonLeaf:3},w8={none:0,all:1,body:2,corner:3};function T8(e,t,n){var r=t[kz[n]].getCell(e);return!r&&vA(e)&&e<0&&(r=t[kz[1-n]].getUnitLayoutInfo(n,Math.round(e))),r}function aGe(e){var t=e||[];return t[0]=t[0]||[],t[1]=t[1]||[],t[0][0]=t[0][1]=t[1][0]=t[1][1]=NaN,t}function oGe(e,t,n,r,i){sGe(e[0],t,i,n,r,0),sGe(e[1],t,i,n,r,1)}function sGe(e,t,n,r,i,a){e[0]=1/0,e[1]=-1/0;var o=r[a],s=mA(o)?o:[o],c=s.length,l=!!n;if(c>=1?(cGe(e,t,s,l,i,a,0),c>1&&cGe(e,t,s,l,i,a,c-1)):e[0]=e[1]=NaN,l){var u=-i[kz[1-a]].getLocatorCount(a),d=i[kz[a]].getLocatorCount(a)-1;n===w8.body?u=lF(0,u):n===w8.corner&&(d=cF(-1,d)),d=t[0]&&e[0]<=t[1]}function pGe(e,t){e.id.set(t[0][0],t[1][0]),e.span.set(t[0][1]-e.id.x+1,t[1][1]-e.id.y+1)}function mGe(e,t){e[0][0]=t[0][0],e[0][1]=t[0][1],e[1][0]=t[1][0],e[1][1]=t[1][1]}function hGe(e,t,n,r){var i=T8(t[r][0],n,r),a=T8(t[r][1],n,r);e[kz[r]]=e[Az[r]]=NaN,i&&a&&(e[kz[r]]=i.xy,e[Az[r]]=a.xy+a.wh-i.xy)}function D8(e,t,n,r){return e[kz[t]]=n,e[kz[1-t]]=r,e}function gGe(e){return e&&(e.type===C8.leaf||e.type===C8.nonLeaf)?e:null}function O8(){return{x:NaN,y:NaN,width:NaN,height:NaN}}var _Ge=function(){function e(e,t){this._cells=[],this._levels=[],this.dim=e,this.dimIdx=e===`x`?0:1,this._model=t,this._uniqueValueGen=vGe(e);var n=t.get(`data`,!0),r=t.get(`length`,!0);if(n!=null&&!mA(n)&&(n=[]),n)this._initByDimModelData(n);else if(r!=null){n=Array(r);for(var i=0;i=1,y=n[kz[r]],b=a.getLocatorCount(r)-1,x=new sI;for(o.resetLayoutIterator(x,r);x.next();)S(x.item);for(a.resetLayoutIterator(x,r);x.next();)S(x.item);function S(e){EA(e.wh)&&(e.wh=_),e.xy=y,e.id[kz[r]]===b&&!v&&(e.wh=n[kz[r]]+n[Az[r]]-e.xy),y+=e.wh}}function IGe(e,t){for(var n=t[kz[e]].resetCellIterator();n.next();){var r=n.item;V8(r.rect,e,r.id,r.span,t),V8(r.rect,1-e,r.id,r.span,t),r.type===C8.nonLeaf&&(r.xy=r.rect[kz[e]],r.wh=r.rect[Az[e]])}}function LGe(e,t){e.travelExistingCells(function(e){var n=e.span;if(n){var r=e.spanRect,i=e.id;V8(r,0,i,n,t),V8(r,1,i,n,t)}})}function V8(e,t,n,r,i){e[Az[t]]=0;var a=n[kz[t]]<0?i[kz[1-t]]:i[kz[t]],o=a.getUnitLayoutInfo(t,n[kz[t]]);if(e[kz[t]]=o.xy,e[Az[t]]=o.wh,r[kz[t]]>1){var s=a.getUnitLayoutInfo(t,n[kz[t]]+r[kz[t]]-1);e[Az[t]]=s.xy+s.wh-o.xy}}function RGe(e,t,n){return H8(bF(e,n[Az[t]]),n[Az[t]])}function H8(e,t){return Math.max(Math.min(e,OA(t,1/0)),0)}function U8(e){var t=e.matrixModel,n=e.seriesModel;return t?t.coordinateSystem:n?n.coordinateSystem:null}var W8={inBody:1,inCorner:2,outside:3},G8={x:null,y:null,point:[]};function zGe(e,t,n,r,i){var a=n[kz[t]],o=n[kz[1-t]],s=a.getUnitLayoutInfo(t,a.getLocatorCount(t)-1),c=a.getUnitLayoutInfo(t,0),l=o.getUnitLayoutInfo(t,-o.getLocatorCount(t)),u=o.shouldShow()?o.getUnitLayoutInfo(t,-1):null,d=e.point[t]=r[t];if(!c&&!u){e[kz[t]]=W8.outside;return}if(i===w8.body){c?(e[kz[t]]=W8.inBody,d=cF(s.xy+s.wh,lF(c.xy,d)),e.point[t]=d):e[kz[t]]=W8.outside;return}else if(i===w8.corner){u?(e[kz[t]]=W8.inCorner,d=cF(u.xy+u.wh,lF(l.xy,d)),e.point[t]=d):e[kz[t]]=W8.outside;return}var f=c?c.xy:u?u.xy+u.wh:NaN,p=l?l.xy:f,m=s?s.xy+s.wh:f;if(dm){if(!i){e[kz[t]]=W8.outside;return}d=m}e.point[t]=d,e[kz[t]]=f<=d&&d<=m?W8.inBody:p<=d&&d<=f?W8.inCorner:W8.outside}function BGe(e,t,n,r){var i=1-n;if(e[kz[n]]!==W8.outside)for(r[kz[n]].resetCellIterator(B8);B8.next();){var a=B8.item;if(UGe(e.point[n],a.rect,n)&&UGe(e.point[i],a.rect,i)){t[n]=a.ordinal,t[i]=a.id[kz[i]];return}}}function VGe(e,t,n,r){if(e[kz[n]]!==W8.outside){for((e[kz[n]]===W8.inCorner?r[kz[1-n]]:r[kz[n]]).resetLayoutIterator(z8,n);z8.next();)if(HGe(e.point[n],z8.item)){t[n]=z8.item.id[kz[n]];return}}}function HGe(e,t){return t.xy<=e&&e<=t.xy+t.wh}function UGe(e,t,n){return t[kz[n]]<=e&&e<=t[kz[n]]+t[Az[n]]}function WGe(e){e.registerComponentModel(CGe),e.registerComponentView(kGe),e.registerCoordinateSystem(`matrix`,PGe)}function GGe(e,t){var n=e.existing;if(t.id=e.keyInfo.id,!t.type&&n&&(t.type=n.type),t.parentId==null){var r=t.parentOption;r?t.parentId=r.id:n&&(t.parentId=n.parentId)}t.parentOption=null}function KGe(e,t){var n;return Q(t,function(t){e[t]!=null&&e[t]!==`auto`&&(n=!0)}),n}function qGe(e,t,n){var r=Z({},n),i=e[t],a=n.$action||`merge`;a===`merge`?i?($k(i,r,!0),iH(i,r,{ignoreSize:!0}),oH(n,i),K8(n,i),K8(n,i,`shape`),K8(n,i,`style`),K8(n,i,`extra`),n.clipPath=i.clipPath):e[t]=r:a===`replace`?e[t]=r:a===`remove`&&i&&(e[t]=null)}var JGe=[`transition`,`enterFrom`,`leaveTo`],YGe=JGe.concat([`enterAnimation`,`updateAnimation`,`leaveAnimation`]);function K8(e,t,n){if(n&&(!e[n]&&t[n]&&(e[n]={}),e=e[n],t=t[n]),!(!e||!t))for(var r=n?JGe:YGe,i=0;i=0;c--){var l=n[c],u=XF(l.id,null),d=u==null?null:i.get(u);if(d){var f=d.parent,h=q8(f),g=f===r?{width:a,height:o}:{width:h.width,height:h.height},_={},v=nH(d,l,g,null,{hv:l.hv,boundingMode:l.bounding},_);if(!q8(d).isNew&&v){for(var y=l.transition,b={},x=0;x=0)?b[S]=C:d[S]=C}bz(d,b,e,0)}else d.attr(_)}}},t.prototype._clear=function(){var e=this,t=this._elMap;t.each(function(n){Y8(n,q8(n).option,t,e._lastGraphicModel)}),this._elMap=zA()},t.prototype.dispose=function(){this._clear()},t.type=`graphic`,t}(dW);function J8(e){var t=new(UA(QGe,e)?QGe[e]:Pz(e))({});return q8(t).type=e,t}function eKe(e,t,n,r){var i=J8(n);return t.add(i),r.set(e,i),q8(i).id=e,q8(i).isNew=!0,i}function Y8(e,t,n,r){e&&e.parent&&(e.type===`group`&&e.traverse(function(e){Y8(e,t,n,r)}),j6(e,t,r),n.removeKey(q8(e).id))}function tKe(e,t,n,r){e.isGroup||Q([[`cursor`,PI.prototype.cursor],[`zlevel`,r||0],[`z`,n||0],[`z2`,0]],function(n){var r=n[0];UA(t,r)?e[r]=OA(t[r],n[1]):e[r]??(e[r]=n[1])}),Q(dA(t),function(n){if(n.indexOf(`on`)===0){var r=t[n];e[n]=hA(r)?r:null}}),UA(t,`draggable`)&&(e.draggable=t.draggable),t.name!=null&&(e.name=t.name),t.id!=null&&(e.id=t.id)}function nKe(e){return e=Z({},e),Q([`id`,`parentId`,`$action`,`hv`,`bounding`,`textContent`,`clipPath`].concat(KV),function(t){delete e[t]}),e}function rKe(e,t,n){var r=jL(e).eventData;!e.silent&&!e.ignore&&!r&&(r=jL(e).eventData={componentType:`graphic`,componentIndex:t.componentIndex,name:e.name}),r&&(r.info=n.info)}function iKe(e){e.registerComponentModel(ZGe),e.registerComponentView($Ge),e.registerPreprocessor(function(e){var t=e.graphic;mA(t)?!t[0]||!t[0].elements?e.graphic=[{elements:t}]:e.graphic=[e.graphic[0]]:t&&!t.elements&&(e.graphic=[{elements:[t]}])})}var aKe=[`x`,`y`,`radius`,`angle`,`single`],oKe=eI(),sKe=[`cartesian2d`,`polar`,`singleAxis`];function cKe(e){return rA(sKe,e.get(`coordinateSystem`))>=0}function X8(e){return e+`Axis`}function lKe(e,t){var n=zA(),r=[],i=zA();e.eachComponent({mainType:`dataZoom`,query:t},function(e){i.get(e.uid)||s(e)});var a;do a=!1,e.eachComponent(`dataZoom`,o);while(a);function o(e){!i.get(e.uid)&&c(e)&&(s(e),a=!0)}function s(e){i.set(e.uid,!0),r.push(e),l(e)}function c(e){var t=!1;return e.eachTargetAxis(function(e,r){var i=n.get(e);i&&i[r]&&(t=!0)}),t}function l(e){e.eachTargetAxis(function(e,t){(n.get(e)||n.set(e,[]))[t]=!0})}return r}function uKe(e){var t=e.ecModel,n={infoList:[],infoMap:zA()};return e.eachTargetAxis(function(e,r){var i=t.getComponent(X8(e),r);if(i){var a=i.getCoordSysModel();if(a){var o=a.uid,s=n.infoMap.get(o);s||(s={model:a,axisModels:[]},n.infoList.push(s),n.infoMap.set(o,s)),s.axisModels.push(i)}}}),n}function dKe(e){var t=oKe(eG(e));return t.axisProxyMap||=zA()}function Z8(e){if(e)return dKe(e.ecModel).get(e.uid)}function fKe(e,t){dKe(e.ecModel).set(e.uid,t)}function pKe(e,t){var n=t.getAxisModel().axis.__alignTo;return n&&e.getAxisProxy(n.dim,n.model.componentIndex)?Z8(n.model):null}var Q8=function(){function e(){this.indexList=[],this.indexMap=[]}return e.prototype.add=function(e){this.indexMap[e]||(this.indexList.push(e),this.indexMap[e]=!0)},e}(),$8=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n._autoThrottle=!0,n._noTarget=!0,n._rangePropMode=[`percent`,`percent`],n}return t.prototype.init=function(e,t,n){var r=mKe(e);this.settledOption=r,this.mergeDefaultAndTheme(e,n),this._doInit(r)},t.prototype.mergeOption=function(e){var t=mKe(e);$k(this.option,e,!0),$k(this.settledOption,t,!0),this._doInit(t)},t.prototype._doInit=function(e){var t=this.option;this._setDefaultThrottle(e),this._updateRangeUse(e);var n=this.settledOption;Q([[`start`,`startValue`],[`end`,`endValue`]],function(e,r){this._rangePropMode[r]===`value`&&(t[e[0]]=n[e[0]]=null)},this),this._resetTarget()},t.prototype._resetTarget=function(){var e=this.get(`orient`,!0),t=this._targetAxisInfoMap=zA();this._fillSpecifiedTargetAxis(t)?this._orient=e||this._makeAutoOrientByTargetAxis():(this._orient=e||`horizontal`,this._fillAutoTargetAxisByOrient(t,this._orient)),this._noTarget=!0,t.each(function(e){e.indexList.length&&(this._noTarget=!1)},this)},t.prototype._fillSpecifiedTargetAxis=function(e){var t=!1;return Q(aKe,function(n){var r=this.getReferringComponents(X8(n),owe);if(r.specified){t=!0;var i=new Q8;Q(r.models,function(e){i.add(e.componentIndex)}),e.set(n,i)}},this),t},t.prototype._fillAutoTargetAxisByOrient=function(e,t){var n=this.ecModel,r=!0;if(r){var i=t===`vertical`?`y`:`x`,a=n.findComponents({mainType:i+`Axis`});o(a,i)}if(r){var a=n.findComponents({mainType:`singleAxis`,filter:function(e){return e.get(`orient`,!0)===t}});o(a,`single`)}function o(t,n){var i=t[0];if(i){var a=new Q8;if(a.add(i.componentIndex),e.set(n,a),r=!1,n===`x`||n===`y`){var o=i.getReferringComponents(`grid`,rI).models[0];o&&Q(t,function(e){i.componentIndex!==e.componentIndex&&o===e.getReferringComponents(`grid`,rI).models[0]&&a.add(e.componentIndex)})}}}r&&Q(aKe,function(t){if(r){var i=n.findComponents({mainType:X8(t),filter:function(e){return e.get(`type`,!0)===`category`}});if(i[0]){var a=new Q8;a.add(i[0].componentIndex),e.set(t,a),r=!1}}},this)},t.prototype._makeAutoOrientByTargetAxis=function(){var e;return this.eachTargetAxis(function(t){!e&&(e=t)},this),e===`y`?`vertical`:`horizontal`},t.prototype._setDefaultThrottle=function(e){if(e.hasOwnProperty(`throttle`)&&(this._autoThrottle=!1),this._autoThrottle){var t=this.ecModel.option;this.option.throttle=t.animation&&t.animationDurationUpdate>0?100:20}},t.prototype._updateRangeUse=function(e){var t=this._rangePropMode,n=this.get(`rangeMode`);Q([[`start`,`startValue`],[`end`,`endValue`]],function(r,i){var a=e[r[0]]!=null,o=e[r[1]]!=null;a&&!o?t[i]=`percent`:!a&&o?t[i]=`value`:n?t[i]=n[i]:a&&(t[i]=`percent`)})},t.prototype.noTarget=function(){return this._noTarget},t.prototype.getFirstTargetAxisModel=function(){var e;return this.eachTargetAxis(function(t,n){e??=this.ecModel.getComponent(X8(t),n)},this),e},t.prototype.eachTargetAxis=function(e,t){this._targetAxisInfoMap.each(function(n,r){Q(n.indexList,function(n){e.call(t,r,n)})})},t.prototype.getAxisProxy=function(e,t){return Z8(this.getAxisModel(e,t))},t.prototype.getAxisModel=function(e,t){var n=this._targetAxisInfoMap.get(e);if(n&&n.indexMap[t])return this.ecModel.getComponent(X8(e),t)},t.prototype.setRawRange=function(e){var t=this.option,n=this.settledOption;Q([[`start`,`startValue`],[`end`,`endValue`]],function(r){(e[r[0]]!=null||e[r[1]]!=null)&&(t[r[0]]=n[r[0]]=e[r[0]],t[r[1]]=n[r[1]]=e[r[1]])},this),this._updateRangeUse(e)},t.prototype.setCalculatedRange=function(e){var t=this.option;Q([`start`,`startValue`,`end`,`endValue`],function(n){t[n]=e[n]})},t.prototype.getPercentRange=function(){var e=this.findRepresentativeAxisProxy();if(e)return e.getWindow().percent},t.prototype.getValueRange=function(e,t){if(e==null&&t==null){var n=this.findRepresentativeAxisProxy();if(n)return n.getWindow().value}else return this.getAxisProxy(e,t).getWindow().value},t.prototype.findRepresentativeAxisProxy=function(e){if(e)return Z8(e);for(var t,n=this._targetAxisInfoMap.keys(),r=0;ra[1];if(u&&!d&&!f)return!0;u&&(i=!0),d&&(t=!0),f&&(n=!0)}return i&&t&&n})}else Q(r,function(n){if(i===`empty`)e.setData(t=t.map(n,function(e){return o(e)?e:NaN}));else{var r={};r[n]=a,t.selectRange(r)}});Q(r,function(e){t.setApproximateExtent(a,e)})}});function o(e){return e>=a[0]&&e<=a[1]}},e.prototype._updateMinMaxSpan=function(){var e=this._minMaxSpan={},t=this._dataZoomModel,n=this._extent;Q([`min`,`max`],function(r){var i=t.get(r+`Span`),a=t.get(r+`ValueSpan`);a!=null&&(a=this.getAxisModel().axis.scale.parse(a)),a==null?i!=null&&(a=vF(i,[0,100],n,!0)-n[0]):i=vF(n[0]+a,n,[0,100],!0),e[r+`Span`]=i,e[r+`ValueSpan`]=a},this)},e}(),vKe={dirtyOnOverallProgress:!0,getTargetSeries:function(e){function t(t){e.eachComponent(`dataZoom`,function(n){n.eachTargetAxis(function(r,i){t(r,i,e.getComponent(X8(r),i),n)})})}var n=[];t(function(t,r,i,a){if(!Z8(i)){var o=new _Ke(t,r,a,e);n.push(o),fKe(i,o)}});var r=zA();return Q(n,function(e){Q(e.getTargetSeriesModels(),function(e){r.set(e.uid,e)})}),r},overallReset:function(e,t){e.eachComponent(`dataZoom`,function(e){var n=[];e.eachTargetAxis(function(t,r){var i=e.getAxisProxy(t,r),a=pKe(e,i);a?n.push([i,a]):i.reset(e,null)}),Q(n,function(t){t[0].reset(e,t[1].getWindow().percentInverted)}),e.eachTargetAxis(function(n,r){e.getAxisProxy(n,r).filterData(e,t)})}),e.eachComponent(`dataZoom`,function(e){var t=e.findRepresentativeAxisProxy();if(t){var n=t.getWindow(),r=n.percent,i=n.value;e.setCalculatedRange({start:r[0],end:r[1],startValue:i[0],endValue:i[1]})}})}};function yKe(e){e.registerAction(`dataZoom`,function(e,t){Q(lKe(t,e),function(t){t.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})})})}var bKe=mI();function t5(e){bKe(e,function(){e.registerProcessor(e.PRIORITY.PROCESSOR.FILTER,vKe),yKe(e),e.registerSubTypeDefaulter(`dataZoom`,function(){return`slider`})})}function xKe(e){e.registerComponentModel(hKe),e.registerComponentView(gKe),t5(e)}var n5=function(){function e(){}return e}(),SKe={};function r5(e,t){SKe[e]=t}function CKe(e){return SKe[e]}var wKe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(t,n,r){var i=r.getTheme().get(`toolbox`),a=i?i.feature:null;a&&(this._themeFeatureOption=Z({},a),i.feature={}),e.prototype.init.call(this,t,n,r),a&&(i.feature=a)},t.prototype.optionUpdated=function(){Q(this.option.feature,function(e,t){var n=this._themeFeatureOption,r=CKe(t);r&&(r.getDefaultOption&&(r.defaultOption=r.getDefaultOption(this.ecModel)),n&&n[t]&&($k(e,n[t]),n[t]=null),$k(e,r.defaultOption))},this)},t.type=`toolbox`,t.layoutMode={type:`box`,ignoreSize:!0},t.defaultOption={show:!0,z:6,orient:`horizontal`,left:`right`,top:`top`,backgroundColor:`transparent`,borderColor:$.color.border,borderRadius:0,borderWidth:0,padding:$.size.m,itemSize:15,itemGap:$.size.s,showTitle:!0,iconStyle:{borderColor:$.color.accent50,color:`none`},emphasis:{iconStyle:{borderColor:$.color.accent70}},tooltip:{show:!1,position:`bottom`}},t}(sH);function TKe(e,t){var n=OV(t.get(`padding`)),r=t.getItemStyle([`color`,`opacity`]);return r.fill=t.get(`backgroundColor`),new DL({shape:{x:e.x-n[3],y:e.y-n[0],width:e.width+n[1]+n[3],height:e.height+n[0]+n[2],r:t.get(`borderRadius`)},style:r,silent:!0,z2:-1})}var EKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.render=function(e,t,n,r){var i=this.group;if(i.removeAll(),!e.get(`show`))return;var a=+e.get(`itemSize`),o=e.get(`orient`)===`vertical`,s=e.get(`feature`)||{},c=this._features||=zA(),l=[];Q(s,function(e,t){l.push(t)}),new nq(this._featureNames||[],l).add(u).update(u).remove(pA(u,null)).execute(),this._featureNames=lA(l,function(e){return c.hasKey(e)});function u(i,a){var o=i!=null&&a==null,u=i!=null&&a!=null,f=i==null,p=o||u?l[i]:l[a],m=s[p],h=o||u?new LB(m,e,t):null,g=h&&h.get(`show`),_;if(o){if(!g)return;if(DKe(p))_={onclick:h.option.onclick,featureName:p};else{var v=CKe(p);if(!v)return;_=new v}c.set(p,_)}else _=c.get(p);if(f||!g){OKe(_)&&_.dispose&&_.dispose(t,n),c.removeKey(p);return}r&&r.newTitle!=null&&r.featureName===p&&(m.title=r.newTitle),o&&(_.uid=RB(`toolbox-feature`)),_.model=h,_.ecModel=t,_.api=n,d(h,_,p),h.setIconStatus=function(e,t){var n=this.option,r=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[e]=t,r[e]&&(t===`emphasis`?$L:eR)(r[e])},OKe(_)&&_.render&&_.render(h,t,n,r)}function d(r,s,c){var l=r.getModel(`iconStyle`),u=r.getModel([`emphasis`,`iconStyle`]),d=s instanceof n5&&s.getIcons?s.getIcons():r.get(`icon`),f=r.get(`title`)||{},p,m;gA(d)?(p={},p[c]=d):p=d,gA(f)?(m={},m[c]=f):m=f;var h=r.iconPaths={};Q(p,function(c,d){var f=Yz(c,{},{x:-a/2,y:-a/2,width:a,height:a});f.setStyle(l.getItemStyle());var p=f.ensureState(`emphasis`);p.style=u.getItemStyle();var g=new kL({style:{text:m[d],align:u.get(`textAlign`),borderRadius:u.get(`textBorderRadius`),padding:u.get(`textPadding`),fill:null,font:OB({fontStyle:u.get(`textFontStyle`),fontFamily:u.get(`textFontFamily`),fontSize:u.get(`textFontSize`),fontWeight:u.get(`textFontWeight`)},t)},ignore:!0});f.setTextContent(g),nB({el:f,componentModel:e,itemName:d,formatterParamsExtra:{title:m[d]}}),f.__title=m[d],f.on(`mouseover`,function(){var t=u.getItemStyle(),r=o?e.get(`right`)==null&&e.get(`left`)!==`right`?`right`:`left`:e.get(`bottom`)==null&&e.get(`top`)!==`bottom`?`bottom`:`top`;g.setStyle({fill:u.get(`textFill`)||t.fill||t.stroke||$.color.neutral99,backgroundColor:u.get(`textBackgroundColor`)}),f.setTextConfig({position:u.get(`textPosition`)||r}),g.ignore=!e.get(`showTitle`),n.enterEmphasis(this)}).on(`mouseout`,function(){r.get([`iconStatus`,d])!==`emphasis`&&n.leaveEmphasis(this),g.hide()}),(r.get([`iconStatus`,d])===`emphasis`?$L:eR)(f),i.add(f),f.on(`click`,fA(s.onclick,s,t,n,d)),h[d]=f})}var f=tH(e,n).refContainer,p=e.getBoxLayoutParams(),m=e.get(`padding`),h=QV(p,f,m);YV(e.get(`orient`),i,e.get(`itemGap`),h.width,h.height),nH(i,p,f,m),i.add(TKe(i.getBoundingRect(),e)),o||i.eachChild(function(e){var t=e.__title,r=e.ensureState(`emphasis`),o=r.textConfig||={},s=e.getTextContent(),c=s&&s.ensureState(`emphasis`);if(c&&!hA(c)&&t){var l=c.style||={},u=IP(t,kL.makeFont(l)),d=e.x+i.x,f=e.y+i.y+a,p=!1;f+u.height>n.getHeight()&&(o.position=`top`,p=!0);var m=p?-5-u.height:a+10;d+u.width/2>n.getWidth()?(o.position=[`100%`,m],l.align=`right`):d-u.width/2<0&&(o.position=[0,m],l.align=`left`)}})},t.prototype.updateView=function(e,t,n,r){Q(this._features,function(e){e&&e instanceof n5&&e.updateView&&e.updateView(e.model,t,n,r)})},t.prototype.dispose=function(e,t){Q(this._features,function(n){n&&n instanceof n5&&n.dispose&&n.dispose(e,t)})},t.type=`toolbox`,t}(dW);function DKe(e){return e.indexOf(`my`)===0}function OKe(e){return e instanceof n5}var kKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.onclick=function(e,t){var n=this.model,r=n.get(`name`)||e.get(`title.0.text`)||`echarts`,i=t.getZr().painter.getType()===`svg`,a=i?`svg`:n.get(`type`,!0)||`png`,o=t.getConnectedDataURL({type:a,backgroundColor:n.get(`backgroundColor`,!0)||e.get(`backgroundColor`)||$.color.neutral00,connectedBackgroundColor:n.get(`connectedBackgroundColor`),excludeComponents:n.get(`excludeComponents`),pixelRatio:n.get(`pixelRatio`)}),s=Rk.browser;if(typeof MouseEvent==`function`&&(s.newEdge||!s.ie&&!s.edge)){var c=document.createElement(`a`);c.download=r+`.`+a,c.target=`_blank`,c.href=o;var l=new MouseEvent(`click`,{view:document.defaultView,bubbles:!0,cancelable:!1});c.dispatchEvent(l)}else if(window.navigator.msSaveOrOpenBlob||i){var u=o.split(`,`),d=u[0].indexOf(`base64`)>-1,f=i?decodeURIComponent(u[1]):u[1];d&&(f=window.atob(f));var p=r+`.`+a;if(window.navigator.msSaveOrOpenBlob){for(var m=f.length,h=new Uint8Array(m);m--;)h[m]=f.charCodeAt(m);var g=new Blob([h]);window.navigator.msSaveOrOpenBlob(g,p)}else{var _=document.createElement(`iframe`);document.body.appendChild(_);var v=_.contentWindow,y=v.document;y.open(`image/svg+xml`,`replace`),y.write(f),y.close(),v.focus(),y.execCommand(`SaveAs`,!0,p),document.body.removeChild(_)}}else{var b=n.get(`lang`),x=``,S=window.open();S.document.write(x),S.document.title=r}},t.getDefaultOption=function(e){return{show:!0,icon:`M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0`,title:e.getLocaleModel().get([`toolbox`,`saveAsImage`,`title`]),type:`png`,connectedBackgroundColor:$.color.neutral00,name:``,excludeComponents:[`toolbox`],lang:e.getLocaleModel().get([`toolbox`,`saveAsImage`,`lang`])}},t}(n5),AKe=`__ec_magicType_stack__`,jKe=[[`line`,`bar`],[`stack`]],MKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.getIcons=function(){var e=this.model,t=e.get(`icon`),n={};return Q(e.get(`type`),function(e){t[e]&&(n[e]=t[e])}),n},t.getDefaultOption=function(e){return{show:!0,type:[],icon:{line:`M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4`,bar:`M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7`,stack:`M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z`},title:e.getLocaleModel().get([`toolbox`,`magicType`,`title`]),option:{},seriesIndex:{}}},t.prototype.onclick=function(e,t,n){var r=this.model,i=r.get([`seriesIndex`,n]);if(NKe[n]){var a={series:[]};Q(jKe,function(e){rA(e,n)>=0&&Q(e,function(e){r.setIconStatus(e,`normal`)})}),r.setIconStatus(n,`emphasis`),e.eachComponent({mainType:`series`,query:i==null?null:{seriesIndex:i}},function(e){var t=e.subType,i=e.id,o=NKe[n](t,i,e,r);o&&(nA(o,e.option),a.series.push(o));var s=e.coordinateSystem;if(s&&s.type===`cartesian2d`&&(n===`line`||n===`bar`)){var c=s.getAxesByScale(`ordinal`)[0];if(c){var l=c.dim+`Axis`,u=e.getReferringComponents(l,rI).models[0].componentIndex;a[l]=a[l]||[];for(var d=0;d<=u;d++)a[l][u]=a[l][u]||{};a[l][u].boundaryGap=n===`bar`}}});var o,s=n;n===`stack`&&(o=$k({stack:r.option.title.tiled,tiled:r.option.title.stack},r.option.title),r.get([`iconStatus`,n])!==`emphasis`&&(s=`tiled`)),t.dispatchAction({type:`changeMagicType`,currentType:s,newOption:a,newTitle:o,featureName:`magicType`})}},t}(n5),NKe={line:function(e,t,n,r){if(e===`bar`)return $k({id:t,type:`line`,data:n.get(`data`),stack:n.get(`stack`),markPoint:n.get(`markPoint`),markLine:n.get(`markLine`)},r.get([`option`,`line`])||{},!0)},bar:function(e,t,n,r){if(e===`line`)return $k({id:t,type:`bar`,data:n.get(`data`),stack:n.get(`stack`),markPoint:n.get(`markPoint`),markLine:n.get(`markLine`)},r.get([`option`,`bar`])||{},!0)},stack:function(e,t,n,r){var i=n.get(`stack`)===AKe;if(e===`line`||e===`bar`)return r.setIconStatus(`stack`,i?`normal`:`emphasis`),$k({id:t,stack:i?``:AKe},r.get([`option`,`stack`])||{},!0)}};HK({type:`changeMagicType`,event:`magicTypeChanged`,update:`prepareAndUpdate`},function(e,t){t.mergeOption(e.newOption)});var i5=Array(60).join(`-`),a5=` `;function PKe(e){var t={},n=[],r=[];return e.eachRawSeries(function(e){var i=e.coordinateSystem;if(i&&(i.type===`cartesian2d`||i.type===`polar`)){var a=i.getBaseAxis();if(a.type===`category`){var o=iPe(a);t[o]||(t[o]={categoryAxis:a,valueAxis:i.getOtherAxis(a),series:[]},r.push({axisDim:a.dim,axisIndex:a.index})),t[o].series.push(e)}else n.push(e)}else n.push(e)}),{seriesGroupByCategoryAxis:t,other:n,meta:r}}function FKe(e){var t=[];return Q(e,function(e,n){var r=e.categoryAxis,i=e.valueAxis.dim,a=[` `].concat(sA(e.series,function(e){return e.name})),o=[r.model.getCategories()];Q(e.series,function(e){var t=e.getRawData();o.push(e.getRawData().mapArray(t.mapDimension(i),function(e){return e}))});for(var s=[a.join(a5)],c=0;c=0)return!0}var l5=RegExp(`[`+s5+`]+`,`g`);function LKe(e){for(var t=e.split(/\n+/g),n=c5(t.shift()).split(l5),r=[],i=sA(n,function(e){return{name:e,data:[]}}),a=0;a=0&&!n[i][r];i--);if(i<0){var a=e.queryComponents({mainType:`dataZoom`,subType:`select`,id:r})[0];if(a){var o=a.getPercentRange();n[0][r]={dataZoomId:r,start:o[0],end:o[1]}}}}),n.push(t)}function GKe(e){var t=u5(e),n=t[t.length-1];t.length>1&&t.pop();var r={};return HKe(n,function(e,n){for(var i=t.length-1;i>=0;i--)if(e=t[i][n],e){r[n]=e;break}}),r}function KKe(e){UKe(e).snapshots=null}function qKe(e){return u5(e).length}function u5(e){var t=UKe(e);return t.snapshots||=[{}],t.snapshots}var JKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.onclick=function(e,t){KKe(e),t.dispatchAction({type:`restore`,from:this.uid})},t.getDefaultOption=function(e){return{show:!0,icon:`M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5`,title:e.getLocaleModel().get([`toolbox`,`restore`,`title`])}},t}(i5);WK({type:`restore`,event:`restore`,update:`prepareAndUpdate`},function(e,t){t.resetOption(`recreate`)});var YKe=[`grid`,`xAxis`,`yAxis`,`geo`,`graph`,`polar`,`radiusAxis`,`angleAxis`,`bmap`],d5=function(){function e(e,t,n){var r=this;this._targetInfoList=[];var i=XKe(t,e);Q(ZKe,function(e,t){(!n||!n.include||rA(n.include,t)>=0)&&e(i,r._targetInfoList)})}return e.prototype.setOutputRanges=function(e,t){return this.matchOutputRanges(e,t,function(e,t,n){if((e.coordRanges||=[]).push(t),!e.coordRange){e.coordRange=t;var r=p5[e.brushType](0,n,t);e.__rangeOffset={offset:tqe[e.brushType](r.values,e.range,[1,1]),xyMinMax:r.xyMinMax}}}),e},e.prototype.matchOutputRanges=function(e,t,n){Q(e,function(e){var r=this.findTargetInfo(e,t);r&&r!==!0&&Q(r.coordSyses,function(r){n(e,p5[e.brushType](1,r,e.range,!0).values,r,t)})},this)},e.prototype.setInputRanges=function(e,t){Q(e,function(e){var n=this.findTargetInfo(e,t);if(e.range=e.range||[],n&&n!==!0){e.panelId=n.panelId;var r=p5[e.brushType](0,n.coordSys,e.coordRange),i=e.__rangeOffset;e.range=i?tqe[e.brushType](r.values,i.offset,rqe(r.xyMinMax,i.xyMinMax)):r.values}},this)},e.prototype.makePanelOpts=function(e,t){return sA(this._targetInfoList,function(n){var r=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:t?t(n):null,clipPath:kze(r),isTargetByCursor:jze(r,e,n.coordSysModel),getLinearBrushOtherExtent:Aze(r)}})},e.prototype.controlSeries=function(e,t,n){var r=this.findTargetInfo(e,n);return r===!0||r&&rA(r.coordSyses,t.coordinateSystem)>=0},e.prototype.findTargetInfo=function(e,t){for(var n=this._targetInfoList,r=XKe(t,e),i=0;ie[1]&&e.reverse(),e}function XKe(e,t){return nI(e,t,{includeMainTypes:YKe})}var ZKe={grid:function(e,t){var n=e.xAxisModels,r=e.yAxisModels,i=e.gridModels,a=zA(),o={},s={};!n&&!r&&!i||(Q(n,function(e){var t=e.axis.grid.model;a.set(t.id,t),o[t.id]=!0}),Q(r,function(e){var t=e.axis.grid.model;a.set(t.id,t),s[t.id]=!0}),Q(i,function(e){a.set(e.id,e),o[e.id]=!0,s[e.id]=!0}),a.each(function(e){var i=e.coordinateSystem,a=[];Q(i.getCartesians(),function(e,t){(rA(n,e.getAxis(`x`).model)>=0||rA(r,e.getAxis(`y`).model)>=0)&&a.push(e)}),t.push({panelId:`grid--`+e.id,gridModel:e,coordSysModel:e,coordSys:a[0],coordSyses:a,getPanelRect:$Ke.grid,xAxisDeclared:o[e.id],yAxisDeclared:s[e.id]})}))},geo:function(e,t){Q(e.geoModels,function(e){var n=e.coordinateSystem;t.push({panelId:`geo--`+e.id,geoModel:e,coordSysModel:e,coordSys:n,coordSyses:[n],getPanelRect:$Ke.geo})})}},QKe=[function(e,t){var n=e.xAxisModel,r=e.yAxisModel,i=e.gridModel;return!i&&n&&(i=n.axis.grid.model),!i&&r&&(i=r.axis.grid.model),i&&i===t.gridModel},function(e,t){var n=e.geoModel;return n&&n===t.geoModel}],$Ke={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var e=this.coordSys.view,t=n0(null,e);return aM(t,t,t0(null,e)),t}},p5={lineX:pA(eqe,0),lineY:pA(eqe,1),rect:function(e,t,n,r){var i=e?t.pointToData([n[0][0],n[1][0]],r):t.dataToPoint([n[0][0],n[1][0]],r),a=e?t.pointToData([n[0][1],n[1][1]],r):t.dataToPoint([n[0][1],n[1][1]],r),o=[f5([i[0],a[0]]),f5([i[1],a[1]])];return{values:o,xyMinMax:o}},polygon:function(e,t,n,r){var i=[uI(),uI()];return{values:sA(n,function(n){var a=e?t.pointToData(n,r):t.dataToPoint(n,r);return i[0][0]=Math.min(i[0][0],a[0]),i[1][0]=Math.min(i[1][0],a[1]),i[0][1]=Math.max(i[0][1],a[0]),i[1][1]=Math.max(i[1][1],a[1]),a}),xyMinMax:i}}};function eqe(e,t,n,r){var i=n.getAxis([`x`,`y`][e]),a=f5(sA([0,1],function(e){return t?i.coordToData(i.toLocalCoord(r[e]),!0):i.toGlobalCoord(i.dataToCoord(r[e]))})),o=[];return o[e]=a,o[1-e]=[NaN,NaN],{values:a,xyMinMax:o}}var tqe={lineX:pA(nqe,0),lineY:pA(nqe,1),rect:function(e,t,n){return[[e[0][0]-n[0]*t[0][0],e[0][1]-n[0]*t[0][1]],[e[1][0]-n[1]*t[1][0],e[1][1]-n[1]*t[1][1]]]},polygon:function(e,t,n){return sA(e,function(e,r){return[e[0]-n[0]*t[r][0],e[1]-n[1]*t[r][1]]})}};function nqe(e,t,n,r){return[t[0]-r[e]*n[0],t[1]-r[e]*n[1]]}function rqe(e,t){var n=iqe(e),r=iqe(t),i=[n[0]/r[0],n[1]/r[1]];return isNaN(i[0])&&(i[0]=1),isNaN(i[1])&&(i[1]=1),i}function iqe(e){return e?[e[0][1]-e[0][0],e[1][1]-e[1][0]]:[NaN,NaN]}var m5=Q,aqe=ewe(`toolbox-dataZoom_`),oqe={x:`width`,y:`height`},sqe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.render=function(e,t,n,r){this._brushController||(this._brushController=new I3(n.getZr()),this._brushController.on(`brush`,fA(this._onBrush,this)).mount()),uqe(e,t,this,r,n),lqe(e,t)},t.prototype.onclick=function(e,t,n){cqe[n].call(this)},t.prototype.dispose=function(e,t){this._brushController&&this._brushController.dispose()},t.prototype._onBrush=function(e){var t=e.areas;if(!e.isEnd||!t.length)return;var n={},r=this.ecModel;this._brushController.updateCovers([]),new d5(h5(this.model),r,{include:[`grid`]}).matchOutputRanges(t,r,function(e,t,n){if(n.type===`cartesian2d`){var r=n.master.getRect().clone(),a=e.brushType;a===`rect`?(i(`x`,n,r,t[0]),i(`y`,n,r,t[1])):i({lineX:`x`,lineY:`y`}[a],n,r,t)}}),WKe(r,n),this._dispatchZoomAction(n);function i(e,t,i,o){var s=t.getAxis(e),c=s.model,l=a(e,c,r),u=l.findRepresentativeAxisProxy(c).getMinMaxSpan(),d=s.scale.getExtent();(u.minValueSpan!=null||u.maxValueSpan!=null)&&(o=E3(0,o.slice(),d,0,u.minValueSpan,u.maxValueSpan));var f=DF(d,i[oqe[e]],.5);l&&(n[l.id]={dataZoomId:l.id,startValue:isFinite(f)?CF(o[0],f):o[0],endValue:isFinite(f)?CF(o[1],f):o[1]})}function a(e,t,n){var r;return n.eachComponent({mainType:`dataZoom`,subType:`select`},function(n){n.getAxisModel(e,t.componentIndex)&&(r=n)}),r}},t.prototype._dispatchZoomAction=function(e){var t=[];m5(e,function(e,n){t.push(Qk(e))}),t.length&&this.api.dispatchAction({type:`dataZoom`,from:this.uid,batch:t})},t.getDefaultOption=function(e){return{show:!0,filterMode:`filter`,icon:{zoom:`M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1`,back:`M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26`},title:e.getLocaleModel().get([`toolbox`,`dataZoom`,`title`]),brushStyle:{borderWidth:0,color:$.color.backgroundTint}}},t}(i5),cqe={zoom:function(){var e=!this._isZoomActive;this.api.dispatchAction({type:`takeGlobalCursor`,key:`dataZoomSelect`,dataZoomSelectActive:e})},back:function(){this._dispatchZoomAction(GKe(this.ecModel))}};function h5(e){var t={xAxisIndex:e.get(`xAxisIndex`,!0),yAxisIndex:e.get(`yAxisIndex`,!0),xAxisId:e.get(`xAxisId`,!0),yAxisId:e.get(`yAxisId`,!0)};return t.xAxisIndex==null&&t.xAxisId==null&&(t.xAxisIndex=`all`),t.yAxisIndex==null&&t.yAxisId==null&&(t.yAxisIndex=`all`),t}function lqe(e,t){e.setIconStatus(`back`,qKe(t)>1?`emphasis`:`normal`)}function uqe(e,t,n,r,i){var a=n._isZoomActive;r&&r.type===`takeGlobalCursor`&&(a=r.key===`dataZoomSelect`?r.dataZoomSelectActive:!1),n._isZoomActive=a,e.setIconStatus(`zoom`,a?`emphasis`:`normal`);var o=new d5(h5(e),t,{include:[`grid`]}).makePanelOpts(i,function(e){return e.xAxisDeclared&&!e.yAxisDeclared?`lineX`:!e.xAxisDeclared&&e.yAxisDeclared?`lineY`:`rect`});n._brushController.setPanels(o).enableBrush(a&&o.length?{brushType:`auto`,brushStyle:e.getModel(`brushStyle`).getItemStyle()}:!1)}FDe(`dataZoom`,function(e){var t=e.getComponent(`toolbox`,0),n=[`feature`,`dataZoom`];if(!t||t.get(n)==null)return;var r=t.getModel(n),i=[],a=nI(e,h5(r));m5(a.xAxisModels,function(e){return o(e,`xAxis`,`xAxisIndex`)}),m5(a.yAxisModels,function(e){return o(e,`yAxis`,`yAxisIndex`)});function o(e,t,n){var a=e.componentIndex,o={type:`select`,$fromToolbox:!0,filterMode:r.get(`filterMode`,!0)||`filter`,id:aqe+t+a};o[n]=a,i.push(o)}return i});function dqe(e){e.registerComponentModel(SKe),e.registerComponentView(wKe),a5(`saveAsImage`,DKe),a5(`magicType`,AKe),a5(`dataView`,BKe),a5(`dataZoom`,sqe),a5(`restore`,JKe),tq(yKe)}var fqe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`tooltip`,t.dependencies=[`axisPointer`],t.defaultOption={z:60,show:!0,showContent:!0,trigger:`item`,triggerOn:`mousemove|click|mousewheel`,alwaysShowContent:!1,renderMode:`auto`,confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,displayTransition:!0,enterable:!1,backgroundColor:$.color.neutral00,shadowBlur:10,shadowColor:`rgba(0, 0, 0, .2)`,shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,defaultBorderColor:$.color.border,padding:null,extraCssText:``,axisPointer:{type:`line`,axis:`auto`,animation:`auto`,animationDurationUpdate:200,animationEasingUpdate:`exponentialOut`,crossStyle:{color:$.color.borderShade,width:1,type:`dashed`,textStyle:{}}},textStyle:{color:$.color.tertiary,fontSize:14}},t}(lH);function pqe(e){var t=e.get(`confine`);return t==null?e.get(`renderMode`)===`richText`:!!t}function mqe(e){if(Rk.domSupported){for(var t=document.documentElement.style,n=0,r=e.length;n-1?(s+=`top:50%`,c+=`translateY(-50%) rotate(`+(l=a===`left`?-225:-45)+`deg)`):(s+=`left:50%`,c+=`translateX(-50%) rotate(`+(l=a===`top`?225:45)+`deg)`);var u=l*Math.PI/180,d=o+i,f=d*Math.abs(Math.cos(u))+d*Math.abs(Math.sin(u)),p=Math.round(((f-Math.SQRT2*i)/2+Math.SQRT2*i-(f-d)/2)*100)/100;s+=`;`+a+`:-`+p+`px`;var m=t+` solid `+i+`px;`;return`
`}function Cqe(e,t,n){var r=`cubic-bezier(0.23,1,0.32,1)`,i=``,a=``;return n&&(i=` `+e/2+`s `+r,a=`opacity`+i+`,visibility`+i),t||(i=` `+e+`s `+r,a+=(a.length?`,`:``)+(Rk.transformSupported?``+g5+i:`,left`+i+`,top`+i)),yqe+`:`+a}function wqe(e,t,n){var r=e.toFixed(0)+`px`,i=t.toFixed(0)+`px`;if(!Rk.transformSupported)return n?`top:`+i+`;left:`+r+`;`:[[`top`,i],[`left`,r]];var a=Rk.transform3dSupported,o=`translate`+(a?`3d`:``)+`(`+r+`,`+i+(a?`,0`:``)+`)`;return n?`top:0;left:0;`+g5+`:`+o+`;`:[[`top`,0],[`left`,0],[hqe,o]]}function Tqe(e){var t=[],n=e.get(`fontSize`),r=e.getTextColor();r&&t.push(`color:`+r),t.push(`font:`+e.getFont());var i=OA(e.get(`lineHeight`),Math.round(n*3/2));n&&t.push(`line-height:`+i+`px`);var a=e.get(`textShadowColor`),o=e.get(`textShadowBlur`)||0,s=e.get(`textShadowOffsetX`)||0,c=e.get(`textShadowOffsetY`)||0;return a&&o&&t.push(`text-shadow:`+s+`px `+c+`px `+o+`px `+a),Q([`decoration`,`align`],function(n){var r=e.get(n);r&&t.push(`text-`+n+`:`+r)}),t.join(`;`)}function Eqe(e,t,n,r){var i=[],a=e.get(`transitionDuration`),o=e.get(`backgroundColor`),s=e.get(`shadowBlur`),c=e.get(`shadowColor`),l=e.get(`shadowOffsetX`),u=e.get(`shadowOffsetY`),d=e.getModel(`textStyle`),f=rW(e,`html`),p=l+`px `+u+`px `+s+`px `+c;return i.push(`box-shadow:`+p),t&&a>0&&i.push(Cqe(a,n,r)),o&&i.push(`background-color:`+o),Q([`width`,`color`,`radius`],function(t){var n=`border-`+t,r=kV(n),a=e.get(r);a!=null&&i.push(n+`:`+a+(t===`color`?``:`px`))}),i.push(Tqe(d)),f!=null&&i.push(`padding:`+AV(f).join(`px `)+`px`),i.join(`;`)+`;`}function Dqe(e,t,n,r,i){var a=t&&t.painter;if(n){var o=a&&a.getViewportRoot();o&&cSe(e,o,n,r,i)}else{e[0]=r,e[1]=i;var s=a&&a.getViewportRootOffset();s&&(e[0]+=s.offsetLeft,e[1]+=s.offsetTop)}e[2]=e[0]/t.getWidth(),e[3]=e[1]/t.getHeight()}var Oqe=function(){function e(e,t){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._alwaysShowContent=!1,this._firstShow=!0,this._longHide=!0,Rk.wxa)return null;var n=document.createElement(`div`);n.domBelongToZr=!0,this.el=n;var r=this._zr=e.getZr(),i=t.appendTo,a=i&&(gA(i)?document.querySelector(i):SA(i)?i:hA(i)&&i(e.getDom()));Dqe(this._styleCoord,r,a,e.getWidth()/2,e.getHeight()/2),(a||e.getDom()).appendChild(n),this._api=e,this._container=a;var o=this;n.onmouseenter=function(){o._enterable&&(clearTimeout(o._hideTimeout),o._show=!0),o._inContent=!0},n.onmousemove=function(e){if(e||=window.event,!o._enterable){var t=r.handler;Ej(r.painter.getViewportRoot(),e,!0),t.dispatch(`mousemove`,e)}},n.onmouseleave=function(){o._inContent=!1,o._enterable&&o._show&&o.hideLater(o._hideDelay)}}return e.prototype.update=function(e){if(!this._container){var t=this._api.getDom(),n=vqe(t,`position`),r=t.style;r.position!==`absolute`&&n!==`absolute`&&(r.position=`relative`)}var i=e.get(`alwaysShowContent`);i&&this._moveIfResized(),this._alwaysShowContent=i,this._enableDisplayTransition=e.get(`displayTransition`)&&e.get(`transitionDuration`)>0,this.el.className=e.get(`className`)||``},e.prototype.show=function(e,t){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,r=n.style,i=this._styleCoord;n.innerHTML?r.cssText=bqe+Eqe(e,!this._firstShow,this._longHide,this._enableDisplayTransition)+wqe(i[0],i[1],!0)+(`border-color:`+LV(t)+`;`)+(e.get(`extraCssText`)||``)+(`;pointer-events:`+(this._enterable?`auto`:`none`)):r.display=`none`,this._show=!0,this._firstShow=!1,this._longHide=!1},e.prototype.setContent=function(e,t,n,r,i){var a=this.el;if(e==null){a.innerHTML=``;return}var o=``;if(gA(i)&&n.get(`trigger`)===`item`&&!pqe(n)&&(o=Sqe(n,r,i)),gA(e))a.innerHTML=e+o;else if(e){a.innerHTML=``,mA(e)||(e=[e]);for(var s=0;s=0?this._tryShow(n,r):t===`leave`&&this._hide(r))},this))},t.prototype._keepShow=function(){var e=this._tooltipModel,t=this._ecModel,n=this._api,r=e.get(`triggerOn`);if(e.get(`trigger`)!==`axis`&&(this._lastDataByCoordSys=null,this._cbParamsList=null),this._lastX!=null&&this._lastY!=null&&r!==`none`&&r!==`click`){var i=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!n.isDisposed()&&i.manuallyShowTip(e,t,n,{x:i._lastX,y:i._lastY,dataByCoordSys:i._lastDataByCoordSys})})}},t.prototype.manuallyShowTip=function(e,t,n,r){if(!(r.from===this.uid||Rk.node||!n.getDom())){var i=Pqe(r,n);this._ticket=``;var a=r.dataByCoordSys,o=zqe(r,t,n);if(o){var s=o.el.getBoundingRect().clone();s.applyTransform(o.el.transform),this._tryShow({offsetX:s.x+s.width/2,offsetY:s.y+s.height/2,target:o.el,position:r.position,positionDefault:`bottom`},i)}else if(r.tooltip&&r.x!=null&&r.y!=null){var c=Mqe;c.x=r.x,c.y=r.y,c.update(),ML(c).tooltipConfig={name:null,option:r.tooltip},this._tryShow({offsetX:r.x,offsetY:r.y,target:c},i)}else if(a)this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,dataByCoordSys:a,tooltipOption:r.tooltipOption},i);else if(r.seriesIndex!=null){if(this._manuallyAxisShowTip(e,t,n,r))return;var l=UUe(r,t),u=l.point[0],d=l.point[1];u!=null&&d!=null&&this._tryShow({offsetX:u,offsetY:d,target:l.el,position:r.position,positionDefault:`bottom`},i)}else r.x!=null&&r.y!=null&&(n.dispatchAction({type:`updateAxisPointer`,x:r.x,y:r.y}),this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,target:n.getZr().findHover(r.x,r.y).target},i))}},t.prototype.manuallyHideTip=function(e,t,n,r){var i=this._tooltipContent;this._tooltipModel&&i.hideLater(this._tooltipModel.get(`hideDelay`)),this._lastX=this._lastY=this._lastDataByCoordSys=null,this._cbParamsList=null,r.from!==this.uid&&this._hide(Pqe(r,n))},t.prototype._manuallyAxisShowTip=function(e,t,n,r){var i=r.seriesIndex,a=r.dataIndex,o=t.getComponent(`axisPointer`).coordSysAxesInfo;if(!(i==null||a==null||o==null)){var s=t.getSeriesByIndex(i);if(s&&v5([s.getData().getItemModel(a),s,(s.coordinateSystem||{}).model],this._tooltipModel).get(`trigger`)===`axis`)return n.dispatchAction({type:`updateAxisPointer`,seriesIndex:i,dataIndex:a,position:r.position}),!0}},t.prototype._tryShow=function(e,t){var n=e.target;if(this._tooltipModel){this._lastX=e.offsetX,this._lastY=e.offsetY;var r=e.dataByCoordSys;if(r&&r.length)this._showAxisTooltip(r,e);else if(n){if(ML(n).ssrType===`legend`)return;this._lastDataByCoordSys=null,this._cbParamsList=null;var i,a;YW(n,function(e){if(e.tooltipDisabled)return i=a=null,!0;i||a||(ML(e).dataIndex==null?ML(e).tooltipConfig!=null&&(a=e):i=e)},!0),i?this._showSeriesItemTooltip(e,i,t):a?this._showComponentItemTooltip(e,a,t):this._hide(t)}else this._lastDataByCoordSys=null,this._cbParamsList=null,this._hide(t)}},t.prototype._showOrMove=function(e,t){var n=e.get(`showDelay`);t=fA(t,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(t,n):t()},t.prototype._showAxisTooltip=function(e,t){var n=this._ecModel,r=this._tooltipModel,i=[t.offsetX,t.offsetY],a=v5([t.tooltipOption],r),o=this._renderMode,s=[],c=YU(`section`,{blocks:[],noHeader:!0}),l=[],u=new iW;Q(e,function(e){Q(e.dataByAxis,function(e){var t=n.getComponent(e.axisDim+`Axis`,e.axisIndex),i=e.value,a=t.axis,d=a.scale.parse(i);if(!(!t||i==null)){var f=DUe(i,a,n,e.seriesDataIndices,e.valueLabelOpt),p=YU(`section`,{header:f,noHeader:!NA(f),sortBlocks:!0,blocks:[]});c.blocks.push(p),Q(e.seriesDataIndices,function(i){var a=n.getSeriesByIndex(i.seriesIndex),c=i.dataIndexInside,m=a.getDataParams(c);if(!(m.dataIndex<0)){m.axisDim=e.axisDim,m.axisIndex=e.axisIndex,m.axisType=e.axisType,m.axisId=e.axisId,m.axisValue=gJ(t.axis,{value:d}),m.axisValueLabel=f,m.marker=u.makeTooltipMarker(`item`,LV(m.color),o);var h=TU(a.formatTooltip(c,!0,null)),g=h.frag;if(g){var _=v5([a],r).get(`valueFormatter`);p.blocks.push(_?Z({valueFormatter:_},g):g)}h.text&&l.push(h.text),s.push(m)}})}})}),c.blocks.reverse(),l.reverse();var d=t.position,f=$U(c,u,o,a.get(`order`),n.get(`useUTC`),a.get(`textStyle`));f&&l.unshift(f);var p=o===`richText`?` +`),meta:t.meta}}function o5(e){return e.replace(/^\s\s*/,``).replace(/\s\s*$/,``)}function RKe(e){if(e.slice(0,e.indexOf(` +`)).indexOf(a5)>=0)return!0}var s5=RegExp(`[`+a5+`]+`,`g`);function zKe(e){for(var t=e.split(/\n+/g),n=o5(t.shift()).split(s5),r=[],i=sA(n,function(e){return{name:e,data:[]}}),a=0;a=0&&!n[i][r];i--);if(i<0){var a=e.queryComponents({mainType:`dataZoom`,subType:`select`,id:r})[0];if(a){var o=a.getPercentRange();n[0][r]={dataZoomId:r,start:o[0],end:o[1]}}}}),n.push(t)}function qKe(e){var t=c5(e),n=t[t.length-1];t.length>1&&t.pop();var r={};return WKe(n,function(e,n){for(var i=t.length-1;i>=0;i--)if(e=t[i][n],e){r[n]=e;break}}),r}function JKe(e){GKe(e).snapshots=null}function YKe(e){return c5(e).length}function c5(e){var t=GKe(e);return t.snapshots||=[{}],t.snapshots}var XKe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.onclick=function(e,t){JKe(e),t.dispatchAction({type:`restore`,from:this.uid})},t.getDefaultOption=function(e){return{show:!0,icon:`M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5`,title:e.getLocaleModel().get([`toolbox`,`restore`,`title`])}},t}(n5);HK({type:`restore`,event:`restore`,update:`prepareAndUpdate`},function(e,t){t.resetOption(`recreate`)});var ZKe=[`grid`,`xAxis`,`yAxis`,`geo`,`graph`,`polar`,`radiusAxis`,`angleAxis`,`bmap`],l5=function(){function e(e,t,n){var r=this;this._targetInfoList=[];var i=QKe(t,e);Q($Ke,function(e,t){(!n||!n.include||rA(n.include,t)>=0)&&e(i,r._targetInfoList)})}return e.prototype.setOutputRanges=function(e,t){return this.matchOutputRanges(e,t,function(e,t,n){if((e.coordRanges||=[]).push(t),!e.coordRange){e.coordRange=t;var r=d5[e.brushType](0,n,t);e.__rangeOffset={offset:rqe[e.brushType](r.values,e.range,[1,1]),xyMinMax:r.xyMinMax}}}),e},e.prototype.matchOutputRanges=function(e,t,n){Q(e,function(e){var r=this.findTargetInfo(e,t);r&&r!==!0&&Q(r.coordSyses,function(r){n(e,d5[e.brushType](1,r,e.range,!0).values,r,t)})},this)},e.prototype.setInputRanges=function(e,t){Q(e,function(e){var n=this.findTargetInfo(e,t);if(e.range=e.range||[],n&&n!==!0){e.panelId=n.panelId;var r=d5[e.brushType](0,n.coordSys,e.coordRange),i=e.__rangeOffset;e.range=i?rqe[e.brushType](r.values,i.offset,aqe(r.xyMinMax,i.xyMinMax)):r.values}},this)},e.prototype.makePanelOpts=function(e,t){return sA(this._targetInfoList,function(n){var r=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:t?t(n):null,clipPath:jze(r),isTargetByCursor:Nze(r,e,n.coordSysModel),getLinearBrushOtherExtent:Mze(r)}})},e.prototype.controlSeries=function(e,t,n){var r=this.findTargetInfo(e,n);return r===!0||r&&rA(r.coordSyses,t.coordinateSystem)>=0},e.prototype.findTargetInfo=function(e,t){for(var n=this._targetInfoList,r=QKe(t,e),i=0;ie[1]&&e.reverse(),e}function QKe(e,t){return tI(e,t,{includeMainTypes:ZKe})}var $Ke={grid:function(e,t){var n=e.xAxisModels,r=e.yAxisModels,i=e.gridModels,a=zA(),o={},s={};!n&&!r&&!i||(Q(n,function(e){var t=e.axis.grid.model;a.set(t.id,t),o[t.id]=!0}),Q(r,function(e){var t=e.axis.grid.model;a.set(t.id,t),s[t.id]=!0}),Q(i,function(e){a.set(e.id,e),o[e.id]=!0,s[e.id]=!0}),a.each(function(e){var i=e.coordinateSystem,a=[];Q(i.getCartesians(),function(e,t){(rA(n,e.getAxis(`x`).model)>=0||rA(r,e.getAxis(`y`).model)>=0)&&a.push(e)}),t.push({panelId:`grid--`+e.id,gridModel:e,coordSysModel:e,coordSys:a[0],coordSyses:a,getPanelRect:tqe.grid,xAxisDeclared:o[e.id],yAxisDeclared:s[e.id]})}))},geo:function(e,t){Q(e.geoModels,function(e){var n=e.coordinateSystem;t.push({panelId:`geo--`+e.id,geoModel:e,coordSysModel:e,coordSys:n,coordSyses:[n],getPanelRect:tqe.geo})})}},eqe=[function(e,t){var n=e.xAxisModel,r=e.yAxisModel,i=e.gridModel;return!i&&n&&(i=n.axis.grid.model),!i&&r&&(i=r.axis.grid.model),i&&i===t.gridModel},function(e,t){var n=e.geoModel;return n&&n===t.geoModel}],tqe={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var e=this.coordSys.view,t=e0(null,e);return aM(t,t,$1(null,e)),t}},d5={lineX:pA(nqe,0),lineY:pA(nqe,1),rect:function(e,t,n,r){var i=e?t.pointToData([n[0][0],n[1][0]],r):t.dataToPoint([n[0][0],n[1][0]],r),a=e?t.pointToData([n[0][1],n[1][1]],r):t.dataToPoint([n[0][1],n[1][1]],r),o=[u5([i[0],a[0]]),u5([i[1],a[1]])];return{values:o,xyMinMax:o}},polygon:function(e,t,n,r){var i=[lI(),lI()];return{values:sA(n,function(n){var a=e?t.pointToData(n,r):t.dataToPoint(n,r);return i[0][0]=Math.min(i[0][0],a[0]),i[1][0]=Math.min(i[1][0],a[1]),i[0][1]=Math.max(i[0][1],a[0]),i[1][1]=Math.max(i[1][1],a[1]),a}),xyMinMax:i}}};function nqe(e,t,n,r){var i=n.getAxis([`x`,`y`][e]),a=u5(sA([0,1],function(e){return t?i.coordToData(i.toLocalCoord(r[e]),!0):i.toGlobalCoord(i.dataToCoord(r[e]))})),o=[];return o[e]=a,o[1-e]=[NaN,NaN],{values:a,xyMinMax:o}}var rqe={lineX:pA(iqe,0),lineY:pA(iqe,1),rect:function(e,t,n){return[[e[0][0]-n[0]*t[0][0],e[0][1]-n[0]*t[0][1]],[e[1][0]-n[1]*t[1][0],e[1][1]-n[1]*t[1][1]]]},polygon:function(e,t,n){return sA(e,function(e,r){return[e[0]-n[0]*t[r][0],e[1]-n[1]*t[r][1]]})}};function iqe(e,t,n,r){return[t[0]-r[e]*n[0],t[1]-r[e]*n[1]]}function aqe(e,t){var n=oqe(e),r=oqe(t),i=[n[0]/r[0],n[1]/r[1]];return isNaN(i[0])&&(i[0]=1),isNaN(i[1])&&(i[1]=1),i}function oqe(e){return e?[e[0][1]-e[0][0],e[1][1]-e[1][0]]:[NaN,NaN]}var f5=Q,sqe=twe(`toolbox-dataZoom_`),cqe={x:`width`,y:`height`},lqe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.render=function(e,t,n,r){this._brushController||(this._brushController=new F3(n.getZr()),this._brushController.on(`brush`,fA(this._onBrush,this)).mount()),fqe(e,t,this,r,n),dqe(e,t)},t.prototype.onclick=function(e,t,n){uqe[n].call(this)},t.prototype.dispose=function(e,t){this._brushController&&this._brushController.dispose()},t.prototype._onBrush=function(e){var t=e.areas;if(!e.isEnd||!t.length)return;var n={},r=this.ecModel;this._brushController.updateCovers([]),new l5(p5(this.model),r,{include:[`grid`]}).matchOutputRanges(t,r,function(e,t,n){if(n.type===`cartesian2d`){var r=n.master.getRect().clone(),a=e.brushType;a===`rect`?(i(`x`,n,r,t[0]),i(`y`,n,r,t[1])):i({lineX:`x`,lineY:`y`}[a],n,r,t)}}),KKe(r,n),this._dispatchZoomAction(n);function i(e,t,i,o){var s=t.getAxis(e),c=s.model,l=a(e,c,r),u=l.findRepresentativeAxisProxy(c).getMinMaxSpan(),d=s.scale.getExtent();(u.minValueSpan!=null||u.maxValueSpan!=null)&&(o=T3(0,o.slice(),d,0,u.minValueSpan,u.maxValueSpan));var f=EF(d,i[cqe[e]],.5);l&&(n[l.id]={dataZoomId:l.id,startValue:isFinite(f)?SF(o[0],f):o[0],endValue:isFinite(f)?SF(o[1],f):o[1]})}function a(e,t,n){var r;return n.eachComponent({mainType:`dataZoom`,subType:`select`},function(n){n.getAxisModel(e,t.componentIndex)&&(r=n)}),r}},t.prototype._dispatchZoomAction=function(e){var t=[];f5(e,function(e,n){t.push(Qk(e))}),t.length&&this.api.dispatchAction({type:`dataZoom`,from:this.uid,batch:t})},t.getDefaultOption=function(e){return{show:!0,filterMode:`filter`,icon:{zoom:`M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1`,back:`M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26`},title:e.getLocaleModel().get([`toolbox`,`dataZoom`,`title`]),brushStyle:{borderWidth:0,color:$.color.backgroundTint}}},t}(n5),uqe={zoom:function(){var e=!this._isZoomActive;this.api.dispatchAction({type:`takeGlobalCursor`,key:`dataZoomSelect`,dataZoomSelectActive:e})},back:function(){this._dispatchZoomAction(qKe(this.ecModel))}};function p5(e){var t={xAxisIndex:e.get(`xAxisIndex`,!0),yAxisIndex:e.get(`yAxisIndex`,!0),xAxisId:e.get(`xAxisId`,!0),yAxisId:e.get(`yAxisId`,!0)};return t.xAxisIndex==null&&t.xAxisId==null&&(t.xAxisIndex=`all`),t.yAxisIndex==null&&t.yAxisId==null&&(t.yAxisIndex=`all`),t}function dqe(e,t){e.setIconStatus(`back`,YKe(t)>1?`emphasis`:`normal`)}function fqe(e,t,n,r,i){var a=n._isZoomActive;r&&r.type===`takeGlobalCursor`&&(a=r.key===`dataZoomSelect`?r.dataZoomSelectActive:!1),n._isZoomActive=a,e.setIconStatus(`zoom`,a?`emphasis`:`normal`);var o=new l5(p5(e),t,{include:[`grid`]}).makePanelOpts(i,function(e){return e.xAxisDeclared&&!e.yAxisDeclared?`lineX`:!e.xAxisDeclared&&e.yAxisDeclared?`lineY`:`rect`});n._brushController.setPanels(o).enableBrush(a&&o.length?{brushType:`auto`,brushStyle:e.getModel(`brushStyle`).getItemStyle()}:!1)}LDe(`dataZoom`,function(e){var t=e.getComponent(`toolbox`,0),n=[`feature`,`dataZoom`];if(!t||t.get(n)==null)return;var r=t.getModel(n),i=[],a=tI(e,p5(r));f5(a.xAxisModels,function(e){return o(e,`xAxis`,`xAxisIndex`)}),f5(a.yAxisModels,function(e){return o(e,`yAxis`,`yAxisIndex`)});function o(e,t,n){var a=e.componentIndex,o={type:`select`,$fromToolbox:!0,filterMode:r.get(`filterMode`,!0)||`filter`,id:sqe+t+a};o[n]=a,i.push(o)}return i});function pqe(e){e.registerComponentModel(wKe),e.registerComponentView(EKe),r5(`saveAsImage`,kKe),r5(`magicType`,MKe),r5(`dataView`,HKe),r5(`dataZoom`,lqe),r5(`restore`,XKe),$K(xKe)}var mqe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`tooltip`,t.dependencies=[`axisPointer`],t.defaultOption={z:60,show:!0,showContent:!0,trigger:`item`,triggerOn:`mousemove|click|mousewheel`,alwaysShowContent:!1,renderMode:`auto`,confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,displayTransition:!0,enterable:!1,backgroundColor:$.color.neutral00,shadowBlur:10,shadowColor:`rgba(0, 0, 0, .2)`,shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,defaultBorderColor:$.color.border,padding:null,extraCssText:``,axisPointer:{type:`line`,axis:`auto`,animation:`auto`,animationDurationUpdate:200,animationEasingUpdate:`exponentialOut`,crossStyle:{color:$.color.borderShade,width:1,type:`dashed`,textStyle:{}}},textStyle:{color:$.color.tertiary,fontSize:14}},t}(sH);function hqe(e){var t=e.get(`confine`);return t==null?e.get(`renderMode`)===`richText`:!!t}function gqe(e){if(Rk.domSupported){for(var t=document.documentElement.style,n=0,r=e.length;n-1?(s+=`top:50%`,c+=`translateY(-50%) rotate(`+(l=a===`left`?-225:-45)+`deg)`):(s+=`left:50%`,c+=`translateX(-50%) rotate(`+(l=a===`top`?225:45)+`deg)`);var u=l*Math.PI/180,d=o+i,f=d*Math.abs(Math.cos(u))+d*Math.abs(Math.sin(u)),p=Math.round(((f-Math.SQRT2*i)/2+Math.SQRT2*i-(f-d)/2)*100)/100;s+=`;`+a+`:-`+p+`px`;var m=t+` solid `+i+`px;`;return`
`}function Tqe(e,t,n){var r=`cubic-bezier(0.23,1,0.32,1)`,i=``,a=``;return n&&(i=` `+e/2+`s `+r,a=`opacity`+i+`,visibility`+i),t||(i=` `+e+`s `+r,a+=(a.length?`,`:``)+(Rk.transformSupported?``+m5+i:`,left`+i+`,top`+i)),xqe+`:`+a}function Eqe(e,t,n){var r=e.toFixed(0)+`px`,i=t.toFixed(0)+`px`;if(!Rk.transformSupported)return n?`top:`+i+`;left:`+r+`;`:[[`top`,i],[`left`,r]];var a=Rk.transform3dSupported,o=`translate`+(a?`3d`:``)+`(`+r+`,`+i+(a?`,0`:``)+`)`;return n?`top:0;left:0;`+m5+`:`+o+`;`:[[`top`,0],[`left`,0],[_qe,o]]}function Dqe(e){var t=[],n=e.get(`fontSize`),r=e.getTextColor();r&&t.push(`color:`+r),t.push(`font:`+e.getFont());var i=OA(e.get(`lineHeight`),Math.round(n*3/2));n&&t.push(`line-height:`+i+`px`);var a=e.get(`textShadowColor`),o=e.get(`textShadowBlur`)||0,s=e.get(`textShadowOffsetX`)||0,c=e.get(`textShadowOffsetY`)||0;return a&&o&&t.push(`text-shadow:`+s+`px `+c+`px `+o+`px `+a),Q([`decoration`,`align`],function(n){var r=e.get(n);r&&t.push(`text-`+n+`:`+r)}),t.join(`;`)}function Oqe(e,t,n,r){var i=[],a=e.get(`transitionDuration`),o=e.get(`backgroundColor`),s=e.get(`shadowBlur`),c=e.get(`shadowColor`),l=e.get(`shadowOffsetX`),u=e.get(`shadowOffsetY`),d=e.getModel(`textStyle`),f=tW(e,`html`),p=l+`px `+u+`px `+s+`px `+c;return i.push(`box-shadow:`+p),t&&a>0&&i.push(Tqe(a,n,r)),o&&i.push(`background-color:`+o),Q([`width`,`color`,`radius`],function(t){var n=`border-`+t,r=DV(n),a=e.get(r);a!=null&&i.push(n+`:`+a+(t===`color`?``:`px`))}),i.push(Dqe(d)),f!=null&&i.push(`padding:`+OV(f).join(`px `)+`px`),i.join(`;`)+`;`}function kqe(e,t,n,r,i){var a=t&&t.painter;if(n){var o=a&&a.getViewportRoot();o&&cSe(e,o,n,r,i)}else{e[0]=r,e[1]=i;var s=a&&a.getViewportRootOffset();s&&(e[0]+=s.offsetLeft,e[1]+=s.offsetTop)}e[2]=e[0]/t.getWidth(),e[3]=e[1]/t.getHeight()}var Aqe=function(){function e(e,t){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._alwaysShowContent=!1,this._firstShow=!0,this._longHide=!0,Rk.wxa)return null;var n=document.createElement(`div`);n.domBelongToZr=!0,this.el=n;var r=this._zr=e.getZr(),i=t.appendTo,a=i&&(gA(i)?document.querySelector(i):SA(i)?i:hA(i)&&i(e.getDom()));kqe(this._styleCoord,r,a,e.getWidth()/2,e.getHeight()/2),(a||e.getDom()).appendChild(n),this._api=e,this._container=a;var o=this;n.onmouseenter=function(){o._enterable&&(clearTimeout(o._hideTimeout),o._show=!0),o._inContent=!0},n.onmousemove=function(e){if(e||=window.event,!o._enterable){var t=r.handler;Ej(r.painter.getViewportRoot(),e,!0),t.dispatch(`mousemove`,e)}},n.onmouseleave=function(){o._inContent=!1,o._enterable&&o._show&&o.hideLater(o._hideDelay)}}return e.prototype.update=function(e){if(!this._container){var t=this._api.getDom(),n=bqe(t,`position`),r=t.style;r.position!==`absolute`&&n!==`absolute`&&(r.position=`relative`)}var i=e.get(`alwaysShowContent`);i&&this._moveIfResized(),this._alwaysShowContent=i,this._enableDisplayTransition=e.get(`displayTransition`)&&e.get(`transitionDuration`)>0,this.el.className=e.get(`className`)||``},e.prototype.show=function(e,t){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,r=n.style,i=this._styleCoord;n.innerHTML?r.cssText=Sqe+Oqe(e,!this._firstShow,this._longHide,this._enableDisplayTransition)+Eqe(i[0],i[1],!0)+(`border-color:`+FV(t)+`;`)+(e.get(`extraCssText`)||``)+(`;pointer-events:`+(this._enterable?`auto`:`none`)):r.display=`none`,this._show=!0,this._firstShow=!1,this._longHide=!1},e.prototype.setContent=function(e,t,n,r,i){var a=this.el;if(e==null){a.innerHTML=``;return}var o=``;if(gA(i)&&n.get(`trigger`)===`item`&&!hqe(n)&&(o=wqe(n,r,i)),gA(e))a.innerHTML=e+o;else if(e){a.innerHTML=``,mA(e)||(e=[e]);for(var s=0;s=0?this._tryShow(n,r):t===`leave`&&this._hide(r))},this))},t.prototype._keepShow=function(){var e=this._tooltipModel,t=this._ecModel,n=this._api,r=e.get(`triggerOn`);if(e.get(`trigger`)!==`axis`&&(this._lastDataByCoordSys=null,this._cbParamsList=null),this._lastX!=null&&this._lastY!=null&&r!==`none`&&r!==`click`){var i=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!n.isDisposed()&&i.manuallyShowTip(e,t,n,{x:i._lastX,y:i._lastY,dataByCoordSys:i._lastDataByCoordSys})})}},t.prototype.manuallyShowTip=function(e,t,n,r){if(!(r.from===this.uid||Rk.node||!n.getDom())){var i=Iqe(r,n);this._ticket=``;var a=r.dataByCoordSys,o=Vqe(r,t,n);if(o){var s=o.el.getBoundingRect().clone();s.applyTransform(o.el.transform),this._tryShow({offsetX:s.x+s.width/2,offsetY:s.y+s.height/2,target:o.el,position:r.position,positionDefault:`bottom`},i)}else if(r.tooltip&&r.x!=null&&r.y!=null){var c=Pqe;c.x=r.x,c.y=r.y,c.update(),jL(c).tooltipConfig={name:null,option:r.tooltip},this._tryShow({offsetX:r.x,offsetY:r.y,target:c},i)}else if(a)this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,dataByCoordSys:a,tooltipOption:r.tooltipOption},i);else if(r.seriesIndex!=null){if(this._manuallyAxisShowTip(e,t,n,r))return;var l=GUe(r,t),u=l.point[0],d=l.point[1];u!=null&&d!=null&&this._tryShow({offsetX:u,offsetY:d,target:l.el,position:r.position,positionDefault:`bottom`},i)}else r.x!=null&&r.y!=null&&(n.dispatchAction({type:`updateAxisPointer`,x:r.x,y:r.y}),this._tryShow({offsetX:r.x,offsetY:r.y,position:r.position,target:n.getZr().findHover(r.x,r.y).target},i))}},t.prototype.manuallyHideTip=function(e,t,n,r){var i=this._tooltipContent;this._tooltipModel&&i.hideLater(this._tooltipModel.get(`hideDelay`)),this._lastX=this._lastY=this._lastDataByCoordSys=null,this._cbParamsList=null,r.from!==this.uid&&this._hide(Iqe(r,n))},t.prototype._manuallyAxisShowTip=function(e,t,n,r){var i=r.seriesIndex,a=r.dataIndex,o=t.getComponent(`axisPointer`).coordSysAxesInfo;if(!(i==null||a==null||o==null)){var s=t.getSeriesByIndex(i);if(s&&g5([s.getData().getItemModel(a),s,(s.coordinateSystem||{}).model],this._tooltipModel).get(`trigger`)===`axis`)return n.dispatchAction({type:`updateAxisPointer`,seriesIndex:i,dataIndex:a,position:r.position}),!0}},t.prototype._tryShow=function(e,t){var n=e.target;if(this._tooltipModel){this._lastX=e.offsetX,this._lastY=e.offsetY;var r=e.dataByCoordSys;if(r&&r.length)this._showAxisTooltip(r,e);else if(n){if(jL(n).ssrType===`legend`)return;this._lastDataByCoordSys=null,this._cbParamsList=null;var i,a;qW(n,function(e){if(e.tooltipDisabled)return i=a=null,!0;i||a||(jL(e).dataIndex==null?jL(e).tooltipConfig!=null&&(a=e):i=e)},!0),i?this._showSeriesItemTooltip(e,i,t):a?this._showComponentItemTooltip(e,a,t):this._hide(t)}else this._lastDataByCoordSys=null,this._cbParamsList=null,this._hide(t)}},t.prototype._showOrMove=function(e,t){var n=e.get(`showDelay`);t=fA(t,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(t,n):t()},t.prototype._showAxisTooltip=function(e,t){var n=this._ecModel,r=this._tooltipModel,i=[t.offsetX,t.offsetY],a=g5([t.tooltipOption],r),o=this._renderMode,s=[],c=qU(`section`,{blocks:[],noHeader:!0}),l=[],u=new nW;Q(e,function(e){Q(e.dataByAxis,function(e){var t=n.getComponent(e.axisDim+`Axis`,e.axisIndex),i=e.value,a=t.axis,d=a.scale.parse(i);if(!(!t||i==null)){var f=kUe(i,a,n,e.seriesDataIndices,e.valueLabelOpt),p=qU(`section`,{header:f,noHeader:!NA(f),sortBlocks:!0,blocks:[]});c.blocks.push(p),Q(e.seriesDataIndices,function(i){var a=n.getSeriesByIndex(i.seriesIndex),c=i.dataIndexInside,m=a.getDataParams(c);if(!(m.dataIndex<0)){m.axisDim=e.axisDim,m.axisIndex=e.axisIndex,m.axisType=e.axisType,m.axisId=e.axisId,m.axisValue=mJ(t.axis,{value:d}),m.axisValueLabel=f,m.marker=u.makeTooltipMarker(`item`,FV(m.color),o);var h=CU(a.formatTooltip(c,!0,null)),g=h.frag;if(g){var _=g5([a],r).get(`valueFormatter`);p.blocks.push(_?Z({valueFormatter:_},g):g)}h.text&&l.push(h.text),s.push(m)}})}})}),c.blocks.reverse(),l.reverse();var d=t.position,f=ZU(c,u,o,a.get(`order`),n.get(`useUTC`),a.get(`textStyle`));f&&l.unshift(f);var p=o===`richText`?` -`:`
`,m=l.join(p);this._showOrMove(a,function(){this._updateContentNotChangedOnAxis(e,s)?this._updatePosition(a,d,i[0],i[1],this._tooltipContent,s):this._showTooltipContent(a,m,s,Math.random()+``,i[0],i[1],d,null,u)})},t.prototype._showSeriesItemTooltip=function(e,t,n){var r=this._ecModel,i=ML(t),a=i.seriesIndex,o=r.getSeriesByIndex(a),s=i.dataModel||o,c=i.dataIndex,l=i.dataType,u=s.getData(l),d=this._renderMode,f=e.positionDefault,p=v5([u.getItemModel(c),s,o&&(o.coordinateSystem||{}).model],this._tooltipModel,f?{position:f}:null),m=p.get(`trigger`);if(!(m!=null&&m!==`item`)){var h=s.getDataParams(c,l),g=new iW;h.marker=g.makeTooltipMarker(`item`,LV(h.color),d);var _=TU(s.formatTooltip(c,!1,l)),v=p.get(`order`),y=p.get(`valueFormatter`),b=_.frag,x=b?$U(y?Z({valueFormatter:y},b):b,g,d,v,r.get(`useUTC`),p.get(`textStyle`)):_.text,S=`item_`+s.name+`_`+c;this._showOrMove(p,function(){this._showTooltipContent(p,x,h,S,e.offsetX,e.offsetY,e.position,e.target,g)}),n({type:`showTip`,dataIndexInside:c,dataIndex:u.getRawIndex(c),seriesIndex:a,from:this.uid})}},t.prototype._showComponentItemTooltip=function(e,t,n){var r=this._renderMode===`html`,i=ML(t),a=i.tooltipConfig.option||{},o=a.encodeHTMLContent;if(gA(a)){var s=a;a={content:s,formatter:s},o=!0}o&&r&&a.content&&(a=Qk(a),a.content=xj(a.content));var c=[a],l=this._ecModel.getComponent(i.componentMainType,i.componentIndex);l&&c.push(l),c.push({formatter:a.content});var u=e.positionDefault,d=v5(c,this._tooltipModel,u?{position:u}:null),f=d.get(`content`),p=Math.random()+``,m=new iW;this._showOrMove(d,function(){var n=Qk(d.get(`formatterParams`)||{});this._showTooltipContent(d,f,n,p,e.offsetX,e.offsetY,e.position,t,m)}),n({type:`showTip`,from:this.uid})},t.prototype._showTooltipContent=function(e,t,n,r,i,a,o,s,c){if(this._ticket=``,!(!e.get(`showContent`)||!e.get(`show`))){var l=this._tooltipContent;l.setEnterable(e.get(`enterable`));var u=e.get(`formatter`);o||=e.get(`position`);var d=t,f=this._getNearestPoint([i,a],n,e.get(`trigger`),e.get(`borderColor`),e.get(`defaultBorderColor`,!0)).color;if(u)if(gA(u)){var p=e.ecModel.get(`useUTC`),m=mA(n)?n[0]:n,h=m&&m.axisType&&m.axisType.indexOf(`time`)>=0;d=u,h&&(d=fV(m.axisValue,d,p)),d=PV(d,n,!0)}else if(hA(u)){var g=fA(function(t,r){t===this._ticket&&(l.setContent(r,c,e,f,o),this._updatePosition(e,o,i,a,l,n,s))},this);this._ticket=r,d=u(n,r,g)}else d=u;l.setContent(d,c,e,f,o),l.show(e,f),this._updatePosition(e,o,i,a,l,n,s)}},t.prototype._getNearestPoint=function(e,t,n,r,i){if(n===`axis`||mA(t))return{color:r||i};if(!mA(t))return{color:r||t.color||t.borderColor}},t.prototype._updatePosition=function(e,t,n,r,i,a,o){var s=this._api.getWidth(),c=this._api.getHeight();t||=e.get(`position`);var l=i.getSize(),u=e.get(`align`),d=e.get(`verticalAlign`),f=o&&o.getBoundingRect().clone();if(o&&f.applyTransform(o.transform),hA(t)&&(t=t([n,r],a,i.el,f,{viewSize:[s,c],contentSize:l.slice()})),mA(t))n=bF(t[0],s),r=bF(t[1],c);else if(yA(t)){var p=t;p.width=l[0],p.height=l[1];var m=eH(p,{width:s,height:c});n=m.x,r=m.y,u=null,d=null}else if(gA(t)&&o){var h=Lqe(t,f,l,e.get(`borderWidth`));n=h[0],r=h[1]}else{var h=Fqe(n,r,i,s,c,u?null:20,d?null:20);n=h[0],r=h[1]}if(u&&(n-=Rqe(u)?l[0]/2:u===`right`?l[0]:0),d&&(r-=Rqe(d)?l[1]/2:d===`bottom`?l[1]:0),pqe(e)){var h=Iqe(n,r,i,s,c);n=h[0],r=h[1]}i.moveTo(n,r)},t.prototype._updateContentNotChangedOnAxis=function(e,t){var n=this._lastDataByCoordSys,r=this._cbParamsList,i=!!n&&n.length===e.length;return i&&Q(n,function(n,a){var o=n.dataByAxis||[],s=(e[a]||{}).dataByAxis||[];i&&=o.length===s.length,i&&Q(o,function(e,n){var a=s[n]||{},o=e.seriesDataIndices||[],c=a.seriesDataIndices||[];i=i&&e.value===a.value&&e.axisType===a.axisType&&e.axisId===a.axisId&&o.length===c.length,i&&Q(o,function(e,t){var n=c[t];i=i&&e.seriesIndex===n.seriesIndex&&e.dataIndex===n.dataIndex}),r&&Q(e.seriesDataIndices,function(e){var n=e.seriesIndex,a=t[n],o=r[n];a&&o&&o.data!==a.data&&(i=!1)})})}),this._lastDataByCoordSys=e,this._cbParamsList=t,!!i},t.prototype._hide=function(e){this._lastDataByCoordSys=null,this._cbParamsList=null,e({type:`hideTip`,from:this.uid})},t.prototype.dispose=function(e,t){Rk.node||!t.getDom()||(wW(this,`_updatePosition`),this._tooltipContent.dispose(),d8(`itemTooltip`,t),this._tooltipContent=null,this._tooltipModel=null,this._lastDataByCoordSys=null,this._cbParamsList=null)},t.type=`tooltip`,t}(pW);function v5(e,t,n){var r=t.ecModel,i;n?(i=new zB(n,r,r),i=new zB(t.option,i,r)):i=t;for(var a=e.length-1;a>=0;a--){var o=e[a];o&&(o instanceof zB&&(o=o.get(`tooltip`,!0)),gA(o)&&(o={formatter:o}),o&&(i=new zB(o,i,r)))}return i}function Pqe(e,t){return e.dispatchAction||fA(t.dispatchAction,t)}function Fqe(e,t,n,r,i,a,o){var s=n.getSize(),c=s[0],l=s[1];return a!=null&&(e+c+a+2>r?e-=c+a:e+=a),o!=null&&(t+l+o>i?t-=l+o:t+=o),[e,t]}function Iqe(e,t,n,r,i){var a=n.getSize(),o=a[0],s=a[1];return e=Math.min(e+o,r)-o,t=Math.min(t+s,i)-s,e=Math.max(e,0),t=Math.max(t,0),[e,t]}function Lqe(e,t,n,r){var i=n[0],a=n[1],o=Math.ceil(Math.SQRT2*r)+8,s=0,c=0,l=t.width,u=t.height;switch(e){case`inside`:s=t.x+l/2-i/2,c=t.y+u/2-a/2;break;case`top`:s=t.x+l/2-i/2,c=t.y-a-o;break;case`bottom`:s=t.x+l/2-i/2,c=t.y+u+o;break;case`left`:s=t.x-i-o,c=t.y+u/2-a/2;break;case`right`:s=t.x+l+o,c=t.y+u/2-a/2}return[s,c]}function Rqe(e){return e===`center`||e===`middle`}function zqe(e,t,n){var r=rI(e).queryOptionMap,i=r.keys()[0];if(!(!i||i===`series`)){var a=aI(t,i,r.get(i),{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];if(a){var o=n.getViewOfComponentModel(a),s;if(o.group.traverse(function(t){var n=ML(t).tooltipConfig;if(n&&n.name===e.name)return s=t,!0}),s)return{componentMainType:i,componentIndex:a.componentIndex,el:s}}}}function Bqe(e){tq(p8),e.registerComponentModel(fqe),e.registerComponentView(Nqe),e.registerAction({type:`showTip`,event:`showTip`,update:`tooltip:manuallyShowTip`},WA),e.registerAction({type:`hideTip`,event:`hideTip`,update:`tooltip:manuallyHideTip`},WA)}var Vqe=[`rect`,`polygon`,`keep`,`clear`];function Hqe(e,t){var n=qF(e?e.brush:[]);if(n.length){var r=[];Q(n,function(e){var t=e.hasOwnProperty(`toolbox`)?e.toolbox:[];t instanceof Array&&(r=r.concat(t))});var i=e&&e.toolbox;mA(i)&&(i=i[0]),i||(i={feature:{}},e.toolbox=[i]);var a=i.feature||={},o=a.brush||={},s=o.type||=[];s.push.apply(s,r),gI(s,function(e){return e+``},null),t&&!s.length&&s.push.apply(s,Vqe)}}var Uqe=Q;function Wqe(e){if(e){for(var t in e)if(e.hasOwnProperty(t))return!0}}function y5(e,t,n){var r={};return Uqe(t,function(t){var a=r[t]=i();Uqe(e[t],function(e,r){if(n4.isValidType(r)){var i={type:r,visual:e};n&&n(i,t),a[r]=new n4(i),r===`opacity`&&(i=Qk(i),i.type=`colorAlpha`,a.__hidden.__alphaForOpacity=new n4(i))}})}),r;function i(){var e=function(){};return e.prototype.__hidden=e.prototype,new e}}function Gqe(e,t,n){var r;Q(n,function(e){t.hasOwnProperty(e)&&Wqe(t[e])&&(r=!0)}),r&&Q(n,function(n){t.hasOwnProperty(n)&&Wqe(t[n])?e[n]=Qk(t[n]):delete e[n]})}function Kqe(e,t,n,r,i,a){var o={};Q(e,function(e){o[e]=n4.prepareVisualTypes(t[e])});var s;function c(e){return WW(n,s,e)}function l(e,t){KW(n,s,e,t)}a==null?n.each(u):n.each([a],u);function u(e,u){s=a==null?e:u;var d=n.getRawDataItem(s);if(!(d&&d.visualMap===!1))for(var f=r.call(i,e),p=t[f],m=o[f],h=0,g=m.length;ht[0][1]&&(t[0][1]=a[0]),a[1]t[1][1]&&(t[1][1]=a[1])}return t&&oJe(t)}};function oJe(e){return new eM(e[0][0],e[1][0],e[0][1]-e[0][0],e[1][1]-e[1][0])}var sJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(e,t){this.ecModel=e,this.api=t,this.model,(this._brushController=new I3(t.getZr())).on(`brush`,fA(this._onBrush,this)).mount()},t.prototype.render=function(e,t,n,r){this.model=e,this._updateController(e,t,n,r)},t.prototype.updateTransform=function(e,t,n,r){Qqe(t),this._updateController(e,t,n,r)},t.prototype.updateVisual=function(e,t,n,r){this.updateTransform(e,t,n,r)},t.prototype.updateView=function(e,t,n,r){this._updateController(e,t,n,r)},t.prototype._updateController=function(e,t,n,r){(!r||r.$from!==e.id)&&this._brushController.setPanels(e.brushTargetManager.makePanelOpts(n)).enableBrush(e.brushOption).updateCovers(e.areas.slice())},t.prototype.dispose=function(){this._brushController.dispose()},t.prototype._onBrush=function(e){var t=this.model.id,n=this.model.brushTargetManager.setOutputRanges(e.areas,this.ecModel);(!e.isEnd||e.removeOnClick)&&this.api.dispatchAction({type:`brush`,brushId:t,areas:Qk(n),$from:t}),e.isEnd&&this.api.dispatchAction({type:`brushEnd`,brushId:t,areas:Qk(n),$from:t})},t.type=`brush`,t}(pW),cJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.areas=[],n.brushOption={},n}return t.prototype.optionUpdated=function(e,t){var n=this.option;!t&&Gqe(n,e,[`inBrush`,`outOfBrush`]);var r=n.inBrush=n.inBrush||{};n.outOfBrush=n.outOfBrush||{color:this.option.defaultOutOfBrushColor},r.hasOwnProperty(`liftZ`)||(r.liftZ=5)},t.prototype.setAreas=function(e){e&&(this.areas=sA(e,function(e){return lJe(this.option,e)},this))},t.prototype.setBrushOption=function(e){this.brushOption=lJe(this.option,e),this.brushType=this.brushOption.brushType},t.type=`brush`,t.dependencies=[`geo`,`grid`,`xAxis`,`yAxis`,`parallel`,`series`],t.defaultOption={seriesIndex:`all`,brushType:`rect`,brushMode:`single`,transformable:!0,brushStyle:{borderWidth:1,color:$.color.backgroundTint,borderColor:$.color.borderTint},throttleType:`fixRate`,throttleDelay:0,removeOnClick:!0,z:1e4,defaultOutOfBrushColor:$.color.disabled},t}(lH);function lJe(e,t){return $k({brushType:e.brushType,brushMode:e.brushMode,transformable:e.transformable,brushStyle:new zB(e.brushStyle).getItemStyle(),removeOnClick:e.removeOnClick,z:e.z},t,!0)}var uJe=[`rect`,`polygon`,`lineX`,`lineY`,`keep`,`clear`],dJe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.render=function(e,t,n){var r,i,a;t.eachComponent({mainType:`brush`},function(e){r=e.brushType,i=e.brushOption.brushMode||`single`,a||=!!e.areas.length}),this._brushType=r,this._brushMode=i,Q(e.get(`type`,!0),function(t){e.setIconStatus(t,(t===`keep`?i===`multiple`:t===`clear`?a:t===r)?`emphasis`:`normal`)})},t.prototype.updateView=function(e,t,n){this.render(e,t,n)},t.prototype.getIcons=function(){var e=this.model,t=e.get(`icon`,!0),n={};return Q(e.get(`type`,!0),function(e){t[e]&&(n[e]=t[e])}),n},t.prototype.onclick=function(e,t,n){var r=this._brushType,i=this._brushMode;n===`clear`?(t.dispatchAction({type:`axisAreaSelect`,intervals:[]}),t.dispatchAction({type:`brush`,command:`clear`,areas:[]})):t.dispatchAction({type:`takeGlobalCursor`,key:`brush`,brushOption:{brushType:n===`keep`?r:r===n?!1:n,brushMode:n===`keep`?i===`multiple`?`single`:`multiple`:i}})},t.getDefaultOption=function(e){return{show:!0,type:uJe.slice(),icon:{rect:`M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13`,polygon:`M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2`,lineX:`M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4`,lineY:`M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4`,keep:`M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z`,clear:`M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2`},title:e.getLocaleModel().get([`toolbox`,`brush`,`title`])}},t}(i5);function fJe(e){e.registerComponentView(sJe),e.registerComponentModel(cJe),e.registerPreprocessor(Hqe),e.registerVisual(e.PRIORITY.VISUAL.BRUSH,$qe),e.registerAction({type:`brush`,event:`brush`,update:`updateVisual`},function(e,t){t.eachComponent({mainType:`brush`,query:e},function(t){t.setAreas(e.areas)})}),e.registerAction({type:`brushSelect`,event:`brushSelected`,update:`none`},WA),e.registerAction({type:`brushEnd`,event:`brushEnd`,update:`none`},WA),a5(`brush`,dJe)}var pJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.layoutMode={type:`box`,ignoreSize:!0},n}return t.type=`title`,t.defaultOption={z:6,show:!0,text:``,target:`blank`,subtext:``,subtarget:`blank`,left:`center`,top:$.size.m,backgroundColor:$.color.transparent,borderColor:$.color.primary,borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:`bold`,color:$.color.primary},subtextStyle:{fontSize:12,color:$.color.quaternary}},t}(lH),mJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){if(this.group.removeAll(),e.get(`show`)){var r=this.group,i=e.getModel(`textStyle`),a=e.getModel(`subtextStyle`),o=e.get(`textAlign`),s=OA(e.get(`textBaseline`),e.get(`textVerticalAlign`)),c=new AL({style:wB(i,{text:e.get(`text`),fill:i.getTextColor()},{disableBox:!0}),z2:10}),l=c.getBoundingRect(),u=e.get(`subtext`),d=new AL({style:wB(a,{text:u,fill:a.getTextColor(),y:l.height+e.get(`itemGap`),verticalAlign:`top`},{disableBox:!0}),z2:10}),f=e.get(`link`),p=e.get(`sublink`),m=e.get(`triggerEvent`,!0);c.silent=!f&&!m,d.silent=!p&&!m,f&&c.on(`click`,function(){RV(f,`_`+e.get(`target`))}),p&&d.on(`click`,function(){RV(p,`_`+e.get(`subtarget`))}),ML(c).eventData=ML(d).eventData=m?{componentType:`title`,componentIndex:e.componentIndex}:null,r.add(c),u&&r.add(d);var h=r.getBoundingRect(),g=e.getBoxLayoutParams();g.width=h.width,g.height=h.height;var _=eH(g,rH(e,n).refContainer,e.get(`padding`));o||(o=e.get(`left`)||e.get(`right`),o===`middle`&&(o=`center`),o===`right`?_.x+=_.width:o===`center`&&(_.x+=_.width/2)),s||(s=e.get(`top`)||e.get(`bottom`),s===`center`&&(s=`middle`),s===`bottom`?_.y+=_.height:s===`middle`&&(_.y+=_.height/2),s||=`top`),r.x=_.x,r.y=_.y,r.markRedraw();var v={align:o,verticalAlign:s};c.setStyle(v),d.setStyle(v),h=r.getBoundingRect();var y=_.margin,b=e.getItemStyle([`color`,`opacity`]);b.fill=e.get(`backgroundColor`);var x=new OL({shape:{x:h.x-y[3],y:h.y-y[0],width:h.width+y[1]+y[3],height:h.height+y[0]+y[2],r:e.get(`borderRadius`)},style:b,subPixelOptimize:!0,silent:!0});r.add(x)}},t.type=`title`,t}(pW);function hJe(e){e.registerComponentModel(pJe),e.registerComponentView(mJe)}var gJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.layoutMode=`box`,n}return t.prototype.init=function(e,t,n){this.mergeDefaultAndTheme(e,n),this._initData()},t.prototype.mergeOption=function(t){e.prototype.mergeOption.apply(this,arguments),this._initData()},t.prototype.setCurrentIndex=function(e){e??=this.option.currentIndex;var t=this._data.count();this.option.loop?e=(e%t+t)%t:(e>=t&&(e=t-1),e<0&&(e=0)),this.option.currentIndex=e},t.prototype.getCurrentIndex=function(){return this.option.currentIndex},t.prototype.isIndexMax=function(){return this.getCurrentIndex()>=this._data.count()-1},t.prototype.setPlayState=function(e){this.option.autoPlay=!!e},t.prototype.getPlayState=function(){return!!this.option.autoPlay},t.prototype._initData=function(){var e=this.option,t=e.data||[],n=e.axisType,r=this._names=[],i;n===`category`?(i=[],Q(t,function(e,t){var n=ZF(YF(e),``),a;yA(e)?(a=Qk(e),a.value=t):a=t,i.push(a),r.push(n)})):i=t;var a={category:`ordinal`,time:`time`,value:`number`}[n]||`number`;(this._data=new Cq([{name:`value`,type:a}],this)).initData(i,r)},t.prototype.getData=function(){return this._data},t.prototype.getCategories=function(){if(this.get(`axisType`)===`category`)return this._names.slice()},t.type=`timeline`,t.defaultOption={z:4,show:!0,axisType:`time`,realtime:!0,left:`20%`,top:null,right:`20%`,bottom:0,width:null,height:40,padding:$.size.m,controlPosition:`left`,autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:$.color.secondary},data:[]},t}(lH),_Je=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`timeline.slider`,t.defaultOption=VB(gJe.defaultOption,{backgroundColor:`rgba(0,0,0,0)`,borderColor:$.color.border,borderWidth:0,orient:`horizontal`,inverse:!1,tooltip:{trigger:`item`},symbol:`circle`,symbolSize:12,lineStyle:{show:!0,width:2,color:$.color.accent10},label:{position:`auto`,show:!0,interval:`auto`,rotate:0,color:$.color.tertiary},itemStyle:{color:$.color.accent20,borderWidth:0},checkpointStyle:{symbol:`circle`,symbolSize:15,color:$.color.accent50,borderColor:$.color.accent50,borderWidth:0,shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:`rgba(0, 0, 0, 0)`,animation:!0,animationDuration:300,animationEasing:`quinticInOut`},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:24,itemGap:12,position:`left`,playIcon:`path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10.6699C11.5 9.90014 12.3333 9.41887 13 9.80371L20.5 14.1338C21.1667 14.5187 21.1667 15.4813 20.5 15.8662L13 20.1963C12.3333 20.5811 11.5 20.0999 11.5 19.3301V10.6699Z`,stopIcon:`path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10C12.3284 10 13 10.6716 13 11.5V18.5C13 19.3284 12.3284 20 11.5 20C10.6716 20 10 19.3284 10 18.5V11.5C10 10.6716 10.6716 10 11.5 10ZM18.5 10C19.3284 10 20 10.6716 20 11.5V18.5C20 19.3284 19.3284 20 18.5 20C17.6716 20 17 19.3284 17 18.5V11.5C17 10.6716 17.6716 10 18.5 10Z`,nextIcon:`path://M0.838834 18.7383C0.253048 18.1525 0.253048 17.2028 0.838834 16.617L7.55635 9.89949L0.838834 3.18198C0.253048 2.59619 0.253048 1.64645 0.838834 1.06066C1.42462 0.474874 2.37437 0.474874 2.96015 1.06066L10.7383 8.83883L10.8412 8.95277C11.2897 9.50267 11.2897 10.2963 10.8412 10.8462L10.7383 10.9602L2.96015 18.7383C2.37437 19.3241 1.42462 19.3241 0.838834 18.7383Z`,prevIcon:`path://M10.9602 1.06066C11.5459 1.64645 11.5459 2.59619 10.9602 3.18198L4.24264 9.89949L10.9602 16.617C11.5459 17.2028 11.5459 18.1525 10.9602 18.7383C10.3744 19.3241 9.42462 19.3241 8.83883 18.7383L1.06066 10.9602L0.957771 10.8462C0.509245 10.2963 0.509245 9.50267 0.957771 8.95277L1.06066 8.83883L8.83883 1.06066C9.42462 0.474874 10.3744 0.474874 10.9602 1.06066Z`,prevBtnSize:18,nextBtnSize:18,color:$.color.accent50,borderColor:$.color.accent50,borderWidth:0},emphasis:{label:{show:!0,color:$.color.accent60},itemStyle:{color:$.color.accent60,borderColor:$.color.accent60},controlStyle:{color:$.color.accent70,borderColor:$.color.accent70}},progress:{lineStyle:{color:$.color.accent30},itemStyle:{color:$.color.accent40}},data:[]}),t}(gJe);aA(_Je,wU.prototype);var vJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`timeline`,t}(pW),yJe=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this,t,n,r)||this;return a.type=i||`value`,a}return t.prototype.getLabelModel=function(){return this.model.getModel(`label`)},t.prototype.isHorizontal=function(){return this.model.get(`orient`)===`horizontal`},t}(xY),C5=Math.PI,bJe=tI(),xJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(e,t){this.api=t},t.prototype.render=function(e,t,n){if(this.model=e,this.api=n,this.ecModel=t,this.group.removeAll(),e.get(`show`,!0)){var r=this._layout(e,n),i=this._createGroup(`_mainGroup`),a=this._createGroup(`_labelGroup`),o=this._axis=this._createAxis(r,e);e.formatTooltip=function(e){return YU(`nameValue`,{noName:!0,value:o.scale.getLabel({value:e})})},Q([`AxisLine`,`AxisTick`,`Control`,`CurrentPointer`],function(t){this[`_render`+t](r,i,o,e)},this),this._renderAxisLabel(r,a,o,e),this._position(r,e)}this._doPlayStop(),this._updateTicksStatus()},t.prototype.remove=function(){this._clearTimer(),this.group.removeAll()},t.prototype.dispose=function(){this._clearTimer()},t.prototype._layout=function(e,t){var n=e.get([`label`,`position`]),r=e.get(`orient`),i=SJe(e,t),a=n==null||n===`auto`?r===`horizontal`?i.y+i.height/2=0||a===`+`?`left`:`right`},s={horizontal:a>=0||a===`+`?`top`:`bottom`,vertical:`middle`},c={horizontal:0,vertical:C5/2},l=r===`vertical`?i.height:i.width,u=e.getModel(`controlStyle`),d=u.get(`show`,!0),f=d?u.get(`itemSize`):0,p=d?u.get(`itemGap`):0,m=f+p,h=e.get([`label`,`rotate`])||0;h=h*C5/180;var g,_,v,y=u.get(`position`,!0),b=d&&u.get(`showPlayBtn`,!0),x=d&&u.get(`showPrevBtn`,!0),S=d&&u.get(`showNextBtn`,!0),C=0,w=l;y===`left`||y===`bottom`?(b&&(g=[0,0],C+=m),x&&(_=[C,0],C+=m),S&&(v=[w-f,0],w-=m)):(b&&(g=[w-f,0],w-=m),x&&(_=[0,0],C+=m),S&&(v=[w-f,0],w-=m));var T=[C,w];return e.get(`inverse`)&&T.reverse(),{viewRect:i,mainLength:l,orient:r,rotation:c[r],labelRotation:h,labelPosOpt:a,labelAlign:e.get([`label`,`align`])||o[r],labelBaseline:e.get([`label`,`verticalAlign`])||e.get([`label`,`baseline`])||s[r],playPosition:g,prevBtnPosition:_,nextBtnPosition:v,axisExtent:T,controlSize:f,controlGap:p}},t.prototype._position=function(e,t){var n=this._mainGroup,r=this._labelGroup,i=e.viewRect;if(e.orient===`vertical`){var a=Mj(),o=i.x,s=i.y+i.height;Ij(a,a,[-o,-s]),Lj(a,a,-C5/2),Ij(a,a,[o,s]),i=i.clone(),i.applyTransform(a)}var c=g(i),l=g(n.getBoundingRect()),u=g(r.getBoundingRect()),d=[n.x,n.y],f=[r.x,r.y];f[0]=d[0]=c[0][0];var p=e.labelPosOpt;if(p==null||gA(p)){var m=p===`+`?0:1;_(d,l,c,1,m),_(f,u,c,1,1-m)}else{var m=p>=0?0:1;_(d,l,c,1,m),f[1]=d[1]+p}n.setPosition(d),r.setPosition(f),n.rotation=r.rotation=e.rotation,h(n),h(r);function h(e){e.originX=c[0][0]-e.x,e.originY=c[1][0]-e.y}function g(e){return[[e.x,e.x+e.width],[e.y,e.y+e.height]]}function _(e,t,n,r,i){e[r]+=n[r][i]-t[r][i]}},t.prototype._createAxis=function(e,t){var n=t.getData(),r=t.get(`axisType`)||t.get(`type`);r!==`category`&&r!==`time`&&(r=`value`);var i=mJ(t,r,!1);i.getTicks=function(){return n.mapArray([`value`],function(e){return{value:e}})};var a=n.getDataExtent(`value`);i.setExtent(a[0],a[1]),ZJ(i,{fixMinMax:[!0,!0]});var o=new yJe(`value`,i,e.axisExtent,r);return o.model=t,o},t.prototype._createGroup=function(e){var t=this[e]=new $P;return this.group.add(t),t},t.prototype._renderAxisLine=function(e,t,n,r){var i=n.getExtent();if(r.get([`lineStyle`,`show`])){var a=new tz({shape:{x1:i[0],y1:0,x2:i[1],y2:0},style:Z({lineCap:`round`},r.getModel(`lineStyle`).getLineStyle()),silent:!0,z2:1});t.add(a);var o=this._progressLine=new tz({shape:{x1:i[0],x2:this._currentPointer?this._currentPointer.x:i[0],y1:0,y2:0},style:nA({lineCap:`round`,lineWidth:a.style.lineWidth},r.getModel([`progress`,`lineStyle`]).getLineStyle()),silent:!0,z2:1});t.add(o)}},t.prototype._renderAxisTick=function(e,t,n,r){var i=this,a=r.getData(),o=n.scale.getTicks();this._tickSymbols=[],Q(o,function(e){var o=n.dataToCoord(e.value),s=a.getItemModel(e.value),c=s.getModel(`itemStyle`),l=s.getModel([`emphasis`,`itemStyle`]),u=s.getModel([`progress`,`itemStyle`]),d=wJe(s,c,t,{x:o,y:0,onclick:fA(i._changeTimeline,i,e.value)});d.ensureState(`emphasis`).style=l.getItemStyle(),d.ensureState(`progress`).style=u.getItemStyle(),fR(d);var f=ML(d);s.get(`tooltip`)?(f.dataIndex=e.value,f.dataModel=r):f.dataIndex=f.dataModel=null,i._tickSymbols.push(d)})},t.prototype._renderAxisLabel=function(e,t,n,r){var i=this;if(n.getLabelModel().get(`show`)){var a=r.getData(),o=n.getViewLabels();this._tickLabels=[],Q(o,function(r){if(!r.tick.offInterval){var o=r.tick.value,s=a.getItemModel(o),c=s.getModel(`label`),l=s.getModel([`emphasis`,`label`]),u=s.getModel([`progress`,`label`]),d=new AL({x:n.dataToCoord(o),y:0,rotation:e.labelRotation-e.rotation,onclick:fA(i._changeTimeline,i,o),silent:!1,style:wB(c,{text:r.formattedLabel,align:e.labelAlign,verticalAlign:e.labelBaseline})});d.ensureState(`emphasis`).style=wB(l),d.ensureState(`progress`).style=wB(u),t.add(d),fR(d),bJe(d).dataIndex=o,i._tickLabels.push(d)}})}},t.prototype._renderControl=function(e,t,n,r){var i=e.controlSize,a=e.rotation,o=r.getModel(`controlStyle`).getItemStyle(),s=r.getModel([`emphasis`,`controlStyle`]).getItemStyle(),c=r.getPlayState(),l=r.get(`inverse`,!0);u(e.nextBtnPosition,`next`,fA(this._changeTimeline,this,l?`-`:`+`)),u(e.prevBtnPosition,`prev`,fA(this._changeTimeline,this,l?`+`:`-`)),u(e.playPosition,c?`stop`:`play`,fA(this._handlePlayClick,this,!c),!0);function u(e,n,c,l){if(e){var u=BP(OA(r.get([`controlStyle`,n+`BtnSize`]),i),i),d=[0,-u/2,u,u],f=CJe(r,n+`Icon`,d,{x:e[0],y:e[1],originX:i/2,originY:0,rotation:l?-a:0,rectHover:!0,style:o,onclick:c});f.ensureState(`emphasis`).style=s,t.add(f),fR(f)}}},t.prototype._renderCurrentPointer=function(e,t,n,r){var i=r.getData(),a=r.getCurrentIndex(),o=i.getItemModel(a).getModel(`checkpointStyle`),s=this,c={onCreate:function(e){e.draggable=!0,e.drift=fA(s._handlePointerDrag,s),e.ondragend=fA(s._handlePointerDragend,s),TJe(e,s._progressLine,a,n,r,!0)},onUpdate:function(e){TJe(e,s._progressLine,a,n,r)}};this._currentPointer=wJe(o,o,this._mainGroup,{},this._currentPointer,c)},t.prototype._handlePlayClick=function(e){this._clearTimer(),this.api.dispatchAction({type:`timelinePlayChange`,playState:e,from:this.uid})},t.prototype._handlePointerDrag=function(e,t,n){this._clearTimer(),this._pointerChangeTimeline([n.offsetX,n.offsetY])},t.prototype._handlePointerDragend=function(e){this._pointerChangeTimeline([e.offsetX,e.offsetY],!0)},t.prototype._pointerChangeTimeline=function(e,t){var n=this._toAxisCoord(e)[0],r=this._axis,i=wF(r.getExtent().slice());n>i[1]&&(n=i[1]),n=0&&(s[o]=+s[o].toFixed(f)),[s,d]}var j5={min:pA(A5,`min`),max:pA(A5,`max`),average:pA(A5,`average`),median:pA(A5,`median`)};function M5(e,t){if(t){var n=e.getData(),r=e.coordinateSystem,i=r&&r.dimensions;if(!MJe(t)&&!mA(t.coord)&&mA(i)){var a=NJe(t,n,r,e);if(t=Qk(t),t.type&&j5[t.type]&&a.baseAxis&&a.valueAxis){var o=rA(i,a.baseAxis.dim),s=rA(i,a.valueAxis.dim),c=j5[t.type](n,a.valueAxis.dim,a.baseDataDim,a.valueDataDim,o,s);t.coord=c[0],t.value=c[1]}else t.coord=[t.xAxis==null?t.radiusAxis:t.xAxis,t.yAxis==null?t.angleAxis:t.yAxis]}if(t.coord==null||!mA(i)){t.coord=[];var l=e.getBaseAxis();if(l&&t.type&&j5[t.type]){var u=r.getOtherAxis(l);u&&(t.value=P5(n,n.mapDimension(u.dim),t.type))}}else for(var d=t.coord,f=0;f<2;f++)j5[d[f]]&&(d[f]=P5(n,n.mapDimension(i[f]),d[f]));return t}}function NJe(e,t,n,r){var i={};return e.valueIndex!=null||e.valueDim!=null?(i.valueDataDim=e.valueIndex==null?e.valueDim:t.getDimension(e.valueIndex),i.valueAxis=n.getAxis(PJe(r,i.valueDataDim)),i.baseAxis=n.getOtherAxis(i.valueAxis),i.baseDataDim=t.mapDimension(i.baseAxis.dim)):(i.baseAxis=r.getBaseAxis(),i.valueAxis=n.getOtherAxis(i.baseAxis),i.baseDataDim=t.mapDimension(i.baseAxis.dim),i.valueDataDim=t.mapDimension(i.valueAxis.dim)),i}function PJe(e,t){var n=e.getData().getDimensionInfo(t);return n&&n.coordDim}function N5(e,t){return e&&e.containData&&t.coord&&!k5(t)?e.containData(t.coord):!0}function FJe(e,t,n){return e&&e.containZone&&t.coord&&n.coord&&!k5(t)&&!k5(n)?e.containZone(t.coord,n.coord):!0}function IJe(e,t){return e?function(e,n,r,i){return OU(i<2?e.coord&&e.coord[i]:e.value,t[i])}:function(e,n,r,i){return OU(e.value,t[i])}}function P5(e,t,n){if(n===`average`){var r=0,i=0;return e.each(t,function(e,t){isNaN(e)||(r+=e,i++)}),r/i}else if(n===`median`)return e.getMedian(t);else return e.getDataExtent(t)[+(n===`max`)]}var F5=tI(),I5=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(){this.markerGroupMap=zA()},t.prototype.render=function(e,t,n){var r=this,i=this.markerGroupMap;i.each(function(e){F5(e).keep=!1}),t.eachSeries(function(e){var i=O5.getMarkerModelFromSeries(e,r.type);i&&r.renderSeries(e,i,t,n)}),i.each(function(e){!F5(e).keep&&r.group.remove(e.group)}),LJe(t,i,this.type)},t.prototype.markKeep=function(e){F5(e).keep=!0},t.prototype.toggleBlurSeries=function(e,t){var n=this;Q(e,function(e){var r=O5.getMarkerModelFromSeries(e,n.type);r&&r.getData().eachItemGraphicEl(function(e){e&&(t?nR(e):rR(e))})})},t.type=`marker`,t}(pW);function LJe(e,t,n){e.eachSeries(function(e){var r=O5.getMarkerModelFromSeries(e,n),i=t.get(e.id);if(r&&i&&i.group){var a=dB(r),o=a.z,s=a.zlevel;pB(i.group,o,s)}})}function RJe(e,t,n){var r=t.coordinateSystem,i=n.getWidth(),a=n.getHeight(),o=r&&r.getArea&&r.getArea();e.each(function(n){var s=e.getItemModel(n),c=s.get(`relativeTo`)===`coordinate`,l=c?o?o.width:0:i,u=c?o?o.height:0:a,d=c&&o?o.x:0,f=c&&o?o.y:0,p,m=bF(s.get(`x`),l)+d,h=bF(s.get(`y`),u)+f;if(!isNaN(m)&&!isNaN(h))p=[m,h];else if(t.getMarkerPosition)p=t.getMarkerPosition(e.getValues(e.dimensions,n));else if(r){var g=e.get(r.dimensions[0],n),_=e.get(r.dimensions[1],n);p=r.dataToPoint([g,_])}isNaN(m)||(p[0]=m),isNaN(h)||(p[1]=h),e.setItemLayout(n,p)})}var zJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.updateTransform=function(e,t,n){t.eachSeries(function(e){var t=O5.getMarkerModelFromSeries(e,`markPoint`);t&&(RJe(t.getData(),e,n),this.markerGroupMap.get(e.id).updateLayout())},this)},t.prototype.renderSeries=function(e,t,n,r){var i=e.coordinateSystem,a=e.id,o=e.getData(),s=this.markerGroupMap,c=s.get(a)||s.set(a,new EZ),l=BJe(i,e,t);t.setData(l),RJe(t.getData(),e,r),l.each(function(e){var n=l.getItemModel(e),r=n.getShallow(`symbol`),i=n.getShallow(`symbolSize`),a=n.getShallow(`symbolRotate`),s=n.getShallow(`symbolOffset`),c=n.getShallow(`symbolKeepAspect`);if(hA(r)||hA(i)||hA(a)||hA(s)){var u=t.getRawValue(e),d=t.getDataParams(e);hA(r)&&(r=r(u,d)),hA(i)&&(i=i(u,d)),hA(a)&&(a=a(u,d)),hA(s)&&(s=s(u,d))}var f=n.getModel(`itemStyle`).getItemStyle(),p=n.get(`z2`),m=GW(o,`color`);f.fill||=m,l.setItemVisual(e,{z2:OA(p,0),symbol:r,symbolSize:i,symbolRotate:a,symbolOffset:s,symbolKeepAspect:c,style:f})}),c.updateData(l),this.group.add(c.group),l.eachItemGraphicEl(function(e){e.traverse(function(e){ML(e).dataModel=t})}),this.markKeep(c),c.group.silent=t.get(`silent`)||e.get(`silent`)},t.type=`markPoint`,t}(I5);function BJe(e,t,n){var r=e?sA(e&&e.dimensions,function(e){var n=t.getData();return Z(Z({},n.getDimensionInfo(n.mapDimension(e))||{}),{name:e,ordinalMeta:null})}):[{name:`value`,type:`float`}],i=new Cq(r,n),a=sA(n.get(`data`),pA(M5,t));e&&(a=lA(a,pA(N5,e)));var o=IJe(!!e,r);return i.initData(a,null,o),i}function VJe(e){e.registerComponentModel(jJe),e.registerComponentView(zJe),e.registerPreprocessor(function(e){T5(e.series,`markPoint`)&&(e.markPoint=e.markPoint||{})})}var HJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.createMarkerModelFromSeries=function(e,n,r){return new t(e,n,r)},t.type=`markLine`,t.defaultOption={z:5,symbol:[`circle`,`arrow`],symbolSize:[8,16],symbolOffset:0,precision:2,tooltip:{trigger:`item`},label:{show:!0,position:`end`,distance:5},lineStyle:{type:`dashed`},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:`linear`},t}(O5),L5=tI(),UJe=function(e,t,n,r){var i=e.getData(),a;if(mA(r))a=r;else{var o=r.type;if(o===`min`||o===`max`||o===`average`||o===`median`||r.xAxis!=null||r.yAxis!=null){var s=void 0,c=void 0;if(r.yAxis!=null||r.xAxis!=null)s=t.getAxis(r.yAxis==null?`x`:`y`),c=DA(r.yAxis,r.xAxis);else{var l=NJe(r,i,t,e);s=l.valueAxis,c=P5(i,Oq(i,l.valueDataDim),o)}var u=s.dim===`x`?0:1,d=1-u,f=Qk(r),p={coord:[]};f.type=null,f.coord=[],f.coord[d]=-1/0,p.coord[d]=1/0;var m=n.get(`precision`);m>=0&&vA(c)&&(c=+c.toFixed(Math.min(m,20))),f.coord[u]=p.coord[u]=c,a=[f,p,{type:o,valueIndex:r.valueIndex,value:c}]}else a=[]}var h=[M5(e,a[0]),M5(e,a[1]),Z({},a[2])];return h[2].type=h[2].type||null,$k(h[2],h[0]),$k(h[2],h[1]),h};function R5(e){return!isNaN(e)&&!isFinite(e)}function WJe(e,t,n,r){var i=1-e,a=r.dimensions[e];return R5(t[i])&&R5(n[i])&&t[e]===n[e]&&r.getAxis(a).containData(t[e])}function GJe(e,t){if(e.type===`cartesian2d`){var n=t[0].coord,r=t[1].coord;if(n&&r&&(WJe(1,n,r,e)||WJe(0,n,r,e)))return!0}return N5(e,t[0])&&N5(e,t[1])}function z5(e,t,n,r,i){var a=r.coordinateSystem,o=e.getItemModel(t),s,c=bF(o.get(`x`),i.getWidth()),l=bF(o.get(`y`),i.getHeight());if(!isNaN(c)&&!isNaN(l))s=[c,l];else{if(r.getMarkerPosition)s=r.getMarkerPosition(e.getValues(e.dimensions,t));else{var u=a.dimensions,d=e.get(u[0],t),f=e.get(u[1],t);s=a.dataToPoint([d,f])}if(HZ(a,`cartesian2d`)){var p=a.getAxis(`x`),m=a.getAxis(`y`),u=a.dimensions;R5(e.get(u[0],t))?s[0]=p.toGlobalCoord(p.getExtent()[+!n]):R5(e.get(u[1],t))&&(s[1]=m.toGlobalCoord(m.getExtent()[+!n]))}isNaN(c)||(s[0]=c),isNaN(l)||(s[1]=l)}e.setItemLayout(t,s)}var KJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.updateTransform=function(e,t,n){t.eachSeries(function(e){var t=O5.getMarkerModelFromSeries(e,`markLine`);if(t){var r=t.getData(),i=L5(t).from,a=L5(t).to;i.each(function(t){z5(i,t,!0,e,n),z5(a,t,!1,e,n)}),r.each(function(e){r.setItemLayout(e,[i.getItemLayout(e),a.getItemLayout(e)])}),this.markerGroupMap.get(e.id).updateLayout()}},this)},t.prototype.renderSeries=function(e,t,n,r){var i=e.coordinateSystem,a=e.id,o=e.getData(),s=this.markerGroupMap,c=s.get(a)||s.set(a,new Q4);this.group.add(c.group);var l=qJe(i,e,t),u=l.from,d=l.to,f=l.line;L5(t).from=u,L5(t).to=d,t.setData(f);var p=t.get(`symbol`),m=t.get(`symbolSize`),h=t.get(`symbolRotate`),g=t.get(`symbolOffset`);mA(p)||(p=[p,p]),mA(m)||(m=[m,m]),mA(h)||(h=[h,h]),mA(g)||(g=[g,g]),l.from.each(function(e){_(u,e,!0),_(d,e,!1)}),f.each(function(e){var t=f.getItemModel(e),n=t.getModel(`lineStyle`).getLineStyle();f.setItemLayout(e,[u.getItemLayout(e),d.getItemLayout(e)]);var r=t.get(`z2`);n.stroke??=u.getItemVisual(e,`style`).fill,f.setItemVisual(e,{z2:OA(r,0),fromSymbolKeepAspect:u.getItemVisual(e,`symbolKeepAspect`),fromSymbolOffset:u.getItemVisual(e,`symbolOffset`),fromSymbolRotate:u.getItemVisual(e,`symbolRotate`),fromSymbolSize:u.getItemVisual(e,`symbolSize`),fromSymbol:u.getItemVisual(e,`symbol`),toSymbolKeepAspect:d.getItemVisual(e,`symbolKeepAspect`),toSymbolOffset:d.getItemVisual(e,`symbolOffset`),toSymbolRotate:d.getItemVisual(e,`symbolRotate`),toSymbolSize:d.getItemVisual(e,`symbolSize`),toSymbol:d.getItemVisual(e,`symbol`),style:n})}),c.updateData(f),l.line.eachItemGraphicEl(function(e){ML(e).dataModel=t,e.traverse(function(e){ML(e).dataModel=t})});function _(t,n,i){var a=t.getItemModel(n);z5(t,n,i,e,r);var s=a.getModel(`itemStyle`).getItemStyle();s.fill??=GW(o,`color`),t.setItemVisual(n,{symbolKeepAspect:a.get(`symbolKeepAspect`),symbolOffset:OA(a.get(`symbolOffset`,!0),g[+!i]),symbolRotate:OA(a.get(`symbolRotate`,!0),h[+!i]),symbolSize:OA(a.get(`symbolSize`),m[+!i]),symbol:OA(a.get(`symbol`,!0),p[+!i]),style:s})}this.markKeep(c),c.group.silent=t.get(`silent`)||e.get(`silent`)},t.type=`markLine`,t}(I5);function qJe(e,t,n){var r=e?sA(e&&e.dimensions,function(e){var n=t.getData();return Z(Z({},n.getDimensionInfo(n.mapDimension(e))||{}),{name:e,ordinalMeta:null})}):[{name:`value`,type:`float`}],i=new Cq(r,n),a=new Cq(r,n),o=new Cq([],n),s=sA(n.get(`data`),pA(UJe,t,e,n));e&&(s=lA(s,pA(GJe,e)));var c=IJe(!!e,r);return i.initData(sA(s,function(e){return e[0]}),null,c),a.initData(sA(s,function(e){return e[1]}),null,c),o.initData(sA(s,function(e){return e[2]})),o.hasItemOption=!0,{from:i,to:a,line:o}}function JJe(e){e.registerComponentModel(HJe),e.registerComponentView(KJe),e.registerPreprocessor(function(e){T5(e.series,`markLine`)&&(e.markLine=e.markLine||{})})}var YJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.createMarkerModelFromSeries=function(e,n,r){return new t(e,n,r)},t.type=`markArea`,t.defaultOption={z:1,tooltip:{trigger:`item`},animation:!1,label:{show:!0,position:`top`},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:`top`}}},t}(O5),B5=tI(),XJe=function(e,t,n,r){var i=r[0],a=r[1];if(!(!i||!a)){var o=M5(e,i),s=M5(e,a),c=o.coord,l=s.coord;c[0]=DA(c[0],-1/0),c[1]=DA(c[1],-1/0),l[0]=DA(l[0],1/0),l[1]=DA(l[1],1/0);var u=eA([{},o,s]);return u.coord=[o.coord,s.coord],u.x0=o.x,u.y0=o.y,u.x1=s.x,u.y1=s.y,u}};function V5(e){return!isNaN(e)&&!isFinite(e)}function ZJe(e,t,n,r){var i=1-e;return V5(t[i])&&V5(n[i])}function QJe(e,t){var n=t.coord[0],r=t.coord[1],i={coord:n,x:t.x0,y:t.y0},a={coord:r,x:t.x1,y:t.y1};return HZ(e,`cartesian2d`)?n&&r&&(ZJe(1,n,r,e)||ZJe(0,n,r,e))?!0:FJe(e,i,a):N5(e,i)||N5(e,a)}function $Je(e,t,n,r,i){var a=r.coordinateSystem,o=e.getItemModel(t),s,c=bF(o.get(n[0]),i.getWidth()),l=bF(o.get(n[1]),i.getHeight());if(!isNaN(c)&&!isNaN(l))s=[c,l];else{if(r.getMarkerPosition){var u=e.getValues([`x0`,`y0`],t),d=e.getValues([`x1`,`y1`],t),f=a.clampData(u),p=a.clampData(d),m=[];n[0]===`x0`?m[0]=f[0]>p[0]?d[0]:u[0]:m[0]=f[0]>p[0]?u[0]:d[0],n[1]===`y0`?m[1]=f[1]>p[1]?d[1]:u[1]:m[1]=f[1]>p[1]?u[1]:d[1],s=r.getMarkerPosition(m,n,!0)}else{var h=e.get(n[0],t),g=e.get(n[1],t),_=[h,g];a.clampData&&a.clampData(_,_),s=a.dataToPoint(_,!0)}if(HZ(a,`cartesian2d`)){var v=a.getAxis(`x`),y=a.getAxis(`y`),h=e.get(n[0],t),g=e.get(n[1],t);V5(h)?s[0]=v.toGlobalCoord(v.getExtent()[n[0]===`x0`?0:1]):V5(g)&&(s[1]=y.toGlobalCoord(y.getExtent()[n[1]===`y0`?0:1]))}isNaN(c)||(s[0]=c),isNaN(l)||(s[1]=l)}return s}var eYe=[[`x0`,`y0`],[`x1`,`y0`],[`x1`,`y1`],[`x0`,`y1`]],tYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.updateTransform=function(e,t,n){t.eachSeries(function(e){var t=O5.getMarkerModelFromSeries(e,`markArea`);if(t){var r=t.getData();r.each(function(t){var i=sA(eYe,function(i){return $Je(r,t,i,e,n)});r.setItemLayout(t,i),r.getItemGraphicEl(t).setShape(`points`,i)})}},this)},t.prototype.renderSeries=function(e,t,n,r){var i=e.coordinateSystem,a=e.id,o=e.getData(),s=this.markerGroupMap,c=s.get(a)||s.set(a,{group:new $P});this.group.add(c.group),this.markKeep(c);var l=nYe(i,e,t);t.setData(l),l.each(function(t){var n=sA(eYe,function(n){return $Je(l,t,n,e,r)}),a=i.getAxis(`x`).scale,s=i.getAxis(`y`).scale,c=a.getExtent(),u=s.getExtent(),d=[a.parse(l.get(`x0`,t)),a.parse(l.get(`x1`,t))],f=[s.parse(l.get(`y0`,t)),s.parse(l.get(`y1`,t))];wF(d),wF(f);var p=c[0]>d[1]||c[1]f[1]||u[1]=0},t.prototype.getOrient=function(){return this.get(`orient`)===`vertical`?{index:1,name:`vertical`}:{index:0,name:`horizontal`}},t.type=`legend.plain`,t.dependencies=[`series`],t.defaultOption={z:4,show:!0,orient:`horizontal`,left:`center`,bottom:$.size.m,align:`auto`,backgroundColor:$.color.transparent,borderColor:$.color.border,borderRadius:0,borderWidth:0,padding:5,itemGap:8,itemWidth:25,itemHeight:14,symbolRotate:`inherit`,symbolKeepAspect:!0,inactiveColor:$.color.disabled,inactiveBorderColor:$.color.disabled,inactiveBorderWidth:`auto`,itemStyle:{color:`inherit`,opacity:`inherit`,borderColor:`inherit`,borderWidth:`auto`,borderCap:`inherit`,borderJoin:`inherit`,borderDashOffset:`inherit`,borderMiterLimit:`inherit`},lineStyle:{width:`auto`,color:`inherit`,inactiveColor:$.color.disabled,inactiveWidth:2,opacity:`inherit`,type:`inherit`,cap:`inherit`,join:`inherit`,dashOffset:`inherit`,miterLimit:`inherit`},textStyle:{color:$.color.secondary},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:`sans-serif`,color:$.color.tertiary,borderWidth:1,borderColor:$.color.border},emphasis:{selectorLabel:{show:!0,color:$.color.quaternary}},selectorPosition:`auto`,selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1},triggerEvent:!1},t}(lH),U5=pA,W5=Q,G5=$P,aYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.newlineDisabled=!1,n}return t.prototype.init=function(){this.group.add(this._contentGroup=new G5),this.group.add(this._selectorGroup=new G5),this._isFirstRender=!0},t.prototype.getContentGroup=function(){return this._contentGroup},t.prototype.getSelectorGroup=function(){return this._selectorGroup},t.prototype.render=function(e,t,n){var r=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),e.get(`show`,!0)){var i=e.get(`align`),a=e.get(`orient`);(!i||i===`auto`)&&(i=e.get(`left`)===`right`&&a===`vertical`?`right`:`left`);var o=e.get(`selector`,!0),s=e.get(`selectorPosition`,!0);o&&(!s||s===`auto`)&&(s=a===`horizontal`?`end`:`start`),this.renderInner(i,e,t,n,o,a,s);var c=rH(e,n).refContainer,l=e.getBoxLayoutParams(),u=e.get(`padding`),d=eH(l,c,u),f=this.layoutInner(e,i,d,r,o,s),p=eH(nA({width:f.width,height:f.height},l),c,u);this.group.x=p.x-f.x,this.group.y=p.y-f.y,this.group.markRedraw(),this.group.add(this._backgroundEl=CKe(f,e))}},t.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},t.prototype.renderInner=function(e,t,n,r,i,a,o){var s=this.getContentGroup(),c=zA(),l=t.get(`selectedMode`),u=t.get(`triggerEvent`),d=[];n.eachRawSeries(function(e){!e.get(`legendHoverLink`)&&d.push(e.id)}),W5(t.getData(),function(i,a){var o=this,f=i.get(`name`);if(!this.newlineDisabled&&(f===``||f===` -`)){var p=new G5;p.newline=!0,s.add(p);return}var m=n.getSeriesByName(f)[0];if(!c.get(f))if(m){var h=m.getData(),g=h.getVisual(`legendLineStyle`)||{},_=h.getVisual(`legendIcon`),v=h.getVisual(`style`),y=this._createItem(m,f,a,i,t,e,g,v,_,l,r);y.on(`click`,U5(cYe,f,null,r,d)).on(`mouseover`,U5(K5,m.name,null,r,d)).on(`mouseout`,U5(q5,m.name,null,r,d)),n.ssr&&y.eachChild(function(e){var t=ML(e);t.seriesIndex=m.seriesIndex,t.dataIndex=a,t.ssrType=`legend`}),u&&y.eachChild(function(e){o.packEventData(e,t,m,a,f)}),c.set(f,!0)}else n.eachRawSeries(function(o){var s=this;if(!c.get(f)&&o.legendVisualProvider){var p=o.legendVisualProvider;if(!p.containName(f))return;var m=p.indexOfName(f),h=p.getItemVisual(m,`style`),g=p.getItemVisual(m,`legendIcon`),_=uN(h.fill);_&&_[3]===0&&(_[3]=.2,h=Z(Z({},h),{fill:_N(_,`rgba`)}));var v=this._createItem(o,f,a,i,t,e,{},h,g,l,r);v.on(`click`,U5(cYe,null,f,r,d)).on(`mouseover`,U5(K5,null,f,r,d)).on(`mouseout`,U5(q5,null,f,r,d)),n.ssr&&v.eachChild(function(e){var t=ML(e);t.seriesIndex=o.seriesIndex,t.dataIndex=a,t.ssrType=`legend`}),u&&v.eachChild(function(e){s.packEventData(e,t,o,a,f)}),c.set(f,!0)}},this)},this),i&&this._createSelector(i,t,r,a,o)},t.prototype.packEventData=function(e,t,n,r,i){var a={componentType:`legend`,componentIndex:t.componentIndex,dataIndex:r,value:i,seriesIndex:n.seriesIndex};ML(e).eventData=a},t.prototype._createSelector=function(e,t,n,r,i){var a=this.getSelectorGroup();W5(e,function(e){var r=e.type,i=new AL({style:{x:0,y:0,align:`center`,verticalAlign:`middle`},onclick:function(){n.dispatchAction({type:r===`all`?`legendAllSelect`:`legendInverseSelect`,legendId:t.id})}});a.add(i),SB(i,{normal:t.getModel(`selectorLabel`),emphasis:t.getModel([`emphasis`,`selectorLabel`])},{defaultText:e.title}),fR(i)})},t.prototype._createItem=function(e,t,n,r,i,a,o,s,c,l,u){var d=e.visualDrawType,f=i.get(`itemWidth`),p=i.get(`itemHeight`),m=i.isSelected(t),h=r.get(`symbolRotate`),g=r.get(`symbolKeepAspect`),_=r.get(`icon`);c=_||c||`roundRect`;var v=oYe(c,r,o,s,d,m,u),y=new G5,b=r.getModel(`textStyle`);if(hA(e.getLegendIcon)&&(!_||_===`inherit`))y.add(e.getLegendIcon({itemWidth:f,itemHeight:p,icon:c,iconRotate:h,itemStyle:v.itemStyle,lineStyle:v.lineStyle,symbolKeepAspect:g}));else{var x=_===`inherit`&&e.getData().getVisual(`symbol`)?h===`inherit`?e.getData().getVisual(`symbolRotate`):h:0;y.add(sYe({itemWidth:f,itemHeight:p,icon:c,iconRotate:x,itemStyle:v.itemStyle,lineStyle:v.lineStyle,symbolKeepAspect:g}))}var S=a===`left`?f+5:-5,C=a,w=i.get(`formatter`),T=t;gA(w)&&w?T=w.replace(`{name}`,t??``):hA(w)&&(T=w(t));var E=m?b.getTextColor():r.get(`inactiveColor`);y.add(new AL({style:wB(b,{text:T,x:S,y:p/2,fill:E,align:C,verticalAlign:`middle`},{inheritColor:E})}));var D=new OL({shape:y.getBoundingRect(),style:{fill:`transparent`}}),O=r.getModel(`tooltip`);return O.get(`show`)&&iB({el:D,componentModel:i,itemName:t,itemTooltipOption:O.option}),y.add(D),y.eachChild(function(e){e.silent=!0}),D.silent=!l,this.getContentGroup().add(y),fR(y),y.__legendDataIndex=n,y},t.prototype.layoutInner=function(e,t,n,r,i,a){var o=this.getContentGroup(),s=this.getSelectorGroup();ZV(e.get(`orient`),o,e.get(`itemGap`),n.width,n.height);var c=o.getBoundingRect(),l=[-c.x,-c.y];if(s.markRedraw(),o.markRedraw(),i){ZV(`horizontal`,s,e.get(`selectorItemGap`,!0));var u=s.getBoundingRect(),d=[-u.x,-u.y],f=e.get(`selectorButtonGap`,!0),p=e.getOrient().index,m=p===0?`width`:`height`,h=p===0?`height`:`width`,g=p===0?`y`:`x`;a===`end`?d[p]+=c[m]+f:l[p]+=u[m]+f,d[1-p]+=c[h]/2-u[h]/2,s.x=d[0],s.y=d[1],o.x=l[0],o.y=l[1];var _={x:0,y:0};return _[m]=c[m]+f+u[m],_[h]=Math.max(c[h],u[h]),_[g]=Math.min(0,u[g]+d[1-p]),_}else return o.x=l[0],o.y=l[1],this.group.getBoundingRect()},t.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},t.type=`legend.plain`,t}(pW);function oYe(e,t,n,r,i,a,o){function s(e,t){e.lineWidth===`auto`&&(e.lineWidth=t.lineWidth>0?2:0),W5(e,function(n,r){e[r]===`inherit`&&(e[r]=t[r])})}var c=t.getModel(`itemStyle`),l=c.getItemStyle(),u=e.lastIndexOf(`empty`,0)===0?`fill`:`stroke`,d=c.getShallow(`decal`);l.decal=!d||d===`inherit`?r.decal:FG(d,o),l.fill===`inherit`&&(l.fill=r[i]),l.stroke===`inherit`&&(l.stroke=r[u]),l.opacity===`inherit`&&(l.opacity=(i===`fill`?r:n).opacity),s(l,r);var f=t.getModel(`lineStyle`),p=f.getLineStyle();if(s(p,n),l.fill===`auto`&&(l.fill=r.fill),l.stroke===`auto`&&(l.stroke=r.fill),p.stroke===`auto`&&(p.stroke=r.fill),!a){var m=t.get(`inactiveBorderWidth`),h=l[u];l.lineWidth=m===`auto`?r.lineWidth>0&&h?2:0:l.lineWidth,l.fill=t.get(`inactiveColor`),l.stroke=t.get(`inactiveBorderColor`),p.stroke=f.get(`inactiveColor`),p.lineWidth=f.get(`inactiveWidth`)}return{itemStyle:l,lineStyle:p}}function sYe(e){var t=e.icon||`roundRect`,n=aG(t,0,0,e.itemWidth,e.itemHeight,e.itemStyle.fill,e.symbolKeepAspect);return n.setStyle(e.itemStyle),n.rotation=(e.iconRotate||0)*Math.PI/180,n.setOrigin([e.itemWidth/2,e.itemHeight/2]),t.indexOf(`empty`)>-1&&(n.style.stroke=n.style.fill,n.style.fill=$.color.neutral00,n.style.lineWidth=2),n}function cYe(e,t,n,r){q5(e,t,n,r),n.dispatchAction({type:`legendToggleSelect`,name:e??t}),K5(e,t,n,r)}function K5(e,t,n,r){n.usingTHL()||n.dispatchAction({type:`highlight`,seriesName:e,name:t,excludeSeriesId:r})}function q5(e,t,n,r){n.usingTHL()||n.dispatchAction({type:`downplay`,seriesName:e,name:t,excludeSeriesId:r})}function J5(e,t,n){var r=e===`allSelect`||e===`inverseSelect`,i={},a=[];n.eachComponent({mainType:`legend`,query:t},function(n){r?n[e]():n[e](t.name),lYe(n,i),a.push(n.componentIndex)});var o={};return n.eachComponent(`legend`,function(e){Q(i,function(t,n){e[t?`select`:`unSelect`](n)}),lYe(e,o)}),r?{selected:o,legendIndex:a}:{name:t.name,selected:o}}function lYe(e,t){var n=t||{};return Q(e.getData(),function(t){var r=t.get(`name`);if(!(r===` -`||r===``)){var i=e.isSelected(r);UA(n,r)?n[r]=n[r]&&i:n[r]=i}}),n}function uYe(e){e.registerAction(`legendToggleSelect`,`legendselectchanged`,pA(J5,`toggleSelected`)),e.registerAction(`legendAllSelect`,`legendselectall`,pA(J5,`allSelect`)),e.registerAction(`legendInverseSelect`,`legendinverseselect`,pA(J5,`inverseSelect`)),e.registerAction(`legendSelect`,`legendselected`,pA(J5,`select`)),e.registerAction(`legendUnSelect`,`legendunselected`,pA(J5,`unSelect`))}var dYe=yI(fYe);function fYe(e){var t=e.findComponents({mainType:`legend`});t&&t.length&&e.filterSeries(function(e){for(var n=0;nn[i],m=[-d.x,-d.y];t||(m[r]=c[s]);var h=[0,0],g=[-f.x,-f.y],_=OA(e.get(`pageButtonGap`,!0),e.get(`itemGap`,!0));p&&(e.get(`pageButtonPosition`,!0)===`end`?g[r]+=n[i]-f[i]:h[r]+=f[i]+_),g[1-r]+=d[a]/2-f[a]/2,c.setPosition(m),l.setPosition(h),u.setPosition(g);var v={x:0,y:0};if(v[i]=p?n[i]:d[i],v[a]=Math.max(d[a],f[a]),v[o]=Math.min(0,f[o]+g[1-r]),l.__rectSize=n[i],p){var y={x:0,y:0};y[i]=Math.max(n[i]-f[i]-_,0),y[a]=v[a],l.setClipPath(new OL({shape:y})),l.__rectSize=y[i]}else u.eachChild(function(e){e.attr({invisible:!0,silent:!0})});var b=this._getPageInfo(e);return b.pageIndex!=null&&Sz(c,{x:b.contentPosition[0],y:b.contentPosition[1]},p?e:null),this._updatePageInfoView(e,b),v},t.prototype._pageGo=function(e,t,n){var r=this._getPageInfo(t)[e];r!=null&&n.dispatchAction({type:`legendScroll`,scrollDataIndex:r,legendId:t.id})},t.prototype._updatePageInfoView=function(e,t){var n=this._controllerGroup;Q([`pagePrev`,`pageNext`],function(r){var i=t[r+`DataIndex`]!=null,a=n.childOfName(r);a&&(a.setStyle(`fill`,i?e.get(`pageIconColor`,!0):e.get(`pageIconInactiveColor`,!0)),a.cursor=i?`pointer`:`default`)});var r=n.childOfName(`pageText`),i=e.get(`pageFormatter`),a=t.pageIndex,o=a==null?0:a+1,s=t.pageCount;r&&i&&r.setStyle(`text`,gA(i)?i.replace(`{current}`,o==null?``:o+``).replace(`{total}`,s==null?``:s+``):i({current:o,total:s}))},t.prototype._getPageInfo=function(e){var t=e.get(`scrollDataIndex`,!0),n=this.getContentGroup(),r=this._containerGroup.__rectSize,i=e.getOrient().index,a=Y5[i],o=X5[i],s=this._findTargetItemIndex(t),c=n.children(),l=c[s],u=c.length,d=+!!u,f={contentPosition:[n.x,n.y],pageCount:d,pageIndex:d-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!l)return f;var p=v(l);f.contentPosition[i]=-p.s;for(var m=s+1,h=p,g=p,_=null;m<=u;++m)_=v(c[m]),(!_&&g.e>h.s+r||_&&!y(_,h.s))&&(h=g.i>h.i?g:_,h&&(f.pageNextDataIndex??=h.i,++f.pageCount)),g=_;for(var m=s-1,h=p,g=p,_=null;m>=-1;--m)_=v(c[m]),(!_||!y(g,_.s))&&h.i=t&&e.s<=t+r}},t.prototype._findTargetItemIndex=function(e){if(!this._showController)return 0;var t,n=this.getContentGroup(),r;return n.eachChild(function(n,i){var a=n.__legendDataIndex;r==null&&a!=null&&(r=i),a===e&&(t=i)}),t??r},t.type=`legend.scroll`,t}(aYe);function vYe(e){e.registerAction(`legendScroll`,`legendscroll`,function(e,t){var n=e.scrollDataIndex;n!=null&&t.eachComponent({mainType:`legend`,subType:`scroll`,query:e},function(e){e.setScrollDataIndex(n)})})}function yYe(e){tq(pYe),e.registerComponentModel(mYe),e.registerComponentView(_Ye),vYe(e)}function bYe(e){tq(pYe),tq(yYe)}var xYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`dataZoom.inside`,t.defaultOption=VB(t5.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),t}(t5),Z5=tI();function SYe(e,t,n){Z5(e).coordSysRecordMap.each(function(e){var r=e.dataZoomInfoMap.get(t.uid);r&&(r.getRange=n)})}function CYe(e,t){for(var n=Z5(e).coordSysRecordMap,r=n.keys(),i=0;ia[i+r]&&(r=n),o&&=t.get(`preventDefaultMouseMove`,!0),s=OA(t.get(`cursorGrab`,!0),s),c=OA(t.get(`cursorGrabbing`,!0),c)}),{controlType:r,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!o,api:n,zInfo:{component:t.model},triggerInfo:{roamTrigger:null,isInSelf:t.containsPoint},cursorGrab:s,cursorGrabbing:c}}}function kYe(e){e.registerUpdateLifecycle(`coordsys:aftercreate`,function(e,t){var n=Z5(t),r=n.coordSysRecordMap||=zA();r.each(function(e){e.dataZoomInfoMap=null}),e.eachComponent({mainType:`dataZoom`,subType:`inside`},function(e){Q(cKe(e).infoList,function(n){var i=n.model.uid,a=r.get(i)||r.set(i,TYe(t,n.model));(a.dataZoomInfoMap||=zA()).set(e.uid,{dzReferCoordSysInfo:n,model:e,getRange:null})})}),r.each(function(e){var n=e.controller,i,a=e.dataZoomInfoMap;if(a){var o=a.keys()[0];o!=null&&(i=a.get(o))}if(!i){wYe(r,e);return}var s=OYe(a,e,t);n.enable(s.controlType,s.opt),CW(e,`dispatchAction`,i.model.get(`throttle`,!0),`fixRate`)})})}var AYe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=`dataZoom.inside`,t}return t.prototype.render=function(t,n,r){if(e.prototype.render.apply(this,arguments),t.noTarget()){this._clear();return}this.range=t.getPercentRange(),SYe(r,t,{pan:fA(Q5.pan,this),zoom:fA(Q5.zoom,this),scrollMove:fA(Q5.scrollMove,this)})},t.prototype.dispose=function(){this._clear(),e.prototype.dispose.apply(this,arguments)},t.prototype._clear=function(){CYe(this.api,this.dataZoomModel),this.range=null},t.type=`dataZoom.inside`,t}(n5),Q5={zoom:function(e,t,n,r){var i=this.range,a=i.slice(),o=e.axisModels[0];if(o){var s=$5[t](null,[r.originX,r.originY],o,n,e),c=(s.signal>0?s.pixelStart+s.pixelLength-s.pixel:s.pixel-s.pixelStart)/s.pixelLength*(a[1]-a[0])+a[0],l=Math.max(1/r.scale,0);a[0]=(a[0]-c)*l+c,a[1]=(a[1]-c)*l+c;var u=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();if(E3(0,a,[0,100],0,u.minSpan,u.maxSpan),this.range=a,i[0]!==a[0]||i[1]!==a[1])return a}},pan:jYe(function(e,t,n,r,i,a){var o=$5[r]([a.oldX,a.oldY],[a.newX,a.newY],t,i,n);return o.signal*(e[1]-e[0])*o.pixel/o.pixelLength}),scrollMove:jYe(function(e,t,n,r,i,a){return $5[r]([0,0],[a.scrollDelta,a.scrollDelta],t,i,n).signal*(e[1]-e[0])*a.scrollDelta})};function jYe(e){return function(t,n,r,i){var a=this.range,o=a.slice(),s=t.axisModels[0];if(s&&(E3(e(o,s,t,n,r,i),o,[0,100],`all`),this.range=o,a[0]!==o[0]||a[1]!==o[1]))return o}}var $5={grid:function(e,t,n,r,i){var a=n.axis,o={},s=i.model.coordinateSystem.getRect();return e||=[0,0],a.dim===`x`?(o.pixel=t[0]-e[0],o.pixelLength=s.width,o.pixelStart=s.x,o.signal=a.inverse?1:-1):(o.pixel=t[1]-e[1],o.pixelLength=s.height,o.pixelStart=s.y,o.signal=a.inverse?-1:1),o},polar:function(e,t,n,r,i){var a=n.axis,o={},s=i.model.coordinateSystem,c=s.getRadiusAxis().getExtent(),l=s.getAngleAxis().getExtent();return e=e?s.pointToCoord(e):[0,0],t=s.pointToCoord(t),n.mainType===`radiusAxis`?(o.pixel=t[0]-e[0],o.pixelLength=c[1]-c[0],o.pixelStart=c[0],o.signal=a.inverse?1:-1):(o.pixel=t[1]-e[1],o.pixelLength=l[1]-l[0],o.pixelStart=l[0],o.signal=a.inverse?-1:1),o},singleAxis:function(e,t,n,r,i){var a=n.axis,o=i.model.coordinateSystem.getRect(),s={};return e||=[0,0],a.orient===`horizontal`?(s.pixel=t[0]-e[0],s.pixelLength=o.width,s.pixelStart=o.x,s.signal=a.inverse?1:-1):(s.pixel=t[1]-e[1],s.pixelLength=o.height,s.pixelStart=o.y,s.signal=a.inverse?-1:1),s}};function MYe(e){r5(e),e.registerComponentModel(xYe),e.registerComponentView(AYe),kYe(e)}var NYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`dataZoom.slider`,t.layoutMode=`box`,t.defaultOption=VB(t5.defaultOption,{show:!0,right:`ph`,top:`ph`,width:`ph`,height:`ph`,left:null,bottom:null,borderColor:$.color.accent10,borderRadius:0,backgroundColor:$.color.transparent,dataBackground:{lineStyle:{color:$.color.accent30,width:.5},areaStyle:{color:$.color.accent20,opacity:.2}},selectedDataBackground:{lineStyle:{color:$.color.accent40,width:.5},areaStyle:{color:$.color.accent20,opacity:.3}},fillerColor:`rgba(135,175,274,0.2)`,handleIcon:`path://M-9.35,34.56V42m0-40V9.5m-2,0h4a2,2,0,0,1,2,2v21a2,2,0,0,1-2,2h-4a2,2,0,0,1-2-2v-21A2,2,0,0,1-11.35,9.5Z`,handleSize:`100%`,handleStyle:{color:$.color.neutral00,borderColor:$.color.accent20},moveHandleSize:7,moveHandleIcon:`path://M-320.9-50L-320.9-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-348-41-339-50-320.9-50z M-212.3-50L-212.3-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-239.4-41-230.4-50-212.3-50z M-103.7-50L-103.7-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-130.9-41-121.8-50-103.7-50z`,moveHandleStyle:{color:$.color.accent40,opacity:.5},showDetail:!0,showDataShadow:`auto`,realtime:!0,zoomLock:!1,textStyle:{color:$.color.tertiary},brushSelect:!0,brushStyle:{color:$.color.accent30,opacity:.3},emphasis:{handleLabel:{show:!0},handleStyle:{borderColor:$.color.accent40},moveHandleStyle:{opacity:.8}},defaultLocationEdgeGap:15}),t}(t5),e7=OL,PYe=1,t7=30,FYe=7,n7=`horizontal`,IYe=`vertical`,LYe=5,RYe=[`line`,`bar`,`candlestick`,`scatter`],zYe={easing:`cubicOut`,duration:100,delay:0},BYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n._displayables={},n}return t.prototype.init=function(e,t){this.api=t,this._onBrush=fA(this._onBrush,this),this._onBrushEnd=fA(this._onBrushEnd,this)},t.prototype.render=function(t,n,r,i){if(e.prototype.render.apply(this,arguments),CW(this,`_dispatchZoomAction`,t.get(`throttle`),`fixRate`),this._orient=t.getOrient(),t.get(`show`)===!1){this.group.removeAll();return}if(t.noTarget()){this._clear(),this.group.removeAll();return}(!i||i.type!==`dataZoom`||i.from!==this.uid)&&this._buildView(),this._updateView()},t.prototype.dispose=function(){this._clear(),e.prototype.dispose.apply(this,arguments)},t.prototype._clear=function(){wW(this,`_dispatchZoomAction`);var e=this.api.getZr();e.off(`mousemove`,this._onBrush),e.off(`mouseup`,this._onBrushEnd)},t.prototype._buildView=function(){var e=this.group;e.removeAll(),this._brushing=!1,this._displayables.brushRect=null,this._resetLocation(),this._resetInterval();var t=this._displayables.sliderGroup=new $P;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),e.add(t),this._positionGroup()},t.prototype._resetLocation=function(){var e=this.dataZoomModel,t=this.api,n=e.get(`brushSelect`)?FYe:0,r=rH(e,t).refContainer,i=this._findCoordRect(),a=e.get(`defaultLocationEdgeGap`,!0)||0,o=this._orient===n7?{right:r.width-i.x-i.width,top:r.height-t7-a-n,width:i.width,height:t7}:{right:a,top:i.y,width:t7,height:i.height},s=sH(e.option);Q([`right`,`top`,`width`,`height`],function(e){s[e]===`ph`&&(s[e]=o[e])});var c=eH(s,r);this._location={x:c.x,y:c.y},this._size=[c.width,c.height],this._orient===IYe&&this._size.reverse()},t.prototype._positionGroup=function(){var e=this.group,t=this._location,n=this._orient,r=this.dataZoomModel.getFirstTargetAxisModel(),i=r&&r.get(`inverse`),a=this._displayables.sliderGroup,o=(this._dataShadowInfo||{}).otherAxisInverse;a.attr(n===n7&&!i?{scaleY:o?1:-1,scaleX:1}:n===n7&&i?{scaleY:o?1:-1,scaleX:-1}:n===IYe&&!i?{scaleY:o?-1:1,scaleX:1,rotation:Math.PI/2}:{scaleY:o?-1:1,scaleX:-1,rotation:Math.PI/2});var s=e.getBoundingRect([a]),c=isNaN(s.x)?0:s.x,l=isNaN(s.y)?0:s.y;e.x=t.x-c,e.y=t.y-l,e.markRedraw()},t.prototype._getViewExtent=function(){return[0,this._size[0]]},t.prototype._renderBackground=function(){var e=this.dataZoomModel,t=this._size,n=this._displayables.sliderGroup,r=e.get(`brushSelect`);n.add(new e7({silent:!0,shape:{x:0,y:0,width:t[0],height:t[1]},style:{fill:e.get(`backgroundColor`)},z2:-40}));var i=new e7({shape:{x:0,y:0,width:t[0],height:t[1]},style:{fill:`transparent`},z2:0,onclick:fA(this._onClickPanel,this)}),a=this.api.getZr();r?(i.on(`mousedown`,this._onBrushStart,this),i.cursor=`crosshair`,a.on(`mousemove`,this._onBrush),a.on(`mouseup`,this._onBrushEnd)):(a.off(`mousemove`,this._onBrush),a.off(`mouseup`,this._onBrushEnd)),n.add(i)},t.prototype._renderDataShadow=function(){var e=this._dataShadowInfo=this._prepareDataShadowInfo();if(this._displayables.dataShadowSegs=[],!e)return;var t=this._size,n=this._shadowSize||[],r=e.series,i=r.getRawData(),a=r.getShadowDim&&r.getShadowDim(),o=a&&i.getDimensionInfo(a)?r.getShadowDim():e.otherDim;if(o==null)return;var s=this._shadowPolygonPts,c=this._shadowPolylinePts;if(i!==this._shadowData||o!==this._shadowDim||t[0]!==n[0]||t[1]!==n[1]){var l=i.getDataExtent(e.thisDim),u=i.getDataExtent(o),d=(u[1]-u[0])*.3;u=[u[0]-d,u[1]+d];var f=[0,t[1]],p=[0,t[0]],m=[[t[0],0],[0,0]],h=[],g=p[1]/Math.max(1,i.count()-1),_=t[0]/(l[1]-l[0]),v=e.thisAxis.type===`time`,y=-g,b=Math.round(i.count()/t[0]),x;i.each([e.thisDim,o],function(e,t,n){if(b>0&&n%b){v||(y+=g);return}y=v?(+e-l[0])*_:y+g;var r=t==null||isNaN(t)||t===``,i=r?0:yF(t,u,f,!0);r&&!x&&n?(m.push([m[m.length-1][0],0]),h.push([h[h.length-1][0],0])):!r&&x&&(m.push([y,0]),h.push([y,0])),r||(m.push([y,i]),h.push([y,i])),x=r}),s=this._shadowPolygonPts=m,c=this._shadowPolylinePts=h}this._shadowData=i,this._shadowDim=o,this._shadowSize=[t[0],t[1]];var S=this.dataZoomModel;function C(e){var t=S.getModel(e?`selectedDataBackground`:`dataBackground`),n=new $P,r=new $R({shape:{points:s},segmentIgnoreThreshold:1,style:t.getModel(`areaStyle`).getAreaStyle(),silent:!0,z2:-20}),i=new ez({shape:{points:c},segmentIgnoreThreshold:1,style:t.getModel(`lineStyle`).getLineStyle(),silent:!0,z2:-19});return n.add(r),n.add(i),n}for(var w=0;w<3;w++){var T=C(w===1);this._displayables.sliderGroup.add(T),this._displayables.dataShadowSegs.push(T)}},t.prototype._prepareDataShadowInfo=function(){var e=this.dataZoomModel,t=e.get(`showDataShadow`);if(t!==!1){var n,r=this.ecModel;return e.eachTargetAxis(function(i,a){Q(e.getAxisProxy(i,a).getTargetSeriesModels(),function(e){if(!n&&!(t!==!0&&rA(RYe,e.get(`type`))<0)){var o=r.getComponent(Q8(i),a).axis,s=HYe(i),c,l=e.coordinateSystem;s!=null&&l.getOtherAxis&&(c=l.getOtherAxis(o).inverse),s=e.getData().mapDimension(s),n={thisAxis:o,series:e,thisDim:e.getData().mapDimension(i),otherDim:s,otherAxisInverse:c}}},this)},this),n}},t.prototype._renderHandle=function(){var e=this.group,t=this._displayables,n=t.handles=[null,null],r=t.handleLabels=[null,null],i=this._displayables.sliderGroup,a=this._size,o=this.dataZoomModel,s=this.api,c=o.get(`borderRadius`)||0,l=o.get(`brushSelect`),u=t.filler=new e7({silent:l,style:{fill:o.get(`fillerColor`)},textConfig:{position:`inside`}});i.add(u),i.add(new e7({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:a[0],height:a[1],r:c},style:{stroke:o.get(`dataBackgroundColor`)||o.get(`borderColor`),lineWidth:PYe,fill:$.color.transparent}})),Q([0,1],function(t){var a=o.get(`handleIcon`);!iG[a]&&a.indexOf(`path://`)<0&&a.indexOf(`image://`)<0&&(a=`path://`+a);var s=aG(a,-1,0,2,2,null,!0);s.attr({cursor:UYe(this._orient),draggable:!0,drift:fA(this._onDragMove,this,t),ondragend:fA(this._onDragEnd,this),onmouseover:fA(this._onOverDataInfoTriggerArea,this,!0),onmouseout:fA(this._onOverDataInfoTriggerArea,this,!1),z2:5});var c=s.getBoundingRect(),l=o.get(`handleSize`);this._handleHeight=bF(l,this._size[1]),this._handleWidth=c.width/c.height*this._handleHeight,s.setStyle(o.getModel(`handleStyle`).getItemStyle()),s.style.strokeNoScale=!0,s.rectHover=!0,s.ensureState(`emphasis`).style=o.getModel([`emphasis`,`handleStyle`]).getItemStyle(),fR(s);var u=o.get(`handleColor`);u!=null&&(s.style.fill=u),i.add(n[t]=s);var d=o.getModel(`textStyle`),f=(o.get(`handleLabel`)||{}).show||!1;e.add(r[t]=new AL({silent:!0,invisible:!f,style:wB(d,{x:0,y:0,text:``,verticalAlign:`middle`,align:`center`,fill:d.getTextColor(),font:d.getFont()}),z2:10}))},this);var d=u;if(l){var f=bF(o.get(`moveHandleSize`),a[1]),p=t.moveHandle=new OL({style:o.getModel(`moveHandleStyle`).getItemStyle(),silent:!0,shape:{r:[0,0,2,2],y:a[1]-.5,height:f}}),m=f*.8,h=t.moveHandleIcon=aG(o.get(`moveHandleIcon`),-m/2,-m/2,m,m,$.color.neutral00,!0);h.silent=!0,h.y=a[1]+f/2-.5,p.ensureState(`emphasis`).style=o.getModel([`emphasis`,`moveHandleStyle`]).getItemStyle();var g=Math.min(a[1]/2,Math.max(f,10));d=t.moveZone=new OL({invisible:!0,shape:{y:a[1]-g,height:f+g}}),d.on(`mouseover`,function(){s.enterEmphasis(p)}).on(`mouseout`,function(){s.leaveEmphasis(p)}),i.add(p),i.add(h),i.add(d)}d.attr({draggable:!0,cursor:`grab`,drift:fA(this._onActualMoveZoneDrift,this),ondragstart:fA(this._onActualMoveZoneDragStart,this),ondragend:fA(this._onActualMoveZoneDragEnd,this),onmouseover:fA(this._onOverDataInfoTriggerArea,this,!0),onmouseout:fA(this._onOverDataInfoTriggerArea,this,!1)})},t.prototype._resetInterval=function(){var e=this._range=this.dataZoomModel.getPercentRange(),t=this._getViewExtent();this._handleEnds=[yF(e[0],[0,100],t,!0),yF(e[1],[0,100],t,!0)]},t.prototype._updateInterval=function(e,t){var n=this.dataZoomModel,r=this._handleEnds,i=this._getViewExtent(),a=n.findRepresentativeAxisProxy().getMinMaxSpan(),o=[0,100];E3(t,r,i,n.get(`zoomLock`)?`all`:e,a.minSpan==null?null:yF(a.minSpan,o,i,!0),a.maxSpan==null?null:yF(a.maxSpan,o,i,!0));var s=this._range,c=this._range=wF([yF(r[0],i,o,!0),yF(r[1],i,o,!0)]);return!s||s[0]!==c[0]||s[1]!==c[1]},t.prototype._updateView=function(e){var t=this._displayables,n=this._handleEnds,r=wF(n.slice()),i=this._size;Q([0,1],function(e){var r=t.handles[e],a=this._handleHeight;r.attr({scaleX:a/2,scaleY:a/2,x:n[e]+(e?-1:1),y:i[1]/2-a/2})},this),t.filler.setShape({x:r[0],y:0,width:r[1]-r[0],height:i[1]});var a={x:r[0],width:r[1]-r[0]};t.moveHandle&&(t.moveHandle.setShape(a),t.moveZone.setShape(a),t.moveZone.getBoundingRect(),t.moveHandleIcon&&t.moveHandleIcon.attr(`x`,a.x+a.width/2));for(var o=t.dataShadowSegs,s=[0,r[0],r[1],i[0]],c=0;ct[0]||n[1]<0||n[1]>t[1])){var r=this._handleEnds,i=(r[0]+r[1])/2,a=this._updateInterval(`all`,n[0]-i);this._updateView(),a&&this._dispatchZoomAction(!1)}},t.prototype._onBrushStart=function(e){var t=e.offsetX,n=e.offsetY;this._brushStart=new Vj(t,n),this._brushing=!0,this._brushStartTime=+new Date},t.prototype._onBrushEnd=function(e){if(this._brushing){var t=this._displayables.brushRect;if(this._brushing=!1,t){t.attr(`ignore`,!0);var n=t.shape;if(!(+new Date-this._brushStartTime<200&&Math.abs(n.width)<5)){var r=this._getViewExtent(),i=[0,100],a=this._handleEnds=[n.x,n.x+n.width],o=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();E3(0,a,r,0,o.minSpan==null?null:yF(o.minSpan,i,r,!0),o.maxSpan==null?null:yF(o.maxSpan,i,r,!0)),this._range=wF([yF(a[0],r,i,!0),yF(a[1],r,i,!0)]),this._updateView(),this._dispatchZoomAction(!1)}}}},t.prototype._onBrush=function(e){this._brushing&&(Oj(e.event),this._updateBrushRect(e.offsetX,e.offsetY))},t.prototype._updateBrushRect=function(e,t){var n=this._displayables,r=this.dataZoomModel,i=n.brushRect;i||(i=n.brushRect=new e7({silent:!0,style:r.getModel(`brushStyle`).getItemStyle()}),n.sliderGroup.add(i)),i.attr(`ignore`,!1);var a=this._brushStart,o=this._displayables.sliderGroup,s=o.transformCoordToLocal(e,t),c=o.transformCoordToLocal(a.x,a.y),l=this._size;s[0]=Math.max(Math.min(l[0],s[0]),0),i.setShape({x:c[0],y:0,width:s[0]-c[0],height:l[1]})},t.prototype._dispatchZoomAction=function(e){var t=this._range;this.api.dispatchAction({type:`dataZoom`,from:this.uid,dataZoomId:this.dataZoomModel.id,animation:e?zYe:null,start:t[0],end:t[1]})},t.prototype._findCoordRect=function(){var e,t=cKe(this.dataZoomModel).infoList;if(!e&&t.length){var n=t[0].model.coordinateSystem;e=n.getRect&&n.getRect()}if(!e){var r=this.api.getWidth(),i=this.api.getHeight();e={x:r*.2,y:i*.2,width:r*.6,height:i*.6}}return e},t.type=`dataZoom.slider`,t}(n5);function VYe(e,t,n,r){var i=e.get(`labelFormatter`),a=e.get(`labelPrecision`);(a==null||a===`auto`)&&(a=n.valuePrecision);var o=n.value[t],s=o==null||isNaN(o)?``:Gq(r)||Uq(r)?r.getLabel({value:Math.round(o)}):isFinite(a)?CF(o,a,!0):o+``;return hA(i)?i(o,s):gA(i)?i.replace(`{value}`,s):s}function HYe(e){return{x:`y`,y:`x`,radius:`angle`,angle:`radius`}[e]}function UYe(e){return e===`vertical`?`ns-resize`:`ew-resize`}function WYe(e){e.registerComponentModel(NYe),e.registerComponentView(BYe),r5(e)}function GYe(e){tq(MYe),tq(WYe)}var KYe={get:function(e,t,n){var r=Qk((qYe[e]||{})[t]);return n&&mA(r)?r[r.length-1]:r}},qYe={color:{active:[`#006edd`,`#e0ffff`],inactive:[$.color.transparent]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:[`circle`,`roundRect`,`diamond`],inactive:[`none`]},symbolSize:{active:[10,50],inactive:[0,0]}},JYe=n4.mapVisual,YYe=n4.eachVisual,XYe=mA,r7=Q,ZYe=wF,QYe=yF,i7=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.stateList=[`inRange`,`outOfRange`],n.replacableOptionKeys=[`inRange`,`outOfRange`,`target`,`controller`,`color`],n.layoutMode={type:`box`,ignoreSize:!0},n.dataBound=[-1/0,1/0],n.targetVisuals={},n.controllerVisuals={},n}return t.prototype.init=function(e,t,n){this.mergeDefaultAndTheme(e,n)},t.prototype.optionUpdated=function(e,t){var n=this.option;!t&&Gqe(n,e,this.replacableOptionKeys),this.textStyleModel=this.getModel(`textStyle`),this.resetItemSize(),this.completeVisualOption()},t.prototype.resetVisual=function(e){var t=this.stateList;e=fA(e,this),this.controllerVisuals=y5(this.option.controller,t,e),this.targetVisuals=y5(this.option.target,t,e)},t.prototype.getItemSymbol=function(){return null},t.prototype.getTargetSeriesIndices=function(){var e=this,t=this.option.seriesTargets;if(t){var n=[];return r7(t,function(t){if(t.seriesIndex!=null)n.push(t.seriesIndex);else if(t.seriesId!=null){var r;e.ecModel.eachSeries(function(e){e.id===t.seriesId&&(r=e)}),r&&n.push(r.componentIndex)}}),n}var r=this.option.seriesId,i=this.option.seriesIndex;i==null&&r==null&&(i=`all`);var a=aI(this.ecModel,`series`,{index:i,id:r},{useDefault:!1,enableAll:!0,enableNone:!1}).models;return sA(a,function(e){return e.componentIndex})},t.prototype.eachTargetSeries=function(e,t){Q(this.getTargetSeriesIndices(),function(n){var r=this.ecModel.getSeriesByIndex(n);r&&e.call(t,r)},this)},t.prototype.isTargetSeries=function(e){var t=!1;return this.eachTargetSeries(function(n){n===e&&(t=!0)}),t},t.prototype.formatValueText=function(e,t,n){var r=this.option,i=r.precision,a=this.dataBound,o=r.formatter,s;n||=[`<`,`>`],mA(e)&&(e=e.slice(),s=!0);var c=t?e:s?[l(e[0]),l(e[1])]:l(e);if(gA(o))return o.replace(`{value}`,s?c[0]:c).replace(`{value2}`,s?c[1]:c);if(hA(o))return s?o(e[0],e[1]):o(e);if(s)return e[0]===a[0]?n[0]+` `+c[1]:e[1]===a[1]?n[1]+` `+c[0]:c[0]+` - `+c[1];return c;function l(e){return e===a[0]?`min`:e===a[1]?`max`:(+e).toFixed(Math.min(i,20))}},t.prototype.resetExtent=function(){var e=this.option,t=ZYe([e.min,e.max]);this._dataExtent=t},t.prototype.getDimension=function(e){var t=this,n=this.option.seriesTargets;if(n){var r=uA(n,function(n){return n.seriesIndex!=null&&n.seriesIndex===e||n.seriesId!=null&&n.seriesId===t.ecModel.getSeriesByIndex(e).id});if(r)return r.dimension}return this.option.dimension},t.prototype.getDataDimensionIndex=function(e){var t=e.hostModel.seriesIndex,n=this.getDimension(t);if(n!=null)return e.getDimensionIndex(n);for(var r=e.dimensions,i=r.length-1;i>=0;i--){var a=r[i],o=e.getDimensionInfo(a);if(!o.isCalculationCoord)return o.storeDimIndex}},t.prototype.getExtent=function(){return this._dataExtent.slice()},t.prototype.completeVisualOption=function(){var e=this.ecModel,t=this.option,n={inRange:t.inRange,outOfRange:t.outOfRange},r=t.target||={},i=t.controller||={};$k(r,n),$k(i,n);var a=this.isCategory();o.call(this,r),o.call(this,i),s.call(this,r,`inRange`,`outOfRange`),c.call(this,i);function o(n){XYe(t.color)&&!n.inRange&&(n.inRange={color:t.color.slice().reverse()}),n.inRange=n.inRange||{color:e.get(`gradientColor`)}}function s(e,t,n){var r=e[t],i=e[n];r&&!i&&(i=e[n]={},r7(r,function(e,t){if(n4.isValidType(t)){var n=KYe.get(t,`inactive`,a);n!=null&&(i[t]=n,t===`color`&&!i.hasOwnProperty(`opacity`)&&!i.hasOwnProperty(`colorAlpha`)&&(i.opacity=[0,0]))}}))}function c(e){var t=(e.inRange||{}).symbol||(e.outOfRange||{}).symbol,n=(e.inRange||{}).symbolSize||(e.outOfRange||{}).symbolSize,r=this.get(`inactiveColor`),i=this.getItemSymbol()||`roundRect`;r7(this.stateList,function(o){var s=this.itemSize,c=e[o];c||=e[o]={color:a?r:[r]},c.symbol??=t&&Qk(t)||(a?i:[i]),c.symbolSize??=n&&Qk(n)||(a?s[0]:[s[0],s[0]]),c.symbol=JYe(c.symbol,function(e){return e===`none`?i:e});var l=c.symbolSize;if(l!=null){var u=-1/0;YYe(l,function(e){e>u&&(u=e)}),c.symbolSize=JYe(l,function(e){return QYe(e,[0,u],[0,s[0]],!0)})}},this)}},t.prototype.resetItemSize=function(){this.itemSize=[parseFloat(this.get(`itemWidth`)),parseFloat(this.get(`itemHeight`))]},t.prototype.isCategory=function(){return!!this.option.categories},t.prototype.setSelected=function(e){},t.prototype.getSelected=function(){return null},t.prototype.getValueState=function(e){return null},t.prototype.getVisualMeta=function(e){return null},t.type=`visualMap`,t.dependencies=[`series`],t.defaultOption={show:!0,z:4,min:0,max:200,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:`vertical`,backgroundColor:$.color.transparent,borderColor:$.color.borderTint,contentColor:$.color.theme[0],inactiveColor:$.color.disabled,borderWidth:0,padding:$.size.m,textGap:10,precision:0,textStyle:{color:$.color.secondary}},t}(lH),$Ye=[20,140],eXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.optionUpdated=function(t,n){e.prototype.optionUpdated.apply(this,arguments),this.resetExtent(),this.resetVisual(function(e){e.mappingMethod=`linear`,e.dataExtent=this.getExtent()}),this._resetRange()},t.prototype.resetItemSize=function(){e.prototype.resetItemSize.apply(this,arguments);var t=this.itemSize;(t[0]==null||isNaN(t[0]))&&(t[0]=$Ye[0]),(t[1]==null||isNaN(t[1]))&&(t[1]=$Ye[1])},t.prototype._resetRange=function(){var e=this.getExtent(),t=this.option.range;!t||t.auto?(e.auto=1,this.option.range=e):mA(t)&&(t[0]>t[1]&&t.reverse(),t[0]=Math.max(t[0],e[0]),t[1]=Math.min(t[1],e[1]))},t.prototype.completeVisualOption=function(){e.prototype.completeVisualOption.apply(this,arguments),Q(this.stateList,function(e){var t=this.option.controller[e].symbolSize;t&&t[0]!==t[1]&&(t[0]=t[1]/3)},this)},t.prototype.setSelected=function(e){this.option.range=e.slice(),this._resetRange()},t.prototype.getSelected=function(){var e=this.getExtent(),t=wF((this.get(`range`)||[]).slice());return t[0]>e[1]&&(t[0]=e[1]),t[1]>e[1]&&(t[1]=e[1]),t[0]=n[1]||e<=t[1])?`inRange`:`outOfRange`},t.prototype.findTargetDataIndices=function(e){var t=[];return this.eachTargetSeries(function(n){var r=[],i=n.getData();i.each(this.getDataDimensionIndex(i),function(t,n){e[0]<=t&&t<=e[1]&&r.push(n)},this),t.push({seriesId:n.id,dataIndex:r})},this),t},t.prototype.getVisualMeta=function(e){var t=tXe(this,`outOfRange`,this.getExtent()),n=tXe(this,`inRange`,this.option.range.slice()),r=[];function i(t,n){r.push({value:t,color:e(t,n)})}for(var a=0,o=0,s=n.length,c=t.length;oe[1])break;r.push({color:this.getControllerVisual(o,`color`,t),offset:a/n})}return r.push({color:this.getControllerVisual(e[1],`color`,t),offset:1}),r},t.prototype._createBarPoints=function(e,t){var n=this.visualMapModel.itemSize;return[[n[0]-t[0],e[0]],[n[0],e[0]],[n[0],e[1]],[n[0]-t[1],e[1]]]},t.prototype._createBarGroup=function(e){var t=this._orient,n=this.visualMapModel.get(`inverse`);return new $P(t===`horizontal`&&!n?{scaleX:e===`bottom`?1:-1,rotation:Math.PI/2}:t===`horizontal`&&n?{scaleX:e===`bottom`?-1:1,rotation:-Math.PI/2}:t===`vertical`&&!n?{scaleX:e===`left`?1:-1,scaleY:-1}:{scaleX:e===`left`?1:-1})},t.prototype._updateHandle=function(e,t){if(this._useHandle){var n=this._shapes,r=this.visualMapModel,i=n.handleThumbs,a=n.handleLabels,o=r.itemSize,s=r.getExtent(),c=this._applyTransform(`left`,n.mainGroup);aXe([0,1],function(l){var u=i[l];u.setStyle(`fill`,t.handlesColor[l]),u.y=e[l];var d=o7(e[l],[0,o[1]],s,!0),f=this.getControllerVisual(d,`symbolSize`);u.scaleX=u.scaleY=f/o[0],u.x=o[0]-f/2;var p=Gz(n.handleLabelPoints[l],Wz(u,this.group));if(this._orient===`horizontal`){var m=c===`left`||c===`top`?(o[0]-f)/2:(o[0]-f)/-2;p[1]+=m}a[l].setStyle({x:p[0],y:p[1],text:r.formatValueText(this._dataInterval[l]),verticalAlign:`middle`,align:this._orient===`vertical`?this._applyTransform(`left`,n.mainGroup):`center`})},this)}},t.prototype._showIndicator=function(e,t,n,r){var i=this.visualMapModel,a=i.getExtent(),o=i.itemSize,s=[0,o[1]],c=this._shapes,l=c.indicator;if(l){l.attr(`invisible`,!1);var u=this.getControllerVisual(e,`color`,{convertOpacityToAlpha:!0}),d=this.getControllerVisual(e,`symbolSize`),f=o7(e,a,s,!0),p=o[0]-d/2,m={x:l.x,y:l.y};l.y=f,l.x=p;var h=Gz(c.indicatorLabelPoint,Wz(l,this.group)),g=c.indicatorLabel;g.attr(`invisible`,!1);var _=this._applyTransform(`left`,c.mainGroup),v=this._orient===`horizontal`;g.setStyle({text:(n||``)+i.formatValueText(t),verticalAlign:v?_:`middle`,align:v?`center`:_});var y={x:p,y:f,style:{fill:u}},b={style:{x:h[0],y:h[1]}};if(i.ecModel.isAnimationEnabled()&&!this._firstShowIndicator){var x={duration:100,easing:`cubicInOut`,additive:!0};l.x=m.x,l.y=m.y,l.animateTo(y,x),g.animateTo(b,x)}else l.attr(y),g.attr(b);this._firstShowIndicator=!1;var S=this._shapes.handleLabels;if(S)for(var C=0;Ci[1]&&(l[1]=1/0),t&&(l[0]===-1/0?this._showIndicator(c,l[1],`< `,o):l[1]===1/0?this._showIndicator(c,l[0],`> `,o):this._showIndicator(c,c,`≈ `,o));var u=this._hoverLinkDataIndices,d=[];(t||fXe(n))&&(d=this._hoverLinkDataIndices=n.findTargetDataIndices(l));var f=rwe(u,d);this._dispatchHighDown(`downplay`,a7(f[0],n)),this._dispatchHighDown(`highlight`,a7(f[1],n))}},t.prototype._hoverLinkFromSeriesMouseOver=function(e){var t;if(YW(e.target,function(e){var n=ML(e);if(n.dataIndex!=null)return t=n,!0},!0),t){var n=this.ecModel.getSeriesByIndex(t.seriesIndex),r=this.visualMapModel;if(r.isTargetSeries(n)){var i=n.getData(t.dataType),a=i.getStore().get(r.getDataDimensionIndex(i),t.dataIndex);isNaN(a)||this._showIndicator(a,a)}}},t.prototype._hideIndicator=function(){var e=this._shapes;e.indicator&&e.indicator.attr(`invisible`,!0),e.indicatorLabel&&e.indicatorLabel.attr(`invisible`,!0);var t=this._shapes.handleLabels;if(t)for(var n=0;n=0&&(i.dimension=a,r.push(i))}}),e.getData().setVisual(`visualMeta`,r)}}];function _Xe(e,t,n,r){for(var i=t.targetVisuals[r],a=n4.prepareVisualTypes(i),o={color:GW(e.getData(),`color`)},s=0,c=a.length;s0:e.splitNumber>0)||e.calculable)?`continuous`:`piecewise`}),e.registerAction(mXe,hXe),Q(gXe,function(t){e.registerVisual(e.PRIORITY.VISUAL.COMPONENT,t)}),e.registerPreprocessor(yXe))}function SXe(e){e.registerComponentModel(eXe),e.registerComponentView(lXe),xXe(e)}var CXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n._pieceList=[],n}return t.prototype.optionUpdated=function(t,n){e.prototype.optionUpdated.apply(this,arguments),this.resetExtent();var r=this._mode=this._determineMode();this._pieceList=[],wXe[this._mode].call(this,this._pieceList),this._resetSelected(t,n);var i=this.option.categories;this.resetVisual(function(e,t){r===`categories`?(e.mappingMethod=`category`,e.categories=Qk(i)):(e.dataExtent=this.getExtent(),e.mappingMethod=`piecewise`,e.pieceList=sA(this._pieceList,function(e){return e=Qk(e),t!==`inRange`&&(e.visual=null),e}))})},t.prototype.completeVisualOption=function(){var t=this.option,n={},r=n4.listVisualTypes(),i=this.isCategory();Q(t.pieces,function(e){Q(r,function(t){e.hasOwnProperty(t)&&(n[t]=1)})}),Q(n,function(e,n){var r=!1;Q(this.stateList,function(e){r=r||a(t,e,n)||a(t.target,e,n)},this),!r&&Q(this.stateList,function(e){(t[e]||(t[e]={}))[n]=KYe.get(n,e===`inRange`?`active`:`inactive`,i)})},this);function a(e,t,n){return e&&e[t]&&e[t].hasOwnProperty(n)}e.prototype.completeVisualOption.apply(this,arguments)},t.prototype._resetSelected=function(e,t){var n=this.option,r=this._pieceList,i=(t?n:e).selected||{};if(n.selected=i,Q(r,function(e,t){var n=this.getSelectedMapKey(e);i.hasOwnProperty(n)||(i[n]=!0)},this),n.selectedMode===`single`){var a=!1;Q(r,function(e,t){var n=this.getSelectedMapKey(e);i[n]&&(a?i[n]=!1:a=!0)},this)}},t.prototype.getItemSymbol=function(){return this.get(`itemSymbol`)},t.prototype.getSelectedMapKey=function(e){return this._mode===`categories`?e.value+``:e.index+``},t.prototype.getPieceList=function(){return this._pieceList},t.prototype._determineMode=function(){var e=this.option;return e.pieces&&e.pieces.length>0?`pieces`:this.option.categories?`categories`:`splitNumber`},t.prototype.setSelected=function(e){this.option.selected=Qk(e)},t.prototype.getValueState=function(e){var t=n4.findPieceIndex(e,this._pieceList);return t==null?`outOfRange`:this.option.selected[this.getSelectedMapKey(this._pieceList[t])]?`inRange`:`outOfRange`},t.prototype.findTargetDataIndices=function(e){var t=[],n=this._pieceList;return this.eachTargetSeries(function(r){var i=[],a=r.getData();a.each(this.getDataDimensionIndex(a),function(t,r){n4.findPieceIndex(t,n)===e&&i.push(r)},this),t.push({seriesId:r.id,dataIndex:i})},this),t},t.prototype.getRepresentValue=function(e){var t;if(this.isCategory())t=e.value;else if(e.value!=null)t=e.value;else{var n=e.interval||[];t=n[0]===-1/0&&n[1]===1/0?0:(n[0]+n[1])/2}return t},t.prototype.getVisualMeta=function(e){if(this.isCategory())return;var t=[],n=[``,``],r=this;function i(i,a){var o=r.getRepresentValue({interval:i});a||=r.getValueState(o);var s=e(o,a);i[0]===-1/0?n[0]=s:i[1]===1/0?n[1]=s:t.push({value:i[0],color:s},{value:i[1],color:s})}var a=this._pieceList.slice();if(!a.length)a.push({interval:[-1/0,1/0]});else{var o=a[0].interval[0];o!==-1/0&&a.unshift({interval:[-1/0,o]}),o=a[a.length-1].interval[1],o!==1/0&&a.push({interval:[o,1/0]})}var s=-1/0;return Q(a,function(e){var t=e.interval;t&&(t[0]>s&&i([s,t[0]],`outOfRange`),i(t.slice()),s=t[1])},this),{stops:t,outerColors:n}},t.type=`visualMap.piecewise`,t.defaultOption=VB(i7.defaultOption,{selected:null,minOpen:!1,maxOpen:!1,align:`auto`,itemWidth:20,itemHeight:14,itemSymbol:`roundRect`,pieces:null,categories:null,splitNumber:5,selectedMode:`multiple`,itemGap:10,hoverLink:!0}),t}(i7),wXe={splitNumber:function(e){var t=this.option,n=Math.min(t.precision,20),r=this.getExtent(),i=t.splitNumber;i=Math.max(parseInt(i,10),1),t.splitNumber=i;for(var a=(r[1]-r[0])/i;+a.toFixed(n)!==a&&n<5;)n++;t.precision=n,a=+a.toFixed(n),t.minOpen&&e.push({interval:[-1/0,r[0]],close:[0,0]});for(var o=0,s=r[0];o`,`≥`][t[0]]];e.text=e.text||this.formatValueText(e.value==null?e.interval:e.value,!1,n)},this)}};function TXe(e,t){var n=e.inverse;(e.orient===`vertical`?!n:n)&&t.reverse()}var EXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.doRender=function(){var e=this.group;e.removeAll();var t=this.visualMapModel,n=t.get(`textGap`),r=t.textStyleModel,i=this._getItemAlign(),a=t.itemSize,o=this._getViewData(),s=o.endsText,c=DA(t.get(`showLabel`,!0),!s),l=!t.get(`selectedMode`);s&&this._renderEndsText(e,s[0],a,c,i),Q(o.viewPieceList,function(o){var s=o.piece,u=new $P;u.onclick=fA(this._onItemClick,this,s),this._enableHoverLink(u,o.indexInModelPieceList);var d=t.getRepresentValue(s);if(this._createItemSymbol(u,d,[0,0,a[0],a[1]],l),c){var f=this.visualMapModel.getValueState(d),p=r.get(`align`)||i;u.add(new AL({style:wB(r,{x:p===`right`?-n:a[0]+n,y:a[1]/2,text:s.text,verticalAlign:r.get(`verticalAlign`)||`middle`,align:p,opacity:OA(r.get(`opacity`),f===`outOfRange`?.5:1)}),silent:l}))}e.add(u)},this),s&&this._renderEndsText(e,s[1],a,c,i),ZV(t.get(`orient`),e,t.get(`itemGap`)),this.renderBackground(e),this.positionGroup(e)},t.prototype._enableHoverLink=function(e,t){var n=this;e.on(`mouseover`,function(){return r(`highlight`)}).on(`mouseout`,function(){return r(`downplay`)});var r=function(e){var r=n.visualMapModel;r.option.hoverLink&&n.api.dispatchAction({type:e,batch:a7(r.findTargetDataIndices(t),r)})}},t.prototype._getItemAlign=function(){var e=this.visualMapModel,t=e.option;if(t.orient===`vertical`)return iXe(e,this.api,e.itemSize);var n=t.align;return(!n||n===`auto`)&&(n=`left`),n},t.prototype._renderEndsText=function(e,t,n,r,i){if(t){var a=new $P,o=this.visualMapModel.textStyleModel;a.add(new AL({style:wB(o,{x:r?i===`right`?n[0]:0:n[0]/2,y:n[1]/2,verticalAlign:`middle`,align:r?i:`center`,text:t})})),e.add(a)}},t.prototype._getViewData=function(){var e=this.visualMapModel,t=sA(e.getPieceList(),function(e,t){return{piece:e,indexInModelPieceList:t}}),n=e.get(`text`),r=e.get(`orient`),i=e.get(`inverse`);return(r===`horizontal`?i:!i)?t.reverse():n&&=n.slice().reverse(),{viewPieceList:t,endsText:n}},t.prototype._createItemSymbol=function(e,t,n,r){var i=aG(this.getControllerVisual(t,`symbol`),n[0],n[1],n[2],n[3],this.getControllerVisual(t,`color`));i.silent=r,e.add(i)},t.prototype._onItemClick=function(e){var t=this.visualMapModel,n=t.option,r=n.selectedMode;if(r){var i=Qk(n.selected),a=t.getSelectedMapKey(e);r===`single`||r===!0?(i[a]=!0,Q(i,function(e,t){i[t]=t===a})):i[a]=!i[a],this.api.dispatchAction({type:`selectDataRange`,from:this.uid,visualMapId:this.visualMapModel.id,selected:i})}},t.type=`visualMap.piecewise`,t}(nXe);function DXe(e){e.registerComponentModel(CXe),e.registerComponentView(EXe),xXe(e)}function OXe(e){tq(SXe),tq(DXe)}var kXe=function(){function e(e){this._thumbnailModel=e}return e.prototype.reset=function(e){this._renderVersion=e.getECUpdateCycleVersion()},e.prototype.renderContent=function(e){var t=e.api.getViewOfComponentModel(this._thumbnailModel);t&&(e.group.silent=!0,t.renderContent({group:e.group,targetTrans:e.targetTrans,z2Range:fB(e.group),roamType:e.roamType,viewportRect:e.viewportRect,renderVersion:this._renderVersion}))},e.prototype.updateWindow=function(e,t){var n=t.getViewOfComponentModel(this._thumbnailModel);n&&n.updateWindow({targetTrans:e,renderVersion:this._renderVersion})},e}(),AXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.preventAutoZ=!0,n}return t.prototype.optionUpdated=function(e,t){this._updateBridge()},t.prototype._updateBridge=function(){var e=this._birdge=this._birdge||new kXe(this);this._target=null,this.ecModel.eachSeries(function(e){d3(e,null)}),this.shouldShow()&&d3(this.getTarget().baseMapProvider,e)},t.prototype.shouldShow=function(){return this.getShallow(`show`,!0)},t.prototype.getBridge=function(){return this._birdge},t.prototype.getTarget=function(){if(this._target)return this._target;var e=this.getReferringComponents(`series`,{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];return e?e.subType!==`graph`&&(e=null):e=this.ecModel.queryComponents({mainType:`series`,subType:`graph`})[0],this._target={baseMapProvider:e},this._target},t.type=`thumbnail`,t.layoutMode=`box`,t.dependencies=[`series`,`geo`],t.defaultOption={show:!0,right:1,bottom:1,height:`25%`,width:`25%`,itemStyle:{borderColor:$.color.border,borderWidth:2},windowStyle:{borderWidth:1,color:$.color.neutral30,borderColor:$.color.neutral40,opacity:.3},z:10},t}(lH),jXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){if(this._api=n,this._model=e,this._coordSys||=new $1,!this._isEnabled()){this._clear();return}this._renderVersion=n.getECUpdateCycleVersion();var r=this.group;r.removeAll();var i=e.getModel(`itemStyle`),a=i.getItemStyle();a.fill??=t.get(`backgroundColor`)||$.color.neutral00;var o=rH(e,n).refContainer,s=eH(QV(e,!0),o),c=a.lineWidth||0,l=this._contentRect=tB(s.clone(),c/2,!0,!0),u=new $P;r.add(u),u.setClipPath(new OL({shape:l.plain()}));var d=this._targetGroup=new $P;u.add(d);var f=s.plain();f.r=i.getShallow(`borderRadius`,!0),r.add(this._bgRect=new OL({style:a,shape:f,silent:!1,cursor:`grab`}));var p=e.getModel(`windowStyle`),m=p.getShallow(`borderRadius`,!0);u.add(this._windowRect=new OL({shape:{x:0,y:0,width:0,height:0,r:m},style:p.getItemStyle(),silent:!1,cursor:`grab`})),this._dealRenderContent(),this._dealUpdateWindow(),NXe(e,this)},t.prototype.renderContent=function(e){this._bridgeRendered=e,this._isEnabled()&&(this._dealRenderContent(),this._dealUpdateWindow(),NXe(this._model,this))},t.prototype._dealRenderContent=function(){var e=this._bridgeRendered;if(!(!e||e.renderVersion!==this._renderVersion)){var t=this._targetGroup,n=this._coordSys,r=this._contentRect;if(t.removeAll(),e){var i=e.group,a=i.getBoundingRect();t.add(i),this._bgRect.z2=e.z2Range.min-10,l0(n,a.x,a.y,a.width,a.height);var o=eH({left:`center`,top:`center`,aspect:a.width/a.height},r);u0(n,o.x,o.y,o.width,o.height),i0(i,n,0),i.dirty(),this._windowRect.z2=e.z2Range.max+10,this._resetRoamController(e.roamType)}}},t.prototype.updateWindow=function(e){var t=this._bridgeRendered;t&&t.renderVersion===e.renderVersion&&(t.targetTrans=e.targetTrans),this._isEnabled()&&this._dealUpdateWindow()},t.prototype._dealUpdateWindow=function(){var e=this._bridgeRendered;if(!(!e||e.renderVersion!==this._renderVersion)){var t=zj([],e.targetTrans),n=Fj([],t0(null,this._coordSys),t);this._transThisToTarget=zj([],n);var r=e.viewportRect;r=r?r.clone():new eM(0,0,this._api.getWidth(),this._api.getHeight()),r.applyTransform(n);var i=this._windowRect,a=i.shape.r;i.setShape(nA({r:a},r))}},t.prototype._resetRoamController=function(e){var t=this,n=this._api,r=this._roamController;if(r||=this._roamController=new b1(n.getZr()),!e||!this._isEnabled()){r.disable();return}r.enable(e,{api:n,zInfo:{component:this._model},triggerInfo:{roamTrigger:null,isInSelf:function(e,n,r){return t._contentRect.contain(n,r)}}}),r.off(`pan`).off(`zoom`).on(`pan`,fA(this._onPan,this)).on(`zoom`,fA(this._onZoom,this))},t.prototype._onPan=function(e){var t=this._transThisToTarget;if(!(!this._isEnabled()||!t)){var n=uj([],[e.oldX,e.oldY],t),r=uj([],[e.oldX-e.dx,e.oldY-e.dy],t);this._api.dispatchAction(MXe(this._model.getTarget().baseMapProvider,{dx:r[0]-n[0],dy:r[1]-n[1]}))}},t.prototype._onZoom=function(e){var t=this._transThisToTarget;if(!(!this._isEnabled()||!t)){var n=uj([],[e.originX,e.originY],t);this._api.dispatchAction(MXe(this._model.getTarget().baseMapProvider,{zoom:1/e.scale,originX:n[0],originY:n[1]}))}},t.prototype._isEnabled=function(){var e=this._model;return!(!e||!e.shouldShow()||!e.getTarget().baseMapProvider)},t.prototype._clear=function(){this.group.removeAll(),this._bridgeRendered=null,this._roamController&&this._roamController.disable()},t.prototype.remove=function(){this._clear()},t.prototype.dispose=function(){this._clear()},t.type=`thumbnail`,t}(pW);function MXe(e,t){var n={type:e.mainType===`series`?e.subType+`Roam`:e.mainType+`Roam`};return n[e.mainType+`Id`]=e.id,Z(n,t),n}function NXe(e,t){var n=dB(e);pB(t.group,n.z,n.zlevel)}function PXe(e){e.registerComponentModel(AXe),e.registerComponentView(jXe)}var FXe={label:{enabled:!0},decal:{show:!1}},IXe=tI(),LXe=tI(),RXe=yI(zXe);function zXe(e,t){var n=e.getModel(`aria`);if(!n.get(`enabled`))return;var r=LXe(e).scope||(LXe(e).scope={}),i=Qk(FXe);$k(i.label,e.getLocaleModel().get(`aria`),!1),$k(n.option,i,!1),a(),o();function a(){if(n.getModel(`decal`).get(`show`)){var t=zA();e.eachSeries(function(e){e.isColorBySeries()||(IXe(e).scope=t.get(e.type)||t.set(e.type,{}))}),e.eachSeries(function(t){if(hA(t.enableAriaDecal)){t.enableAriaDecal();return}var n=t.getData();if(t.isColorBySeries()){var i=DH(t.ecModel,t.name,r,e.getSeriesCount()),a=n.getVisual(`decal`);n.setVisual(`decal`,u(a,i))}else{var o=t.getRawData(),s={},c=IXe(t).scope;n.each(function(e){var t=n.getRawIndex(e);s[t]=e});var l=o.count();o.each(function(e){var r=s[e],i=o.getName(e)||e+``,a=DH(t.ecModel,i,c,l),d=n.getItemVisual(r,`decal`);n.setItemVisual(r,`decal`,u(d,a))})}function u(e,t){var n=e?Z(Z({},t),e):t;return n.dirty=!0,n}})}}function o(){var r=t.getZr().dom;if(r){var i=e.getLocaleModel().get(`aria`),a=n.getModel(`label`);if(a.option=nA(a.option,i),a.get(`enabled`)){if(r.setAttribute(`role`,`img`),a.get(`description`)){r.setAttribute(`aria-label`,a.get(`description`));return}var o=e.getSeriesCount(),u=a.get([`data`,`maxCount`])||10,d=a.get([`series`,`maxCount`])||10,f=Math.min(o,d),p;if(!(o<1)){var m=c();p=m?s(a.get([`general`,`withTitle`]),{title:m}):a.get([`general`,`withoutTitle`]);var h=[],g=o>1?a.get([`series`,`multiple`,`prefix`]):a.get([`series`,`single`,`prefix`]);p+=s(g,{seriesCount:o}),e.eachSeries(function(e,t){if(t1?a.get([`series`,`multiple`,r]):a.get([`series`,`single`,r]),n=s(n,{seriesId:e.seriesIndex,seriesName:e.get(`name`),seriesType:l(e.subType)});var i=e.getData();if(i.count()>u){var c=a.get([`data`,`partialData`]);n+=s(c,{displayCnt:u})}else n+=a.get([`data`,`allData`]);for(var d=a.get([`data`,`separator`,`middle`]),p=a.get([`data`,`separator`,`end`]),m=a.get([`data`,`excludeDimensionId`]),g=[],_=0;_":`gt`,">=":`gte`,"=":`eq`,"!=":`ne`,"<>":`ne`},UXe=function(){function e(e){(this._condVal=gA(e)?new RegExp(e):TA(e)?e:null)??KF(``)}return e.prototype.evaluate=function(e){var t=typeof e;return gA(t)?this._condVal.test(e):vA(t)?this._condVal.test(e+``):!1},e}(),WXe=function(){function e(){}return e.prototype.evaluate=function(){return this.value},e}(),GXe=function(){function e(){}return e.prototype.evaluate=function(){for(var e=this.children,t=0;t2&&r.push(i),i=[e,t]}function u(e,t,n,r){d7(e,n)&&d7(t,r)||i.push(e,t,n,r,n,r)}function d(e,t,n,r,a,o){var s=Math.abs(t-e),c=Math.tan(s/4)*4/3,l=tw:D2&&r.push(i),r}function p7(e,t,n,r,i,a,o,s,c,l){if(d7(e,n)&&d7(t,r)&&d7(i,o)&&d7(a,s)){c.push(o,s);return}var u=2/l,d=u*u,f=o-e,p=s-t,m=Math.sqrt(f*f+p*p);f/=m,p/=m;var h=n-e,g=r-t,_=i-o,v=a-s,y=h*h+g*g,b=_*_+v*v;if(y=0&&w=0){c.push(o,s);return}var T=[],E=[];HM(e,n,i,o,.5,T),HM(t,r,a,s,.5,E),p7(T[0],E[0],T[1],E[1],T[2],E[2],T[3],E[3],c,l),p7(T[4],E[4],T[5],E[5],T[6],E[6],T[7],E[7],c,l)}function sZe(e,t){var n=f7(e),r=[];t||=1;for(var i=0;i0)for(var l=0;lMath.abs(l),d=cZe([c,l],+!u,t),f=(u?s:l)/d.length,p=0;pi,o=cZe([r,i],+!a,t),s=a?`width`:`height`,c=a?`height`:`width`,l=a?`x`:`y`,u=a?`y`:`x`,d=e[s]/o.length,f=0;f1?null:new Vj(p*c+e,p*l+t)}function pZe(e,t,n){var r=new Vj;Vj.sub(r,n,t),r.normalize();var i=new Vj;return Vj.sub(i,e,t),i.dot(r)}function m7(e,t){var n=e[e.length-1];n&&n[0]===t[0]&&n[1]===t[1]||e.push(t)}function mZe(e,t,n){for(var r=e.length,i=[],a=0;ao?(l.x=u.x=s+a/2,l.y=c,u.y=c+o):(l.y=u.y=c+o/2,l.x=s,u.x=s+a),mZe(t,l,u)}function h7(e,t,n,r){if(n===1)r.push(t);else{var i=Math.floor(n/2),a=e(t);h7(e,a[0],i,r),h7(e,a[1],n-i,r)}return r}function gZe(e,t){for(var n=[],r=0;r0)for(var x=r/n,S=-r/2;S<=r/2;S+=x){for(var C=Math.sin(S),w=Math.cos(S),T=0,y=0;y0;l/=2){var u=0,d=0;(e&l)>0&&(u=1),(t&l)>0&&(d=1),s+=l*l*(3*u^d),d===0&&(u===1&&(e=l-1-e,t=l-1-t),c=e,e=t,t=c)}return s}function b7(e){var t=1/0,n=1/0,r=-1/0,i=-1/0;return sA(sA(e,function(e){var a=e.getBoundingRect(),o=e.getComputedTransform(),s=a.x+a.width/2+(o?o[4]:0),c=a.y+a.height/2+(o?o[5]:0);return t=Math.min(s,t),n=Math.min(c,n),r=Math.max(s,r),i=Math.max(c,i),[s,c]}),function(a,o){return{cp:a,z:AZe(a[0],a[1],t,n,r,i),path:e[o]}}).sort(function(e,t){return e.z-t.z}).map(function(e){return e.path})}function jZe(e){return yZe(e.path,e.count)}function x7(){return{fromIndividuals:[],toIndividuals:[],count:0}}function MZe(e,t,n){var r=[];function i(e){for(var t=0;t=0;i--)if(!n[i].many.length){var c=n[s].many;if(c.length<=1)if(s)s=0;else return n;var a=c.length,l=Math.ceil(a/2);n[i].many=c.slice(l,a),n[s].many=c.slice(0,l),s++}return n}var IZe={clone:function(e){for(var t=[],n=1-(1-e.path.style.opacity)**(1/e.count),r=0;r0))return;var s=r.getModel(`universalTransition`).get(`delay`),c=Z({setToFinal:!0},o),l,u;PZe(e)&&(l=e,u=t),PZe(t)&&(l=t,u=e);function d(e,t,r,i,o){var l=e.many,u=e.one;if(l.length===1&&!o){var f=t?l[0]:u,p=t?u:l[0];if(g7(f))d({many:[f],one:p},!0,r,i,!0);else{var m=s?nA({delay:s(r,i)},c):c;y7(f,p,m),a(f,p,f,p,m)}}else for(var h=nA({dividePath:IZe[n],individualDelay:s&&function(e,t,n,a){return s(e+r,i)}},c),g=t?MZe(l,u,h):NZe(u,l,h),_=g.fromIndividuals,v=g.toIndividuals,y=_.length,b=0;bt.length,p=l?FZe(u,l):FZe(f?t:e,[f?e:t]),m=0,h=0;hLZe))for(var i=n.getIndices(),a=0;a0&&r.group.traverse(function(e){e instanceof SL&&!e.animators.length&&e.animateFrom({style:{opacity:0}},i)})})}function YZe(e){return e.getModel(`universalTransition`).get(`seriesKey`)||e.id}function XZe(e){return mA(e)?e.sort().join(`,`):e}function D7(e){if(e.hostModel)return e.hostModel.getModel(`universalTransition`).get(`divideShape`)}function ZZe(e,t){var n=zA(),r=zA(),i=zA();return Q(e.oldSeries,function(t,n){var a=e.oldDataGroupIds[n],o=e.oldData[n],s=YZe(t),c=XZe(s);r.set(c,{dataGroupId:a,data:o}),mA(s)&&Q(s,function(e){i.set(e,{key:c,dataGroupId:a,data:o})})}),Q(t.updatedSeries,function(e){if(e.isUniversalTransitionEnabled()&&e.isAnimationEnabled()){var t=e.get(`dataGroupId`),a=e.getData(),o=YZe(e),s=XZe(o),c=r.get(s);if(c)n.set(s,{oldSeries:[{dataGroupId:c.dataGroupId,divide:D7(c.data),data:c.data}],newSeries:[{dataGroupId:t,divide:D7(a),data:a}]});else if(mA(o)){var l=[];Q(o,function(e){var t=r.get(e);t.data&&l.push({dataGroupId:t.dataGroupId,divide:D7(t.data),data:t.data})}),l.length&&n.set(s,{oldSeries:l,newSeries:[{dataGroupId:t,data:a,divide:D7(a)}]})}else{var u=i.get(o);if(u){var d=n.get(u.key);d||(d={oldSeries:[{dataGroupId:u.dataGroupId,data:u.data,divide:D7(u.data)}],newSeries:[]},n.set(u.key,d)),d.newSeries.push({dataGroupId:t,data:a,divide:D7(a)})}}}}),n}function QZe(e,t){for(var n=0;n=0&&i.push({dataGroupId:t.oldDataGroupIds[n],data:t.oldData[n],divide:D7(t.oldData[n]),groupIdDim:e.dimension})}),Q(qF(e.to),function(e){var r=QZe(n.updatedSeries,e);if(r>=0){var i=n.updatedSeries[r].getData();a.push({dataGroupId:t.oldDataGroupIds[r],data:i,divide:D7(i),groupIdDim:e.dimension})}}),i.length>0&&a.length>0&&JZe(i,a,r)}function eQe(e){e.registerUpdateLifecycle(`series:beforeupdate`,function(e,t,n){Q(qF(n.seriesTransition),function(e){Q(qF(e.to),function(e){for(var t=n.updatedSeries,r=0;ro.vmin?n+=o.vmin-r+(e-o.vmin)/(o.vmax-o.vmin)*o.gapReal:n+=e-r,r=o.vmax,i=!1;break}n+=o.vmin-r+o.gapReal,r=o.vmax}return i&&(n+=e-r),n},transformOut:function(e,t){if(t&&t.depth===2)return e;for(var n=rQe,r=iQe,i=!0,a=0,o=0;oc?s.vmin+(e-c)/(l-c)*(s.vmax-s.vmin):r+e-n,r=s.vmax,i=!1;break}n=l,r=s.vmax}return i&&(a=r+e-n),a}},e}();function nQe(e,t){return new tQe(e,t)}var rQe=0,iQe=0;function aQe(e,t){var n=0,r={tpAbs:{span:0,val:0},tpPrct:{span:0,val:0}},i=function(){return{has:!1,span:NaN,inExtFrac:NaN,val:NaN}},a={S:{tpAbs:i(),tpPrct:i()},E:{tpAbs:i(),tpPrct:i()}};Q(e.breaks,function(e){var i=e.gapParsed;i.type===`tpPrct`&&(n+=i.val);var o=O7(e,t);if(o){var s=o.vmin!==e.vmin,c=o.vmax!==e.vmax,l=o.vmax-o.vmin;if(!(s&&c))if(s||c){var u=s?`S`:`E`;a[u][i.type].has=!0,a[u][i.type].span=l,a[u][i.type].inExtFrac=l/(e.vmax-e.vmin),a[u][i.type].val=i.val}else r[i.type].span+=l,r[i.type].val+=i.val}});var o=n*(0+(t[1]-t[0])+(r.tpAbs.val-r.tpAbs.span)+(a.S.tpAbs.has?(a.S.tpAbs.val-a.S.tpAbs.span)*a.S.tpAbs.inExtFrac:0)+(a.E.tpAbs.has?(a.E.tpAbs.val-a.E.tpAbs.span)*a.E.tpAbs.inExtFrac:0)-r.tpPrct.span-(a.S.tpPrct.has?a.S.tpPrct.span*a.S.tpPrct.inExtFrac:0)-(a.E.tpPrct.has?a.E.tpPrct.span*a.E.tpPrct.inExtFrac:0))/(1-r.tpPrct.val-(a.S.tpPrct.has?a.S.tpPrct.val*a.S.tpPrct.inExtFrac:0)-(a.E.tpPrct.has?a.E.tpPrct.val*a.E.tpPrct.inExtFrac:0));Q(e.breaks,function(e){var t=e.gapParsed;t.type===`tpPrct`&&(e.gapReal=n===0?0:uF(o,0)*t.val/n),t.type===`tpAbs`&&(e.gapReal=t.val),e.gapReal??=0})}function oQe(e,t,n,r,i,a){e!==`no`&&Q(n,function(n){var o=O7(n,a);if(o)for(var s=t.length-1;s>=0;s--){var c=t[s],l=r(c),u=i*3/4;l>o.vmin-u&&lt[0]&&n=0&&e<.99999}Q(e,function(e){if(!(!e||e.start==null||e.end==null)&&!e.isExpanded){var a={breakOption:Qk(e),vmin:t.parse(e.start),vmax:t.parse(e.end),gapParsed:{type:`tpAbs`,val:0},gapReal:null};if(e.gap!=null){var o=!1;if(gA(e.gap)){var s=NA(e.gap);if(s.match(/%$/)){var c=parseFloat(s)/100;i(c,`Percent gap`)||(c=0),a.gapParsed.type=`tpPrct`,a.gapParsed.val=c,o=!0}}if(!o){var l=t.parse(e.gap);(!isFinite(l)||l<0)&&(l=0),a.gapParsed.type=`tpAbs`,a.gapParsed.val=l}}if(a.vmin===a.vmax&&(a.gapParsed.type=`tpAbs`,a.gapParsed.val=0),n&&n.noNegative&&Q([`vmin`,`vmax`],function(e){a[e]<0&&(a[e]=0)}),a.vmin>a.vmax){var u=a.vmax;a.vmax=a.vmin,a.vmin=u}r.push(a)}}),r.sort(function(e,t){return e.vmin-t.vmin});var a=-1/0;return Q(r,function(e,t){a>e.vmin&&(r[t]=null),a=e.vmax}),{breaks:lA(r,function(e){return!!e})}}function A7(e,t){return j7(t)===j7(e)}function j7(e){return e.start+`_\0_`+e.end}function cQe(e,t,n){var r=[];Q(e,function(e,n){var i=t(e);i&&i.type===`vmin`&&r.push([n])}),Q(e,function(n,i){var a=t(n);if(a&&a.type===`vmax`){var o=uA(r,function(n){return A7(t(e[n[0]]).parsedBreak.breakOption,a.parsedBreak.breakOption)});o&&o.push(i)}});var i=[];return Q(r,function(t){t.length===2&&i.push(n?t:[e[t[0]],e[t[1]]])}),i}function lQe(e,t,n,r){if(t.break){var i=t.break.parsedBreak,a=uA(n,function(e){return A7(e.breakOption,t.break.parsedBreak.breakOption)}),o={lookup:r,depth:2},s={vmin:e.transformOut(i.vmin,o),vmax:e.transformOut(i.vmax,o),breakOption:i.breakOption,gapParsed:Qk(a.gapParsed),gapReal:i.gapReal};return{tickVal:s[t.break.type],vBreak:{type:t.break.type,parsedBreak:s}}}}function uQe(e,t,n,r,i){i.original=k7(e,t,n);var a=i.transformed=k7(e,t,n),o=i.lookup;a.breaks=sA(a.breaks,function(e,n){var i={depth:2},a=t.transformIn(e.vmin,i),s=t.transformIn(e.vmax,i),c={type:e.gapParsed.type,val:e.gapParsed.type===`tpAbs`?t.transformIn(e.vmin+e.gapParsed.val,i)-a:e.gapParsed.val};return o.from[r+n]=a,o.to[r+n]=e.vmin,o.from[r+n+1]=s,o.to[r+n+1]=e.vmax,{vmin:a,vmax:s,gapParsed:c,gapReal:e.gapReal,breakOption:e.breakOption}})}var dQe={vmin:`start`,vmax:`end`};function fQe(e,t){return t&&(e||={},e.break={type:dQe[t.type],start:t.parsedBreak.vmin,end:t.parsedBreak.vmax}),e}function pQe(){pDe({createBreakScaleMapper:nQe,pruneTicksByBreak:oQe,addBreaksToTicks:sQe,parseAxisBreakOption:k7,identifyAxisBreak:A7,serializeAxisBreakIdentifier:j7,retrieveAxisBreakPairs:cQe,getTicksBreakOutwardTransform:lQe,parseAxisBreakOptionInwardTransform:uQe,makeAxisLabelFormatterParamBreak:fQe})}var mQe=tI();function hQe(e,t){var n=uA(e,function(e){return ZB().identifyAxisBreak(e.parsedBreak.breakOption,t.breakOption)});return n||e.push(n={zigzagRandomList:[],parsedBreak:t,shouldRemove:!1}),n}function gQe(e){Q(e,function(e){return e.shouldRemove=!0})}function _Qe(e){for(var t=e.length-1;t>=0;t--)e[t].shouldRemove&&e.splice(t,1)}function vQe(e,t,n,r,i){var a=n.axis;if(a.scale.isBlank()||!ZB())return;var o=ZB().retrieveAxisBreakPairs(a.scale.getTicks({breakTicks:`only_break`}),function(e){return e.break},!1);if(!o.length)return;var s=n.getModel(`breakArea`),c=s.get(`zigzagAmplitude`),l=s.get(`zigzagMinSpan`),u=s.get(`zigzagMaxSpan`);l=Math.max(2,l||0),u=Math.max(l,u||0);var d=s.get(`expandOnClick`),f=s.get(`zigzagZ`),p=s.getModel(`itemStyle`).getItemStyle(),m=p.stroke,h=p.lineWidth,g=p.lineDash,_=p.fill,v=new $P({ignoreModelZ:!0}),y=a.isHorizontal(),b=mQe(t).visualList||(mQe(t).visualList=[]);gQe(b);for(var x=function(e){var t=o[e][0].break.parsedBreak,r=[];r[0]=a.toGlobalCoord(a.dataToCoord(t.vmin,!0)),r[1]=a.toGlobalCoord(a.dataToCoord(t.vmax,!0)),r[1]=y;D&&(w=y);var O=[],k=[];O[d]=n,k[d]=i,!E&&!D&&(O[d]+=C?-c:c,k[d]-=C?c:-c),O[v]=w,k[v]=w,x.push(O),S.push(k);var A=void 0;if(Tn[1]&&n.reverse(),{coordPair:n,brkId:ZB().serializeAxisBreakIdentifier(t.breakOption)}});s.sort(function(e,t){return e.coordPair[0]-t.coordPair[0]});for(var c=o[0],l=null,u=0;u=0?c[0].width:c[1].width)+u.x)/2-l.x,f=Math.min(d,d-u.x),p=Math.max(d,d-u.x);s=(d-(p<0?p:f>0?f:0))/u.x}var m=new Vj,h=new Vj;Vj.scale(m,r,-s),Vj.scale(h,r,1-s),JY(n[0],m),JY(n[1],h)}function xQe(e,t){var n={breaks:[]};return Q(t.breaks,function(r){if(r){var i=uA(e.get(`breaks`,!0),function(e){return ZB().identifyAxisBreak(e,r)});if(i){var a=t.type,o={isExpanded:!!i.isExpanded};i.isExpanded=a===`expandAxisBreak`?!0:a===`collapseAxisBreak`?!1:a===`toggleAxisBreak`?!i.isExpanded:i.isExpanded,n.breaks.push({start:i.start,end:i.end,isExpanded:!!i.isExpanded,old:o})}}}),n}function SQe(){ANe({adjustBreakLabelPair:bQe,buildAxisBreakLine:yQe,rectCoordBuildBreakAxis:vQe,updateModelAxisBreak:xQe})}function CQe(e){INe(e),pQe(),SQe()}function wQe(){XPe(TQe)}function TQe(e,t){Q(e,function(e){if(!e.model.get([`axisLabel`,`inside`])){var n=EQe(e);if(n){var r=e.isHorizontal()?`height`:`width`,i=e.model.get([`axisLabel`,`margin`]);t[r]-=n[r]+i,e.position===`top`?t.y+=n.height+i:e.position===`left`&&(t.x+=n.width+i)}}})}function EQe(e){var t=e.model,n=e.scale;if(!t.get([`axisLabel`,`show`])||n.isBlank())return;var r,i,a=n.getExtent();n instanceof Qq?i=n.count():(r=n.getTicks(),i=r.length);var o=e.getLabelModel(),s=hJ(e),c,l=1;i>40&&(l=Math.ceil(i/40));for(var u=0;uxY,ChartView:()=>gW,ComponentModel:()=>lH,ComponentView:()=>pW,List:()=>Cq,Model:()=>zB,PRIORITY:()=>GG,SeriesModel:()=>lW,color:()=>BSe,connect:()=>oAe,dataTool:()=>mAe,dependencies:()=>Hke,disConnect:()=>sAe,disconnect:()=>IK,dispose:()=>cAe,env:()=>Rk,extendChartView:()=>iMe,extendComponentModel:()=>tMe,extendComponentView:()=>nMe,extendSeriesModel:()=>rMe,format:()=>Lje,getCoordinateSystemDimensions:()=>uAe,getInstanceByDom:()=>LK,getInstanceById:()=>lAe,getMap:()=>pAe,graphic:()=>Ije,helper:()=>Cje,init:()=>aAe,innerDrawElementOnCanvas:()=>kG,matrix:()=>bSe,number:()=>Pje,parseGeoJSON:()=>cY,parseGeoJson:()=>cY,registerAction:()=>WK,registerCoordinateSystem:()=>GK,registerCustomSeries:()=>dAe,registerLayout:()=>KK,registerLoading:()=>XK,registerLocale:()=>JB,registerMap:()=>ZK,registerPostInit:()=>VK,registerPostUpdate:()=>HK,registerPreprocessor:()=>zK,registerProcessor:()=>BK,registerTheme:()=>RK,registerTransform:()=>QK,registerUpdateLifecycle:()=>UK,registerVisual:()=>qK,setCanvasCreator:()=>fAe,setPlatformAPI:()=>Bk,throttle:()=>SW,time:()=>Fje,use:()=>tq,util:()=>Rje,vector:()=>$xe,version:()=>Vke,zrUtil:()=>Uxe,zrender:()=>xCe});tq([cNe]),tq([tNe]),tq([kNe,EPe,LPe,hFe,OFe,AIe,aLe,HLe,hRe,CRe,kRe,RRe,Bze,mBe,jBe,$Be,aVe,yVe,EVe,XVe,iHe,xHe,yUe]),tq(tWe),tq(IWe),tq(l2),tq(ZWe),tq(zze),tq(nGe),tq(HGe),tq(nKe),tq(dqe),tq(Bqe),tq(p8),tq(fJe),tq(hJe),tq(AJe),tq(VJe),tq(JJe),tq(rYe),tq(bYe),tq(GYe),tq(MYe),tq(WYe),tq(OXe),tq(SXe),tq(DXe),tq(PXe),tq(VXe),tq(rZe),tq(oZe),tq(eQe),tq(yMe),tq(CQe),tq(wQe),tq(gFe);var OQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=1;e.default=function(){return`${t++}`}})),kQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,e.default=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:60,n=null;return function(){var r=this,i=[...arguments];clearTimeout(n),n=setTimeout(function(){e.apply(r,i)},t)}}})),M7=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SizeSensorId=e.SensorTabIndex=e.SensorClassName=void 0,e.SizeSensorId=`size-sensor-id`,e.SensorClassName=`size-sensor-object`,e.SensorTabIndex=`-1`})),AQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSensor=void 0;var t=r(kQe()),n=M7();function r(e){return e&&e.__esModule?e:{default:e}}e.createSensor=function(e,r){var i=void 0,a=[],o=function(){getComputedStyle(e).position===`static`&&(e.style.position=`relative`);var t=document.createElement(`object`);return t.onload=function(){t.contentDocument.defaultView.addEventListener(`resize`,s),s()},t.style.display=`block`,t.style.position=`absolute`,t.style.top=`0`,t.style.left=`0`,t.style.height=`100%`,t.style.width=`100%`,t.style.overflow=`hidden`,t.style.pointerEvents=`none`,t.style.zIndex=`-1`,t.style.opacity=`0`,t.setAttribute(`class`,n.SensorClassName),t.setAttribute(`tabindex`,n.SensorTabIndex),t.type=`text/html`,e.appendChild(t),t.data=`about:blank`,t},s=(0,t.default)(function(){a.forEach(function(t){t(e)})}),c=function(e){i||=o(),a.indexOf(e)===-1&&a.push(e)},l=function(){i&&i.parentNode&&(i.contentDocument&&i.contentDocument.defaultView.removeEventListener(`resize`,s),i.parentNode.removeChild(i),e.removeAttribute(n.SizeSensorId),i=void 0,a=[],r&&r())};return{element:e,bind:c,destroy:l,unbind:function(e){var t=a.indexOf(e);t!==-1&&a.splice(t,1),a.length===0&&i&&l()}}}})),jQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSensor=void 0;var t=M7(),n=r(kQe());function r(e){return e&&e.__esModule?e:{default:e}}e.createSensor=function(e,r){var i=void 0,a=[],o=(0,n.default)(function(){a.forEach(function(t){t(e)})}),s=function(){var t=new ResizeObserver(o);return t.observe(e),o(),t},c=function(e){i||=s(),a.indexOf(e)===-1&&a.push(e)},l=function(){i&&i.disconnect(),a=[],i=void 0,e.removeAttribute(t.SizeSensorId),r&&r()};return{element:e,bind:c,destroy:l,unbind:function(e){var t=a.indexOf(e);t!==-1&&a.splice(t,1),a.length===0&&i&&l()}}}})),MQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSensor=void 0;var t=AQe(),n=jQe();e.createSensor=typeof ResizeObserver<`u`?n.createSensor:t.createSensor})),NQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.removeSensor=e.getSensor=e.Sensors=void 0;var t=i(OQe()),n=MQe(),r=M7();function i(e){return e&&e.__esModule?e:{default:e}}var a=e.Sensors={};function o(e){e&&a[e]&&delete a[e]}e.getSensor=function(e){var i=e.getAttribute(r.SizeSensorId);if(i&&a[i])return a[i];var s=(0,t.default)();e.setAttribute(r.SizeSensorId,s);var c=(0,n.createSensor)(e,function(){return o(s)});return a[s]=c,c},e.removeSensor=function(e){var t=e.element.getAttribute(r.SizeSensorId);e.destroy(),o(t)}})),PQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ver=e.clear=e.bind=void 0;var t=NQe();e.bind=function(e,n){var r=(0,t.getSensor)(e);return r.bind(n),function(){r.unbind(n)}},e.clear=function(e){var n=(0,t.getSensor)(e);(0,t.removeSensor)(n)},e.ver=`1.0.3`}))();function FQe(e,t){var n={};return t.forEach(function(t){n[t]=e[t]}),n}function N7(e){return typeof e==`function`}function IQe(e){return typeof e==`string`}var P7=l(o(((e,t)=>{t.exports=function e(t,n){if(t===n)return!0;if(t&&n&&typeof t==`object`&&typeof n==`object`){if(t.constructor!==n.constructor)return!1;var r,i,a;if(Array.isArray(t)){if(r=t.length,r!=n.length)return!1;for(i=r;i--!==0;)if(!e(t[i],n[i]))return!1;return!0}if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if(a=Object.keys(t),r=a.length,r!==Object.keys(n).length)return!1;for(i=r;i--!==0;)if(!Object.prototype.hasOwnProperty.call(n,a[i]))return!1;for(i=r;i--!==0;){var o=a[i];if(!e(t[o],n[o]))return!1}return!0}return t!==t&&n!==n}}))()),LQe=function(e){Nk(t,e);function t(t){var n=e.call(this,t)||this;return n.echarts=DQe,n}return t}(function(e){Nk(t,e);function t(t){var n=e.call(this,t)||this;return n.echarts=t.echarts,n.ele=null,n.isInitialResize=!0,n.eventHandlerRefs={},n}return t.prototype.componentDidMount=function(){this.renderNewEcharts()},t.prototype.componentDidUpdate=function(e){var t=this.props.shouldSetOption;if(!(N7(t)&&!t(e,this.props))){if(!(0,P7.default)(e.theme,this.props.theme)||!(0,P7.default)(e.opts,this.props.opts)){this.dispose(),this.renderNewEcharts();return}var n=this.getEchartsInstance();(0,P7.default)(e.onEvents,this.props.onEvents)||(this.unbindEvents(n),this.bindEvents(n,this.props.onEvents));var r=[`option`,`notMerge`,`replaceMerge`,`lazyUpdate`,`showLoading`,`loadingOption`];(0,P7.default)(FQe(this.props,r),FQe(e,r))||this.updateEChartsOption(),(!(0,P7.default)(e.style,this.props.style)||!(0,P7.default)(e.className,this.props.className))&&this.resize()}},t.prototype.componentWillUnmount=function(){this.dispose()},t.prototype.initEchartsInstance=function(){return Fk(this,void 0,void 0,function(){var e=this;return Ik(this,function(t){return[2,new Promise(function(t){e.echarts.init(e.ele,e.props.theme,e.props.opts),e.getEchartsInstance().on(`finished`,function(){var n=e.ele.clientWidth,r=e.ele.clientHeight;e.echarts.dispose(e.ele);var i=Pk({width:n,height:r},e.props.opts);t(e.echarts.init(e.ele,e.props.theme,i))})})]})})},t.prototype.getEchartsInstance=function(){return this.echarts.getInstanceByDom(this.ele)},t.prototype.dispose=function(){if(this.ele){try{(0,PQe.clear)(this.ele)}catch(e){console.warn(e)}this.echarts.dispose(this.ele)}},t.prototype.renderNewEcharts=function(){return Fk(this,void 0,void 0,function(){var e,t,n,r,i,a,o=this;return Ik(this,function(s){switch(s.label){case 0:return e=this.props,t=e.onEvents,n=e.onChartReady,r=e.autoResize,i=r===void 0?!0:r,[4,this.initEchartsInstance()];case 1:return s.sent(),a=this.updateEChartsOption(),this.bindEvents(a,t||{}),N7(n)&&n(a),this.ele&&i&&(0,PQe.bind)(this.ele,function(){o.resize()}),[2]}})})},t.prototype.bindEvents=function(e,t){var n=this,r=function(t,r){if(IQe(t)&&N7(r)){var i=function(t){r(t,e)};e.on(t,i),n.eventHandlerRefs[t]=i}};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&r(i,t[i])},t.prototype.unbindEvents=function(e){for(var t=0,n=Object.entries(this.eventHandlerRefs);te.exam_date),i=e.map(e=>e.ratio_percent),a=e.slice(1).map((e,t)=>{let n=F7.flat;return e.direction===`up`&&(n=F7.up),e.direction===`down`&&(n=F7.down),{type:`line`,data:r.map((e,n)=>n===t||n===t+1?i[n]:null),connectNulls:!1,showSymbol:!1,lineStyle:{width:3,color:n},tooltip:{show:!1},silent:!0}}),o=e.map((e,t)=>({point:e,i:t})).filter(({point:e})=>e.is_volatile).map(({i:e})=>({coord:[r[e],i[e]],symbol:`circle`,symbolSize:18,itemStyle:{color:F7.volatile,borderColor:`#fff`,borderWidth:2},label:{show:!1}}));return(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(LQe,{option:{title:{text:`${t} 成绩占比趋势`,left:`center`,textStyle:{fontSize:16}},tooltip:{trigger:`axis`,formatter:t=>{let n=e[t[0]?.dataIndex??0];if(!n)return``;let r=Ak[n.exam_type],i=`${n.exam_date} (${r})
占比: ${n.ratio_percent}%`;if(n.title&&(i+=`
${n.title}`),n.delta_percent!==null){let e=n.delta_percent>0?`+`:``;i+=`
较上次: ${e}${n.delta_percent}%`,n.is_volatile&&(i+=` [大幅波动]`)}return i}},grid:{left:50,right:30,top:60,bottom:50},xAxis:{type:`category`,data:r,axisLabel:{rotate:30}},yAxis:{type:`value`,name:`占比 (%)`,min:0,max:100},series:[{type:`line`,data:i,symbol:`circle`,symbolSize:(t,n)=>e[n.dataIndex]?.is_volatile?14:8,itemStyle:{color:t=>{let n=e[t.dataIndex];return n?.is_volatile?F7.volatile:n?.direction===`up`?F7.up:n?.direction===`down`?F7.down:`#1677ff`}},lineStyle:{opacity:0},markPoint:o.length?{data:o}:void 0,z:10},...a],legend:{bottom:0,data:[{name:`上升`,itemStyle:{color:F7.up}},{name:`下降`,itemStyle:{color:F7.down}},{name:`大幅波动`,itemStyle:{color:F7.volatile}}]}},style:{height:400,width:`100%`},notMerge:!0}),(0,Y.jsxs)(`p`,{style:{color:`#888`,fontSize:12,marginTop:8},children:[`波动阈值: `,(n*100).toFixed(0),`%,超过此变化幅度将高亮显示`]})]})}function zQe({questionId:e,variant:t=`original`,className:n,alt:r=`题目`,style:i}){let[a,o]=(0,h.useState)(null),[s,c]=(0,h.useState)(!1);return(0,h.useEffect)(()=>{let n=null,r=!1,i=async(e,t)=>{try{let t=await uk.get(e,{responseType:`blob`});if(r)return;n=URL.createObjectURL(t.data),o(n),c(!1)}catch{t&&!r?await i(t):r||c(!0)}},a=`/wrong-questions/${e}/annotated-image`,s=`/wrong-questions/${e}/image`;return t===`annotated`?i(a,s):i(s),()=>{r=!0,n&&URL.revokeObjectURL(n)}},[e,t]),s?(0,Y.jsx)(`div`,{className:n,style:{...i,background:`#fafafa`,color:`#999`,display:`flex`,alignItems:`center`,justifyContent:`center`,fontSize:12},children:`图片加载失败`}):a?(0,Y.jsx)(`img`,{src:a,alt:r,className:n,style:i}):(0,Y.jsx)(`div`,{className:n,style:{...i,background:`#fafafa`}})}function BQe(e,t){let n=t||{};return(e[e.length-1]===``?[...e,``]:e).join((n.padRight?` `:``)+`,`+(n.padLeft===!1?``:` `)).trim()}var VQe=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,HQe=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,UQe={};function I7(e,t){return((t||UQe).jsx?HQe:VQe).test(e)}var WQe=/[ \t\n\f\r]/g;function GQe(e){return typeof e==`object`?e.type===`text`?KQe(e.value):!1:KQe(e)}function KQe(e){return e.replace(WQe,``)===``}var L7=class{constructor(e,t,n){this.normal=t,this.property=e,n&&(this.space=n)}};L7.prototype.normal={},L7.prototype.property={},L7.prototype.space=void 0;function qQe(e,t){let n={},r={};for(let t of e)Object.assign(n,t.property),Object.assign(r,t.normal);return new L7(n,r,t)}function R7(e){return e.toLowerCase()}var z7=class{constructor(e,t){this.attribute=t,this.property=e}};z7.prototype.attribute=``,z7.prototype.booleanish=!1,z7.prototype.boolean=!1,z7.prototype.commaOrSpaceSeparated=!1,z7.prototype.commaSeparated=!1,z7.prototype.defined=!1,z7.prototype.mustUseProperty=!1,z7.prototype.number=!1,z7.prototype.overloadedBoolean=!1,z7.prototype.property=``,z7.prototype.spaceSeparated=!1,z7.prototype.space=void 0;var B7=s({boolean:()=>V7,booleanish:()=>H7,commaOrSpaceSeparated:()=>q7,commaSeparated:()=>K7,number:()=>W7,overloadedBoolean:()=>U7,spaceSeparated:()=>G7}),JQe=0,V7=J7(),H7=J7(),U7=J7(),W7=J7(),G7=J7(),K7=J7(),q7=J7();function J7(){return 2**++JQe}var Y7=Object.keys(B7),X7=class extends z7{constructor(e,t,n,r){let i=-1;if(super(e,t),YQe(this,`space`,r),typeof n==`number`)for(;++i4&&n.slice(0,4)===`data`&&s$e.test(t)){if(t.charAt(4)===`-`){let e=t.slice(5).replace(o$e,u$e);r=`data`+e.charAt(0).toUpperCase()+e.slice(1)}else{let e=t.slice(4);if(!o$e.test(e)){let n=e.replace(a$e,l$e);n.charAt(0)!==`-`&&(n=`-`+n),t=`data`+n}}i=X7}return new i(r,t)}function l$e(e){return`-`+e.toLowerCase()}function u$e(e){return e.charAt(1).toUpperCase()}var d$e=qQe([XQe,$Qe,t$e,n$e,r$e],`html`),Q7=qQe([XQe,e$e,t$e,n$e,r$e],`svg`);function f$e(e){return e.join(` `).trim()}var p$e=o(((e,t)=>{var n=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,i=/^\s*/,a=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,o=/^:\s*/,s=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,c=/^[;\s]*/,l=/^\s+|\s+$/g,u=`/`,d=`*`,f=``;function p(e,t){if(typeof e!=`string`)throw TypeError(`First argument must be a string`);if(!e)return[];t||={};var l=1,p=1;function h(e){var t=e.match(r);t&&(l+=t.length);var n=e.lastIndexOf(` -`);p=~n?e.length-n:p+e.length}function g(){var e={line:l,column:p};return function(t){return t.position=new _(e),b(),t}}function _(e){this.start=e,this.end={line:l,column:p},this.source=t.source}_.prototype.content=e;function v(n){var r=Error(t.source+`:`+l+`:`+p+`: `+n);if(r.reason=n,r.filename=t.source,r.line=l,r.column=p,r.source=e,!t.silent)throw r}function y(t){var n=t.exec(e);if(n){var r=n[0];return h(r),e=e.slice(r.length),n}}function b(){y(i)}function x(e){var t;for(e||=[];t=S();)t!==!1&&e.push(t);return e}function S(){var t=g();if(!(u!=e.charAt(0)||d!=e.charAt(1))){for(var n=2;f!=e.charAt(n)&&(d!=e.charAt(n)||u!=e.charAt(n+1));)++n;if(n+=2,f===e.charAt(n-1))return v(`End of comment missing`);var r=e.slice(2,n-2);return p+=2,h(r),e=e.slice(n),p+=2,t({type:`comment`,comment:r})}}function C(){var e=g(),t=y(a);if(t){if(S(),!y(o))return v(`property missing ':'`);var r=y(s),i=e({type:`declaration`,property:m(t[0].replace(n,f)),value:r?m(r[0].replace(n,f)):f});return y(c),i}}function w(){var e=[];x(e);for(var t;t=C();)t!==!1&&(e.push(t),x(e));return e}return b(),w()}function m(e){return e?e.replace(l,f):f}t.exports=p})),m$e=o((e=>{var t=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.default=r;var n=t(p$e());function r(e,t){let r=null;if(!e||typeof e!=`string`)return r;let i=(0,n.default)(e),a=typeof t==`function`;return i.forEach(e=>{if(e.type!==`declaration`)return;let{property:n,value:i}=e;a?t(n,i,e):i&&(r||={},r[n]=i)}),r}})),h$e=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.camelCase=void 0;var t=/^--[a-zA-Z0-9_-]+$/,n=/-([a-z])/g,r=/^[^-]+$/,i=/^-(webkit|moz|ms|o|khtml)-/,a=/^-(ms)-/,o=function(e){return!e||r.test(e)||t.test(e)},s=function(e,t){return t.toUpperCase()},c=function(e,t){return`${t}-`};e.camelCase=function(e,t){return t===void 0&&(t={}),o(e)?e:(e=e.toLowerCase(),e=t.reactCompat?e.replace(a,c):e.replace(i,c),e.replace(n,s))}})),g$e=o(((e,t)=>{var n=(e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}})(m$e()),r=h$e();function i(e,t){var i={};return!e||typeof e!=`string`||(0,n.default)(e,function(e,n){e&&n&&(i[(0,r.camelCase)(e,t)]=n)}),i}i.default=i,t.exports=i})),_$e=v$e(`end`),$7=v$e(`start`);function v$e(e){return t;function t(t){let n=t&&t.position&&t.position[e]||{};if(typeof n.line==`number`&&n.line>0&&typeof n.column==`number`&&n.column>0)return{line:n.line,column:n.column,offset:typeof n.offset==`number`&&n.offset>-1?n.offset:void 0}}}function y$e(e){let t=$7(e),n=_$e(e);if(t&&n)return{start:t,end:n}}function e9(e){return!e||typeof e!=`object`?``:`position`in e||`type`in e?b$e(e.position):`start`in e||`end`in e?b$e(e):`line`in e||`column`in e?t9(e):``}function t9(e){return x$e(e&&e.line)+`:`+x$e(e&&e.column)}function b$e(e){return t9(e&&e.start)+`-`+t9(e&&e.end)}function x$e(e){return e&&typeof e==`number`?e:1}var n9=class extends Error{constructor(e,t,n){super(),typeof t==`string`&&(n=t,t=void 0);let r=``,i={},a=!1;if(t&&(i=`line`in t&&`column`in t||`start`in t&&`end`in t?{place:t}:`type`in t?{ancestors:[t],place:t.position}:{...t}),typeof e==`string`?r=e:!i.cause&&e&&(a=!0,r=e.message,i.cause=e),!i.ruleId&&!i.source&&typeof n==`string`){let e=n.indexOf(`:`);e===-1?i.ruleId=n:(i.source=n.slice(0,e),i.ruleId=n.slice(e+1))}if(!i.place&&i.ancestors&&i.ancestors){let e=i.ancestors[i.ancestors.length-1];e&&(i.place=e.position)}let o=i.place&&`start`in i.place?i.place.start:i.place;this.ancestors=i.ancestors||void 0,this.cause=i.cause||void 0,this.column=o?o.column:void 0,this.fatal=void 0,this.file=``,this.message=r,this.line=o?o.line:void 0,this.name=e9(i.place)||`1:1`,this.place=i.place||void 0,this.reason=this.message,this.ruleId=i.ruleId||void 0,this.source=i.source||void 0,this.stack=a&&i.cause&&typeof i.cause.stack==`string`?i.cause.stack:``,this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}};n9.prototype.file=``,n9.prototype.name=``,n9.prototype.reason=``,n9.prototype.message=``,n9.prototype.stack=``,n9.prototype.column=void 0,n9.prototype.line=void 0,n9.prototype.ancestors=void 0,n9.prototype.cause=void 0,n9.prototype.fatal=void 0,n9.prototype.place=void 0,n9.prototype.ruleId=void 0,n9.prototype.source=void 0;var S$e=l(g$e(),1),r9={}.hasOwnProperty,C$e=new Map,w$e=/[A-Z]/g,T$e=new Set([`table`,`tbody`,`thead`,`tfoot`,`tr`]),E$e=new Set([`td`,`th`]);function D$e(e,t){if(!t||t.Fragment===void 0)throw TypeError("Expected `Fragment` in options");let n=t.filePath||void 0,r;if(t.development){if(typeof t.jsxDEV!=`function`)throw TypeError("Expected `jsxDEV` in options when `development: true`");r=L$e(n,t.jsxDEV)}else{if(typeof t.jsx!=`function`)throw TypeError("Expected `jsx` in production options");if(typeof t.jsxs!=`function`)throw TypeError("Expected `jsxs` in production options");r=I$e(n,t.jsx,t.jsxs)}let i={Fragment:t.Fragment,ancestors:[],components:t.components||{},create:r,elementAttributeNameCase:t.elementAttributeNameCase||`react`,evaluater:t.createEvaluater?t.createEvaluater():void 0,filePath:n,ignoreInvalidStyle:t.ignoreInvalidStyle||!1,passKeys:t.passKeys!==!1,passNode:t.passNode||!1,schema:t.space===`svg`?Q7:d$e,stylePropertyNameCase:t.stylePropertyNameCase||`dom`,tableCellAlignToStyle:t.tableCellAlignToStyle!==!1},a=O$e(i,e,void 0);return a&&typeof a!=`string`?a:i.create(e,i.Fragment,{children:a||void 0},void 0)}function O$e(e,t,n){if(t.type===`element`)return k$e(e,t,n);if(t.type===`mdxFlowExpression`||t.type===`mdxTextExpression`)return A$e(e,t);if(t.type===`mdxJsxFlowElement`||t.type===`mdxJsxTextElement`)return M$e(e,t,n);if(t.type===`mdxjsEsm`)return j$e(e,t);if(t.type===`root`)return N$e(e,t,n);if(t.type===`text`)return P$e(e,t)}function k$e(e,t,n){let r=e.schema,i=r;t.tagName.toLowerCase()===`svg`&&r.space===`html`&&(i=Q7,e.schema=i),e.ancestors.push(t);let a=H$e(e,t.tagName,!1),o=R$e(e,t),s=a9(e,t);return T$e.has(t.tagName)&&(s=s.filter(function(e){return typeof e==`string`?!GQe(e):!0})),F$e(e,o,a,t),i9(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function A$e(e,t){if(t.data&&t.data.estree&&e.evaluater){let n=t.data.estree.body[0];return n.type,e.evaluater.evaluateExpression(n.expression)}o9(e,t.position)}function j$e(e,t){if(t.data&&t.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(t.data.estree);o9(e,t.position)}function M$e(e,t,n){let r=e.schema,i=r;t.name===`svg`&&r.space===`html`&&(i=Q7,e.schema=i),e.ancestors.push(t);let a=t.name===null?e.Fragment:H$e(e,t.name,!0),o=z$e(e,t),s=a9(e,t);return F$e(e,o,a,t),i9(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function N$e(e,t,n){let r={};return i9(r,a9(e,t)),e.create(t,e.Fragment,r,n)}function P$e(e,t){return t.value}function F$e(e,t,n,r){typeof n!=`string`&&n!==e.Fragment&&e.passNode&&(t.node=r)}function i9(e,t){if(t.length>0){let n=t.length>1?t:t[0];n&&(e.children=n)}}function I$e(e,t,n){return r;function r(e,r,i,a){let o=Array.isArray(i.children)?n:t;return a?o(r,i,a):o(r,i)}}function L$e(e,t){return n;function n(n,r,i,a){let o=Array.isArray(i.children),s=$7(n);return t(r,i,a,o,{columnNumber:s?s.column-1:void 0,fileName:e,lineNumber:s?s.line:void 0},void 0)}}function R$e(e,t){let n={},r,i;for(i in t.properties)if(i!==`children`&&r9.call(t.properties,i)){let a=B$e(e,i,t.properties[i]);if(a){let[i,o]=a;e.tableCellAlignToStyle&&i===`align`&&typeof o==`string`&&E$e.has(t.tagName)?r=o:n[i]=o}}if(r){let t=n.style||={};t[e.stylePropertyNameCase===`css`?`text-align`:`textAlign`]=r}return n}function z$e(e,t){let n={};for(let r of t.attributes)if(r.type===`mdxJsxExpressionAttribute`)if(r.data&&r.data.estree&&e.evaluater){let t=r.data.estree.body[0];t.type;let i=t.expression;i.type;let a=i.properties[0];a.type,Object.assign(n,e.evaluater.evaluateExpression(a.argument))}else o9(e,t.position);else{let i=r.name,a;if(r.value&&typeof r.value==`object`)if(r.value.data&&r.value.data.estree&&e.evaluater){let t=r.value.data.estree.body[0];t.type,a=e.evaluater.evaluateExpression(t.expression)}else o9(e,t.position);else a=r.value===null?!0:r.value;n[i]=a}return n}function a9(e,t){let n=[],r=-1,i=e.passKeys?new Map:C$e;for(;++ri?0:i+t:t>i?i:t,n=n>0?n:0,r.length<1e4)o=Array.from(r),o.unshift(t,n),e.splice(...o);else for(n&&e.splice(t,n);a0?(c9(e,e.length,0,t),e):t}var Z$e={}.hasOwnProperty;function Q$e(e){let t={},n=-1;for(;++n-1&&e.test(String.fromCharCode(t))}}function v9(e,t,n,r){let i=r?r-1:1/0,a=0;return o;function o(r){return g9(r)?(e.enter(n),s(r)):t(r)}function s(r){return g9(r)&&a++o))return;let n=t.events.length,a=n,s,c;for(;a--;)if(t.events[a][0]===`exit`&&t.events[a][1].type===`chunkFlow`){if(s){c=t.events[a][1].end;break}s=!0}for(_(r),e=n;er;){let r=n[i];t.containerState=r[1],r[0].exit.call(t,e)}n.length=r}function v(){i.write([null]),a=void 0,i=void 0,t.containerState._closeFlow=void 0}}function d1e(e,t,n){return v9(e,e.attempt(this.parser.constructs.document,t,n),`linePrefix`,this.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)}function f1e(e){if(e===null||h9(e)||a1e(e))return 1;if(i1e(e))return 2}function y9(e,t,n){let r=[],i=-1;for(;++i1&&e[n][1].end.offset-e[n][1].start.offset>1?2:1;let d={...e[r][1].end},f={...e[n][1].start};h1e(d,-c),h1e(f,c),o={type:c>1?`strongSequence`:`emphasisSequence`,start:d,end:{...e[r][1].end}},s={type:c>1?`strongSequence`:`emphasisSequence`,start:{...e[n][1].start},end:f},a={type:c>1?`strongText`:`emphasisText`,start:{...e[r][1].end},end:{...e[n][1].start}},i={type:c>1?`strong`:`emphasis`,start:{...o.start},end:{...s.end}},e[r][1].end={...o.start},e[n][1].start={...s.end},l=[],e[r][1].end.offset-e[r][1].start.offset&&(l=l9(l,[[`enter`,e[r][1],t],[`exit`,e[r][1],t]])),l=l9(l,[[`enter`,i,t],[`enter`,o,t],[`exit`,o,t],[`enter`,a,t]]),l=l9(l,y9(t.parser.constructs.insideSpan.null,e.slice(r+1,n),t)),l=l9(l,[[`exit`,a,t],[`enter`,s,t],[`exit`,s,t],[`exit`,i,t]]),e[n][1].end.offset-e[n][1].start.offset?(u=2,l=l9(l,[[`enter`,e[n][1],t],[`exit`,e[n][1],t]])):u=0,c9(e,r-1,n-r+3,l),n=r+l.length-u-2;break}}for(n=-1;++n0&&g9(t)?v9(e,v,`linePrefix`,a+1)(t):v(t)}function v(t){return t===null||m9(t)?e.check(O1e,h,b)(t):(e.enter(`codeFlowValue`),y(t))}function y(t){return t===null||m9(t)?(e.exit(`codeFlowValue`),v(t)):(e.consume(t),y)}function b(n){return e.exit(`codeFenced`),t(n)}function x(e,t,n){let i=0;return a;function a(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),c}function c(t){return e.enter(`codeFencedFence`),g9(t)?v9(e,l,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):l(t)}function l(t){return t===s?(e.enter(`codeFencedFenceSequence`),u(t)):n(t)}function u(t){return t===s?(i++,e.consume(t),u):i>=o?(e.exit(`codeFencedFenceSequence`),g9(t)?v9(e,d,`whitespace`)(t):d(t)):n(t)}function d(r){return r===null||m9(r)?(e.exit(`codeFencedFence`),t(r)):n(r)}}}function j1e(e,t,n){let r=this;return i;function i(t){return t===null?n(t):(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}var C9={name:`codeIndented`,tokenize:N1e},M1e={partial:!0,tokenize:P1e};function N1e(e,t,n){let r=this;return i;function i(t){return e.enter(`codeIndented`),v9(e,a,`linePrefix`,5)(t)}function a(e){let t=r.events[r.events.length-1];return t&&t[1].type===`linePrefix`&&t[2].sliceSerialize(t[1],!0).length>=4?o(e):n(e)}function o(t){return t===null?c(t):m9(t)?e.attempt(M1e,o,c)(t):(e.enter(`codeFlowValue`),s(t))}function s(t){return t===null||m9(t)?(e.exit(`codeFlowValue`),o(t)):(e.consume(t),s)}function c(n){return e.exit(`codeIndented`),t(n)}}function P1e(e,t,n){let r=this;return i;function i(t){return r.parser.lazy[r.now().line]?n(t):m9(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),i):v9(e,a,`linePrefix`,5)(t)}function a(e){let a=r.events[r.events.length-1];return a&&a[1].type===`linePrefix`&&a[2].sliceSerialize(a[1],!0).length>=4?t(e):m9(e)?i(e):n(e)}}var F1e={name:`codeText`,previous:L1e,resolve:I1e,tokenize:R1e};function I1e(e){let t=e.length-4,n=3,r,i;if((e[n][1].type===`lineEnding`||e[n][1].type===`space`)&&(e[t][1].type===`lineEnding`||e[t][1].type===`space`)){for(r=n;++r=this.left.length+this.right.length)throw RangeError("Cannot access index `"+e+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return ethis.left.length?this.right.slice(this.right.length-n+this.left.length,this.right.length-e+this.left.length).reverse():this.left.slice(e).concat(this.right.slice(this.right.length-n+this.left.length).reverse())}splice(e,t,n){let r=t||0;this.setCursor(Math.trunc(e));let i=this.right.splice(this.right.length-r,1/0);return n&&w9(this.left,n),i.reverse()}pop(){return this.setCursor(1/0),this.left.pop()}push(e){this.setCursor(1/0),this.left.push(e)}pushMany(e){this.setCursor(1/0),w9(this.left,e)}unshift(e){this.setCursor(0),this.right.push(e)}unshiftMany(e){this.setCursor(0),w9(this.right,e.reverse())}setCursor(e){if(!(e===this.left.length||e>this.left.length&&this.right.length===0||e<0&&this.left.length===0))if(e=4?t(i):e.interrupt(r.parser.constructs.flow,n,t)(i)}}function q1e(e,t,n,r,i,a,o,s,c){let l=c||1/0,u=0;return d;function d(t){return t===60?(e.enter(r),e.enter(i),e.enter(a),e.consume(t),e.exit(a),f):t===null||t===32||t===41||f9(t)?n(t):(e.enter(r),e.enter(o),e.enter(s),e.enter(`chunkString`,{contentType:`string`}),h(t))}function f(n){return n===62?(e.enter(a),e.consume(n),e.exit(a),e.exit(i),e.exit(r),t):(e.enter(s),e.enter(`chunkString`,{contentType:`string`}),p(n))}function p(t){return t===62?(e.exit(`chunkString`),e.exit(s),f(t)):t===null||t===60||m9(t)?n(t):(e.consume(t),t===92?m:p)}function m(t){return t===60||t===62||t===92?(e.consume(t),p):p(t)}function h(i){return!u&&(i===null||i===41||h9(i))?(e.exit(`chunkString`),e.exit(s),e.exit(o),e.exit(r),t(i)):u999||l===null||l===91||l===93&&!c||l===94&&!s&&`_hiddenFootnoteSupport`in o.parser.constructs?n(l):l===93?(e.exit(a),e.enter(i),e.consume(l),e.exit(i),e.exit(r),t):m9(l)?(e.enter(`lineEnding`),e.consume(l),e.exit(`lineEnding`),u):(e.enter(`chunkString`,{contentType:`string`}),d(l))}function d(t){return t===null||t===91||t===93||m9(t)||s++>999?(e.exit(`chunkString`),u(t)):(e.consume(t),c||=!g9(t),t===92?f:d)}function f(t){return t===91||t===92||t===93?(e.consume(t),s++,d):d(t)}}function Y1e(e,t,n,r,i,a){let o;return s;function s(t){return t===34||t===39||t===40?(e.enter(r),e.enter(i),e.consume(t),e.exit(i),o=t===40?41:t,c):n(t)}function c(n){return n===o?(e.enter(i),e.consume(n),e.exit(i),e.exit(r),t):(e.enter(a),l(n))}function l(t){return t===o?(e.exit(a),c(o)):t===null?n(t):m9(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),v9(e,l,`linePrefix`)):(e.enter(`chunkString`,{contentType:`string`}),u(t))}function u(t){return t===o||t===null||m9(t)?(e.exit(`chunkString`),l(t)):(e.consume(t),t===92?d:u)}function d(t){return t===o||t===92?(e.consume(t),u):u(t)}}function T9(e,t){let n;return r;function r(i){return m9(i)?(e.enter(`lineEnding`),e.consume(i),e.exit(`lineEnding`),n=!0,r):g9(i)?v9(e,r,n?`linePrefix`:`lineSuffix`)(i):t(i)}}function E9(e){return e.replace(/[\t\n\r ]+/g,` `).replace(/^ | $/g,``).toLowerCase().toUpperCase()}var X1e={name:`definition`,tokenize:Q1e},Z1e={partial:!0,tokenize:$1e};function Q1e(e,t,n){let r=this,i;return a;function a(t){return e.enter(`definition`),o(t)}function o(t){return J1e.call(r,e,s,n,`definitionLabel`,`definitionLabelMarker`,`definitionLabelString`)(t)}function s(t){return i=E9(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)),t===58?(e.enter(`definitionMarker`),e.consume(t),e.exit(`definitionMarker`),c):n(t)}function c(t){return h9(t)?T9(e,l)(t):l(t)}function l(t){return q1e(e,u,n,`definitionDestination`,`definitionDestinationLiteral`,`definitionDestinationLiteralMarker`,`definitionDestinationRaw`,`definitionDestinationString`)(t)}function u(t){return e.attempt(Z1e,d,d)(t)}function d(t){return g9(t)?v9(e,f,`whitespace`)(t):f(t)}function f(a){return a===null||m9(a)?(e.exit(`definition`),r.parser.defined.push(i),t(a)):n(a)}}function $1e(e,t,n){return r;function r(t){return h9(t)?T9(e,i)(t):n(t)}function i(t){return Y1e(e,a,n,`definitionTitle`,`definitionTitleMarker`,`definitionTitleString`)(t)}function a(t){return g9(t)?v9(e,o,`whitespace`)(t):o(t)}function o(e){return e===null||m9(e)?t(e):n(e)}}var e0e={name:`hardBreakEscape`,tokenize:t0e};function t0e(e,t,n){return r;function r(t){return e.enter(`hardBreakEscape`),e.consume(t),i}function i(r){return m9(r)?(e.exit(`hardBreakEscape`),t(r)):n(r)}}var n0e={name:`headingAtx`,resolve:r0e,tokenize:i0e};function r0e(e,t){let n=e.length-2,r=3,i,a;return e[r][1].type===`whitespace`&&(r+=2),n-2>r&&e[n][1].type===`whitespace`&&(n-=2),e[n][1].type===`atxHeadingSequence`&&(r===n-1||n-4>r&&e[n-2][1].type===`whitespace`)&&(n-=r+1===n?2:4),n>r&&(i={type:`atxHeadingText`,start:e[r][1].start,end:e[n][1].end},a={type:`chunkText`,start:e[r][1].start,end:e[n][1].end,contentType:`text`},c9(e,r,n-r+1,[[`enter`,i,t],[`enter`,a,t],[`exit`,a,t],[`exit`,i,t]])),e}function i0e(e,t,n){let r=0;return i;function i(t){return e.enter(`atxHeading`),a(t)}function a(t){return e.enter(`atxHeadingSequence`),o(t)}function o(t){return t===35&&r++<6?(e.consume(t),o):t===null||h9(t)?(e.exit(`atxHeadingSequence`),s(t)):n(t)}function s(n){return n===35?(e.enter(`atxHeadingSequence`),c(n)):n===null||m9(n)?(e.exit(`atxHeading`),t(n)):g9(n)?v9(e,s,`whitespace`)(n):(e.enter(`atxHeadingText`),l(n))}function c(t){return t===35?(e.consume(t),c):(e.exit(`atxHeadingSequence`),s(t))}function l(t){return t===null||t===35||h9(t)?(e.exit(`atxHeadingText`),s(t)):(e.consume(t),l)}}var a0e=`address.article.aside.base.basefont.blockquote.body.caption.center.col.colgroup.dd.details.dialog.dir.div.dl.dt.fieldset.figcaption.figure.footer.form.frame.frameset.h1.h2.h3.h4.h5.h6.head.header.hr.html.iframe.legend.li.link.main.menu.menuitem.nav.noframes.ol.optgroup.option.p.param.search.section.summary.table.tbody.td.tfoot.th.thead.title.tr.track.ul`.split(`.`),o0e=[`pre`,`script`,`style`,`textarea`],s0e={concrete:!0,name:`htmlFlow`,resolveTo:u0e,tokenize:d0e},c0e={partial:!0,tokenize:p0e},l0e={partial:!0,tokenize:f0e};function u0e(e){let t=e.length;for(;t--&&!(e[t][0]===`enter`&&e[t][1].type===`htmlFlow`););return t>1&&e[t-2][1].type===`linePrefix`&&(e[t][1].start=e[t-2][1].start,e[t+1][1].start=e[t-2][1].start,e.splice(t-2,2)),e}function d0e(e,t,n){let r=this,i,a,o,s,c;return l;function l(e){return u(e)}function u(t){return e.enter(`htmlFlow`),e.enter(`htmlFlowData`),e.consume(t),d}function d(s){return s===33?(e.consume(s),f):s===47?(e.consume(s),a=!0,h):s===63?(e.consume(s),i=3,r.interrupt?t:I):u9(s)?(e.consume(s),o=String.fromCharCode(s),g):n(s)}function f(a){return a===45?(e.consume(a),i=2,p):a===91?(e.consume(a),i=5,s=0,m):u9(a)?(e.consume(a),i=4,r.interrupt?t:I):n(a)}function p(i){return i===45?(e.consume(i),r.interrupt?t:I):n(i)}function m(i){return i===`CDATA[`.charCodeAt(s++)?(e.consume(i),s===6?r.interrupt?t:O:m):n(i)}function h(t){return u9(t)?(e.consume(t),o=String.fromCharCode(t),g):n(t)}function g(s){if(s===null||s===47||s===62||h9(s)){let c=s===47,l=o.toLowerCase();return!c&&!a&&o0e.includes(l)?(i=1,r.interrupt?t(s):O(s)):a0e.includes(o.toLowerCase())?(i=6,c?(e.consume(s),_):r.interrupt?t(s):O(s)):(i=7,r.interrupt&&!r.parser.lazy[r.now().line]?n(s):a?v(s):y(s))}return s===45||d9(s)?(e.consume(s),o+=String.fromCharCode(s),g):n(s)}function _(i){return i===62?(e.consume(i),r.interrupt?t:O):n(i)}function v(t){return g9(t)?(e.consume(t),v):E(t)}function y(t){return t===47?(e.consume(t),E):t===58||t===95||u9(t)?(e.consume(t),b):g9(t)?(e.consume(t),y):E(t)}function b(t){return t===45||t===46||t===58||t===95||d9(t)?(e.consume(t),b):x(t)}function x(t){return t===61?(e.consume(t),S):g9(t)?(e.consume(t),x):y(t)}function S(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),c=t,C):g9(t)?(e.consume(t),S):w(t)}function C(t){return t===c?(e.consume(t),c=null,T):t===null||m9(t)?n(t):(e.consume(t),C)}function w(t){return t===null||t===34||t===39||t===47||t===60||t===61||t===62||t===96||h9(t)?x(t):(e.consume(t),w)}function T(e){return e===47||e===62||g9(e)?y(e):n(e)}function E(t){return t===62?(e.consume(t),D):n(t)}function D(t){return t===null||m9(t)?O(t):g9(t)?(e.consume(t),D):n(t)}function O(t){return t===45&&i===2?(e.consume(t),M):t===60&&i===1?(e.consume(t),N):t===62&&i===4?(e.consume(t),L):t===63&&i===3?(e.consume(t),I):t===93&&i===5?(e.consume(t),F):m9(t)&&(i===6||i===7)?(e.exit(`htmlFlowData`),e.check(c0e,R,k)(t)):t===null||m9(t)?(e.exit(`htmlFlowData`),k(t)):(e.consume(t),O)}function k(t){return e.check(l0e,A,R)(t)}function A(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),j}function j(t){return t===null||m9(t)?k(t):(e.enter(`htmlFlowData`),O(t))}function M(t){return t===45?(e.consume(t),I):O(t)}function N(t){return t===47?(e.consume(t),o=``,P):O(t)}function P(t){if(t===62){let n=o.toLowerCase();return o0e.includes(n)?(e.consume(t),L):O(t)}return u9(t)&&o.length<8?(e.consume(t),o+=String.fromCharCode(t),P):O(t)}function F(t){return t===93?(e.consume(t),I):O(t)}function I(t){return t===62?(e.consume(t),L):t===45&&i===2?(e.consume(t),I):O(t)}function L(t){return t===null||m9(t)?(e.exit(`htmlFlowData`),R(t)):(e.consume(t),L)}function R(n){return e.exit(`htmlFlow`),t(n)}}function f0e(e,t,n){let r=this;return i;function i(t){return m9(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a):n(t)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}function p0e(e,t,n){return r;function r(r){return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),e.attempt(x9,t,n)}}var m0e={name:`htmlText`,tokenize:h0e};function h0e(e,t,n){let r=this,i,a,o;return s;function s(t){return e.enter(`htmlText`),e.enter(`htmlTextData`),e.consume(t),c}function c(t){return t===33?(e.consume(t),l):t===47?(e.consume(t),x):t===63?(e.consume(t),y):u9(t)?(e.consume(t),w):n(t)}function l(t){return t===45?(e.consume(t),u):t===91?(e.consume(t),a=0,m):u9(t)?(e.consume(t),v):n(t)}function u(t){return t===45?(e.consume(t),p):n(t)}function d(t){return t===null?n(t):t===45?(e.consume(t),f):m9(t)?(o=d,N(t)):(e.consume(t),d)}function f(t){return t===45?(e.consume(t),p):d(t)}function p(e){return e===62?M(e):e===45?f(e):d(e)}function m(t){return t===`CDATA[`.charCodeAt(a++)?(e.consume(t),a===6?h:m):n(t)}function h(t){return t===null?n(t):t===93?(e.consume(t),g):m9(t)?(o=h,N(t)):(e.consume(t),h)}function g(t){return t===93?(e.consume(t),_):h(t)}function _(t){return t===62?M(t):t===93?(e.consume(t),_):h(t)}function v(t){return t===null||t===62?M(t):m9(t)?(o=v,N(t)):(e.consume(t),v)}function y(t){return t===null?n(t):t===63?(e.consume(t),b):m9(t)?(o=y,N(t)):(e.consume(t),y)}function b(e){return e===62?M(e):y(e)}function x(t){return u9(t)?(e.consume(t),S):n(t)}function S(t){return t===45||d9(t)?(e.consume(t),S):C(t)}function C(t){return m9(t)?(o=C,N(t)):g9(t)?(e.consume(t),C):M(t)}function w(t){return t===45||d9(t)?(e.consume(t),w):t===47||t===62||h9(t)?T(t):n(t)}function T(t){return t===47?(e.consume(t),M):t===58||t===95||u9(t)?(e.consume(t),E):m9(t)?(o=T,N(t)):g9(t)?(e.consume(t),T):M(t)}function E(t){return t===45||t===46||t===58||t===95||d9(t)?(e.consume(t),E):D(t)}function D(t){return t===61?(e.consume(t),O):m9(t)?(o=D,N(t)):g9(t)?(e.consume(t),D):T(t)}function O(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),i=t,k):m9(t)?(o=O,N(t)):g9(t)?(e.consume(t),O):(e.consume(t),A)}function k(t){return t===i?(e.consume(t),i=void 0,j):t===null?n(t):m9(t)?(o=k,N(t)):(e.consume(t),k)}function A(t){return t===null||t===34||t===39||t===60||t===61||t===96?n(t):t===47||t===62||h9(t)?T(t):(e.consume(t),A)}function j(e){return e===47||e===62||h9(e)?T(e):n(e)}function M(r){return r===62?(e.consume(r),e.exit(`htmlTextData`),e.exit(`htmlText`),t):n(r)}function N(t){return e.exit(`htmlTextData`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),P}function P(t){return g9(t)?v9(e,F,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):F(t)}function F(t){return e.enter(`htmlTextData`),o(t)}}var D9={name:`labelEnd`,resolveAll:y0e,resolveTo:b0e,tokenize:x0e},g0e={tokenize:S0e},_0e={tokenize:C0e},v0e={tokenize:w0e};function y0e(e){let t=-1,n=[];for(;++t=3&&(a===null||m9(a))?(e.exit(`thematicBreak`),t(a)):n(a)}function c(t){return t===i?(e.consume(t),r++,c):(e.exit(`thematicBreakSequence`),g9(t)?v9(e,s,`whitespace`)(t):s(t))}}var A9={continuation:{tokenize:P0e},exit:I0e,name:`list`,tokenize:N0e},j0e={partial:!0,tokenize:L0e},M0e={partial:!0,tokenize:F0e};function N0e(e,t,n){let r=this,i=r.events[r.events.length-1],a=i&&i[1].type===`linePrefix`?i[2].sliceSerialize(i[1],!0).length:0,o=0;return s;function s(t){let i=r.containerState.type||(t===42||t===43||t===45?`listUnordered`:`listOrdered`);if(i===`listUnordered`?!r.containerState.marker||t===r.containerState.marker:p9(t)){if(r.containerState.type||(r.containerState.type=i,e.enter(i,{_container:!0})),i===`listUnordered`)return e.enter(`listItemPrefix`),t===42||t===45?e.check(k9,n,l)(t):l(t);if(!r.interrupt||t===49)return e.enter(`listItemPrefix`),e.enter(`listItemValue`),c(t)}return n(t)}function c(t){return p9(t)&&++o<10?(e.consume(t),c):(!r.interrupt||o<2)&&(r.containerState.marker?t===r.containerState.marker:t===41||t===46)?(e.exit(`listItemValue`),l(t)):n(t)}function l(t){return e.enter(`listItemMarker`),e.consume(t),e.exit(`listItemMarker`),r.containerState.marker=r.containerState.marker||t,e.check(x9,r.interrupt?n:u,e.attempt(j0e,f,d))}function u(e){return r.containerState.initialBlankLine=!0,a++,f(e)}function d(t){return g9(t)?(e.enter(`listItemPrefixWhitespace`),e.consume(t),e.exit(`listItemPrefixWhitespace`),f):n(t)}function f(n){return r.containerState.size=a+r.sliceSerialize(e.exit(`listItemPrefix`),!0).length,t(n)}}function P0e(e,t,n){let r=this;return r.containerState._closeFlow=void 0,e.check(x9,i,a);function i(n){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,v9(e,t,`listItemIndent`,r.containerState.size+1)(n)}function a(n){return r.containerState.furtherBlankLines||!g9(n)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,o(n)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,e.attempt(M0e,t,o)(n))}function o(i){return r.containerState._closeFlow=!0,r.interrupt=void 0,v9(e,e.attempt(A9,t,n),`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(i)}}function F0e(e,t,n){let r=this;return v9(e,i,`listItemIndent`,r.containerState.size+1);function i(e){let i=r.events[r.events.length-1];return i&&i[1].type===`listItemIndent`&&i[2].sliceSerialize(i[1],!0).length===r.containerState.size?t(e):n(e)}}function I0e(e){e.exit(this.containerState.type)}function L0e(e,t,n){let r=this;return v9(e,i,`listItemPrefixWhitespace`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:5);function i(e){let i=r.events[r.events.length-1];return!g9(e)&&i&&i[1].type===`listItemPrefixWhitespace`?t(e):n(e)}}var R0e={name:`setextUnderline`,resolveTo:z0e,tokenize:B0e};function z0e(e,t){let n=e.length,r,i,a;for(;n--;)if(e[n][0]===`enter`){if(e[n][1].type===`content`){r=n;break}e[n][1].type===`paragraph`&&(i=n)}else e[n][1].type===`content`&&e.splice(n,1),!a&&e[n][1].type===`definition`&&(a=n);let o={type:`setextHeading`,start:{...e[r][1].start},end:{...e[e.length-1][1].end}};return e[i][1].type=`setextHeadingText`,a?(e.splice(i,0,[`enter`,o,t]),e.splice(a+1,0,[`exit`,e[r][1],t]),e[r][1].end={...e[a][1].end}):e[r][1]=o,e.push([`exit`,o,t]),e}function B0e(e,t,n){let r=this,i;return a;function a(t){let a=r.events.length,s;for(;a--;)if(r.events[a][1].type!==`lineEnding`&&r.events[a][1].type!==`linePrefix`&&r.events[a][1].type!==`content`){s=r.events[a][1].type===`paragraph`;break}return!r.parser.lazy[r.now().line]&&(r.interrupt||s)?(e.enter(`setextHeadingLine`),i=t,o(t)):n(t)}function o(t){return e.enter(`setextHeadingLineSequence`),s(t)}function s(t){return t===i?(e.consume(t),s):(e.exit(`setextHeadingLineSequence`),g9(t)?v9(e,c,`lineSuffix`)(t):c(t))}function c(r){return r===null||m9(r)?(e.exit(`setextHeadingLine`),t(r)):n(r)}}var V0e={tokenize:H0e};function H0e(e){let t=this,n=e.attempt(x9,r,e.attempt(this.parser.constructs.flowInitial,i,v9(e,e.attempt(this.parser.constructs.flow,i,e.attempt(H1e,i)),`linePrefix`)));return n;function r(r){if(r===null){e.consume(r);return}return e.enter(`lineEndingBlank`),e.consume(r),e.exit(`lineEndingBlank`),t.currentConstruct=void 0,n}function i(r){if(r===null){e.consume(r);return}return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),t.currentConstruct=void 0,n}}var U0e={resolveAll:q0e()},W0e=K0e(`string`),G0e=K0e(`text`);function K0e(e){return{resolveAll:q0e(e===`text`?J0e:void 0),tokenize:t};function t(t){let n=this,r=this.parser.constructs[e],i=t.attempt(r,a,o);return a;function a(e){return c(e)?i(e):o(e)}function o(e){if(e===null){t.consume(e);return}return t.enter(`data`),t.consume(e),s}function s(e){return c(e)?(t.exit(`data`),i(e)):(t.consume(e),s)}function c(e){if(e===null)return!0;let t=r[e],i=-1;if(t)for(;++ir2e,contentInitial:()=>Z0e,disable:()=>i2e,document:()=>X0e,flow:()=>$0e,flowInitial:()=>Q0e,insideSpan:()=>n2e,string:()=>e2e,text:()=>t2e}),X0e={42:A9,43:A9,45:A9,48:A9,49:A9,50:A9,51:A9,52:A9,53:A9,54:A9,55:A9,56:A9,57:A9,62:y1e},Z0e={91:X1e},Q0e={[-2]:C9,[-1]:C9,32:C9},$0e={35:n0e,42:k9,45:[R0e,k9],60:s0e,61:R0e,95:k9,96:k1e,126:k1e},e2e={38:E1e,92:C1e},t2e={[-5]:O9,[-4]:O9,[-3]:O9,33:T0e,38:E1e,42:b9,60:[g1e,m0e],91:D0e,92:[e0e,C1e],93:D9,95:b9,96:F1e},n2e={null:[b9,U0e]},r2e={null:[42,95]},i2e={null:[]};function a2e(e,t,n){let r={_bufferIndex:-1,_index:0,line:n&&n.line||1,column:n&&n.column||1,offset:n&&n.offset||0},i={},a=[],o=[],s=[],c={attempt:C(x),check:C(S),consume:v,enter:y,exit:b,interrupt:C(S,{interrupt:!0})},l={code:null,containerState:{},defineSkip:h,events:[],now:m,parser:e,previous:null,sliceSerialize:f,sliceStream:p,write:d},u=t.tokenize.call(l,c);return t.resolveAll&&a.push(t),l;function d(e){return o=l9(o,e),g(),o[o.length-1]===null?(w(t,0),l.events=y9(a,l.events,l),l.events):[]}function f(e,t){return s2e(p(e),t)}function p(e){return o2e(o,e)}function m(){let{_bufferIndex:e,_index:t,line:n,column:i,offset:a}=r;return{_bufferIndex:e,_index:t,line:n,column:i,offset:a}}function h(e){i[e.line]=e.column,E()}function g(){let e;for(;r._index-1){let e=o[0];typeof e==`string`?o[0]=e.slice(r):o.shift()}a>0&&o.push(e[i].slice(0,a))}return o}function s2e(e,t){let n=-1,r=[],i;for(;++n`,m=l.join(p);this._showOrMove(a,function(){this._updateContentNotChangedOnAxis(e,s)?this._updatePosition(a,d,i[0],i[1],this._tooltipContent,s):this._showTooltipContent(a,m,s,Math.random()+``,i[0],i[1],d,null,u)})},t.prototype._showSeriesItemTooltip=function(e,t,n){var r=this._ecModel,i=jL(t),a=i.seriesIndex,o=r.getSeriesByIndex(a),s=i.dataModel||o,c=i.dataIndex,l=i.dataType,u=s.getData(l),d=this._renderMode,f=e.positionDefault,p=g5([u.getItemModel(c),s,o&&(o.coordinateSystem||{}).model],this._tooltipModel,f?{position:f}:null),m=p.get(`trigger`);if(!(m!=null&&m!==`item`)){var h=s.getDataParams(c,l),g=new nW;h.marker=g.makeTooltipMarker(`item`,FV(h.color),d);var _=CU(s.formatTooltip(c,!1,l)),v=p.get(`order`),y=p.get(`valueFormatter`),b=_.frag,x=b?ZU(y?Z({valueFormatter:y},b):b,g,d,v,r.get(`useUTC`),p.get(`textStyle`)):_.text,S=`item_`+s.name+`_`+c;this._showOrMove(p,function(){this._showTooltipContent(p,x,h,S,e.offsetX,e.offsetY,e.position,e.target,g)}),n({type:`showTip`,dataIndexInside:c,dataIndex:u.getRawIndex(c),seriesIndex:a,from:this.uid})}},t.prototype._showComponentItemTooltip=function(e,t,n){var r=this._renderMode===`html`,i=jL(t),a=i.tooltipConfig.option||{},o=a.encodeHTMLContent;if(gA(a)){var s=a;a={content:s,formatter:s},o=!0}o&&r&&a.content&&(a=Qk(a),a.content=xj(a.content));var c=[a],l=this._ecModel.getComponent(i.componentMainType,i.componentIndex);l&&c.push(l),c.push({formatter:a.content});var u=e.positionDefault,d=g5(c,this._tooltipModel,u?{position:u}:null),f=d.get(`content`),p=Math.random()+``,m=new nW;this._showOrMove(d,function(){var n=Qk(d.get(`formatterParams`)||{});this._showTooltipContent(d,f,n,p,e.offsetX,e.offsetY,e.position,t,m)}),n({type:`showTip`,from:this.uid})},t.prototype._showTooltipContent=function(e,t,n,r,i,a,o,s,c){if(this._ticket=``,!(!e.get(`showContent`)||!e.get(`show`))){var l=this._tooltipContent;l.setEnterable(e.get(`enterable`));var u=e.get(`formatter`);o||=e.get(`position`);var d=t,f=this._getNearestPoint([i,a],n,e.get(`trigger`),e.get(`borderColor`),e.get(`defaultBorderColor`,!0)).color;if(u)if(gA(u)){var p=e.ecModel.get(`useUTC`),m=mA(n)?n[0]:n,h=m&&m.axisType&&m.axisType.indexOf(`time`)>=0;d=u,h&&(d=uV(m.axisValue,d,p)),d=MV(d,n,!0)}else if(hA(u)){var g=fA(function(t,r){t===this._ticket&&(l.setContent(r,c,e,f,o),this._updatePosition(e,o,i,a,l,n,s))},this);this._ticket=r,d=u(n,r,g)}else d=u;l.setContent(d,c,e,f,o),l.show(e,f),this._updatePosition(e,o,i,a,l,n,s)}},t.prototype._getNearestPoint=function(e,t,n,r,i){if(n===`axis`||mA(t))return{color:r||i};if(!mA(t))return{color:r||t.color||t.borderColor}},t.prototype._updatePosition=function(e,t,n,r,i,a,o){var s=this._api.getWidth(),c=this._api.getHeight();t||=e.get(`position`);var l=i.getSize(),u=e.get(`align`),d=e.get(`verticalAlign`),f=o&&o.getBoundingRect().clone();if(o&&f.applyTransform(o.transform),hA(t)&&(t=t([n,r],a,i.el,f,{viewSize:[s,c],contentSize:l.slice()})),mA(t))n=yF(t[0],s),r=yF(t[1],c);else if(yA(t)){var p=t;p.width=l[0],p.height=l[1];var m=QV(p,{width:s,height:c});n=m.x,r=m.y,u=null,d=null}else if(gA(t)&&o){var h=zqe(t,f,l,e.get(`borderWidth`));n=h[0],r=h[1]}else{var h=Lqe(n,r,i,s,c,u?null:20,d?null:20);n=h[0],r=h[1]}if(u&&(n-=Bqe(u)?l[0]/2:u===`right`?l[0]:0),d&&(r-=Bqe(d)?l[1]/2:d===`bottom`?l[1]:0),hqe(e)){var h=Rqe(n,r,i,s,c);n=h[0],r=h[1]}i.moveTo(n,r)},t.prototype._updateContentNotChangedOnAxis=function(e,t){var n=this._lastDataByCoordSys,r=this._cbParamsList,i=!!n&&n.length===e.length;return i&&Q(n,function(n,a){var o=n.dataByAxis||[],s=(e[a]||{}).dataByAxis||[];i&&=o.length===s.length,i&&Q(o,function(e,n){var a=s[n]||{},o=e.seriesDataIndices||[],c=a.seriesDataIndices||[];i=i&&e.value===a.value&&e.axisType===a.axisType&&e.axisId===a.axisId&&o.length===c.length,i&&Q(o,function(e,t){var n=c[t];i=i&&e.seriesIndex===n.seriesIndex&&e.dataIndex===n.dataIndex}),r&&Q(e.seriesDataIndices,function(e){var n=e.seriesIndex,a=t[n],o=r[n];a&&o&&o.data!==a.data&&(i=!1)})})}),this._lastDataByCoordSys=e,this._cbParamsList=t,!!i},t.prototype._hide=function(e){this._lastDataByCoordSys=null,this._cbParamsList=null,e({type:`hideTip`,from:this.uid})},t.prototype.dispose=function(e,t){Rk.node||!t.getDom()||(SW(this,`_updatePosition`),this._tooltipContent.dispose(),l8(`itemTooltip`,t),this._tooltipContent=null,this._tooltipModel=null,this._lastDataByCoordSys=null,this._cbParamsList=null)},t.type=`tooltip`,t}(dW);function g5(e,t,n){var r=t.ecModel,i;n?(i=new LB(n,r,r),i=new LB(t.option,i,r)):i=t;for(var a=e.length-1;a>=0;a--){var o=e[a];o&&(o instanceof LB&&(o=o.get(`tooltip`,!0)),gA(o)&&(o={formatter:o}),o&&(i=new LB(o,i,r)))}return i}function Iqe(e,t){return e.dispatchAction||fA(t.dispatchAction,t)}function Lqe(e,t,n,r,i,a,o){var s=n.getSize(),c=s[0],l=s[1];return a!=null&&(e+c+a+2>r?e-=c+a:e+=a),o!=null&&(t+l+o>i?t-=l+o:t+=o),[e,t]}function Rqe(e,t,n,r,i){var a=n.getSize(),o=a[0],s=a[1];return e=Math.min(e+o,r)-o,t=Math.min(t+s,i)-s,e=Math.max(e,0),t=Math.max(t,0),[e,t]}function zqe(e,t,n,r){var i=n[0],a=n[1],o=Math.ceil(Math.SQRT2*r)+8,s=0,c=0,l=t.width,u=t.height;switch(e){case`inside`:s=t.x+l/2-i/2,c=t.y+u/2-a/2;break;case`top`:s=t.x+l/2-i/2,c=t.y-a-o;break;case`bottom`:s=t.x+l/2-i/2,c=t.y+u+o;break;case`left`:s=t.x-i-o,c=t.y+u/2-a/2;break;case`right`:s=t.x+l+o,c=t.y+u/2-a/2}return[s,c]}function Bqe(e){return e===`center`||e===`middle`}function Vqe(e,t,n){var r=nI(e).queryOptionMap,i=r.keys()[0];if(!(!i||i===`series`)){var a=iI(t,i,r.get(i),{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];if(a){var o=n.getViewOfComponentModel(a),s;if(o.group.traverse(function(t){var n=jL(t).tooltipConfig;if(n&&n.name===e.name)return s=t,!0}),s)return{componentMainType:i,componentIndex:a.componentIndex,el:s}}}}function Hqe(e){$K(d8),e.registerComponentModel(mqe),e.registerComponentView(Fqe),e.registerAction({type:`showTip`,event:`showTip`,update:`tooltip:manuallyShowTip`},WA),e.registerAction({type:`hideTip`,event:`hideTip`,update:`tooltip:manuallyHideTip`},WA)}var Uqe=[`rect`,`polygon`,`keep`,`clear`];function Wqe(e,t){var n=KF(e?e.brush:[]);if(n.length){var r=[];Q(n,function(e){var t=e.hasOwnProperty(`toolbox`)?e.toolbox:[];t instanceof Array&&(r=r.concat(t))});var i=e&&e.toolbox;mA(i)&&(i=i[0]),i||(i={feature:{}},e.toolbox=[i]);var a=i.feature||={},o=a.brush||={},s=o.type||=[];s.push.apply(s,r),hI(s,function(e){return e+``},null),t&&!s.length&&s.push.apply(s,Uqe)}}var Gqe=Q;function Kqe(e){if(e){for(var t in e)if(e.hasOwnProperty(t))return!0}}function _5(e,t,n){var r={};return Gqe(t,function(t){var a=r[t]=i();Gqe(e[t],function(e,r){if(t4.isValidType(r)){var i={type:r,visual:e};n&&n(i,t),a[r]=new t4(i),r===`opacity`&&(i=Qk(i),i.type=`colorAlpha`,a.__hidden.__alphaForOpacity=new t4(i))}})}),r;function i(){var e=function(){};return e.prototype.__hidden=e.prototype,new e}}function qqe(e,t,n){var r;Q(n,function(e){t.hasOwnProperty(e)&&Kqe(t[e])&&(r=!0)}),r&&Q(n,function(n){t.hasOwnProperty(n)&&Kqe(t[n])?e[n]=Qk(t[n]):delete e[n]})}function Jqe(e,t,n,r,i,a){var o={};Q(e,function(e){o[e]=t4.prepareVisualTypes(t[e])});var s;function c(e){return HW(n,s,e)}function l(e,t){WW(n,s,e,t)}a==null?n.each(u):n.each([a],u);function u(e,u){s=a==null?e:u;var d=n.getRawDataItem(s);if(!(d&&d.visualMap===!1))for(var f=r.call(i,e),p=t[f],m=o[f],h=0,g=m.length;ht[0][1]&&(t[0][1]=a[0]),a[1]t[1][1]&&(t[1][1]=a[1])}return t&&cJe(t)}};function cJe(e){return new eM(e[0][0],e[1][0],e[0][1]-e[0][0],e[1][1]-e[1][0])}var lJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(e,t){this.ecModel=e,this.api=t,this.model,(this._brushController=new F3(t.getZr())).on(`brush`,fA(this._onBrush,this)).mount()},t.prototype.render=function(e,t,n,r){this.model=e,this._updateController(e,t,n,r)},t.prototype.updateTransform=function(e,t,n,r){eJe(t),this._updateController(e,t,n,r)},t.prototype.updateVisual=function(e,t,n,r){this.updateTransform(e,t,n,r)},t.prototype.updateView=function(e,t,n,r){this._updateController(e,t,n,r)},t.prototype._updateController=function(e,t,n,r){(!r||r.$from!==e.id)&&this._brushController.setPanels(e.brushTargetManager.makePanelOpts(n)).enableBrush(e.brushOption).updateCovers(e.areas.slice())},t.prototype.dispose=function(){this._brushController.dispose()},t.prototype._onBrush=function(e){var t=this.model.id,n=this.model.brushTargetManager.setOutputRanges(e.areas,this.ecModel);(!e.isEnd||e.removeOnClick)&&this.api.dispatchAction({type:`brush`,brushId:t,areas:Qk(n),$from:t}),e.isEnd&&this.api.dispatchAction({type:`brushEnd`,brushId:t,areas:Qk(n),$from:t})},t.type=`brush`,t}(dW),uJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.areas=[],n.brushOption={},n}return t.prototype.optionUpdated=function(e,t){var n=this.option;!t&&qqe(n,e,[`inBrush`,`outOfBrush`]);var r=n.inBrush=n.inBrush||{};n.outOfBrush=n.outOfBrush||{color:this.option.defaultOutOfBrushColor},r.hasOwnProperty(`liftZ`)||(r.liftZ=5)},t.prototype.setAreas=function(e){e&&(this.areas=sA(e,function(e){return dJe(this.option,e)},this))},t.prototype.setBrushOption=function(e){this.brushOption=dJe(this.option,e),this.brushType=this.brushOption.brushType},t.type=`brush`,t.dependencies=[`geo`,`grid`,`xAxis`,`yAxis`,`parallel`,`series`],t.defaultOption={seriesIndex:`all`,brushType:`rect`,brushMode:`single`,transformable:!0,brushStyle:{borderWidth:1,color:$.color.backgroundTint,borderColor:$.color.borderTint},throttleType:`fixRate`,throttleDelay:0,removeOnClick:!0,z:1e4,defaultOutOfBrushColor:$.color.disabled},t}(sH);function dJe(e,t){return $k({brushType:e.brushType,brushMode:e.brushMode,transformable:e.transformable,brushStyle:new LB(e.brushStyle).getItemStyle(),removeOnClick:e.removeOnClick,z:e.z},t,!0)}var fJe=[`rect`,`polygon`,`lineX`,`lineY`,`keep`,`clear`],pJe=function(e){X(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.render=function(e,t,n){var r,i,a;t.eachComponent({mainType:`brush`},function(e){r=e.brushType,i=e.brushOption.brushMode||`single`,a||=!!e.areas.length}),this._brushType=r,this._brushMode=i,Q(e.get(`type`,!0),function(t){e.setIconStatus(t,(t===`keep`?i===`multiple`:t===`clear`?a:t===r)?`emphasis`:`normal`)})},t.prototype.updateView=function(e,t,n){this.render(e,t,n)},t.prototype.getIcons=function(){var e=this.model,t=e.get(`icon`,!0),n={};return Q(e.get(`type`,!0),function(e){t[e]&&(n[e]=t[e])}),n},t.prototype.onclick=function(e,t,n){var r=this._brushType,i=this._brushMode;n===`clear`?(t.dispatchAction({type:`axisAreaSelect`,intervals:[]}),t.dispatchAction({type:`brush`,command:`clear`,areas:[]})):t.dispatchAction({type:`takeGlobalCursor`,key:`brush`,brushOption:{brushType:n===`keep`?r:r===n?!1:n,brushMode:n===`keep`?i===`multiple`?`single`:`multiple`:i}})},t.getDefaultOption=function(e){return{show:!0,type:fJe.slice(),icon:{rect:`M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13`,polygon:`M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2`,lineX:`M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4`,lineY:`M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4`,keep:`M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z`,clear:`M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2`},title:e.getLocaleModel().get([`toolbox`,`brush`,`title`])}},t}(n5);function mJe(e){e.registerComponentView(lJe),e.registerComponentModel(uJe),e.registerPreprocessor(Wqe),e.registerVisual(e.PRIORITY.VISUAL.BRUSH,tJe),e.registerAction({type:`brush`,event:`brush`,update:`updateVisual`},function(e,t){t.eachComponent({mainType:`brush`,query:e},function(t){t.setAreas(e.areas)})}),e.registerAction({type:`brushSelect`,event:`brushSelected`,update:`none`},WA),e.registerAction({type:`brushEnd`,event:`brushEnd`,update:`none`},WA),r5(`brush`,pJe)}var hJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.layoutMode={type:`box`,ignoreSize:!0},n}return t.type=`title`,t.defaultOption={z:6,show:!0,text:``,target:`blank`,subtext:``,subtarget:`blank`,left:`center`,top:$.size.m,backgroundColor:$.color.transparent,borderColor:$.color.primary,borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:`bold`,color:$.color.primary},subtextStyle:{fontSize:12,color:$.color.quaternary}},t}(sH),gJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){if(this.group.removeAll(),e.get(`show`)){var r=this.group,i=e.getModel(`textStyle`),a=e.getModel(`subtextStyle`),o=e.get(`textAlign`),s=OA(e.get(`textBaseline`),e.get(`textVerticalAlign`)),c=new kL({style:SB(i,{text:e.get(`text`),fill:i.getTextColor()},{disableBox:!0}),z2:10}),l=c.getBoundingRect(),u=e.get(`subtext`),d=new kL({style:SB(a,{text:u,fill:a.getTextColor(),y:l.height+e.get(`itemGap`),verticalAlign:`top`},{disableBox:!0}),z2:10}),f=e.get(`link`),p=e.get(`sublink`),m=e.get(`triggerEvent`,!0);c.silent=!f&&!m,d.silent=!p&&!m,f&&c.on(`click`,function(){IV(f,`_`+e.get(`target`))}),p&&d.on(`click`,function(){IV(p,`_`+e.get(`subtarget`))}),jL(c).eventData=jL(d).eventData=m?{componentType:`title`,componentIndex:e.componentIndex}:null,r.add(c),u&&r.add(d);var h=r.getBoundingRect(),g=e.getBoxLayoutParams();g.width=h.width,g.height=h.height;var _=QV(g,tH(e,n).refContainer,e.get(`padding`));o||(o=e.get(`left`)||e.get(`right`),o===`middle`&&(o=`center`),o===`right`?_.x+=_.width:o===`center`&&(_.x+=_.width/2)),s||(s=e.get(`top`)||e.get(`bottom`),s===`center`&&(s=`middle`),s===`bottom`?_.y+=_.height:s===`middle`&&(_.y+=_.height/2),s||=`top`),r.x=_.x,r.y=_.y,r.markRedraw();var v={align:o,verticalAlign:s};c.setStyle(v),d.setStyle(v),h=r.getBoundingRect();var y=_.margin,b=e.getItemStyle([`color`,`opacity`]);b.fill=e.get(`backgroundColor`);var x=new DL({shape:{x:h.x-y[3],y:h.y-y[0],width:h.width+y[1]+y[3],height:h.height+y[0]+y[2],r:e.get(`borderRadius`)},style:b,subPixelOptimize:!0,silent:!0});r.add(x)}},t.type=`title`,t}(dW);function _Je(e){e.registerComponentModel(hJe),e.registerComponentView(gJe)}var vJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.layoutMode=`box`,n}return t.prototype.init=function(e,t,n){this.mergeDefaultAndTheme(e,n),this._initData()},t.prototype.mergeOption=function(t){e.prototype.mergeOption.apply(this,arguments),this._initData()},t.prototype.setCurrentIndex=function(e){e??=this.option.currentIndex;var t=this._data.count();this.option.loop?e=(e%t+t)%t:(e>=t&&(e=t-1),e<0&&(e=0)),this.option.currentIndex=e},t.prototype.getCurrentIndex=function(){return this.option.currentIndex},t.prototype.isIndexMax=function(){return this.getCurrentIndex()>=this._data.count()-1},t.prototype.setPlayState=function(e){this.option.autoPlay=!!e},t.prototype.getPlayState=function(){return!!this.option.autoPlay},t.prototype._initData=function(){var e=this.option,t=e.data||[],n=e.axisType,r=this._names=[],i;n===`category`?(i=[],Q(t,function(e,t){var n=XF(JF(e),``),a;yA(e)?(a=Qk(e),a.value=t):a=t,i.push(a),r.push(n)})):i=t;var a={category:`ordinal`,time:`time`,value:`number`}[n]||`number`;(this._data=new xq([{name:`value`,type:a}],this)).initData(i,r)},t.prototype.getData=function(){return this._data},t.prototype.getCategories=function(){if(this.get(`axisType`)===`category`)return this._names.slice()},t.type=`timeline`,t.defaultOption={z:4,show:!0,axisType:`time`,realtime:!0,left:`20%`,top:null,right:`20%`,bottom:0,width:null,height:40,padding:$.size.m,controlPosition:`left`,autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:$.color.secondary},data:[]},t}(sH),yJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`timeline.slider`,t.defaultOption=zB(vJe.defaultOption,{backgroundColor:`rgba(0,0,0,0)`,borderColor:$.color.border,borderWidth:0,orient:`horizontal`,inverse:!1,tooltip:{trigger:`item`},symbol:`circle`,symbolSize:12,lineStyle:{show:!0,width:2,color:$.color.accent10},label:{position:`auto`,show:!0,interval:`auto`,rotate:0,color:$.color.tertiary},itemStyle:{color:$.color.accent20,borderWidth:0},checkpointStyle:{symbol:`circle`,symbolSize:15,color:$.color.accent50,borderColor:$.color.accent50,borderWidth:0,shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:`rgba(0, 0, 0, 0)`,animation:!0,animationDuration:300,animationEasing:`quinticInOut`},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:24,itemGap:12,position:`left`,playIcon:`path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10.6699C11.5 9.90014 12.3333 9.41887 13 9.80371L20.5 14.1338C21.1667 14.5187 21.1667 15.4813 20.5 15.8662L13 20.1963C12.3333 20.5811 11.5 20.0999 11.5 19.3301V10.6699Z`,stopIcon:`path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10C12.3284 10 13 10.6716 13 11.5V18.5C13 19.3284 12.3284 20 11.5 20C10.6716 20 10 19.3284 10 18.5V11.5C10 10.6716 10.6716 10 11.5 10ZM18.5 10C19.3284 10 20 10.6716 20 11.5V18.5C20 19.3284 19.3284 20 18.5 20C17.6716 20 17 19.3284 17 18.5V11.5C17 10.6716 17.6716 10 18.5 10Z`,nextIcon:`path://M0.838834 18.7383C0.253048 18.1525 0.253048 17.2028 0.838834 16.617L7.55635 9.89949L0.838834 3.18198C0.253048 2.59619 0.253048 1.64645 0.838834 1.06066C1.42462 0.474874 2.37437 0.474874 2.96015 1.06066L10.7383 8.83883L10.8412 8.95277C11.2897 9.50267 11.2897 10.2963 10.8412 10.8462L10.7383 10.9602L2.96015 18.7383C2.37437 19.3241 1.42462 19.3241 0.838834 18.7383Z`,prevIcon:`path://M10.9602 1.06066C11.5459 1.64645 11.5459 2.59619 10.9602 3.18198L4.24264 9.89949L10.9602 16.617C11.5459 17.2028 11.5459 18.1525 10.9602 18.7383C10.3744 19.3241 9.42462 19.3241 8.83883 18.7383L1.06066 10.9602L0.957771 10.8462C0.509245 10.2963 0.509245 9.50267 0.957771 8.95277L1.06066 8.83883L8.83883 1.06066C9.42462 0.474874 10.3744 0.474874 10.9602 1.06066Z`,prevBtnSize:18,nextBtnSize:18,color:$.color.accent50,borderColor:$.color.accent50,borderWidth:0},emphasis:{label:{show:!0,color:$.color.accent60},itemStyle:{color:$.color.accent60,borderColor:$.color.accent60},controlStyle:{color:$.color.accent70,borderColor:$.color.accent70}},progress:{lineStyle:{color:$.color.accent30},itemStyle:{color:$.color.accent40}},data:[]}),t}(vJe);aA(yJe,SU.prototype);var bJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`timeline`,t}(dW),xJe=function(e){X(t,e);function t(t,n,r,i){var a=e.call(this,t,n,r)||this;return a.type=i||`value`,a}return t.prototype.getLabelModel=function(){return this.model.getModel(`label`)},t.prototype.isHorizontal=function(){return this.model.get(`orient`)===`horizontal`},t}(yY),x5=Math.PI,SJe=eI(),CJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(e,t){this.api=t},t.prototype.render=function(e,t,n){if(this.model=e,this.api=n,this.ecModel=t,this.group.removeAll(),e.get(`show`,!0)){var r=this._layout(e,n),i=this._createGroup(`_mainGroup`),a=this._createGroup(`_labelGroup`),o=this._axis=this._createAxis(r,e);e.formatTooltip=function(e){return qU(`nameValue`,{noName:!0,value:o.scale.getLabel({value:e})})},Q([`AxisLine`,`AxisTick`,`Control`,`CurrentPointer`],function(t){this[`_render`+t](r,i,o,e)},this),this._renderAxisLabel(r,a,o,e),this._position(r,e)}this._doPlayStop(),this._updateTicksStatus()},t.prototype.remove=function(){this._clearTimer(),this.group.removeAll()},t.prototype.dispose=function(){this._clearTimer()},t.prototype._layout=function(e,t){var n=e.get([`label`,`position`]),r=e.get(`orient`),i=wJe(e,t),a=n==null||n===`auto`?r===`horizontal`?i.y+i.height/2=0||a===`+`?`left`:`right`},s={horizontal:a>=0||a===`+`?`top`:`bottom`,vertical:`middle`},c={horizontal:0,vertical:x5/2},l=r===`vertical`?i.height:i.width,u=e.getModel(`controlStyle`),d=u.get(`show`,!0),f=d?u.get(`itemSize`):0,p=d?u.get(`itemGap`):0,m=f+p,h=e.get([`label`,`rotate`])||0;h=h*x5/180;var g,_,v,y=u.get(`position`,!0),b=d&&u.get(`showPlayBtn`,!0),x=d&&u.get(`showPrevBtn`,!0),S=d&&u.get(`showNextBtn`,!0),C=0,w=l;y===`left`||y===`bottom`?(b&&(g=[0,0],C+=m),x&&(_=[C,0],C+=m),S&&(v=[w-f,0],w-=m)):(b&&(g=[w-f,0],w-=m),x&&(_=[0,0],C+=m),S&&(v=[w-f,0],w-=m));var T=[C,w];return e.get(`inverse`)&&T.reverse(),{viewRect:i,mainLength:l,orient:r,rotation:c[r],labelRotation:h,labelPosOpt:a,labelAlign:e.get([`label`,`align`])||o[r],labelBaseline:e.get([`label`,`verticalAlign`])||e.get([`label`,`baseline`])||s[r],playPosition:g,prevBtnPosition:_,nextBtnPosition:v,axisExtent:T,controlSize:f,controlGap:p}},t.prototype._position=function(e,t){var n=this._mainGroup,r=this._labelGroup,i=e.viewRect;if(e.orient===`vertical`){var a=Mj(),o=i.x,s=i.y+i.height;Ij(a,a,[-o,-s]),Lj(a,a,-x5/2),Ij(a,a,[o,s]),i=i.clone(),i.applyTransform(a)}var c=g(i),l=g(n.getBoundingRect()),u=g(r.getBoundingRect()),d=[n.x,n.y],f=[r.x,r.y];f[0]=d[0]=c[0][0];var p=e.labelPosOpt;if(p==null||gA(p)){var m=p===`+`?0:1;_(d,l,c,1,m),_(f,u,c,1,1-m)}else{var m=p>=0?0:1;_(d,l,c,1,m),f[1]=d[1]+p}n.setPosition(d),r.setPosition(f),n.rotation=r.rotation=e.rotation,h(n),h(r);function h(e){e.originX=c[0][0]-e.x,e.originY=c[1][0]-e.y}function g(e){return[[e.x,e.x+e.width],[e.y,e.y+e.height]]}function _(e,t,n,r,i){e[r]+=n[r][i]-t[r][i]}},t.prototype._createAxis=function(e,t){var n=t.getData(),r=t.get(`axisType`)||t.get(`type`);r!==`category`&&r!==`time`&&(r=`value`);var i=fJ(t,r,!1);i.getTicks=function(){return n.mapArray([`value`],function(e){return{value:e}})};var a=n.getDataExtent(`value`);i.setExtent(a[0],a[1]),YJ(i,{fixMinMax:[!0,!0]});var o=new xJe(`value`,i,e.axisExtent,r);return o.model=t,o},t.prototype._createGroup=function(e){var t=this[e]=new QP;return this.group.add(t),t},t.prototype._renderAxisLine=function(e,t,n,r){var i=n.getExtent();if(r.get([`lineStyle`,`show`])){var a=new $R({shape:{x1:i[0],y1:0,x2:i[1],y2:0},style:Z({lineCap:`round`},r.getModel(`lineStyle`).getLineStyle()),silent:!0,z2:1});t.add(a);var o=this._progressLine=new $R({shape:{x1:i[0],x2:this._currentPointer?this._currentPointer.x:i[0],y1:0,y2:0},style:nA({lineCap:`round`,lineWidth:a.style.lineWidth},r.getModel([`progress`,`lineStyle`]).getLineStyle()),silent:!0,z2:1});t.add(o)}},t.prototype._renderAxisTick=function(e,t,n,r){var i=this,a=r.getData(),o=n.scale.getTicks();this._tickSymbols=[],Q(o,function(e){var o=n.dataToCoord(e.value),s=a.getItemModel(e.value),c=s.getModel(`itemStyle`),l=s.getModel([`emphasis`,`itemStyle`]),u=s.getModel([`progress`,`itemStyle`]),d=EJe(s,c,t,{x:o,y:0,onclick:fA(i._changeTimeline,i,e.value)});d.ensureState(`emphasis`).style=l.getItemStyle(),d.ensureState(`progress`).style=u.getItemStyle(),uR(d);var f=jL(d);s.get(`tooltip`)?(f.dataIndex=e.value,f.dataModel=r):f.dataIndex=f.dataModel=null,i._tickSymbols.push(d)})},t.prototype._renderAxisLabel=function(e,t,n,r){var i=this;if(n.getLabelModel().get(`show`)){var a=r.getData(),o=n.getViewLabels();this._tickLabels=[],Q(o,function(r){if(!r.tick.offInterval){var o=r.tick.value,s=a.getItemModel(o),c=s.getModel(`label`),l=s.getModel([`emphasis`,`label`]),u=s.getModel([`progress`,`label`]),d=new kL({x:n.dataToCoord(o),y:0,rotation:e.labelRotation-e.rotation,onclick:fA(i._changeTimeline,i,o),silent:!1,style:SB(c,{text:r.formattedLabel,align:e.labelAlign,verticalAlign:e.labelBaseline})});d.ensureState(`emphasis`).style=SB(l),d.ensureState(`progress`).style=SB(u),t.add(d),uR(d),SJe(d).dataIndex=o,i._tickLabels.push(d)}})}},t.prototype._renderControl=function(e,t,n,r){var i=e.controlSize,a=e.rotation,o=r.getModel(`controlStyle`).getItemStyle(),s=r.getModel([`emphasis`,`controlStyle`]).getItemStyle(),c=r.getPlayState(),l=r.get(`inverse`,!0);u(e.nextBtnPosition,`next`,fA(this._changeTimeline,this,l?`-`:`+`)),u(e.prevBtnPosition,`prev`,fA(this._changeTimeline,this,l?`+`:`-`)),u(e.playPosition,c?`stop`:`play`,fA(this._handlePlayClick,this,!c),!0);function u(e,n,c,l){if(e){var u=BP(OA(r.get([`controlStyle`,n+`BtnSize`]),i),i),d=[0,-u/2,u,u],f=TJe(r,n+`Icon`,d,{x:e[0],y:e[1],originX:i/2,originY:0,rotation:l?-a:0,rectHover:!0,style:o,onclick:c});f.ensureState(`emphasis`).style=s,t.add(f),uR(f)}}},t.prototype._renderCurrentPointer=function(e,t,n,r){var i=r.getData(),a=r.getCurrentIndex(),o=i.getItemModel(a).getModel(`checkpointStyle`),s=this,c={onCreate:function(e){e.draggable=!0,e.drift=fA(s._handlePointerDrag,s),e.ondragend=fA(s._handlePointerDragend,s),DJe(e,s._progressLine,a,n,r,!0)},onUpdate:function(e){DJe(e,s._progressLine,a,n,r)}};this._currentPointer=EJe(o,o,this._mainGroup,{},this._currentPointer,c)},t.prototype._handlePlayClick=function(e){this._clearTimer(),this.api.dispatchAction({type:`timelinePlayChange`,playState:e,from:this.uid})},t.prototype._handlePointerDrag=function(e,t,n){this._clearTimer(),this._pointerChangeTimeline([n.offsetX,n.offsetY])},t.prototype._handlePointerDragend=function(e){this._pointerChangeTimeline([e.offsetX,e.offsetY],!0)},t.prototype._pointerChangeTimeline=function(e,t){var n=this._toAxisCoord(e)[0],r=this._axis,i=CF(r.getExtent().slice());n>i[1]&&(n=i[1]),n=0&&(s[o]=+s[o].toFixed(f)),[s,d]}var k5={min:pA(O5,`min`),max:pA(O5,`max`),average:pA(O5,`average`),median:pA(O5,`median`)};function A5(e,t){if(t){var n=e.getData(),r=e.coordinateSystem,i=r&&r.dimensions;if(!PJe(t)&&!mA(t.coord)&&mA(i)){var a=FJe(t,n,r,e);if(t=Qk(t),t.type&&k5[t.type]&&a.baseAxis&&a.valueAxis){var o=rA(i,a.baseAxis.dim),s=rA(i,a.valueAxis.dim),c=k5[t.type](n,a.valueAxis.dim,a.baseDataDim,a.valueDataDim,o,s);t.coord=c[0],t.value=c[1]}else t.coord=[t.xAxis==null?t.radiusAxis:t.xAxis,t.yAxis==null?t.angleAxis:t.yAxis]}if(t.coord==null||!mA(i)){t.coord=[];var l=e.getBaseAxis();if(l&&t.type&&k5[t.type]){var u=r.getOtherAxis(l);u&&(t.value=M5(n,n.mapDimension(u.dim),t.type))}}else for(var d=t.coord,f=0;f<2;f++)k5[d[f]]&&(d[f]=M5(n,n.mapDimension(i[f]),d[f]));return t}}function FJe(e,t,n,r){var i={};return e.valueIndex!=null||e.valueDim!=null?(i.valueDataDim=e.valueIndex==null?e.valueDim:t.getDimension(e.valueIndex),i.valueAxis=n.getAxis(IJe(r,i.valueDataDim)),i.baseAxis=n.getOtherAxis(i.valueAxis),i.baseDataDim=t.mapDimension(i.baseAxis.dim)):(i.baseAxis=r.getBaseAxis(),i.valueAxis=n.getOtherAxis(i.baseAxis),i.baseDataDim=t.mapDimension(i.baseAxis.dim),i.valueDataDim=t.mapDimension(i.valueAxis.dim)),i}function IJe(e,t){var n=e.getData().getDimensionInfo(t);return n&&n.coordDim}function j5(e,t){return e&&e.containData&&t.coord&&!D5(t)?e.containData(t.coord):!0}function LJe(e,t,n){return e&&e.containZone&&t.coord&&n.coord&&!D5(t)&&!D5(n)?e.containZone(t.coord,n.coord):!0}function RJe(e,t){return e?function(e,n,r,i){return EU(i<2?e.coord&&e.coord[i]:e.value,t[i])}:function(e,n,r,i){return EU(e.value,t[i])}}function M5(e,t,n){if(n===`average`){var r=0,i=0;return e.each(t,function(e,t){isNaN(e)||(r+=e,i++)}),r/i}else if(n===`median`)return e.getMedian(t);else return e.getDataExtent(t)[+(n===`max`)]}var N5=eI(),P5=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.init=function(){this.markerGroupMap=zA()},t.prototype.render=function(e,t,n){var r=this,i=this.markerGroupMap;i.each(function(e){N5(e).keep=!1}),t.eachSeries(function(e){var i=E5.getMarkerModelFromSeries(e,r.type);i&&r.renderSeries(e,i,t,n)}),i.each(function(e){!N5(e).keep&&r.group.remove(e.group)}),zJe(t,i,this.type)},t.prototype.markKeep=function(e){N5(e).keep=!0},t.prototype.toggleBlurSeries=function(e,t){var n=this;Q(e,function(e){var r=E5.getMarkerModelFromSeries(e,n.type);r&&r.getData().eachItemGraphicEl(function(e){e&&(t?mEe(e):tR(e))})})},t.type=`marker`,t}(dW);function zJe(e,t,n){e.eachSeries(function(e){var r=E5.getMarkerModelFromSeries(e,n),i=t.get(e.id);if(r&&i&&i.group){var a=lB(r),o=a.z,s=a.zlevel;dB(i.group,o,s)}})}function BJe(e,t,n){var r=t.coordinateSystem,i=n.getWidth(),a=n.getHeight(),o=r&&r.getArea&&r.getArea();e.each(function(n){var s=e.getItemModel(n),c=s.get(`relativeTo`)===`coordinate`,l=c?o?o.width:0:i,u=c?o?o.height:0:a,d=c&&o?o.x:0,f=c&&o?o.y:0,p,m=yF(s.get(`x`),l)+d,h=yF(s.get(`y`),u)+f;if(!isNaN(m)&&!isNaN(h))p=[m,h];else if(t.getMarkerPosition)p=t.getMarkerPosition(e.getValues(e.dimensions,n));else if(r){var g=e.get(r.dimensions[0],n),_=e.get(r.dimensions[1],n);p=r.dataToPoint([g,_])}isNaN(m)||(p[0]=m),isNaN(h)||(p[1]=h),e.setItemLayout(n,p)})}var VJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.updateTransform=function(e,t,n){t.eachSeries(function(e){var t=E5.getMarkerModelFromSeries(e,`markPoint`);t&&(BJe(t.getData(),e,n),this.markerGroupMap.get(e.id).updateLayout())},this)},t.prototype.renderSeries=function(e,t,n,r){var i=e.coordinateSystem,a=e.id,o=e.getData(),s=this.markerGroupMap,c=s.get(a)||s.set(a,new wZ),l=HJe(i,e,t);t.setData(l),BJe(t.getData(),e,r),l.each(function(e){var n=l.getItemModel(e),r=n.getShallow(`symbol`),i=n.getShallow(`symbolSize`),a=n.getShallow(`symbolRotate`),s=n.getShallow(`symbolOffset`),c=n.getShallow(`symbolKeepAspect`);if(hA(r)||hA(i)||hA(a)||hA(s)){var u=t.getRawValue(e),d=t.getDataParams(e);hA(r)&&(r=r(u,d)),hA(i)&&(i=i(u,d)),hA(a)&&(a=a(u,d)),hA(s)&&(s=s(u,d))}var f=n.getModel(`itemStyle`).getItemStyle(),p=n.get(`z2`),m=UW(o,`color`);f.fill||=m,l.setItemVisual(e,{z2:OA(p,0),symbol:r,symbolSize:i,symbolRotate:a,symbolOffset:s,symbolKeepAspect:c,style:f})}),c.updateData(l),this.group.add(c.group),l.eachItemGraphicEl(function(e){e.traverse(function(e){jL(e).dataModel=t})}),this.markKeep(c),c.group.silent=t.get(`silent`)||e.get(`silent`)},t.type=`markPoint`,t}(P5);function HJe(e,t,n){var r=e?sA(e&&e.dimensions,function(e){var n=t.getData();return Z(Z({},n.getDimensionInfo(n.mapDimension(e))||{}),{name:e,ordinalMeta:null})}):[{name:`value`,type:`float`}],i=new xq(r,n),a=sA(n.get(`data`),pA(A5,t));e&&(a=lA(a,pA(j5,e)));var o=RJe(!!e,r);return i.initData(a,null,o),i}function UJe(e){e.registerComponentModel(NJe),e.registerComponentView(VJe),e.registerPreprocessor(function(e){C5(e.series,`markPoint`)&&(e.markPoint=e.markPoint||{})})}var WJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.createMarkerModelFromSeries=function(e,n,r){return new t(e,n,r)},t.type=`markLine`,t.defaultOption={z:5,symbol:[`circle`,`arrow`],symbolSize:[8,16],symbolOffset:0,precision:2,tooltip:{trigger:`item`},label:{show:!0,position:`end`,distance:5},lineStyle:{type:`dashed`},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:`linear`},t}(E5),F5=eI(),GJe=function(e,t,n,r){var i=e.getData(),a;if(mA(r))a=r;else{var o=r.type;if(o===`min`||o===`max`||o===`average`||o===`median`||r.xAxis!=null||r.yAxis!=null){var s=void 0,c=void 0;if(r.yAxis!=null||r.xAxis!=null)s=t.getAxis(r.yAxis==null?`x`:`y`),c=DA(r.yAxis,r.xAxis);else{var l=FJe(r,i,t,e);s=l.valueAxis,c=M5(i,Eq(i,l.valueDataDim),o)}var u=s.dim===`x`?0:1,d=1-u,f=Qk(r),p={coord:[]};f.type=null,f.coord=[],f.coord[d]=-1/0,p.coord[d]=1/0;var m=n.get(`precision`);m>=0&&vA(c)&&(c=+c.toFixed(Math.min(m,20))),f.coord[u]=p.coord[u]=c,a=[f,p,{type:o,valueIndex:r.valueIndex,value:c}]}else a=[]}var h=[A5(e,a[0]),A5(e,a[1]),Z({},a[2])];return h[2].type=h[2].type||null,$k(h[2],h[0]),$k(h[2],h[1]),h};function I5(e){return!isNaN(e)&&!isFinite(e)}function KJe(e,t,n,r){var i=1-e,a=r.dimensions[e];return I5(t[i])&&I5(n[i])&&t[e]===n[e]&&r.getAxis(a).containData(t[e])}function qJe(e,t){if(e.type===`cartesian2d`){var n=t[0].coord,r=t[1].coord;if(n&&r&&(KJe(1,n,r,e)||KJe(0,n,r,e)))return!0}return j5(e,t[0])&&j5(e,t[1])}function L5(e,t,n,r,i){var a=r.coordinateSystem,o=e.getItemModel(t),s,c=yF(o.get(`x`),i.getWidth()),l=yF(o.get(`y`),i.getHeight());if(!isNaN(c)&&!isNaN(l))s=[c,l];else{if(r.getMarkerPosition)s=r.getMarkerPosition(e.getValues(e.dimensions,t));else{var u=a.dimensions,d=e.get(u[0],t),f=e.get(u[1],t);s=a.dataToPoint([d,f])}if(BZ(a,`cartesian2d`)){var p=a.getAxis(`x`),m=a.getAxis(`y`),u=a.dimensions;I5(e.get(u[0],t))?s[0]=p.toGlobalCoord(p.getExtent()[+!n]):I5(e.get(u[1],t))&&(s[1]=m.toGlobalCoord(m.getExtent()[+!n]))}isNaN(c)||(s[0]=c),isNaN(l)||(s[1]=l)}e.setItemLayout(t,s)}var JJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.updateTransform=function(e,t,n){t.eachSeries(function(e){var t=E5.getMarkerModelFromSeries(e,`markLine`);if(t){var r=t.getData(),i=F5(t).from,a=F5(t).to;i.each(function(t){L5(i,t,!0,e,n),L5(a,t,!1,e,n)}),r.each(function(e){r.setItemLayout(e,[i.getItemLayout(e),a.getItemLayout(e)])}),this.markerGroupMap.get(e.id).updateLayout()}},this)},t.prototype.renderSeries=function(e,t,n,r){var i=e.coordinateSystem,a=e.id,o=e.getData(),s=this.markerGroupMap,c=s.get(a)||s.set(a,new Z4);this.group.add(c.group);var l=YJe(i,e,t),u=l.from,d=l.to,f=l.line;F5(t).from=u,F5(t).to=d,t.setData(f);var p=t.get(`symbol`),m=t.get(`symbolSize`),h=t.get(`symbolRotate`),g=t.get(`symbolOffset`);mA(p)||(p=[p,p]),mA(m)||(m=[m,m]),mA(h)||(h=[h,h]),mA(g)||(g=[g,g]),l.from.each(function(e){_(u,e,!0),_(d,e,!1)}),f.each(function(e){var t=f.getItemModel(e),n=t.getModel(`lineStyle`).getLineStyle();f.setItemLayout(e,[u.getItemLayout(e),d.getItemLayout(e)]);var r=t.get(`z2`);n.stroke??=u.getItemVisual(e,`style`).fill,f.setItemVisual(e,{z2:OA(r,0),fromSymbolKeepAspect:u.getItemVisual(e,`symbolKeepAspect`),fromSymbolOffset:u.getItemVisual(e,`symbolOffset`),fromSymbolRotate:u.getItemVisual(e,`symbolRotate`),fromSymbolSize:u.getItemVisual(e,`symbolSize`),fromSymbol:u.getItemVisual(e,`symbol`),toSymbolKeepAspect:d.getItemVisual(e,`symbolKeepAspect`),toSymbolOffset:d.getItemVisual(e,`symbolOffset`),toSymbolRotate:d.getItemVisual(e,`symbolRotate`),toSymbolSize:d.getItemVisual(e,`symbolSize`),toSymbol:d.getItemVisual(e,`symbol`),style:n})}),c.updateData(f),l.line.eachItemGraphicEl(function(e){jL(e).dataModel=t,e.traverse(function(e){jL(e).dataModel=t})});function _(t,n,i){var a=t.getItemModel(n);L5(t,n,i,e,r);var s=a.getModel(`itemStyle`).getItemStyle();s.fill??=UW(o,`color`),t.setItemVisual(n,{symbolKeepAspect:a.get(`symbolKeepAspect`),symbolOffset:OA(a.get(`symbolOffset`,!0),g[+!i]),symbolRotate:OA(a.get(`symbolRotate`,!0),h[+!i]),symbolSize:OA(a.get(`symbolSize`),m[+!i]),symbol:OA(a.get(`symbol`,!0),p[+!i]),style:s})}this.markKeep(c),c.group.silent=t.get(`silent`)||e.get(`silent`)},t.type=`markLine`,t}(P5);function YJe(e,t,n){var r=e?sA(e&&e.dimensions,function(e){var n=t.getData();return Z(Z({},n.getDimensionInfo(n.mapDimension(e))||{}),{name:e,ordinalMeta:null})}):[{name:`value`,type:`float`}],i=new xq(r,n),a=new xq(r,n),o=new xq([],n),s=sA(n.get(`data`),pA(GJe,t,e,n));e&&(s=lA(s,pA(qJe,e)));var c=RJe(!!e,r);return i.initData(sA(s,function(e){return e[0]}),null,c),a.initData(sA(s,function(e){return e[1]}),null,c),o.initData(sA(s,function(e){return e[2]})),o.hasItemOption=!0,{from:i,to:a,line:o}}function XJe(e){e.registerComponentModel(WJe),e.registerComponentView(JJe),e.registerPreprocessor(function(e){C5(e.series,`markLine`)&&(e.markLine=e.markLine||{})})}var ZJe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.createMarkerModelFromSeries=function(e,n,r){return new t(e,n,r)},t.type=`markArea`,t.defaultOption={z:1,tooltip:{trigger:`item`},animation:!1,label:{show:!0,position:`top`},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:`top`}}},t}(E5),R5=eI(),QJe=function(e,t,n,r){var i=r[0],a=r[1];if(!(!i||!a)){var o=A5(e,i),s=A5(e,a),c=o.coord,l=s.coord;c[0]=DA(c[0],-1/0),c[1]=DA(c[1],-1/0),l[0]=DA(l[0],1/0),l[1]=DA(l[1],1/0);var u=eA([{},o,s]);return u.coord=[o.coord,s.coord],u.x0=o.x,u.y0=o.y,u.x1=s.x,u.y1=s.y,u}};function z5(e){return!isNaN(e)&&!isFinite(e)}function $Je(e,t,n,r){var i=1-e;return z5(t[i])&&z5(n[i])}function eYe(e,t){var n=t.coord[0],r=t.coord[1],i={coord:n,x:t.x0,y:t.y0},a={coord:r,x:t.x1,y:t.y1};return BZ(e,`cartesian2d`)?n&&r&&($Je(1,n,r,e)||$Je(0,n,r,e))?!0:LJe(e,i,a):j5(e,i)||j5(e,a)}function tYe(e,t,n,r,i){var a=r.coordinateSystem,o=e.getItemModel(t),s,c=yF(o.get(n[0]),i.getWidth()),l=yF(o.get(n[1]),i.getHeight());if(!isNaN(c)&&!isNaN(l))s=[c,l];else{if(r.getMarkerPosition){var u=e.getValues([`x0`,`y0`],t),d=e.getValues([`x1`,`y1`],t),f=a.clampData(u),p=a.clampData(d),m=[];n[0]===`x0`?m[0]=f[0]>p[0]?d[0]:u[0]:m[0]=f[0]>p[0]?u[0]:d[0],n[1]===`y0`?m[1]=f[1]>p[1]?d[1]:u[1]:m[1]=f[1]>p[1]?u[1]:d[1],s=r.getMarkerPosition(m,n,!0)}else{var h=e.get(n[0],t),g=e.get(n[1],t),_=[h,g];a.clampData&&a.clampData(_,_),s=a.dataToPoint(_,!0)}if(BZ(a,`cartesian2d`)){var v=a.getAxis(`x`),y=a.getAxis(`y`),h=e.get(n[0],t),g=e.get(n[1],t);z5(h)?s[0]=v.toGlobalCoord(v.getExtent()[n[0]===`x0`?0:1]):z5(g)&&(s[1]=y.toGlobalCoord(y.getExtent()[n[1]===`y0`?0:1]))}isNaN(c)||(s[0]=c),isNaN(l)||(s[1]=l)}return s}var nYe=[[`x0`,`y0`],[`x1`,`y0`],[`x1`,`y1`],[`x0`,`y1`]],rYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.updateTransform=function(e,t,n){t.eachSeries(function(e){var t=E5.getMarkerModelFromSeries(e,`markArea`);if(t){var r=t.getData();r.each(function(t){var i=sA(nYe,function(i){return tYe(r,t,i,e,n)});r.setItemLayout(t,i),r.getItemGraphicEl(t).setShape(`points`,i)})}},this)},t.prototype.renderSeries=function(e,t,n,r){var i=e.coordinateSystem,a=e.id,o=e.getData(),s=this.markerGroupMap,c=s.get(a)||s.set(a,{group:new QP});this.group.add(c.group),this.markKeep(c);var l=iYe(i,e,t);t.setData(l),l.each(function(t){var n=sA(nYe,function(n){return tYe(l,t,n,e,r)}),a=i.getAxis(`x`).scale,s=i.getAxis(`y`).scale,c=a.getExtent(),u=s.getExtent(),d=[a.parse(l.get(`x0`,t)),a.parse(l.get(`x1`,t))],f=[s.parse(l.get(`y0`,t)),s.parse(l.get(`y1`,t))];CF(d),CF(f);var p=c[0]>d[1]||c[1]f[1]||u[1]=0},t.prototype.getOrient=function(){return this.get(`orient`)===`vertical`?{index:1,name:`vertical`}:{index:0,name:`horizontal`}},t.type=`legend.plain`,t.dependencies=[`series`],t.defaultOption={z:4,show:!0,orient:`horizontal`,left:`center`,bottom:$.size.m,align:`auto`,backgroundColor:$.color.transparent,borderColor:$.color.border,borderRadius:0,borderWidth:0,padding:5,itemGap:8,itemWidth:25,itemHeight:14,symbolRotate:`inherit`,symbolKeepAspect:!0,inactiveColor:$.color.disabled,inactiveBorderColor:$.color.disabled,inactiveBorderWidth:`auto`,itemStyle:{color:`inherit`,opacity:`inherit`,borderColor:`inherit`,borderWidth:`auto`,borderCap:`inherit`,borderJoin:`inherit`,borderDashOffset:`inherit`,borderMiterLimit:`inherit`},lineStyle:{width:`auto`,color:`inherit`,inactiveColor:$.color.disabled,inactiveWidth:2,opacity:`inherit`,type:`inherit`,cap:`inherit`,join:`inherit`,dashOffset:`inherit`,miterLimit:`inherit`},textStyle:{color:$.color.secondary},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:`sans-serif`,color:$.color.tertiary,borderWidth:1,borderColor:$.color.border},emphasis:{selectorLabel:{show:!0,color:$.color.quaternary}},selectorPosition:`auto`,selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1},triggerEvent:!1},t}(sH),V5=pA,H5=Q,U5=QP,sYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.newlineDisabled=!1,n}return t.prototype.init=function(){this.group.add(this._contentGroup=new U5),this.group.add(this._selectorGroup=new U5),this._isFirstRender=!0},t.prototype.getContentGroup=function(){return this._contentGroup},t.prototype.getSelectorGroup=function(){return this._selectorGroup},t.prototype.render=function(e,t,n){var r=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),e.get(`show`,!0)){var i=e.get(`align`),a=e.get(`orient`);(!i||i===`auto`)&&(i=e.get(`left`)===`right`&&a===`vertical`?`right`:`left`);var o=e.get(`selector`,!0),s=e.get(`selectorPosition`,!0);o&&(!s||s===`auto`)&&(s=a===`horizontal`?`end`:`start`),this.renderInner(i,e,t,n,o,a,s);var c=tH(e,n).refContainer,l=e.getBoxLayoutParams(),u=e.get(`padding`),d=QV(l,c,u),f=this.layoutInner(e,i,d,r,o,s),p=QV(nA({width:f.width,height:f.height},l),c,u);this.group.x=p.x-f.x,this.group.y=p.y-f.y,this.group.markRedraw(),this.group.add(this._backgroundEl=TKe(f,e))}},t.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},t.prototype.renderInner=function(e,t,n,r,i,a,o){var s=this.getContentGroup(),c=zA(),l=t.get(`selectedMode`),u=t.get(`triggerEvent`),d=[];n.eachRawSeries(function(e){!e.get(`legendHoverLink`)&&d.push(e.id)}),H5(t.getData(),function(i,a){var o=this,f=i.get(`name`);if(!this.newlineDisabled&&(f===``||f===` +`)){var p=new U5;p.newline=!0,s.add(p);return}var m=n.getSeriesByName(f)[0];if(!c.get(f))if(m){var h=m.getData(),g=h.getVisual(`legendLineStyle`)||{},_=h.getVisual(`legendIcon`),v=h.getVisual(`style`),y=this._createItem(m,f,a,i,t,e,g,v,_,l,r);y.on(`click`,V5(uYe,f,null,r,d)).on(`mouseover`,V5(W5,m.name,null,r,d)).on(`mouseout`,V5(G5,m.name,null,r,d)),n.ssr&&y.eachChild(function(e){var t=jL(e);t.seriesIndex=m.seriesIndex,t.dataIndex=a,t.ssrType=`legend`}),u&&y.eachChild(function(e){o.packEventData(e,t,m,a,f)}),c.set(f,!0)}else n.eachRawSeries(function(o){var s=this;if(!c.get(f)&&o.legendVisualProvider){var p=o.legendVisualProvider;if(!p.containName(f))return;var m=p.indexOfName(f),h=p.getItemVisual(m,`style`),g=p.getItemVisual(m,`legendIcon`),_=uN(h.fill);_&&_[3]===0&&(_[3]=.2,h=Z(Z({},h),{fill:_N(_,`rgba`)}));var v=this._createItem(o,f,a,i,t,e,{},h,g,l,r);v.on(`click`,V5(uYe,null,f,r,d)).on(`mouseover`,V5(W5,null,f,r,d)).on(`mouseout`,V5(G5,null,f,r,d)),n.ssr&&v.eachChild(function(e){var t=jL(e);t.seriesIndex=o.seriesIndex,t.dataIndex=a,t.ssrType=`legend`}),u&&v.eachChild(function(e){s.packEventData(e,t,o,a,f)}),c.set(f,!0)}},this)},this),i&&this._createSelector(i,t,r,a,o)},t.prototype.packEventData=function(e,t,n,r,i){var a={componentType:`legend`,componentIndex:t.componentIndex,dataIndex:r,value:i,seriesIndex:n.seriesIndex};jL(e).eventData=a},t.prototype._createSelector=function(e,t,n,r,i){var a=this.getSelectorGroup();H5(e,function(e){var r=e.type,i=new kL({style:{x:0,y:0,align:`center`,verticalAlign:`middle`},onclick:function(){n.dispatchAction({type:r===`all`?`legendAllSelect`:`legendInverseSelect`,legendId:t.id})}});a.add(i),bB(i,{normal:t.getModel(`selectorLabel`),emphasis:t.getModel([`emphasis`,`selectorLabel`])},{defaultText:e.title}),uR(i)})},t.prototype._createItem=function(e,t,n,r,i,a,o,s,c,l,u){var d=e.visualDrawType,f=i.get(`itemWidth`),p=i.get(`itemHeight`),m=i.isSelected(t),h=r.get(`symbolRotate`),g=r.get(`symbolKeepAspect`),_=r.get(`icon`);c=_||c||`roundRect`;var v=cYe(c,r,o,s,d,m,u),y=new U5,b=r.getModel(`textStyle`);if(hA(e.getLegendIcon)&&(!_||_===`inherit`))y.add(e.getLegendIcon({itemWidth:f,itemHeight:p,icon:c,iconRotate:h,itemStyle:v.itemStyle,lineStyle:v.lineStyle,symbolKeepAspect:g}));else{var x=_===`inherit`&&e.getData().getVisual(`symbol`)?h===`inherit`?e.getData().getVisual(`symbolRotate`):h:0;y.add(lYe({itemWidth:f,itemHeight:p,icon:c,iconRotate:x,itemStyle:v.itemStyle,lineStyle:v.lineStyle,symbolKeepAspect:g}))}var S=a===`left`?f+5:-5,C=a,w=i.get(`formatter`),T=t;gA(w)&&w?T=w.replace(`{name}`,t??``):hA(w)&&(T=w(t));var E=m?b.getTextColor():r.get(`inactiveColor`);y.add(new kL({style:SB(b,{text:T,x:S,y:p/2,fill:E,align:C,verticalAlign:`middle`},{inheritColor:E})}));var D=new DL({shape:y.getBoundingRect(),style:{fill:`transparent`}}),O=r.getModel(`tooltip`);return O.get(`show`)&&nB({el:D,componentModel:i,itemName:t,itemTooltipOption:O.option}),y.add(D),y.eachChild(function(e){e.silent=!0}),D.silent=!l,this.getContentGroup().add(y),uR(y),y.__legendDataIndex=n,y},t.prototype.layoutInner=function(e,t,n,r,i,a){var o=this.getContentGroup(),s=this.getSelectorGroup();YV(e.get(`orient`),o,e.get(`itemGap`),n.width,n.height);var c=o.getBoundingRect(),l=[-c.x,-c.y];if(s.markRedraw(),o.markRedraw(),i){YV(`horizontal`,s,e.get(`selectorItemGap`,!0));var u=s.getBoundingRect(),d=[-u.x,-u.y],f=e.get(`selectorButtonGap`,!0),p=e.getOrient().index,m=p===0?`width`:`height`,h=p===0?`height`:`width`,g=p===0?`y`:`x`;a===`end`?d[p]+=c[m]+f:l[p]+=u[m]+f,d[1-p]+=c[h]/2-u[h]/2,s.x=d[0],s.y=d[1],o.x=l[0],o.y=l[1];var _={x:0,y:0};return _[m]=c[m]+f+u[m],_[h]=Math.max(c[h],u[h]),_[g]=Math.min(0,u[g]+d[1-p]),_}else return o.x=l[0],o.y=l[1],this.group.getBoundingRect()},t.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},t.type=`legend.plain`,t}(dW);function cYe(e,t,n,r,i,a,o){function s(e,t){e.lineWidth===`auto`&&(e.lineWidth=t.lineWidth>0?2:0),H5(e,function(n,r){e[r]===`inherit`&&(e[r]=t[r])})}var c=t.getModel(`itemStyle`),l=c.getItemStyle(),u=e.lastIndexOf(`empty`,0)===0?`fill`:`stroke`,d=c.getShallow(`decal`);l.decal=!d||d===`inherit`?r.decal:NG(d,o),l.fill===`inherit`&&(l.fill=r[i]),l.stroke===`inherit`&&(l.stroke=r[u]),l.opacity===`inherit`&&(l.opacity=(i===`fill`?r:n).opacity),s(l,r);var f=t.getModel(`lineStyle`),p=f.getLineStyle();if(s(p,n),l.fill===`auto`&&(l.fill=r.fill),l.stroke===`auto`&&(l.stroke=r.fill),p.stroke===`auto`&&(p.stroke=r.fill),!a){var m=t.get(`inactiveBorderWidth`),h=l[u];l.lineWidth=m===`auto`?r.lineWidth>0&&h?2:0:l.lineWidth,l.fill=t.get(`inactiveColor`),l.stroke=t.get(`inactiveBorderColor`),p.stroke=f.get(`inactiveColor`),p.lineWidth=f.get(`inactiveWidth`)}return{itemStyle:l,lineStyle:p}}function lYe(e){var t=e.icon||`roundRect`,n=rG(t,0,0,e.itemWidth,e.itemHeight,e.itemStyle.fill,e.symbolKeepAspect);return n.setStyle(e.itemStyle),n.rotation=(e.iconRotate||0)*Math.PI/180,n.setOrigin([e.itemWidth/2,e.itemHeight/2]),t.indexOf(`empty`)>-1&&(n.style.stroke=n.style.fill,n.style.fill=$.color.neutral00,n.style.lineWidth=2),n}function uYe(e,t,n,r){G5(e,t,n,r),n.dispatchAction({type:`legendToggleSelect`,name:e??t}),W5(e,t,n,r)}function W5(e,t,n,r){n.usingTHL()||n.dispatchAction({type:`highlight`,seriesName:e,name:t,excludeSeriesId:r})}function G5(e,t,n,r){n.usingTHL()||n.dispatchAction({type:`downplay`,seriesName:e,name:t,excludeSeriesId:r})}function K5(e,t,n){var r=e===`allSelect`||e===`inverseSelect`,i={},a=[];n.eachComponent({mainType:`legend`,query:t},function(n){r?n[e]():n[e](t.name),dYe(n,i),a.push(n.componentIndex)});var o={};return n.eachComponent(`legend`,function(e){Q(i,function(t,n){e[t?`select`:`unSelect`](n)}),dYe(e,o)}),r?{selected:o,legendIndex:a}:{name:t.name,selected:o}}function dYe(e,t){var n=t||{};return Q(e.getData(),function(t){var r=t.get(`name`);if(!(r===` +`||r===``)){var i=e.isSelected(r);UA(n,r)?n[r]=n[r]&&i:n[r]=i}}),n}function fYe(e){e.registerAction(`legendToggleSelect`,`legendselectchanged`,pA(K5,`toggleSelected`)),e.registerAction(`legendAllSelect`,`legendselectall`,pA(K5,`allSelect`)),e.registerAction(`legendInverseSelect`,`legendinverseselect`,pA(K5,`inverseSelect`)),e.registerAction(`legendSelect`,`legendselected`,pA(K5,`select`)),e.registerAction(`legendUnSelect`,`legendunselected`,pA(K5,`unSelect`))}var pYe=vI(mYe);function mYe(e){var t=e.findComponents({mainType:`legend`});t&&t.length&&e.filterSeries(function(e){for(var n=0;nn[i],m=[-d.x,-d.y];t||(m[r]=c[s]);var h=[0,0],g=[-f.x,-f.y],_=OA(e.get(`pageButtonGap`,!0),e.get(`itemGap`,!0));p&&(e.get(`pageButtonPosition`,!0)===`end`?g[r]+=n[i]-f[i]:h[r]+=f[i]+_),g[1-r]+=d[a]/2-f[a]/2,c.setPosition(m),l.setPosition(h),u.setPosition(g);var v={x:0,y:0};if(v[i]=p?n[i]:d[i],v[a]=Math.max(d[a],f[a]),v[o]=Math.min(0,f[o]+g[1-r]),l.__rectSize=n[i],p){var y={x:0,y:0};y[i]=Math.max(n[i]-f[i]-_,0),y[a]=v[a],l.setClipPath(new DL({shape:y})),l.__rectSize=y[i]}else u.eachChild(function(e){e.attr({invisible:!0,silent:!0})});var b=this._getPageInfo(e);return b.pageIndex!=null&&bz(c,{x:b.contentPosition[0],y:b.contentPosition[1]},p?e:null),this._updatePageInfoView(e,b),v},t.prototype._pageGo=function(e,t,n){var r=this._getPageInfo(t)[e];r!=null&&n.dispatchAction({type:`legendScroll`,scrollDataIndex:r,legendId:t.id})},t.prototype._updatePageInfoView=function(e,t){var n=this._controllerGroup;Q([`pagePrev`,`pageNext`],function(r){var i=t[r+`DataIndex`]!=null,a=n.childOfName(r);a&&(a.setStyle(`fill`,i?e.get(`pageIconColor`,!0):e.get(`pageIconInactiveColor`,!0)),a.cursor=i?`pointer`:`default`)});var r=n.childOfName(`pageText`),i=e.get(`pageFormatter`),a=t.pageIndex,o=a==null?0:a+1,s=t.pageCount;r&&i&&r.setStyle(`text`,gA(i)?i.replace(`{current}`,o==null?``:o+``).replace(`{total}`,s==null?``:s+``):i({current:o,total:s}))},t.prototype._getPageInfo=function(e){var t=e.get(`scrollDataIndex`,!0),n=this.getContentGroup(),r=this._containerGroup.__rectSize,i=e.getOrient().index,a=q5[i],o=J5[i],s=this._findTargetItemIndex(t),c=n.children(),l=c[s],u=c.length,d=+!!u,f={contentPosition:[n.x,n.y],pageCount:d,pageIndex:d-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!l)return f;var p=v(l);f.contentPosition[i]=-p.s;for(var m=s+1,h=p,g=p,_=null;m<=u;++m)_=v(c[m]),(!_&&g.e>h.s+r||_&&!y(_,h.s))&&(h=g.i>h.i?g:_,h&&(f.pageNextDataIndex??=h.i,++f.pageCount)),g=_;for(var m=s-1,h=p,g=p,_=null;m>=-1;--m)_=v(c[m]),(!_||!y(g,_.s))&&h.i=t&&e.s<=t+r}},t.prototype._findTargetItemIndex=function(e){if(!this._showController)return 0;var t,n=this.getContentGroup(),r;return n.eachChild(function(n,i){var a=n.__legendDataIndex;r==null&&a!=null&&(r=i),a===e&&(t=i)}),t??r},t.type=`legend.scroll`,t}(sYe);function bYe(e){e.registerAction(`legendScroll`,`legendscroll`,function(e,t){var n=e.scrollDataIndex;n!=null&&t.eachComponent({mainType:`legend`,subType:`scroll`,query:e},function(e){e.setScrollDataIndex(n)})})}function xYe(e){$K(hYe),e.registerComponentModel(gYe),e.registerComponentView(yYe),bYe(e)}function SYe(e){$K(hYe),$K(xYe)}var CYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`dataZoom.inside`,t.defaultOption=zB($8.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),t}($8),Y5=eI();function wYe(e,t,n){Y5(e).coordSysRecordMap.each(function(e){var r=e.dataZoomInfoMap.get(t.uid);r&&(r.getRange=n)})}function TYe(e,t){for(var n=Y5(e).coordSysRecordMap,r=n.keys(),i=0;ia[i+r]&&(r=n),o&&=t.get(`preventDefaultMouseMove`,!0),s=OA(t.get(`cursorGrab`,!0),s),c=OA(t.get(`cursorGrabbing`,!0),c)}),{controlType:r,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!o,api:n,zInfo:{component:t.model},triggerInfo:{roamTrigger:null,isInSelf:t.containsPoint},cursorGrab:s,cursorGrabbing:c}}}function jYe(e){e.registerUpdateLifecycle(`coordsys:aftercreate`,function(e,t){var n=Y5(t),r=n.coordSysRecordMap||=zA();r.each(function(e){e.dataZoomInfoMap=null}),e.eachComponent({mainType:`dataZoom`,subType:`inside`},function(e){Q(uKe(e).infoList,function(n){var i=n.model.uid,a=r.get(i)||r.set(i,DYe(t,n.model));(a.dataZoomInfoMap||=zA()).set(e.uid,{dzReferCoordSysInfo:n,model:e,getRange:null})})}),r.each(function(e){var n=e.controller,i,a=e.dataZoomInfoMap;if(a){var o=a.keys()[0];o!=null&&(i=a.get(o))}if(!i){EYe(r,e);return}var s=AYe(a,e,t);n.enable(s.controlType,s.opt),xW(e,`dispatchAction`,i.model.get(`throttle`,!0),`fixRate`)})})}var MYe=function(e){X(t,e);function t(){var t=e!==null&&e.apply(this,arguments)||this;return t.type=`dataZoom.inside`,t}return t.prototype.render=function(t,n,r){if(e.prototype.render.apply(this,arguments),t.noTarget()){this._clear();return}this.range=t.getPercentRange(),wYe(r,t,{pan:fA(X5.pan,this),zoom:fA(X5.zoom,this),scrollMove:fA(X5.scrollMove,this)})},t.prototype.dispose=function(){this._clear(),e.prototype.dispose.apply(this,arguments)},t.prototype._clear=function(){TYe(this.api,this.dataZoomModel),this.range=null},t.type=`dataZoom.inside`,t}(e5),X5={zoom:function(e,t,n,r){var i=this.range,a=i.slice(),o=e.axisModels[0];if(o){var s=Z5[t](null,[r.originX,r.originY],o,n,e),c=(s.signal>0?s.pixelStart+s.pixelLength-s.pixel:s.pixel-s.pixelStart)/s.pixelLength*(a[1]-a[0])+a[0],l=Math.max(1/r.scale,0);a[0]=(a[0]-c)*l+c,a[1]=(a[1]-c)*l+c;var u=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();if(T3(0,a,[0,100],0,u.minSpan,u.maxSpan),this.range=a,i[0]!==a[0]||i[1]!==a[1])return a}},pan:NYe(function(e,t,n,r,i,a){var o=Z5[r]([a.oldX,a.oldY],[a.newX,a.newY],t,i,n);return o.signal*(e[1]-e[0])*o.pixel/o.pixelLength}),scrollMove:NYe(function(e,t,n,r,i,a){return Z5[r]([0,0],[a.scrollDelta,a.scrollDelta],t,i,n).signal*(e[1]-e[0])*a.scrollDelta})};function NYe(e){return function(t,n,r,i){var a=this.range,o=a.slice(),s=t.axisModels[0];if(s&&(T3(e(o,s,t,n,r,i),o,[0,100],`all`),this.range=o,a[0]!==o[0]||a[1]!==o[1]))return o}}var Z5={grid:function(e,t,n,r,i){var a=n.axis,o={},s=i.model.coordinateSystem.getRect();return e||=[0,0],a.dim===`x`?(o.pixel=t[0]-e[0],o.pixelLength=s.width,o.pixelStart=s.x,o.signal=a.inverse?1:-1):(o.pixel=t[1]-e[1],o.pixelLength=s.height,o.pixelStart=s.y,o.signal=a.inverse?-1:1),o},polar:function(e,t,n,r,i){var a=n.axis,o={},s=i.model.coordinateSystem,c=s.getRadiusAxis().getExtent(),l=s.getAngleAxis().getExtent();return e=e?s.pointToCoord(e):[0,0],t=s.pointToCoord(t),n.mainType===`radiusAxis`?(o.pixel=t[0]-e[0],o.pixelLength=c[1]-c[0],o.pixelStart=c[0],o.signal=a.inverse?1:-1):(o.pixel=t[1]-e[1],o.pixelLength=l[1]-l[0],o.pixelStart=l[0],o.signal=a.inverse?-1:1),o},singleAxis:function(e,t,n,r,i){var a=n.axis,o=i.model.coordinateSystem.getRect(),s={};return e||=[0,0],a.orient===`horizontal`?(s.pixel=t[0]-e[0],s.pixelLength=o.width,s.pixelStart=o.x,s.signal=a.inverse?1:-1):(s.pixel=t[1]-e[1],s.pixelLength=o.height,s.pixelStart=o.y,s.signal=a.inverse?-1:1),s}};function PYe(e){t5(e),e.registerComponentModel(CYe),e.registerComponentView(MYe),jYe(e)}var FYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.type=`dataZoom.slider`,t.layoutMode=`box`,t.defaultOption=zB($8.defaultOption,{show:!0,right:`ph`,top:`ph`,width:`ph`,height:`ph`,left:null,bottom:null,borderColor:$.color.accent10,borderRadius:0,backgroundColor:$.color.transparent,dataBackground:{lineStyle:{color:$.color.accent30,width:.5},areaStyle:{color:$.color.accent20,opacity:.2}},selectedDataBackground:{lineStyle:{color:$.color.accent40,width:.5},areaStyle:{color:$.color.accent20,opacity:.3}},fillerColor:`rgba(135,175,274,0.2)`,handleIcon:`path://M-9.35,34.56V42m0-40V9.5m-2,0h4a2,2,0,0,1,2,2v21a2,2,0,0,1-2,2h-4a2,2,0,0,1-2-2v-21A2,2,0,0,1-11.35,9.5Z`,handleSize:`100%`,handleStyle:{color:$.color.neutral00,borderColor:$.color.accent20},moveHandleSize:7,moveHandleIcon:`path://M-320.9-50L-320.9-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-348-41-339-50-320.9-50z M-212.3-50L-212.3-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-239.4-41-230.4-50-212.3-50z M-103.7-50L-103.7-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-130.9-41-121.8-50-103.7-50z`,moveHandleStyle:{color:$.color.accent40,opacity:.5},showDetail:!0,showDataShadow:`auto`,realtime:!0,zoomLock:!1,textStyle:{color:$.color.tertiary},brushSelect:!0,brushStyle:{color:$.color.accent30,opacity:.3},emphasis:{handleLabel:{show:!0},handleStyle:{borderColor:$.color.accent40},moveHandleStyle:{opacity:.8}},defaultLocationEdgeGap:15}),t}($8),Q5=DL,IYe=1,$5=30,LYe=7,e7=`horizontal`,RYe=`vertical`,zYe=5,BYe=[`line`,`bar`,`candlestick`,`scatter`],VYe={easing:`cubicOut`,duration:100,delay:0},HYe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n._displayables={},n}return t.prototype.init=function(e,t){this.api=t,this._onBrush=fA(this._onBrush,this),this._onBrushEnd=fA(this._onBrushEnd,this)},t.prototype.render=function(t,n,r,i){if(e.prototype.render.apply(this,arguments),xW(this,`_dispatchZoomAction`,t.get(`throttle`),`fixRate`),this._orient=t.getOrient(),t.get(`show`)===!1){this.group.removeAll();return}if(t.noTarget()){this._clear(),this.group.removeAll();return}(!i||i.type!==`dataZoom`||i.from!==this.uid)&&this._buildView(),this._updateView()},t.prototype.dispose=function(){this._clear(),e.prototype.dispose.apply(this,arguments)},t.prototype._clear=function(){SW(this,`_dispatchZoomAction`);var e=this.api.getZr();e.off(`mousemove`,this._onBrush),e.off(`mouseup`,this._onBrushEnd)},t.prototype._buildView=function(){var e=this.group;e.removeAll(),this._brushing=!1,this._displayables.brushRect=null,this._resetLocation(),this._resetInterval();var t=this._displayables.sliderGroup=new QP;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),e.add(t),this._positionGroup()},t.prototype._resetLocation=function(){var e=this.dataZoomModel,t=this.api,n=e.get(`brushSelect`)?LYe:0,r=tH(e,t).refContainer,i=this._findCoordRect(),a=e.get(`defaultLocationEdgeGap`,!0)||0,o=this._orient===e7?{right:r.width-i.x-i.width,top:r.height-$5-a-n,width:i.width,height:$5}:{right:a,top:i.y,width:$5,height:i.height},s=aH(e.option);Q([`right`,`top`,`width`,`height`],function(e){s[e]===`ph`&&(s[e]=o[e])});var c=QV(s,r);this._location={x:c.x,y:c.y},this._size=[c.width,c.height],this._orient===RYe&&this._size.reverse()},t.prototype._positionGroup=function(){var e=this.group,t=this._location,n=this._orient,r=this.dataZoomModel.getFirstTargetAxisModel(),i=r&&r.get(`inverse`),a=this._displayables.sliderGroup,o=(this._dataShadowInfo||{}).otherAxisInverse;a.attr(n===e7&&!i?{scaleY:o?1:-1,scaleX:1}:n===e7&&i?{scaleY:o?1:-1,scaleX:-1}:n===RYe&&!i?{scaleY:o?-1:1,scaleX:1,rotation:Math.PI/2}:{scaleY:o?-1:1,scaleX:-1,rotation:Math.PI/2});var s=e.getBoundingRect([a]),c=isNaN(s.x)?0:s.x,l=isNaN(s.y)?0:s.y;e.x=t.x-c,e.y=t.y-l,e.markRedraw()},t.prototype._getViewExtent=function(){return[0,this._size[0]]},t.prototype._renderBackground=function(){var e=this.dataZoomModel,t=this._size,n=this._displayables.sliderGroup,r=e.get(`brushSelect`);n.add(new Q5({silent:!0,shape:{x:0,y:0,width:t[0],height:t[1]},style:{fill:e.get(`backgroundColor`)},z2:-40}));var i=new Q5({shape:{x:0,y:0,width:t[0],height:t[1]},style:{fill:`transparent`},z2:0,onclick:fA(this._onClickPanel,this)}),a=this.api.getZr();r?(i.on(`mousedown`,this._onBrushStart,this),i.cursor=`crosshair`,a.on(`mousemove`,this._onBrush),a.on(`mouseup`,this._onBrushEnd)):(a.off(`mousemove`,this._onBrush),a.off(`mouseup`,this._onBrushEnd)),n.add(i)},t.prototype._renderDataShadow=function(){var e=this._dataShadowInfo=this._prepareDataShadowInfo();if(this._displayables.dataShadowSegs=[],!e)return;var t=this._size,n=this._shadowSize||[],r=e.series,i=r.getRawData(),a=r.getShadowDim&&r.getShadowDim(),o=a&&i.getDimensionInfo(a)?r.getShadowDim():e.otherDim;if(o==null)return;var s=this._shadowPolygonPts,c=this._shadowPolylinePts;if(i!==this._shadowData||o!==this._shadowDim||t[0]!==n[0]||t[1]!==n[1]){var l=i.getDataExtent(e.thisDim),u=i.getDataExtent(o),d=(u[1]-u[0])*.3;u=[u[0]-d,u[1]+d];var f=[0,t[1]],p=[0,t[0]],m=[[t[0],0],[0,0]],h=[],g=p[1]/Math.max(1,i.count()-1),_=t[0]/(l[1]-l[0]),v=e.thisAxis.type===`time`,y=-g,b=Math.round(i.count()/t[0]),x;i.each([e.thisDim,o],function(e,t,n){if(b>0&&n%b){v||(y+=g);return}y=v?(+e-l[0])*_:y+g;var r=t==null||isNaN(t)||t===``,i=r?0:vF(t,u,f,!0);r&&!x&&n?(m.push([m[m.length-1][0],0]),h.push([h[h.length-1][0],0])):!r&&x&&(m.push([y,0]),h.push([y,0])),r||(m.push([y,i]),h.push([y,i])),x=r}),s=this._shadowPolygonPts=m,c=this._shadowPolylinePts=h}this._shadowData=i,this._shadowDim=o,this._shadowSize=[t[0],t[1]];var S=this.dataZoomModel;function C(e){var t=S.getModel(e?`selectedDataBackground`:`dataBackground`),n=new QP,r=new ZR({shape:{points:s},segmentIgnoreThreshold:1,style:t.getModel(`areaStyle`).getAreaStyle(),silent:!0,z2:-20}),i=new QR({shape:{points:c},segmentIgnoreThreshold:1,style:t.getModel(`lineStyle`).getLineStyle(),silent:!0,z2:-19});return n.add(r),n.add(i),n}for(var w=0;w<3;w++){var T=C(w===1);this._displayables.sliderGroup.add(T),this._displayables.dataShadowSegs.push(T)}},t.prototype._prepareDataShadowInfo=function(){var e=this.dataZoomModel,t=e.get(`showDataShadow`);if(t!==!1){var n,r=this.ecModel;return e.eachTargetAxis(function(i,a){Q(e.getAxisProxy(i,a).getTargetSeriesModels(),function(e){if(!n&&!(t!==!0&&rA(BYe,e.get(`type`))<0)){var o=r.getComponent(X8(i),a).axis,s=WYe(i),c,l=e.coordinateSystem;s!=null&&l.getOtherAxis&&(c=l.getOtherAxis(o).inverse),s=e.getData().mapDimension(s),n={thisAxis:o,series:e,thisDim:e.getData().mapDimension(i),otherDim:s,otherAxisInverse:c}}},this)},this),n}},t.prototype._renderHandle=function(){var e=this.group,t=this._displayables,n=t.handles=[null,null],r=t.handleLabels=[null,null],i=this._displayables.sliderGroup,a=this._size,o=this.dataZoomModel,s=this.api,c=o.get(`borderRadius`)||0,l=o.get(`brushSelect`),u=t.filler=new Q5({silent:l,style:{fill:o.get(`fillerColor`)},textConfig:{position:`inside`}});i.add(u),i.add(new Q5({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:a[0],height:a[1],r:c},style:{stroke:o.get(`dataBackgroundColor`)||o.get(`borderColor`),lineWidth:IYe,fill:$.color.transparent}})),Q([0,1],function(t){var a=o.get(`handleIcon`);!nG[a]&&a.indexOf(`path://`)<0&&a.indexOf(`image://`)<0&&(a=`path://`+a);var s=rG(a,-1,0,2,2,null,!0);s.attr({cursor:GYe(this._orient),draggable:!0,drift:fA(this._onDragMove,this,t),ondragend:fA(this._onDragEnd,this),onmouseover:fA(this._onOverDataInfoTriggerArea,this,!0),onmouseout:fA(this._onOverDataInfoTriggerArea,this,!1),z2:5});var c=s.getBoundingRect(),l=o.get(`handleSize`);this._handleHeight=yF(l,this._size[1]),this._handleWidth=c.width/c.height*this._handleHeight,s.setStyle(o.getModel(`handleStyle`).getItemStyle()),s.style.strokeNoScale=!0,s.rectHover=!0,s.ensureState(`emphasis`).style=o.getModel([`emphasis`,`handleStyle`]).getItemStyle(),uR(s);var u=o.get(`handleColor`);u!=null&&(s.style.fill=u),i.add(n[t]=s);var d=o.getModel(`textStyle`),f=(o.get(`handleLabel`)||{}).show||!1;e.add(r[t]=new kL({silent:!0,invisible:!f,style:SB(d,{x:0,y:0,text:``,verticalAlign:`middle`,align:`center`,fill:d.getTextColor(),font:d.getFont()}),z2:10}))},this);var d=u;if(l){var f=yF(o.get(`moveHandleSize`),a[1]),p=t.moveHandle=new DL({style:o.getModel(`moveHandleStyle`).getItemStyle(),silent:!0,shape:{r:[0,0,2,2],y:a[1]-.5,height:f}}),m=f*.8,h=t.moveHandleIcon=rG(o.get(`moveHandleIcon`),-m/2,-m/2,m,m,$.color.neutral00,!0);h.silent=!0,h.y=a[1]+f/2-.5,p.ensureState(`emphasis`).style=o.getModel([`emphasis`,`moveHandleStyle`]).getItemStyle();var g=Math.min(a[1]/2,Math.max(f,10));d=t.moveZone=new DL({invisible:!0,shape:{y:a[1]-g,height:f+g}}),d.on(`mouseover`,function(){s.enterEmphasis(p)}).on(`mouseout`,function(){s.leaveEmphasis(p)}),i.add(p),i.add(h),i.add(d)}d.attr({draggable:!0,cursor:`grab`,drift:fA(this._onActualMoveZoneDrift,this),ondragstart:fA(this._onActualMoveZoneDragStart,this),ondragend:fA(this._onActualMoveZoneDragEnd,this),onmouseover:fA(this._onOverDataInfoTriggerArea,this,!0),onmouseout:fA(this._onOverDataInfoTriggerArea,this,!1)})},t.prototype._resetInterval=function(){var e=this._range=this.dataZoomModel.getPercentRange(),t=this._getViewExtent();this._handleEnds=[vF(e[0],[0,100],t,!0),vF(e[1],[0,100],t,!0)]},t.prototype._updateInterval=function(e,t){var n=this.dataZoomModel,r=this._handleEnds,i=this._getViewExtent(),a=n.findRepresentativeAxisProxy().getMinMaxSpan(),o=[0,100];T3(t,r,i,n.get(`zoomLock`)?`all`:e,a.minSpan==null?null:vF(a.minSpan,o,i,!0),a.maxSpan==null?null:vF(a.maxSpan,o,i,!0));var s=this._range,c=this._range=CF([vF(r[0],i,o,!0),vF(r[1],i,o,!0)]);return!s||s[0]!==c[0]||s[1]!==c[1]},t.prototype._updateView=function(e){var t=this._displayables,n=this._handleEnds,r=CF(n.slice()),i=this._size;Q([0,1],function(e){var r=t.handles[e],a=this._handleHeight;r.attr({scaleX:a/2,scaleY:a/2,x:n[e]+(e?-1:1),y:i[1]/2-a/2})},this),t.filler.setShape({x:r[0],y:0,width:r[1]-r[0],height:i[1]});var a={x:r[0],width:r[1]-r[0]};t.moveHandle&&(t.moveHandle.setShape(a),t.moveZone.setShape(a),t.moveZone.getBoundingRect(),t.moveHandleIcon&&t.moveHandleIcon.attr(`x`,a.x+a.width/2));for(var o=t.dataShadowSegs,s=[0,r[0],r[1],i[0]],c=0;ct[0]||n[1]<0||n[1]>t[1])){var r=this._handleEnds,i=(r[0]+r[1])/2,a=this._updateInterval(`all`,n[0]-i);this._updateView(),a&&this._dispatchZoomAction(!1)}},t.prototype._onBrushStart=function(e){var t=e.offsetX,n=e.offsetY;this._brushStart=new Vj(t,n),this._brushing=!0,this._brushStartTime=+new Date},t.prototype._onBrushEnd=function(e){if(this._brushing){var t=this._displayables.brushRect;if(this._brushing=!1,t){t.attr(`ignore`,!0);var n=t.shape;if(!(+new Date-this._brushStartTime<200&&Math.abs(n.width)<5)){var r=this._getViewExtent(),i=[0,100],a=this._handleEnds=[n.x,n.x+n.width],o=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();T3(0,a,r,0,o.minSpan==null?null:vF(o.minSpan,i,r,!0),o.maxSpan==null?null:vF(o.maxSpan,i,r,!0)),this._range=CF([vF(a[0],r,i,!0),vF(a[1],r,i,!0)]),this._updateView(),this._dispatchZoomAction(!1)}}}},t.prototype._onBrush=function(e){this._brushing&&(Oj(e.event),this._updateBrushRect(e.offsetX,e.offsetY))},t.prototype._updateBrushRect=function(e,t){var n=this._displayables,r=this.dataZoomModel,i=n.brushRect;i||(i=n.brushRect=new Q5({silent:!0,style:r.getModel(`brushStyle`).getItemStyle()}),n.sliderGroup.add(i)),i.attr(`ignore`,!1);var a=this._brushStart,o=this._displayables.sliderGroup,s=o.transformCoordToLocal(e,t),c=o.transformCoordToLocal(a.x,a.y),l=this._size;s[0]=Math.max(Math.min(l[0],s[0]),0),i.setShape({x:c[0],y:0,width:s[0]-c[0],height:l[1]})},t.prototype._dispatchZoomAction=function(e){var t=this._range;this.api.dispatchAction({type:`dataZoom`,from:this.uid,dataZoomId:this.dataZoomModel.id,animation:e?VYe:null,start:t[0],end:t[1]})},t.prototype._findCoordRect=function(){var e,t=uKe(this.dataZoomModel).infoList;if(!e&&t.length){var n=t[0].model.coordinateSystem;e=n.getRect&&n.getRect()}if(!e){var r=this.api.getWidth(),i=this.api.getHeight();e={x:r*.2,y:i*.2,width:r*.6,height:i*.6}}return e},t.type=`dataZoom.slider`,t}(e5);function UYe(e,t,n,r){var i=e.get(`labelFormatter`),a=e.get(`labelPrecision`);(a==null||a===`auto`)&&(a=n.valuePrecision);var o=n.value[t],s=o==null||isNaN(o)?``:Uq(r)||Vq(r)?r.getLabel({value:Math.round(o)}):isFinite(a)?SF(o,a,!0):o+``;return hA(i)?i(o,s):gA(i)?i.replace(`{value}`,s):s}function WYe(e){return{x:`y`,y:`x`,radius:`angle`,angle:`radius`}[e]}function GYe(e){return e===`vertical`?`ns-resize`:`ew-resize`}function KYe(e){e.registerComponentModel(FYe),e.registerComponentView(HYe),t5(e)}function qYe(e){$K(PYe),$K(KYe)}var JYe={get:function(e,t,n){var r=Qk((YYe[e]||{})[t]);return n&&mA(r)?r[r.length-1]:r}},YYe={color:{active:[`#006edd`,`#e0ffff`],inactive:[$.color.transparent]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:[`circle`,`roundRect`,`diamond`],inactive:[`none`]},symbolSize:{active:[10,50],inactive:[0,0]}},XYe=t4.mapVisual,ZYe=t4.eachVisual,QYe=mA,t7=Q,$Ye=CF,eXe=vF,n7=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.stateList=[`inRange`,`outOfRange`],n.replacableOptionKeys=[`inRange`,`outOfRange`,`target`,`controller`,`color`],n.layoutMode={type:`box`,ignoreSize:!0},n.dataBound=[-1/0,1/0],n.targetVisuals={},n.controllerVisuals={},n}return t.prototype.init=function(e,t,n){this.mergeDefaultAndTheme(e,n)},t.prototype.optionUpdated=function(e,t){var n=this.option;!t&&qqe(n,e,this.replacableOptionKeys),this.textStyleModel=this.getModel(`textStyle`),this.resetItemSize(),this.completeVisualOption()},t.prototype.resetVisual=function(e){var t=this.stateList;e=fA(e,this),this.controllerVisuals=_5(this.option.controller,t,e),this.targetVisuals=_5(this.option.target,t,e)},t.prototype.getItemSymbol=function(){return null},t.prototype.getTargetSeriesIndices=function(){var e=this,t=this.option.seriesTargets;if(t){var n=[];return t7(t,function(t){if(t.seriesIndex!=null)n.push(t.seriesIndex);else if(t.seriesId!=null){var r;e.ecModel.eachSeries(function(e){e.id===t.seriesId&&(r=e)}),r&&n.push(r.componentIndex)}}),n}var r=this.option.seriesId,i=this.option.seriesIndex;i==null&&r==null&&(i=`all`);var a=iI(this.ecModel,`series`,{index:i,id:r},{useDefault:!1,enableAll:!0,enableNone:!1}).models;return sA(a,function(e){return e.componentIndex})},t.prototype.eachTargetSeries=function(e,t){Q(this.getTargetSeriesIndices(),function(n){var r=this.ecModel.getSeriesByIndex(n);r&&e.call(t,r)},this)},t.prototype.isTargetSeries=function(e){var t=!1;return this.eachTargetSeries(function(n){n===e&&(t=!0)}),t},t.prototype.formatValueText=function(e,t,n){var r=this.option,i=r.precision,a=this.dataBound,o=r.formatter,s;n||=[`<`,`>`],mA(e)&&(e=e.slice(),s=!0);var c=t?e:s?[l(e[0]),l(e[1])]:l(e);if(gA(o))return o.replace(`{value}`,s?c[0]:c).replace(`{value2}`,s?c[1]:c);if(hA(o))return s?o(e[0],e[1]):o(e);if(s)return e[0]===a[0]?n[0]+` `+c[1]:e[1]===a[1]?n[1]+` `+c[0]:c[0]+` - `+c[1];return c;function l(e){return e===a[0]?`min`:e===a[1]?`max`:(+e).toFixed(Math.min(i,20))}},t.prototype.resetExtent=function(){var e=this.option,t=$Ye([e.min,e.max]);this._dataExtent=t},t.prototype.getDimension=function(e){var t=this,n=this.option.seriesTargets;if(n){var r=uA(n,function(n){return n.seriesIndex!=null&&n.seriesIndex===e||n.seriesId!=null&&n.seriesId===t.ecModel.getSeriesByIndex(e).id});if(r)return r.dimension}return this.option.dimension},t.prototype.getDataDimensionIndex=function(e){var t=e.hostModel.seriesIndex,n=this.getDimension(t);if(n!=null)return e.getDimensionIndex(n);for(var r=e.dimensions,i=r.length-1;i>=0;i--){var a=r[i],o=e.getDimensionInfo(a);if(!o.isCalculationCoord)return o.storeDimIndex}},t.prototype.getExtent=function(){return this._dataExtent.slice()},t.prototype.completeVisualOption=function(){var e=this.ecModel,t=this.option,n={inRange:t.inRange,outOfRange:t.outOfRange},r=t.target||={},i=t.controller||={};$k(r,n),$k(i,n);var a=this.isCategory();o.call(this,r),o.call(this,i),s.call(this,r,`inRange`,`outOfRange`),c.call(this,i);function o(n){QYe(t.color)&&!n.inRange&&(n.inRange={color:t.color.slice().reverse()}),n.inRange=n.inRange||{color:e.get(`gradientColor`)}}function s(e,t,n){var r=e[t],i=e[n];r&&!i&&(i=e[n]={},t7(r,function(e,t){if(t4.isValidType(t)){var n=JYe.get(t,`inactive`,a);n!=null&&(i[t]=n,t===`color`&&!i.hasOwnProperty(`opacity`)&&!i.hasOwnProperty(`colorAlpha`)&&(i.opacity=[0,0]))}}))}function c(e){var t=(e.inRange||{}).symbol||(e.outOfRange||{}).symbol,n=(e.inRange||{}).symbolSize||(e.outOfRange||{}).symbolSize,r=this.get(`inactiveColor`),i=this.getItemSymbol()||`roundRect`;t7(this.stateList,function(o){var s=this.itemSize,c=e[o];c||=e[o]={color:a?r:[r]},c.symbol??=t&&Qk(t)||(a?i:[i]),c.symbolSize??=n&&Qk(n)||(a?s[0]:[s[0],s[0]]),c.symbol=XYe(c.symbol,function(e){return e===`none`?i:e});var l=c.symbolSize;if(l!=null){var u=-1/0;ZYe(l,function(e){e>u&&(u=e)}),c.symbolSize=XYe(l,function(e){return eXe(e,[0,u],[0,s[0]],!0)})}},this)}},t.prototype.resetItemSize=function(){this.itemSize=[parseFloat(this.get(`itemWidth`)),parseFloat(this.get(`itemHeight`))]},t.prototype.isCategory=function(){return!!this.option.categories},t.prototype.setSelected=function(e){},t.prototype.getSelected=function(){return null},t.prototype.getValueState=function(e){return null},t.prototype.getVisualMeta=function(e){return null},t.type=`visualMap`,t.dependencies=[`series`],t.defaultOption={show:!0,z:4,min:0,max:200,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:`vertical`,backgroundColor:$.color.transparent,borderColor:$.color.borderTint,contentColor:$.color.theme[0],inactiveColor:$.color.disabled,borderWidth:0,padding:$.size.m,textGap:10,precision:0,textStyle:{color:$.color.secondary}},t}(sH),tXe=[20,140],nXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.optionUpdated=function(t,n){e.prototype.optionUpdated.apply(this,arguments),this.resetExtent(),this.resetVisual(function(e){e.mappingMethod=`linear`,e.dataExtent=this.getExtent()}),this._resetRange()},t.prototype.resetItemSize=function(){e.prototype.resetItemSize.apply(this,arguments);var t=this.itemSize;(t[0]==null||isNaN(t[0]))&&(t[0]=tXe[0]),(t[1]==null||isNaN(t[1]))&&(t[1]=tXe[1])},t.prototype._resetRange=function(){var e=this.getExtent(),t=this.option.range;!t||t.auto?(e.auto=1,this.option.range=e):mA(t)&&(t[0]>t[1]&&t.reverse(),t[0]=Math.max(t[0],e[0]),t[1]=Math.min(t[1],e[1]))},t.prototype.completeVisualOption=function(){e.prototype.completeVisualOption.apply(this,arguments),Q(this.stateList,function(e){var t=this.option.controller[e].symbolSize;t&&t[0]!==t[1]&&(t[0]=t[1]/3)},this)},t.prototype.setSelected=function(e){this.option.range=e.slice(),this._resetRange()},t.prototype.getSelected=function(){var e=this.getExtent(),t=CF((this.get(`range`)||[]).slice());return t[0]>e[1]&&(t[0]=e[1]),t[1]>e[1]&&(t[1]=e[1]),t[0]=n[1]||e<=t[1])?`inRange`:`outOfRange`},t.prototype.findTargetDataIndices=function(e){var t=[];return this.eachTargetSeries(function(n){var r=[],i=n.getData();i.each(this.getDataDimensionIndex(i),function(t,n){e[0]<=t&&t<=e[1]&&r.push(n)},this),t.push({seriesId:n.id,dataIndex:r})},this),t},t.prototype.getVisualMeta=function(e){var t=rXe(this,`outOfRange`,this.getExtent()),n=rXe(this,`inRange`,this.option.range.slice()),r=[];function i(t,n){r.push({value:t,color:e(t,n)})}for(var a=0,o=0,s=n.length,c=t.length;oe[1])break;r.push({color:this.getControllerVisual(o,`color`,t),offset:a/n})}return r.push({color:this.getControllerVisual(e[1],`color`,t),offset:1}),r},t.prototype._createBarPoints=function(e,t){var n=this.visualMapModel.itemSize;return[[n[0]-t[0],e[0]],[n[0],e[0]],[n[0],e[1]],[n[0]-t[1],e[1]]]},t.prototype._createBarGroup=function(e){var t=this._orient,n=this.visualMapModel.get(`inverse`);return new QP(t===`horizontal`&&!n?{scaleX:e===`bottom`?1:-1,rotation:Math.PI/2}:t===`horizontal`&&n?{scaleX:e===`bottom`?-1:1,rotation:-Math.PI/2}:t===`vertical`&&!n?{scaleX:e===`left`?1:-1,scaleY:-1}:{scaleX:e===`left`?1:-1})},t.prototype._updateHandle=function(e,t){if(this._useHandle){var n=this._shapes,r=this.visualMapModel,i=n.handleThumbs,a=n.handleLabels,o=r.itemSize,s=r.getExtent(),c=this._applyTransform(`left`,n.mainGroup);sXe([0,1],function(l){var u=i[l];u.setStyle(`fill`,t.handlesColor[l]),u.y=e[l];var d=i7(e[l],[0,o[1]],s,!0),f=this.getControllerVisual(d,`symbolSize`);u.scaleX=u.scaleY=f/o[0],u.x=o[0]-f/2;var p=Uz(n.handleLabelPoints[l],Hz(u,this.group));if(this._orient===`horizontal`){var m=c===`left`||c===`top`?(o[0]-f)/2:(o[0]-f)/-2;p[1]+=m}a[l].setStyle({x:p[0],y:p[1],text:r.formatValueText(this._dataInterval[l]),verticalAlign:`middle`,align:this._orient===`vertical`?this._applyTransform(`left`,n.mainGroup):`center`})},this)}},t.prototype._showIndicator=function(e,t,n,r){var i=this.visualMapModel,a=i.getExtent(),o=i.itemSize,s=[0,o[1]],c=this._shapes,l=c.indicator;if(l){l.attr(`invisible`,!1);var u=this.getControllerVisual(e,`color`,{convertOpacityToAlpha:!0}),d=this.getControllerVisual(e,`symbolSize`),f=i7(e,a,s,!0),p=o[0]-d/2,m={x:l.x,y:l.y};l.y=f,l.x=p;var h=Uz(c.indicatorLabelPoint,Hz(l,this.group)),g=c.indicatorLabel;g.attr(`invisible`,!1);var _=this._applyTransform(`left`,c.mainGroup),v=this._orient===`horizontal`;g.setStyle({text:(n||``)+i.formatValueText(t),verticalAlign:v?_:`middle`,align:v?`center`:_});var y={x:p,y:f,style:{fill:u}},b={style:{x:h[0],y:h[1]}};if(i.ecModel.isAnimationEnabled()&&!this._firstShowIndicator){var x={duration:100,easing:`cubicInOut`,additive:!0};l.x=m.x,l.y=m.y,l.animateTo(y,x),g.animateTo(b,x)}else l.attr(y),g.attr(b);this._firstShowIndicator=!1;var S=this._shapes.handleLabels;if(S)for(var C=0;Ci[1]&&(l[1]=1/0),t&&(l[0]===-1/0?this._showIndicator(c,l[1],`< `,o):l[1]===1/0?this._showIndicator(c,l[0],`> `,o):this._showIndicator(c,c,`≈ `,o));var u=this._hoverLinkDataIndices,d=[];(t||mXe(n))&&(d=this._hoverLinkDataIndices=n.findTargetDataIndices(l));var f=iwe(u,d);this._dispatchHighDown(`downplay`,r7(f[0],n)),this._dispatchHighDown(`highlight`,r7(f[1],n))}},t.prototype._hoverLinkFromSeriesMouseOver=function(e){var t;if(qW(e.target,function(e){var n=jL(e);if(n.dataIndex!=null)return t=n,!0},!0),t){var n=this.ecModel.getSeriesByIndex(t.seriesIndex),r=this.visualMapModel;if(r.isTargetSeries(n)){var i=n.getData(t.dataType),a=i.getStore().get(r.getDataDimensionIndex(i),t.dataIndex);isNaN(a)||this._showIndicator(a,a)}}},t.prototype._hideIndicator=function(){var e=this._shapes;e.indicator&&e.indicator.attr(`invisible`,!0),e.indicatorLabel&&e.indicatorLabel.attr(`invisible`,!0);var t=this._shapes.handleLabels;if(t)for(var n=0;n=0&&(i.dimension=a,r.push(i))}}),e.getData().setVisual(`visualMeta`,r)}}];function yXe(e,t,n,r){for(var i=t.targetVisuals[r],a=t4.prepareVisualTypes(i),o={color:UW(e.getData(),`color`)},s=0,c=a.length;s0:e.splitNumber>0)||e.calculable)?`continuous`:`piecewise`}),e.registerAction(gXe,_Xe),Q(vXe,function(t){e.registerVisual(e.PRIORITY.VISUAL.COMPONENT,t)}),e.registerPreprocessor(xXe))}function wXe(e){e.registerComponentModel(nXe),e.registerComponentView(dXe),CXe(e)}var TXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n._pieceList=[],n}return t.prototype.optionUpdated=function(t,n){e.prototype.optionUpdated.apply(this,arguments),this.resetExtent();var r=this._mode=this._determineMode();this._pieceList=[],EXe[this._mode].call(this,this._pieceList),this._resetSelected(t,n);var i=this.option.categories;this.resetVisual(function(e,t){r===`categories`?(e.mappingMethod=`category`,e.categories=Qk(i)):(e.dataExtent=this.getExtent(),e.mappingMethod=`piecewise`,e.pieceList=sA(this._pieceList,function(e){return e=Qk(e),t!==`inRange`&&(e.visual=null),e}))})},t.prototype.completeVisualOption=function(){var t=this.option,n={},r=t4.listVisualTypes(),i=this.isCategory();Q(t.pieces,function(e){Q(r,function(t){e.hasOwnProperty(t)&&(n[t]=1)})}),Q(n,function(e,n){var r=!1;Q(this.stateList,function(e){r=r||a(t,e,n)||a(t.target,e,n)},this),!r&&Q(this.stateList,function(e){(t[e]||(t[e]={}))[n]=JYe.get(n,e===`inRange`?`active`:`inactive`,i)})},this);function a(e,t,n){return e&&e[t]&&e[t].hasOwnProperty(n)}e.prototype.completeVisualOption.apply(this,arguments)},t.prototype._resetSelected=function(e,t){var n=this.option,r=this._pieceList,i=(t?n:e).selected||{};if(n.selected=i,Q(r,function(e,t){var n=this.getSelectedMapKey(e);i.hasOwnProperty(n)||(i[n]=!0)},this),n.selectedMode===`single`){var a=!1;Q(r,function(e,t){var n=this.getSelectedMapKey(e);i[n]&&(a?i[n]=!1:a=!0)},this)}},t.prototype.getItemSymbol=function(){return this.get(`itemSymbol`)},t.prototype.getSelectedMapKey=function(e){return this._mode===`categories`?e.value+``:e.index+``},t.prototype.getPieceList=function(){return this._pieceList},t.prototype._determineMode=function(){var e=this.option;return e.pieces&&e.pieces.length>0?`pieces`:this.option.categories?`categories`:`splitNumber`},t.prototype.setSelected=function(e){this.option.selected=Qk(e)},t.prototype.getValueState=function(e){var t=t4.findPieceIndex(e,this._pieceList);return t==null?`outOfRange`:this.option.selected[this.getSelectedMapKey(this._pieceList[t])]?`inRange`:`outOfRange`},t.prototype.findTargetDataIndices=function(e){var t=[],n=this._pieceList;return this.eachTargetSeries(function(r){var i=[],a=r.getData();a.each(this.getDataDimensionIndex(a),function(t,r){t4.findPieceIndex(t,n)===e&&i.push(r)},this),t.push({seriesId:r.id,dataIndex:i})},this),t},t.prototype.getRepresentValue=function(e){var t;if(this.isCategory())t=e.value;else if(e.value!=null)t=e.value;else{var n=e.interval||[];t=n[0]===-1/0&&n[1]===1/0?0:(n[0]+n[1])/2}return t},t.prototype.getVisualMeta=function(e){if(this.isCategory())return;var t=[],n=[``,``],r=this;function i(i,a){var o=r.getRepresentValue({interval:i});a||=r.getValueState(o);var s=e(o,a);i[0]===-1/0?n[0]=s:i[1]===1/0?n[1]=s:t.push({value:i[0],color:s},{value:i[1],color:s})}var a=this._pieceList.slice();if(!a.length)a.push({interval:[-1/0,1/0]});else{var o=a[0].interval[0];o!==-1/0&&a.unshift({interval:[-1/0,o]}),o=a[a.length-1].interval[1],o!==1/0&&a.push({interval:[o,1/0]})}var s=-1/0;return Q(a,function(e){var t=e.interval;t&&(t[0]>s&&i([s,t[0]],`outOfRange`),i(t.slice()),s=t[1])},this),{stops:t,outerColors:n}},t.type=`visualMap.piecewise`,t.defaultOption=zB(n7.defaultOption,{selected:null,minOpen:!1,maxOpen:!1,align:`auto`,itemWidth:20,itemHeight:14,itemSymbol:`roundRect`,pieces:null,categories:null,splitNumber:5,selectedMode:`multiple`,itemGap:10,hoverLink:!0}),t}(n7),EXe={splitNumber:function(e){var t=this.option,n=Math.min(t.precision,20),r=this.getExtent(),i=t.splitNumber;i=Math.max(parseInt(i,10),1),t.splitNumber=i;for(var a=(r[1]-r[0])/i;+a.toFixed(n)!==a&&n<5;)n++;t.precision=n,a=+a.toFixed(n),t.minOpen&&e.push({interval:[-1/0,r[0]],close:[0,0]});for(var o=0,s=r[0];o`,`≥`][t[0]]];e.text=e.text||this.formatValueText(e.value==null?e.interval:e.value,!1,n)},this)}};function DXe(e,t){var n=e.inverse;(e.orient===`vertical`?!n:n)&&t.reverse()}var OXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.doRender=function(){var e=this.group;e.removeAll();var t=this.visualMapModel,n=t.get(`textGap`),r=t.textStyleModel,i=this._getItemAlign(),a=t.itemSize,o=this._getViewData(),s=o.endsText,c=DA(t.get(`showLabel`,!0),!s),l=!t.get(`selectedMode`);s&&this._renderEndsText(e,s[0],a,c,i),Q(o.viewPieceList,function(o){var s=o.piece,u=new QP;u.onclick=fA(this._onItemClick,this,s),this._enableHoverLink(u,o.indexInModelPieceList);var d=t.getRepresentValue(s);if(this._createItemSymbol(u,d,[0,0,a[0],a[1]],l),c){var f=this.visualMapModel.getValueState(d),p=r.get(`align`)||i;u.add(new kL({style:SB(r,{x:p===`right`?-n:a[0]+n,y:a[1]/2,text:s.text,verticalAlign:r.get(`verticalAlign`)||`middle`,align:p,opacity:OA(r.get(`opacity`),f===`outOfRange`?.5:1)}),silent:l}))}e.add(u)},this),s&&this._renderEndsText(e,s[1],a,c,i),YV(t.get(`orient`),e,t.get(`itemGap`)),this.renderBackground(e),this.positionGroup(e)},t.prototype._enableHoverLink=function(e,t){var n=this;e.on(`mouseover`,function(){return r(`highlight`)}).on(`mouseout`,function(){return r(`downplay`)});var r=function(e){var r=n.visualMapModel;r.option.hoverLink&&n.api.dispatchAction({type:e,batch:r7(r.findTargetDataIndices(t),r)})}},t.prototype._getItemAlign=function(){var e=this.visualMapModel,t=e.option;if(t.orient===`vertical`)return oXe(e,this.api,e.itemSize);var n=t.align;return(!n||n===`auto`)&&(n=`left`),n},t.prototype._renderEndsText=function(e,t,n,r,i){if(t){var a=new QP,o=this.visualMapModel.textStyleModel;a.add(new kL({style:SB(o,{x:r?i===`right`?n[0]:0:n[0]/2,y:n[1]/2,verticalAlign:`middle`,align:r?i:`center`,text:t})})),e.add(a)}},t.prototype._getViewData=function(){var e=this.visualMapModel,t=sA(e.getPieceList(),function(e,t){return{piece:e,indexInModelPieceList:t}}),n=e.get(`text`),r=e.get(`orient`),i=e.get(`inverse`);return(r===`horizontal`?i:!i)?t.reverse():n&&=n.slice().reverse(),{viewPieceList:t,endsText:n}},t.prototype._createItemSymbol=function(e,t,n,r){var i=rG(this.getControllerVisual(t,`symbol`),n[0],n[1],n[2],n[3],this.getControllerVisual(t,`color`));i.silent=r,e.add(i)},t.prototype._onItemClick=function(e){var t=this.visualMapModel,n=t.option,r=n.selectedMode;if(r){var i=Qk(n.selected),a=t.getSelectedMapKey(e);r===`single`||r===!0?(i[a]=!0,Q(i,function(e,t){i[t]=t===a})):i[a]=!i[a],this.api.dispatchAction({type:`selectDataRange`,from:this.uid,visualMapId:this.visualMapModel.id,selected:i})}},t.type=`visualMap.piecewise`,t}(iXe);function kXe(e){e.registerComponentModel(TXe),e.registerComponentView(OXe),CXe(e)}function AXe(e){$K(wXe),$K(kXe)}var jXe=function(){function e(e){this._thumbnailModel=e}return e.prototype.reset=function(e){this._renderVersion=e.getECUpdateCycleVersion()},e.prototype.renderContent=function(e){var t=e.api.getViewOfComponentModel(this._thumbnailModel);t&&(e.group.silent=!0,t.renderContent({group:e.group,targetTrans:e.targetTrans,z2Range:uB(e.group),roamType:e.roamType,viewportRect:e.viewportRect,renderVersion:this._renderVersion}))},e.prototype.updateWindow=function(e,t){var n=t.getViewOfComponentModel(this._thumbnailModel);n&&n.updateWindow({targetTrans:e,renderVersion:this._renderVersion})},e}(),MXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n.preventAutoZ=!0,n}return t.prototype.optionUpdated=function(e,t){this._updateBridge()},t.prototype._updateBridge=function(){var e=this._birdge=this._birdge||new jXe(this);this._target=null,this.ecModel.eachSeries(function(e){u3(e,null)}),this.shouldShow()&&u3(this.getTarget().baseMapProvider,e)},t.prototype.shouldShow=function(){return this.getShallow(`show`,!0)},t.prototype.getBridge=function(){return this._birdge},t.prototype.getTarget=function(){if(this._target)return this._target;var e=this.getReferringComponents(`series`,{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];return e?e.subType!==`graph`&&(e=null):e=this.ecModel.queryComponents({mainType:`series`,subType:`graph`})[0],this._target={baseMapProvider:e},this._target},t.type=`thumbnail`,t.layoutMode=`box`,t.dependencies=[`series`,`geo`],t.defaultOption={show:!0,right:1,bottom:1,height:`25%`,width:`25%`,itemStyle:{borderColor:$.color.border,borderWidth:2},windowStyle:{borderWidth:1,color:$.color.neutral30,borderColor:$.color.neutral40,opacity:.3},z:10},t}(sH),NXe=function(e){X(t,e);function t(){var n=e!==null&&e.apply(this,arguments)||this;return n.type=t.type,n}return t.prototype.render=function(e,t,n){if(this._api=n,this._model=e,this._coordSys||=new Z1,!this._isEnabled()){this._clear();return}this._renderVersion=n.getECUpdateCycleVersion();var r=this.group;r.removeAll();var i=e.getModel(`itemStyle`),a=i.getItemStyle();a.fill??=t.get(`backgroundColor`)||$.color.neutral00;var o=tH(e,n).refContainer,s=QV(XV(e,!0),o),c=a.lineWidth||0,l=this._contentRect=$z(s.clone(),c/2,!0,!0),u=new QP;r.add(u),u.setClipPath(new DL({shape:l.plain()}));var d=this._targetGroup=new QP;u.add(d);var f=s.plain();f.r=i.getShallow(`borderRadius`,!0),r.add(this._bgRect=new DL({style:a,shape:f,silent:!1,cursor:`grab`}));var p=e.getModel(`windowStyle`),m=p.getShallow(`borderRadius`,!0);u.add(this._windowRect=new DL({shape:{x:0,y:0,width:0,height:0,r:m},style:p.getItemStyle(),silent:!1,cursor:`grab`})),this._dealRenderContent(),this._dealUpdateWindow(),FXe(e,this)},t.prototype.renderContent=function(e){this._bridgeRendered=e,this._isEnabled()&&(this._dealRenderContent(),this._dealUpdateWindow(),FXe(this._model,this))},t.prototype._dealRenderContent=function(){var e=this._bridgeRendered;if(!(!e||e.renderVersion!==this._renderVersion)){var t=this._targetGroup,n=this._coordSys,r=this._contentRect;if(t.removeAll(),e){var i=e.group,a=i.getBoundingRect();t.add(i),this._bgRect.z2=e.z2Range.min-10,s0(n,a.x,a.y,a.width,a.height);var o=QV({left:`center`,top:`center`,aspect:a.width/a.height},r);c0(n,o.x,o.y,o.width,o.height),n0(i,n,0),i.dirty(),this._windowRect.z2=e.z2Range.max+10,this._resetRoamController(e.roamType)}}},t.prototype.updateWindow=function(e){var t=this._bridgeRendered;t&&t.renderVersion===e.renderVersion&&(t.targetTrans=e.targetTrans),this._isEnabled()&&this._dealUpdateWindow()},t.prototype._dealUpdateWindow=function(){var e=this._bridgeRendered;if(!(!e||e.renderVersion!==this._renderVersion)){var t=zj([],e.targetTrans),n=Fj([],$1(null,this._coordSys),t);this._transThisToTarget=zj([],n);var r=e.viewportRect;r=r?r.clone():new eM(0,0,this._api.getWidth(),this._api.getHeight()),r.applyTransform(n);var i=this._windowRect,a=i.shape.r;i.setShape(nA({r:a},r))}},t.prototype._resetRoamController=function(e){var t=this,n=this._api,r=this._roamController;if(r||=this._roamController=new v1(n.getZr()),!e||!this._isEnabled()){r.disable();return}r.enable(e,{api:n,zInfo:{component:this._model},triggerInfo:{roamTrigger:null,isInSelf:function(e,n,r){return t._contentRect.contain(n,r)}}}),r.off(`pan`).off(`zoom`).on(`pan`,fA(this._onPan,this)).on(`zoom`,fA(this._onZoom,this))},t.prototype._onPan=function(e){var t=this._transThisToTarget;if(!(!this._isEnabled()||!t)){var n=uj([],[e.oldX,e.oldY],t),r=uj([],[e.oldX-e.dx,e.oldY-e.dy],t);this._api.dispatchAction(PXe(this._model.getTarget().baseMapProvider,{dx:r[0]-n[0],dy:r[1]-n[1]}))}},t.prototype._onZoom=function(e){var t=this._transThisToTarget;if(!(!this._isEnabled()||!t)){var n=uj([],[e.originX,e.originY],t);this._api.dispatchAction(PXe(this._model.getTarget().baseMapProvider,{zoom:1/e.scale,originX:n[0],originY:n[1]}))}},t.prototype._isEnabled=function(){var e=this._model;return!(!e||!e.shouldShow()||!e.getTarget().baseMapProvider)},t.prototype._clear=function(){this.group.removeAll(),this._bridgeRendered=null,this._roamController&&this._roamController.disable()},t.prototype.remove=function(){this._clear()},t.prototype.dispose=function(){this._clear()},t.type=`thumbnail`,t}(dW);function PXe(e,t){var n={type:e.mainType===`series`?e.subType+`Roam`:e.mainType+`Roam`};return n[e.mainType+`Id`]=e.id,Z(n,t),n}function FXe(e,t){var n=lB(e);dB(t.group,n.z,n.zlevel)}function IXe(e){e.registerComponentModel(MXe),e.registerComponentView(NXe)}var LXe={label:{enabled:!0},decal:{show:!1}},RXe=eI(),zXe=eI(),BXe=vI(VXe);function VXe(e,t){var n=e.getModel(`aria`);if(!n.get(`enabled`))return;var r=zXe(e).scope||(zXe(e).scope={}),i=Qk(LXe);$k(i.label,e.getLocaleModel().get(`aria`),!1),$k(n.option,i,!1),a(),o();function a(){if(n.getModel(`decal`).get(`show`)){var t=zA();e.eachSeries(function(e){e.isColorBySeries()||(RXe(e).scope=t.get(e.type)||t.set(e.type,{}))}),e.eachSeries(function(t){if(hA(t.enableAriaDecal)){t.enableAriaDecal();return}var n=t.getData();if(t.isColorBySeries()){var i=TH(t.ecModel,t.name,r,e.getSeriesCount()),a=n.getVisual(`decal`);n.setVisual(`decal`,u(a,i))}else{var o=t.getRawData(),s={},c=RXe(t).scope;n.each(function(e){var t=n.getRawIndex(e);s[t]=e});var l=o.count();o.each(function(e){var r=s[e],i=o.getName(e)||e+``,a=TH(t.ecModel,i,c,l),d=n.getItemVisual(r,`decal`);n.setItemVisual(r,`decal`,u(d,a))})}function u(e,t){var n=e?Z(Z({},t),e):t;return n.dirty=!0,n}})}}function o(){var r=t.getZr().dom;if(r){var i=e.getLocaleModel().get(`aria`),a=n.getModel(`label`);if(a.option=nA(a.option,i),a.get(`enabled`)){if(r.setAttribute(`role`,`img`),a.get(`description`)){r.setAttribute(`aria-label`,a.get(`description`));return}var o=e.getSeriesCount(),u=a.get([`data`,`maxCount`])||10,d=a.get([`series`,`maxCount`])||10,f=Math.min(o,d),p;if(!(o<1)){var m=c();p=m?s(a.get([`general`,`withTitle`]),{title:m}):a.get([`general`,`withoutTitle`]);var h=[],g=o>1?a.get([`series`,`multiple`,`prefix`]):a.get([`series`,`single`,`prefix`]);p+=s(g,{seriesCount:o}),e.eachSeries(function(e,t){if(t1?a.get([`series`,`multiple`,r]):a.get([`series`,`single`,r]),n=s(n,{seriesId:e.seriesIndex,seriesName:e.get(`name`),seriesType:l(e.subType)});var i=e.getData();if(i.count()>u){var c=a.get([`data`,`partialData`]);n+=s(c,{displayCnt:u})}else n+=a.get([`data`,`allData`]);for(var d=a.get([`data`,`separator`,`middle`]),p=a.get([`data`,`separator`,`end`]),m=a.get([`data`,`excludeDimensionId`]),g=[],_=0;_":`gt`,">=":`gte`,"=":`eq`,"!=":`ne`,"<>":`ne`},GXe=function(){function e(e){(this._condVal=gA(e)?new RegExp(e):TA(e)?e:null)??GF(``)}return e.prototype.evaluate=function(e){var t=typeof e;return gA(t)?this._condVal.test(e):vA(t)?this._condVal.test(e+``):!1},e}(),KXe=function(){function e(){}return e.prototype.evaluate=function(){return this.value},e}(),qXe=function(){function e(){}return e.prototype.evaluate=function(){for(var e=this.children,t=0;t2&&r.push(i),i=[e,t]}function u(e,t,n,r){l7(e,n)&&l7(t,r)||i.push(e,t,n,r,n,r)}function d(e,t,n,r,a,o){var s=Math.abs(t-e),c=Math.tan(s/4)*4/3,l=tw:D2&&r.push(i),r}function d7(e,t,n,r,i,a,o,s,c,l){if(l7(e,n)&&l7(t,r)&&l7(i,o)&&l7(a,s)){c.push(o,s);return}var u=2/l,d=u*u,f=o-e,p=s-t,m=Math.sqrt(f*f+p*p);f/=m,p/=m;var h=n-e,g=r-t,_=i-o,v=a-s,y=h*h+g*g,b=_*_+v*v;if(y=0&&w=0){c.push(o,s);return}var T=[],E=[];HM(e,n,i,o,.5,T),HM(t,r,a,s,.5,E),d7(T[0],E[0],T[1],E[1],T[2],E[2],T[3],E[3],c,l),d7(T[4],E[4],T[5],E[5],T[6],E[6],T[7],E[7],c,l)}function lZe(e,t){var n=u7(e),r=[];t||=1;for(var i=0;i0)for(var l=0;lMath.abs(l),d=uZe([c,l],+!u,t),f=(u?s:l)/d.length,p=0;pi,o=uZe([r,i],+!a,t),s=a?`width`:`height`,c=a?`height`:`width`,l=a?`x`:`y`,u=a?`y`:`x`,d=e[s]/o.length,f=0;f1?null:new Vj(p*c+e,p*l+t)}function hZe(e,t,n){var r=new Vj;Vj.sub(r,n,t),r.normalize();var i=new Vj;return Vj.sub(i,e,t),i.dot(r)}function f7(e,t){var n=e[e.length-1];n&&n[0]===t[0]&&n[1]===t[1]||e.push(t)}function gZe(e,t,n){for(var r=e.length,i=[],a=0;ao?(l.x=u.x=s+a/2,l.y=c,u.y=c+o):(l.y=u.y=c+o/2,l.x=s,u.x=s+a),gZe(t,l,u)}function p7(e,t,n,r){if(n===1)r.push(t);else{var i=Math.floor(n/2),a=e(t);p7(e,a[0],i,r),p7(e,a[1],n-i,r)}return r}function vZe(e,t){for(var n=[],r=0;r0)for(var x=r/n,S=-r/2;S<=r/2;S+=x){for(var C=Math.sin(S),w=Math.cos(S),T=0,y=0;y0;l/=2){var u=0,d=0;(e&l)>0&&(u=1),(t&l)>0&&(d=1),s+=l*l*(3*u^d),d===0&&(u===1&&(e=l-1-e,t=l-1-t),c=e,e=t,t=c)}return s}function v7(e){var t=1/0,n=1/0,r=-1/0,i=-1/0;return sA(sA(e,function(e){var a=e.getBoundingRect(),o=e.getComputedTransform(),s=a.x+a.width/2+(o?o[4]:0),c=a.y+a.height/2+(o?o[5]:0);return t=Math.min(s,t),n=Math.min(c,n),r=Math.max(s,r),i=Math.max(c,i),[s,c]}),function(a,o){return{cp:a,z:MZe(a[0],a[1],t,n,r,i),path:e[o]}}).sort(function(e,t){return e.z-t.z}).map(function(e){return e.path})}function NZe(e){return xZe(e.path,e.count)}function y7(){return{fromIndividuals:[],toIndividuals:[],count:0}}function PZe(e,t,n){var r=[];function i(e){for(var t=0;t=0;i--)if(!n[i].many.length){var c=n[s].many;if(c.length<=1)if(s)s=0;else return n;var a=c.length,l=Math.ceil(a/2);n[i].many=c.slice(l,a),n[s].many=c.slice(0,l),s++}return n}var RZe={clone:function(e){for(var t=[],n=1-(1-e.path.style.opacity)**(1/e.count),r=0;r0))return;var s=r.getModel(`universalTransition`).get(`delay`),c=Z({setToFinal:!0},o),l,u;IZe(e)&&(l=e,u=t),IZe(t)&&(l=t,u=e);function d(e,t,r,i,o){var l=e.many,u=e.one;if(l.length===1&&!o){var f=t?l[0]:u,p=t?u:l[0];if(m7(f))d({many:[f],one:p},!0,r,i,!0);else{var m=s?nA({delay:s(r,i)},c):c;_7(f,p,m),a(f,p,f,p,m)}}else for(var h=nA({dividePath:RZe[n],individualDelay:s&&function(e,t,n,a){return s(e+r,i)}},c),g=t?PZe(l,u,h):FZe(u,l,h),_=g.fromIndividuals,v=g.toIndividuals,y=_.length,b=0;bt.length,p=l?LZe(u,l):LZe(f?t:e,[f?e:t]),m=0,h=0;hzZe))for(var i=n.getIndices(),a=0;a0&&r.group.traverse(function(e){e instanceof xL&&!e.animators.length&&e.animateFrom({style:{opacity:0}},i)})})}function ZZe(e){return e.getModel(`universalTransition`).get(`seriesKey`)||e.id}function QZe(e){return mA(e)?e.sort().join(`,`):e}function T7(e){if(e.hostModel)return e.hostModel.getModel(`universalTransition`).get(`divideShape`)}function $Ze(e,t){var n=zA(),r=zA(),i=zA();return Q(e.oldSeries,function(t,n){var a=e.oldDataGroupIds[n],o=e.oldData[n],s=ZZe(t),c=QZe(s);r.set(c,{dataGroupId:a,data:o}),mA(s)&&Q(s,function(e){i.set(e,{key:c,dataGroupId:a,data:o})})}),Q(t.updatedSeries,function(e){if(e.isUniversalTransitionEnabled()&&e.isAnimationEnabled()){var t=e.get(`dataGroupId`),a=e.getData(),o=ZZe(e),s=QZe(o),c=r.get(s);if(c)n.set(s,{oldSeries:[{dataGroupId:c.dataGroupId,divide:T7(c.data),data:c.data}],newSeries:[{dataGroupId:t,divide:T7(a),data:a}]});else if(mA(o)){var l=[];Q(o,function(e){var t=r.get(e);t.data&&l.push({dataGroupId:t.dataGroupId,divide:T7(t.data),data:t.data})}),l.length&&n.set(s,{oldSeries:l,newSeries:[{dataGroupId:t,data:a,divide:T7(a)}]})}else{var u=i.get(o);if(u){var d=n.get(u.key);d||(d={oldSeries:[{dataGroupId:u.dataGroupId,data:u.data,divide:T7(u.data)}],newSeries:[]},n.set(u.key,d)),d.newSeries.push({dataGroupId:t,data:a,divide:T7(a)})}}}}),n}function eQe(e,t){for(var n=0;n=0&&i.push({dataGroupId:t.oldDataGroupIds[n],data:t.oldData[n],divide:T7(t.oldData[n]),groupIdDim:e.dimension})}),Q(KF(e.to),function(e){var r=eQe(n.updatedSeries,e);if(r>=0){var i=n.updatedSeries[r].getData();a.push({dataGroupId:t.oldDataGroupIds[r],data:i,divide:T7(i),groupIdDim:e.dimension})}}),i.length>0&&a.length>0&&XZe(i,a,r)}function nQe(e){e.registerUpdateLifecycle(`series:beforeupdate`,function(e,t,n){Q(KF(n.seriesTransition),function(e){Q(KF(e.to),function(e){for(var t=n.updatedSeries,r=0;ro.vmin?n+=o.vmin-r+(e-o.vmin)/(o.vmax-o.vmin)*o.gapReal:n+=e-r,r=o.vmax,i=!1;break}n+=o.vmin-r+o.gapReal,r=o.vmax}return i&&(n+=e-r),n},transformOut:function(e,t){if(t&&t.depth===2)return e;for(var n=aQe,r=oQe,i=!0,a=0,o=0;oc?s.vmin+(e-c)/(l-c)*(s.vmax-s.vmin):r+e-n,r=s.vmax,i=!1;break}n=l,r=s.vmax}return i&&(a=r+e-n),a}},e}();function iQe(e,t){return new rQe(e,t)}var aQe=0,oQe=0;function sQe(e,t){var n=0,r={tpAbs:{span:0,val:0},tpPrct:{span:0,val:0}},i=function(){return{has:!1,span:NaN,inExtFrac:NaN,val:NaN}},a={S:{tpAbs:i(),tpPrct:i()},E:{tpAbs:i(),tpPrct:i()}};Q(e.breaks,function(e){var i=e.gapParsed;i.type===`tpPrct`&&(n+=i.val);var o=E7(e,t);if(o){var s=o.vmin!==e.vmin,c=o.vmax!==e.vmax,l=o.vmax-o.vmin;if(!(s&&c))if(s||c){var u=s?`S`:`E`;a[u][i.type].has=!0,a[u][i.type].span=l,a[u][i.type].inExtFrac=l/(e.vmax-e.vmin),a[u][i.type].val=i.val}else r[i.type].span+=l,r[i.type].val+=i.val}});var o=n*(0+(t[1]-t[0])+(r.tpAbs.val-r.tpAbs.span)+(a.S.tpAbs.has?(a.S.tpAbs.val-a.S.tpAbs.span)*a.S.tpAbs.inExtFrac:0)+(a.E.tpAbs.has?(a.E.tpAbs.val-a.E.tpAbs.span)*a.E.tpAbs.inExtFrac:0)-r.tpPrct.span-(a.S.tpPrct.has?a.S.tpPrct.span*a.S.tpPrct.inExtFrac:0)-(a.E.tpPrct.has?a.E.tpPrct.span*a.E.tpPrct.inExtFrac:0))/(1-r.tpPrct.val-(a.S.tpPrct.has?a.S.tpPrct.val*a.S.tpPrct.inExtFrac:0)-(a.E.tpPrct.has?a.E.tpPrct.val*a.E.tpPrct.inExtFrac:0));Q(e.breaks,function(e){var t=e.gapParsed;t.type===`tpPrct`&&(e.gapReal=n===0?0:lF(o,0)*t.val/n),t.type===`tpAbs`&&(e.gapReal=t.val),e.gapReal??=0})}function cQe(e,t,n,r,i,a){e!==`no`&&Q(n,function(n){var o=E7(n,a);if(o)for(var s=t.length-1;s>=0;s--){var c=t[s],l=r(c),u=i*3/4;l>o.vmin-u&&lt[0]&&n=0&&e<.99999}Q(e,function(e){if(!(!e||e.start==null||e.end==null)&&!e.isExpanded){var a={breakOption:Qk(e),vmin:t.parse(e.start),vmax:t.parse(e.end),gapParsed:{type:`tpAbs`,val:0},gapReal:null};if(e.gap!=null){var o=!1;if(gA(e.gap)){var s=NA(e.gap);if(s.match(/%$/)){var c=parseFloat(s)/100;i(c,`Percent gap`)||(c=0),a.gapParsed.type=`tpPrct`,a.gapParsed.val=c,o=!0}}if(!o){var l=t.parse(e.gap);(!isFinite(l)||l<0)&&(l=0),a.gapParsed.type=`tpAbs`,a.gapParsed.val=l}}if(a.vmin===a.vmax&&(a.gapParsed.type=`tpAbs`,a.gapParsed.val=0),n&&n.noNegative&&Q([`vmin`,`vmax`],function(e){a[e]<0&&(a[e]=0)}),a.vmin>a.vmax){var u=a.vmax;a.vmax=a.vmin,a.vmin=u}r.push(a)}}),r.sort(function(e,t){return e.vmin-t.vmin});var a=-1/0;return Q(r,function(e,t){a>e.vmin&&(r[t]=null),a=e.vmax}),{breaks:lA(r,function(e){return!!e})}}function O7(e,t){return k7(t)===k7(e)}function k7(e){return e.start+`_\0_`+e.end}function uQe(e,t,n){var r=[];Q(e,function(e,n){var i=t(e);i&&i.type===`vmin`&&r.push([n])}),Q(e,function(n,i){var a=t(n);if(a&&a.type===`vmax`){var o=uA(r,function(n){return O7(t(e[n[0]]).parsedBreak.breakOption,a.parsedBreak.breakOption)});o&&o.push(i)}});var i=[];return Q(r,function(t){t.length===2&&i.push(n?t:[e[t[0]],e[t[1]]])}),i}function dQe(e,t,n,r){if(t.break){var i=t.break.parsedBreak,a=uA(n,function(e){return O7(e.breakOption,t.break.parsedBreak.breakOption)}),o={lookup:r,depth:2},s={vmin:e.transformOut(i.vmin,o),vmax:e.transformOut(i.vmax,o),breakOption:i.breakOption,gapParsed:Qk(a.gapParsed),gapReal:i.gapReal};return{tickVal:s[t.break.type],vBreak:{type:t.break.type,parsedBreak:s}}}}function fQe(e,t,n,r,i){i.original=D7(e,t,n);var a=i.transformed=D7(e,t,n),o=i.lookup;a.breaks=sA(a.breaks,function(e,n){var i={depth:2},a=t.transformIn(e.vmin,i),s=t.transformIn(e.vmax,i),c={type:e.gapParsed.type,val:e.gapParsed.type===`tpAbs`?t.transformIn(e.vmin+e.gapParsed.val,i)-a:e.gapParsed.val};return o.from[r+n]=a,o.to[r+n]=e.vmin,o.from[r+n+1]=s,o.to[r+n+1]=e.vmax,{vmin:a,vmax:s,gapParsed:c,gapReal:e.gapReal,breakOption:e.breakOption}})}var pQe={vmin:`start`,vmax:`end`};function mQe(e,t){return t&&(e||={},e.break={type:pQe[t.type],start:t.parsedBreak.vmin,end:t.parsedBreak.vmax}),e}function hQe(){hDe({createBreakScaleMapper:iQe,pruneTicksByBreak:cQe,addBreaksToTicks:lQe,parseAxisBreakOption:D7,identifyAxisBreak:O7,serializeAxisBreakIdentifier:k7,retrieveAxisBreakPairs:uQe,getTicksBreakOutwardTransform:dQe,parseAxisBreakOptionInwardTransform:fQe,makeAxisLabelFormatterParamBreak:mQe})}var gQe=eI();function _Qe(e,t){var n=uA(e,function(e){return YB().identifyAxisBreak(e.parsedBreak.breakOption,t.breakOption)});return n||e.push(n={zigzagRandomList:[],parsedBreak:t,shouldRemove:!1}),n}function vQe(e){Q(e,function(e){return e.shouldRemove=!0})}function yQe(e){for(var t=e.length-1;t>=0;t--)e[t].shouldRemove&&e.splice(t,1)}function bQe(e,t,n,r,i){var a=n.axis;if(a.scale.isBlank()||!YB())return;var o=YB().retrieveAxisBreakPairs(a.scale.getTicks({breakTicks:`only_break`}),function(e){return e.break},!1);if(!o.length)return;var s=n.getModel(`breakArea`),c=s.get(`zigzagAmplitude`),l=s.get(`zigzagMinSpan`),u=s.get(`zigzagMaxSpan`);l=Math.max(2,l||0),u=Math.max(l,u||0);var d=s.get(`expandOnClick`),f=s.get(`zigzagZ`),p=s.getModel(`itemStyle`).getItemStyle(),m=p.stroke,h=p.lineWidth,g=p.lineDash,_=p.fill,v=new QP({ignoreModelZ:!0}),y=a.isHorizontal(),b=gQe(t).visualList||(gQe(t).visualList=[]);vQe(b);for(var x=function(e){var t=o[e][0].break.parsedBreak,r=[];r[0]=a.toGlobalCoord(a.dataToCoord(t.vmin,!0)),r[1]=a.toGlobalCoord(a.dataToCoord(t.vmax,!0)),r[1]=y;D&&(w=y);var O=[],k=[];O[d]=n,k[d]=i,!E&&!D&&(O[d]+=C?-c:c,k[d]-=C?c:-c),O[v]=w,k[v]=w,x.push(O),S.push(k);var A=void 0;if(Tn[1]&&n.reverse(),{coordPair:n,brkId:YB().serializeAxisBreakIdentifier(t.breakOption)}});s.sort(function(e,t){return e.coordPair[0]-t.coordPair[0]});for(var c=o[0],l=null,u=0;u=0?c[0].width:c[1].width)+u.x)/2-l.x,f=Math.min(d,d-u.x),p=Math.max(d,d-u.x);s=(d-(p<0?p:f>0?f:0))/u.x}var m=new Vj,h=new Vj;Vj.scale(m,r,-s),Vj.scale(h,r,1-s),KY(n[0],m),KY(n[1],h)}function CQe(e,t){var n={breaks:[]};return Q(t.breaks,function(r){if(r){var i=uA(e.get(`breaks`,!0),function(e){return YB().identifyAxisBreak(e,r)});if(i){var a=t.type,o={isExpanded:!!i.isExpanded};i.isExpanded=a===`expandAxisBreak`?!0:a===`collapseAxisBreak`?!1:a===`toggleAxisBreak`?!i.isExpanded:i.isExpanded,n.breaks.push({start:i.start,end:i.end,isExpanded:!!i.isExpanded,old:o})}}}),n}function wQe(){MNe({adjustBreakLabelPair:SQe,buildAxisBreakLine:xQe,rectCoordBuildBreakAxis:bQe,updateModelAxisBreak:CQe})}function TQe(e){RNe(e),hQe(),wQe()}function EQe(){QPe(DQe)}function DQe(e,t){Q(e,function(e){if(!e.model.get([`axisLabel`,`inside`])){var n=OQe(e);if(n){var r=e.isHorizontal()?`height`:`width`,i=e.model.get([`axisLabel`,`margin`]);t[r]-=n[r]+i,e.position===`top`?t.y+=n.height+i:e.position===`left`&&(t.x+=n.width+i)}}})}function OQe(e){var t=e.model,n=e.scale;if(!t.get([`axisLabel`,`show`])||n.isBlank())return;var r,i,a=n.getExtent();n instanceof Xq?i=n.count():(r=n.getTicks(),i=r.length);var o=e.getLabelModel(),s=pJ(e),c,l=1;i>40&&(l=Math.ceil(i/40));for(var u=0;uyY,ChartView:()=>mW,ComponentModel:()=>sH,ComponentView:()=>dW,List:()=>xq,Model:()=>LB,PRIORITY:()=>UG,SeriesModel:()=>sW,color:()=>BSe,connect:()=>cAe,dataTool:()=>gAe,dependencies:()=>Wke,disConnect:()=>lAe,disconnect:()=>PK,dispose:()=>uAe,env:()=>Rk,extendChartView:()=>oMe,extendComponentModel:()=>rMe,extendComponentView:()=>iMe,extendSeriesModel:()=>aMe,format:()=>zje,getCoordinateSystemDimensions:()=>fAe,getInstanceByDom:()=>FK,getInstanceById:()=>dAe,getMap:()=>hAe,graphic:()=>Rje,helper:()=>Tje,init:()=>sAe,innerDrawElementOnCanvas:()=>DG,matrix:()=>bSe,number:()=>Ije,parseGeoJSON:()=>oY,parseGeoJson:()=>oY,registerAction:()=>HK,registerCoordinateSystem:()=>UK,registerCustomSeries:()=>pAe,registerLayout:()=>WK,registerLoading:()=>JK,registerLocale:()=>KB,registerMap:()=>YK,registerPostInit:()=>zK,registerPostUpdate:()=>BK,registerPreprocessor:()=>LK,registerProcessor:()=>RK,registerTheme:()=>IK,registerTransform:()=>XK,registerUpdateLifecycle:()=>VK,registerVisual:()=>GK,setCanvasCreator:()=>mAe,setPlatformAPI:()=>Bk,throttle:()=>bW,time:()=>Lje,use:()=>$K,util:()=>Bje,vector:()=>$xe,version:()=>Uke,zrUtil:()=>Uxe,zrender:()=>SCe});$K([uNe]),$K([rNe]),$K([jNe,OPe,zPe,_Fe,AFe,MIe,oLe,ULe,gRe,wRe,ARe,zRe,Hze,gBe,NBe,tVe,sVe,xVe,OVe,QVe,oHe,CHe,xUe]),$K(rWe),$K(RWe),$K(s2),$K($We),$K(Vze),$K(iGe),$K(WGe),$K(iKe),$K(pqe),$K(Hqe),$K(d8),$K(mJe),$K(_Je),$K(MJe),$K(UJe),$K(XJe),$K(aYe),$K(SYe),$K(qYe),$K(PYe),$K(KYe),$K(AXe),$K(wXe),$K(kXe),$K(IXe),$K(UXe),$K(aZe),$K(cZe),$K(nQe),$K(xMe),$K(TQe),$K(EQe),$K(vFe);var AQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=1;e.default=function(){return`${t++}`}})),jQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,e.default=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:60,n=null;return function(){var r=this,i=[...arguments];clearTimeout(n),n=setTimeout(function(){e.apply(r,i)},t)}}})),A7=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.SizeSensorId=e.SensorTabIndex=e.SensorClassName=void 0,e.SizeSensorId=`size-sensor-id`,e.SensorClassName=`size-sensor-object`,e.SensorTabIndex=`-1`})),MQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSensor=void 0;var t=r(jQe()),n=A7();function r(e){return e&&e.__esModule?e:{default:e}}e.createSensor=function(e,r){var i=void 0,a=[],o=function(){getComputedStyle(e).position===`static`&&(e.style.position=`relative`);var t=document.createElement(`object`);return t.onload=function(){t.contentDocument.defaultView.addEventListener(`resize`,s),s()},t.style.display=`block`,t.style.position=`absolute`,t.style.top=`0`,t.style.left=`0`,t.style.height=`100%`,t.style.width=`100%`,t.style.overflow=`hidden`,t.style.pointerEvents=`none`,t.style.zIndex=`-1`,t.style.opacity=`0`,t.setAttribute(`class`,n.SensorClassName),t.setAttribute(`tabindex`,n.SensorTabIndex),t.type=`text/html`,e.appendChild(t),t.data=`about:blank`,t},s=(0,t.default)(function(){a.forEach(function(t){t(e)})}),c=function(e){i||=o(),a.indexOf(e)===-1&&a.push(e)},l=function(){i&&i.parentNode&&(i.contentDocument&&i.contentDocument.defaultView.removeEventListener(`resize`,s),i.parentNode.removeChild(i),e.removeAttribute(n.SizeSensorId),i=void 0,a=[],r&&r())};return{element:e,bind:c,destroy:l,unbind:function(e){var t=a.indexOf(e);t!==-1&&a.splice(t,1),a.length===0&&i&&l()}}}})),NQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSensor=void 0;var t=A7(),n=r(jQe());function r(e){return e&&e.__esModule?e:{default:e}}e.createSensor=function(e,r){var i=void 0,a=[],o=(0,n.default)(function(){a.forEach(function(t){t(e)})}),s=function(){var t=new ResizeObserver(o);return t.observe(e),o(),t},c=function(e){i||=s(),a.indexOf(e)===-1&&a.push(e)},l=function(){i&&i.disconnect(),a=[],i=void 0,e.removeAttribute(t.SizeSensorId),r&&r()};return{element:e,bind:c,destroy:l,unbind:function(e){var t=a.indexOf(e);t!==-1&&a.splice(t,1),a.length===0&&i&&l()}}}})),PQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.createSensor=void 0;var t=MQe(),n=NQe();e.createSensor=typeof ResizeObserver<`u`?n.createSensor:t.createSensor})),FQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.removeSensor=e.getSensor=e.Sensors=void 0;var t=i(AQe()),n=PQe(),r=A7();function i(e){return e&&e.__esModule?e:{default:e}}var a=e.Sensors={};function o(e){e&&a[e]&&delete a[e]}e.getSensor=function(e){var i=e.getAttribute(r.SizeSensorId);if(i&&a[i])return a[i];var s=(0,t.default)();e.setAttribute(r.SizeSensorId,s);var c=(0,n.createSensor)(e,function(){return o(s)});return a[s]=c,c},e.removeSensor=function(e){var t=e.element.getAttribute(r.SizeSensorId);e.destroy(),o(t)}})),IQe=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ver=e.clear=e.bind=void 0;var t=FQe();e.bind=function(e,n){var r=(0,t.getSensor)(e);return r.bind(n),function(){r.unbind(n)}},e.clear=function(e){var n=(0,t.getSensor)(e);(0,t.removeSensor)(n)},e.ver=`1.0.3`}))();function LQe(e,t){var n={};return t.forEach(function(t){n[t]=e[t]}),n}function j7(e){return typeof e==`function`}function RQe(e){return typeof e==`string`}var M7=l(o(((e,t)=>{t.exports=function e(t,n){if(t===n)return!0;if(t&&n&&typeof t==`object`&&typeof n==`object`){if(t.constructor!==n.constructor)return!1;var r,i,a;if(Array.isArray(t)){if(r=t.length,r!=n.length)return!1;for(i=r;i--!==0;)if(!e(t[i],n[i]))return!1;return!0}if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if(a=Object.keys(t),r=a.length,r!==Object.keys(n).length)return!1;for(i=r;i--!==0;)if(!Object.prototype.hasOwnProperty.call(n,a[i]))return!1;for(i=r;i--!==0;){var o=a[i];if(!e(t[o],n[o]))return!1}return!0}return t!==t&&n!==n}}))()),zQe=function(e){Nk(t,e);function t(t){var n=e.call(this,t)||this;return n.echarts=kQe,n}return t}(function(e){Nk(t,e);function t(t){var n=e.call(this,t)||this;return n.echarts=t.echarts,n.ele=null,n.isInitialResize=!0,n.eventHandlerRefs={},n}return t.prototype.componentDidMount=function(){this.renderNewEcharts()},t.prototype.componentDidUpdate=function(e){var t=this.props.shouldSetOption;if(!(j7(t)&&!t(e,this.props))){if(!(0,M7.default)(e.theme,this.props.theme)||!(0,M7.default)(e.opts,this.props.opts)){this.dispose(),this.renderNewEcharts();return}var n=this.getEchartsInstance();(0,M7.default)(e.onEvents,this.props.onEvents)||(this.unbindEvents(n),this.bindEvents(n,this.props.onEvents));var r=[`option`,`notMerge`,`replaceMerge`,`lazyUpdate`,`showLoading`,`loadingOption`];(0,M7.default)(LQe(this.props,r),LQe(e,r))||this.updateEChartsOption(),(!(0,M7.default)(e.style,this.props.style)||!(0,M7.default)(e.className,this.props.className))&&this.resize()}},t.prototype.componentWillUnmount=function(){this.dispose()},t.prototype.initEchartsInstance=function(){return Fk(this,void 0,void 0,function(){var e=this;return Ik(this,function(t){return[2,new Promise(function(t){e.echarts.init(e.ele,e.props.theme,e.props.opts),e.getEchartsInstance().on(`finished`,function(){var n=e.ele.clientWidth,r=e.ele.clientHeight;e.echarts.dispose(e.ele);var i=Pk({width:n,height:r},e.props.opts);t(e.echarts.init(e.ele,e.props.theme,i))})})]})})},t.prototype.getEchartsInstance=function(){return this.echarts.getInstanceByDom(this.ele)},t.prototype.dispose=function(){if(this.ele){try{(0,IQe.clear)(this.ele)}catch(e){console.warn(e)}this.echarts.dispose(this.ele)}},t.prototype.renderNewEcharts=function(){return Fk(this,void 0,void 0,function(){var e,t,n,r,i,a,o=this;return Ik(this,function(s){switch(s.label){case 0:return e=this.props,t=e.onEvents,n=e.onChartReady,r=e.autoResize,i=r===void 0?!0:r,[4,this.initEchartsInstance()];case 1:return s.sent(),a=this.updateEChartsOption(),this.bindEvents(a,t||{}),j7(n)&&n(a),this.ele&&i&&(0,IQe.bind)(this.ele,function(){o.resize()}),[2]}})})},t.prototype.bindEvents=function(e,t){var n=this,r=function(t,r){if(RQe(t)&&j7(r)){var i=function(t){r(t,e)};e.on(t,i),n.eventHandlerRefs[t]=i}};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&r(i,t[i])},t.prototype.unbindEvents=function(e){for(var t=0,n=Object.entries(this.eventHandlerRefs);te.exam_date),i=e.map(e=>e.ratio_percent),a=e.slice(1).map((e,t)=>{let n=N7.flat;return e.direction===`up`&&(n=N7.up),e.direction===`down`&&(n=N7.down),{type:`line`,data:r.map((e,n)=>n===t||n===t+1?i[n]:null),connectNulls:!1,showSymbol:!1,lineStyle:{width:3,color:n},tooltip:{show:!1},silent:!0}}),o=e.map((e,t)=>({point:e,i:t})).filter(({point:e})=>e.is_volatile).map(({i:e})=>({coord:[r[e],i[e]],symbol:`circle`,symbolSize:18,itemStyle:{color:N7.volatile,borderColor:`#fff`,borderWidth:2},label:{show:!1}}));return(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(zQe,{option:{title:{text:`${t} 成绩占比趋势`,left:`center`,textStyle:{fontSize:16}},tooltip:{trigger:`axis`,formatter:t=>{let n=e[t[0]?.dataIndex??0];if(!n)return``;let r=Ak[n.exam_type],i=`${n.exam_date} (${r})
占比: ${n.ratio_percent}%`;if(n.title&&(i+=`
${n.title}`),n.delta_percent!==null){let e=n.delta_percent>0?`+`:``;i+=`
较上次: ${e}${n.delta_percent}%`,n.is_volatile&&(i+=` [大幅波动]`)}return i}},grid:{left:50,right:30,top:60,bottom:50},xAxis:{type:`category`,data:r,axisLabel:{rotate:30}},yAxis:{type:`value`,name:`占比 (%)`,min:0,max:100},series:[{type:`line`,data:i,symbol:`circle`,symbolSize:(t,n)=>e[n.dataIndex]?.is_volatile?14:8,itemStyle:{color:t=>{let n=e[t.dataIndex];return n?.is_volatile?N7.volatile:n?.direction===`up`?N7.up:n?.direction===`down`?N7.down:`#1677ff`}},lineStyle:{opacity:0},markPoint:o.length?{data:o}:void 0,z:10},...a],legend:{bottom:0,data:[{name:`上升`,itemStyle:{color:N7.up}},{name:`下降`,itemStyle:{color:N7.down}},{name:`大幅波动`,itemStyle:{color:N7.volatile}}]}},style:{height:400,width:`100%`},notMerge:!0}),(0,Y.jsxs)(`p`,{style:{color:`#888`,fontSize:12,marginTop:8},children:[`波动阈值: `,(n*100).toFixed(0),`%,超过此变化幅度将高亮显示`]})]})}function P7(e){return e.error_message?!1:e.status===`pending`||e.status===`ocr_done`&&!e.question_text}function F7(e){return e.status===`pending`?`正在 OCR 识别(首次约 1–5 分钟,请稍候)…`:e.status===`ocr_done`?`正在标注错题并生成解题思路…`:`正在识别、标注并生成解题思路…`}function I7({questionId:e,variant:t=`original`,className:n,alt:r=`题目`,style:i}){let[a,o]=(0,h.useState)(null),[s,c]=(0,h.useState)(!1);return(0,h.useEffect)(()=>{let n=null,r=!1,i=async(e,t)=>{try{let t=await uk.get(e,{responseType:`blob`});if(r)return;n=URL.createObjectURL(t.data),o(n),c(!1)}catch{t&&!r?await i(t):r||c(!0)}},a=`/wrong-questions/${e}/annotated-image`,s=`/wrong-questions/${e}/image`;return t===`annotated`?i(a,s):i(s),()=>{r=!0,n&&URL.revokeObjectURL(n)}},[e,t]),s?(0,Y.jsx)(`div`,{className:n,style:{...i,background:`#fafafa`,color:`#999`,display:`flex`,alignItems:`center`,justifyContent:`center`,fontSize:12},children:`图片加载失败`}):a?(0,Y.jsx)(`img`,{src:a,alt:r,className:n,style:i}):(0,Y.jsx)(`div`,{className:n,style:{...i,background:`#fafafa`}})}function VQe(e,t){let n=t||{};return(e[e.length-1]===``?[...e,``]:e).join((n.padRight?` `:``)+`,`+(n.padLeft===!1?``:` `)).trim()}var HQe=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,UQe=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,WQe={};function GQe(e,t){return((t||WQe).jsx?UQe:HQe).test(e)}var KQe=/[ \t\n\f\r]/g;function qQe(e){return typeof e==`object`?e.type===`text`?JQe(e.value):!1:JQe(e)}function JQe(e){return e.replace(KQe,``)===``}var L7=class{constructor(e,t,n){this.normal=t,this.property=e,n&&(this.space=n)}};L7.prototype.normal={},L7.prototype.property={},L7.prototype.space=void 0;function YQe(e,t){let n={},r={};for(let t of e)Object.assign(n,t.property),Object.assign(r,t.normal);return new L7(n,r,t)}function R7(e){return e.toLowerCase()}var z7=class{constructor(e,t){this.attribute=t,this.property=e}};z7.prototype.attribute=``,z7.prototype.booleanish=!1,z7.prototype.boolean=!1,z7.prototype.commaOrSpaceSeparated=!1,z7.prototype.commaSeparated=!1,z7.prototype.defined=!1,z7.prototype.mustUseProperty=!1,z7.prototype.number=!1,z7.prototype.overloadedBoolean=!1,z7.prototype.property=``,z7.prototype.spaceSeparated=!1,z7.prototype.space=void 0;var B7=s({boolean:()=>V7,booleanish:()=>H7,commaOrSpaceSeparated:()=>q7,commaSeparated:()=>K7,number:()=>W7,overloadedBoolean:()=>U7,spaceSeparated:()=>G7}),XQe=0,V7=J7(),H7=J7(),U7=J7(),W7=J7(),G7=J7(),K7=J7(),q7=J7();function J7(){return 2**++XQe}var Y7=Object.keys(B7),X7=class extends z7{constructor(e,t,n,r){let i=-1;if(super(e,t),ZQe(this,`space`,r),typeof n==`number`)for(;++i4&&n.slice(0,4)===`data`&&l$e.test(t)){if(t.charAt(4)===`-`){let e=t.slice(5).replace(c$e,f$e);r=`data`+e.charAt(0).toUpperCase()+e.slice(1)}else{let e=t.slice(4);if(!c$e.test(e)){let n=e.replace(s$e,d$e);n.charAt(0)!==`-`&&(n=`-`+n),t=`data`+n}}i=X7}return new i(r,t)}function d$e(e){return`-`+e.toLowerCase()}function f$e(e){return e.charAt(1).toUpperCase()}var p$e=YQe([QQe,t$e,r$e,i$e,a$e],`html`),Q7=YQe([QQe,n$e,r$e,i$e,a$e],`svg`);function m$e(e){return e.join(` `).trim()}var h$e=o(((e,t)=>{var n=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,i=/^\s*/,a=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,o=/^:\s*/,s=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,c=/^[;\s]*/,l=/^\s+|\s+$/g,u=`/`,d=`*`,f=``;function p(e,t){if(typeof e!=`string`)throw TypeError(`First argument must be a string`);if(!e)return[];t||={};var l=1,p=1;function h(e){var t=e.match(r);t&&(l+=t.length);var n=e.lastIndexOf(` +`);p=~n?e.length-n:p+e.length}function g(){var e={line:l,column:p};return function(t){return t.position=new _(e),b(),t}}function _(e){this.start=e,this.end={line:l,column:p},this.source=t.source}_.prototype.content=e;function v(n){var r=Error(t.source+`:`+l+`:`+p+`: `+n);if(r.reason=n,r.filename=t.source,r.line=l,r.column=p,r.source=e,!t.silent)throw r}function y(t){var n=t.exec(e);if(n){var r=n[0];return h(r),e=e.slice(r.length),n}}function b(){y(i)}function x(e){var t;for(e||=[];t=S();)t!==!1&&e.push(t);return e}function S(){var t=g();if(!(u!=e.charAt(0)||d!=e.charAt(1))){for(var n=2;f!=e.charAt(n)&&(d!=e.charAt(n)||u!=e.charAt(n+1));)++n;if(n+=2,f===e.charAt(n-1))return v(`End of comment missing`);var r=e.slice(2,n-2);return p+=2,h(r),e=e.slice(n),p+=2,t({type:`comment`,comment:r})}}function C(){var e=g(),t=y(a);if(t){if(S(),!y(o))return v(`property missing ':'`);var r=y(s),i=e({type:`declaration`,property:m(t[0].replace(n,f)),value:r?m(r[0].replace(n,f)):f});return y(c),i}}function w(){var e=[];x(e);for(var t;t=C();)t!==!1&&(e.push(t),x(e));return e}return b(),w()}function m(e){return e?e.replace(l,f):f}t.exports=p})),g$e=o((e=>{var t=e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.default=r;var n=t(h$e());function r(e,t){let r=null;if(!e||typeof e!=`string`)return r;let i=(0,n.default)(e),a=typeof t==`function`;return i.forEach(e=>{if(e.type!==`declaration`)return;let{property:n,value:i}=e;a?t(n,i,e):i&&(r||={},r[n]=i)}),r}})),_$e=o((e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.camelCase=void 0;var t=/^--[a-zA-Z0-9_-]+$/,n=/-([a-z])/g,r=/^[^-]+$/,i=/^-(webkit|moz|ms|o|khtml)-/,a=/^-(ms)-/,o=function(e){return!e||r.test(e)||t.test(e)},s=function(e,t){return t.toUpperCase()},c=function(e,t){return`${t}-`};e.camelCase=function(e,t){return t===void 0&&(t={}),o(e)?e:(e=e.toLowerCase(),e=t.reactCompat?e.replace(a,c):e.replace(i,c),e.replace(n,s))}})),v$e=o(((e,t)=>{var n=(e&&e.__importDefault||function(e){return e&&e.__esModule?e:{default:e}})(g$e()),r=_$e();function i(e,t){var i={};return!e||typeof e!=`string`||(0,n.default)(e,function(e,n){e&&n&&(i[(0,r.camelCase)(e,t)]=n)}),i}i.default=i,t.exports=i})),y$e=b$e(`end`),$7=b$e(`start`);function b$e(e){return t;function t(t){let n=t&&t.position&&t.position[e]||{};if(typeof n.line==`number`&&n.line>0&&typeof n.column==`number`&&n.column>0)return{line:n.line,column:n.column,offset:typeof n.offset==`number`&&n.offset>-1?n.offset:void 0}}}function x$e(e){let t=$7(e),n=y$e(e);if(t&&n)return{start:t,end:n}}function e9(e){return!e||typeof e!=`object`?``:`position`in e||`type`in e?S$e(e.position):`start`in e||`end`in e?S$e(e):`line`in e||`column`in e?t9(e):``}function t9(e){return C$e(e&&e.line)+`:`+C$e(e&&e.column)}function S$e(e){return t9(e&&e.start)+`-`+t9(e&&e.end)}function C$e(e){return e&&typeof e==`number`?e:1}var n9=class extends Error{constructor(e,t,n){super(),typeof t==`string`&&(n=t,t=void 0);let r=``,i={},a=!1;if(t&&(i=`line`in t&&`column`in t||`start`in t&&`end`in t?{place:t}:`type`in t?{ancestors:[t],place:t.position}:{...t}),typeof e==`string`?r=e:!i.cause&&e&&(a=!0,r=e.message,i.cause=e),!i.ruleId&&!i.source&&typeof n==`string`){let e=n.indexOf(`:`);e===-1?i.ruleId=n:(i.source=n.slice(0,e),i.ruleId=n.slice(e+1))}if(!i.place&&i.ancestors&&i.ancestors){let e=i.ancestors[i.ancestors.length-1];e&&(i.place=e.position)}let o=i.place&&`start`in i.place?i.place.start:i.place;this.ancestors=i.ancestors||void 0,this.cause=i.cause||void 0,this.column=o?o.column:void 0,this.fatal=void 0,this.file=``,this.message=r,this.line=o?o.line:void 0,this.name=e9(i.place)||`1:1`,this.place=i.place||void 0,this.reason=this.message,this.ruleId=i.ruleId||void 0,this.source=i.source||void 0,this.stack=a&&i.cause&&typeof i.cause.stack==`string`?i.cause.stack:``,this.actual=void 0,this.expected=void 0,this.note=void 0,this.url=void 0}};n9.prototype.file=``,n9.prototype.name=``,n9.prototype.reason=``,n9.prototype.message=``,n9.prototype.stack=``,n9.prototype.column=void 0,n9.prototype.line=void 0,n9.prototype.ancestors=void 0,n9.prototype.cause=void 0,n9.prototype.fatal=void 0,n9.prototype.place=void 0,n9.prototype.ruleId=void 0,n9.prototype.source=void 0;var w$e=l(v$e(),1),r9={}.hasOwnProperty,T$e=new Map,E$e=/[A-Z]/g,D$e=new Set([`table`,`tbody`,`thead`,`tfoot`,`tr`]),O$e=new Set([`td`,`th`]);function k$e(e,t){if(!t||t.Fragment===void 0)throw TypeError("Expected `Fragment` in options");let n=t.filePath||void 0,r;if(t.development){if(typeof t.jsxDEV!=`function`)throw TypeError("Expected `jsxDEV` in options when `development: true`");r=z$e(n,t.jsxDEV)}else{if(typeof t.jsx!=`function`)throw TypeError("Expected `jsx` in production options");if(typeof t.jsxs!=`function`)throw TypeError("Expected `jsxs` in production options");r=R$e(n,t.jsx,t.jsxs)}let i={Fragment:t.Fragment,ancestors:[],components:t.components||{},create:r,elementAttributeNameCase:t.elementAttributeNameCase||`react`,evaluater:t.createEvaluater?t.createEvaluater():void 0,filePath:n,ignoreInvalidStyle:t.ignoreInvalidStyle||!1,passKeys:t.passKeys!==!1,passNode:t.passNode||!1,schema:t.space===`svg`?Q7:p$e,stylePropertyNameCase:t.stylePropertyNameCase||`dom`,tableCellAlignToStyle:t.tableCellAlignToStyle!==!1},a=A$e(i,e,void 0);return a&&typeof a!=`string`?a:i.create(e,i.Fragment,{children:a||void 0},void 0)}function A$e(e,t,n){if(t.type===`element`)return j$e(e,t,n);if(t.type===`mdxFlowExpression`||t.type===`mdxTextExpression`)return M$e(e,t);if(t.type===`mdxJsxFlowElement`||t.type===`mdxJsxTextElement`)return P$e(e,t,n);if(t.type===`mdxjsEsm`)return N$e(e,t);if(t.type===`root`)return F$e(e,t,n);if(t.type===`text`)return I$e(e,t)}function j$e(e,t,n){let r=e.schema,i=r;t.tagName.toLowerCase()===`svg`&&r.space===`html`&&(i=Q7,e.schema=i),e.ancestors.push(t);let a=W$e(e,t.tagName,!1),o=B$e(e,t),s=a9(e,t);return D$e.has(t.tagName)&&(s=s.filter(function(e){return typeof e==`string`?!qQe(e):!0})),L$e(e,o,a,t),i9(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function M$e(e,t){if(t.data&&t.data.estree&&e.evaluater){let n=t.data.estree.body[0];return n.type,e.evaluater.evaluateExpression(n.expression)}o9(e,t.position)}function N$e(e,t){if(t.data&&t.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(t.data.estree);o9(e,t.position)}function P$e(e,t,n){let r=e.schema,i=r;t.name===`svg`&&r.space===`html`&&(i=Q7,e.schema=i),e.ancestors.push(t);let a=t.name===null?e.Fragment:W$e(e,t.name,!0),o=V$e(e,t),s=a9(e,t);return L$e(e,o,a,t),i9(o,s),e.ancestors.pop(),e.schema=r,e.create(t,a,o,n)}function F$e(e,t,n){let r={};return i9(r,a9(e,t)),e.create(t,e.Fragment,r,n)}function I$e(e,t){return t.value}function L$e(e,t,n,r){typeof n!=`string`&&n!==e.Fragment&&e.passNode&&(t.node=r)}function i9(e,t){if(t.length>0){let n=t.length>1?t:t[0];n&&(e.children=n)}}function R$e(e,t,n){return r;function r(e,r,i,a){let o=Array.isArray(i.children)?n:t;return a?o(r,i,a):o(r,i)}}function z$e(e,t){return n;function n(n,r,i,a){let o=Array.isArray(i.children),s=$7(n);return t(r,i,a,o,{columnNumber:s?s.column-1:void 0,fileName:e,lineNumber:s?s.line:void 0},void 0)}}function B$e(e,t){let n={},r,i;for(i in t.properties)if(i!==`children`&&r9.call(t.properties,i)){let a=H$e(e,i,t.properties[i]);if(a){let[i,o]=a;e.tableCellAlignToStyle&&i===`align`&&typeof o==`string`&&O$e.has(t.tagName)?r=o:n[i]=o}}if(r){let t=n.style||={};t[e.stylePropertyNameCase===`css`?`text-align`:`textAlign`]=r}return n}function V$e(e,t){let n={};for(let r of t.attributes)if(r.type===`mdxJsxExpressionAttribute`)if(r.data&&r.data.estree&&e.evaluater){let t=r.data.estree.body[0];t.type;let i=t.expression;i.type;let a=i.properties[0];a.type,Object.assign(n,e.evaluater.evaluateExpression(a.argument))}else o9(e,t.position);else{let i=r.name,a;if(r.value&&typeof r.value==`object`)if(r.value.data&&r.value.data.estree&&e.evaluater){let t=r.value.data.estree.body[0];t.type,a=e.evaluater.evaluateExpression(t.expression)}else o9(e,t.position);else a=r.value===null?!0:r.value;n[i]=a}return n}function a9(e,t){let n=[],r=-1,i=e.passKeys?new Map:T$e;for(;++ri?0:i+t:t>i?i:t,n=n>0?n:0,r.length<1e4)o=Array.from(r),o.unshift(t,n),e.splice(...o);else for(n&&e.splice(t,n);a0?(c9(e,e.length,0,t),e):t}var $$e={}.hasOwnProperty;function e1e(e){let t={},n=-1;for(;++n-1&&e.test(String.fromCharCode(t))}}function v9(e,t,n,r){let i=r?r-1:1/0,a=0;return o;function o(r){return g9(r)?(e.enter(n),s(r)):t(r)}function s(r){return g9(r)&&a++o))return;let n=t.events.length,a=n,s,c;for(;a--;)if(t.events[a][0]===`exit`&&t.events[a][1].type===`chunkFlow`){if(s){c=t.events[a][1].end;break}s=!0}for(_(r),e=n;er;){let r=n[i];t.containerState=r[1],r[0].exit.call(t,e)}n.length=r}function v(){i.write([null]),a=void 0,i=void 0,t.containerState._closeFlow=void 0}}function p1e(e,t,n){return v9(e,e.attempt(this.parser.constructs.document,t,n),`linePrefix`,this.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)}function m1e(e){if(e===null||h9(e)||s1e(e))return 1;if(o1e(e))return 2}function y9(e,t,n){let r=[],i=-1;for(;++i1&&e[n][1].end.offset-e[n][1].start.offset>1?2:1;let d={...e[r][1].end},f={...e[n][1].start};_1e(d,-c),_1e(f,c),o={type:c>1?`strongSequence`:`emphasisSequence`,start:d,end:{...e[r][1].end}},s={type:c>1?`strongSequence`:`emphasisSequence`,start:{...e[n][1].start},end:f},a={type:c>1?`strongText`:`emphasisText`,start:{...e[r][1].end},end:{...e[n][1].start}},i={type:c>1?`strong`:`emphasis`,start:{...o.start},end:{...s.end}},e[r][1].end={...o.start},e[n][1].start={...s.end},l=[],e[r][1].end.offset-e[r][1].start.offset&&(l=l9(l,[[`enter`,e[r][1],t],[`exit`,e[r][1],t]])),l=l9(l,[[`enter`,i,t],[`enter`,o,t],[`exit`,o,t],[`enter`,a,t]]),l=l9(l,y9(t.parser.constructs.insideSpan.null,e.slice(r+1,n),t)),l=l9(l,[[`exit`,a,t],[`enter`,s,t],[`exit`,s,t],[`exit`,i,t]]),e[n][1].end.offset-e[n][1].start.offset?(u=2,l=l9(l,[[`enter`,e[n][1],t],[`exit`,e[n][1],t]])):u=0,c9(e,r-1,n-r+3,l),n=r+l.length-u-2;break}}for(n=-1;++n0&&g9(t)?v9(e,v,`linePrefix`,a+1)(t):v(t)}function v(t){return t===null||m9(t)?e.check(A1e,h,b)(t):(e.enter(`codeFlowValue`),y(t))}function y(t){return t===null||m9(t)?(e.exit(`codeFlowValue`),v(t)):(e.consume(t),y)}function b(n){return e.exit(`codeFenced`),t(n)}function x(e,t,n){let i=0;return a;function a(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),c}function c(t){return e.enter(`codeFencedFence`),g9(t)?v9(e,l,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):l(t)}function l(t){return t===s?(e.enter(`codeFencedFenceSequence`),u(t)):n(t)}function u(t){return t===s?(i++,e.consume(t),u):i>=o?(e.exit(`codeFencedFenceSequence`),g9(t)?v9(e,d,`whitespace`)(t):d(t)):n(t)}function d(r){return r===null||m9(r)?(e.exit(`codeFencedFence`),t(r)):n(r)}}}function N1e(e,t,n){let r=this;return i;function i(t){return t===null?n(t):(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}var C9={name:`codeIndented`,tokenize:F1e},P1e={partial:!0,tokenize:I1e};function F1e(e,t,n){let r=this;return i;function i(t){return e.enter(`codeIndented`),v9(e,a,`linePrefix`,5)(t)}function a(e){let t=r.events[r.events.length-1];return t&&t[1].type===`linePrefix`&&t[2].sliceSerialize(t[1],!0).length>=4?o(e):n(e)}function o(t){return t===null?c(t):m9(t)?e.attempt(P1e,o,c)(t):(e.enter(`codeFlowValue`),s(t))}function s(t){return t===null||m9(t)?(e.exit(`codeFlowValue`),o(t)):(e.consume(t),s)}function c(n){return e.exit(`codeIndented`),t(n)}}function I1e(e,t,n){let r=this;return i;function i(t){return r.parser.lazy[r.now().line]?n(t):m9(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),i):v9(e,a,`linePrefix`,5)(t)}function a(e){let a=r.events[r.events.length-1];return a&&a[1].type===`linePrefix`&&a[2].sliceSerialize(a[1],!0).length>=4?t(e):m9(e)?i(e):n(e)}}var L1e={name:`codeText`,previous:z1e,resolve:R1e,tokenize:B1e};function R1e(e){let t=e.length-4,n=3,r,i;if((e[n][1].type===`lineEnding`||e[n][1].type===`space`)&&(e[t][1].type===`lineEnding`||e[t][1].type===`space`)){for(r=n;++r=this.left.length+this.right.length)throw RangeError("Cannot access index `"+e+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return ethis.left.length?this.right.slice(this.right.length-n+this.left.length,this.right.length-e+this.left.length).reverse():this.left.slice(e).concat(this.right.slice(this.right.length-n+this.left.length).reverse())}splice(e,t,n){let r=t||0;this.setCursor(Math.trunc(e));let i=this.right.splice(this.right.length-r,1/0);return n&&w9(this.left,n),i.reverse()}pop(){return this.setCursor(1/0),this.left.pop()}push(e){this.setCursor(1/0),this.left.push(e)}pushMany(e){this.setCursor(1/0),w9(this.left,e)}unshift(e){this.setCursor(0),this.right.push(e)}unshiftMany(e){this.setCursor(0),w9(this.right,e.reverse())}setCursor(e){if(!(e===this.left.length||e>this.left.length&&this.right.length===0||e<0&&this.left.length===0))if(e=4?t(i):e.interrupt(r.parser.constructs.flow,n,t)(i)}}function Y1e(e,t,n,r,i,a,o,s,c){let l=c||1/0,u=0;return d;function d(t){return t===60?(e.enter(r),e.enter(i),e.enter(a),e.consume(t),e.exit(a),f):t===null||t===32||t===41||f9(t)?n(t):(e.enter(r),e.enter(o),e.enter(s),e.enter(`chunkString`,{contentType:`string`}),h(t))}function f(n){return n===62?(e.enter(a),e.consume(n),e.exit(a),e.exit(i),e.exit(r),t):(e.enter(s),e.enter(`chunkString`,{contentType:`string`}),p(n))}function p(t){return t===62?(e.exit(`chunkString`),e.exit(s),f(t)):t===null||t===60||m9(t)?n(t):(e.consume(t),t===92?m:p)}function m(t){return t===60||t===62||t===92?(e.consume(t),p):p(t)}function h(i){return!u&&(i===null||i===41||h9(i))?(e.exit(`chunkString`),e.exit(s),e.exit(o),e.exit(r),t(i)):u999||l===null||l===91||l===93&&!c||l===94&&!s&&`_hiddenFootnoteSupport`in o.parser.constructs?n(l):l===93?(e.exit(a),e.enter(i),e.consume(l),e.exit(i),e.exit(r),t):m9(l)?(e.enter(`lineEnding`),e.consume(l),e.exit(`lineEnding`),u):(e.enter(`chunkString`,{contentType:`string`}),d(l))}function d(t){return t===null||t===91||t===93||m9(t)||s++>999?(e.exit(`chunkString`),u(t)):(e.consume(t),c||=!g9(t),t===92?f:d)}function f(t){return t===91||t===92||t===93?(e.consume(t),s++,d):d(t)}}function Z1e(e,t,n,r,i,a){let o;return s;function s(t){return t===34||t===39||t===40?(e.enter(r),e.enter(i),e.consume(t),e.exit(i),o=t===40?41:t,c):n(t)}function c(n){return n===o?(e.enter(i),e.consume(n),e.exit(i),e.exit(r),t):(e.enter(a),l(n))}function l(t){return t===o?(e.exit(a),c(o)):t===null?n(t):m9(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),v9(e,l,`linePrefix`)):(e.enter(`chunkString`,{contentType:`string`}),u(t))}function u(t){return t===o||t===null||m9(t)?(e.exit(`chunkString`),l(t)):(e.consume(t),t===92?d:u)}function d(t){return t===o||t===92?(e.consume(t),u):u(t)}}function T9(e,t){let n;return r;function r(i){return m9(i)?(e.enter(`lineEnding`),e.consume(i),e.exit(`lineEnding`),n=!0,r):g9(i)?v9(e,r,n?`linePrefix`:`lineSuffix`)(i):t(i)}}function E9(e){return e.replace(/[\t\n\r ]+/g,` `).replace(/^ | $/g,``).toLowerCase().toUpperCase()}var Q1e={name:`definition`,tokenize:e0e},$1e={partial:!0,tokenize:t0e};function e0e(e,t,n){let r=this,i;return a;function a(t){return e.enter(`definition`),o(t)}function o(t){return X1e.call(r,e,s,n,`definitionLabel`,`definitionLabelMarker`,`definitionLabelString`)(t)}function s(t){return i=E9(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)),t===58?(e.enter(`definitionMarker`),e.consume(t),e.exit(`definitionMarker`),c):n(t)}function c(t){return h9(t)?T9(e,l)(t):l(t)}function l(t){return Y1e(e,u,n,`definitionDestination`,`definitionDestinationLiteral`,`definitionDestinationLiteralMarker`,`definitionDestinationRaw`,`definitionDestinationString`)(t)}function u(t){return e.attempt($1e,d,d)(t)}function d(t){return g9(t)?v9(e,f,`whitespace`)(t):f(t)}function f(a){return a===null||m9(a)?(e.exit(`definition`),r.parser.defined.push(i),t(a)):n(a)}}function t0e(e,t,n){return r;function r(t){return h9(t)?T9(e,i)(t):n(t)}function i(t){return Z1e(e,a,n,`definitionTitle`,`definitionTitleMarker`,`definitionTitleString`)(t)}function a(t){return g9(t)?v9(e,o,`whitespace`)(t):o(t)}function o(e){return e===null||m9(e)?t(e):n(e)}}var n0e={name:`hardBreakEscape`,tokenize:r0e};function r0e(e,t,n){return r;function r(t){return e.enter(`hardBreakEscape`),e.consume(t),i}function i(r){return m9(r)?(e.exit(`hardBreakEscape`),t(r)):n(r)}}var i0e={name:`headingAtx`,resolve:a0e,tokenize:o0e};function a0e(e,t){let n=e.length-2,r=3,i,a;return e[r][1].type===`whitespace`&&(r+=2),n-2>r&&e[n][1].type===`whitespace`&&(n-=2),e[n][1].type===`atxHeadingSequence`&&(r===n-1||n-4>r&&e[n-2][1].type===`whitespace`)&&(n-=r+1===n?2:4),n>r&&(i={type:`atxHeadingText`,start:e[r][1].start,end:e[n][1].end},a={type:`chunkText`,start:e[r][1].start,end:e[n][1].end,contentType:`text`},c9(e,r,n-r+1,[[`enter`,i,t],[`enter`,a,t],[`exit`,a,t],[`exit`,i,t]])),e}function o0e(e,t,n){let r=0;return i;function i(t){return e.enter(`atxHeading`),a(t)}function a(t){return e.enter(`atxHeadingSequence`),o(t)}function o(t){return t===35&&r++<6?(e.consume(t),o):t===null||h9(t)?(e.exit(`atxHeadingSequence`),s(t)):n(t)}function s(n){return n===35?(e.enter(`atxHeadingSequence`),c(n)):n===null||m9(n)?(e.exit(`atxHeading`),t(n)):g9(n)?v9(e,s,`whitespace`)(n):(e.enter(`atxHeadingText`),l(n))}function c(t){return t===35?(e.consume(t),c):(e.exit(`atxHeadingSequence`),s(t))}function l(t){return t===null||t===35||h9(t)?(e.exit(`atxHeadingText`),s(t)):(e.consume(t),l)}}var s0e=`address.article.aside.base.basefont.blockquote.body.caption.center.col.colgroup.dd.details.dialog.dir.div.dl.dt.fieldset.figcaption.figure.footer.form.frame.frameset.h1.h2.h3.h4.h5.h6.head.header.hr.html.iframe.legend.li.link.main.menu.menuitem.nav.noframes.ol.optgroup.option.p.param.search.section.summary.table.tbody.td.tfoot.th.thead.title.tr.track.ul`.split(`.`),c0e=[`pre`,`script`,`style`,`textarea`],l0e={concrete:!0,name:`htmlFlow`,resolveTo:f0e,tokenize:p0e},u0e={partial:!0,tokenize:h0e},d0e={partial:!0,tokenize:m0e};function f0e(e){let t=e.length;for(;t--&&!(e[t][0]===`enter`&&e[t][1].type===`htmlFlow`););return t>1&&e[t-2][1].type===`linePrefix`&&(e[t][1].start=e[t-2][1].start,e[t+1][1].start=e[t-2][1].start,e.splice(t-2,2)),e}function p0e(e,t,n){let r=this,i,a,o,s,c;return l;function l(e){return u(e)}function u(t){return e.enter(`htmlFlow`),e.enter(`htmlFlowData`),e.consume(t),d}function d(s){return s===33?(e.consume(s),f):s===47?(e.consume(s),a=!0,h):s===63?(e.consume(s),i=3,r.interrupt?t:I):u9(s)?(e.consume(s),o=String.fromCharCode(s),g):n(s)}function f(a){return a===45?(e.consume(a),i=2,p):a===91?(e.consume(a),i=5,s=0,m):u9(a)?(e.consume(a),i=4,r.interrupt?t:I):n(a)}function p(i){return i===45?(e.consume(i),r.interrupt?t:I):n(i)}function m(i){return i===`CDATA[`.charCodeAt(s++)?(e.consume(i),s===6?r.interrupt?t:O:m):n(i)}function h(t){return u9(t)?(e.consume(t),o=String.fromCharCode(t),g):n(t)}function g(s){if(s===null||s===47||s===62||h9(s)){let c=s===47,l=o.toLowerCase();return!c&&!a&&c0e.includes(l)?(i=1,r.interrupt?t(s):O(s)):s0e.includes(o.toLowerCase())?(i=6,c?(e.consume(s),_):r.interrupt?t(s):O(s)):(i=7,r.interrupt&&!r.parser.lazy[r.now().line]?n(s):a?v(s):y(s))}return s===45||d9(s)?(e.consume(s),o+=String.fromCharCode(s),g):n(s)}function _(i){return i===62?(e.consume(i),r.interrupt?t:O):n(i)}function v(t){return g9(t)?(e.consume(t),v):E(t)}function y(t){return t===47?(e.consume(t),E):t===58||t===95||u9(t)?(e.consume(t),b):g9(t)?(e.consume(t),y):E(t)}function b(t){return t===45||t===46||t===58||t===95||d9(t)?(e.consume(t),b):x(t)}function x(t){return t===61?(e.consume(t),S):g9(t)?(e.consume(t),x):y(t)}function S(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),c=t,C):g9(t)?(e.consume(t),S):w(t)}function C(t){return t===c?(e.consume(t),c=null,T):t===null||m9(t)?n(t):(e.consume(t),C)}function w(t){return t===null||t===34||t===39||t===47||t===60||t===61||t===62||t===96||h9(t)?x(t):(e.consume(t),w)}function T(e){return e===47||e===62||g9(e)?y(e):n(e)}function E(t){return t===62?(e.consume(t),D):n(t)}function D(t){return t===null||m9(t)?O(t):g9(t)?(e.consume(t),D):n(t)}function O(t){return t===45&&i===2?(e.consume(t),M):t===60&&i===1?(e.consume(t),N):t===62&&i===4?(e.consume(t),L):t===63&&i===3?(e.consume(t),I):t===93&&i===5?(e.consume(t),F):m9(t)&&(i===6||i===7)?(e.exit(`htmlFlowData`),e.check(u0e,R,k)(t)):t===null||m9(t)?(e.exit(`htmlFlowData`),k(t)):(e.consume(t),O)}function k(t){return e.check(d0e,A,R)(t)}function A(t){return e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),j}function j(t){return t===null||m9(t)?k(t):(e.enter(`htmlFlowData`),O(t))}function M(t){return t===45?(e.consume(t),I):O(t)}function N(t){return t===47?(e.consume(t),o=``,P):O(t)}function P(t){if(t===62){let n=o.toLowerCase();return c0e.includes(n)?(e.consume(t),L):O(t)}return u9(t)&&o.length<8?(e.consume(t),o+=String.fromCharCode(t),P):O(t)}function F(t){return t===93?(e.consume(t),I):O(t)}function I(t){return t===62?(e.consume(t),L):t===45&&i===2?(e.consume(t),I):O(t)}function L(t){return t===null||m9(t)?(e.exit(`htmlFlowData`),R(t)):(e.consume(t),L)}function R(n){return e.exit(`htmlFlow`),t(n)}}function m0e(e,t,n){let r=this;return i;function i(t){return m9(t)?(e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),a):n(t)}function a(e){return r.parser.lazy[r.now().line]?n(e):t(e)}}function h0e(e,t,n){return r;function r(r){return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),e.attempt(x9,t,n)}}var g0e={name:`htmlText`,tokenize:_0e};function _0e(e,t,n){let r=this,i,a,o;return s;function s(t){return e.enter(`htmlText`),e.enter(`htmlTextData`),e.consume(t),c}function c(t){return t===33?(e.consume(t),l):t===47?(e.consume(t),x):t===63?(e.consume(t),y):u9(t)?(e.consume(t),w):n(t)}function l(t){return t===45?(e.consume(t),u):t===91?(e.consume(t),a=0,m):u9(t)?(e.consume(t),v):n(t)}function u(t){return t===45?(e.consume(t),p):n(t)}function d(t){return t===null?n(t):t===45?(e.consume(t),f):m9(t)?(o=d,N(t)):(e.consume(t),d)}function f(t){return t===45?(e.consume(t),p):d(t)}function p(e){return e===62?M(e):e===45?f(e):d(e)}function m(t){return t===`CDATA[`.charCodeAt(a++)?(e.consume(t),a===6?h:m):n(t)}function h(t){return t===null?n(t):t===93?(e.consume(t),g):m9(t)?(o=h,N(t)):(e.consume(t),h)}function g(t){return t===93?(e.consume(t),_):h(t)}function _(t){return t===62?M(t):t===93?(e.consume(t),_):h(t)}function v(t){return t===null||t===62?M(t):m9(t)?(o=v,N(t)):(e.consume(t),v)}function y(t){return t===null?n(t):t===63?(e.consume(t),b):m9(t)?(o=y,N(t)):(e.consume(t),y)}function b(e){return e===62?M(e):y(e)}function x(t){return u9(t)?(e.consume(t),S):n(t)}function S(t){return t===45||d9(t)?(e.consume(t),S):C(t)}function C(t){return m9(t)?(o=C,N(t)):g9(t)?(e.consume(t),C):M(t)}function w(t){return t===45||d9(t)?(e.consume(t),w):t===47||t===62||h9(t)?T(t):n(t)}function T(t){return t===47?(e.consume(t),M):t===58||t===95||u9(t)?(e.consume(t),E):m9(t)?(o=T,N(t)):g9(t)?(e.consume(t),T):M(t)}function E(t){return t===45||t===46||t===58||t===95||d9(t)?(e.consume(t),E):D(t)}function D(t){return t===61?(e.consume(t),O):m9(t)?(o=D,N(t)):g9(t)?(e.consume(t),D):T(t)}function O(t){return t===null||t===60||t===61||t===62||t===96?n(t):t===34||t===39?(e.consume(t),i=t,k):m9(t)?(o=O,N(t)):g9(t)?(e.consume(t),O):(e.consume(t),A)}function k(t){return t===i?(e.consume(t),i=void 0,j):t===null?n(t):m9(t)?(o=k,N(t)):(e.consume(t),k)}function A(t){return t===null||t===34||t===39||t===60||t===61||t===96?n(t):t===47||t===62||h9(t)?T(t):(e.consume(t),A)}function j(e){return e===47||e===62||h9(e)?T(e):n(e)}function M(r){return r===62?(e.consume(r),e.exit(`htmlTextData`),e.exit(`htmlText`),t):n(r)}function N(t){return e.exit(`htmlTextData`),e.enter(`lineEnding`),e.consume(t),e.exit(`lineEnding`),P}function P(t){return g9(t)?v9(e,F,`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(t):F(t)}function F(t){return e.enter(`htmlTextData`),o(t)}}var D9={name:`labelEnd`,resolveAll:x0e,resolveTo:S0e,tokenize:C0e},v0e={tokenize:w0e},y0e={tokenize:T0e},b0e={tokenize:E0e};function x0e(e){let t=-1,n=[];for(;++t=3&&(a===null||m9(a))?(e.exit(`thematicBreak`),t(a)):n(a)}function c(t){return t===i?(e.consume(t),r++,c):(e.exit(`thematicBreakSequence`),g9(t)?v9(e,s,`whitespace`)(t):s(t))}}var A9={continuation:{tokenize:I0e},exit:R0e,name:`list`,tokenize:F0e},N0e={partial:!0,tokenize:z0e},P0e={partial:!0,tokenize:L0e};function F0e(e,t,n){let r=this,i=r.events[r.events.length-1],a=i&&i[1].type===`linePrefix`?i[2].sliceSerialize(i[1],!0).length:0,o=0;return s;function s(t){let i=r.containerState.type||(t===42||t===43||t===45?`listUnordered`:`listOrdered`);if(i===`listUnordered`?!r.containerState.marker||t===r.containerState.marker:p9(t)){if(r.containerState.type||(r.containerState.type=i,e.enter(i,{_container:!0})),i===`listUnordered`)return e.enter(`listItemPrefix`),t===42||t===45?e.check(k9,n,l)(t):l(t);if(!r.interrupt||t===49)return e.enter(`listItemPrefix`),e.enter(`listItemValue`),c(t)}return n(t)}function c(t){return p9(t)&&++o<10?(e.consume(t),c):(!r.interrupt||o<2)&&(r.containerState.marker?t===r.containerState.marker:t===41||t===46)?(e.exit(`listItemValue`),l(t)):n(t)}function l(t){return e.enter(`listItemMarker`),e.consume(t),e.exit(`listItemMarker`),r.containerState.marker=r.containerState.marker||t,e.check(x9,r.interrupt?n:u,e.attempt(N0e,f,d))}function u(e){return r.containerState.initialBlankLine=!0,a++,f(e)}function d(t){return g9(t)?(e.enter(`listItemPrefixWhitespace`),e.consume(t),e.exit(`listItemPrefixWhitespace`),f):n(t)}function f(n){return r.containerState.size=a+r.sliceSerialize(e.exit(`listItemPrefix`),!0).length,t(n)}}function I0e(e,t,n){let r=this;return r.containerState._closeFlow=void 0,e.check(x9,i,a);function i(n){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,v9(e,t,`listItemIndent`,r.containerState.size+1)(n)}function a(n){return r.containerState.furtherBlankLines||!g9(n)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,o(n)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,e.attempt(P0e,t,o)(n))}function o(i){return r.containerState._closeFlow=!0,r.interrupt=void 0,v9(e,e.attempt(A9,t,n),`linePrefix`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:4)(i)}}function L0e(e,t,n){let r=this;return v9(e,i,`listItemIndent`,r.containerState.size+1);function i(e){let i=r.events[r.events.length-1];return i&&i[1].type===`listItemIndent`&&i[2].sliceSerialize(i[1],!0).length===r.containerState.size?t(e):n(e)}}function R0e(e){e.exit(this.containerState.type)}function z0e(e,t,n){let r=this;return v9(e,i,`listItemPrefixWhitespace`,r.parser.constructs.disable.null.includes(`codeIndented`)?void 0:5);function i(e){let i=r.events[r.events.length-1];return!g9(e)&&i&&i[1].type===`listItemPrefixWhitespace`?t(e):n(e)}}var B0e={name:`setextUnderline`,resolveTo:V0e,tokenize:H0e};function V0e(e,t){let n=e.length,r,i,a;for(;n--;)if(e[n][0]===`enter`){if(e[n][1].type===`content`){r=n;break}e[n][1].type===`paragraph`&&(i=n)}else e[n][1].type===`content`&&e.splice(n,1),!a&&e[n][1].type===`definition`&&(a=n);let o={type:`setextHeading`,start:{...e[r][1].start},end:{...e[e.length-1][1].end}};return e[i][1].type=`setextHeadingText`,a?(e.splice(i,0,[`enter`,o,t]),e.splice(a+1,0,[`exit`,e[r][1],t]),e[r][1].end={...e[a][1].end}):e[r][1]=o,e.push([`exit`,o,t]),e}function H0e(e,t,n){let r=this,i;return a;function a(t){let a=r.events.length,s;for(;a--;)if(r.events[a][1].type!==`lineEnding`&&r.events[a][1].type!==`linePrefix`&&r.events[a][1].type!==`content`){s=r.events[a][1].type===`paragraph`;break}return!r.parser.lazy[r.now().line]&&(r.interrupt||s)?(e.enter(`setextHeadingLine`),i=t,o(t)):n(t)}function o(t){return e.enter(`setextHeadingLineSequence`),s(t)}function s(t){return t===i?(e.consume(t),s):(e.exit(`setextHeadingLineSequence`),g9(t)?v9(e,c,`lineSuffix`)(t):c(t))}function c(r){return r===null||m9(r)?(e.exit(`setextHeadingLine`),t(r)):n(r)}}var U0e={tokenize:W0e};function W0e(e){let t=this,n=e.attempt(x9,r,e.attempt(this.parser.constructs.flowInitial,i,v9(e,e.attempt(this.parser.constructs.flow,i,e.attempt(W1e,i)),`linePrefix`)));return n;function r(r){if(r===null){e.consume(r);return}return e.enter(`lineEndingBlank`),e.consume(r),e.exit(`lineEndingBlank`),t.currentConstruct=void 0,n}function i(r){if(r===null){e.consume(r);return}return e.enter(`lineEnding`),e.consume(r),e.exit(`lineEnding`),t.currentConstruct=void 0,n}}var G0e={resolveAll:Y0e()},K0e=J0e(`string`),q0e=J0e(`text`);function J0e(e){return{resolveAll:Y0e(e===`text`?X0e:void 0),tokenize:t};function t(t){let n=this,r=this.parser.constructs[e],i=t.attempt(r,a,o);return a;function a(e){return c(e)?i(e):o(e)}function o(e){if(e===null){t.consume(e);return}return t.enter(`data`),t.consume(e),s}function s(e){return c(e)?(t.exit(`data`),i(e)):(t.consume(e),s)}function c(e){if(e===null)return!0;let t=r[e],i=-1;if(t)for(;++ia2e,contentInitial:()=>$0e,disable:()=>o2e,document:()=>Q0e,flow:()=>t2e,flowInitial:()=>e2e,insideSpan:()=>i2e,string:()=>n2e,text:()=>r2e}),Q0e={42:A9,43:A9,45:A9,48:A9,49:A9,50:A9,51:A9,52:A9,53:A9,54:A9,55:A9,56:A9,57:A9,62:x1e},$0e={91:Q1e},e2e={[-2]:C9,[-1]:C9,32:C9},t2e={35:i0e,42:k9,45:[B0e,k9],60:l0e,61:B0e,95:k9,96:j1e,126:j1e},n2e={38:O1e,92:T1e},r2e={[-5]:O9,[-4]:O9,[-3]:O9,33:D0e,38:O1e,42:b9,60:[v1e,g0e],91:k0e,92:[n0e,T1e],93:D9,95:b9,96:L1e},i2e={null:[b9,G0e]},a2e={null:[42,95]},o2e={null:[]};function s2e(e,t,n){let r={_bufferIndex:-1,_index:0,line:n&&n.line||1,column:n&&n.column||1,offset:n&&n.offset||0},i={},a=[],o=[],s=[],c={attempt:C(x),check:C(S),consume:v,enter:y,exit:b,interrupt:C(S,{interrupt:!0})},l={code:null,containerState:{},defineSkip:h,events:[],now:m,parser:e,previous:null,sliceSerialize:f,sliceStream:p,write:d},u=t.tokenize.call(l,c);return t.resolveAll&&a.push(t),l;function d(e){return o=l9(o,e),g(),o[o.length-1]===null?(w(t,0),l.events=y9(a,l.events,l),l.events):[]}function f(e,t){return l2e(p(e),t)}function p(e){return c2e(o,e)}function m(){let{_bufferIndex:e,_index:t,line:n,column:i,offset:a}=r;return{_bufferIndex:e,_index:t,line:n,column:i,offset:a}}function h(e){i[e.line]=e.column,E()}function g(){let e;for(;r._index-1){let e=o[0];typeof e==`string`?o[0]=e.slice(r):o.shift()}a>0&&o.push(e[i].slice(0,a))}return o}function l2e(e,t){let n=-1,r=[],i;for(;++n13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||(n&65535)==65535||(n&65535)==65534||n>1114111?`�`:String.fromCodePoint(n)}var p2e=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function m2e(e){return e.replace(p2e,h2e)}function h2e(e,t,n){if(t)return t;if(n.charCodeAt(0)===35){let e=n.charCodeAt(1),t=e===120||e===88;return f2e(n.slice(t?2:1),t?16:10)}return S9(n)||e}var g2e={}.hasOwnProperty;function _2e(e,t,n){return t&&typeof t==`object`&&(n=t,t=void 0),v2e(n)(l2e(c2e(n).document().write(d2e()(e,t,!0))))}function v2e(e){let t={transforms:[],canContainEols:[`emphasis`,`fragment`,`heading`,`paragraph`,`strong`],enter:{autolink:a(ce),autolinkProtocol:T,autolinkEmail:T,atxHeading:a(ie),blockQuote:a(ee),characterEscape:T,characterReference:T,codeFenced:a(K),codeFencedFenceInfo:o,codeFencedFenceMeta:o,codeIndented:a(K,o),codeText:a(te,o),codeTextData:T,data:T,codeFlowValue:T,definition:a(ne),definitionDestinationString:o,definitionLabelString:o,definitionTitleString:o,emphasis:a(re),hardBreakEscape:a(ae),hardBreakTrailing:a(ae),htmlFlow:a(oe,o),htmlFlowData:T,htmlText:a(oe,o),htmlTextData:T,image:a(se),label:o,link:a(ce),listItem:a(ue),listItemValue:f,listOrdered:a(le,d),listUnordered:a(le),paragraph:a(de),reference:z,referenceString:o,resourceDestinationString:o,resourceTitleString:o,setextHeading:a(ie),strong:a(fe),thematicBreak:a(me)},exit:{atxHeading:c(),atxHeadingSequence:x,autolink:c(),autolinkEmail:G,autolinkProtocol:W,blockQuote:c(),characterEscapeValue:E,characterReferenceMarkerHexadecimal:V,characterReferenceMarkerNumeric:V,characterReferenceValue:H,characterReference:U,codeFenced:c(g),codeFencedFence:h,codeFencedFenceInfo:p,codeFencedFenceMeta:m,codeFlowValue:E,codeIndented:c(_),codeText:c(j),codeTextData:E,data:E,definition:c(),definitionDestinationString:b,definitionLabelString:v,definitionTitleString:y,emphasis:c(),hardBreakEscape:c(O),hardBreakTrailing:c(O),htmlFlow:c(k),htmlFlowData:E,htmlText:c(A),htmlTextData:E,image:c(N),label:F,labelText:P,lineEnding:D,link:c(M),listItem:c(),listOrdered:c(),listUnordered:c(),paragraph:c(),referenceString:B,resourceDestinationString:I,resourceTitleString:L,resource:R,setextHeading:c(w),setextHeadingLineSequence:C,setextHeadingText:S,strong:c(),thematicBreak:c()}};y2e(t,(e||{}).mdastExtensions||[]);let n={};return r;function r(e){let r={type:`root`,children:[]},a={stack:[r],tokenStack:[],config:t,enter:s,exit:l,buffer:o,resume:u,data:n},c=[],d=-1;for(;++d0){let e=a.tokenStack[a.tokenStack.length-1];(e[1]||x2e).call(a,void 0,e[0])}for(r.position={start:j9(e.length>0?e[0][1].start:{line:1,column:1,offset:0}),end:j9(e.length>0?e[e.length-2][1].end:{line:1,column:1,offset:0})},d=-1;++d{switch(e){case`Function`:case`SharedWorker`:case`Worker`:case`eval`:case`setInterval`:case`setTimeout`:throw TypeError(`unable to deserialize `+e)}return new C2e[e](t)},T2e=(e,t)=>{let n=(t,n)=>(e.set(n,t),t),r=i=>{if(e.has(i))return e.get(i);let[a,o]=t[i];switch(a){case 0:case-1:return n(o,i);case 1:{let e=n([],i);for(let t of o)e.push(r(t));return e}case 2:{let e=n({},i);for(let[t,n]of o)e[r(t)]=r(n);return e}case 3:return n(new Date(o),i);case 4:{let{source:e,flags:t}=o;return n(new RegExp(e,t),i)}case 5:{let e=n(new Map,i);for(let[t,n]of o)e.set(r(t),r(n));return e}case 6:{let e=n(new Set,i);for(let t of o)e.add(r(t));return e}case 7:{let{name:e,message:t}=o;return n(w2e(e,t),i)}case 8:return n(BigInt(o),i);case`BigInt`:return n(Object(BigInt(o)),i);case`ArrayBuffer`:return n(new Uint8Array(o).buffer,o);case`DataView`:{let{buffer:e}=new Uint8Array(o);return n(new DataView(e),o)}}return n(w2e(a,o),i)};return r},E2e=e=>T2e(new Map,e)(0),M9=``,{toString:D2e}={},{keys:O2e}=Object,N9=e=>{let t=typeof e;if(t!==`object`||!e)return[0,t];let n=D2e.call(e).slice(8,-1);switch(n){case`Array`:return[1,M9];case`Object`:return[2,M9];case`Date`:return[3,M9];case`RegExp`:return[4,M9];case`Map`:return[5,M9];case`Set`:return[6,M9];case`DataView`:return[1,n]}return n.includes(`Array`)?[1,n]:n.includes(`Error`)?[7,n]:[2,n]},P9=([e,t])=>e===0&&(t===`function`||t===`symbol`),k2e=(e,t,n,r)=>{let i=(e,t)=>{let i=r.push(e)-1;return n.set(t,i),i},a=r=>{if(n.has(r))return n.get(r);let[o,s]=N9(r);switch(o){case 0:{let t=r;switch(s){case`bigint`:o=8,t=r.toString();break;case`function`:case`symbol`:if(e)throw TypeError(`unable to serialize `+s);t=null;break;case`undefined`:return i([-1],r)}return i([o,t],r)}case 1:{if(s){let e=r;return s===`DataView`?e=new Uint8Array(r.buffer):s===`ArrayBuffer`&&(e=new Uint8Array(r)),i([s,[...e]],r)}let e=[],t=i([o,e],r);for(let t of r)e.push(a(t));return t}case 2:{if(s)switch(s){case`BigInt`:return i([s,r.toString()],r);case`Boolean`:case`Number`:case`String`:return i([s,r.valueOf()],r)}if(t&&`toJSON`in r)return a(r.toJSON());let n=[],c=i([o,n],r);for(let t of O2e(r))(e||!P9(N9(r[t])))&&n.push([a(t),a(r[t])]);return c}case 3:return i([o,isNaN(r.getTime())?M9:r.toISOString()],r);case 4:{let{source:e,flags:t}=r;return i([o,{source:e,flags:t}],r)}case 5:{let t=[],n=i([o,t],r);for(let[n,i]of r)(e||!(P9(N9(n))||P9(N9(i))))&&t.push([a(n),a(i)]);return n}case 6:{let t=[],n=i([o,t],r);for(let n of r)(e||!P9(N9(n)))&&t.push(a(n));return n}}let{message:c}=r;return i([o,{name:s,message:c}],r)};return a},A2e=(e,{json:t,lossy:n}={})=>{let r=[];return k2e(!(t||n),!!t,new Map,r)(e),r},F9=typeof structuredClone==`function`?(e,t)=>t&&(`json`in t||`lossy`in t)?E2e(A2e(e,t)):structuredClone(e):(e,t)=>E2e(A2e(e,t));function I9(e){let t=[],n=-1,r=0,i=0;for(;++n55295&&a<57344){let t=e.charCodeAt(n+1);a<56320&&t>56319&&t<57344?(o=String.fromCharCode(a,t),i=1):o=`�`}else o=String.fromCharCode(a);o&&=(t.push(e.slice(r,n),encodeURIComponent(o)),r=n+i+1,``),i&&=(n+=i,0)}return t.join(``)+e.slice(r)}function j2e(e,t){let n=[{type:`text`,value:`↩`}];return t>1&&n.push({type:`element`,tagName:`sup`,properties:{},children:[{type:`text`,value:String(t)}]}),n}function M2e(e,t){return`Back to reference `+(e+1)+(t>1?`-`+t:``)}function N2e(e){let t=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,n=e.options.footnoteBackContent||j2e,r=e.options.footnoteBackLabel||M2e,i=e.options.footnoteLabel||`Footnotes`,a=e.options.footnoteLabelTagName||`h2`,o=e.options.footnoteLabelProperties||{className:[`sr-only`]},s=[],c=-1;for(;++c0&&d.push({type:`text`,value:` `});let e=typeof n==`string`?n:n(c,u);typeof e==`string`&&(e={type:`text`,value:e}),d.push({type:`element`,tagName:`a`,properties:{href:`#`+t+`fnref-`+l+(u>1?`-`+u:``),dataFootnoteBackref:``,ariaLabel:typeof r==`string`?r:r(c,u),className:[`data-footnote-backref`]},children:Array.isArray(e)?e:[e]})}let p=a[a.length-1];if(p&&p.type===`element`&&p.tagName===`p`){let e=p.children[p.children.length-1];e&&e.type===`text`?e.value+=` `:p.children.push({type:`text`,value:` `}),p.children.push(...d)}else a.push(...d);let m={type:`element`,tagName:`li`,properties:{id:t+`fn-`+l},children:e.wrap(a,!0)};e.patch(i,m),s.push(m)}if(s.length!==0)return{type:`element`,tagName:`section`,properties:{dataFootnotes:!0,className:[`footnotes`]},children:[{type:`element`,tagName:a,properties:{...F9(o),id:`footnote-label`},children:[{type:`text`,value:i}]},{type:`text`,value:` +`;break;case-2:o=t?` `:` `;break;case-1:if(!t&&i)continue;o=` `;break;default:o=String.fromCharCode(a)}i=a===-2,r.push(o)}return r.join(``)}function u2e(e){let t={constructs:e1e([Z0e,...(e||{}).extensions||[]]),content:n(c1e),defined:[],document:n(u1e),flow:n(U0e),lazy:{},string:n(K0e),text:n(q0e)};return t;function n(e){return n;function n(n){return s2e(t,e,n)}}}function d2e(e){for(;!H1e(e););return e}var f2e=/[\0\t\n\r]/g;function p2e(){let e=1,t=``,n=!0,r;return i;function i(i,a,o){let s=[],c,l,u,d,f;for(i=t+(typeof i==`string`?i.toString():new TextDecoder(a||void 0).decode(i)),u=0,t=``,n&&=(i.charCodeAt(0)===65279&&u++,void 0);u13&&n<32||n>126&&n<160||n>55295&&n<57344||n>64975&&n<65008||(n&65535)==65535||(n&65535)==65534||n>1114111?`�`:String.fromCodePoint(n)}var h2e=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function g2e(e){return e.replace(h2e,_2e)}function _2e(e,t,n){if(t)return t;if(n.charCodeAt(0)===35){let e=n.charCodeAt(1),t=e===120||e===88;return m2e(n.slice(t?2:1),t?16:10)}return S9(n)||e}var v2e={}.hasOwnProperty;function y2e(e,t,n){return t&&typeof t==`object`&&(n=t,t=void 0),b2e(n)(d2e(u2e(n).document().write(p2e()(e,t,!0))))}function b2e(e){let t={transforms:[],canContainEols:[`emphasis`,`fragment`,`heading`,`paragraph`,`strong`],enter:{autolink:a(ce),autolinkProtocol:T,autolinkEmail:T,atxHeading:a(ie),blockQuote:a(ee),characterEscape:T,characterReference:T,codeFenced:a(K),codeFencedFenceInfo:o,codeFencedFenceMeta:o,codeIndented:a(K,o),codeText:a(te,o),codeTextData:T,data:T,codeFlowValue:T,definition:a(ne),definitionDestinationString:o,definitionLabelString:o,definitionTitleString:o,emphasis:a(re),hardBreakEscape:a(ae),hardBreakTrailing:a(ae),htmlFlow:a(oe,o),htmlFlowData:T,htmlText:a(oe,o),htmlTextData:T,image:a(se),label:o,link:a(ce),listItem:a(ue),listItemValue:f,listOrdered:a(le,d),listUnordered:a(le),paragraph:a(de),reference:z,referenceString:o,resourceDestinationString:o,resourceTitleString:o,setextHeading:a(ie),strong:a(fe),thematicBreak:a(me)},exit:{atxHeading:c(),atxHeadingSequence:x,autolink:c(),autolinkEmail:G,autolinkProtocol:W,blockQuote:c(),characterEscapeValue:E,characterReferenceMarkerHexadecimal:V,characterReferenceMarkerNumeric:V,characterReferenceValue:H,characterReference:U,codeFenced:c(g),codeFencedFence:h,codeFencedFenceInfo:p,codeFencedFenceMeta:m,codeFlowValue:E,codeIndented:c(_),codeText:c(j),codeTextData:E,data:E,definition:c(),definitionDestinationString:b,definitionLabelString:v,definitionTitleString:y,emphasis:c(),hardBreakEscape:c(O),hardBreakTrailing:c(O),htmlFlow:c(k),htmlFlowData:E,htmlText:c(A),htmlTextData:E,image:c(N),label:F,labelText:P,lineEnding:D,link:c(M),listItem:c(),listOrdered:c(),listUnordered:c(),paragraph:c(),referenceString:B,resourceDestinationString:I,resourceTitleString:L,resource:R,setextHeading:c(w),setextHeadingLineSequence:C,setextHeadingText:S,strong:c(),thematicBreak:c()}};x2e(t,(e||{}).mdastExtensions||[]);let n={};return r;function r(e){let r={type:`root`,children:[]},a={stack:[r],tokenStack:[],config:t,enter:s,exit:l,buffer:o,resume:u,data:n},c=[],d=-1;for(;++d0){let e=a.tokenStack[a.tokenStack.length-1];(e[1]||C2e).call(a,void 0,e[0])}for(r.position={start:j9(e.length>0?e[0][1].start:{line:1,column:1,offset:0}),end:j9(e.length>0?e[e.length-2][1].end:{line:1,column:1,offset:0})},d=-1;++d{switch(e){case`Function`:case`SharedWorker`:case`Worker`:case`eval`:case`setInterval`:case`setTimeout`:throw TypeError(`unable to deserialize `+e)}return new T2e[e](t)},D2e=(e,t)=>{let n=(t,n)=>(e.set(n,t),t),r=i=>{if(e.has(i))return e.get(i);let[a,o]=t[i];switch(a){case 0:case-1:return n(o,i);case 1:{let e=n([],i);for(let t of o)e.push(r(t));return e}case 2:{let e=n({},i);for(let[t,n]of o)e[r(t)]=r(n);return e}case 3:return n(new Date(o),i);case 4:{let{source:e,flags:t}=o;return n(new RegExp(e,t),i)}case 5:{let e=n(new Map,i);for(let[t,n]of o)e.set(r(t),r(n));return e}case 6:{let e=n(new Set,i);for(let t of o)e.add(r(t));return e}case 7:{let{name:e,message:t}=o;return n(E2e(e,t),i)}case 8:return n(BigInt(o),i);case`BigInt`:return n(Object(BigInt(o)),i);case`ArrayBuffer`:return n(new Uint8Array(o).buffer,o);case`DataView`:{let{buffer:e}=new Uint8Array(o);return n(new DataView(e),o)}}return n(E2e(a,o),i)};return r},O2e=e=>D2e(new Map,e)(0),M9=``,{toString:k2e}={},{keys:A2e}=Object,N9=e=>{let t=typeof e;if(t!==`object`||!e)return[0,t];let n=k2e.call(e).slice(8,-1);switch(n){case`Array`:return[1,M9];case`Object`:return[2,M9];case`Date`:return[3,M9];case`RegExp`:return[4,M9];case`Map`:return[5,M9];case`Set`:return[6,M9];case`DataView`:return[1,n]}return n.includes(`Array`)?[1,n]:n.includes(`Error`)?[7,n]:[2,n]},P9=([e,t])=>e===0&&(t===`function`||t===`symbol`),j2e=(e,t,n,r)=>{let i=(e,t)=>{let i=r.push(e)-1;return n.set(t,i),i},a=r=>{if(n.has(r))return n.get(r);let[o,s]=N9(r);switch(o){case 0:{let t=r;switch(s){case`bigint`:o=8,t=r.toString();break;case`function`:case`symbol`:if(e)throw TypeError(`unable to serialize `+s);t=null;break;case`undefined`:return i([-1],r)}return i([o,t],r)}case 1:{if(s){let e=r;return s===`DataView`?e=new Uint8Array(r.buffer):s===`ArrayBuffer`&&(e=new Uint8Array(r)),i([s,[...e]],r)}let e=[],t=i([o,e],r);for(let t of r)e.push(a(t));return t}case 2:{if(s)switch(s){case`BigInt`:return i([s,r.toString()],r);case`Boolean`:case`Number`:case`String`:return i([s,r.valueOf()],r)}if(t&&`toJSON`in r)return a(r.toJSON());let n=[],c=i([o,n],r);for(let t of A2e(r))(e||!P9(N9(r[t])))&&n.push([a(t),a(r[t])]);return c}case 3:return i([o,isNaN(r.getTime())?M9:r.toISOString()],r);case 4:{let{source:e,flags:t}=r;return i([o,{source:e,flags:t}],r)}case 5:{let t=[],n=i([o,t],r);for(let[n,i]of r)(e||!(P9(N9(n))||P9(N9(i))))&&t.push([a(n),a(i)]);return n}case 6:{let t=[],n=i([o,t],r);for(let n of r)(e||!P9(N9(n)))&&t.push(a(n));return n}}let{message:c}=r;return i([o,{name:s,message:c}],r)};return a},M2e=(e,{json:t,lossy:n}={})=>{let r=[];return j2e(!(t||n),!!t,new Map,r)(e),r},F9=typeof structuredClone==`function`?(e,t)=>t&&(`json`in t||`lossy`in t)?O2e(M2e(e,t)):structuredClone(e):(e,t)=>O2e(M2e(e,t));function I9(e){let t=[],n=-1,r=0,i=0;for(;++n55295&&a<57344){let t=e.charCodeAt(n+1);a<56320&&t>56319&&t<57344?(o=String.fromCharCode(a,t),i=1):o=`�`}else o=String.fromCharCode(a);o&&=(t.push(e.slice(r,n),encodeURIComponent(o)),r=n+i+1,``),i&&=(n+=i,0)}return t.join(``)+e.slice(r)}function N2e(e,t){let n=[{type:`text`,value:`↩`}];return t>1&&n.push({type:`element`,tagName:`sup`,properties:{},children:[{type:`text`,value:String(t)}]}),n}function P2e(e,t){return`Back to reference `+(e+1)+(t>1?`-`+t:``)}function F2e(e){let t=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,n=e.options.footnoteBackContent||N2e,r=e.options.footnoteBackLabel||P2e,i=e.options.footnoteLabel||`Footnotes`,a=e.options.footnoteLabelTagName||`h2`,o=e.options.footnoteLabelProperties||{className:[`sr-only`]},s=[],c=-1;for(;++c0&&d.push({type:`text`,value:` `});let e=typeof n==`string`?n:n(c,u);typeof e==`string`&&(e={type:`text`,value:e}),d.push({type:`element`,tagName:`a`,properties:{href:`#`+t+`fnref-`+l+(u>1?`-`+u:``),dataFootnoteBackref:``,ariaLabel:typeof r==`string`?r:r(c,u),className:[`data-footnote-backref`]},children:Array.isArray(e)?e:[e]})}let p=a[a.length-1];if(p&&p.type===`element`&&p.tagName===`p`){let e=p.children[p.children.length-1];e&&e.type===`text`?e.value+=` `:p.children.push({type:`text`,value:` `}),p.children.push(...d)}else a.push(...d);let m={type:`element`,tagName:`li`,properties:{id:t+`fn-`+l},children:e.wrap(a,!0)};e.patch(i,m),s.push(m)}if(s.length!==0)return{type:`element`,tagName:`section`,properties:{dataFootnotes:!0,className:[`footnotes`]},children:[{type:`element`,tagName:a,properties:{...F9(o),id:`footnote-label`},children:[{type:`text`,value:i}]},{type:`text`,value:` `},{type:`element`,tagName:`ol`,properties:{},children:e.wrap(s,!0)},{type:`text`,value:` -`}]}}var P2e=(function(e){if(e==null)return R2e;if(typeof e==`function`)return L9(e);if(typeof e==`object`)return Array.isArray(e)?F2e(e):I2e(e);if(typeof e==`string`)return L2e(e);throw Error(`Expected function, string, or object as test`)});function F2e(e){let t=[],n=-1;for(;++n`:``))+`)`})}return u;function u(){let l=V2e,u,d,f;if((!t||a(e,i,c[c.length-1]||void 0))&&(l=U2e(n(e,c)),l[0]===!1))return l;if(`children`in e&&e.children){let t=e;if(t.children&&l[0]!==`skip`)for(d=(r?t.children.length:-1)+o,f=c.concat(t);d>-1&&d0&&(r.className=[`language-`+i[0]]);let a={type:`element`,tagName:`code`,properties:r,children:[{type:`text`,value:n}]};return t.meta&&(a.data={meta:t.meta}),e.patch(t,a),a=e.applyData(t,a),a={type:`element`,tagName:`pre`,properties:{},children:[a]},e.patch(t,a),a}function J2e(e,t){let n={type:`element`,tagName:`del`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Y2e(e,t){let n={type:`element`,tagName:`em`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function X2e(e,t){let n=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,r=String(t.identifier).toUpperCase(),i=I9(r.toLowerCase()),a=e.footnoteOrder.indexOf(r),o,s=e.footnoteCounts.get(r);s===void 0?(s=0,e.footnoteOrder.push(r),o=e.footnoteOrder.length):o=a+1,s+=1,e.footnoteCounts.set(r,s);let c={type:`element`,tagName:`a`,properties:{href:`#`+n+`fn-`+i,id:n+`fnref-`+i+(s>1?`-`+s:``),dataFootnoteRef:!0,ariaDescribedBy:[`footnote-label`]},children:[{type:`text`,value:String(o)}]};e.patch(t,c);let l={type:`element`,tagName:`sup`,properties:{},children:[c]};return e.patch(t,l),e.applyData(t,l)}function Z2e(e,t){let n={type:`element`,tagName:`h`+t.depth,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Q2e(e,t){if(e.options.allowDangerousHtml){let n={type:`raw`,value:t.value};return e.patch(t,n),e.applyData(t,n)}}function $2e(e,t){let n=t.referenceType,r=`]`;if(n===`collapsed`?r+=`[]`:n===`full`&&(r+=`[`+(t.label||t.identifier)+`]`),t.type===`imageReference`)return[{type:`text`,value:`![`+t.alt+r}];let i=e.all(t),a=i[0];a&&a.type===`text`?a.value=`[`+a.value:i.unshift({type:`text`,value:`[`});let o=i[i.length-1];return o&&o.type===`text`?o.value+=r:i.push({type:`text`,value:r}),i}function e4e(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return $2e(e,t);let i={src:I9(r.url||``),alt:t.alt};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`img`,properties:i,children:[]};return e.patch(t,a),e.applyData(t,a)}function t4e(e,t){let n={src:I9(t.url)};t.alt!==null&&t.alt!==void 0&&(n.alt=t.alt),t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`img`,properties:n,children:[]};return e.patch(t,r),e.applyData(t,r)}function n4e(e,t){let n={type:`text`,value:t.value.replace(/\r?\n|\r/g,` `)};e.patch(t,n);let r={type:`element`,tagName:`code`,properties:{},children:[n]};return e.patch(t,r),e.applyData(t,r)}function r4e(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return $2e(e,t);let i={href:I9(r.url||``)};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`a`,properties:i,children:e.all(t)};return e.patch(t,a),e.applyData(t,a)}function i4e(e,t){let n={href:I9(t.url)};t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`a`,properties:n,children:e.all(t)};return e.patch(t,r),e.applyData(t,r)}function a4e(e,t,n){let r=e.all(t),i=n?o4e(n):s4e(t),a={},o=[];if(typeof t.checked==`boolean`){let e=r[0],n;e&&e.type===`element`&&e.tagName===`p`?n=e:(n={type:`element`,tagName:`p`,properties:{},children:[]},r.unshift(n)),n.children.length>0&&n.children.unshift({type:`text`,value:` `}),n.children.unshift({type:`element`,tagName:`input`,properties:{type:`checkbox`,checked:t.checked,disabled:!0},children:[]}),a.className=[`task-list-item`]}let s=-1;for(;++s`:``))+`)`})}return u;function u(){let l=U2e,u,d,f;if((!t||a(e,i,c[c.length-1]||void 0))&&(l=G2e(n(e,c)),l[0]===!1))return l;if(`children`in e&&e.children){let t=e;if(t.children&&l[0]!==`skip`)for(d=(r?t.children.length:-1)+o,f=c.concat(t);d>-1&&d0&&(r.className=[`language-`+i[0]]);let a={type:`element`,tagName:`code`,properties:r,children:[{type:`text`,value:n}]};return t.meta&&(a.data={meta:t.meta}),e.patch(t,a),a=e.applyData(t,a),a={type:`element`,tagName:`pre`,properties:{},children:[a]},e.patch(t,a),a}function X2e(e,t){let n={type:`element`,tagName:`del`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Z2e(e,t){let n={type:`element`,tagName:`em`,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function Q2e(e,t){let n=typeof e.options.clobberPrefix==`string`?e.options.clobberPrefix:`user-content-`,r=String(t.identifier).toUpperCase(),i=I9(r.toLowerCase()),a=e.footnoteOrder.indexOf(r),o,s=e.footnoteCounts.get(r);s===void 0?(s=0,e.footnoteOrder.push(r),o=e.footnoteOrder.length):o=a+1,s+=1,e.footnoteCounts.set(r,s);let c={type:`element`,tagName:`a`,properties:{href:`#`+n+`fn-`+i,id:n+`fnref-`+i+(s>1?`-`+s:``),dataFootnoteRef:!0,ariaDescribedBy:[`footnote-label`]},children:[{type:`text`,value:String(o)}]};e.patch(t,c);let l={type:`element`,tagName:`sup`,properties:{},children:[c]};return e.patch(t,l),e.applyData(t,l)}function $2e(e,t){let n={type:`element`,tagName:`h`+t.depth,properties:{},children:e.all(t)};return e.patch(t,n),e.applyData(t,n)}function e4e(e,t){if(e.options.allowDangerousHtml){let n={type:`raw`,value:t.value};return e.patch(t,n),e.applyData(t,n)}}function t4e(e,t){let n=t.referenceType,r=`]`;if(n===`collapsed`?r+=`[]`:n===`full`&&(r+=`[`+(t.label||t.identifier)+`]`),t.type===`imageReference`)return[{type:`text`,value:`![`+t.alt+r}];let i=e.all(t),a=i[0];a&&a.type===`text`?a.value=`[`+a.value:i.unshift({type:`text`,value:`[`});let o=i[i.length-1];return o&&o.type===`text`?o.value+=r:i.push({type:`text`,value:r}),i}function n4e(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return t4e(e,t);let i={src:I9(r.url||``),alt:t.alt};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`img`,properties:i,children:[]};return e.patch(t,a),e.applyData(t,a)}function r4e(e,t){let n={src:I9(t.url)};t.alt!==null&&t.alt!==void 0&&(n.alt=t.alt),t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`img`,properties:n,children:[]};return e.patch(t,r),e.applyData(t,r)}function i4e(e,t){let n={type:`text`,value:t.value.replace(/\r?\n|\r/g,` `)};e.patch(t,n);let r={type:`element`,tagName:`code`,properties:{},children:[n]};return e.patch(t,r),e.applyData(t,r)}function a4e(e,t){let n=String(t.identifier).toUpperCase(),r=e.definitionById.get(n);if(!r)return t4e(e,t);let i={href:I9(r.url||``)};r.title!==null&&r.title!==void 0&&(i.title=r.title);let a={type:`element`,tagName:`a`,properties:i,children:e.all(t)};return e.patch(t,a),e.applyData(t,a)}function o4e(e,t){let n={href:I9(t.url)};t.title!==null&&t.title!==void 0&&(n.title=t.title);let r={type:`element`,tagName:`a`,properties:n,children:e.all(t)};return e.patch(t,r),e.applyData(t,r)}function s4e(e,t,n){let r=e.all(t),i=n?c4e(n):l4e(t),a={},o=[];if(typeof t.checked==`boolean`){let e=r[0],n;e&&e.type===`element`&&e.tagName===`p`?n=e:(n={type:`element`,tagName:`p`,properties:{},children:[]},r.unshift(n)),n.children.length>0&&n.children.unshift({type:`text`,value:` `}),n.children.unshift({type:`element`,tagName:`input`,properties:{type:`checkbox`,checked:t.checked,disabled:!0},children:[]}),a.className=[`task-list-item`]}let s=-1;for(;++s1}function c4e(e,t){let n={},r=e.all(t),i=-1;for(typeof t.start==`number`&&t.start!==1&&(n.start=t.start);++i0){let r={type:`element`,tagName:`tbody`,properties:{},children:e.wrap(n,!0)},a=$7(t.children[1]),o=_$e(t.children[t.children.length-1]);a&&o&&(r.position={start:a,end:o}),i.push(r)}let a={type:`element`,tagName:`table`,properties:{},children:e.wrap(i,!0)};return e.patch(t,a),e.applyData(t,a)}function p4e(e,t,n){let r=n?n.children:void 0,i=(r?r.indexOf(t):1)===0?`th`:`td`,a=n&&n.type===`table`?n.align:void 0,o=a?a.length:t.children.length,s=-1,c=[];for(;++s0,!0),r[0]),i=r.index+r[0].length,r=n.exec(t);return a.push(v4e(t.slice(i),i>0,!1)),a.join(``)}function v4e(e,t,n){let r=0,i=e.length;if(t){let t=e.codePointAt(r);for(;t===h4e||t===g4e;)r++,t=e.codePointAt(r)}if(n){let t=e.codePointAt(i-1);for(;t===h4e||t===g4e;)i--,t=e.codePointAt(i-1)}return i>r?e.slice(r,i):``}function y4e(e,t){let n={type:`text`,value:_4e(String(t.value))};return e.patch(t,n),e.applyData(t,n)}function b4e(e,t){let n={type:`element`,tagName:`hr`,properties:{},children:[]};return e.patch(t,n),e.applyData(t,n)}var x4e={blockquote:G2e,break:K2e,code:q2e,delete:J2e,emphasis:Y2e,footnoteReference:X2e,heading:Z2e,html:Q2e,imageReference:e4e,image:t4e,inlineCode:n4e,linkReference:r4e,link:i4e,listItem:a4e,list:c4e,paragraph:l4e,root:u4e,strong:d4e,table:f4e,tableCell:m4e,tableRow:p4e,text:y4e,thematicBreak:b4e,toml:R9,yaml:R9,definition:R9,footnoteDefinition:R9};function R9(){}var z9={}.hasOwnProperty,S4e={};function C4e(e,t){let n=t||S4e,r=new Map,i=new Map,a={all:s,applyData:T4e,definitionById:r,footnoteById:i,footnoteCounts:new Map,footnoteOrder:[],handlers:{...x4e,...n.handlers},one:o,options:n,patch:w4e,wrap:D4e};return W2e(e,function(e){if(e.type===`definition`||e.type===`footnoteDefinition`){let t=e.type===`definition`?r:i,n=String(e.identifier).toUpperCase();t.has(n)||t.set(n,e)}}),a;function o(e,t){let n=e.type,r=a.handlers[n];if(z9.call(a.handlers,n)&&r)return r(a,e,t);if(a.options.passThrough&&a.options.passThrough.includes(n)){if(`children`in e){let{children:t,...n}=e,r=F9(n);return r.children=a.all(e),r}return F9(e)}return(a.options.unknownHandler||E4e)(a,e,t)}function s(e){let t=[];if(`children`in e){let n=e.children,r=-1;for(;++r1}function u4e(e,t){let n={},r=e.all(t),i=-1;for(typeof t.start==`number`&&t.start!==1&&(n.start=t.start);++i0){let r={type:`element`,tagName:`tbody`,properties:{},children:e.wrap(n,!0)},a=$7(t.children[1]),o=y$e(t.children[t.children.length-1]);a&&o&&(r.position={start:a,end:o}),i.push(r)}let a={type:`element`,tagName:`table`,properties:{},children:e.wrap(i,!0)};return e.patch(t,a),e.applyData(t,a)}function h4e(e,t,n){let r=n?n.children:void 0,i=(r?r.indexOf(t):1)===0?`th`:`td`,a=n&&n.type===`table`?n.align:void 0,o=a?a.length:t.children.length,s=-1,c=[];for(;++s0,!0),r[0]),i=r.index+r[0].length,r=n.exec(t);return a.push(b4e(t.slice(i),i>0,!1)),a.join(``)}function b4e(e,t,n){let r=0,i=e.length;if(t){let t=e.codePointAt(r);for(;t===_4e||t===v4e;)r++,t=e.codePointAt(r)}if(n){let t=e.codePointAt(i-1);for(;t===_4e||t===v4e;)i--,t=e.codePointAt(i-1)}return i>r?e.slice(r,i):``}function x4e(e,t){let n={type:`text`,value:y4e(String(t.value))};return e.patch(t,n),e.applyData(t,n)}function S4e(e,t){let n={type:`element`,tagName:`hr`,properties:{},children:[]};return e.patch(t,n),e.applyData(t,n)}var C4e={blockquote:q2e,break:J2e,code:Y2e,delete:X2e,emphasis:Z2e,footnoteReference:Q2e,heading:$2e,html:e4e,imageReference:n4e,image:r4e,inlineCode:i4e,linkReference:a4e,link:o4e,listItem:s4e,list:u4e,paragraph:d4e,root:f4e,strong:p4e,table:m4e,tableCell:g4e,tableRow:h4e,text:x4e,thematicBreak:S4e,toml:R9,yaml:R9,definition:R9,footnoteDefinition:R9};function R9(){}var z9={}.hasOwnProperty,w4e={};function T4e(e,t){let n=t||w4e,r=new Map,i=new Map,a={all:s,applyData:D4e,definitionById:r,footnoteById:i,footnoteCounts:new Map,footnoteOrder:[],handlers:{...C4e,...n.handlers},one:o,options:n,patch:E4e,wrap:k4e};return K2e(e,function(e){if(e.type===`definition`||e.type===`footnoteDefinition`){let t=e.type===`definition`?r:i,n=String(e.identifier).toUpperCase();t.has(n)||t.set(n,e)}}),a;function o(e,t){let n=e.type,r=a.handlers[n];if(z9.call(a.handlers,n)&&r)return r(a,e,t);if(a.options.passThrough&&a.options.passThrough.includes(n)){if(`children`in e){let{children:t,...n}=e,r=F9(n);return r.children=a.all(e),r}return F9(e)}return(a.options.unknownHandler||O4e)(a,e,t)}function s(e){let t=[];if(`children`in e){let n=e.children,r=-1;for(;++r0&&n.push({type:`text`,value:` -`}),n}function O4e(e){let t=0,n=e.charCodeAt(t);for(;n===9||n===32;)t++,n=e.charCodeAt(t);return e.slice(t)}function k4e(e,t){let n=C4e(e,t),r=n.one(e,void 0),i=N2e(n),a=Array.isArray(r)?{type:`root`,children:r}:r||{type:`root`,children:[]};return i&&(`children`in a,a.children.push({type:`text`,value:` -`},i)),a}function A4e(e,t){return e&&`run`in e?async function(n,r){let i=k4e(n,{file:r,...t});await e.run(i,r)}:function(n,r){return k4e(n,{file:r,...e||t})}}function j4e(e){if(e)throw e}var M4e=o(((e,t)=>{var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,i=Object.defineProperty,a=Object.getOwnPropertyDescriptor,o=function(e){return typeof Array.isArray==`function`?Array.isArray(e):r.call(e)===`[object Array]`},s=function(e){if(!e||r.call(e)!==`[object Object]`)return!1;var t=n.call(e,`constructor`),i=e.constructor&&e.constructor.prototype&&n.call(e.constructor.prototype,`isPrototypeOf`);if(e.constructor&&!t&&!i)return!1;for(var a in e);return a===void 0||n.call(e,a)},c=function(e,t){i&&t.name===`__proto__`?i(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},l=function(e,t){if(t===`__proto__`){if(!n.call(e,t))return;if(a)return a(e,t).value}return e[t]};t.exports=function e(){var t,n,r,i,a,u,d=arguments[0],f=1,p=arguments.length,m=!1;for(typeof d==`boolean`&&(m=d,d=arguments[1]||{},f=2),(d==null||typeof d!=`object`&&typeof d!=`function`)&&(d={});ft.length,o;r&&t.push(i);try{o=e.apply(this,t)}catch(e){let t=e;if(r&&n)throw t;return i(t)}r||(o&&o.then&&typeof o.then==`function`?o.then(a,i):o instanceof Error?i(o):a(o))}function i(e,...r){n||(n=!0,t(e,...r))}function a(e){i(null,e)}}var V9={basename:F4e,dirname:I4e,extname:L4e,join:R4e,sep:`/`};function F4e(e,t){if(t!==void 0&&typeof t!=`string`)throw TypeError(`"ext" argument must be a string`);H9(e);let n=0,r=-1,i=e.length,a;if(t===void 0||t.length===0||t.length>e.length){for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else r<0&&(a=!0,r=i+1);return r<0?``:e.slice(n,r)}if(t===e)return``;let o=-1,s=t.length-1;for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else o<0&&(a=!0,o=i+1),s>-1&&(e.codePointAt(i)===t.codePointAt(s--)?s<0&&(r=i):(s=-1,r=o));return n===r?r=o:r<0&&(r=e.length),e.slice(n,r)}function I4e(e){if(H9(e),e.length===0)return`.`;let t=-1,n=e.length,r;for(;--n;)if(e.codePointAt(n)===47){if(r){t=n;break}}else r||=!0;return t<0?e.codePointAt(0)===47?`/`:`.`:t===1&&e.codePointAt(0)===47?`//`:e.slice(0,t)}function L4e(e){H9(e);let t=e.length,n=-1,r=0,i=-1,a=0,o;for(;t--;){let s=e.codePointAt(t);if(s===47){if(o){r=t+1;break}continue}n<0&&(o=!0,n=t+1),s===46?i<0?i=t:a!==1&&(a=1):i>-1&&(a=-1)}return i<0||n<0||a===0||a===1&&i===n-1&&i===r+1?``:e.slice(i,n)}function R4e(...e){let t=-1,n;for(;++t0&&e.codePointAt(e.length-1)===47&&(n+=`/`),t?`/`+n:n}function B4e(e,t){let n=``,r=0,i=-1,a=0,o=-1,s,c;for(;++o<=e.length;){if(o2){if(c=n.lastIndexOf(`/`),c!==n.length-1){c<0?(n=``,r=0):(n=n.slice(0,c),r=n.length-1-n.lastIndexOf(`/`)),i=o,a=0;continue}}else if(n.length>0){n=``,r=0,i=o,a=0;continue}}t&&(n=n.length>0?n+`/..`:`..`,r=2)}else n.length>0?n+=`/`+e.slice(i+1,o):n=e.slice(i+1,o),r=o-i-1;i=o,a=0}else s===46&&a>-1?a++:a=-1}return n}function H9(e){if(typeof e!=`string`)throw TypeError(`Path must be a string. Received `+JSON.stringify(e))}var V4e={cwd:H4e};function H4e(){return`/`}function U9(e){return!!(typeof e==`object`&&e&&`href`in e&&e.href&&`protocol`in e&&e.protocol&&e.auth===void 0)}function U4e(e){if(typeof e==`string`)e=new URL(e);else if(!U9(e)){let t=TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw t.code=`ERR_INVALID_ARG_TYPE`,t}if(e.protocol!==`file:`){let e=TypeError(`The URL must be of scheme file`);throw e.code=`ERR_INVALID_URL_SCHEME`,e}return W4e(e)}function W4e(e){if(e.hostname!==``){let e=TypeError(`File URL host must be "localhost" or empty on darwin`);throw e.code=`ERR_INVALID_FILE_URL_HOST`,e}let t=e.pathname,n=-1;for(;++n0){let[r,...a]=t,o=n[i][1];B9(o)&&B9(r)&&(r=(0,q9.default)(!0,o,r)),n[i]=[e,r,...a]}}}}().freeze();function J9(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `parser`")}function Y9(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `compiler`")}function X9(e,t){if(t)throw Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function Z4e(e){if(!B9(e)||typeof e.type!=`string`)throw TypeError("Expected node, got `"+e+"`")}function Q4e(e,t,n){if(!n)throw Error("`"+e+"` finished async. Use `"+t+"` instead")}function Z9(e){return $4e(e)?e:new G4e(e)}function $4e(e){return!!(e&&typeof e==`object`&&`message`in e&&`messages`in e)}function e3e(e){return typeof e==`string`||t3e(e)}function t3e(e){return!!(e&&typeof e==`object`&&`byteLength`in e&&`byteOffset`in e)}var n3e=[],r3e={allowDangerousHtml:!0},i3e=/^(https?|ircs?|mailto|xmpp)$/i,a3e=[{from:`astPlugins`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowDangerousHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowNode`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowElement`},{from:`allowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowedElements`},{from:`className`,id:`remove-classname`},{from:`disallowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`disallowedElements`},{from:`escapeHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`includeElementIndex`,id:`#remove-includeelementindex`},{from:`includeNodeIndex`,id:`change-includenodeindex-to-includeelementindex`},{from:`linkTarget`,id:`remove-linktarget`},{from:`plugins`,id:`change-plugins-to-remarkplugins`,to:`remarkPlugins`},{from:`rawSourcePos`,id:`#remove-rawsourcepos`},{from:`renderers`,id:`change-renderers-to-components`,to:`components`},{from:`source`,id:`change-source-to-children`,to:`children`},{from:`sourcePos`,id:`#remove-sourcepos`},{from:`transformImageUri`,id:`#add-urltransform`,to:`urlTransform`},{from:`transformLinkUri`,id:`#add-urltransform`,to:`urlTransform`}];function o3e(e){let t=s3e(e),n=c3e(e);return l3e(t.runSync(t.parse(n),n),e)}function s3e(e){let t=e.rehypePlugins||n3e,n=e.remarkPlugins||n3e,r=e.remarkRehypeOptions?{...e.remarkRehypeOptions,...r3e}:r3e;return X4e().use(S2e).use(n).use(A4e,r).use(t)}function c3e(e){let t=e.children||``,n=new G4e;return typeof t==`string`?n.value=t:``+t,n}function l3e(e,t){let n=t.allowedElements,r=t.allowElement,i=t.components,a=t.disallowedElements,o=t.skipHtml,s=t.unwrapDisallowed,c=t.urlTransform||u3e;for(let e of a3e)Object.hasOwn(t,e.from)&&``+e.from+(e.to?"use `"+e.to+"` instead":`remove it`)+e.id;return W2e(e,l),D$e(e,{Fragment:Y.Fragment,components:i,ignoreInvalidStyle:!0,jsx:Y.jsx,jsxs:Y.jsxs,passKeys:!0,passNode:!0});function l(e,t,i){if(e.type===`raw`&&i&&typeof t==`number`)return o?i.children.splice(t,1):i.children[t]={type:`text`,value:e.value},t;if(e.type===`element`){let t;for(t in s9)if(Object.hasOwn(s9,t)&&Object.hasOwn(e.properties,t)){let n=e.properties[t],r=s9[t];(r===null||r.includes(e.tagName))&&(e.properties[t]=c(String(n||``),t,e))}}if(e.type===`element`){let o=n?!n.includes(e.tagName):a?a.includes(e.tagName):!1;if(!o&&r&&typeof t==`number`&&(o=!r(e,t,i)),o&&i&&typeof t==`number`)return s&&e.children?i.children.splice(t,1,...e.children):i.children.splice(t,1),t}}}function u3e(e){let t=e.indexOf(`:`),n=e.indexOf(`?`),r=e.indexOf(`#`),i=e.indexOf(`/`);return t===-1||i!==-1&&t>i||n!==-1&&t>n||r!==-1&&t>r||i3e.test(e.slice(0,t))?e:``}function d3e({questionId:e,open:t,onClose:n,onUpdated:r,onDeleted:i}){let[a,o]=(0,h.useState)(null),[s,c]=(0,h.useState)(!1),[l,u]=(0,h.useState)(``),[d,f]=(0,h.useState)(``),[p,m]=(0,h.useState)(``),[g,_]=(0,h.useState)(`annotated`),[v,y]=(0,h.useState)(!1),[b,x]=(0,h.useState)(!1),[S,C]=(0,h.useState)(!1),w=async()=>{c(!0);try{let{data:t}=await hk.get(e);o(t),u(t.question_text||``),f(t.solution_approach||``),m(t.solution_text||``),_(t.has_annotated_image?`annotated`:`original`)}finally{c(!1)}};return(0,h.useEffect)(()=>{t&&e&&w()},[t,e]),(0,Y.jsx)(yx,{title:a?`${a.subject_name}${a.category===`olympiad`?` · 奥数`:``} · 详情`:`详情`,open:t,onCancel:n,width:`90%`,style:{maxWidth:960},footer:(0,Y.jsxs)(Py,{wrap:!0,children:[(0,Y.jsx)(xx,{title:`确定删除该题?`,onConfirm:async()=>{C(!0);try{await hk.remove(e),rx.success(`已删除`),i?.(),n()}catch{rx.error(`删除失败`)}finally{C(!1)}},children:(0,Y.jsx)(_p,{danger:!0,loading:S,children:`删除`})}),(0,Y.jsx)(_p,{onClick:async()=>{await hk.retryOcr(e),rx.info(`已重新识别并标注,请稍后刷新`),r(),n()},children:`重新识别标注`}),(0,Y.jsx)(_p,{loading:b,onClick:async()=>{x(!0);try{let{data:t}=await hk.regenerate(e);o(t),u(t.question_text||``),f(t.solution_approach||``),m(t.solution_text||``),rx.success(`解题思路已重新生成`),r()}catch{rx.error(`生成失败,请检查 AI 模型配置`)}finally{x(!1)}},children:`重新生成思路`}),(0,Y.jsx)(_p,{type:`primary`,loading:v,onClick:async()=>{y(!0);try{await hk.update(e,{question_text:l,solution_approach:d,solution_text:p}),rx.success(`已保存`),r()}finally{y(!1)}},children:`保存编辑`})]}),children:(0,Y.jsx)(TS,{spinning:s,children:a&&(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsxs)(Py,{wrap:!0,style:{marginBottom:8},children:[(0,Y.jsxs)(rE.Text,{type:`secondary`,children:[`状态:`,jk[a.status]]}),a.has_annotated_image&&!a.error_message&&(0,Y.jsx)(rE.Text,{type:`danger`,children:`红色框为自动标注的错误位置`})]}),a.error_message&&(0,Y.jsx)(Rc,{message:`处理失败`,description:a.error_message,type:`error`,showIcon:!0,style:{marginBottom:12}}),a.status===`pending`&&!a.error_message&&(0,Y.jsx)(Rc,{message:`正在识别、标注并生成解题思路,请稍候…`,type:`info`,showIcon:!0,style:{marginBottom:12}}),(a.solution_approach||a.solution_text)&&(0,Y.jsx)(Rc,{message:`AI 识别与标注,请核对后再使用`,type:`warning`,showIcon:!0,style:{margin:`12px 0`}}),(0,Y.jsxs)(Dle,{gutter:16,style:{marginTop:12},children:[(0,Y.jsxs)(bg,{xs:24,md:10,children:[a.has_annotated_image&&(0,Y.jsx)(Ble,{block:!0,style:{marginBottom:8},value:g,onChange:e=>_(e),options:[{label:`标注图`,value:`annotated`},{label:`原图`,value:`original`}]}),(0,Y.jsx)(zQe,{questionId:a.id,variant:g,alt:`原题`,style:{width:`100%`,borderRadius:8,border:`1px solid #f0f0f0`}}),a.ocr_raw_text&&(0,Y.jsxs)(`div`,{style:{marginTop:12},children:[(0,Y.jsx)(rE.Text,{strong:!0,children:`OCR 原文`}),(0,Y.jsx)(`pre`,{style:{background:`#fafafa`,padding:8,fontSize:12,maxHeight:150,overflow:`auto`,whiteSpace:`pre-wrap`},children:a.ocr_raw_text})]})]}),(0,Y.jsxs)(bg,{xs:24,md:14,children:[(0,Y.jsx)(rE.Text,{strong:!0,children:`识别题目(可编辑)`}),(0,Y.jsx)(ib.TextArea,{rows:5,value:l,onChange:e=>u(e.target.value),style:{marginTop:8,marginBottom:16}}),(0,Y.jsx)(rE.Text,{strong:!0,children:`解题思路`}),(0,Y.jsx)(ib.TextArea,{rows:4,value:d,onChange:e=>f(e.target.value),placeholder:`识别完成后自动生成,类似作业帮「解题思路」`,style:{marginTop:8,marginBottom:16}}),d&&(0,Y.jsxs)(`div`,{style:{background:`#e6f4ff`,padding:12,borderRadius:8,marginBottom:16,border:`1px solid #91caff`},children:[(0,Y.jsx)(rE.Text,{type:`secondary`,style:{fontSize:12},children:`思路预览`}),(0,Y.jsx)(o3e,{children:d})]}),(0,Y.jsx)(rE.Text,{strong:!0,children:`详细解答`}),(0,Y.jsx)(ib.TextArea,{rows:8,value:p,onChange:e=>m(e.target.value),style:{marginTop:8,marginBottom:12}}),p&&(0,Y.jsxs)(`div`,{style:{background:`#fafafa`,padding:12,borderRadius:8},children:[(0,Y.jsx)(rE.Text,{type:`secondary`,style:{fontSize:12},children:`解答预览`}),(0,Y.jsx)(o3e,{children:p})]})]})]})]})})})}function f3e(e){return e.error_message?{tone:`error`,text:e.error_message}:e.status===`pending`?{tone:`pending`,text:`正在识别、标注并生成解题思路…`}:{tone:`normal`,text:e.question_text||e.ocr_raw_text||jk[e.status]}}function p3e({items:e,selectedId:t,onSelect:n,onRefresh:r,emptyText:i=`暂无记录`}){let a=async e=>{try{await hk.remove(e),rx.success(`已删除`),t===e&&n(null),r()}catch{rx.error(`删除失败`)}};return(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsx)(`div`,{className:`wq-grid`,children:e.map(e=>{let t=f3e(e);return(0,Y.jsxs)(`div`,{className:`wq-card`,children:[(0,Y.jsxs)(`div`,{className:`wq-card-click`,onClick:()=>n(e.id),children:[(0,Y.jsx)(zQe,{questionId:e.id,variant:`annotated`,alt:`题目`,className:`wq-card-img`}),(0,Y.jsxs)(`div`,{className:`wq-card-body`,children:[(0,Y.jsxs)(Py,{size:4,wrap:!0,children:[(0,Y.jsx)(rE.Text,{strong:!0,children:e.subject_name}),e.category===`olympiad`&&(0,Y.jsx)(PT,{color:`gold`,children:`奥数`}),(0,Y.jsx)(PT,{color:e.error_message||e.status===`failed`?`error`:e.status===`pending`?`processing`:`default`,children:e.error_message?`失败`:jk[e.status]})]}),(0,Y.jsx)(rE.Paragraph,{ellipsis:{rows:3},style:{margin:`8px 0 0`,fontSize:13,color:t.tone===`error`?`#ff4d4f`:t.tone===`pending`?`#1677ff`:void 0},children:t.text})]})]}),(0,Y.jsx)(`div`,{className:`wq-card-actions`,children:(0,Y.jsx)(xx,{title:`确定删除该题?`,onConfirm:()=>a(e.id),children:(0,Y.jsx)(_p,{type:`text`,danger:!0,size:`small`,icon:(0,Y.jsx)(bE,{}),onClick:e=>e.stopPropagation(),children:`删除`})})})]},e.id)})}),e.length===0&&(0,Y.jsx)(rE.Text,{type:`secondary`,children:i}),t&&(0,Y.jsx)(d3e,{questionId:t,open:!!t,onClose:()=>n(null),onUpdated:r,onDeleted:()=>{n(null),r()}})]})}function m3e({studentId:e,subjects:t,category:n,onUploaded:r}){let i=n===`olympiad`,a=(0,h.useMemo)(()=>i?t.filter(e=>e.name===`数学`):t,[t,i]),[o,s]=(0,h.useState)(),[c,l]=(0,h.useState)(!1),u=(0,h.useRef)(null);(0,h.useEffect)(()=>{a.length&&s(a[0].id)},[a]);let d=async t=>{if(!o){rx.warning(i?`未找到数学科目`:`请选择科目`);return}l(!0);try{await hk.upload(e,o,t,n),rx.success(`上传成功,正在识别并生成解法…`),r()}catch{rx.error(`上传失败`)}finally{l(!1)}},f=async e=>(await d(e),!1);return(0,Y.jsxs)(Py,{direction:`vertical`,size:`middle`,style:{width:`100%`,marginBottom:16},children:[i?(0,Y.jsx)(rE.Text,{children:`科目:数学(奥数区仅支持数学)`}):(0,Y.jsx)(gS,{style:{width:`100%`,maxWidth:200},placeholder:`选择科目`,value:o,onChange:s,options:a.map(e=>({value:e.id,label:e.name}))}),(0,Y.jsxs)(Py,{wrap:!0,className:`upload-actions`,children:[(0,Y.jsx)(FE,{beforeUpload:f,showUploadList:!1,accept:`image/*`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(pE,{}),loading:c,type:`primary`,size:`large`,children:`相册选图`})}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(bxe,{}),loading:c,size:`large`,onClick:()=>u.current?.click(),children:`拍照上传`}),(0,Y.jsx)(`input`,{ref:u,type:`file`,accept:`image/*`,capture:`environment`,style:{display:`none`},onChange:async e=>{let t=e.target.files?.[0];e.target.value=``,t&&await d(t)}}),!i&&(0,Y.jsx)(FE,{beforeUpload:f,showUploadList:!1,accept:`image/*`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Oxe,{}),loading:c,size:`large`,children:`上传图片`})})]}),i&&(0,Y.jsx)(`span`,{style:{color:`#666`,fontSize:13},children:`奥数区仅数学,按学生学段(初中/高中)生成解题思路,严禁超纲`})]})}function h3e({subjectId:e,onSubjectChange:t,search:n,onSearchChange:r,onRefresh:i,subjects:a,hideSubjectFilter:o}){return(0,Y.jsxs)(Py,{wrap:!0,style:{marginBottom:16,width:`100%`},children:[!o&&(0,Y.jsx)(gS,{allowClear:!0,style:{width:`100%`,maxWidth:140},placeholder:`全部科目`,value:e,onChange:t,options:a.map(e=>({value:e.id,label:e.name}))}),(0,Y.jsx)(ib.Search,{placeholder:`搜索题目/解法`,value:n,onChange:e=>r(e.target.value),onSearch:()=>i(),style:{width:`100%`,maxWidth:260},allowClear:!0}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Txe,{}),onClick:i,children:`刷新`})]})}var Q9={junior_high:`初中`,senior_high:`高中`},g3e={junior_high:[`初一`,`初二`,`初三`],senior_high:[`高一`,`高二`,`高三`]};function _3e(e){let t=[Q9[e.school_level],e.grade,e.class_name].filter(Boolean);return t.length?t.join(` · `):`未设置学段年级`}var v3e=[`scores`,`overview`,`trend`,`wrong`,`olympiad`];function y3e(){let{id:e}=X_e(),[t,n]=tye(),r=t.get(`tab`),i=v3e.includes(r)?r:`scores`,[a,o]=(0,h.useState)(null),[s,c]=(0,h.useState)([]),[l,u]=(0,h.useState)([]),[d,f]=(0,h.useState)(null),[p,m]=(0,h.useState)(),[g,_]=(0,h.useState)([]),[v,y]=(0,h.useState)([]),[b,x]=(0,h.useState)(),[S,C]=(0,h.useState)(``),[w,T]=(0,h.useState)(``),[E,D]=(0,h.useState)(null),[O,k]=(0,h.useState)(null),[A,j]=(0,h.useState)(!0),M=(0,h.useMemo)(()=>s.find(e=>e.name===`数学`),[s]),N=Object.fromEntries(s.map(e=>[e.id,e.name])),P=(0,h.useCallback)(async()=>{if(!e)return;let{data:t}=await mk.list(e);u(t)},[e]),F=(0,h.useCallback)(async()=>{if(!e||!p)return;let{data:t}=await mk.trend(e,p);f(t)},[e,p]),I=(0,h.useCallback)(async()=>{if(!e)return;let{data:t}=await hk.list(e,{subject_id:b,q:S||void 0,category:`regular`});_(t)},[e,b,S]),L=(0,h.useCallback)(async()=>{if(!e)return;let{data:t}=await hk.list(e,{subject_id:M?.id,q:w||void 0,category:`olympiad`});y(t)},[e,M?.id,w]);(0,h.useEffect)(()=>{if(!e)return;let t=!1;return(async()=>{j(!0);try{let[n,r]=await Promise.all([pk.get(e),mxe.list()]);if(t)return;o(n.data),c(r.data),r.data.length&&m(r.data[0].id);let i=await mk.list(e);t||u(i.data)}finally{t||j(!1)}})(),()=>{t=!0}},[e]),(0,h.useEffect)(()=>{I()},[I]),(0,h.useEffect)(()=>{L()},[L]),(0,h.useEffect)(()=>{F()},[F]);let R=e=>{n({tab:e},{replace:!0})},z=async()=>{if(e)try{let{data:t}=await mk.exportCsv(e),n=URL.createObjectURL(t),r=document.createElement(`a`);r.href=n,r.download=`${a?.name||`student`}_scores.csv`,r.click(),URL.revokeObjectURL(n)}catch{rx.error(`导出失败`)}};if(A)return(0,Y.jsx)(`div`,{style:{textAlign:`center`,padding:80},children:(0,Y.jsx)(TS,{size:`large`})});if(!a)return(0,Y.jsx)(rE.Text,{children:`学生不存在`});let B=Q9[a.school_level];return(0,Y.jsxs)(`div`,{className:`page-container`,children:[(0,Y.jsxs)(Py,{className:`page-header`,wrap:!0,children:[(0,Y.jsx)(RD,{to:`/`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(vxe,{}),children:`返回`})}),(0,Y.jsx)(rE.Title,{level:4,style:{margin:0},children:a.name}),(0,Y.jsx)(PT,{color:a.school_level===`senior_high`?`purple`:`blue`,children:B}),(0,Y.jsx)(rE.Text,{type:`secondary`,children:_3e(a)}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(SE,{}),onClick:z,children:`导出 CSV`})]}),(0,Y.jsx)(sg,{className:`student-tabs`,activeKey:i,onChange:R,destroyInactiveTabPane:!1,items:[{key:`scores`,label:`成绩录入`,children:(0,Y.jsx)(Mxe,{studentId:e,subjects:s,exams:l,onRefresh:P})},{key:`overview`,label:`成绩总览`,children:(0,Y.jsx)(Nxe,{exams:l,subjectNames:N})},{key:`trend`,label:`分科曲线`,children:(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(gS,{style:{width:`100%`,maxWidth:160,marginBottom:16},value:p,onChange:m,options:s.map(e=>({value:e.id,label:e.name}))}),d&&(0,Y.jsx)(RQe,{points:d.points,subjectName:d.subject_name,threshold:d.threshold})]})},{key:`wrong`,label:`错题库`,children:(0,Y.jsxs)(`div`,{children:[(0,Y.jsxs)(rE.Paragraph,{type:`secondary`,style:{marginBottom:12},children:[`上传后自动标注错误位置(红框),并生成解题思路,按`,B,`课内标准解题`]}),(0,Y.jsx)(m3e,{studentId:e,subjects:s,category:`regular`,onUploaded:I}),(0,Y.jsx)(h3e,{subjectId:b,onSubjectChange:x,search:S,onSearchChange:C,onRefresh:I,subjects:s}),(0,Y.jsx)(p3e,{items:g,selectedId:E,onSelect:D,onRefresh:I,emptyText:`暂无错题`})]})},{key:`olympiad`,label:`奥数区`,children:(0,Y.jsxs)(`div`,{children:[(0,Y.jsxs)(rE.Paragraph,{type:`secondary`,style:{marginBottom:12},children:[B,`数学奥数,严格限制在`,B,`奥数培优范围内,禁止超纲`]}),(0,Y.jsx)(m3e,{studentId:e,subjects:s,category:`olympiad`,onUploaded:L}),(0,Y.jsx)(h3e,{search:w,onSearchChange:T,onRefresh:L,subjects:s,hideSubjectFilter:!0}),(0,Y.jsx)(p3e,{items:v,selectedId:O,onSelect:k,onRefresh:L,emptyText:`暂无奥数题`})]})}]})]})}function b3e(){let{user:e,logout:t}=_k(),[n,r]=(0,h.useState)([]),[i,a]=(0,h.useState)(!0),[o,s]=(0,h.useState)(!1),[c]=ky.useForm(),l=ky.useWatch(`school_level`,c),u=async()=>{a(!0);try{let{data:e}=await pk.list();r(e)}finally{a(!1)}};return(0,h.useEffect)(()=>{u()},[]),(0,Y.jsxs)(`div`,{className:`page-container`,children:[(0,Y.jsxs)(`div`,{style:{display:`flex`,justifyContent:`space-between`,alignItems:`center`,marginBottom:24,flexWrap:`wrap`,gap:12},children:[(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(rE.Title,{level:3,style:{margin:0},children:`学生档案`}),(0,Y.jsxs)(rE.Text,{type:`secondary`,children:[`欢迎,`,e?.username]})]}),(0,Y.jsxs)(Py,{wrap:!0,children:[e?.is_superuser&&(0,Y.jsx)(RD,{to:`/settings`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Tk,{}),children:`系统设置`})}),(0,Y.jsx)(_p,{type:`primary`,icon:(0,Y.jsx)(Nm,{}),onClick:()=>{c.setFieldsValue({school_level:`junior_high`,grade:void 0}),s(!0)},children:`添加学生`}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Cxe,{}),onClick:t,children:`退出`})]})]}),(0,Y.jsx)(TS,{spinning:i,children:(0,Y.jsxs)(Dle,{gutter:[16,16],children:[n.map(e=>(0,Y.jsx)(bg,{xs:24,sm:12,md:8,children:(0,Y.jsx)(RD,{to:`/students/${e.id}`,style:{textDecoration:`none`},children:(0,Y.jsx)(lg,{hoverable:!0,children:(0,Y.jsxs)(Py,{align:`start`,children:[(0,Y.jsx)(Ok,{style:{fontSize:24,color:`#1677ff`}}),(0,Y.jsxs)(`div`,{children:[(0,Y.jsxs)(Py,{size:4,children:[(0,Y.jsx)(rE.Text,{strong:!0,children:e.name}),(0,Y.jsx)(PT,{color:e.school_level===`senior_high`?`purple`:`blue`,children:Q9[e.school_level]})]}),(0,Y.jsx)(`br`,{}),(0,Y.jsx)(rE.Text,{type:`secondary`,style:{fontSize:12},children:_3e(e)})]})]})})})},e.id)),!i&&n.length===0&&(0,Y.jsx)(bg,{span:24,children:(0,Y.jsx)(lg,{children:(0,Y.jsx)(rE.Text,{type:`secondary`,children:`暂无学生,点击「添加学生」开始`})})})]})}),(0,Y.jsx)(yx,{title:`添加学生`,open:o,onCancel:()=>s(!1),onOk:async()=>{let e=await c.validateFields();await pk.create(e),rx.success(`学生已添加`),s(!1),c.resetFields(),u()},destroyOnHidden:!0,children:(0,Y.jsxs)(ky,{form:c,layout:`vertical`,initialValues:{school_level:`junior_high`},children:[(0,Y.jsx)(ky.Item,{name:`name`,label:`姓名`,rules:[{required:!0}],children:(0,Y.jsx)(ib,{})}),(0,Y.jsx)(ky.Item,{name:`school_level`,label:`学段`,rules:[{required:!0}],children:(0,Y.jsx)(gS,{options:Object.entries(Q9).map(([e,t])=>({value:e,label:t})),onChange:()=>c.setFieldValue(`grade`,void 0)})}),(0,Y.jsx)(ky.Item,{name:`grade`,label:`年级`,children:(0,Y.jsx)(gS,{allowClear:!0,placeholder:l===`senior_high`?`如:高一`:`如:初二`,options:(g3e[l||`junior_high`]||[]).map(e=>({value:e,label:e}))})}),(0,Y.jsx)(ky.Item,{name:`class_name`,label:`班级`,children:(0,Y.jsx)(ib,{placeholder:`如:3班`})})]})})]})}function $9({children:e}){let{user:t,loading:n}=_k();return n?null:t?(0,Y.jsx)(Y.Fragment,{children:e}):(0,Y.jsx)(wD,{to:`/login`,replace:!0})}function x3e(){return(0,Y.jsxs)(gve,{children:[(0,Y.jsx)(TD,{path:`/login`,element:(0,Y.jsx)(Axe,{})}),(0,Y.jsx)(TD,{path:`/`,element:(0,Y.jsx)($9,{children:(0,Y.jsx)(b3e,{})})}),(0,Y.jsx)(TD,{path:`/students/:id`,element:(0,Y.jsx)($9,{children:(0,Y.jsx)(y3e,{})})}),(0,Y.jsx)(TD,{path:`/settings`,element:(0,Y.jsx)($9,{children:(0,Y.jsx)(jxe,{})})}),(0,Y.jsx)(TD,{path:`*`,element:(0,Y.jsx)(wD,{to:`/`,replace:!0})})]})}(0,vn.createRoot)(document.getElementById(`root`)).render((0,Y.jsx)(h.StrictMode,{children:(0,Y.jsx)(Uu,{locale:fxe.default,children:(0,Y.jsx)(qve,{children:(0,Y.jsx)(gxe,{children:(0,Y.jsx)(x3e,{})})})})})); \ No newline at end of file +`}),n}function A4e(e){let t=0,n=e.charCodeAt(t);for(;n===9||n===32;)t++,n=e.charCodeAt(t);return e.slice(t)}function j4e(e,t){let n=T4e(e,t),r=n.one(e,void 0),i=F2e(n),a=Array.isArray(r)?{type:`root`,children:r}:r||{type:`root`,children:[]};return i&&(`children`in a,a.children.push({type:`text`,value:` +`},i)),a}function M4e(e,t){return e&&`run`in e?async function(n,r){let i=j4e(n,{file:r,...t});await e.run(i,r)}:function(n,r){return j4e(n,{file:r,...e||t})}}function N4e(e){if(e)throw e}var P4e=o(((e,t)=>{var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,i=Object.defineProperty,a=Object.getOwnPropertyDescriptor,o=function(e){return typeof Array.isArray==`function`?Array.isArray(e):r.call(e)===`[object Array]`},s=function(e){if(!e||r.call(e)!==`[object Object]`)return!1;var t=n.call(e,`constructor`),i=e.constructor&&e.constructor.prototype&&n.call(e.constructor.prototype,`isPrototypeOf`);if(e.constructor&&!t&&!i)return!1;for(var a in e);return a===void 0||n.call(e,a)},c=function(e,t){i&&t.name===`__proto__`?i(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},l=function(e,t){if(t===`__proto__`){if(!n.call(e,t))return;if(a)return a(e,t).value}return e[t]};t.exports=function e(){var t,n,r,i,a,u,d=arguments[0],f=1,p=arguments.length,m=!1;for(typeof d==`boolean`&&(m=d,d=arguments[1]||{},f=2),(d==null||typeof d!=`object`&&typeof d!=`function`)&&(d={});ft.length,o;r&&t.push(i);try{o=e.apply(this,t)}catch(e){let t=e;if(r&&n)throw t;return i(t)}r||(o&&o.then&&typeof o.then==`function`?o.then(a,i):o instanceof Error?i(o):a(o))}function i(e,...r){n||(n=!0,t(e,...r))}function a(e){i(null,e)}}var V9={basename:L4e,dirname:R4e,extname:z4e,join:B4e,sep:`/`};function L4e(e,t){if(t!==void 0&&typeof t!=`string`)throw TypeError(`"ext" argument must be a string`);H9(e);let n=0,r=-1,i=e.length,a;if(t===void 0||t.length===0||t.length>e.length){for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else r<0&&(a=!0,r=i+1);return r<0?``:e.slice(n,r)}if(t===e)return``;let o=-1,s=t.length-1;for(;i--;)if(e.codePointAt(i)===47){if(a){n=i+1;break}}else o<0&&(a=!0,o=i+1),s>-1&&(e.codePointAt(i)===t.codePointAt(s--)?s<0&&(r=i):(s=-1,r=o));return n===r?r=o:r<0&&(r=e.length),e.slice(n,r)}function R4e(e){if(H9(e),e.length===0)return`.`;let t=-1,n=e.length,r;for(;--n;)if(e.codePointAt(n)===47){if(r){t=n;break}}else r||=!0;return t<0?e.codePointAt(0)===47?`/`:`.`:t===1&&e.codePointAt(0)===47?`//`:e.slice(0,t)}function z4e(e){H9(e);let t=e.length,n=-1,r=0,i=-1,a=0,o;for(;t--;){let s=e.codePointAt(t);if(s===47){if(o){r=t+1;break}continue}n<0&&(o=!0,n=t+1),s===46?i<0?i=t:a!==1&&(a=1):i>-1&&(a=-1)}return i<0||n<0||a===0||a===1&&i===n-1&&i===r+1?``:e.slice(i,n)}function B4e(...e){let t=-1,n;for(;++t0&&e.codePointAt(e.length-1)===47&&(n+=`/`),t?`/`+n:n}function H4e(e,t){let n=``,r=0,i=-1,a=0,o=-1,s,c;for(;++o<=e.length;){if(o2){if(c=n.lastIndexOf(`/`),c!==n.length-1){c<0?(n=``,r=0):(n=n.slice(0,c),r=n.length-1-n.lastIndexOf(`/`)),i=o,a=0;continue}}else if(n.length>0){n=``,r=0,i=o,a=0;continue}}t&&(n=n.length>0?n+`/..`:`..`,r=2)}else n.length>0?n+=`/`+e.slice(i+1,o):n=e.slice(i+1,o),r=o-i-1;i=o,a=0}else s===46&&a>-1?a++:a=-1}return n}function H9(e){if(typeof e!=`string`)throw TypeError(`Path must be a string. Received `+JSON.stringify(e))}var U4e={cwd:W4e};function W4e(){return`/`}function U9(e){return!!(typeof e==`object`&&e&&`href`in e&&e.href&&`protocol`in e&&e.protocol&&e.auth===void 0)}function G4e(e){if(typeof e==`string`)e=new URL(e);else if(!U9(e)){let t=TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw t.code=`ERR_INVALID_ARG_TYPE`,t}if(e.protocol!==`file:`){let e=TypeError(`The URL must be of scheme file`);throw e.code=`ERR_INVALID_URL_SCHEME`,e}return K4e(e)}function K4e(e){if(e.hostname!==``){let e=TypeError(`File URL host must be "localhost" or empty on darwin`);throw e.code=`ERR_INVALID_FILE_URL_HOST`,e}let t=e.pathname,n=-1;for(;++n0){let[r,...a]=t,o=n[i][1];B9(o)&&B9(r)&&(r=(0,q9.default)(!0,o,r)),n[i]=[e,r,...a]}}}}().freeze();function J9(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `parser`")}function Y9(e,t){if(typeof t!=`function`)throw TypeError("Cannot `"+e+"` without `compiler`")}function X9(e,t){if(t)throw Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function $4e(e){if(!B9(e)||typeof e.type!=`string`)throw TypeError("Expected node, got `"+e+"`")}function e3e(e,t,n){if(!n)throw Error("`"+e+"` finished async. Use `"+t+"` instead")}function Z9(e){return t3e(e)?e:new q4e(e)}function t3e(e){return!!(e&&typeof e==`object`&&`message`in e&&`messages`in e)}function n3e(e){return typeof e==`string`||r3e(e)}function r3e(e){return!!(e&&typeof e==`object`&&`byteLength`in e&&`byteOffset`in e)}var i3e=[],a3e={allowDangerousHtml:!0},o3e=/^(https?|ircs?|mailto|xmpp)$/i,s3e=[{from:`astPlugins`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowDangerousHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`allowNode`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowElement`},{from:`allowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`allowedElements`},{from:`className`,id:`remove-classname`},{from:`disallowedTypes`,id:`replace-allownode-allowedtypes-and-disallowedtypes`,to:`disallowedElements`},{from:`escapeHtml`,id:`remove-buggy-html-in-markdown-parser`},{from:`includeElementIndex`,id:`#remove-includeelementindex`},{from:`includeNodeIndex`,id:`change-includenodeindex-to-includeelementindex`},{from:`linkTarget`,id:`remove-linktarget`},{from:`plugins`,id:`change-plugins-to-remarkplugins`,to:`remarkPlugins`},{from:`rawSourcePos`,id:`#remove-rawsourcepos`},{from:`renderers`,id:`change-renderers-to-components`,to:`components`},{from:`source`,id:`change-source-to-children`,to:`children`},{from:`sourcePos`,id:`#remove-sourcepos`},{from:`transformImageUri`,id:`#add-urltransform`,to:`urlTransform`},{from:`transformLinkUri`,id:`#add-urltransform`,to:`urlTransform`}];function c3e(e){let t=l3e(e),n=u3e(e);return d3e(t.runSync(t.parse(n),n),e)}function l3e(e){let t=e.rehypePlugins||i3e,n=e.remarkPlugins||i3e,r=e.remarkRehypeOptions?{...e.remarkRehypeOptions,...a3e}:a3e;return Q4e().use(w2e).use(n).use(M4e,r).use(t)}function u3e(e){let t=e.children||``,n=new q4e;return typeof t==`string`?n.value=t:``+t,n}function d3e(e,t){let n=t.allowedElements,r=t.allowElement,i=t.components,a=t.disallowedElements,o=t.skipHtml,s=t.unwrapDisallowed,c=t.urlTransform||f3e;for(let e of s3e)Object.hasOwn(t,e.from)&&``+e.from+(e.to?"use `"+e.to+"` instead":`remove it`)+e.id;return K2e(e,l),k$e(e,{Fragment:Y.Fragment,components:i,ignoreInvalidStyle:!0,jsx:Y.jsx,jsxs:Y.jsxs,passKeys:!0,passNode:!0});function l(e,t,i){if(e.type===`raw`&&i&&typeof t==`number`)return o?i.children.splice(t,1):i.children[t]={type:`text`,value:e.value},t;if(e.type===`element`){let t;for(t in s9)if(Object.hasOwn(s9,t)&&Object.hasOwn(e.properties,t)){let n=e.properties[t],r=s9[t];(r===null||r.includes(e.tagName))&&(e.properties[t]=c(String(n||``),t,e))}}if(e.type===`element`){let o=n?!n.includes(e.tagName):a?a.includes(e.tagName):!1;if(!o&&r&&typeof t==`number`&&(o=!r(e,t,i)),o&&i&&typeof t==`number`)return s&&e.children?i.children.splice(t,1,...e.children):i.children.splice(t,1),t}}}function f3e(e){let t=e.indexOf(`:`),n=e.indexOf(`?`),r=e.indexOf(`#`),i=e.indexOf(`/`);return t===-1||i!==-1&&t>i||n!==-1&&t>n||r!==-1&&t>r||o3e.test(e.slice(0,t))?e:``}function p3e({questionId:e,open:t,onClose:n,onUpdated:r,onDeleted:i}){let[a,o]=(0,h.useState)(null),[s,c]=(0,h.useState)(!1),[l,u]=(0,h.useState)(``),[d,f]=(0,h.useState)(``),[p,m]=(0,h.useState)(``),[g,_]=(0,h.useState)(`annotated`),[v,y]=(0,h.useState)(!1),[b,x]=(0,h.useState)(!1),[S,C]=(0,h.useState)(!1),w=async()=>{c(!0);try{let{data:t}=await hk.get(e);o(t),u(t.question_text||``),f(t.solution_approach||``),m(t.solution_text||``),_(t.has_annotated_image?`annotated`:`original`)}finally{c(!1)}};return(0,h.useEffect)(()=>{t&&e&&w()},[t,e]),(0,h.useEffect)(()=>{if(!t||!a||!P7(a))return;let n=window.setInterval(async()=>{try{let{data:t}=await hk.get(e);o(t),u(t.question_text||``),f(t.solution_approach||``),m(t.solution_text||``),t.has_annotated_image&&_(`annotated`),P7(t)||r()}catch{}},4e3);return()=>window.clearInterval(n)},[t,e,a?.status,a?.question_text,a?.error_message]),(0,Y.jsx)(yx,{title:a?`${a.subject_name}${a.category===`olympiad`?` · 奥数`:``} · 详情`:`详情`,open:t,onCancel:n,width:`90%`,style:{maxWidth:960},footer:(0,Y.jsxs)(Py,{wrap:!0,children:[(0,Y.jsx)(xx,{title:`确定删除该题?`,onConfirm:async()=>{C(!0);try{await hk.remove(e),rx.success(`已删除`),i?.(),n()}catch{rx.error(`删除失败`)}finally{C(!1)}},children:(0,Y.jsx)(_p,{danger:!0,loading:S,children:`删除`})}),(0,Y.jsx)(_p,{onClick:async()=>{await hk.retryOcr(e),rx.info(`已重新识别并标注,请稍后刷新`),r(),n()},children:`重新识别标注`}),(0,Y.jsx)(_p,{loading:b,onClick:async()=>{x(!0);try{let{data:t}=await hk.regenerate(e);o(t),u(t.question_text||``),f(t.solution_approach||``),m(t.solution_text||``),rx.success(`解题思路已重新生成`),r()}catch{rx.error(`生成失败,请检查 AI 模型配置`)}finally{x(!1)}},children:`重新生成思路`}),(0,Y.jsx)(_p,{type:`primary`,loading:v,onClick:async()=>{y(!0);try{await hk.update(e,{question_text:l,solution_approach:d,solution_text:p}),rx.success(`已保存`),r()}finally{y(!1)}},children:`保存编辑`})]}),children:(0,Y.jsx)(TS,{spinning:s,children:a&&(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsxs)(Py,{wrap:!0,style:{marginBottom:8},children:[(0,Y.jsxs)(rE.Text,{type:`secondary`,children:[`状态:`,jk[a.status]]}),a.has_annotated_image&&!a.error_message&&(0,Y.jsx)(rE.Text,{type:`danger`,children:`红色框为自动标注的错误位置`})]}),a.error_message&&(0,Y.jsx)(Rc,{message:`处理失败`,description:a.error_message,type:`error`,showIcon:!0,style:{marginBottom:12}}),a.status===`pending`&&!a.error_message&&(0,Y.jsx)(Rc,{message:F7(a),type:`info`,showIcon:!0,style:{marginBottom:12}}),a.status===`ocr_done`&&!a.question_text&&!a.error_message&&(0,Y.jsx)(Rc,{message:F7(a),type:`info`,showIcon:!0,style:{marginBottom:12}}),(a.solution_approach||a.solution_text)&&(0,Y.jsx)(Rc,{message:`AI 识别与标注,请核对后再使用`,type:`warning`,showIcon:!0,style:{margin:`12px 0`}}),(0,Y.jsxs)(Dle,{gutter:16,style:{marginTop:12},children:[(0,Y.jsxs)(bg,{xs:24,md:10,children:[a.has_annotated_image&&(0,Y.jsx)(Ble,{block:!0,style:{marginBottom:8},value:g,onChange:e=>_(e),options:[{label:`标注图`,value:`annotated`},{label:`原图`,value:`original`}]}),(0,Y.jsx)(I7,{questionId:a.id,variant:g,alt:`原题`,style:{width:`100%`,borderRadius:8,border:`1px solid #f0f0f0`}}),a.ocr_raw_text&&(0,Y.jsxs)(`div`,{style:{marginTop:12},children:[(0,Y.jsx)(rE.Text,{strong:!0,children:`OCR 原文`}),(0,Y.jsx)(`pre`,{style:{background:`#fafafa`,padding:8,fontSize:12,maxHeight:150,overflow:`auto`,whiteSpace:`pre-wrap`},children:a.ocr_raw_text})]})]}),(0,Y.jsxs)(bg,{xs:24,md:14,children:[(0,Y.jsx)(rE.Text,{strong:!0,children:`识别题目(可编辑)`}),(0,Y.jsx)(ib.TextArea,{rows:5,value:l,onChange:e=>u(e.target.value),style:{marginTop:8,marginBottom:16}}),(0,Y.jsx)(rE.Text,{strong:!0,children:`解题思路`}),(0,Y.jsx)(ib.TextArea,{rows:4,value:d,onChange:e=>f(e.target.value),placeholder:`识别完成后自动生成,类似作业帮「解题思路」`,style:{marginTop:8,marginBottom:16}}),d&&(0,Y.jsxs)(`div`,{style:{background:`#e6f4ff`,padding:12,borderRadius:8,marginBottom:16,border:`1px solid #91caff`},children:[(0,Y.jsx)(rE.Text,{type:`secondary`,style:{fontSize:12},children:`思路预览`}),(0,Y.jsx)(c3e,{children:d})]}),(0,Y.jsx)(rE.Text,{strong:!0,children:`详细解答`}),(0,Y.jsx)(ib.TextArea,{rows:8,value:p,onChange:e=>m(e.target.value),style:{marginTop:8,marginBottom:12}}),p&&(0,Y.jsxs)(`div`,{style:{background:`#fafafa`,padding:12,borderRadius:8},children:[(0,Y.jsx)(rE.Text,{type:`secondary`,style:{fontSize:12},children:`解答预览`}),(0,Y.jsx)(c3e,{children:p})]})]})]})]})})})}function m3e(e){return e.error_message?{tone:`error`,text:e.error_message}:P7(e)?{tone:`pending`,text:F7(e)}:{tone:`normal`,text:e.question_text||e.ocr_raw_text||jk[e.status]}}function h3e({items:e,selectedId:t,onSelect:n,onRefresh:r,emptyText:i=`暂无记录`,pollWhenProcessing:a=!0}){let o=a&&e.some(P7);(0,h.useEffect)(()=>{if(!o)return;let e=window.setInterval(()=>r(),4e3);return()=>window.clearInterval(e)},[o,r]);let s=async e=>{try{await hk.remove(e),rx.success(`已删除`),t===e&&n(null),r()}catch{rx.error(`删除失败`)}};return(0,Y.jsxs)(Y.Fragment,{children:[(0,Y.jsx)(`div`,{className:`wq-grid`,children:e.map(e=>{let t=m3e(e);return(0,Y.jsxs)(`div`,{className:`wq-card`,children:[(0,Y.jsxs)(`div`,{className:`wq-card-click`,onClick:()=>n(e.id),children:[(0,Y.jsx)(I7,{questionId:e.id,variant:`annotated`,alt:`题目`,className:`wq-card-img`}),(0,Y.jsxs)(`div`,{className:`wq-card-body`,children:[(0,Y.jsxs)(Py,{size:4,wrap:!0,children:[(0,Y.jsx)(rE.Text,{strong:!0,children:e.subject_name}),e.category===`olympiad`&&(0,Y.jsx)(PT,{color:`gold`,children:`奥数`}),(0,Y.jsx)(PT,{color:e.error_message||e.status===`failed`?`error`:P7(e)?`processing`:`default`,children:e.error_message?`失败`:jk[e.status]})]}),(0,Y.jsx)(rE.Paragraph,{ellipsis:{rows:3},style:{margin:`8px 0 0`,fontSize:13,color:t.tone===`error`?`#ff4d4f`:t.tone===`pending`?`#1677ff`:void 0},children:t.text})]})]}),(0,Y.jsx)(`div`,{className:`wq-card-actions`,children:(0,Y.jsx)(xx,{title:`确定删除该题?`,onConfirm:()=>s(e.id),children:(0,Y.jsx)(_p,{type:`text`,danger:!0,size:`small`,icon:(0,Y.jsx)(bE,{}),onClick:e=>e.stopPropagation(),children:`删除`})})})]},e.id)})}),e.length===0&&(0,Y.jsx)(rE.Text,{type:`secondary`,children:i}),t&&(0,Y.jsx)(p3e,{questionId:t,open:!!t,onClose:()=>n(null),onUpdated:r,onDeleted:()=>{n(null),r()}})]})}function g3e({studentId:e,subjects:t,category:n,onUploaded:r}){let i=n===`olympiad`,a=(0,h.useMemo)(()=>i?t.filter(e=>e.name===`数学`):t,[t,i]),[o,s]=(0,h.useState)(),[c,l]=(0,h.useState)(!1),u=(0,h.useRef)(null);(0,h.useEffect)(()=>{a.length&&s(a[0].id)},[a]);let d=async t=>{if(!o){rx.warning(i?`未找到数学科目`:`请选择科目`);return}l(!0);try{await hk.upload(e,o,t,n),rx.success(`上传成功,正在识别并生成解法…`),r()}catch{rx.error(`上传失败`)}finally{l(!1)}},f=async e=>(await d(e),!1);return(0,Y.jsxs)(Py,{direction:`vertical`,size:`middle`,style:{width:`100%`,marginBottom:16},children:[i?(0,Y.jsx)(rE.Text,{children:`科目:数学(奥数区仅支持数学)`}):(0,Y.jsx)(gS,{style:{width:`100%`,maxWidth:200},placeholder:`选择科目`,value:o,onChange:s,options:a.map(e=>({value:e.id,label:e.name}))}),(0,Y.jsxs)(Py,{wrap:!0,className:`upload-actions`,children:[(0,Y.jsx)(FE,{beforeUpload:f,showUploadList:!1,accept:`image/*`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(pE,{}),loading:c,type:`primary`,size:`large`,children:`相册选图`})}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(bxe,{}),loading:c,size:`large`,onClick:()=>u.current?.click(),children:`拍照上传`}),(0,Y.jsx)(`input`,{ref:u,type:`file`,accept:`image/*`,capture:`environment`,style:{display:`none`},onChange:async e=>{let t=e.target.files?.[0];e.target.value=``,t&&await d(t)}}),!i&&(0,Y.jsx)(FE,{beforeUpload:f,showUploadList:!1,accept:`image/*`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Oxe,{}),loading:c,size:`large`,children:`上传图片`})})]}),i&&(0,Y.jsx)(`span`,{style:{color:`#666`,fontSize:13},children:`奥数区仅数学,按学生学段(初中/高中)生成解题思路,严禁超纲`})]})}function _3e({subjectId:e,onSubjectChange:t,search:n,onSearchChange:r,onRefresh:i,subjects:a,hideSubjectFilter:o}){return(0,Y.jsxs)(Py,{wrap:!0,style:{marginBottom:16,width:`100%`},children:[!o&&(0,Y.jsx)(gS,{allowClear:!0,style:{width:`100%`,maxWidth:140},placeholder:`全部科目`,value:e,onChange:t,options:a.map(e=>({value:e.id,label:e.name}))}),(0,Y.jsx)(ib.Search,{placeholder:`搜索题目/解法`,value:n,onChange:e=>r(e.target.value),onSearch:()=>i(),style:{width:`100%`,maxWidth:260},allowClear:!0}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Txe,{}),onClick:i,children:`刷新`})]})}var Q9={junior_high:`初中`,senior_high:`高中`},v3e={junior_high:[`初一`,`初二`,`初三`],senior_high:[`高一`,`高二`,`高三`]};function y3e(e){let t=[Q9[e.school_level],e.grade,e.class_name].filter(Boolean);return t.length?t.join(` · `):`未设置学段年级`}var b3e=[`scores`,`overview`,`trend`,`wrong`,`olympiad`];function x3e(){let{id:e}=X_e(),[t,n]=tye(),r=t.get(`tab`),i=b3e.includes(r)?r:`scores`,[a,o]=(0,h.useState)(null),[s,c]=(0,h.useState)([]),[l,u]=(0,h.useState)([]),[d,f]=(0,h.useState)(null),[p,m]=(0,h.useState)(),[g,_]=(0,h.useState)([]),[v,y]=(0,h.useState)([]),[b,x]=(0,h.useState)(),[S,C]=(0,h.useState)(``),[w,T]=(0,h.useState)(``),[E,D]=(0,h.useState)(null),[O,k]=(0,h.useState)(null),[A,j]=(0,h.useState)(!0),M=(0,h.useMemo)(()=>s.find(e=>e.name===`数学`),[s]),N=Object.fromEntries(s.map(e=>[e.id,e.name])),P=(0,h.useCallback)(async()=>{if(!e)return;let{data:t}=await mk.list(e);u(t)},[e]),F=(0,h.useCallback)(async()=>{if(!e||!p)return;let{data:t}=await mk.trend(e,p);f(t)},[e,p]),I=(0,h.useCallback)(async()=>{if(!e)return;let{data:t}=await hk.list(e,{subject_id:b,q:S||void 0,category:`regular`});_(t)},[e,b,S]),L=(0,h.useCallback)(async()=>{if(!e)return;let{data:t}=await hk.list(e,{subject_id:M?.id,q:w||void 0,category:`olympiad`});y(t)},[e,M?.id,w]);(0,h.useEffect)(()=>{if(!e)return;let t=!1;return(async()=>{j(!0);try{let[n,r]=await Promise.all([pk.get(e),mxe.list()]);if(t)return;o(n.data),c(r.data),r.data.length&&m(r.data[0].id);let i=await mk.list(e);t||u(i.data)}finally{t||j(!1)}})(),()=>{t=!0}},[e]),(0,h.useEffect)(()=>{I()},[I]),(0,h.useEffect)(()=>{L()},[L]),(0,h.useEffect)(()=>{F()},[F]);let R=e=>{n({tab:e},{replace:!0})},z=async()=>{if(e)try{let{data:t}=await mk.exportCsv(e),n=URL.createObjectURL(t),r=document.createElement(`a`);r.href=n,r.download=`${a?.name||`student`}_scores.csv`,r.click(),URL.revokeObjectURL(n)}catch{rx.error(`导出失败`)}};if(A)return(0,Y.jsx)(`div`,{style:{textAlign:`center`,padding:80},children:(0,Y.jsx)(TS,{size:`large`})});if(!a)return(0,Y.jsx)(rE.Text,{children:`学生不存在`});let B=Q9[a.school_level];return(0,Y.jsxs)(`div`,{className:`page-container`,children:[(0,Y.jsxs)(Py,{className:`page-header`,wrap:!0,children:[(0,Y.jsx)(RD,{to:`/`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(vxe,{}),children:`返回`})}),(0,Y.jsx)(rE.Title,{level:4,style:{margin:0},children:a.name}),(0,Y.jsx)(PT,{color:a.school_level===`senior_high`?`purple`:`blue`,children:B}),(0,Y.jsx)(rE.Text,{type:`secondary`,children:y3e(a)}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(SE,{}),onClick:z,children:`导出 CSV`})]}),(0,Y.jsx)(sg,{className:`student-tabs`,activeKey:i,onChange:R,destroyInactiveTabPane:!1,items:[{key:`scores`,label:`成绩录入`,children:(0,Y.jsx)(Mxe,{studentId:e,subjects:s,exams:l,onRefresh:P})},{key:`overview`,label:`成绩总览`,children:(0,Y.jsx)(Nxe,{exams:l,subjectNames:N})},{key:`trend`,label:`分科曲线`,children:(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(gS,{style:{width:`100%`,maxWidth:160,marginBottom:16},value:p,onChange:m,options:s.map(e=>({value:e.id,label:e.name}))}),d&&(0,Y.jsx)(BQe,{points:d.points,subjectName:d.subject_name,threshold:d.threshold})]})},{key:`wrong`,label:`错题库`,children:(0,Y.jsxs)(`div`,{children:[(0,Y.jsxs)(rE.Paragraph,{type:`secondary`,style:{marginBottom:12},children:[`上传后自动标注错误位置(红框),并生成解题思路,按`,B,`课内标准解题`]}),(0,Y.jsx)(g3e,{studentId:e,subjects:s,category:`regular`,onUploaded:I}),(0,Y.jsx)(_3e,{subjectId:b,onSubjectChange:x,search:S,onSearchChange:C,onRefresh:I,subjects:s}),(0,Y.jsx)(h3e,{items:g,selectedId:E,onSelect:D,onRefresh:I,emptyText:`暂无错题`})]})},{key:`olympiad`,label:`奥数区`,children:(0,Y.jsxs)(`div`,{children:[(0,Y.jsxs)(rE.Paragraph,{type:`secondary`,style:{marginBottom:12},children:[B,`数学奥数,严格限制在`,B,`奥数培优范围内,禁止超纲`]}),(0,Y.jsx)(g3e,{studentId:e,subjects:s,category:`olympiad`,onUploaded:L}),(0,Y.jsx)(_3e,{search:w,onSearchChange:T,onRefresh:L,subjects:s,hideSubjectFilter:!0}),(0,Y.jsx)(h3e,{items:v,selectedId:O,onSelect:k,onRefresh:L,emptyText:`暂无奥数题`})]})}]})]})}function S3e(){let{user:e,logout:t}=_k(),[n,r]=(0,h.useState)([]),[i,a]=(0,h.useState)(!0),[o,s]=(0,h.useState)(!1),[c]=ky.useForm(),l=ky.useWatch(`school_level`,c),u=async()=>{a(!0);try{let{data:e}=await pk.list();r(e)}finally{a(!1)}};return(0,h.useEffect)(()=>{u()},[]),(0,Y.jsxs)(`div`,{className:`page-container`,children:[(0,Y.jsxs)(`div`,{style:{display:`flex`,justifyContent:`space-between`,alignItems:`center`,marginBottom:24,flexWrap:`wrap`,gap:12},children:[(0,Y.jsxs)(`div`,{children:[(0,Y.jsx)(rE.Title,{level:3,style:{margin:0},children:`学生档案`}),(0,Y.jsxs)(rE.Text,{type:`secondary`,children:[`欢迎,`,e?.username]})]}),(0,Y.jsxs)(Py,{wrap:!0,children:[e?.is_superuser&&(0,Y.jsx)(RD,{to:`/settings`,children:(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Tk,{}),children:`系统设置`})}),(0,Y.jsx)(_p,{type:`primary`,icon:(0,Y.jsx)(Nm,{}),onClick:()=>{c.setFieldsValue({school_level:`junior_high`,grade:void 0}),s(!0)},children:`添加学生`}),(0,Y.jsx)(_p,{icon:(0,Y.jsx)(Cxe,{}),onClick:t,children:`退出`})]})]}),(0,Y.jsx)(TS,{spinning:i,children:(0,Y.jsxs)(Dle,{gutter:[16,16],children:[n.map(e=>(0,Y.jsx)(bg,{xs:24,sm:12,md:8,children:(0,Y.jsx)(RD,{to:`/students/${e.id}`,style:{textDecoration:`none`},children:(0,Y.jsx)(lg,{hoverable:!0,children:(0,Y.jsxs)(Py,{align:`start`,children:[(0,Y.jsx)(Ok,{style:{fontSize:24,color:`#1677ff`}}),(0,Y.jsxs)(`div`,{children:[(0,Y.jsxs)(Py,{size:4,children:[(0,Y.jsx)(rE.Text,{strong:!0,children:e.name}),(0,Y.jsx)(PT,{color:e.school_level===`senior_high`?`purple`:`blue`,children:Q9[e.school_level]})]}),(0,Y.jsx)(`br`,{}),(0,Y.jsx)(rE.Text,{type:`secondary`,style:{fontSize:12},children:y3e(e)})]})]})})})},e.id)),!i&&n.length===0&&(0,Y.jsx)(bg,{span:24,children:(0,Y.jsx)(lg,{children:(0,Y.jsx)(rE.Text,{type:`secondary`,children:`暂无学生,点击「添加学生」开始`})})})]})}),(0,Y.jsx)(yx,{title:`添加学生`,open:o,onCancel:()=>s(!1),onOk:async()=>{let e=await c.validateFields();await pk.create(e),rx.success(`学生已添加`),s(!1),c.resetFields(),u()},destroyOnHidden:!0,children:(0,Y.jsxs)(ky,{form:c,layout:`vertical`,initialValues:{school_level:`junior_high`},children:[(0,Y.jsx)(ky.Item,{name:`name`,label:`姓名`,rules:[{required:!0}],children:(0,Y.jsx)(ib,{})}),(0,Y.jsx)(ky.Item,{name:`school_level`,label:`学段`,rules:[{required:!0}],children:(0,Y.jsx)(gS,{options:Object.entries(Q9).map(([e,t])=>({value:e,label:t})),onChange:()=>c.setFieldValue(`grade`,void 0)})}),(0,Y.jsx)(ky.Item,{name:`grade`,label:`年级`,children:(0,Y.jsx)(gS,{allowClear:!0,placeholder:l===`senior_high`?`如:高一`:`如:初二`,options:(v3e[l||`junior_high`]||[]).map(e=>({value:e,label:e}))})}),(0,Y.jsx)(ky.Item,{name:`class_name`,label:`班级`,children:(0,Y.jsx)(ib,{placeholder:`如:3班`})})]})})]})}function $9({children:e}){let{user:t,loading:n}=_k();return n?null:t?(0,Y.jsx)(Y.Fragment,{children:e}):(0,Y.jsx)(wD,{to:`/login`,replace:!0})}function C3e(){return(0,Y.jsxs)(gve,{children:[(0,Y.jsx)(TD,{path:`/login`,element:(0,Y.jsx)(Axe,{})}),(0,Y.jsx)(TD,{path:`/`,element:(0,Y.jsx)($9,{children:(0,Y.jsx)(S3e,{})})}),(0,Y.jsx)(TD,{path:`/students/:id`,element:(0,Y.jsx)($9,{children:(0,Y.jsx)(x3e,{})})}),(0,Y.jsx)(TD,{path:`/settings`,element:(0,Y.jsx)($9,{children:(0,Y.jsx)(jxe,{})})}),(0,Y.jsx)(TD,{path:`*`,element:(0,Y.jsx)(wD,{to:`/`,replace:!0})})]})}(0,vn.createRoot)(document.getElementById(`root`)).render((0,Y.jsx)(h.StrictMode,{children:(0,Y.jsx)(Uu,{locale:fxe.default,children:(0,Y.jsx)(qve,{children:(0,Y.jsx)(gxe,{children:(0,Y.jsx)(C3e,{})})})})})); \ No newline at end of file diff --git a/frontend/dist/index.html b/frontend/dist/index.html index 8b81401..f2de863 100644 --- a/frontend/dist/index.html +++ b/frontend/dist/index.html @@ -9,7 +9,7 @@ 中学成绩档案 - + diff --git a/frontend/src/components/WrongQuestionList.tsx b/frontend/src/components/WrongQuestionList.tsx index 6dd7009..6b8ace1 100644 --- a/frontend/src/components/WrongQuestionList.tsx +++ b/frontend/src/components/WrongQuestionList.tsx @@ -1,7 +1,9 @@ import { DeleteOutlined } from '@ant-design/icons' import { Button, Popconfirm, Space, Tag, Typography, message } from 'antd' +import { useEffect } from 'react' import { wrongQuestionApi } from '../api/client' import type { WrongQuestion } from '../types' +import { isWrongQuestionProcessing, processingHint } from '../utils/wqProcessing' import { STATUS_LABELS } from '../types' import AuthenticatedImage from './AuthenticatedImage' import WrongQuestionDetail from '../pages/WrongQuestionDetail' @@ -12,14 +14,15 @@ interface Props { onSelect: (id: string | null) => void onRefresh: () => void emptyText?: string + pollWhenProcessing?: boolean } function cardSummary(wq: WrongQuestion): { tone: 'error' | 'pending' | 'normal'; text: string } { if (wq.error_message) { return { tone: 'error', text: wq.error_message } } - if (wq.status === 'pending') { - return { tone: 'pending', text: '正在识别、标注并生成解题思路…' } + if (isWrongQuestionProcessing(wq)) { + return { tone: 'pending', text: processingHint(wq) } } return { tone: 'normal', @@ -33,7 +36,16 @@ export default function WrongQuestionList({ onSelect, onRefresh, emptyText = '暂无记录', + pollWhenProcessing = true, }: Props) { + const hasProcessing = pollWhenProcessing && items.some(isWrongQuestionProcessing) + + useEffect(() => { + if (!hasProcessing) return + const timer = window.setInterval(() => onRefresh(), 4000) + return () => window.clearInterval(timer) + }, [hasProcessing, onRefresh]) + const handleDelete = async (id: string) => { try { await wrongQuestionApi.remove(id) @@ -58,7 +70,7 @@ export default function WrongQuestionList({ {wq.subject_name} {wq.category === 'olympiad' && 奥数} - + {wq.error_message ? '失败' : STATUS_LABELS[wq.status]} diff --git a/frontend/src/pages/WrongQuestionDetail.tsx b/frontend/src/pages/WrongQuestionDetail.tsx index a1073c5..8df7858 100644 --- a/frontend/src/pages/WrongQuestionDetail.tsx +++ b/frontend/src/pages/WrongQuestionDetail.tsx @@ -4,6 +4,7 @@ import ReactMarkdown from 'react-markdown' import AuthenticatedImage from '../components/AuthenticatedImage' import { wrongQuestionApi } from '../api/client' import type { WrongQuestion } from '../types' +import { isWrongQuestionProcessing, processingHint } from '../utils/wqProcessing' import { STATUS_LABELS } from '../types' interface Props { @@ -49,6 +50,24 @@ export default function WrongQuestionDetail({ if (open && questionId) load() }, [open, questionId]) + useEffect(() => { + if (!open || !wq || !isWrongQuestionProcessing(wq)) return + const timer = window.setInterval(async () => { + try { + const { data } = await wrongQuestionApi.get(questionId) + setWq(data) + setQuestionText(data.question_text || '') + setApproachText(data.solution_approach || '') + setSolutionText(data.solution_text || '') + if (data.has_annotated_image) setImageMode('annotated') + if (!isWrongQuestionProcessing(data)) onUpdated() + } catch { + /* ignore poll errors */ + } + }, 4000) + return () => window.clearInterval(timer) + }, [open, questionId, wq?.status, wq?.question_text, wq?.error_message]) + const handleSave = async () => { setSaving(true) try { @@ -149,7 +168,10 @@ export default function WrongQuestionDetail({ /> )} {wq.status === 'pending' && !wq.error_message && ( - + + )} + {wq.status === 'ocr_done' && !wq.question_text && !wq.error_message && ( + )} {(wq.solution_approach || wq.solution_text) && (