From a1949821173ee7dc17b3d5c7d05ce185de486cb7 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 11 Jan 2023 23:25:31 -0800 Subject: [PATCH] app/vmselect: follow-up after 820312a2b183349e9dea2d4896ebea363f498792 - Move the feature description at the correct place at docs/CHANGELOG.md - Run `make vmui-update` - Various cosmetic fixes Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3322 --- README.md | 2 +- app/vmselect/main.go | 5 +- app/vmselect/vmui.go | 100 ++++++++---------- app/vmselect/vmui/asset-manifest.json | 8 +- app/vmselect/vmui/dashboards/README.md | 18 ++++ app/vmselect/vmui/index.html | 2 +- .../{main.8692abc6.css => main.7672c15c.css} | 2 +- app/vmselect/vmui/static/js/main.84759f8d.js | 2 + ...CENSE.txt => main.84759f8d.js.LICENSE.txt} | 0 app/vmselect/vmui/static/js/main.9c17bdf0.js | 2 - docs/CHANGELOG.md | 3 +- docs/README.md | 2 + docs/Single-server-VictoriaMetrics.md | 2 + 13 files changed, 79 insertions(+), 69 deletions(-) rename app/vmselect/vmui/static/css/{main.8692abc6.css => main.7672c15c.css} (72%) create mode 100644 app/vmselect/vmui/static/js/main.84759f8d.js rename app/vmselect/vmui/static/js/{main.9c17bdf0.js.LICENSE.txt => main.84759f8d.js.LICENSE.txt} (100%) delete mode 100644 app/vmselect/vmui/static/js/main.9c17bdf0.js diff --git a/README.md b/README.md index 434e13395..14ba7bf91 100644 --- a/README.md +++ b/README.md @@ -2504,5 +2504,5 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li -vmalert.proxyURL string Optional URL for proxying requests to vmalert. For example, if -vmalert.proxyURL=http://vmalert:8880 , then alerting API requests such as /api/v1/rules from Grafana will be proxied to http://vmalert:8880/api/v1/rules -vmui.customDashboardsPath string - Optional path to vmui predefined dashboards. + Optional path to vmui dashboards. See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards ``` diff --git a/app/vmselect/main.go b/app/vmselect/main.go index a1c1c5745..be917abcc 100644 --- a/app/vmselect/main.go +++ b/app/vmselect/main.go @@ -175,7 +175,10 @@ func RequestHandler(w http.ResponseWriter, r *http.Request) bool { return true case strings.HasPrefix(path, "/vmui/"): if path == "/vmui/custom-dashboards" { - handleVMUICustomDashboards(w) + if err := handleVMUICustomDashboards(w); err != nil { + httpserver.Errorf(w, r, "%s", err) + return true + } return true } r.URL.Path = path diff --git a/app/vmselect/vmui.go b/app/vmselect/vmui.go index 3aac12d43..4555df7c5 100644 --- a/app/vmselect/vmui.go +++ b/app/vmselect/vmui.go @@ -12,25 +12,23 @@ import ( "github.com/VictoriaMetrics/VictoriaMetrics/lib/logger" ) -// more information how to use this flag please check this link -// https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards var ( - vmuiCustomDashboardsPath = flag.String("vmui.customDashboardsPath", "", "Optional path to vmui predefined dashboards."+ - "How to create dashboards https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards") + vmuiCustomDashboardsPath = flag.String("vmui.customDashboardsPath", "", "Optional path to vmui dashboards. "+ + "See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards") ) -// dashboardSetting represents dashboard settings file struct -// fields of the dashboardSetting you can find by following next link -// https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards -type dashboardSetting struct { +// dashboardSettings represents dashboard settings file struct. +// +// See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards +type dashboardSettings struct { Title string `json:"title,omitempty"` Filename string `json:"filename,omitempty"` Rows []dashboardRow `json:"rows"` } -// panelSettings represents fields which used to show graph -// fields of the panelSettings you can find by following next link -// https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards +// panelSettings represents fields which used to show graph. +// +// See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards type panelSettings struct { Title string `json:"title,omitempty"` Description string `json:"description,omitempty"` @@ -41,39 +39,31 @@ type panelSettings struct { Width int `json:"width,omitempty"` } -// dashboardRow represents panels on dashboard -// fields of the dashboardRow you can find by following next link -// https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards +// dashboardRow represents panels on dashboard. +// +// See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards type dashboardRow struct { Title string `json:"title,omitempty"` Panels []panelSettings `json:"panels"` } -// dashboardsData represents all dashboards settings +// dashboardsData represents all the dashboards settings. type dashboardsData struct { - DashboardsSettings []dashboardSetting `json:"dashboardsSettings"` + DashboardsSettings []dashboardSettings `json:"dashboardsSettings"` } -func handleVMUICustomDashboards(w http.ResponseWriter) { +func handleVMUICustomDashboards(w http.ResponseWriter) error { path := *vmuiCustomDashboardsPath if path == "" { writeSuccessResponse(w, []byte(`{"dashboardsSettings": []}`)) - return + return nil } - settings, err := collectDashboardsSettings(path) if err != nil { - writeErrorResponse(w, fmt.Errorf("cannot collect dashboards settings by -vmui.customDashboardsPath=%q", path)) - return + return fmt.Errorf("cannot collect dashboards settings by -vmui.customDashboardsPath=%q: %w", path, err) } - writeSuccessResponse(w, settings) -} - -func writeErrorResponse(w http.ResponseWriter, err error) { - w.WriteHeader(http.StatusBadRequest) - w.Header().Set("Content-Type", "application/json") - fmt.Fprintf(w, `{"status":"error","error":"%s"}`, err.Error()) + return nil } func writeSuccessResponse(w http.ResponseWriter, data []byte) { @@ -83,46 +73,40 @@ func writeSuccessResponse(w http.ResponseWriter, data []byte) { } func collectDashboardsSettings(path string) ([]byte, error) { - if !fs.IsPathExist(path) { - return nil, fmt.Errorf("cannot find folder pointed by -vmui.customDashboardsPath=%q", path) + return nil, fmt.Errorf("cannot find folder %q", path) } - files, err := os.ReadDir(path) if err != nil { - return nil, fmt.Errorf("cannot read folder pointed by -vmui.customDashboardsPath=%q", path) + return nil, fmt.Errorf("cannot read folder %q", path) } - var settings []dashboardSetting + var dss []dashboardSettings for _, file := range files { - info, err := file.Info() - if err != nil { - logger.Errorf("skipping %q at -vmui.customDashboardsPath=%q, since the info for this file cannot be obtained: %s", file.Name(), path, err) - continue - } - if fs.IsDirOrSymlink(info) { - logger.Infof("skip directory or symlinks: %q in the -vmui.customDashboardsPath=%q", info.Name(), path) - continue - } filename := file.Name() - if filepath.Ext(filename) == ".json" { - filePath := filepath.Join(path, filename) - f, err := os.ReadFile(filePath) - if err != nil { - return nil, fmt.Errorf("cannot open file at -vmui.customDashboardsPath=%q: %w", filePath, err) - } - var dSettings dashboardSetting - err = json.Unmarshal(f, &dSettings) - if err != nil { - return nil, fmt.Errorf("cannot parse file %s: %w", filename, err) - } - if len(dSettings.Rows) == 0 { - continue - } - settings = append(settings, dSettings) + if err != nil { + logger.Errorf("skipping %q at -vmui.customDashboardsPath=%q, since the info for this file cannot be obtained: %s", filename, path, err) + continue + } + if filepath.Ext(filename) != ".json" { + continue + } + filePath := filepath.Join(path, filename) + f, err := os.ReadFile(filePath) + if err != nil { + // There is no need to add more context to the returned error, since os.ReadFile() adds enough context. + return nil, err + } + var ds dashboardSettings + err = json.Unmarshal(f, &ds) + if err != nil { + return nil, fmt.Errorf("cannot parse file %s: %w", filePath, err) + } + if len(ds.Rows) > 0 { + dss = append(dss, ds) } } - dd := dashboardsData{DashboardsSettings: settings} + dd := dashboardsData{DashboardsSettings: dss} return json.Marshal(dd) } diff --git a/app/vmselect/vmui/asset-manifest.json b/app/vmselect/vmui/asset-manifest.json index 076953911..361b07d27 100644 --- a/app/vmselect/vmui/asset-manifest.json +++ b/app/vmselect/vmui/asset-manifest.json @@ -1,12 +1,12 @@ { "files": { - "main.css": "./static/css/main.8692abc6.css", - "main.js": "./static/js/main.9c17bdf0.js", + "main.css": "./static/css/main.7672c15c.css", + "main.js": "./static/js/main.84759f8d.js", "static/js/27.c1ccfd29.chunk.js": "./static/js/27.c1ccfd29.chunk.js", "index.html": "./index.html" }, "entrypoints": [ - "static/css/main.8692abc6.css", - "static/js/main.9c17bdf0.js" + "static/css/main.7672c15c.css", + "static/js/main.84759f8d.js" ] } \ No newline at end of file diff --git a/app/vmselect/vmui/dashboards/README.md b/app/vmselect/vmui/dashboards/README.md index b8f3a3a33..4bb347e89 100644 --- a/app/vmselect/vmui/dashboards/README.md +++ b/app/vmselect/vmui/dashboards/README.md @@ -3,6 +3,24 @@ 2. Import your config file into the `dashboards/index.js` 3. Add filename into the array `window.__VMUI_PREDEFINED_DASHBOARDS__` +It is possible to define path to the predefined dashboards by setting `--vmui.customDashboardsPath`. + +1. Single Version +If you use single version of the VictoriaMetrics this flag should be provided for you execution file. +``` +./victoria-metrics --vmui.customDashboardsPath=/path/to/your/dashboards +``` + +2. Cluster Version +If you use cluster version this flag should be defined for each `vmselect` component. +``` +./vmselect -storageNode=:8418 --vmui.customDashboardsPath=/path/to/your/dashboards +``` +At that moment all predefined dashboards files show be near each `vmselect`. For example +if you have 3 `vmselect` instances you should create 3 copy of your predefined dashboards. + + + ### Configuration options
diff --git a/app/vmselect/vmui/index.html b/app/vmselect/vmui/index.html index ad73512e5..db51bd154 100644 --- a/app/vmselect/vmui/index.html +++ b/app/vmselect/vmui/index.html @@ -1 +1 @@ -VM UI
\ No newline at end of file +VM UI
\ No newline at end of file diff --git a/app/vmselect/vmui/static/css/main.8692abc6.css b/app/vmselect/vmui/static/css/main.7672c15c.css similarity index 72% rename from app/vmselect/vmui/static/css/main.8692abc6.css rename to app/vmselect/vmui/static/css/main.7672c15c.css index 59a3b7d08..7db8bd0de 100644 --- a/app/vmselect/vmui/static/css/main.8692abc6.css +++ b/app/vmselect/vmui/static/css/main.7672c15c.css @@ -1 +1 @@ -.vm-tabs{gap:16px;height:100%;position:relative;-webkit-user-select:none;user-select:none}.vm-tabs,.vm-tabs-item{align-items:center;display:flex;justify-content:center}.vm-tabs-item{color:inherit;cursor:pointer;font-size:inherit;font-weight:inherit;opacity:.6;padding:16px 8px;text-decoration:none;text-transform:uppercase;transition:opacity .2s}.vm-tabs-item_active{opacity:1}.vm-tabs-item__icon{display:grid;margin-right:8px;width:15px}.vm-tabs-item__icon_single{margin-right:0}.vm-tabs__indicator{border-bottom:2px solid;position:absolute;transition:width .2s ease,left .3s cubic-bezier(.28,.84,.42,1)}.vm-alert{grid-gap:8px;align-items:center;background-color:var(--color-background-block);border-radius:8px;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);color:#110f0f;display:grid;font-size:14px;font-weight:500;gap:8px;grid-template-columns:20px 1fr;line-height:20px;padding:16px;position:relative}.vm-alert:after{border-radius:8px;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%;z-index:1}.vm-alert__content,.vm-alert__icon{position:relative;z-index:2}.vm-alert__icon{align-items:center;display:flex;justify-content:center}.vm-alert__content{-webkit-filter:brightness(.6);filter:brightness(.6);white-space:pre-line}.vm-alert_success{color:var(--color-success)}.vm-alert_success:after{background-color:var(--color-success)}.vm-alert_error{color:var(--color-error)}.vm-alert_error:after{background-color:var(--color-error)}.vm-alert_info{color:var(--color-info)}.vm-alert_info:after{background-color:var(--color-info)}.vm-alert_warning{color:var(--color-warning)}.vm-alert_warning:after{background-color:var(--color-warning)}.vm-popper{background-color:var(--color-background-block);border-radius:4px;box-shadow:0 2px 8px 0 hsla(0,6%,6%,.1);opacity:0;pointer-events:none;position:fixed;transition:opacity .1s ease-in-out;z-index:-99}.vm-popper_open{-webkit-animation:vm-slider .15s cubic-bezier(.28,.84,.42,1.1);animation:vm-slider .15s cubic-bezier(.28,.84,.42,1.1);opacity:1;pointer-events:auto;-webkit-transform-origin:top center;transform-origin:top center;z-index:101}@-webkit-keyframes vm-slider{0%{-webkit-transform:scaleY(0);transform:scaleY(0)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes vm-slider{0%{-webkit-transform:scaleY(0);transform:scaleY(0)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}.vm-button{align-items:center;border-radius:6px;color:#fff;cursor:pointer;display:flex;font-size:10px;font-weight:500;justify-content:center;line-height:15px;min-height:31px;padding:6px 14px;position:relative;text-transform:uppercase;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-user-select:none;user-select:none;white-space:nowrap}.vm-button:hover:after{background-color:hsla(0,6%,6%,.05)}.vm-button:after,.vm-button:before{border-radius:6px;content:"";height:100%;left:0;position:absolute;top:0;transition:background-color .2s ease;width:100%}.vm-button:before{-webkit-transform:translateZ(-2px);transform:translateZ(-2px)}.vm-button:after{background-color:transparent;-webkit-transform:translateZ(-1px);transform:translateZ(-1px)}.vm-button span{align-items:center;display:grid;justify-content:center}.vm-button span svg{width:15px}.vm-button__start-icon{margin-right:6px}.vm-button__end-icon{margin-left:6px}.vm-button_disabled{cursor:not-allowed;opacity:.3}.vm-button_icon{padding:6px 8px}.vm-button_icon .vm-button__end-icon,.vm-button_icon .vm-button__start-icon{margin:0}.vm-button_small{min-height:25px;padding:4px 6px}.vm-button_small span svg{width:13px}.vm-button_contained_primary{color:var(--color-primary-text)}.vm-button_contained_primary:before{background-color:var(--color-primary)}.vm-button_contained_primary:hover:after{background-color:hsla(0,6%,6%,.2)}.vm-button_contained_secondary{color:var(--color-secondary-text)}.vm-button_contained_secondary:before{background-color:var(--color-secondary)}.vm-button_contained_secondary:hover:after{background-color:hsla(0,6%,6%,.2)}.vm-button_contained_success{color:var(--color-success-text)}.vm-button_contained_success:before{background-color:var(--color-success)}.vm-button_contained_success:hover:after{background-color:hsla(0,6%,6%,.2)}.vm-button_contained_error{color:var(--color-error-text)}.vm-button_contained_error:before{background-color:var(--color-error)}.vm-button_contained_gray{color:hsla(0,6%,6%,.6)}.vm-button_contained_gray:before{background-color:hsla(0,6%,6%,.6)}.vm-button_contained_warning{color:var(--color-warning)}.vm-button_contained_warning:before{background-color:var(--color-warning);opacity:.2}.vm-button_text_primary{color:var(--color-primary)}.vm-button_text_secondary{color:var(--color-secondary)}.vm-button_text_success{color:var(--color-success)}.vm-button_text_error{color:var(--color-error)}.vm-button_text_gray{color:hsla(0,6%,6%,.6)}.vm-button_text_warning{color:var(--color-warning)}.vm-button_outlined_primary{border:1px solid var(--color-primary);color:var(--color-primary)}.vm-button_outlined_error{border:1px solid var(--color-error);color:var(--color-error)}.vm-button_outlined_secondary{border:1px solid var(--color-secondary);color:var(--color-secondary)}.vm-button_outlined_success{border:1px solid var(--color-success);color:var(--color-success)}.vm-button_outlined_gray{border:1px solid hsla(0,6%,6%,.6);color:hsla(0,6%,6%,.6)}.vm-button_outlined_warning{border:1px solid var(--color-warning);color:var(--color-warning)}.vm-execution-controls-buttons{border-radius:7px;display:flex;justify-content:space-between;min-width:107px}.vm-execution-controls-buttons__arrow{align-items:center;display:flex;justify-content:center;-webkit-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.vm-execution-controls-buttons__arrow_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-execution-controls-list{font-size:12px;max-height:208px;overflow:auto;padding:8px 0;width:124px}.vm-tooltip{-webkit-animation:vm-scale .15s cubic-bezier(.28,.84,.42,1);animation:vm-scale .15s cubic-bezier(.28,.84,.42,1);background-color:rgba(97,97,97,.92);border-radius:4px;box-shadow:0 2px 8px 0 hsla(0,6%,6%,.1);color:#fff;font-size:10px;line-height:150%;opacity:1;padding:3px 8px;pointer-events:auto;position:fixed;transition:opacity .1s ease-in-out;white-space:nowrap;z-index:101}@-webkit-keyframes vm-scale{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes vm-scale{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.vm-time-duration{font-size:12px;max-height:200px;overflow:auto}.vm-calendar{background-color:var(--color-background-block);border-radius:8px;display:grid;font-size:12px;grid-template-rows:auto 1fr auto;padding:16px;-webkit-user-select:none;user-select:none}.vm-calendar__tabs{border-top:1px solid hsla(0,6%,6%,.15);margin:16px -16px -16px}.vm-calendar-header{grid-gap:24px;align-items:center;display:grid;gap:24px;grid-template-columns:1fr auto;justify-content:center;min-height:36px;padding-bottom:16px}.vm-calendar-header-left{grid-gap:8px;align-items:center;cursor:pointer;display:grid;gap:8px;grid-template-columns:auto auto;justify-content:flex-start;transition:opacity .2s ease-in-out}.vm-calendar-header-left:hover{opacity:.8}.vm-calendar-header-left__date{color:#110f0f;font-size:12px;font-weight:700}.vm-calendar-header-left__select-year{align-items:center;display:grid;height:14px;justify-content:center;width:14px}.vm-calendar-header-right{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:18px 18px;justify-content:center}.vm-calendar-header-right__next,.vm-calendar-header-right__prev{cursor:pointer;transition:opacity .2s ease-in-out}.vm-calendar-header-right__next:hover,.vm-calendar-header-right__prev:hover{opacity:.8}.vm-calendar-header-right__prev{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.vm-calendar-header-right__next{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.vm-calendar-body{grid-gap:2px;display:grid;gap:2px;grid-template-columns:repeat(7,32px);grid-template-rows:repeat(6,32px)}.vm-calendar-body,.vm-calendar-body-cell{align-items:center;justify-content:center}.vm-calendar-body-cell{border-radius:50%;display:flex;height:100%;text-align:center}.vm-calendar-body-cell_weekday{color:hsla(0,6%,6%,.6)}.vm-calendar-body-cell_day{cursor:pointer;transition:color .2s ease,background-color .3s ease-in-out}.vm-calendar-body-cell_day:hover{background-color:hsla(0,6%,6%,.05)}.vm-calendar-body-cell_day_empty{pointer-events:none}.vm-calendar-body-cell_day_active{color:#fff}.vm-calendar-body-cell_day_active,.vm-calendar-body-cell_day_active:hover{background-color:var(--color-primary)}.vm-calendar-body-cell_day_today{border:1px solid var(--color-primary)}.vm-calendar-years{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(3,1fr);max-height:400px;overflow:auto}.vm-calendar-years__year{align-items:center;border-radius:8px;cursor:pointer;display:flex;justify-content:center;padding:8px 16px;transition:color .2s ease,background-color .3s ease-in-out}.vm-calendar-years__year:hover{background-color:hsla(0,6%,6%,.05)}.vm-calendar-years__year_selected{color:#fff}.vm-calendar-years__year_selected,.vm-calendar-years__year_selected:hover{background-color:var(--color-primary)}.vm-calendar-time-picker{align-items:center;display:flex;flex-direction:column;justify-content:center}.vm-calendar-time-picker-clock{border:1px solid hsla(0,6%,6%,.15);border-radius:50%;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);box-sizing:initial;height:230px;position:relative;width:230px}.vm-calendar-time-picker-clock:after{background-color:var(--color-primary);border-radius:50%;content:"";height:6px;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:6px}.vm-calendar-time-picker-clock__arrow{background-color:var(--color-primary);height:107px;left:114px;margin-top:8px;opacity:.8;position:absolute;top:0;-webkit-transform-origin:bottom;transform-origin:bottom;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:2px;z-index:0}.vm-calendar-time-picker-clock__arrow_offset{height:73px;margin-top:42px;z-index:2}.vm-calendar-time-picker-clock__arrow:after{background-color:var(--color-primary);border-radius:50%;content:"";height:30px;left:50%;position:absolute;top:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:30px}.vm-calendar-time-picker-clock__time{align-items:flex-start;cursor:pointer;display:flex;height:115px;justify-content:center;left:100px;padding-top:8px;position:absolute;text-align:center;top:0;-webkit-transform-origin:bottom;transform-origin:bottom;width:30px;z-index:1}.vm-calendar-time-picker-clock__time_hide{display:none}.vm-calendar-time-picker-clock__time_offset{height:73px;margin-top:42px;padding:0;z-index:2}.vm-calendar-time-picker-clock__time:hover span{background-color:hsla(0,6%,6%,.1)}.vm-calendar-time-picker-clock__time span{align-items:center;border-radius:50%;display:grid;justify-content:center;min-height:30px;min-width:30px;position:relative;-webkit-transform-origin:center;transform-origin:center;transition:background-color .3s ease}.vm-calendar-time-picker-fields{align-items:center;display:flex;justify-content:space-between;margin-top:16px}.vm-calendar-time-picker-fields span{margin:0 8px}.vm-calendar-time-picker-fields__input{border:1px solid #d8d8d8;border-radius:4px;font-size:14px;height:32px;padding:2px 8px;text-align:center;width:64px}.vm-calendar-time-picker-fields__input:focus{border-color:var(--color-primary)}.vm-time-selector{display:grid;grid-template-columns:repeat(2,230px);padding:16px 0}.vm-time-selector-left{border-right:1px solid hsla(0,6%,6%,.15);display:flex;flex-direction:column;gap:8px;padding:0 16px}.vm-time-selector-left-inputs{align-items:flex-start;display:grid;flex-grow:1;justify-content:stretch}.vm-time-selector-left-inputs__date{grid-gap:8px;align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);cursor:pointer;display:grid;gap:8px;grid-template-columns:1fr 14px;justify-content:center;margin-bottom:16px;padding-bottom:8px;transition:color .2s ease-in-out,border-bottom-color .3s ease}.vm-time-selector-left-inputs__date:last-child{margin-bottom:0}.vm-time-selector-left-inputs__date:hover{border-bottom-color:var(--color-primary)}.vm-time-selector-left-inputs__date:hover,.vm-time-selector-left-inputs__date:hover svg{color:var(--color-primary)}.vm-time-selector-left-inputs__date label{color:hsla(0,6%,6%,.6);font-size:10px;grid-column:1/3}.vm-time-selector-left-inputs__date svg{color:hsla(0,6%,6%,.6);transition:color .2s ease-in-out}.vm-time-selector-left-timezone{align-items:center;display:flex;font-size:10px;gap:8px;justify-content:space-between;margin-bottom:8px}.vm-time-selector-left-timezone__utc{align-items:center;background-color:hsla(0,6%,6%,.06);border-radius:4px;display:inline-flex;justify-content:center;padding:4px}.vm-time-selector-left__controls{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(2,1fr)}.vm-text-field{display:grid;margin:6px 0;position:relative;width:100%}.vm-text-field_textarea:after{content:attr(data-replicated-value) " ";visibility:hidden;white-space:pre-wrap}.vm-text-field:after,.vm-text-field__input{background-color:transparent;border:1px solid hsla(0,6%,6%,.15);font-size:12px;grid-area:1/1/2/2;line-height:18px;overflow:hidden;padding:8px 16px;width:100%}.vm-text-field__error,.vm-text-field__helper-text,.vm-text-field__label{-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;background-color:var(--color-background-block);display:-webkit-box;font-size:10px;left:8px;line-height:12px;max-width:calc(100% - 16px);overflow:hidden;padding:0 3px;pointer-events:none;position:absolute;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;z-index:2}.vm-text-field__label{color:hsla(0,6%,6%,.6);top:-7px}.vm-text-field__error{color:var(--color-error);top:calc(100% - 7px)}.vm-text-field__helper-text{bottom:-5px;color:hsla(0,6%,6%,.6)}.vm-text-field__input{border-radius:4px;display:block;min-height:34px;overflow:hidden;resize:none;transition:border .2s ease}.vm-text-field__input:focus,.vm-text-field__input:hover{border:1px solid var(--color-primary)}.vm-text-field__input_error,.vm-text-field__input_error:focus,.vm-text-field__input_error:hover{border:1px solid var(--color-error)}.vm-text-field__input_icon-start{padding-left:31px}.vm-text-field__input:disabled{background-color:inherit;color:inherit}.vm-text-field__input:disabled:hover{border-color:hsla(0,6%,6%,.4)}.vm-text-field__icon-end,.vm-text-field__icon-start{align-items:center;color:hsla(0,6%,6%,.6);display:flex;height:100%;justify-content:center;left:8px;max-width:15px;position:absolute;top:auto}.vm-text-field__icon-end{left:auto;right:8px}.vm-modal{align-items:center;background:hsla(0,6%,6%,.55);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:100}.vm-modal-content{background:#fff;border-radius:4px;box-shadow:0 0 24px hsla(0,6%,6%,.07);padding:22px}.vm-modal-content-header{align-items:center;display:grid;grid-template-columns:1fr auto;margin-bottom:22px}.vm-modal-content-header__title{font-size:14px;font-weight:700}.vm-modal-content-header__close{align-items:center;box-sizing:initial;color:#fff;cursor:pointer;display:flex;justify-content:center;padding:10px;width:24px}.vm-server-configurator{grid-gap:24px;align-items:center;display:grid;gap:24px;width:600px}.vm-server-configurator__title{align-items:center;display:flex;font-size:12px;font-weight:700;justify-content:flex-start;margin-bottom:16px}.vm-server-configurator__footer{align-items:center;display:inline-grid;gap:8px;grid-template-columns:repeat(2,1fr);justify-content:flex-end;margin-left:auto;margin-right:0}.vm-limits-configurator-title__reset{align-items:center;display:flex;flex-grow:1;justify-content:flex-end}.vm-limits-configurator__inputs{grid-gap:16px;align-items:center;display:grid;gap:16px;grid-template-columns:repeat(3,1fr);justify-content:space-between}.vm-accordion-header{align-items:center;cursor:pointer;display:grid;font-size:inherit;position:relative}.vm-accordion-header__arrow{align-items:center;display:flex;justify-content:center;position:absolute;right:14px;top:auto;-webkit-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.vm-accordion-header__arrow_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-accordion-header__arrow svg{height:auto;width:14px}.accordion-section{overflow:hidden}.vm-timezones-item{align-items:center;cursor:pointer;display:flex;gap:8px;justify-content:space-between}.vm-timezones-item_selected{border:1px solid hsla(0,6%,6%,.15);border-radius:4px;padding:8px 16px}.vm-timezones-item__title{text-transform:capitalize}.vm-timezones-item__utc{align-items:center;background-color:hsla(0,6%,6%,.06);border-radius:4px;display:inline-flex;justify-content:center;padding:4px}.vm-timezones-item__icon{align-items:center;display:inline-flex;justify-content:flex-end;margin:0 0 0 auto;transition:-webkit-transform .2s ease-in;transition:transform .2s ease-in;transition:transform .2s ease-in,-webkit-transform .2s ease-in}.vm-timezones-item__icon svg{width:14px}.vm-timezones-item__icon_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-timezones-list{border-radius:8px;max-height:200px;min-width:600px;overflow:auto}.vm-timezones-list,.vm-timezones-list-header{background-color:var(--color-background-block)}.vm-timezones-list-header{border-bottom:1px solid hsla(0,6%,6%,.15);position:-webkit-sticky;position:sticky;top:0;z-index:2}.vm-timezones-list-header__search{padding:8px}.vm-timezones-list-group{border-bottom:1px solid hsla(0,6%,6%,.15);padding:8px 0}.vm-timezones-list-group:last-child{border-bottom:none}.vm-timezones-list-group__title{color:hsla(0,6%,6%,.6);font-weight:700;padding:8px 16px}.vm-timezones-list-group-options{align-items:flex-start;display:grid}.vm-timezones-list-group-options__item{padding:8px 16px;transition:background-color .2s ease}.vm-timezones-list-group-options__item:hover{background-color:hsla(0,6%,6%,.1)}.vm-shortcuts{min-width:400px}.vm-shortcuts-section{margin-bottom:24px}.vm-shortcuts-section__title{border-bottom:1px solid hsla(0,6%,6%,.15);font-weight:700;margin-bottom:16px;padding:8px 0}.vm-shortcuts-section-list{grid-gap:16px;display:grid;gap:16px}.vm-shortcuts-section-list-item{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:210px 1fr}.vm-shortcuts-section-list-item__key{align-items:center;display:flex;gap:4px}.vm-shortcuts-section-list-item__key code{background-color:#fff;background-repeat:repeat-x;border:1px solid hsla(0,6%,6%,.15);border-radius:4px;color:#110f0f;display:inline-block;font-size:10px;line-height:2;padding:2px 8px 0;text-align:center}.vm-shortcuts-section-list-item__description{font-size:12px}.vm-header{align-items:center;display:flex;gap:48px;justify-content:flex-start;padding:8px 24px}.vm-header_app{padding:8px 0}.vm-header__logo{align-items:center;cursor:pointer;display:flex;justify-content:center;margin-bottom:2px;max-width:65px;position:relative;width:100%}.vm-header-nav{font-size:10px;font-weight:600}.vm-header__settings{align-items:center;display:flex;flex-grow:1;gap:8px;justify-content:flex-end}.vm-container{display:flex;flex-direction:column;min-height:calc(100vh - var(--scrollbar-height))}.vm-container-body{background-color:var(--color-background-body);flex-grow:1;min-height:100%;padding:24px}.vm-container-body_app{background-color:transparent;padding:8px 0}.vm-footer{border-top:1px solid hsla(0,6%,6%,.15);color:hsla(0,6%,6%,.6);display:flex;gap:48px;padding:24px}.vm-footer,.vm-footer__website{align-items:center;justify-content:center}.vm-footer__website{grid-gap:6px;display:grid;gap:6px;grid-template-columns:12px auto}.vm-footer__copyright{flex-grow:1;text-align:right}.uplot,.uplot *,.uplot :after,.uplot :before{box-sizing:border-box}.uplot{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;width:-webkit-min-content;width:min-content}.u-title{font-size:18px;font-weight:700;text-align:center}.u-wrap{position:relative;-webkit-user-select:none;user-select:none}.u-over,.u-under{position:absolute}.u-under{overflow:hidden}.uplot canvas{display:block;height:100%;position:relative;width:100%}.u-axis{position:absolute}.u-legend{margin:auto;text-align:center}.u-inline{display:block}.u-inline *{display:inline-block}.u-inline tr{margin-right:16px}.u-legend th{font-weight:600}.u-legend th>*{display:inline-block;vertical-align:middle}.u-legend .u-marker{background-clip:padding-box!important;height:1em;margin-right:4px;width:1em}.u-inline.u-live th:after{content:":";vertical-align:middle}.u-inline:not(.u-live) .u-value{display:none}.u-series>*{padding:4px}.u-series th{cursor:pointer}.u-legend .u-off>*{opacity:.3}.u-select{background:rgba(0,0,0,.07)}.u-cursor-x,.u-cursor-y,.u-select{pointer-events:none;position:absolute}.u-cursor-x,.u-cursor-y{left:0;top:0;will-change:transform;z-index:100}.u-hz .u-cursor-x,.u-vt .u-cursor-y{border-right:1px dashed #607d8b;height:100%}.u-hz .u-cursor-y,.u-vt .u-cursor-x{border-bottom:1px dashed #607d8b;width:100%}.u-cursor-pt{background-clip:padding-box!important;border:0 solid;border-radius:50%;left:0;pointer-events:none;position:absolute;top:0;will-change:transform;z-index:100}.u-axis.u-off,.u-cursor-pt.u-off,.u-cursor-x.u-off,.u-cursor-y.u-off,.u-select.u-off{display:none}.vm-line-chart{pointer-events:auto}.vm-line-chart_panning{pointer-events:none}.vm-line-chart__u-plot{position:relative}.vm-chart-tooltip{grid-gap:16px;word-wrap:break-word;background:rgba(97,97,97,.92);border-radius:8px;color:#fff;display:grid;font-family:JetBrains Mono,monospace;font-size:10px;font-weight:400;gap:16px;line-height:150%;padding:8px;pointer-events:none;position:absolute;-webkit-user-select:text;user-select:text;width:325px;z-index:98}.vm-chart-tooltip_sticky{background-color:#616161;pointer-events:auto;z-index:99}.vm-chart-tooltip_moved{margin-left:-271.5px;margin-top:-20.5px;position:fixed}.vm-chart-tooltip-header{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:1fr 25px 25px;justify-content:center;min-height:25px}.vm-chart-tooltip-header__close{color:#fff}.vm-chart-tooltip-header__drag{color:#fff;cursor:move}.vm-chart-tooltip-data{grid-gap:8px;align-items:flex-start;display:grid;gap:8px;grid-template-columns:auto 1fr;line-height:12px;word-break:break-all}.vm-chart-tooltip-data__value{font-weight:700;padding:4px}.vm-chart-tooltip-data__marker{height:12px;width:12px}.vm-chart-tooltip-info{grid-gap:4px;display:grid;word-break:break-all}.vm-legend-item{grid-gap:8px;align-items:start;background-color:var(--color-background-block);cursor:pointer;display:grid;grid-template-columns:auto auto;justify-content:start;padding:8px 48px 8px 8px;transition:.2s ease}.vm-legend-item:hover{background-color:rgba(0,0,0,.1)}.vm-legend-item_hide{opacity:.5;text-decoration:line-through}.vm-legend-item__marker{border-radius:2px;box-sizing:border-box;height:14px;transition:.2s ease;width:14px}.vm-legend-item-info{font-weight:400}.vm-legend-item-info__free-fields{cursor:pointer;padding:3px}.vm-legend-item-info__free-fields:hover{text-decoration:underline}.vm-legend-item-info__free-fields:not(:last-child):after{content:","}.vm-legend{cursor:default;display:flex;flex-wrap:wrap;margin-top:24px;position:relative}.vm-legend-group{margin:0 16px 16px 0;min-width:23%}.vm-legend-group-title{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;margin-bottom:1px;padding:0 8px 8px}.vm-legend-group-title__count{font-weight:700;margin-right:8px}.vm-graph-view{width:100%}.vm-graph-view_full-width{width:calc(100vw - 96px - var(--scrollbar-width))}.vm-autocomplete{max-height:300px;overflow:auto}.vm-autocomplete__no-options{color:hsla(0,6%,6%,.4);padding:16px;text-align:center}.vm-query-editor-autocomplete{max-height:300px;overflow:auto}.vm-additional-settings{align-items:center;display:inline-flex;flex-wrap:wrap;gap:24px;justify-content:flex-start}.vm-additional-settings__input{flex-basis:160px;margin-bottom:-6px}.vm-switch{align-items:center;cursor:pointer;display:flex;justify-content:flex-start}.vm-switch_disabled{cursor:default;opacity:.6}.vm-switch_secondary_active .vm-switch-track{background-color:var(--color-secondary)}.vm-switch_primary_active .vm-switch-track{background-color:var(--color-primary)}.vm-switch_active .vm-switch-track__thumb{left:20px}.vm-switch:hover .vm-switch-track{opacity:.8}.vm-switch-track{align-items:center;background-color:hsla(0,6%,6%,.4);border-radius:17px;display:flex;height:17px;justify-content:flex-start;padding:3px;position:relative;transition:background-color .2s ease,opacity .3s ease-out;width:34px}.vm-switch-track__thumb{background-color:var(--color-background-block);border-radius:50%;left:3px;min-height:11px;min-width:11px;position:absolute;top:auto;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:right .2s ease-out,left .2s ease-out}.vm-switch__label{color:inherit;font-size:inherit;margin-left:8px;transition:color .2s ease;white-space:nowrap}.vm-query-configurator{grid-gap:8px;display:grid;gap:8px}.vm-query-configurator-list{display:grid}.vm-query-configurator-list-row{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:1fr auto auto}.vm-query-configurator-list-row_disabled{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.5}.vm-query-configurator-list-row__button{display:grid;min-height:36px;width:36px}.vm-query-configurator-settings{align-items:flex-end;display:flex;gap:24px;justify-content:space-between}.vm-query-configurator-settings__buttons{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(2,auto)}.vm-json-view__copy{display:flex;justify-content:flex-end;position:-webkit-sticky;position:sticky;top:24px;z-index:2}.vm-json-view__code{font-size:12px;line-height:1.4;-webkit-transform:translateY(-32px);transform:translateY(-32px)}.vm-axes-limits{max-width:300px}.vm-axes-limits,.vm-axes-limits-list{grid-gap:16px;align-items:center;display:grid;gap:16px}.vm-axes-limits-list__inputs{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(2,120px)}.vm-graph-settings-popper{grid-gap:16px;display:grid;gap:16px;padding:0 0 16px}.vm-graph-settings-popper__body{grid-gap:8px;display:grid;gap:8px;padding:0 16px}.vm-spinner{align-items:center;-webkit-animation:vm-fade 2s cubic-bezier(.28,.84,.42,1.1);animation:vm-fade 2s cubic-bezier(.28,.84,.42,1.1);background-color:hsla(0,0%,100%,.5);bottom:0;display:flex;flex-direction:column;justify-content:center;left:0;pointer-events:none;position:fixed;right:0;top:0;z-index:99}.vm-spinner__message{color:hsla(0,6%,6%,.9);font-size:14px;line-height:1.3;margin-top:24px;text-align:center;white-space:pre-line}.half-circle-spinner,.half-circle-spinner *{box-sizing:border-box}.half-circle-spinner{border-radius:100%;height:60px;position:relative;width:60px}.half-circle-spinner .circle{border:6px solid transparent;border-radius:100%;content:"";height:100%;position:absolute;width:100%}.half-circle-spinner .circle.circle-1{-webkit-animation:half-circle-spinner-animation 1s infinite;animation:half-circle-spinner-animation 1s infinite;border-top-color:var(--color-primary)}.half-circle-spinner .circle.circle-2{-webkit-animation:half-circle-spinner-animation 1s infinite alternate;animation:half-circle-spinner-animation 1s infinite alternate;border-bottom-color:var(--color-primary)}@-webkit-keyframes half-circle-spinner-animation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes half-circle-spinner-animation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes vm-fade{0%{opacity:0}to{opacity:1}}@keyframes vm-fade{0%{opacity:0}to{opacity:1}}.vm-tracings-view{grid-gap:24px;display:grid;gap:24px}.vm-tracings-view-trace-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;justify-content:space-between;padding:8px 8px 8px 24px}.vm-tracings-view-trace-header-title{flex-grow:1;font-size:14px;margin-right:8px}.vm-tracings-view-trace-header-title__query{font-weight:700}.vm-tracings-view-trace__nav{padding:24px 24px 24px 0}.vm-line-progress{grid-gap:8px;align-items:center;color:hsla(0,6%,6%,.6);display:grid;gap:8px;grid-template-columns:1fr auto;justify-content:center}.vm-line-progress-track{background-color:hsla(0,6%,6%,.05);border-radius:4px;height:20px;width:100%}.vm-line-progress-track__thumb{background-color:#1a90ff;border-radius:4px;height:100%}.vm-nested-nav{background-color:rgba(201,227,246,.4);border-radius:4px;margin-left:24px}.vm-nested-nav-header{grid-gap:8px;border-radius:4px;cursor:pointer;display:grid;gap:8px;grid-template-columns:auto 1fr;padding:8px;transition:background-color .2s ease-in-out}.vm-nested-nav-header:hover{background-color:hsla(0,6%,6%,.06)}.vm-nested-nav-header__icon{align-items:center;display:flex;justify-content:center;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:20px}.vm-nested-nav-header__icon_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-nested-nav-header__message,.vm-nested-nav-header__progress{grid-column:2}.vm-nested-nav-header__duration{color:hsla(0,6%,6%,.6);grid-column:2}.vm-json-form{grid-gap:16px;display:grid;gap:16px;grid-template-rows:auto calc(90vh - 150px) auto;max-height:900px;max-width:1000px;width:70vw}.vm-json-form_one-field{grid-template-rows:calc(90vh - 150px) auto}.vm-json-form textarea{height:100%;overflow:auto;width:100%}.vm-json-form-footer{align-items:center;display:flex;gap:8px;justify-content:space-between}.vm-json-form-footer__controls{align-items:center;display:flex;flex-grow:1;gap:8px;justify-content:flex-start}.vm-json-form-footer__controls_right{display:grid;grid-template-columns:repeat(2,90px);justify-content:flex-end}.vm-table-settings-popper{display:grid;min-width:250px}.vm-table-settings-popper-list{grid-gap:8px;border-bottom:1px solid hsla(0,6%,6%,.15);display:grid;gap:8px;max-height:350px;overflow:auto;padding:16px}.vm-table-settings-popper-list-header{align-items:center;display:grid;grid-template-columns:1fr auto;justify-content:space-between;min-height:25px}.vm-table-settings-popper-list-header__title{font-weight:700}.vm-table-settings-popper-list__item{font-size:12px;text-transform:capitalize}.vm-checkbox{align-items:center;cursor:pointer;display:flex;justify-content:flex-start;-webkit-user-select:none;user-select:none}.vm-checkbox_disabled{cursor:default;opacity:.6}.vm-checkbox_secondary_active .vm-checkbox-track{background-color:var(--color-secondary)}.vm-checkbox_secondary .vm-checkbox-track{border:1px solid var(--color-secondary)}.vm-checkbox_primary_active .vm-checkbox-track{background-color:var(--color-primary)}.vm-checkbox_primary .vm-checkbox-track{border:1px solid var(--color-primary)}.vm-checkbox_active .vm-checkbox-track__thumb{-webkit-transform:scale(1);transform:scale(1)}.vm-checkbox:hover .vm-checkbox-track{opacity:.8}.vm-checkbox-track{align-items:center;background-color:transparent;border-radius:4px;display:flex;height:16px;justify-content:center;padding:2px;position:relative;transition:background-color .2s ease,opacity .3s ease-out;width:16px}.vm-checkbox-track__thumb{align-items:center;color:#fff;display:grid;height:12px;justify-content:center;-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .1s ease-in-out;transition:transform .1s ease-in-out;transition:transform .1s ease-in-out,-webkit-transform .1s ease-in-out;width:12px}.vm-checkbox__label{color:inherit;font-size:inherit;margin-left:8px;transition:color .2s ease;white-space:nowrap}.vm-custom-panel{grid-gap:24px;align-items:flex-start;display:grid;gap:24px;grid-template-columns:100%;height:100%}.vm-custom-panel__warning{align-items:center;display:grid;grid-template-columns:1fr auto;justify-content:space-between}.vm-custom-panel-body{position:relative}.vm-custom-panel-body-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;font-size:10px;justify-content:space-between;margin:-24px -24px 24px;padding:0 24px;position:relative;z-index:1}.vm-table-view{margin-top:-24px;max-width:100%;overflow:auto}.vm-table-view table{margin-top:0}.vm-predefined-panel-header{grid-gap:8px;align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:grid;gap:8px;grid-template-columns:auto 1fr 160px auto;justify-content:flex-start;padding:8px 16px}.vm-predefined-panel-header__description{line-height:1.3;white-space:pre-wrap}.vm-predefined-panel-header__description ol,.vm-predefined-panel-header__description ul{list-style-position:inside}.vm-predefined-panel-header__description a{color:#c9e3f6;text-decoration:underline}.vm-predefined-panel-header__info{align-items:center;color:var(--color-primary);display:flex;justify-content:center;width:18px}.vm-predefined-panel-body{padding:8px 16px}.vm-predefined-dashboard{background-color:transparent}.vm-predefined-dashboard-header{align-items:center;border-radius:4px;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);display:grid;font-weight:700;grid-template-columns:1fr auto;justify-content:space-between;line-height:14px;overflow:hidden;padding:16px;position:relative;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:box-shadow .2s ease-in-out}.vm-predefined-dashboard-header_open{border-radius:4px 4px 0 0;box-shadow:none}.vm-predefined-dashboard-header__title{font-size:12px}.vm-predefined-dashboard-header__count{font-size:10px;grid-column:2;margin-right:30px}.vm-predefined-dashboard-panels{grid-gap:16px;display:grid;gap:16px;grid-template-columns:repeat(12,1fr);padding:0}.vm-predefined-dashboard-panels-panel{border-radius:8px;overflow:hidden;position:relative}.vm-predefined-dashboard-panels-panel:hover .vm-predefined-dashboard-panels-panel__resizer{-webkit-transform:scale(1);transform:scale(1)}.vm-predefined-dashboard-panels-panel__resizer{bottom:0;cursor:se-resize;height:20px;position:absolute;right:0;-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:20px;z-index:1}.vm-predefined-dashboard-panels-panel__resizer:after{border-bottom:2px solid hsla(0,6%,6%,.2);border-right:2px solid hsla(0,6%,6%,.2);bottom:5px;content:"";height:5px;position:absolute;right:5px;width:5px}.vm-predefined-dashboard-panels-panel__alert{grid-column:span 12}.vm-predefined-panels{grid-gap:16px;align-items:flex-start;display:grid;gap:16px}.vm-predefined-panels-tabs{align-items:center;display:flex;font-size:10px;justify-content:flex-start;overflow:hidden}.vm-predefined-panels-tabs__tab{border-right:1px solid hsla(0,6%,6%,.15);cursor:pointer;padding:16px;text-transform:uppercase;transition:opacity .2s ease-in-out,color .15s ease-in}.vm-predefined-panels-tabs__tab:hover{opacity:1}.vm-predefined-panels__dashboards{grid-gap:16px;display:grid;gap:16px}.vm-cardinality-configurator{grid-gap:8px;display:grid;gap:8px}.vm-cardinality-configurator-controls{align-items:center;display:flex;flex-wrap:wrap;gap:0 24px;justify-content:flex-start}.vm-cardinality-configurator-controls__query{flex-grow:1}.vm-cardinality-configurator-bottom{grid-gap:24px;align-items:flex-end;display:grid;gap:24px;grid-template-columns:1fr auto}.vm-cardinality-configurator-bottom__info{font-size:12px}.u-legend{color:#110f0f;font-family:Lato,sans-serif;font-size:14px}.u-legend .u-thead{display:none}.u-legend .u-series{display:flex;gap:8px}.u-legend .u-series th{display:none}.u-legend .u-series td:nth-child(2):after{content:":";margin-left:8px}.u-legend .u-series .u-value{display:block;padding:0;text-align:left}.vm-metrics-content-header{margin:-24px -24px 24px}.vm-cardinality-panel{grid-gap:24px;align-items:flex-start;display:grid;gap:24px}.vm-top-queries-panel-header{margin:-24px -24px 24px}.vm-top-queries{grid-gap:24px;align-items:flex-start;display:grid;gap:24px}.vm-top-queries-controls{grid-gap:8px;display:grid;gap:8px}.vm-top-queries-controls-bottom,.vm-top-queries-controls__fields{grid-gap:24px;display:grid;gap:24px;grid-template-columns:1fr auto}.vm-top-queries-controls-bottom{align-items:flex-end;justify-content:space-between}.vm-top-queries-controls-bottom__button{align-items:center;display:flex;justify-content:flex-end}.vm-top-queries-panels{grid-gap:24px;display:grid;gap:24px}.vm-trace-page{display:flex;flex-direction:column;min-height:100%;padding:16px}.vm-trace-page-controls{grid-gap:16px;align-items:center;display:grid;gap:16px;grid-template-columns:1fr 1fr;justify-content:center}.vm-trace-page-header{grid-gap:16px;align-items:start;display:grid;gap:16px;grid-template-columns:1fr auto;margin-bottom:24px}.vm-trace-page-header-errors{grid-gap:24px;align-items:flex-start;display:grid;gap:24px;grid-template-columns:1fr;justify-content:stretch}.vm-trace-page-header-errors-item{align-items:center;display:grid;justify-content:stretch;position:relative}.vm-trace-page-header-errors-item__filename{min-height:20px}.vm-trace-page-header-errors-item__close{position:absolute;right:8px;top:auto;z-index:2}.vm-trace-page-preview{align-items:center;display:flex;flex-direction:column;flex-grow:1;justify-content:center}.vm-trace-page-preview__text{font-size:14px;line-height:1.8;margin-bottom:16px;text-align:center;white-space:pre-line}.vm-explore-metrics,.vm-explore-metrics-body{grid-gap:24px;align-items:flex-start;display:grid;gap:24px}.vm-explore-metrics-graph{padding:0 16px 16px}.vm-explore-metrics-graph__warning{align-items:center;display:grid;grid-template-columns:1fr auto;justify-content:space-between}.vm-explore-metrics-item-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;flex-wrap:wrap;gap:16px;justify-content:flex-start;padding:16px}.vm-explore-metrics-item-header__index{color:hsla(0,6%,6%,.6);font-size:10px}.vm-explore-metrics-item-header__name{flex-grow:1;font-weight:700}.vm-explore-metrics-item-header-order{align-items:center;display:grid;grid-template-columns:auto 20px auto;justify-content:flex-start;text-align:center}.vm-explore-metrics-item-header-order__up{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-explore-metrics-item-header__layout{align-items:center;display:grid}.vm-explore-metrics-item-header code{background-color:hsla(0,6%,6%,.05);border-radius:6px;font-size:85%;padding:.2em .4em}.vm-explore-metrics-item{position:relative}.vm-select-input{align-items:center;border:1px solid hsla(0,6%,6%,.15);border-radius:4px;cursor:pointer;display:flex;justify-content:space-between;min-height:36px;padding:5px 0 5px 16px;position:relative}.vm-select-input-content{align-items:center;display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-start;width:100%}.vm-select-input-content__selected{align-items:center;background-color:hsla(0,6%,6%,.06);border-radius:4px;display:inline-flex;font-size:12px;justify-content:center;line-height:12px;padding:2px 2px 2px 6px}.vm-select-input-content__selected svg{align-items:center;background-color:transparent;border-radius:4px;display:flex;justify-content:center;margin-left:10px;padding:4px;transition:background-color .2s ease-in-out;width:20px}.vm-select-input-content__selected svg:hover{background-color:hsla(0,6%,6%,.1)}.vm-select-input input{border:none;border-radius:4px;display:inline-block;flex-grow:1;font-size:12px;height:18px;line-height:18px;min-width:100px;padding:0;position:relative;z-index:2}.vm-select-input input:placeholder-shown{width:auto}.vm-select-input__icon{align-items:center;border-right:1px solid hsla(0,6%,6%,.15);color:hsla(0,6%,6%,.6);cursor:pointer;display:inline-flex;justify-content:flex-end;padding:0 8px;transition:opacity .2s ease-in,-webkit-transform .2s ease-in;transition:transform .2s ease-in,opacity .2s ease-in;transition:transform .2s ease-in,opacity .2s ease-in,-webkit-transform .2s ease-in}.vm-select-input__icon:last-child{border:none}.vm-select-input__icon svg{width:14px}.vm-select-input__icon_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-select-input__icon:hover{opacity:.7}.vm-explore-metrics-header{align-items:center;display:flex;flex-wrap:wrap;gap:8px 18px;justify-content:flex-start}.vm-explore-metrics-header__job{flex-grow:.5;min-width:200px}.vm-explore-metrics-header__instance{flex-grow:1;min-width:300px}.vm-explore-metrics-header-metrics{flex-grow:1;width:100%}.vm-explore-metrics-header__clear-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:2px}.vm-explore-metrics-header__clear-icon:hover{opacity:.7}.vm-preview-icons{grid-gap:16px;align-items:flex-start;display:grid;gap:16px;grid-template-columns:repeat(auto-fill,100px);justify-content:center}.vm-preview-icons-item{grid-gap:8px;align-items:stretch;border:1px solid transparent;border-radius:4px;cursor:pointer;display:grid;gap:8px;grid-template-rows:1fr auto;height:100px;justify-content:center;padding:16px 8px;transition:box-shadow .2s ease-in-out}.vm-preview-icons-item:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.vm-preview-icons-item:active .vm-preview-icons-item__svg{-webkit-transform:scale(.9);transform:scale(.9)}.vm-preview-icons-item__name{font-size:10px;line-height:2;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.vm-preview-icons-item__svg{align-items:center;display:flex;height:100%;justify-content:center;transition:-webkit-transform .1s ease-out;transition:transform .1s ease-out;transition:transform .1s ease-out,-webkit-transform .1s ease-out}.vm-preview-icons-item__svg svg{height:24px;width:auto}#root,body,html{background-attachment:fixed;background-repeat:no-repeat;color:#110f0f;cursor:default;font-family:Lato,sans-serif;font-size:12px;margin:0;min-height:100%}body{overflow:scroll}*{cursor:inherit;font:inherit}code{font-family:JetBrains Mono,monospace}b{font-weight:700}input,textarea{cursor:text}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{-webkit-user-select:none;user-select:none}input::placeholder,textarea::placeholder{-webkit-user-select:none;user-select:none}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.vm-snackbar{bottom:16px;left:16px;position:fixed;z-index:999}svg{width:100%}a,abbr,acronym,address,applet,article,aside,audio,big,body,canvas,caption,center,cite,code,del,details,dfn,div,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{border:0;margin:0;padding:0;vertical-align:initial}h1,h2,h3,h4,h5,h6{font-weight:400}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}q:after,q:before{content:""}table{border-collapse:collapse;border-spacing:0}input::-webkit-input-placeholder{opacity:1;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}input::placeholder{opacity:1;transition:opacity .3s ease}input:focus::-webkit-input-placeholder{opacity:0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}input:focus::placeholder{opacity:0;transition:opacity .3s ease}*{box-sizing:border-box;outline:none}button{background:none;border:none;border-radius:0;padding:0}strong{letter-spacing:1px}input[type=file]{cursor:pointer;font-size:0;height:100%;left:0;opacity:0;position:absolute;top:0;width:100%}input[type=file]:disabled{cursor:not-allowed}a{color:inherit;text-decoration:inherit}input,textarea{-webkit-text-fill-color:inherit;appearance:none;-webkit-appearance:none}input:disabled,textarea:disabled{opacity:1!important}input:placeholder-shown,textarea:placeholder-shown{width:100%}input:-webkit-autofill,input:-webkit-autofill:active,input:-webkit-autofill:focus,input:-webkit-autofill:hover{-webkit-box-shadow:inset 0 0 0 0 #fff!important;width:100%;z-index:2}.vm-header-button{border:1px solid hsla(0,6%,6%,.2)}.vm-list-item{background-color:transparent;cursor:pointer;padding:12px 16px;transition:background-color .2s ease}.vm-list-item:hover,.vm-list-item_active{background-color:hsla(0,6%,6%,.06)}.vm-list-item_multiselect{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:10px 1fr;justify-content:flex-start}.vm-list-item_multiselect svg{-webkit-animation:vm-scale .15s cubic-bezier(.28,.84,.42,1);animation:vm-scale .15s cubic-bezier(.28,.84,.42,1)}.vm-list-item_multiselect span{grid-column:2}.vm-list-item_multiselect_selected{color:#3f51b5;color:var(--color-primary)}.vm-popper-header{grid-gap:8px;align-items:center;background-color:#3f51b5;background-color:var(--color-primary);border-radius:4px 4px 0 0;color:#fff;display:grid;gap:8px;grid-template-columns:1fr auto;justify-content:space-between;padding:8px 8px 8px 16px}.vm-popper-header__title{font-weight:700}.vm-block{background-color:#fff;background-color:var(--color-background-block);border-radius:8px;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);padding:24px}.vm-block_empty-padding{padding:0}.vm-section-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);border-radius:8px 8px 0 0;display:grid;grid-template-columns:1fr auto;justify-content:center;padding:0 24px}.vm-section-header__title{font-size:12px;font-weight:700}.vm-section-header__tabs{align-items:center;display:flex;font-size:10px;justify-content:flex-start}.vm-table{border-collapse:initial;border-spacing:0;margin-top:-24px;width:100%}.vm-table,.vm-table__row{background-color:#fff;background-color:var(--color-background-block)}.vm-table__row{transition:background-color .2s ease}.vm-table__row:hover:not(.vm-table__row_header){background-color:hsla(0,6%,6%,.05)}.vm-table__row_header{position:-webkit-sticky;position:sticky;top:0;z-index:2}.vm-table__row_selected{background-color:rgba(26,144,255,.05)}.vm-table-cell{border-bottom:1px solid hsla(0,6%,6%,.15);height:40px;padding:8px;vertical-align:middle}.vm-table-cell__content{align-items:center;display:flex;justify-content:flex-start}.vm-table-cell_sort{cursor:pointer}.vm-table-cell_sort:hover{background-color:hsla(0,6%,6%,.05)}.vm-table-cell_header{font-weight:700;text-align:left;text-transform:capitalize}.vm-table-cell_gray{color:hsla(0,6%,6%,.4)}.vm-table-cell_right{text-align:right}.vm-table-cell_right .vm-table-cell__content{justify-content:flex-end}.vm-table-cell_no-wrap{white-space:nowrap}.vm-table__sort-icon{align-items:center;display:flex;justify-content:center;margin:0 8px;opacity:.4;transition:opacity .2s ease,-webkit-transform .2s ease-in-out;transition:opacity .2s ease,transform .2s ease-in-out;transition:opacity .2s ease,transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:15px}.vm-table__sort-icon_active{opacity:1}.vm-table__sort-icon_desc{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm__link{cursor:pointer;transition:color .2s ease}.vm__link:hover,.vm__link_colored{color:#3f51b5;color:var(--color-primary)}.vm__link:hover{text-decoration:underline}:root{--color-primary:#3f51b5;--color-secondary:#e91e63;--color-error:#fd080e;--color-warning:#ff8308;--color-info:#03a9f4;--color-success:#4caf50;--color-primary-text:#fff;--color-secondary-text:#fff;--color-error-text:#fff;--color-warning-text:#fff;--color-info-text:#fff;--color-success-text:#fff;--color-background-body:#fefeff;--color-background-block:#fff} \ No newline at end of file +.vm-tabs{gap:16px;height:100%;position:relative;-webkit-user-select:none;user-select:none}.vm-tabs,.vm-tabs-item{align-items:center;display:flex;justify-content:center}.vm-tabs-item{color:inherit;cursor:pointer;font-size:inherit;font-weight:inherit;opacity:.6;padding:16px 8px;text-decoration:none;text-transform:uppercase;transition:opacity .2s}.vm-tabs-item_active{opacity:1}.vm-tabs-item__icon{display:grid;margin-right:8px;width:15px}.vm-tabs-item__icon_single{margin-right:0}.vm-tabs__indicator{border-bottom:2px solid;position:absolute;transition:width .2s ease,left .3s cubic-bezier(.28,.84,.42,1)}.vm-alert{grid-gap:8px;align-items:center;background-color:var(--color-background-block);border-radius:8px;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);color:#110f0f;display:grid;font-size:14px;font-weight:500;gap:8px;grid-template-columns:20px 1fr;line-height:20px;padding:16px;position:relative}.vm-alert:after{border-radius:8px;content:"";height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%;z-index:1}.vm-alert__content,.vm-alert__icon{position:relative;z-index:2}.vm-alert__icon{align-items:center;display:flex;justify-content:center}.vm-alert__content{-webkit-filter:brightness(.6);filter:brightness(.6);white-space:pre-line}.vm-alert_success{color:var(--color-success)}.vm-alert_success:after{background-color:var(--color-success)}.vm-alert_error{color:var(--color-error)}.vm-alert_error:after{background-color:var(--color-error)}.vm-alert_info{color:var(--color-info)}.vm-alert_info:after{background-color:var(--color-info)}.vm-alert_warning{color:var(--color-warning)}.vm-alert_warning:after{background-color:var(--color-warning)}.vm-popper{background-color:var(--color-background-block);border-radius:4px;box-shadow:0 2px 8px 0 hsla(0,6%,6%,.1);opacity:0;pointer-events:none;position:fixed;transition:opacity .1s ease-in-out;z-index:-99}.vm-popper_open{-webkit-animation:vm-slider .15s cubic-bezier(.28,.84,.42,1.1);animation:vm-slider .15s cubic-bezier(.28,.84,.42,1.1);opacity:1;pointer-events:auto;-webkit-transform-origin:top center;transform-origin:top center;z-index:101}@-webkit-keyframes vm-slider{0%{-webkit-transform:scaleY(0);transform:scaleY(0)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes vm-slider{0%{-webkit-transform:scaleY(0);transform:scaleY(0)}to{-webkit-transform:scaleY(1);transform:scaleY(1)}}.vm-button{align-items:center;border-radius:6px;color:#fff;cursor:pointer;display:flex;font-size:10px;font-weight:500;justify-content:center;line-height:15px;min-height:31px;padding:6px 14px;position:relative;text-transform:uppercase;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-user-select:none;user-select:none;white-space:nowrap}.vm-button:hover:after{background-color:hsla(0,6%,6%,.05)}.vm-button:after,.vm-button:before{border-radius:6px;content:"";height:100%;left:0;position:absolute;top:0;transition:background-color .2s ease;width:100%}.vm-button:before{-webkit-transform:translateZ(-2px);transform:translateZ(-2px)}.vm-button:after{background-color:transparent;-webkit-transform:translateZ(-1px);transform:translateZ(-1px)}.vm-button span{align-items:center;display:grid;justify-content:center}.vm-button span svg{width:15px}.vm-button__start-icon{margin-right:6px}.vm-button__end-icon{margin-left:6px}.vm-button_disabled{cursor:not-allowed;opacity:.3}.vm-button_icon{padding:6px 8px}.vm-button_icon .vm-button__end-icon,.vm-button_icon .vm-button__start-icon{margin:0}.vm-button_small{min-height:25px;padding:4px 6px}.vm-button_small span svg{width:13px}.vm-button_contained_primary{color:var(--color-primary-text)}.vm-button_contained_primary:before{background-color:var(--color-primary)}.vm-button_contained_primary:hover:after{background-color:hsla(0,6%,6%,.2)}.vm-button_contained_secondary{color:var(--color-secondary-text)}.vm-button_contained_secondary:before{background-color:var(--color-secondary)}.vm-button_contained_secondary:hover:after{background-color:hsla(0,6%,6%,.2)}.vm-button_contained_success{color:var(--color-success-text)}.vm-button_contained_success:before{background-color:var(--color-success)}.vm-button_contained_success:hover:after{background-color:hsla(0,6%,6%,.2)}.vm-button_contained_error{color:var(--color-error-text)}.vm-button_contained_error:before{background-color:var(--color-error)}.vm-button_contained_gray{color:hsla(0,6%,6%,.6)}.vm-button_contained_gray:before{background-color:hsla(0,6%,6%,.6)}.vm-button_contained_warning{color:var(--color-warning)}.vm-button_contained_warning:before{background-color:var(--color-warning);opacity:.2}.vm-button_text_primary{color:var(--color-primary)}.vm-button_text_secondary{color:var(--color-secondary)}.vm-button_text_success{color:var(--color-success)}.vm-button_text_error{color:var(--color-error)}.vm-button_text_gray{color:hsla(0,6%,6%,.6)}.vm-button_text_warning{color:var(--color-warning)}.vm-button_outlined_primary{border:1px solid var(--color-primary);color:var(--color-primary)}.vm-button_outlined_error{border:1px solid var(--color-error);color:var(--color-error)}.vm-button_outlined_secondary{border:1px solid var(--color-secondary);color:var(--color-secondary)}.vm-button_outlined_success{border:1px solid var(--color-success);color:var(--color-success)}.vm-button_outlined_gray{border:1px solid hsla(0,6%,6%,.6);color:hsla(0,6%,6%,.6)}.vm-button_outlined_warning{border:1px solid var(--color-warning);color:var(--color-warning)}.vm-execution-controls-buttons{border-radius:7px;display:flex;justify-content:space-between;min-width:107px}.vm-execution-controls-buttons__arrow{align-items:center;display:flex;justify-content:center;-webkit-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.vm-execution-controls-buttons__arrow_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-execution-controls-list{font-size:12px;max-height:208px;overflow:auto;padding:8px 0;width:124px}.vm-tooltip{-webkit-animation:vm-scale .15s cubic-bezier(.28,.84,.42,1);animation:vm-scale .15s cubic-bezier(.28,.84,.42,1);background-color:rgba(97,97,97,.92);border-radius:4px;box-shadow:0 2px 8px 0 hsla(0,6%,6%,.1);color:#fff;font-size:10px;line-height:150%;opacity:1;padding:3px 8px;pointer-events:auto;position:fixed;transition:opacity .1s ease-in-out;white-space:nowrap;z-index:101}@-webkit-keyframes vm-scale{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes vm-scale{0%{-webkit-transform:scale(0);transform:scale(0)}to{-webkit-transform:scale(1);transform:scale(1)}}.vm-time-duration{font-size:12px;max-height:200px;overflow:auto}.vm-calendar{background-color:var(--color-background-block);border-radius:8px;display:grid;font-size:12px;grid-template-rows:auto 1fr auto;padding:16px;-webkit-user-select:none;user-select:none}.vm-calendar__tabs{border-top:1px solid hsla(0,6%,6%,.15);margin:16px -16px -16px}.vm-calendar-header{grid-gap:24px;align-items:center;display:grid;gap:24px;grid-template-columns:1fr auto;justify-content:center;min-height:36px;padding-bottom:16px}.vm-calendar-header-left{grid-gap:8px;align-items:center;cursor:pointer;display:grid;gap:8px;grid-template-columns:auto auto;justify-content:flex-start;transition:opacity .2s ease-in-out}.vm-calendar-header-left:hover{opacity:.8}.vm-calendar-header-left__date{color:#110f0f;font-size:12px;font-weight:700}.vm-calendar-header-left__select-year{align-items:center;display:grid;height:14px;justify-content:center;width:14px}.vm-calendar-header-right{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:18px 18px;justify-content:center}.vm-calendar-header-right__next,.vm-calendar-header-right__prev{cursor:pointer;transition:opacity .2s ease-in-out}.vm-calendar-header-right__next:hover,.vm-calendar-header-right__prev:hover{opacity:.8}.vm-calendar-header-right__prev{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.vm-calendar-header-right__next{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.vm-calendar-body{grid-gap:2px;display:grid;gap:2px;grid-template-columns:repeat(7,32px);grid-template-rows:repeat(6,32px)}.vm-calendar-body,.vm-calendar-body-cell{align-items:center;justify-content:center}.vm-calendar-body-cell{border-radius:50%;display:flex;height:100%;text-align:center}.vm-calendar-body-cell_weekday{color:hsla(0,6%,6%,.6)}.vm-calendar-body-cell_day{cursor:pointer;transition:color .2s ease,background-color .3s ease-in-out}.vm-calendar-body-cell_day:hover{background-color:hsla(0,6%,6%,.05)}.vm-calendar-body-cell_day_empty{pointer-events:none}.vm-calendar-body-cell_day_active{color:#fff}.vm-calendar-body-cell_day_active,.vm-calendar-body-cell_day_active:hover{background-color:var(--color-primary)}.vm-calendar-body-cell_day_today{border:1px solid var(--color-primary)}.vm-calendar-years{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(3,1fr);max-height:400px;overflow:auto}.vm-calendar-years__year{align-items:center;border-radius:8px;cursor:pointer;display:flex;justify-content:center;padding:8px 16px;transition:color .2s ease,background-color .3s ease-in-out}.vm-calendar-years__year:hover{background-color:hsla(0,6%,6%,.05)}.vm-calendar-years__year_selected{color:#fff}.vm-calendar-years__year_selected,.vm-calendar-years__year_selected:hover{background-color:var(--color-primary)}.vm-calendar-time-picker{align-items:center;display:flex;flex-direction:column;justify-content:center}.vm-calendar-time-picker-clock{border:1px solid hsla(0,6%,6%,.15);border-radius:50%;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);box-sizing:initial;height:230px;position:relative;width:230px}.vm-calendar-time-picker-clock:after{background-color:var(--color-primary);border-radius:50%;content:"";height:6px;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:6px}.vm-calendar-time-picker-clock__arrow{background-color:var(--color-primary);height:107px;left:114px;margin-top:8px;opacity:.8;position:absolute;top:0;-webkit-transform-origin:bottom;transform-origin:bottom;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:2px;z-index:0}.vm-calendar-time-picker-clock__arrow_offset{height:73px;margin-top:42px;z-index:2}.vm-calendar-time-picker-clock__arrow:after{background-color:var(--color-primary);border-radius:50%;content:"";height:30px;left:50%;position:absolute;top:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:30px}.vm-calendar-time-picker-clock__time{align-items:flex-start;cursor:pointer;display:flex;height:115px;justify-content:center;left:100px;padding-top:8px;position:absolute;text-align:center;top:0;-webkit-transform-origin:bottom;transform-origin:bottom;width:30px;z-index:1}.vm-calendar-time-picker-clock__time_hide{display:none}.vm-calendar-time-picker-clock__time_offset{height:73px;margin-top:42px;padding:0;z-index:2}.vm-calendar-time-picker-clock__time:hover span{background-color:hsla(0,6%,6%,.1)}.vm-calendar-time-picker-clock__time span{align-items:center;border-radius:50%;display:grid;justify-content:center;min-height:30px;min-width:30px;position:relative;-webkit-transform-origin:center;transform-origin:center;transition:background-color .3s ease}.vm-calendar-time-picker-fields{align-items:center;display:flex;justify-content:space-between;margin-top:16px}.vm-calendar-time-picker-fields span{margin:0 8px}.vm-calendar-time-picker-fields__input{border:1px solid #d8d8d8;border-radius:4px;font-size:14px;height:32px;padding:2px 8px;text-align:center;width:64px}.vm-calendar-time-picker-fields__input:focus{border-color:var(--color-primary)}.vm-time-selector{display:grid;grid-template-columns:repeat(2,230px);padding:16px 0}.vm-time-selector-left{border-right:1px solid hsla(0,6%,6%,.15);display:flex;flex-direction:column;gap:8px;padding:0 16px}.vm-time-selector-left-inputs{align-items:flex-start;display:grid;flex-grow:1;justify-content:stretch}.vm-time-selector-left-inputs__date{grid-gap:8px;align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);cursor:pointer;display:grid;gap:8px;grid-template-columns:1fr 14px;justify-content:center;margin-bottom:16px;padding-bottom:8px;transition:color .2s ease-in-out,border-bottom-color .3s ease}.vm-time-selector-left-inputs__date:last-child{margin-bottom:0}.vm-time-selector-left-inputs__date:hover{border-bottom-color:var(--color-primary)}.vm-time-selector-left-inputs__date:hover,.vm-time-selector-left-inputs__date:hover svg{color:var(--color-primary)}.vm-time-selector-left-inputs__date label{color:hsla(0,6%,6%,.6);font-size:10px;grid-column:1/3}.vm-time-selector-left-inputs__date svg{color:hsla(0,6%,6%,.6);transition:color .2s ease-in-out}.vm-time-selector-left-timezone{align-items:center;display:flex;font-size:10px;gap:8px;justify-content:space-between;margin-bottom:8px}.vm-time-selector-left-timezone__utc{align-items:center;background-color:hsla(0,6%,6%,.06);border-radius:4px;display:inline-flex;justify-content:center;padding:4px}.vm-time-selector-left__controls{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(2,1fr)}.vm-text-field{display:grid;margin:6px 0;position:relative;width:100%}.vm-text-field_textarea:after{content:attr(data-replicated-value) " ";visibility:hidden;white-space:pre-wrap}.vm-text-field:after,.vm-text-field__input{background-color:transparent;border:1px solid hsla(0,6%,6%,.15);font-size:12px;grid-area:1/1/2/2;line-height:18px;overflow:hidden;padding:8px 16px;width:100%}.vm-text-field__error,.vm-text-field__helper-text,.vm-text-field__label{-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;background-color:var(--color-background-block);display:-webkit-box;font-size:10px;left:8px;line-height:12px;max-width:calc(100% - 16px);overflow:hidden;padding:0 3px;pointer-events:none;position:absolute;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;z-index:2}.vm-text-field__label{color:hsla(0,6%,6%,.6);top:-7px}.vm-text-field__error{color:var(--color-error);top:calc(100% - 7px)}.vm-text-field__helper-text{bottom:-5px;color:hsla(0,6%,6%,.6)}.vm-text-field__input{border-radius:4px;display:block;min-height:34px;overflow:hidden;resize:none;transition:border .2s ease}.vm-text-field__input:focus,.vm-text-field__input:hover{border:1px solid var(--color-primary)}.vm-text-field__input_error,.vm-text-field__input_error:focus,.vm-text-field__input_error:hover{border:1px solid var(--color-error)}.vm-text-field__input_icon-start{padding-left:31px}.vm-text-field__input:disabled{background-color:inherit;color:inherit}.vm-text-field__input:disabled:hover{border-color:hsla(0,6%,6%,.4)}.vm-text-field__icon-end,.vm-text-field__icon-start{align-items:center;color:hsla(0,6%,6%,.6);display:flex;height:100%;justify-content:center;left:8px;max-width:15px;position:absolute;top:auto}.vm-text-field__icon-end{left:auto;right:8px}.vm-modal{align-items:center;background:hsla(0,6%,6%,.55);bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:100}.vm-modal-content{background:#fff;border-radius:4px;box-shadow:0 0 24px hsla(0,6%,6%,.07);padding:22px}.vm-modal-content-header{align-items:center;display:grid;grid-template-columns:1fr auto;margin-bottom:22px}.vm-modal-content-header__title{font-size:14px;font-weight:700}.vm-modal-content-header__close{align-items:center;box-sizing:initial;color:#fff;cursor:pointer;display:flex;justify-content:center;padding:10px;width:24px}.vm-server-configurator{grid-gap:24px;align-items:center;display:grid;gap:24px;width:600px}.vm-server-configurator__title{align-items:center;display:flex;font-size:12px;font-weight:700;justify-content:flex-start;margin-bottom:16px}.vm-server-configurator__footer{align-items:center;display:inline-grid;gap:8px;grid-template-columns:repeat(2,1fr);justify-content:flex-end;margin-left:auto;margin-right:0}.vm-limits-configurator-title__reset{align-items:center;display:flex;flex-grow:1;justify-content:flex-end}.vm-limits-configurator__inputs{grid-gap:16px;align-items:center;display:grid;gap:16px;grid-template-columns:repeat(3,1fr);justify-content:space-between}.vm-accordion-header{align-items:center;cursor:pointer;display:grid;font-size:inherit;position:relative}.vm-accordion-header__arrow{align-items:center;display:flex;justify-content:center;position:absolute;right:14px;top:auto;-webkit-transform:rotate(0);transform:rotate(0);transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.vm-accordion-header__arrow_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-accordion-header__arrow svg{height:auto;width:14px}.accordion-section{overflow:hidden}.vm-timezones-item{align-items:center;cursor:pointer;display:flex;gap:8px;justify-content:space-between}.vm-timezones-item_selected{border:1px solid hsla(0,6%,6%,.15);border-radius:4px;padding:8px 16px}.vm-timezones-item__title{text-transform:capitalize}.vm-timezones-item__utc{align-items:center;background-color:hsla(0,6%,6%,.06);border-radius:4px;display:inline-flex;justify-content:center;padding:4px}.vm-timezones-item__icon{align-items:center;display:inline-flex;justify-content:flex-end;margin:0 0 0 auto;transition:-webkit-transform .2s ease-in;transition:transform .2s ease-in;transition:transform .2s ease-in,-webkit-transform .2s ease-in}.vm-timezones-item__icon svg{width:14px}.vm-timezones-item__icon_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-timezones-list{border-radius:8px;max-height:200px;min-width:600px;overflow:auto}.vm-timezones-list,.vm-timezones-list-header{background-color:var(--color-background-block)}.vm-timezones-list-header{border-bottom:1px solid hsla(0,6%,6%,.15);position:-webkit-sticky;position:sticky;top:0;z-index:2}.vm-timezones-list-header__search{padding:8px}.vm-timezones-list-group{border-bottom:1px solid hsla(0,6%,6%,.15);padding:8px 0}.vm-timezones-list-group:last-child{border-bottom:none}.vm-timezones-list-group__title{color:hsla(0,6%,6%,.6);font-weight:700;padding:8px 16px}.vm-timezones-list-group-options{align-items:flex-start;display:grid}.vm-timezones-list-group-options__item{padding:8px 16px;transition:background-color .2s ease}.vm-timezones-list-group-options__item:hover{background-color:hsla(0,6%,6%,.1)}.vm-shortcuts{min-width:400px}.vm-shortcuts-section{margin-bottom:24px}.vm-shortcuts-section__title{border-bottom:1px solid hsla(0,6%,6%,.15);font-weight:700;margin-bottom:16px;padding:8px 0}.vm-shortcuts-section-list{grid-gap:16px;display:grid;gap:16px}.vm-shortcuts-section-list-item{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:210px 1fr}.vm-shortcuts-section-list-item__key{align-items:center;display:flex;gap:4px}.vm-shortcuts-section-list-item__key code{background-color:#fff;background-repeat:repeat-x;border:1px solid hsla(0,6%,6%,.15);border-radius:4px;color:#110f0f;display:inline-block;font-size:10px;line-height:2;padding:2px 8px 0;text-align:center}.vm-shortcuts-section-list-item__description{font-size:12px}.vm-header{align-items:center;display:flex;gap:48px;justify-content:flex-start;padding:8px 24px}.vm-header_app{padding:8px 0}.vm-header__logo{align-items:center;cursor:pointer;display:flex;justify-content:center;margin-bottom:2px;max-width:65px;position:relative;width:100%}.vm-header-nav{font-size:10px;font-weight:600}.vm-header__settings{align-items:center;display:flex;flex-grow:1;gap:8px;justify-content:flex-end}.vm-container{display:flex;flex-direction:column;min-height:calc(100vh - var(--scrollbar-height))}.vm-container-body{background-color:var(--color-background-body);flex-grow:1;min-height:100%;padding:24px}.vm-container-body_app{background-color:transparent;padding:8px 0}.vm-footer{border-top:1px solid hsla(0,6%,6%,.15);color:hsla(0,6%,6%,.6);display:flex;gap:48px;padding:24px}.vm-footer,.vm-footer__website{align-items:center;justify-content:center}.vm-footer__website{grid-gap:6px;display:grid;gap:6px;grid-template-columns:12px auto}.vm-footer__copyright{flex-grow:1;text-align:right}.uplot,.uplot *,.uplot :after,.uplot :before{box-sizing:border-box}.uplot{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;width:-webkit-min-content;width:min-content}.u-title{font-size:18px;font-weight:700;text-align:center}.u-wrap{position:relative;-webkit-user-select:none;user-select:none}.u-over,.u-under{position:absolute}.u-under{overflow:hidden}.uplot canvas{display:block;height:100%;position:relative;width:100%}.u-axis{position:absolute}.u-legend{margin:auto;text-align:center}.u-inline{display:block}.u-inline *{display:inline-block}.u-inline tr{margin-right:16px}.u-legend th{font-weight:600}.u-legend th>*{display:inline-block;vertical-align:middle}.u-legend .u-marker{background-clip:padding-box!important;height:1em;margin-right:4px;width:1em}.u-inline.u-live th:after{content:":";vertical-align:middle}.u-inline:not(.u-live) .u-value{display:none}.u-series>*{padding:4px}.u-series th{cursor:pointer}.u-legend .u-off>*{opacity:.3}.u-select{background:rgba(0,0,0,.07)}.u-cursor-x,.u-cursor-y,.u-select{pointer-events:none;position:absolute}.u-cursor-x,.u-cursor-y{left:0;top:0;will-change:transform;z-index:100}.u-hz .u-cursor-x,.u-vt .u-cursor-y{border-right:1px dashed #607d8b;height:100%}.u-hz .u-cursor-y,.u-vt .u-cursor-x{border-bottom:1px dashed #607d8b;width:100%}.u-cursor-pt{background-clip:padding-box!important;border:0 solid;border-radius:50%;left:0;pointer-events:none;position:absolute;top:0;will-change:transform;z-index:100}.u-axis.u-off,.u-cursor-pt.u-off,.u-cursor-x.u-off,.u-cursor-y.u-off,.u-select.u-off{display:none}.vm-line-chart{pointer-events:auto}.vm-line-chart_panning{pointer-events:none}.vm-line-chart__u-plot{position:relative}.vm-chart-tooltip{grid-gap:16px;word-wrap:break-word;background:rgba(97,97,97,.92);border-radius:8px;color:#fff;display:grid;font-family:JetBrains Mono,monospace;font-size:10px;font-weight:400;gap:16px;line-height:150%;padding:8px;pointer-events:none;position:absolute;-webkit-user-select:text;user-select:text;width:325px;z-index:98}.vm-chart-tooltip_sticky{background-color:#616161;pointer-events:auto;z-index:99}.vm-chart-tooltip_moved{margin-left:-271.5px;margin-top:-20.5px;position:fixed}.vm-chart-tooltip-header{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:1fr 25px 25px;justify-content:center;min-height:25px}.vm-chart-tooltip-header__close{color:#fff}.vm-chart-tooltip-header__drag{color:#fff;cursor:move}.vm-chart-tooltip-data{grid-gap:8px;align-items:flex-start;display:grid;gap:8px;grid-template-columns:auto 1fr;line-height:12px;word-break:break-all}.vm-chart-tooltip-data__value{font-weight:700;padding:4px}.vm-chart-tooltip-data__marker{height:12px;width:12px}.vm-chart-tooltip-info{grid-gap:4px;display:grid;word-break:break-all}.vm-legend-item{grid-gap:8px;align-items:start;background-color:var(--color-background-block);cursor:pointer;display:grid;grid-template-columns:auto auto;justify-content:start;padding:8px 48px 8px 8px;transition:.2s ease}.vm-legend-item:hover{background-color:rgba(0,0,0,.1)}.vm-legend-item_hide{opacity:.5;text-decoration:line-through}.vm-legend-item__marker{border-radius:2px;box-sizing:border-box;height:14px;transition:.2s ease;width:14px}.vm-legend-item-info{font-weight:400}.vm-legend-item-info__free-fields{cursor:pointer;padding:3px}.vm-legend-item-info__free-fields:hover{text-decoration:underline}.vm-legend-item-info__free-fields:not(:last-child):after{content:","}.vm-legend{cursor:default;display:flex;flex-wrap:wrap;margin-top:24px;position:relative}.vm-legend-group{margin:0 16px 16px 0;min-width:23%}.vm-legend-group-title{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;margin-bottom:1px;padding:0 8px 8px}.vm-legend-group-title__count{font-weight:700;margin-right:8px}.vm-graph-view{width:100%}.vm-graph-view_full-width{width:calc(100vw - 96px - var(--scrollbar-width))}.vm-autocomplete{max-height:300px;overflow:auto}.vm-autocomplete__no-options{color:hsla(0,6%,6%,.4);padding:16px;text-align:center}.vm-query-editor-autocomplete{max-height:300px;overflow:auto}.vm-additional-settings{align-items:center;display:inline-flex;flex-wrap:wrap;gap:24px;justify-content:flex-start}.vm-additional-settings__input{flex-basis:160px;margin-bottom:-6px}.vm-switch{align-items:center;cursor:pointer;display:flex;justify-content:flex-start}.vm-switch_disabled{cursor:default;opacity:.6}.vm-switch_secondary_active .vm-switch-track{background-color:var(--color-secondary)}.vm-switch_primary_active .vm-switch-track{background-color:var(--color-primary)}.vm-switch_active .vm-switch-track__thumb{left:20px}.vm-switch:hover .vm-switch-track{opacity:.8}.vm-switch-track{align-items:center;background-color:hsla(0,6%,6%,.4);border-radius:17px;display:flex;height:17px;justify-content:flex-start;padding:3px;position:relative;transition:background-color .2s ease,opacity .3s ease-out;width:34px}.vm-switch-track__thumb{background-color:var(--color-background-block);border-radius:50%;left:3px;min-height:11px;min-width:11px;position:absolute;top:auto;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:right .2s ease-out,left .2s ease-out}.vm-switch__label{color:inherit;font-size:inherit;margin-left:8px;transition:color .2s ease;white-space:nowrap}.vm-query-configurator{grid-gap:8px;display:grid;gap:8px}.vm-query-configurator-list{display:grid}.vm-query-configurator-list-row{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:1fr auto auto}.vm-query-configurator-list-row_disabled{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.5}.vm-query-configurator-list-row__button{display:grid;min-height:36px;width:36px}.vm-query-configurator-settings{align-items:flex-end;display:flex;gap:24px;justify-content:space-between}.vm-query-configurator-settings__buttons{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(2,auto)}.vm-json-view__copy{display:flex;justify-content:flex-end;position:-webkit-sticky;position:sticky;top:24px;z-index:2}.vm-json-view__code{font-size:12px;line-height:1.4;-webkit-transform:translateY(-32px);transform:translateY(-32px)}.vm-axes-limits{max-width:300px}.vm-axes-limits,.vm-axes-limits-list{grid-gap:16px;align-items:center;display:grid;gap:16px}.vm-axes-limits-list__inputs{grid-gap:8px;display:grid;gap:8px;grid-template-columns:repeat(2,120px)}.vm-graph-settings-popper{grid-gap:16px;display:grid;gap:16px;padding:0 0 16px}.vm-graph-settings-popper__body{grid-gap:8px;display:grid;gap:8px;padding:0 16px}.vm-spinner{align-items:center;-webkit-animation:vm-fade 2s cubic-bezier(.28,.84,.42,1.1);animation:vm-fade 2s cubic-bezier(.28,.84,.42,1.1);background-color:hsla(0,0%,100%,.5);bottom:0;display:flex;flex-direction:column;justify-content:center;left:0;pointer-events:none;position:fixed;right:0;top:0;z-index:99}.vm-spinner__message{color:hsla(0,6%,6%,.9);font-size:14px;line-height:1.3;margin-top:24px;text-align:center;white-space:pre-line}.half-circle-spinner,.half-circle-spinner *{box-sizing:border-box}.half-circle-spinner{border-radius:100%;height:60px;position:relative;width:60px}.half-circle-spinner .circle{border:6px solid transparent;border-radius:100%;content:"";height:100%;position:absolute;width:100%}.half-circle-spinner .circle.circle-1{-webkit-animation:half-circle-spinner-animation 1s infinite;animation:half-circle-spinner-animation 1s infinite;border-top-color:var(--color-primary)}.half-circle-spinner .circle.circle-2{-webkit-animation:half-circle-spinner-animation 1s infinite alternate;animation:half-circle-spinner-animation 1s infinite alternate;border-bottom-color:var(--color-primary)}@-webkit-keyframes half-circle-spinner-animation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes half-circle-spinner-animation{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes vm-fade{0%{opacity:0}to{opacity:1}}@keyframes vm-fade{0%{opacity:0}to{opacity:1}}.vm-tracings-view{grid-gap:24px;display:grid;gap:24px}.vm-tracings-view-trace-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;justify-content:space-between;padding:8px 8px 8px 24px}.vm-tracings-view-trace-header-title{flex-grow:1;font-size:14px;margin-right:8px}.vm-tracings-view-trace-header-title__query{font-weight:700}.vm-tracings-view-trace__nav{padding:24px 24px 24px 0}.vm-line-progress{grid-gap:8px;align-items:center;color:hsla(0,6%,6%,.6);display:grid;gap:8px;grid-template-columns:1fr auto;justify-content:center}.vm-line-progress-track{background-color:hsla(0,6%,6%,.05);border-radius:4px;height:20px;width:100%}.vm-line-progress-track__thumb{background-color:#1a90ff;border-radius:4px;height:100%}.vm-nested-nav{background-color:rgba(201,227,246,.4);border-radius:4px;margin-left:24px}.vm-nested-nav-header{grid-gap:8px;border-radius:4px;cursor:pointer;display:grid;gap:8px;grid-template-columns:auto 1fr;padding:8px;transition:background-color .2s ease-in-out}.vm-nested-nav-header:hover{background-color:hsla(0,6%,6%,.06)}.vm-nested-nav-header__icon{align-items:center;display:flex;justify-content:center;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:20px}.vm-nested-nav-header__icon_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-nested-nav-header__message,.vm-nested-nav-header__progress{grid-column:2}.vm-nested-nav-header__duration{color:hsla(0,6%,6%,.6);grid-column:2}.vm-json-form{grid-gap:16px;display:grid;gap:16px;grid-template-rows:auto calc(90vh - 150px) auto;max-height:900px;max-width:1000px;width:70vw}.vm-json-form_one-field{grid-template-rows:calc(90vh - 150px) auto}.vm-json-form textarea{height:100%;overflow:auto;width:100%}.vm-json-form-footer{align-items:center;display:flex;gap:8px;justify-content:space-between}.vm-json-form-footer__controls{align-items:center;display:flex;flex-grow:1;gap:8px;justify-content:flex-start}.vm-json-form-footer__controls_right{display:grid;grid-template-columns:repeat(2,90px);justify-content:flex-end}.vm-table-settings-popper{display:grid;min-width:250px}.vm-table-settings-popper-list{grid-gap:8px;border-bottom:1px solid hsla(0,6%,6%,.15);display:grid;gap:8px;max-height:350px;overflow:auto;padding:16px}.vm-table-settings-popper-list-header{align-items:center;display:grid;grid-template-columns:1fr auto;justify-content:space-between;min-height:25px}.vm-table-settings-popper-list-header__title{font-weight:700}.vm-table-settings-popper-list__item{font-size:12px;text-transform:capitalize}.vm-checkbox{align-items:center;cursor:pointer;display:flex;justify-content:flex-start;-webkit-user-select:none;user-select:none}.vm-checkbox_disabled{cursor:default;opacity:.6}.vm-checkbox_secondary_active .vm-checkbox-track{background-color:var(--color-secondary)}.vm-checkbox_secondary .vm-checkbox-track{border:1px solid var(--color-secondary)}.vm-checkbox_primary_active .vm-checkbox-track{background-color:var(--color-primary)}.vm-checkbox_primary .vm-checkbox-track{border:1px solid var(--color-primary)}.vm-checkbox_active .vm-checkbox-track__thumb{-webkit-transform:scale(1);transform:scale(1)}.vm-checkbox:hover .vm-checkbox-track{opacity:.8}.vm-checkbox-track{align-items:center;background-color:transparent;border-radius:4px;display:flex;height:16px;justify-content:center;padding:2px;position:relative;transition:background-color .2s ease,opacity .3s ease-out;width:16px}.vm-checkbox-track__thumb{align-items:center;color:#fff;display:grid;height:12px;justify-content:center;-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .1s ease-in-out;transition:transform .1s ease-in-out;transition:transform .1s ease-in-out,-webkit-transform .1s ease-in-out;width:12px}.vm-checkbox__label{color:inherit;font-size:inherit;margin-left:8px;transition:color .2s ease;white-space:nowrap}.vm-custom-panel{grid-gap:24px;align-items:flex-start;display:grid;gap:24px;grid-template-columns:100%;height:100%}.vm-custom-panel__warning{align-items:center;display:grid;grid-template-columns:1fr auto;justify-content:space-between}.vm-custom-panel-body{position:relative}.vm-custom-panel-body-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;font-size:10px;justify-content:space-between;margin:-24px -24px 24px;padding:0 24px;position:relative;z-index:1}.vm-table-view{margin-top:-24px;max-width:100%;overflow:auto}.vm-table-view table{margin-top:0}.vm-predefined-panel-header{grid-gap:8px;align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:grid;gap:8px;grid-template-columns:auto 1fr 160px auto;justify-content:flex-start;padding:8px 16px}.vm-predefined-panel-header__description{line-height:1.3;white-space:pre-wrap}.vm-predefined-panel-header__description ol,.vm-predefined-panel-header__description ul{list-style-position:inside}.vm-predefined-panel-header__description a{color:#c9e3f6;text-decoration:underline}.vm-predefined-panel-header__info{align-items:center;color:var(--color-primary);display:flex;justify-content:center;width:18px}.vm-predefined-panel-body{padding:8px 16px}.vm-predefined-dashboard{background-color:transparent}.vm-predefined-dashboard-header{align-items:center;border-radius:4px;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);display:grid;font-weight:700;grid-template-columns:1fr auto;justify-content:space-between;line-height:14px;overflow:hidden;padding:16px;position:relative;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:box-shadow .2s ease-in-out}.vm-predefined-dashboard-header_open{border-radius:4px 4px 0 0;box-shadow:none}.vm-predefined-dashboard-header__title{font-size:12px}.vm-predefined-dashboard-header__count{font-size:10px;grid-column:2;margin-right:30px}.vm-predefined-dashboard-panels{grid-gap:16px;display:grid;gap:16px;grid-template-columns:repeat(12,1fr);padding:0}.vm-predefined-dashboard-panels-panel{border-radius:8px;overflow:hidden;position:relative}.vm-predefined-dashboard-panels-panel:hover .vm-predefined-dashboard-panels-panel__resizer{-webkit-transform:scale(1);transform:scale(1)}.vm-predefined-dashboard-panels-panel__resizer{bottom:0;cursor:se-resize;height:20px;position:absolute;right:0;-webkit-transform:scale(0);transform:scale(0);transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:20px;z-index:1}.vm-predefined-dashboard-panels-panel__resizer:after{border-bottom:2px solid hsla(0,6%,6%,.2);border-right:2px solid hsla(0,6%,6%,.2);bottom:5px;content:"";height:5px;position:absolute;right:5px;width:5px}.vm-predefined-dashboard-panels-panel__alert{grid-column:span 12}.vm-predefined-panels{grid-gap:16px;align-items:flex-start;display:grid;gap:16px}.vm-predefined-panels-tabs.vm-block{padding:16px}.vm-predefined-panels-tabs{align-items:center;display:flex;flex-wrap:wrap;font-size:10px;gap:8px;justify-content:flex-start;overflow:hidden;white-space:nowrap}.vm-predefined-panels-tabs__tab{background:#fff;border:1px solid hsla(0,6%,6%,.2);border-radius:8px;color:hsla(0,6%,6%,.2);cursor:pointer;padding:8px 16px;text-transform:uppercase;transition:background .2s ease-in-out,color .15s ease-in}.vm-predefined-panels-tabs__tab:hover{color:var(--color-primary)}.vm-predefined-panels-tabs__tab_active{border-color:var(--color-primary);color:var(--color-primary)}.vm-predefined-panels__dashboards{grid-gap:16px;display:grid;gap:16px}.vm-cardinality-configurator{grid-gap:8px;display:grid;gap:8px}.vm-cardinality-configurator-controls{align-items:center;display:flex;flex-wrap:wrap;gap:0 24px;justify-content:flex-start}.vm-cardinality-configurator-controls__query{flex-grow:1}.vm-cardinality-configurator-bottom{grid-gap:24px;align-items:flex-end;display:grid;gap:24px;grid-template-columns:1fr auto}.vm-cardinality-configurator-bottom__info{font-size:12px}.u-legend{color:#110f0f;font-family:Lato,sans-serif;font-size:14px}.u-legend .u-thead{display:none}.u-legend .u-series{display:flex;gap:8px}.u-legend .u-series th{display:none}.u-legend .u-series td:nth-child(2):after{content:":";margin-left:8px}.u-legend .u-series .u-value{display:block;padding:0;text-align:left}.vm-metrics-content-header{margin:-24px -24px 24px}.vm-cardinality-panel{grid-gap:24px;align-items:flex-start;display:grid;gap:24px}.vm-top-queries-panel-header{margin:-24px -24px 24px}.vm-top-queries{grid-gap:24px;align-items:flex-start;display:grid;gap:24px}.vm-top-queries-controls{grid-gap:8px;display:grid;gap:8px}.vm-top-queries-controls-bottom,.vm-top-queries-controls__fields{grid-gap:24px;display:grid;gap:24px;grid-template-columns:1fr auto}.vm-top-queries-controls-bottom{align-items:flex-end;justify-content:space-between}.vm-top-queries-controls-bottom__button{align-items:center;display:flex;justify-content:flex-end}.vm-top-queries-panels{grid-gap:24px;display:grid;gap:24px}.vm-trace-page{display:flex;flex-direction:column;min-height:100%;padding:16px}.vm-trace-page-controls{grid-gap:16px;align-items:center;display:grid;gap:16px;grid-template-columns:1fr 1fr;justify-content:center}.vm-trace-page-header{grid-gap:16px;align-items:start;display:grid;gap:16px;grid-template-columns:1fr auto;margin-bottom:24px}.vm-trace-page-header-errors{grid-gap:24px;align-items:flex-start;display:grid;gap:24px;grid-template-columns:1fr;justify-content:stretch}.vm-trace-page-header-errors-item{align-items:center;display:grid;justify-content:stretch;position:relative}.vm-trace-page-header-errors-item__filename{min-height:20px}.vm-trace-page-header-errors-item__close{position:absolute;right:8px;top:auto;z-index:2}.vm-trace-page-preview{align-items:center;display:flex;flex-direction:column;flex-grow:1;justify-content:center}.vm-trace-page-preview__text{font-size:14px;line-height:1.8;margin-bottom:16px;text-align:center;white-space:pre-line}.vm-explore-metrics,.vm-explore-metrics-body{grid-gap:24px;align-items:flex-start;display:grid;gap:24px}.vm-explore-metrics-graph{padding:0 16px 16px}.vm-explore-metrics-graph__warning{align-items:center;display:grid;grid-template-columns:1fr auto;justify-content:space-between}.vm-explore-metrics-item-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);display:flex;flex-wrap:wrap;gap:16px;justify-content:flex-start;padding:16px}.vm-explore-metrics-item-header__index{color:hsla(0,6%,6%,.6);font-size:10px}.vm-explore-metrics-item-header__name{flex-grow:1;font-weight:700}.vm-explore-metrics-item-header-order{align-items:center;display:grid;grid-template-columns:auto 20px auto;justify-content:flex-start;text-align:center}.vm-explore-metrics-item-header-order__up{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-explore-metrics-item-header__layout{align-items:center;display:grid}.vm-explore-metrics-item-header code{background-color:hsla(0,6%,6%,.05);border-radius:6px;font-size:85%;padding:.2em .4em}.vm-explore-metrics-item{position:relative}.vm-select-input{align-items:center;border:1px solid hsla(0,6%,6%,.15);border-radius:4px;cursor:pointer;display:flex;justify-content:space-between;min-height:36px;padding:5px 0 5px 16px;position:relative}.vm-select-input-content{align-items:center;display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-start;width:100%}.vm-select-input-content__selected{align-items:center;background-color:hsla(0,6%,6%,.06);border-radius:4px;display:inline-flex;font-size:12px;justify-content:center;line-height:12px;padding:2px 2px 2px 6px}.vm-select-input-content__selected svg{align-items:center;background-color:transparent;border-radius:4px;display:flex;justify-content:center;margin-left:10px;padding:4px;transition:background-color .2s ease-in-out;width:20px}.vm-select-input-content__selected svg:hover{background-color:hsla(0,6%,6%,.1)}.vm-select-input input{border:none;border-radius:4px;display:inline-block;flex-grow:1;font-size:12px;height:18px;line-height:18px;min-width:100px;padding:0;position:relative;z-index:2}.vm-select-input input:placeholder-shown{width:auto}.vm-select-input__icon{align-items:center;border-right:1px solid hsla(0,6%,6%,.15);color:hsla(0,6%,6%,.6);cursor:pointer;display:inline-flex;justify-content:flex-end;padding:0 8px;transition:opacity .2s ease-in,-webkit-transform .2s ease-in;transition:transform .2s ease-in,opacity .2s ease-in;transition:transform .2s ease-in,opacity .2s ease-in,-webkit-transform .2s ease-in}.vm-select-input__icon:last-child{border:none}.vm-select-input__icon svg{width:14px}.vm-select-input__icon_open{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm-select-input__icon:hover{opacity:.7}.vm-explore-metrics-header{align-items:center;display:flex;flex-wrap:wrap;gap:8px 18px;justify-content:flex-start}.vm-explore-metrics-header__job{flex-grow:.5;min-width:200px}.vm-explore-metrics-header__instance{flex-grow:1;min-width:300px}.vm-explore-metrics-header-metrics{flex-grow:1;width:100%}.vm-explore-metrics-header__clear-icon{align-items:center;cursor:pointer;display:flex;justify-content:center;padding:2px}.vm-explore-metrics-header__clear-icon:hover{opacity:.7}.vm-preview-icons{grid-gap:16px;align-items:flex-start;display:grid;gap:16px;grid-template-columns:repeat(auto-fill,100px);justify-content:center}.vm-preview-icons-item{grid-gap:8px;align-items:stretch;border:1px solid transparent;border-radius:4px;cursor:pointer;display:grid;gap:8px;grid-template-rows:1fr auto;height:100px;justify-content:center;padding:16px 8px;transition:box-shadow .2s ease-in-out}.vm-preview-icons-item:hover{box-shadow:0 1px 4px rgba(0,0,0,.16)}.vm-preview-icons-item:active .vm-preview-icons-item__svg{-webkit-transform:scale(.9);transform:scale(.9)}.vm-preview-icons-item__name{font-size:10px;line-height:2;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.vm-preview-icons-item__svg{align-items:center;display:flex;height:100%;justify-content:center;transition:-webkit-transform .1s ease-out;transition:transform .1s ease-out;transition:transform .1s ease-out,-webkit-transform .1s ease-out}.vm-preview-icons-item__svg svg{height:24px;width:auto}#root,body,html{background-attachment:fixed;background-repeat:no-repeat;color:#110f0f;cursor:default;font-family:Lato,sans-serif;font-size:12px;margin:0;min-height:100%}body{overflow:scroll}*{cursor:inherit;font:inherit}code{font-family:JetBrains Mono,monospace}b{font-weight:700}input,textarea{cursor:text}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{-webkit-user-select:none;user-select:none}input::placeholder,textarea::placeholder{-webkit-user-select:none;user-select:none}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.vm-snackbar{bottom:16px;left:16px;position:fixed;z-index:999}svg{width:100%}a,abbr,acronym,address,applet,article,aside,audio,big,body,canvas,caption,center,cite,code,del,details,dfn,div,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{border:0;margin:0;padding:0;vertical-align:initial}h1,h2,h3,h4,h5,h6{font-weight:400}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}q:after,q:before{content:""}table{border-collapse:collapse;border-spacing:0}input::-webkit-input-placeholder{opacity:1;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}input::placeholder{opacity:1;transition:opacity .3s ease}input:focus::-webkit-input-placeholder{opacity:0;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}input:focus::placeholder{opacity:0;transition:opacity .3s ease}*{box-sizing:border-box;outline:none}button{background:none;border:none;border-radius:0;padding:0}strong{letter-spacing:1px}input[type=file]{cursor:pointer;font-size:0;height:100%;left:0;opacity:0;position:absolute;top:0;width:100%}input[type=file]:disabled{cursor:not-allowed}a{color:inherit;text-decoration:inherit}input,textarea{-webkit-text-fill-color:inherit;appearance:none;-webkit-appearance:none}input:disabled,textarea:disabled{opacity:1!important}input:placeholder-shown,textarea:placeholder-shown{width:100%}input:-webkit-autofill,input:-webkit-autofill:active,input:-webkit-autofill:focus,input:-webkit-autofill:hover{-webkit-box-shadow:inset 0 0 0 0 #fff!important;width:100%;z-index:2}.vm-header-button{border:1px solid hsla(0,6%,6%,.2)}.vm-list-item{background-color:transparent;cursor:pointer;padding:12px 16px;transition:background-color .2s ease}.vm-list-item:hover,.vm-list-item_active{background-color:hsla(0,6%,6%,.06)}.vm-list-item_multiselect{grid-gap:8px;align-items:center;display:grid;gap:8px;grid-template-columns:10px 1fr;justify-content:flex-start}.vm-list-item_multiselect svg{-webkit-animation:vm-scale .15s cubic-bezier(.28,.84,.42,1);animation:vm-scale .15s cubic-bezier(.28,.84,.42,1)}.vm-list-item_multiselect span{grid-column:2}.vm-list-item_multiselect_selected{color:#3f51b5;color:var(--color-primary)}.vm-popper-header{grid-gap:8px;align-items:center;background-color:#3f51b5;background-color:var(--color-primary);border-radius:4px 4px 0 0;color:#fff;display:grid;gap:8px;grid-template-columns:1fr auto;justify-content:space-between;padding:8px 8px 8px 16px}.vm-popper-header__title{font-weight:700}.vm-block{background-color:#fff;background-color:var(--color-background-block);border-radius:8px;box-shadow:1px 2px 12px hsla(0,6%,6%,.08);padding:24px}.vm-block_empty-padding{padding:0}.vm-section-header{align-items:center;border-bottom:1px solid hsla(0,6%,6%,.15);border-radius:8px 8px 0 0;display:grid;grid-template-columns:1fr auto;justify-content:center;padding:0 24px}.vm-section-header__title{font-size:12px;font-weight:700}.vm-section-header__tabs{align-items:center;display:flex;font-size:10px;justify-content:flex-start}.vm-table{border-collapse:initial;border-spacing:0;margin-top:-24px;width:100%}.vm-table,.vm-table__row{background-color:#fff;background-color:var(--color-background-block)}.vm-table__row{transition:background-color .2s ease}.vm-table__row:hover:not(.vm-table__row_header){background-color:hsla(0,6%,6%,.05)}.vm-table__row_header{position:-webkit-sticky;position:sticky;top:0;z-index:2}.vm-table__row_selected{background-color:rgba(26,144,255,.05)}.vm-table-cell{border-bottom:1px solid hsla(0,6%,6%,.15);height:40px;padding:8px;vertical-align:middle}.vm-table-cell__content{align-items:center;display:flex;justify-content:flex-start}.vm-table-cell_sort{cursor:pointer}.vm-table-cell_sort:hover{background-color:hsla(0,6%,6%,.05)}.vm-table-cell_header{font-weight:700;text-align:left;text-transform:capitalize}.vm-table-cell_gray{color:hsla(0,6%,6%,.4)}.vm-table-cell_right{text-align:right}.vm-table-cell_right .vm-table-cell__content{justify-content:flex-end}.vm-table-cell_no-wrap{white-space:nowrap}.vm-table__sort-icon{align-items:center;display:flex;justify-content:center;margin:0 8px;opacity:.4;transition:opacity .2s ease,-webkit-transform .2s ease-in-out;transition:opacity .2s ease,transform .2s ease-in-out;transition:opacity .2s ease,transform .2s ease-in-out,-webkit-transform .2s ease-in-out;width:15px}.vm-table__sort-icon_active{opacity:1}.vm-table__sort-icon_desc{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.vm__link{cursor:pointer;transition:color .2s ease}.vm__link:hover,.vm__link_colored{color:#3f51b5;color:var(--color-primary)}.vm__link:hover{text-decoration:underline}:root{--color-primary:#3f51b5;--color-secondary:#e91e63;--color-error:#fd080e;--color-warning:#ff8308;--color-info:#03a9f4;--color-success:#4caf50;--color-primary-text:#fff;--color-secondary-text:#fff;--color-error-text:#fff;--color-warning-text:#fff;--color-info-text:#fff;--color-success-text:#fff;--color-background-body:#fefeff;--color-background-block:#fff} \ No newline at end of file diff --git a/app/vmselect/vmui/static/js/main.84759f8d.js b/app/vmselect/vmui/static/js/main.84759f8d.js new file mode 100644 index 000000000..9bb524cb9 --- /dev/null +++ b/app/vmselect/vmui/static/js/main.84759f8d.js @@ -0,0 +1,2 @@ +/*! For license information please see main.84759f8d.js.LICENSE.txt */ +!function(){var e={680:function(e,t,n){"use strict";var r=n(476),i=n(962),o=i(r("String.prototype.indexOf"));e.exports=function(e,t){var n=r(e,!!t);return"function"===typeof n&&o(e,".prototype.")>-1?i(n):n}},962:function(e,t,n){"use strict";var r=n(199),i=n(476),o=i("%Function.prototype.apply%"),a=i("%Function.prototype.call%"),u=i("%Reflect.apply%",!0)||r.call(a,o),l=i("%Object.getOwnPropertyDescriptor%",!0),c=i("%Object.defineProperty%",!0),s=i("%Math.max%");if(c)try{c({},"a",{value:1})}catch(d){c=null}e.exports=function(e){var t=u(r,a,arguments);if(l&&c){var n=l(t,"length");n.configurable&&c(t,"length",{value:1+s(0,e.length-(arguments.length-1))})}return t};var f=function(){return u(r,o,arguments)};c?c(e.exports,"apply",{value:f}):e.exports.apply=f},123:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function i(){for(var e=[],t=0;t=t?e:""+Array(t+1-r.length).join(n)+e},g={s:y,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),i=n%60;return(t<=0?"+":"-")+y(r,2,"0")+":"+y(i,2,"0")},m:function e(t,n){if(t.date()1)return e(a[0])}else{var u=t.name;b[u]=t,i=u}return!r&&i&&(_=i),i||!r&&_},x=function(e,t){if(D(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new C(n)},k=g;k.l=w,k.i=D,k.w=function(e,t){return x(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var C=function(){function m(e){this.$L=w(e.locale,null,!0),this.parse(e)}var y=m.prototype;return y.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(null===t)return new Date(NaN);if(k.u(t))return new Date;if(t instanceof Date)return new Date(t);if("string"==typeof t&&!/Z$/i.test(t)){var r=t.match(p);if(r){var i=r[2]-1||0,o=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,o)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,o)}}return new Date(t)}(e),this.$x=e.x||{},this.init()},y.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},y.$utils=function(){return k},y.isValid=function(){return!(this.$d.toString()===h)},y.isSame=function(e,t){var n=x(e);return this.startOf(t)<=n&&n<=this.endOf(t)},y.isAfter=function(e,t){return x(e)=0&&(o[f]=parseInt(s,10))}var d=o[3],h=24===d?0:d,p=o[0]+"-"+o[1]+"-"+o[2]+" "+h+":"+o[4]+":"+o[5]+":000",v=+t;return(i.utc(p).valueOf()-(v-=v%1e3))/6e4},l=r.prototype;l.tz=function(e,t){void 0===e&&(e=o);var n=this.utcOffset(),r=this.toDate(),a=r.toLocaleString("en-US",{timeZone:e}),u=Math.round((r-new Date(a))/1e3/60),l=i(a).$set("millisecond",this.$ms).utcOffset(15*-Math.round(r.getTimezoneOffset()/15)-u,!0);if(t){var c=l.utcOffset();l=l.add(n-c,"minute")}return l.$x.$timezone=e,l},l.offsetName=function(e){var t=this.$x.$timezone||i.tz.guess(),n=a(this.valueOf(),t,{timeZoneName:e}).find((function(e){return"timezonename"===e.type.toLowerCase()}));return n&&n.value};var c=l.startOf;l.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return c.call(this,e,t);var n=i(this.format("YYYY-MM-DD HH:mm:ss:SSS"));return c.call(n,e,t).tz(this.$x.$timezone,!0)},i.tz=function(e,t,n){var r=n&&t,a=n||t||o,l=u(+i(),a);if("string"!=typeof e)return i(e).tz(a);var c=function(e,t,n){var r=e-60*t*1e3,i=u(r,n);if(t===i)return[r,t];var o=u(r-=60*(i-t)*1e3,n);return i===o?[r,i]:[e-60*Math.min(i,o)*1e3,Math.max(i,o)]}(i.utc(e,r).valueOf(),l,a),s=c[0],f=c[1],d=i(s).utcOffset(f);return d.$x.$timezone=a,d},i.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},i.tz.setDefault=function(e){o=e}}}()},635:function(e){e.exports=function(){"use strict";var e="minute",t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,i,o){var a=i.prototype;o.utc=function(e){return new i({date:e,utc:!0,args:arguments})},a.utc=function(t){var n=o(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},a.local=function(){return o(this.toDate(),{locale:this.$L,utc:!1})};var u=a.parse;a.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),u.call(this,e)};var l=a.init;a.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else l.call(this)};var c=a.utcOffset;a.utcOffset=function(r,i){var o=this.$utils().u;if(o(r))return this.$u?0:o(this.$offset)?c.call(this):this.$offset;if("string"==typeof r&&(r=function(e){void 0===e&&(e="");var r=e.match(t);if(!r)return null;var i=(""+r[0]).match(n)||["-",0,0],o=i[0],a=60*+i[1]+ +i[2];return 0===a?0:"+"===o?a:-a}(r),null===r))return this;var a=Math.abs(r)<=16?60*r:r,u=this;if(i)return u.$offset=a,u.$u=0===r,u;if(0!==r){var l=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();(u=this.local().add(a+l,e)).$offset=a,u.$x.$localOffset=l}else u=this.utc();return u};var s=a.format;a.format=function(e){var t=e||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return s.call(this,t)},a.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},a.isUTC=function(){return!!this.$u},a.toISOString=function(){return this.toDate().toISOString()},a.toString=function(){return this.toDate().toUTCString()};var f=a.toDate;a.toDate=function(e){return"s"===e&&this.$offset?o(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():f.call(this)};var d=a.diff;a.diff=function(e,t,n){if(e&&this.$u===e.$u)return d.call(this,e,t,n);var r=this.local(),i=o(e).local();return d.call(r,i,t,n)}}}()},781:function(e){"use strict";var t="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,r=Object.prototype.toString,i="[object Function]";e.exports=function(e){var o=this;if("function"!==typeof o||r.call(o)!==i)throw new TypeError(t+o);for(var a,u=n.call(arguments,1),l=function(){if(this instanceof a){var t=o.apply(this,u.concat(n.call(arguments)));return Object(t)===t?t:this}return o.apply(e,u.concat(n.call(arguments)))},c=Math.max(0,o.length-u.length),s=[],f=0;f1&&"boolean"!==typeof t)throw new a('"allowMissing" argument must be a boolean');if(null===k(/^%?[^%]*%?$/,e))throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=S(e),r=n.length>0?n[0]:"",o=A("%"+r+"%",t),u=o.name,c=o.value,s=!1,f=o.alias;f&&(r=f[0],D(n,b([0,1],f)));for(var d=1,h=!0;d=n.length){var g=l(c,p);c=(h=!!g)&&"get"in g&&!("originalValue"in g.get)?g.get:c[p]}else h=_(c,p),c=c[p];h&&!s&&(v[u]=c)}}return c}},520:function(e,t,n){"use strict";var r="undefined"!==typeof Symbol&&Symbol,i=n(541);e.exports=function(){return"function"===typeof r&&("function"===typeof Symbol&&("symbol"===typeof r("foo")&&("symbol"===typeof Symbol("bar")&&i())))}},541:function(e){"use strict";e.exports=function(){if("function"!==typeof Symbol||"function"!==typeof Object.getOwnPropertySymbols)return!1;if("symbol"===typeof Symbol.iterator)return!0;var e={},t=Symbol("test"),n=Object(t);if("string"===typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"===typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"===typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var r=Object.getOwnPropertySymbols(e);if(1!==r.length||r[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"===typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(e,t);if(42!==i.value||!0!==i.enumerable)return!1}return!0}},838:function(e,t,n){"use strict";var r=n(199);e.exports=r.call(Function.call,Object.prototype.hasOwnProperty)},936:function(e,t,n){var r=/^\s+|\s+$/g,i=/^[-+]0x[0-9a-f]+$/i,o=/^0b[01]+$/i,a=/^0o[0-7]+$/i,u=parseInt,l="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,c="object"==typeof self&&self&&self.Object===Object&&self,s=l||c||Function("return this")(),f=Object.prototype.toString,d=Math.max,h=Math.min,p=function(){return s.Date.now()};function v(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function m(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==f.call(e)}(e))return NaN;if(v(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=v(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(r,"");var n=o.test(e);return n||a.test(e)?u(e.slice(2),n?2:8):i.test(e)?NaN:+e}e.exports=function(e,t,n){var r,i,o,a,u,l,c=0,s=!1,f=!1,y=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function g(t){var n=r,o=i;return r=i=void 0,c=t,a=e.apply(o,n)}function _(e){return c=e,u=setTimeout(D,t),s?g(e):a}function b(e){var n=e-l;return void 0===l||n>=t||n<0||f&&e-c>=o}function D(){var e=p();if(b(e))return w(e);u=setTimeout(D,function(e){var n=t-(e-l);return f?h(n,o-(e-c)):n}(e))}function w(e){return u=void 0,y&&r?g(e):(r=i=void 0,a)}function x(){var e=p(),n=b(e);if(r=arguments,i=this,l=e,n){if(void 0===u)return _(l);if(f)return u=setTimeout(D,t),g(l)}return void 0===u&&(u=setTimeout(D,t)),a}return t=m(t)||0,v(n)&&(s=!!n.leading,o=(f="maxWait"in n)?d(m(n.maxWait)||0,t):o,y="trailing"in n?!!n.trailing:y),x.cancel=function(){void 0!==u&&clearTimeout(u),c=0,r=l=i=u=void 0},x.flush=function(){return void 0===u?a:w(p())},x}},7:function(e,t,n){var r="__lodash_hash_undefined__",i="[object Function]",o="[object GeneratorFunction]",a=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,u=/^\w*$/,l=/^\./,c=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,s=/\\(\\)?/g,f=/^\[object .+?Constructor\]$/,d="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,h="object"==typeof self&&self&&self.Object===Object&&self,p=d||h||Function("return this")();var v=Array.prototype,m=Function.prototype,y=Object.prototype,g=p["__core-js_shared__"],_=function(){var e=/[^.]+$/.exec(g&&g.keys&&g.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),b=m.toString,D=y.hasOwnProperty,w=y.toString,x=RegExp("^"+b.call(D).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),k=p.Symbol,C=v.splice,E=P(p,"Map"),S=P(Object,"create"),A=k?k.prototype:void 0,F=A?A.toString:void 0;function N(e){var t=-1,n=e?e.length:0;for(this.clear();++t-1},O.prototype.set=function(e,t){var n=this.__data__,r=M(n,e);return r<0?n.push([e,t]):n[r][1]=t,this},T.prototype.clear=function(){this.__data__={hash:new N,map:new(E||O),string:new N}},T.prototype.delete=function(e){return L(this,e).delete(e)},T.prototype.get=function(e){return L(this,e).get(e)},T.prototype.has=function(e){return L(this,e).has(e)},T.prototype.set=function(e,t){return L(this,e).set(e,t),this};var z=j((function(e){var t;e=null==(t=e)?"":function(e){if("string"==typeof e)return e;if(H(e))return F?F.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(t);var n=[];return l.test(e)&&n.push(""),e.replace(c,(function(e,t,r,i){n.push(r?i.replace(s,"$1"):t||e)})),n}));function R(e){if("string"==typeof e||H(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function j(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function n(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a),a};return n.cache=new(j.Cache||T),n}j.Cache=T;var $=Array.isArray;function U(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function H(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==w.call(e)}e.exports=function(e,t,n){var r=null==e?void 0:B(e,t);return void 0===r?n:r}},61:function(e,t,n){var r="Expected a function",i=/^\s+|\s+$/g,o=/^[-+]0x[0-9a-f]+$/i,a=/^0b[01]+$/i,u=/^0o[0-7]+$/i,l=parseInt,c="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,s="object"==typeof self&&self&&self.Object===Object&&self,f=c||s||Function("return this")(),d=Object.prototype.toString,h=Math.max,p=Math.min,v=function(){return f.Date.now()};function m(e,t,n){var i,o,a,u,l,c,s=0,f=!1,d=!1,m=!0;if("function"!=typeof e)throw new TypeError(r);function _(t){var n=i,r=o;return i=o=void 0,s=t,u=e.apply(r,n)}function b(e){return s=e,l=setTimeout(w,t),f?_(e):u}function D(e){var n=e-c;return void 0===c||n>=t||n<0||d&&e-s>=a}function w(){var e=v();if(D(e))return x(e);l=setTimeout(w,function(e){var n=t-(e-c);return d?p(n,a-(e-s)):n}(e))}function x(e){return l=void 0,m&&i?_(e):(i=o=void 0,u)}function k(){var e=v(),n=D(e);if(i=arguments,o=this,c=e,n){if(void 0===l)return b(c);if(d)return l=setTimeout(w,t),_(c)}return void 0===l&&(l=setTimeout(w,t)),u}return t=g(t)||0,y(n)&&(f=!!n.leading,a=(d="maxWait"in n)?h(g(n.maxWait)||0,t):a,m="trailing"in n?!!n.trailing:m),k.cancel=function(){void 0!==l&&clearTimeout(l),s=0,i=c=o=l=void 0},k.flush=function(){return void 0===l?u:x(v())},k}function y(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function g(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==d.call(e)}(e))return NaN;if(y(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=y(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(i,"");var n=a.test(e);return n||u.test(e)?l(e.slice(2),n?2:8):o.test(e)?NaN:+e}e.exports=function(e,t,n){var i=!0,o=!0;if("function"!=typeof e)throw new TypeError(r);return y(n)&&(i="leading"in n?!!n.leading:i,o="trailing"in n?!!n.trailing:o),m(e,t,{leading:i,maxWait:t,trailing:o})}},154:function(e,t,n){var r="function"===typeof Map&&Map.prototype,i=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,o=r&&i&&"function"===typeof i.get?i.get:null,a=r&&Map.prototype.forEach,u="function"===typeof Set&&Set.prototype,l=Object.getOwnPropertyDescriptor&&u?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=u&&l&&"function"===typeof l.get?l.get:null,s=u&&Set.prototype.forEach,f="function"===typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,d="function"===typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,h="function"===typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,p=Boolean.prototype.valueOf,v=Object.prototype.toString,m=Function.prototype.toString,y=String.prototype.match,g=String.prototype.slice,_=String.prototype.replace,b=String.prototype.toUpperCase,D=String.prototype.toLowerCase,w=RegExp.prototype.test,x=Array.prototype.concat,k=Array.prototype.join,C=Array.prototype.slice,E=Math.floor,S="function"===typeof BigInt?BigInt.prototype.valueOf:null,A=Object.getOwnPropertySymbols,F="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?Symbol.prototype.toString:null,N="function"===typeof Symbol&&"object"===typeof Symbol.iterator,O="function"===typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===N||"symbol")?Symbol.toStringTag:null,T=Object.prototype.propertyIsEnumerable,M=("function"===typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function B(e,t){if(e===1/0||e===-1/0||e!==e||e&&e>-1e3&&e<1e3||w.call(/e/,t))return t;var n=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"===typeof e){var r=e<0?-E(-e):E(e);if(r!==e){var i=String(r),o=g.call(t,i.length+1);return _.call(i,n,"$&_")+"."+_.call(_.call(o,/([0-9]{3})/g,"$&_"),/_$/,"")}}return _.call(t,n,"$&_")}var I=n(654),L=I.custom,P=U(L)?L:null;function z(e,t,n){var r="double"===(n.quoteStyle||t)?'"':"'";return r+e+r}function R(e){return _.call(String(e),/"/g,""")}function j(e){return"[object Array]"===V(e)&&(!O||!("object"===typeof e&&O in e))}function $(e){return"[object RegExp]"===V(e)&&(!O||!("object"===typeof e&&O in e))}function U(e){if(N)return e&&"object"===typeof e&&e instanceof Symbol;if("symbol"===typeof e)return!0;if(!e||"object"!==typeof e||!F)return!1;try{return F.call(e),!0}catch(t){}return!1}e.exports=function e(t,n,r,i){var u=n||{};if(Y(u,"quoteStyle")&&"single"!==u.quoteStyle&&"double"!==u.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(Y(u,"maxStringLength")&&("number"===typeof u.maxStringLength?u.maxStringLength<0&&u.maxStringLength!==1/0:null!==u.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var l=!Y(u,"customInspect")||u.customInspect;if("boolean"!==typeof l&&"symbol"!==l)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(Y(u,"indent")&&null!==u.indent&&"\t"!==u.indent&&!(parseInt(u.indent,10)===u.indent&&u.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(Y(u,"numericSeparator")&&"boolean"!==typeof u.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var v=u.numericSeparator;if("undefined"===typeof t)return"undefined";if(null===t)return"null";if("boolean"===typeof t)return t?"true":"false";if("string"===typeof t)return W(t,u);if("number"===typeof t){if(0===t)return 1/0/t>0?"0":"-0";var b=String(t);return v?B(t,b):b}if("bigint"===typeof t){var w=String(t)+"n";return v?B(t,w):w}var E="undefined"===typeof u.depth?5:u.depth;if("undefined"===typeof r&&(r=0),r>=E&&E>0&&"object"===typeof t)return j(t)?"[Array]":"[Object]";var A=function(e,t){var n;if("\t"===e.indent)n="\t";else{if(!("number"===typeof e.indent&&e.indent>0))return null;n=k.call(Array(e.indent+1)," ")}return{base:n,prev:k.call(Array(t+1),n)}}(u,r);if("undefined"===typeof i)i=[];else if(q(i,t)>=0)return"[Circular]";function L(t,n,o){if(n&&(i=C.call(i)).push(n),o){var a={depth:u.depth};return Y(u,"quoteStyle")&&(a.quoteStyle=u.quoteStyle),e(t,a,r+1,i)}return e(t,u,r+1,i)}if("function"===typeof t&&!$(t)){var H=function(e){if(e.name)return e.name;var t=y.call(m.call(e),/^function\s*([\w$]+)/);if(t)return t[1];return null}(t),Q=X(t,L);return"[Function"+(H?": "+H:" (anonymous)")+"]"+(Q.length>0?" { "+k.call(Q,", ")+" }":"")}if(U(t)){var ee=N?_.call(String(t),/^(Symbol\(.*\))_[^)]*$/,"$1"):F.call(t);return"object"!==typeof t||N?ee:G(ee)}if(function(e){if(!e||"object"!==typeof e)return!1;if("undefined"!==typeof HTMLElement&&e instanceof HTMLElement)return!0;return"string"===typeof e.nodeName&&"function"===typeof e.getAttribute}(t)){for(var te="<"+D.call(String(t.nodeName)),ne=t.attributes||[],re=0;re"}if(j(t)){if(0===t.length)return"[]";var ie=X(t,L);return A&&!function(e){for(var t=0;t=0)return!1;return!0}(ie)?"["+K(ie,A)+"]":"[ "+k.call(ie,", ")+" ]"}if(function(e){return"[object Error]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t)){var oe=X(t,L);return"cause"in Error.prototype||!("cause"in t)||T.call(t,"cause")?0===oe.length?"["+String(t)+"]":"{ ["+String(t)+"] "+k.call(oe,", ")+" }":"{ ["+String(t)+"] "+k.call(x.call("[cause]: "+L(t.cause),oe),", ")+" }"}if("object"===typeof t&&l){if(P&&"function"===typeof t[P]&&I)return I(t,{depth:E-r});if("symbol"!==l&&"function"===typeof t.inspect)return t.inspect()}if(function(e){if(!o||!e||"object"!==typeof e)return!1;try{o.call(e);try{c.call(e)}catch(te){return!0}return e instanceof Map}catch(t){}return!1}(t)){var ae=[];return a.call(t,(function(e,n){ae.push(L(n,t,!0)+" => "+L(e,t))})),Z("Map",o.call(t),ae,A)}if(function(e){if(!c||!e||"object"!==typeof e)return!1;try{c.call(e);try{o.call(e)}catch(t){return!0}return e instanceof Set}catch(n){}return!1}(t)){var ue=[];return s.call(t,(function(e){ue.push(L(e,t))})),Z("Set",c.call(t),ue,A)}if(function(e){if(!f||!e||"object"!==typeof e)return!1;try{f.call(e,f);try{d.call(e,d)}catch(te){return!0}return e instanceof WeakMap}catch(t){}return!1}(t))return J("WeakMap");if(function(e){if(!d||!e||"object"!==typeof e)return!1;try{d.call(e,d);try{f.call(e,f)}catch(te){return!0}return e instanceof WeakSet}catch(t){}return!1}(t))return J("WeakSet");if(function(e){if(!h||!e||"object"!==typeof e)return!1;try{return h.call(e),!0}catch(t){}return!1}(t))return J("WeakRef");if(function(e){return"[object Number]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t))return G(L(Number(t)));if(function(e){if(!e||"object"!==typeof e||!S)return!1;try{return S.call(e),!0}catch(t){}return!1}(t))return G(L(S.call(t)));if(function(e){return"[object Boolean]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t))return G(p.call(t));if(function(e){return"[object String]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t))return G(L(String(t)));if(!function(e){return"[object Date]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t)&&!$(t)){var le=X(t,L),ce=M?M(t)===Object.prototype:t instanceof Object||t.constructor===Object,se=t instanceof Object?"":"null prototype",fe=!ce&&O&&Object(t)===t&&O in t?g.call(V(t),8,-1):se?"Object":"",de=(ce||"function"!==typeof t.constructor?"":t.constructor.name?t.constructor.name+" ":"")+(fe||se?"["+k.call(x.call([],fe||[],se||[]),": ")+"] ":"");return 0===le.length?de+"{}":A?de+"{"+K(le,A)+"}":de+"{ "+k.call(le,", ")+" }"}return String(t)};var H=Object.prototype.hasOwnProperty||function(e){return e in this};function Y(e,t){return H.call(e,t)}function V(e){return v.call(e)}function q(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;nt.maxStringLength){var n=e.length-t.maxStringLength,r="... "+n+" more character"+(n>1?"s":"");return W(g.call(e,0,t.maxStringLength),t)+r}return z(_.call(_.call(e,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,Q),"single",t)}function Q(e){var t=e.charCodeAt(0),n={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return n?"\\"+n:"\\x"+(t<16?"0":"")+b.call(t.toString(16))}function G(e){return"Object("+e+")"}function J(e){return e+" { ? }"}function Z(e,t,n,r){return e+" ("+t+") {"+(r?K(n,r):k.call(n,", "))+"}"}function K(e,t){if(0===e.length)return"";var n="\n"+t.prev+t.base;return n+k.call(e,","+n)+"\n"+t.prev}function X(e,t){var n=j(e),r=[];if(n){r.length=e.length;for(var i=0;i-1?e.split(","):e},c=function(e,t,n,r){if(e){var o=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,a=/(\[[^[\]]*])/g,u=n.depth>0&&/(\[[^[\]]*])/.exec(o),c=u?o.slice(0,u.index):o,s=[];if(c){if(!n.plainObjects&&i.call(Object.prototype,c)&&!n.allowPrototypes)return;s.push(c)}for(var f=0;n.depth>0&&null!==(u=a.exec(o))&&f=0;--o){var a,u=e[o];if("[]"===u&&n.parseArrays)a=[].concat(i);else{a=n.plainObjects?Object.create(null):{};var c="["===u.charAt(0)&&"]"===u.charAt(u.length-1)?u.slice(1,-1):u,s=parseInt(c,10);n.parseArrays||""!==c?!isNaN(s)&&u!==c&&String(s)===c&&s>=0&&n.parseArrays&&s<=n.arrayLimit?(a=[])[s]=i:"__proto__"!==c&&(a[c]=i):a={0:i}}i=a}return i}(s,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return a;if(null!==e.decoder&&void 0!==e.decoder&&"function"!==typeof e.decoder)throw new TypeError("Decoder has to be a function.");if("undefined"!==typeof e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t="undefined"===typeof e.charset?a.charset:e.charset;return{allowDots:"undefined"===typeof e.allowDots?a.allowDots:!!e.allowDots,allowPrototypes:"boolean"===typeof e.allowPrototypes?e.allowPrototypes:a.allowPrototypes,allowSparse:"boolean"===typeof e.allowSparse?e.allowSparse:a.allowSparse,arrayLimit:"number"===typeof e.arrayLimit?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:"boolean"===typeof e.charsetSentinel?e.charsetSentinel:a.charsetSentinel,comma:"boolean"===typeof e.comma?e.comma:a.comma,decoder:"function"===typeof e.decoder?e.decoder:a.decoder,delimiter:"string"===typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:"number"===typeof e.depth||!1===e.depth?+e.depth:a.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"===typeof e.interpretNumericEntities?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"===typeof e.parameterLimit?e.parameterLimit:a.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"===typeof e.plainObjects?e.plainObjects:a.plainObjects,strictNullHandling:"boolean"===typeof e.strictNullHandling?e.strictNullHandling:a.strictNullHandling}}(t);if(""===e||null===e||"undefined"===typeof e)return n.plainObjects?Object.create(null):{};for(var s="string"===typeof e?function(e,t){var n,c={},s=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,f=t.parameterLimit===1/0?void 0:t.parameterLimit,d=s.split(t.delimiter,f),h=-1,p=t.charset;if(t.charsetSentinel)for(n=0;n-1&&(m=o(m)?[m]:m),i.call(c,v)?c[v]=r.combine(c[v],m):c[v]=m}return c}(e,n):e,f=n.plainObjects?Object.create(null):{},d=Object.keys(s),h=0;h0?C.join(",")||null:void 0}];else if(l(h))B=h;else{var L=Object.keys(C);B=m?L.sort(m):L}for(var P=a&&l(C)&&1===C.length?n+"[]":n,z=0;z0?D+b:""}},837:function(e,t,n){"use strict";var r=n(609),i=Object.prototype.hasOwnProperty,o=Array.isArray,a=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),u=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r1;){var t=e.pop(),n=t.obj[t.prop];if(o(n)){for(var r=[],i=0;i=48&&s<=57||s>=65&&s<=90||s>=97&&s<=122||o===r.RFC1738&&(40===s||41===s)?l+=u.charAt(c):s<128?l+=a[s]:s<2048?l+=a[192|s>>6]+a[128|63&s]:s<55296||s>=57344?l+=a[224|s>>12]+a[128|s>>6&63]+a[128|63&s]:(c+=1,s=65536+((1023&s)<<10|1023&u.charCodeAt(c)),l+=a[240|s>>18]+a[128|s>>12&63]+a[128|s>>6&63]+a[128|63&s])}return l},isBuffer:function(e){return!(!e||"object"!==typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(o(e)){for(var n=[],r=0;r2&&(u.children=arguments.length>3?r.call(arguments,2):n),"function"==typeof e&&null!=e.defaultProps)for(a in e.defaultProps)void 0===u[a]&&(u[a]=e.defaultProps[a]);return v(e,u,i,o,null)}function v(e,t,n,r,a){var u={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==a?++o:a};return null==a&&null!=i.vnode&&i.vnode(u),u}function m(){return{current:null}}function y(e){return e.children}function g(e,t){this.props=e,this.context=t}function _(e,t){if(null==t)return e.__?_(e.__,e.__.__k.indexOf(e)+1):null;for(var n;t0?v(m.type,m.props,m.key,m.ref?m.ref:null,m.__v):m)){if(m.__=n,m.__b=n.__b+1,null===(p=w[d])||p&&m.key==p.key&&m.type===p.type)w[d]=void 0;else for(h=0;h2&&(u.children=arguments.length>3?r.call(arguments,2):n),v(e.type,u,i||e.key,o||e.ref,null)}function j(e,t){var n={__c:t="__cC"+l++,__:e,Consumer:function(e,t){return e.children(t)},Provider:function(e){var n,r;return this.getChildContext||(n=[],(r={})[t]=this,this.getChildContext=function(){return r},this.shouldComponentUpdate=function(e){this.props.value!==e.value&&n.some(D)},this.sub=function(e){n.push(e);var t=e.componentWillUnmount;e.componentWillUnmount=function(){n.splice(n.indexOf(e),1),t&&t.call(e)}}),e.children}};return n.Provider.__=n.Consumer.contextType=n}r=s.slice,i={__e:function(e,t,n,r){for(var i,o,a;t=t.__;)if((i=t.__c)&&!i.__)try{if((o=i.constructor)&&null!=o.getDerivedStateFromError&&(i.setState(o.getDerivedStateFromError(e)),a=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(e,r||{}),a=i.__d),a)return i.__E=i}catch(t){e=t}throw e}},o=0,g.prototype.setState=function(e,t){var n;n=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=d({},this.state),"function"==typeof e&&(e=e(d({},n),this.props)),e&&d(n,e),null!=e&&this.__v&&(t&&this._sb.push(t),D(this))},g.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),D(this))},g.prototype.render=y,a=[],w.__r=0,l=0;var $,U,H,Y,V=0,q=[],W=[],Q=i.__b,G=i.__r,J=i.diffed,Z=i.__c,K=i.unmount;function X(e,t){i.__h&&i.__h(U,e,V||t),V=0;var n=U.__H||(U.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({__V:W}),n.__[e]}function ee(e){return V=1,te(ge,e)}function te(e,t,n){var r=X($++,2);if(r.t=e,!r.__c&&(r.__=[n?n(t):ge(void 0,t),function(e){var t=r.__N?r.__N[0]:r.__[0],n=r.t(t,e);t!==n&&(r.__N=[n,r.__[1]],r.__c.setState({}))}],r.__c=U,!U.u)){U.u=!0;var i=U.shouldComponentUpdate;U.shouldComponentUpdate=function(e,t,n){if(!r.__c.__H)return!0;var o=r.__c.__H.__.filter((function(e){return e.__c}));if(o.every((function(e){return!e.__N})))return!i||i.call(this,e,t,n);var a=!1;return o.forEach((function(e){if(e.__N){var t=e.__[0];e.__=e.__N,e.__N=void 0,t!==e.__[0]&&(a=!0)}})),!(!a&&r.__c.props===e)&&(!i||i.call(this,e,t,n))}}return r.__N||r.__}function ne(e,t){var n=X($++,3);!i.__s&&ye(n.__H,t)&&(n.__=e,n.i=t,U.__H.__h.push(n))}function re(e,t){var n=X($++,4);!i.__s&&ye(n.__H,t)&&(n.__=e,n.i=t,U.__h.push(n))}function ie(e){return V=5,ae((function(){return{current:e}}),[])}function oe(e,t,n){V=6,re((function(){return"function"==typeof e?(e(t()),function(){return e(null)}):e?(e.current=t(),function(){return e.current=null}):void 0}),null==n?n:n.concat(e))}function ae(e,t){var n=X($++,7);return ye(n.__H,t)?(n.__V=e(),n.i=t,n.__h=e,n.__V):n.__}function ue(e,t){return V=8,ae((function(){return e}),t)}function le(e){var t=U.context[e.__c],n=X($++,9);return n.c=e,t?(null==n.__&&(n.__=!0,t.sub(U)),t.props.value):e.__}function ce(e,t){i.useDebugValue&&i.useDebugValue(t?t(e):e)}function se(e){var t=X($++,10),n=ee();return t.__=e,U.componentDidCatch||(U.componentDidCatch=function(e,r){t.__&&t.__(e,r),n[1](e)}),[n[0],function(){n[1](void 0)}]}function fe(){var e=X($++,11);if(!e.__){for(var t=U.__v;null!==t&&!t.__m&&null!==t.__;)t=t.__;var n=t.__m||(t.__m=[0,0]);e.__="P"+n[0]+"-"+n[1]++}return e.__}function de(){for(var e;e=q.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(ve),e.__H.__h.forEach(me),e.__H.__h=[]}catch(l){e.__H.__h=[],i.__e(l,e.__v)}}i.__b=function(e){U=null,Q&&Q(e)},i.__r=function(e){G&&G(e),$=0;var t=(U=e.__c).__H;t&&(H===U?(t.__h=[],U.__h=[],t.__.forEach((function(e){e.__N&&(e.__=e.__N),e.__V=W,e.__N=e.i=void 0}))):(t.__h.forEach(ve),t.__h.forEach(me),t.__h=[])),H=U},i.diffed=function(e){J&&J(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(1!==q.push(t)&&Y===i.requestAnimationFrame||((Y=i.requestAnimationFrame)||pe)(de)),t.__H.__.forEach((function(e){e.i&&(e.__H=e.i),e.__V!==W&&(e.__=e.__V),e.i=void 0,e.__V=W}))),H=U=null},i.__c=function(e,t){t.some((function(e){try{e.__h.forEach(ve),e.__h=e.__h.filter((function(e){return!e.__||me(e)}))}catch(o){t.some((function(e){e.__h&&(e.__h=[])})),t=[],i.__e(o,e.__v)}})),Z&&Z(e,t)},i.unmount=function(e){K&&K(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach((function(e){try{ve(e)}catch(e){t=e}})),n.__H=void 0,t&&i.__e(t,n.__v))};var he="function"==typeof requestAnimationFrame;function pe(e){var t,n=function(){clearTimeout(r),he&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,100);he&&(t=requestAnimationFrame(n))}function ve(e){var t=U,n=e.__c;"function"==typeof n&&(e.__c=void 0,n()),U=t}function me(e){var t=U;e.__c=e.__(),U=t}function ye(e,t){return!e||e.length!==t.length||t.some((function(t,n){return t!==e[n]}))}function ge(e,t){return"function"==typeof t?t(e):t}function _e(e,t){for(var n in t)e[n]=t[n];return e}function be(e,t){for(var n in e)if("__source"!==n&&!(n in t))return!0;for(var r in t)if("__source"!==r&&e[r]!==t[r])return!0;return!1}function De(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t}function we(e){this.props=e}function xe(e,t){function n(e){var n=this.props.ref,r=n==e.ref;return!r&&n&&(n.call?n(null):n.current=null),t?!t(this.props,e)||!r:be(this.props,e)}function r(t){return this.shouldComponentUpdate=n,p(e,t)}return r.displayName="Memo("+(e.displayName||e.name)+")",r.prototype.isReactComponent=!0,r.__f=!0,r}(we.prototype=new g).isPureReactComponent=!0,we.prototype.shouldComponentUpdate=function(e,t){return be(this.props,e)||be(this.state,t)};var ke=i.__b;i.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),ke&&ke(e)};var Ce="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.forward_ref")||3911;function Ee(e){function t(t){var n=_e({},t);return delete n.ref,e(n,t.ref||null)}return t.$$typeof=Ce,t.render=t,t.prototype.isReactComponent=t.__f=!0,t.displayName="ForwardRef("+(e.displayName||e.name)+")",t}var Se=function(e,t){return null==e?null:C(C(e).map(t))},Ae={map:Se,forEach:Se,count:function(e){return e?C(e).length:0},only:function(e){var t=C(e);if(1!==t.length)throw"Children.only";return t[0]},toArray:C},Fe=i.__e;i.__e=function(e,t,n,r){if(e.then)for(var i,o=t;o=o.__;)if((i=o.__c)&&i.__c)return null==t.__e&&(t.__e=n.__e,t.__k=n.__k),i.__c(e,t);Fe(e,t,n,r)};var Ne=i.unmount;function Oe(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach((function(e){"function"==typeof e.__c&&e.__c()})),e.__c.__H=null),null!=(e=_e({},e)).__c&&(e.__c.__P===n&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map((function(e){return Oe(e,t,n)}))),e}function Te(e,t,n){return e&&(e.__v=null,e.__k=e.__k&&e.__k.map((function(e){return Te(e,t,n)})),e.__c&&e.__c.__P===t&&(e.__e&&n.insertBefore(e.__e,e.__d),e.__c.__e=!0,e.__c.__P=n)),e}function Me(){this.__u=0,this.t=null,this.__b=null}function Be(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Ie(e){var t,n,r;function i(i){if(t||(t=e()).then((function(e){n=e.default||e}),(function(e){r=e})),r)throw r;if(!n)throw t;return p(n,i)}return i.displayName="Lazy",i.__f=!0,i}function Le(){this.u=null,this.o=null}i.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&!0===e.__h&&(e.type=null),Ne&&Ne(e)},(Me.prototype=new g).__c=function(e,t){var n=t.__c,r=this;null==r.t&&(r.t=[]),r.t.push(n);var i=Be(r.__v),o=!1,a=function(){o||(o=!0,n.__R=null,i?i(u):u())};n.__R=a;var u=function(){if(!--r.__u){if(r.state.__a){var e=r.state.__a;r.__v.__k[0]=Te(e,e.__c.__P,e.__c.__O)}var t;for(r.setState({__a:r.__b=null});t=r.t.pop();)t.forceUpdate()}},l=!0===t.__h;r.__u++||l||r.setState({__a:r.__b=r.__v.__k[0]}),e.then(a,a)},Me.prototype.componentWillUnmount=function(){this.t=[]},Me.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),r=this.__v.__k[0].__c;this.__v.__k[0]=Oe(this.__b,n,r.__O=r.__P)}this.__b=null}var i=t.__a&&p(y,null,e.fallback);return i&&(i.__h=null),[p(y,null,t.__a?null:e.children),i]};var Pe=function(e,t,n){if(++n[1]===n[0]&&e.o.delete(t),e.props.revealOrder&&("t"!==e.props.revealOrder[0]||!e.o.size))for(n=e.u;n;){for(;n.length>3;)n.pop()();if(n[1]>>1,1),t.i.removeChild(e)}}),P(p(ze,{context:t.context},e.__v),t.l)):t.l&&t.componentWillUnmount()}function je(e,t){var n=p(Re,{__v:e,i:t});return n.containerInfo=t,n}(Le.prototype=new g).__a=function(e){var t=this,n=Be(t.__v),r=t.o.get(e);return r[0]++,function(i){var o=function(){t.props.revealOrder?(r.push(i),Pe(t,e,r)):i()};n?n(o):o()}},Le.prototype.render=function(e){this.u=null,this.o=new Map;var t=C(e.children);e.revealOrder&&"b"===e.revealOrder[0]&&t.reverse();for(var n=t.length;n--;)this.o.set(t[n],this.u=[1,0,this.u]);return e.children},Le.prototype.componentDidUpdate=Le.prototype.componentDidMount=function(){var e=this;this.o.forEach((function(t,n){Pe(e,n,t)}))};var $e="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,Ue=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,He="undefined"!=typeof document,Ye=function(e){return("undefined"!=typeof Symbol&&"symbol"==typeof Symbol()?/fil|che|rad/i:/fil|che|ra/i).test(e)};function Ve(e,t,n){return null==t.__k&&(t.textContent=""),P(e,t),"function"==typeof n&&n(),e?e.__c:null}function qe(e,t,n){return z(e,t),"function"==typeof n&&n(),e?e.__c:null}g.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach((function(e){Object.defineProperty(g.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})}));var We=i.event;function Qe(){}function Ge(){return this.cancelBubble}function Je(){return this.defaultPrevented}i.event=function(e){return We&&(e=We(e)),e.persist=Qe,e.isPropagationStopped=Ge,e.isDefaultPrevented=Je,e.nativeEvent=e};var Ze,Ke={configurable:!0,get:function(){return this.class}},Xe=i.vnode;i.vnode=function(e){var t=e.type,n=e.props,r=n;if("string"==typeof t){var i=-1===t.indexOf("-");for(var o in r={},n){var a=n[o];He&&"children"===o&&"noscript"===t||"value"===o&&"defaultValue"in n&&null==a||("defaultValue"===o&&"value"in n&&null==n.value?o="value":"download"===o&&!0===a?a="":/ondoubleclick/i.test(o)?o="ondblclick":/^onchange(textarea|input)/i.test(o+t)&&!Ye(n.type)?o="oninput":/^onfocus$/i.test(o)?o="onfocusin":/^onblur$/i.test(o)?o="onfocusout":/^on(Ani|Tra|Tou|BeforeInp|Compo)/.test(o)?o=o.toLowerCase():i&&Ue.test(o)?o=o.replace(/[A-Z0-9]/g,"-$&").toLowerCase():null===a&&(a=void 0),/^oninput$/i.test(o)&&(o=o.toLowerCase(),r[o]&&(o="oninputCapture")),r[o]=a)}"select"==t&&r.multiple&&Array.isArray(r.value)&&(r.value=C(n.children).forEach((function(e){e.props.selected=-1!=r.value.indexOf(e.props.value)}))),"select"==t&&null!=r.defaultValue&&(r.value=C(n.children).forEach((function(e){e.props.selected=r.multiple?-1!=r.defaultValue.indexOf(e.props.value):r.defaultValue==e.props.value}))),e.props=r,n.class!=n.className&&(Ke.enumerable="className"in n,null!=n.className&&(r.class=n.className),Object.defineProperty(r,"className",Ke))}e.$$typeof=$e,Xe&&Xe(e)};var et=i.__r;i.__r=function(e){et&&et(e),Ze=e.__c};var tt={ReactCurrentDispatcher:{current:{readContext:function(e){return Ze.__n[e.__c].props.value}}}},nt="17.0.2";function rt(e){return p.bind(null,e)}function it(e){return!!e&&e.$$typeof===$e}function ot(e){return it(e)?R.apply(null,arguments):e}function at(e){return!!e.__k&&(P(null,e),!0)}function ut(e){return e&&(e.base||1===e.nodeType&&e)||null}var lt=function(e,t){return e(t)},ct=function(e,t){return e(t)},st=y;function ft(e){e()}function dt(e){return e}function ht(){return[!1,ft]}var pt=re;function vt(e,t){var n=t(),r=ee({h:{__:n,v:t}}),i=r[0].h,o=r[1];return re((function(){i.__=n,i.v=t,De(i.__,t())||o({h:i})}),[e,n,t]),ne((function(){return De(i.__,i.v())||o({h:i}),e((function(){De(i.__,i.v())||o({h:i})}))}),[e]),n}var mt,yt={useState:ee,useId:fe,useReducer:te,useEffect:ne,useLayoutEffect:re,useInsertionEffect:pt,useTransition:ht,useDeferredValue:dt,useSyncExternalStore:vt,startTransition:ft,useRef:ie,useImperativeHandle:oe,useMemo:ae,useCallback:ue,useContext:le,useDebugValue:ce,version:"17.0.2",Children:Ae,render:Ve,hydrate:qe,unmountComponentAtNode:at,createPortal:je,createElement:p,createContext:j,createFactory:rt,cloneElement:ot,createRef:m,Fragment:y,isValidElement:it,findDOMNode:ut,Component:g,PureComponent:we,memo:xe,forwardRef:Ee,flushSync:ct,unstable_batchedUpdates:lt,StrictMode:st,Suspense:Me,SuspenseList:Le,lazy:Ie,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:tt},gt=n(658),_t=n.n(gt),bt=n(443),Dt=n.n(bt),wt=n(446),xt=n.n(wt),kt=n(635),Ct=n.n(kt);function Et(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0&&(t.hash=e.substr(n),e=e.substr(0,n));var r=e.indexOf("?");r>=0&&(t.search=e.substr(r),e=e.substr(0,r)),e&&(t.pathname=e)}return t}function Kt(e){var t="undefined"!==typeof window&&"undefined"!==typeof window.location&&"null"!==window.location.origin?window.location.origin:window.location.href,n="string"===typeof e?e:Jt(e);return qt(t,"No window.location.(origin|href) available to create URL for href: "+n),new URL(n,t)}function Xt(e,t,n,r){void 0===r&&(r={});var i=r,o=i.window,a=void 0===o?document.defaultView:o,u=i.v5Compat,l=void 0!==u&&u,c=a.history,s=mt.Pop,f=null;function d(){s=mt.Pop,f&&f({action:s,location:h.location})}var h={get action(){return s},get location(){return e(a,c)},listen:function(e){if(f)throw new Error("A history only accepts one active listener");return a.addEventListener(Vt,d),f=e,function(){a.removeEventListener(Vt,d),f=null}},createHref:function(e){return t(a,e)},encodeLocation:function(e){var t=Kt("string"===typeof e?e:Jt(e));return{pathname:t.pathname,search:t.search,hash:t.hash}},push:function(e,t){s=mt.Push;var r=Gt(h.location,e,t);n&&n(r,e);var i=Qt(r),o=h.createHref(r);try{c.pushState(i,"",o)}catch(u){a.location.assign(o)}l&&f&&f({action:s,location:h.location})},replace:function(e,t){s=mt.Replace;var r=Gt(h.location,e,t);n&&n(r,e);var i=Qt(r),o=h.createHref(r);c.replaceState(i,"",o),l&&f&&f({action:s,location:h.location})},go:function(e){return c.go(e)}};return h}function en(e,t,n){void 0===n&&(n="/");var r=cn(("string"===typeof t?Zt(t):t).pathname||"/",n);if(null==r)return null;var i=tn(e);!function(e){e.sort((function(e,t){return e.score!==t.score?t.score-e.score:function(e,t){var n=e.length===t.length&&e.slice(0,-1).every((function(e,n){return e===t[n]}));return n?e[e.length-1]-t[t.length-1]:0}(e.routesMeta.map((function(e){return e.childrenIndex})),t.routesMeta.map((function(e){return e.childrenIndex})))}))}(i);for(var o=null,a=0;null==o&&a0&&(qt(!0!==e.index,'Index routes must not have child routes. Please remove all child routes from route path "'+a+'".'),tn(e.children,t,u,a)),(null!=e.path||e.index)&&t.push({path:a,score:on(a,e.index),routesMeta:u})})),t}!function(e){e.data="data",e.deferred="deferred",e.redirect="redirect",e.error="error"}(Yt||(Yt={}));var nn=/^:\w+$/,rn=function(e){return"*"===e};function on(e,t){var n=e.split("/"),r=n.length;return n.some(rn)&&(r+=-2),t&&(r+=2),n.filter((function(e){return!rn(e)})).reduce((function(e,t){return e+(nn.test(t)?3:""===t?1:10)}),r)}function an(e,t){for(var n=e.routesMeta,r={},i="/",o=[],a=0;a and the router will parse it for you.'}function dn(e){return e.filter((function(e,t){return 0===t||e.route.path&&e.route.path.length>0}))}function hn(e,t,n,r){var i;void 0===r&&(r=!1),"string"===typeof e?i=Zt(e):(qt(!(i=Ht({},e)).pathname||!i.pathname.includes("?"),fn("?","pathname","search",i)),qt(!i.pathname||!i.pathname.includes("#"),fn("#","pathname","hash",i)),qt(!i.search||!i.search.includes("#"),fn("#","search","hash",i)));var o,a=""===e||""===i.pathname,u=a?"/":i.pathname;if(r||null==u)o=n;else{var l=t.length-1;if(u.startsWith("..")){for(var c=u.split("/");".."===c[0];)c.shift(),l-=1;i.pathname=c.join("/")}o=l>=0?t[l]:"/"}var s=function(e,t){void 0===t&&(t="/");var n="string"===typeof e?Zt(e):e,r=n.pathname,i=n.search,o=void 0===i?"":i,a=n.hash,u=void 0===a?"":a,l=r?r.startsWith("/")?r:function(e,t){var n=t.replace(/\/+$/,"").split("/");return e.split("/").forEach((function(e){".."===e?n.length>1&&n.pop():"."!==e&&n.push(e)})),n.length>1?n.join("/"):"/"}(r,t):t;return{pathname:l,search:mn(o),hash:yn(u)}}(i,o),f=u&&"/"!==u&&u.endsWith("/"),d=(a||"."===u)&&n.endsWith("/");return s.pathname.endsWith("/")||!f&&!d||(s.pathname+="/"),s}var pn=function(e){return e.join("/").replace(/\/\/+/g,"/")},vn=function(e){return e.replace(/\/+$/,"").replace(/^\/*/,"/")},mn=function(e){return e&&"?"!==e?e.startsWith("?")?e:"?"+e:""},yn=function(e){return e&&"#"!==e?e.startsWith("#")?e:"#"+e:""};Error;var gn=Bt((function e(t,n,r,i){Nt(this,e),void 0===i&&(i=!1),this.status=t,this.statusText=n||"",this.internal=i,r instanceof Error?(this.data=r.toString(),this.error=r):this.data=r}));function _n(e){return e instanceof gn}var bn=["post","put","patch","delete"],Dn=(new Set(bn),["get"].concat(bn));new Set(Dn),new Set([301,302,303,307,308]),new Set([307,308]),"undefined"!==typeof window&&"undefined"!==typeof window.document&&window.document.createElement;function wn(){return wn=Object.assign?Object.assign.bind():function(e){for(var t=1;t")))}var $n,Un,Hn=function(e){Lt(n,e);var t=jt(n);function n(e){var r;return Nt(this,n),(r=t.call(this,e)).state={location:e.location,error:e.error},r}return Bt(n,[{key:"componentDidCatch",value:function(e,t){console.error("React Router caught the following error during render",e,t)}},{key:"render",value:function(){return this.state.error?p(In.Provider,{value:this.state.error,children:this.props.component}):this.props.children}}],[{key:"getDerivedStateFromError",value:function(e){return{error:e}}},{key:"getDerivedStateFromProps",value:function(e,t){return t.location!==e.location?{error:e.error,location:e.location}:{error:e.error||t.error,location:t.location}}}]),n}(g);function Yn(e){var t=e.routeContext,n=e.match,r=e.children,i=le(Fn);return i&&n.route.errorElement&&(i._deepestRenderedBoundaryId=n.route.id),p(Bn.Provider,{value:t},r)}function Vn(e,t,n){if(void 0===t&&(t=[]),null==e){if(null==n||!n.errors)return null;e=n.matches}var r=e,i=null==n?void 0:n.errors;if(null!=i){var o=r.findIndex((function(e){return e.route.id&&(null==i?void 0:i[e.route.id])}));o>=0||qt(!1),r=r.slice(0,Math.min(r.length,o+1))}return r.reduceRight((function(e,o,a){var u=o.route.id?null==i?void 0:i[o.route.id]:null,l=n?o.route.errorElement||p(jn,null):null,c=function(){return p(Yn,{match:o,routeContext:{outlet:e,matches:t.concat(r.slice(0,a+1))}},u?l:void 0!==o.route.element?o.route.element:e)};return n&&(o.route.errorElement||0===a)?p(Hn,{location:n.location,component:l,error:u,children:c()}):c()}),null)}function qn(e){var t=le(On);return t||qt(!1),t}!function(e){e.UseRevalidator="useRevalidator"}($n||($n={})),function(e){e.UseLoaderData="useLoaderData",e.UseActionData="useActionData",e.UseRouteError="useRouteError",e.UseNavigation="useNavigation",e.UseRouteLoaderData="useRouteLoaderData",e.UseMatches="useMatches",e.UseRevalidator="useRevalidator"}(Un||(Un={}));var Wn;function Qn(e){return function(e){var t=le(Bn).outlet;return t?p(Rn.Provider,{value:e},t):t}(e.context)}function Gn(e){qt(!1)}function Jn(e){var t=e.basename,n=void 0===t?"/":t,r=e.children,i=void 0===r?null:r,o=e.location,a=e.navigationType,u=void 0===a?mt.Pop:a,l=e.navigator,c=e.static,s=void 0!==c&&c;Ln()&&qt(!1);var f=n.replace(/^\/*/,"/"),d=ae((function(){return{basename:f,navigator:l,static:s}}),[f,l,s]);"string"===typeof o&&(o=Zt(o));var h=o,v=h.pathname,m=void 0===v?"/":v,y=h.search,g=void 0===y?"":y,_=h.hash,b=void 0===_?"":_,D=h.state,w=void 0===D?null:D,x=h.key,k=void 0===x?"default":x,C=ae((function(){var e=cn(m,f);return null==e?null:{pathname:e,search:g,hash:b,state:w,key:k}}),[f,m,g,b,w,k]);return null==C?null:p(Tn.Provider,{value:d},p(Mn.Provider,{children:i,value:{location:C,navigationType:u}}))}function Zn(e){var t=e.children,n=e.location,r=le(Nn);return function(e,t){Ln()||qt(!1);var n,r=le(Tn).navigator,i=le(On),o=le(Bn).matches,a=o[o.length-1],u=a?a.params:{},l=(a&&a.pathname,a?a.pathnameBase:"/"),c=(a&&a.route,Pn());if(t){var s,f="string"===typeof t?Zt(t):t;"/"===l||(null==(s=f.pathname)?void 0:s.startsWith(l))||qt(!1),n=f}else n=c;var d=n.pathname||"/",h=en(e,{pathname:"/"===l?d:d.slice(l.length)||"/"}),v=Vn(h&&h.map((function(e){return Object.assign({},e,{params:Object.assign({},u,e.params),pathname:pn([l,r.encodeLocation?r.encodeLocation(e.pathname).pathname:e.pathname]),pathnameBase:"/"===e.pathnameBase?l:pn([l,r.encodeLocation?r.encodeLocation(e.pathnameBase).pathname:e.pathnameBase])})})),o,i||void 0);return t&&v?p(Mn.Provider,{value:{location:wn({pathname:"/",search:"",hash:"",state:null,key:"default"},n),navigationType:mt.Pop}},v):v}(r&&!t?r.router.routes:Kn(t),n)}!function(e){e[e.pending=0]="pending",e[e.success=1]="success",e[e.error=2]="error"}(Wn||(Wn={}));new Promise((function(){}));function Kn(e,t){void 0===t&&(t=[]);var n=[];return Ae.forEach(e,(function(e,r){if(it(e))if(e.type!==y){e.type!==Gn&&qt(!1),e.props.index&&e.props.children&&qt(!1);var i=[].concat(Ft(t),[r]),o={id:e.props.id||i.join("-"),caseSensitive:e.props.caseSensitive,element:e.props.element,index:e.props.index,path:e.props.path,loader:e.props.loader,action:e.props.action,errorElement:e.props.errorElement,hasErrorBoundary:null!=e.props.errorElement,shouldRevalidate:e.props.shouldRevalidate,handle:e.props.handle};e.props.children&&(o.children=Kn(e.props.children,i)),n.push(o)}else n.push.apply(n,Kn(e.props.children,t))})),n}function Xn(e){var t=e.basename,n=e.children,r=e.window,i=ie();null==i.current&&(i.current=function(e){return void 0===e&&(e={}),Xt((function(e,t){var n=Zt(e.location.hash.substr(1)),r=n.pathname,i=void 0===r?"/":r,o=n.search,a=void 0===o?"":o,u=n.hash;return Gt("",{pathname:i,search:a,hash:void 0===u?"":u},t.state&&t.state.usr||null,t.state&&t.state.key||"default")}),(function(e,t){var n=e.document.querySelector("base"),r="";if(n&&n.getAttribute("href")){var i=e.location.href,o=i.indexOf("#");r=-1===o?i:i.slice(0,o)}return r+"#"+("string"===typeof t?t:Jt(t))}),(function(e,t){Wt("/"===e.pathname.charAt(0),"relative pathnames are not supported in hash history.push("+JSON.stringify(t)+")")}),e)}({window:r,v5Compat:!0}));var o=i.current,a=At(ee({action:o.action,location:o.location}),2),u=a[0],l=a[1];return re((function(){return o.listen(l)}),[o]),p(Jn,{basename:t,children:n,location:u.location,navigationType:u.action,navigator:o})}var er,tr;(function(e){e.UseScrollRestoration="useScrollRestoration",e.UseSubmitImpl="useSubmitImpl",e.UseFetcher="useFetcher"})(er||(er={})),function(e){e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration"}(tr||(tr={}));var nr;function rr(e,t,n){return(t=Tt(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ir(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function or(e){for(var t=1;t2&&void 0!==arguments[2]?arguments[2]:window.location.search,r=hr().parse(n,{ignoreQueryPrefix:!0});return vr()(r,e,t||"")},br={serverUrl:sr().serverURL||window.location.href.replace(/\/(?:prometheus\/)?(?:graph|vmui)\/.*/,"/prometheus"),tenantId:Number(_r("g0.tenantID",0))};function Dr(e,t){switch(t.type){case"SET_SERVER":return or(or({},e),{},{serverUrl:t.payload});case"SET_TENANT_ID":return or(or({},e),{},{tenantId:t.payload});default:throw new Error}}var wr=0;function xr(e,t,n,r,o){var a,u,l={};for(u in t)"ref"==u?a=t[u]:l[u]=t[u];var c={type:e,props:l,key:n,ref:a,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:--wr,__source:o,__self:r};if("function"==typeof e&&(a=e.defaultProps))for(u in a)void 0===l[u]&&(l[u]=a[u]);return i.vnode&&i.vnode(c),c}var kr=j({}),Cr=function(){return le(kr).state},Er=function(){return le(kr).dispatch},Sr=Object.entries(br).reduce((function(e,t){var n=At(t,2),r=n[0],i=n[1];return or(or({},e),{},rr({},r,_r(r)||i))}),{}),Ar="YYYY-MM-DD",Fr="YYYY-MM-DD HH:mm:ss",Nr="YYYY-MM-DD[T]HH:mm:ss",Or=window.innerWidth/4,Tr=1,Mr=1578e8,Br=Intl.supportedValuesOf("timeZone"),Ir=[{long:"years",short:"y",possible:"year"},{long:"weeks",short:"w",possible:"week"},{long:"days",short:"d",possible:"day"},{long:"hours",short:"h",possible:"hour"},{long:"minutes",short:"m",possible:"min"},{long:"seconds",short:"s",possible:"sec"},{long:"milliseconds",short:"ms",possible:"millisecond"}],Lr=Ir.map((function(e){return e.short})),Pr=function(e){return Math.round(1e3*e)/1e3},zr=function(e){var t=e.match(/\d+/g),n=e.match(/[a-zA-Z]+/g);if(n&&t&&Lr.includes(n[0]))return rr({},n[0],t[0])},Rr=function(e){var t=Ir.map((function(e){return e.short})).join("|"),n=new RegExp("\\d+[".concat(t,"]+"),"g"),r=(e.match(n)||[]).reduce((function(e,t){var n=zr(t);return n?or(or({},e),n):or({},e)}),{});return _t().duration(r).asSeconds()},jr=function(e,t){var n=(t||_t()().toDate()).valueOf()/1e3,r=Rr(e);return{start:n-r,end:n,step:function(e){var t=Pr(e),n=Math.round(e);return e>=100&&(t=n-n%10),e<100&&e>=10&&(t=n-n%5),e<10&&e>=1&&(t=n),e<1&&e>.01&&(t=Math.round(40*e)/40),Hr(_t().duration(t||.001,"seconds").asMilliseconds()).replace(/\s/g,"")}(r/Or),date:$r(t||_t()().toDate())}},$r=function(e){return _t().tz(e).utc().format(Nr)},Ur=function(e){return _t().tz(e).format(Nr)},Hr=function(e){var t=Math.floor(e%1e3),n=Math.floor(e/1e3%60),r=Math.floor(e/1e3/60%60),i=Math.floor(e/1e3/3600%24),o=Math.floor(e/864e5),a=["d","h","m","s","ms"],u=[o,i,r,n,t].map((function(e,t){return e?"".concat(e).concat(a[t]):""}));return u.filter((function(e){return e})).join(" ")},Yr=function(e){return _t()(1e3*e).toDate()},Vr=[{title:"Last 5 minutes",duration:"5m"},{title:"Last 15 minutes",duration:"15m"},{title:"Last 30 minutes",duration:"30m",isDefault:!0},{title:"Last 1 hour",duration:"1h"},{title:"Last 3 hours",duration:"3h"},{title:"Last 6 hours",duration:"6h"},{title:"Last 12 hours",duration:"12h"},{title:"Last 24 hours",duration:"24h"},{title:"Last 2 days",duration:"2d"},{title:"Last 7 days",duration:"7d"},{title:"Last 30 days",duration:"30d"},{title:"Last 90 days",duration:"90d"},{title:"Last 180 days",duration:"180d"},{title:"Last 1 year",duration:"1y"},{title:"Yesterday",duration:"1d",until:function(){return _t()().tz().subtract(1,"day").endOf("day").toDate()}},{title:"Today",duration:"1d",until:function(){return _t()().tz().endOf("day").toDate()}}].map((function(e){return or({id:e.title.replace(/\s/g,"_").toLocaleLowerCase(),until:e.until?e.until:function(){return _t()().tz().toDate()}},e)})),qr=function(e){var t,n=e.relativeTimeId,r=e.defaultDuration,i=e.defaultEndInput,o=null===(t=Vr.find((function(e){return e.isDefault})))||void 0===t?void 0:t.id,a=n||_r("g0.relative_time",o),u=Vr.find((function(e){return e.id===a}));return{relativeTimeId:u?a:"none",duration:u?u.duration:r,endInput:u?u.until():i}},Wr=function(e){var t=_t()().tz(e);return"UTC".concat(t.format("Z"))},Qr=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=new RegExp(e,"i");return Br.reduce((function(n,r){var i=(r.match(/^(.*?)\//)||[])[1]||"unknown",o=Wr(r),a=o.replace(/UTC|0/,""),u=r.replace(/[/_]/g," "),l={region:r,utc:o,search:"".concat(r," ").concat(o," ").concat(u," ").concat(a)},c=!e||e&&t.test(l.search);return c&&n[i]?n[i].push(l):c&&(n[i]=[l]),n}),{})},Gr=function(e){_t().tz.setDefault(e)},Jr=function(e,t){t?window.localStorage.setItem(e,JSON.stringify({value:t})):Kr([e])},Zr=function(e){var t=window.localStorage.getItem(e);if(null!==t)try{var n;return null===(n=JSON.parse(t))||void 0===n?void 0:n.value}catch(s){return t}},Kr=function(e){return e.forEach((function(e){return window.localStorage.removeItem(e)}))},Xr=Zr("TIMEZONE")||_t().tz.guess();Gr(Xr);var ei,ti=_r("g0.range_input"),ni=qr({defaultDuration:ti||"1h",defaultEndInput:(ei=_r("g0.end_input",_t()().utc().format(Nr)),_t()(ei).utcOffset(0,!0).toDate()),relativeTimeId:ti?_r("g0.relative_time","none"):void 0}),ri=ni.duration,ii=ni.endInput,oi=ni.relativeTimeId,ai={duration:ri,period:jr(ri,ii),relativeTime:oi,timezone:Xr};function ui(e,t){switch(t.type){case"SET_DURATION":return or(or({},e),{},{duration:t.payload,period:jr(t.payload,Yr(e.period.end)),relativeTime:"none"});case"SET_RELATIVE_TIME":return or(or({},e),{},{duration:t.payload.duration,period:jr(t.payload.duration,t.payload.until),relativeTime:t.payload.id});case"SET_PERIOD":var n=function(e){var t=e.to.valueOf()-e.from.valueOf();return Hr(t)}(t.payload);return or(or({},e),{},{duration:n,period:jr(n,t.payload.to),relativeTime:"none"});case"RUN_QUERY":var r=qr({relativeTimeId:e.relativeTime,defaultDuration:e.duration,defaultEndInput:Yr(e.period.end)}),i=r.duration,o=r.endInput;return or(or({},e),{},{period:jr(i,o)});case"RUN_QUERY_TO_NOW":return or(or({},e),{},{period:jr(e.duration)});case"SET_TIMEZONE":return Gr(t.payload),Jr("TIMEZONE",t.payload),or(or({},e),{},{timezone:t.payload});default:throw new Error}}var li=j({}),ci=function(){return le(li).state},si=function(){return le(li).dispatch},fi=function(){var e,t=(null===(e=window.location.search.match(/g\d+\.expr/g))||void 0===e?void 0:e.length)||1;return new Array(t>4?4:t).fill(1).map((function(e,t){return _r("g".concat(t,".expr"),"")}))}(),di={query:fi,queryHistory:fi.map((function(e){return{index:0,values:[e]}})),autocomplete:Zr("AUTOCOMPLETE")||!1};function hi(e,t){switch(t.type){case"SET_QUERY":return or(or({},e),{},{query:t.payload.map((function(e){return e}))});case"SET_QUERY_HISTORY":return or(or({},e),{},{queryHistory:t.payload});case"SET_QUERY_HISTORY_BY_INDEX":return e.queryHistory.splice(t.payload.queryNumber,1,t.payload.value),or(or({},e),{},{queryHistory:e.queryHistory});case"TOGGLE_AUTOCOMPLETE":return Jr("AUTOCOMPLETE",!e.autocomplete),or(or({},e),{},{autocomplete:!e.autocomplete});default:throw new Error}}var pi=j({}),vi=function(){return le(pi).state},mi=function(){return le(pi).dispatch},yi=function(){return xr("svg",{viewBox:"0 0 74 24",fill:"currentColor",children:[xr("path",{d:"M6.11767 10.4759C6.47736 10.7556 6.91931 10.909 7.37503 10.9121H7.42681C7.90756 10.9047 8.38832 10.7199 8.67677 10.4685C10.1856 9.18921 14.5568 5.18138 14.5568 5.18138C15.7254 4.09438 12.4637 3.00739 7.42681 3H7.36764C2.3308 3.00739 -0.930935 4.09438 0.237669 5.18138C0.237669 5.18138 4.60884 9.18921 6.11767 10.4759ZM8.67677 12.6424C8.31803 12.9248 7.87599 13.0808 7.41941 13.0861H7.37503C6.91845 13.0808 6.47641 12.9248 6.11767 12.6424C5.0822 11.7551 1.38409 8.42018 0.000989555 7.14832V9.07829C0.000989555 9.29273 0.0823481 9.57372 0.222877 9.70682L0.293316 9.7712L0.293344 9.77122C1.33784 10.7258 4.83903 13.9255 6.11767 15.0161C6.47641 15.2985 6.91845 15.4545 7.37503 15.4597H7.41941C7.90756 15.4449 8.38092 15.2601 8.67677 15.0161C9.9859 13.9069 13.6249 10.572 14.5642 9.70682C14.7121 9.57372 14.7861 9.29273 14.7861 9.07829V7.14832C12.7662 8.99804 10.7297 10.8295 8.67677 12.6424ZM7.41941 17.6263C7.87513 17.6232 8.31708 17.4698 8.67677 17.19C10.7298 15.3746 12.7663 13.5407 14.7861 11.6885V13.6259C14.7861 13.8329 14.7121 14.1139 14.5642 14.247C13.6249 15.1196 9.9859 18.4471 8.67677 19.5563C8.38092 19.8077 7.90756 19.9926 7.41941 20H7.37503C6.91931 19.9968 6.47736 19.8435 6.11767 19.5637C4.91427 18.5373 1.74219 15.6364 0.502294 14.5025C0.393358 14.4029 0.299337 14.3169 0.222877 14.247C0.0823481 14.1139 0.000989555 13.8329 0.000989555 13.6259V11.6885C1.38409 12.953 5.0822 16.2953 6.11767 17.1827C6.47641 17.4651 6.91845 17.6211 7.37503 17.6263H7.41941Z"}),xr("path",{d:"M34.9996 5L29.1596 19.46H26.7296L20.8896 5H23.0496C23.2829 5 23.4729 5.05667 23.6196 5.17C23.7663 5.28333 23.8763 5.43 23.9496 5.61L27.3596 14.43C27.4729 14.7167 27.5796 15.0333 27.6796 15.38C27.7863 15.72 27.8863 16.0767 27.9796 16.45C28.0596 16.0767 28.1463 15.72 28.2396 15.38C28.3329 15.0333 28.4363 14.7167 28.5496 14.43L31.9396 5.61C31.9929 5.45667 32.0963 5.31667 32.2496 5.19C32.4096 5.06333 32.603 5 32.8297 5H34.9996ZM52.1763 5V19.46H49.8064V10.12C49.8064 9.74667 49.8263 9.34333 49.8663 8.91L45.4963 17.12C45.2897 17.5133 44.973 17.71 44.5463 17.71H44.1663C43.7397 17.71 43.4231 17.5133 43.2164 17.12L38.7963 8.88C38.8163 9.1 38.833 9.31667 38.8463 9.53C38.8597 9.74333 38.8663 9.94 38.8663 10.12V19.46H36.4963V5H38.5263C38.6463 5 38.7497 5.00333 38.8363 5.01C38.923 5.01667 38.9997 5.03333 39.0663 5.06C39.1397 5.08667 39.203 5.13 39.2563 5.19C39.3163 5.25 39.373 5.33 39.4263 5.43L43.7563 13.46C43.8697 13.6733 43.973 13.8933 44.0663 14.12C44.1663 14.3467 44.263 14.58 44.3563 14.82C44.4497 14.5733 44.5464 14.3367 44.6464 14.11C44.7464 13.8767 44.8531 13.6533 44.9664 13.44L49.2363 5.43C49.2897 5.33 49.3463 5.25 49.4063 5.19C49.4663 5.13 49.5297 5.08667 49.5963 5.06C49.6697 5.03333 49.7497 5.01667 49.8363 5.01C49.923 5.00333 50.0264 5 50.1464 5H52.1763ZM61.0626 18.73C61.7426 18.73 62.3492 18.6133 62.8826 18.38C63.4226 18.14 63.8792 17.81 64.2526 17.39C64.6259 16.97 64.9092 16.4767 65.1026 15.91C65.3026 15.3367 65.4026 14.72 65.4026 14.06V5.31H66.4226V14.06C66.4226 14.84 66.2993 15.57 66.0527 16.25C65.806 16.9233 65.4493 17.5133 64.9827 18.02C64.5227 18.52 63.9592 18.9133 63.2926 19.2C62.6326 19.4867 61.8892 19.63 61.0626 19.63C60.2359 19.63 59.4893 19.4867 58.8227 19.2C58.1627 18.9133 57.5992 18.52 57.1326 18.02C56.6726 17.5133 56.3193 16.9233 56.0727 16.25C55.826 15.57 55.7026 14.84 55.7026 14.06V5.31H56.7327V14.05C56.7327 14.71 56.8292 15.3267 57.0226 15.9C57.2226 16.4667 57.506 16.96 57.8727 17.38C58.246 17.8 58.6993 18.13 59.2327 18.37C59.7727 18.61 60.3826 18.73 61.0626 18.73ZM71.4438 19.46H70.4138V5.31H71.4438V19.46Z"})]})},gi=function(){return xr("svg",{viewBox:"0 0 15 17",fill:"currentColor",children:xr("path",{d:"M6.11767 7.47586C6.47736 7.75563 6.91931 7.90898 7.37503 7.91213H7.42681C7.90756 7.90474 8.38832 7.71987 8.67677 7.46846C10.1856 6.18921 14.5568 2.18138 14.5568 2.18138C15.7254 1.09438 12.4637 0.00739 7.42681 0H7.36764C2.3308 0.00739 -0.930935 1.09438 0.237669 2.18138C0.237669 2.18138 4.60884 6.18921 6.11767 7.47586ZM8.67677 9.64243C8.31803 9.92483 7.87599 10.0808 7.41941 10.0861H7.37503C6.91845 10.0808 6.47641 9.92483 6.11767 9.64243C5.0822 8.75513 1.38409 5.42018 0.000989555 4.14832V6.07829C0.000989555 6.29273 0.0823481 6.57372 0.222877 6.70682L0.293316 6.7712L0.293344 6.77122C1.33784 7.72579 4.83903 10.9255 6.11767 12.0161C6.47641 12.2985 6.91845 12.4545 7.37503 12.4597H7.41941C7.90756 12.4449 8.38092 12.2601 8.67677 12.0161C9.9859 10.9069 13.6249 7.57198 14.5642 6.70682C14.7121 6.57372 14.7861 6.29273 14.7861 6.07829V4.14832C12.7662 5.99804 10.7297 7.82949 8.67677 9.64243ZM7.41941 14.6263C7.87513 14.6232 8.31708 14.4698 8.67677 14.19C10.7298 12.3746 12.7663 10.5407 14.7861 8.68853V10.6259C14.7861 10.8329 14.7121 11.1139 14.5642 11.247C13.6249 12.1196 9.9859 15.4471 8.67677 16.5563C8.38092 16.8077 7.90756 16.9926 7.41941 17H7.37503C6.91931 16.9968 6.47736 16.8435 6.11767 16.5637C4.91427 15.5373 1.74219 12.6364 0.502294 11.5025C0.393358 11.4029 0.299337 11.3169 0.222877 11.247C0.0823481 11.1139 0.000989555 10.8329 0.000989555 10.6259V8.68853C1.38409 9.95303 5.0822 13.2953 6.11767 14.1827C6.47641 14.4651 6.91845 14.6211 7.37503 14.6263H7.41941Z"})})},_i=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94s.02.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z"})})},bi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"})})},Di=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z"})})},wi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"})})},xi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"})})},ki=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"})})},Ci=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"})})},Ei=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"})})},Si=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"})})},Ai=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m7 10 5 5 5-5z"})})},Fi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"})})},Ni=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:[xr("path",{d:"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"}),xr("path",{d:"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"})]})},Oi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"})})},Ti=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"})})},Mi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z"})})},Bi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"})})},Ii=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M8 5v14l11-7z"})})},Li=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m10 16.5 6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"})})},Pi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z"})})},zi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M10 10.02h5V21h-5zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z"})})},Ri=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"})})},ji=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"})})},$i=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"})})},Ui=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M8.9999 14.7854L18.8928 4.8925C19.0803 4.70497 19.3347 4.59961 19.5999 4.59961C19.8651 4.59961 20.1195 4.70497 20.307 4.8925L21.707 6.2925C22.0975 6.68303 22.0975 7.31619 21.707 7.70672L9.70701 19.7067C9.31648 20.0972 8.68332 20.0972 8.2928 19.7067L2.6928 14.1067C2.50526 13.9192 2.3999 13.6648 2.3999 13.3996C2.3999 13.1344 2.50526 12.88 2.6928 12.6925L4.0928 11.2925C4.48332 10.902 5.11648 10.902 5.50701 11.2925L8.9999 14.7854Z"})})},Hi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"})})},Yi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78 3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"})})},Vi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"})})},qi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M20 9H4v2h16V9zM4 15h16v-2H4v2z"})})},Wi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"})})},Qi=function(){return xr("svg",{className:"MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiBox-root css-1om0hkc",focusable:"false","aria-hidden":"true",viewBox:"0 0 24 24","data-testid":"OpenInFullIcon",fill:"currentColor",children:xr("path",{d:"M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z"})})},Gi=n(123),Ji=n.n(Gi),Zi=function(e){return getComputedStyle(document.documentElement).getPropertyValue("--".concat(e))},Ki=function(e,t){document.documentElement.style.setProperty("--".concat(e),t)},Xi=function(e){var t=At(ee({width:0,height:0}),2),n=t[0],r=t[1];return ne((function(){var t=new ResizeObserver((function(e){var t=e[0].contentRect,n=t.width,i=t.height;r({width:n,height:i})}));return e&&t.observe(e),function(){e&&t.unobserve(e)}}),[]),n},eo=function(e){var t=e.activeItem,n=e.items,r=e.color,i=void 0===r?Zi("color-primary"):r,o=e.onChange,a=e.indicatorPlacement,u=void 0===a?"bottom":a,l=Xi(document.body),c=ie(null),s=At(ee({left:0,width:0,bottom:0}),2),f=s[0],d=s[1];return ne((function(){if(c.current){var e=c.current,t=e.offsetLeft,n=e.offsetWidth,r=e.offsetHeight;d({left:t,width:n,bottom:"top"===u?r-2:0})}}),[l,t,c,n]),xr("div",{className:"vm-tabs",children:[n.map((function(e){return xr("div",{className:Ji()(rr({"vm-tabs-item":!0,"vm-tabs-item_active":t===e.value},e.className||"",e.className)),ref:t===e.value?c:void 0,style:{color:i},onClick:(n=e.value,function(){o(n)}),children:[e.icon&&xr("div",{className:Ji()({"vm-tabs-item__icon":!0,"vm-tabs-item__icon_single":!e.label}),children:e.icon}),e.label]},e.value);var n})),xr("div",{className:"vm-tabs__indicator",style:or(or({},f),{},{borderColor:i})})]})},to=[{value:"chart",icon:xr(Pi,{}),label:"Graph",prometheusCode:0},{value:"code",icon:xr(Ri,{}),label:"JSON",prometheusCode:3},{value:"table",icon:xr(zi,{}),label:"Table",prometheusCode:1}],no=function(){var e=co().displayType,t=so();return xr(eo,{activeItem:e,items:to,onChange:function(n){var r;t({type:"SET_DISPLAY_TYPE",payload:null!==(r=n)&&void 0!==r?r:e})}})},ro=_r("g0.tab",0),io=to.find((function(e){return e.prometheusCode===+ro||e.value===ro})),oo=Zr("SERIES_LIMITS"),ao={displayType:(null===io||void 0===io?void 0:io.value)||"chart",nocache:!1,isTracingEnabled:!1,seriesLimits:oo?JSON.parse(Zr("SERIES_LIMITS")):mr,tableCompact:Zr("TABLE_COMPACT")||!1};function uo(e,t){switch(t.type){case"SET_DISPLAY_TYPE":return or(or({},e),{},{displayType:t.payload});case"SET_SERIES_LIMITS":return Jr("SERIES_LIMITS",JSON.stringify(t.payload)),or(or({},e),{},{seriesLimits:t.payload});case"TOGGLE_QUERY_TRACING":return or(or({},e),{},{isTracingEnabled:!e.isTracingEnabled});case"TOGGLE_NO_CACHE":return or(or({},e),{},{nocache:!e.nocache});case"TOGGLE_TABLE_COMPACT":return Jr("TABLE_COMPACT",!e.tableCompact),or(or({},e),{},{tableCompact:!e.tableCompact});default:throw new Error}}var lo=j({}),co=function(){return le(lo).state},so=function(){return le(lo).dispatch},fo={customStep:_r("g0.step_input",""),yaxis:{limits:{enable:!1,range:{1:[0,0]}}}};function ho(e,t){switch(t.type){case"TOGGLE_ENABLE_YAXIS_LIMITS":return or(or({},e),{},{yaxis:or(or({},e.yaxis),{},{limits:or(or({},e.yaxis.limits),{},{enable:!e.yaxis.limits.enable})})});case"SET_CUSTOM_STEP":return or(or({},e),{},{customStep:t.payload});case"SET_YAXIS_LIMITS":return or(or({},e),{},{yaxis:or(or({},e.yaxis),{},{limits:or(or({},e.yaxis.limits),{},{range:t.payload})})});default:throw new Error}}var po=j({}),vo=function(){return le(po).state},mo=function(){return le(po).dispatch},yo={runQuery:0,topN:_r("topN",10),date:_r("date",_t()().tz().format(Ar)),focusLabel:_r("focusLabel",""),match:_r("match",""),extraLabel:_r("extra_label","")};function go(e,t){switch(t.type){case"SET_TOP_N":return or(or({},e),{},{topN:t.payload});case"SET_DATE":return or(or({},e),{},{date:t.payload});case"SET_MATCH":return or(or({},e),{},{match:t.payload});case"SET_EXTRA_LABEL":return or(or({},e),{},{extraLabel:t.payload});case"SET_FOCUS_LABEL":return or(or({},e),{},{focusLabel:t.payload});case"RUN_QUERY":return or(or({},e),{},{runQuery:e.runQuery+1});default:throw new Error}}var _o=j({}),bo=function(){return le(_o).state},Do=function(){return le(_o).dispatch},wo={topN:_r("topN",null),maxLifetime:_r("maxLifetime",""),runQuery:0};function xo(e,t){switch(t.type){case"SET_TOP_N":return or(or({},e),{},{topN:t.payload});case"SET_MAX_LIFE_TIME":return or(or({},e),{},{maxLifetime:t.payload});case"SET_RUN_QUERY":return or(or({},e),{},{runQuery:e.runQuery+1});default:throw new Error}}var ko=j({}),Co=function(){return le(ko).state},Eo={success:xr(Ci,{}),error:xr(ki,{}),warning:xr(xi,{}),info:xr(wi,{})},So=function(e){var t=e.variant,n=e.children;return xr("div",{className:Ji()(rr({"vm-alert":!0},"vm-alert_".concat(t),t)),children:[xr("div",{className:"vm-alert__icon",children:Eo[t||"info"]}),xr("div",{className:"vm-alert__content",children:n})]})},Ao=j({showInfoMessage:function(){}}),Fo=function(){return le(Ao)},No={dashboardsSettings:[],dashboardsLoading:!1,dashboardsError:""};function Oo(e,t){switch(t.type){case"SET_DASHBOARDS_SETTINGS":return or(or({},e),{},{dashboardsSettings:t.payload});case"SET_DASHBOARDS_LOADING":return or(or({},e),{},{dashboardsLoading:t.payload});case"SET_DASHBOARDS_ERROR":return or(or({},e),{},{dashboardsError:t.payload});default:throw new Error}}var To,Mo=j({}),Bo=function(){return le(Mo).state},Io=function(){for(var e=arguments.length,t=new Array(e),n=0;nh,m=r.top-20<0,y=r.left+g.width+20>f,_=r.left-20<0;return v&&(r.top=t.top-g.height-u),m&&(r.top=t.height+t.top+u),y&&(r.left=t.right-g.width-l),_&&(r.left=t.left+l),d&&(r.width="".concat(t.width,"px")),r}),[n,i,p,t,d]);f&&Po(b,(function(){return v(!1)}),n);var x=Ji()({"vm-popper":!0,"vm-popper_open":p});return xr(y,{children:p&&yt.createPortal(xr("div",{className:x,ref:b,style:w,children:t}),document.body)})},Ro=function(e){var t=e.children,n=e.title,r=e.open,i=e.placement,o=void 0===i?"bottom-center":i,a=e.offset,u=void 0===a?{top:6,left:0}:a,l=At(ee(!1),2),c=l[0],s=l[1],f=At(ee({width:0,height:0}),2),d=f[0],h=f[1],p=ie(null),v=ie(null),m=function(){return s(!1)};ne((function(){return window.addEventListener("scroll",m),function(){window.removeEventListener("scroll",m)}}),[]),ne((function(){v.current&&c&&h({width:v.current.clientWidth,height:v.current.clientHeight})}),[c]);var g=ae((function(){var e,t=null===p||void 0===p||null===(e=p.current)||void 0===e?void 0:e.base;if(!t||!c)return{};var n=t.getBoundingClientRect(),r={top:0,left:0},i="bottom-right"===o||"top-right"===o,a="bottom-left"===o||"top-left"===o,l=null===o||void 0===o?void 0:o.includes("top"),s=(null===u||void 0===u?void 0:u.top)||0,f=(null===u||void 0===u?void 0:u.left)||0;r.left=n.left-(d.width-n.width)/2+f,r.top=n.height+n.top+s,i&&(r.left=n.right-d.width),a&&(r.left=n.left+f),l&&(r.top=n.top-d.height-s);var h=window,v=h.innerWidth,m=h.innerHeight,y=r.top+d.height+20>m,g=r.top-20<0,_=r.left+d.width+20>v,b=r.left-20<0;return y&&(r.top=n.top-d.height-s),g&&(r.top=n.height+n.top+s),_&&(r.left=n.right-d.width-f),b&&(r.left=n.left+f),r.top<0&&(r.top=20),r.left<0&&(r.left=20),r}),[p,o,c,d]),_=function(){"boolean"!==typeof r&&s(!0)},b=function(){s(!1)};return ne((function(){"boolean"===typeof r&&s(r)}),[r]),ne((function(){var e,t=null===p||void 0===p||null===(e=p.current)||void 0===e?void 0:e.base;if(t)return t.addEventListener("mouseenter",_),t.addEventListener("mouseleave",b),function(){t.removeEventListener("mouseenter",_),t.removeEventListener("mouseleave",b)}}),[p]),xr(y,{children:[xr(y,{ref:p,children:t}),c&&yt.createPortal(xr("div",{className:"vm-tooltip",ref:v,style:g,children:n}),document.body)]})},jo=[{seconds:0,title:"Off"},{seconds:1,title:"1s"},{seconds:2,title:"2s"},{seconds:5,title:"5s"},{seconds:10,title:"10s"},{seconds:30,title:"30s"},{seconds:60,title:"1m"},{seconds:300,title:"5m"},{seconds:900,title:"15m"},{seconds:1800,title:"30m"},{seconds:3600,title:"1h"},{seconds:7200,title:"2h"}],$o=function(){var e=si(),t=fr(),n=At(ee(!1),2),r=n[0],i=n[1],o=At(ee(jo[0]),2),a=o[0],u=o[1];ne((function(){var t,n=a.seconds;return r?t=setInterval((function(){e({type:"RUN_QUERY"})}),1e3*n):u(jo[0]),function(){t&&clearInterval(t)}}),[a,r]);var l=At(ee(!1),2),c=l[0],s=l[1],f=ie(null),d=function(e){return function(){!function(e){(r&&!e.seconds||!r&&e.seconds)&&i((function(e){return!e})),u(e),s(!1)}(e)}};return xr(y,{children:[xr("div",{className:"vm-execution-controls",children:xr("div",{className:Ji()({"vm-execution-controls-buttons":!0,"vm-header-button":!t}),children:[xr(Ro,{title:"Refresh dashboard",children:xr(Lo,{variant:"contained",color:"primary",onClick:function(){e({type:"RUN_QUERY"})},startIcon:xr(Ei,{})})}),xr(Ro,{title:"Auto-refresh control",children:xr("div",{ref:f,children:xr(Lo,{variant:"contained",color:"primary",fullWidth:!0,endIcon:xr("div",{className:Ji()({"vm-execution-controls-buttons__arrow":!0,"vm-execution-controls-buttons__arrow_open":c}),children:xr(Si,{})}),onClick:function(){s((function(e){return!e}))},children:a.title})})})]})}),xr(zo,{open:c,placement:"bottom-right",onClose:function(){s(!1)},buttonRef:f,children:xr("div",{className:"vm-execution-controls-list",children:jo.map((function(e){return xr("div",{className:Ji()({"vm-list-item":!0,"vm-list-item_active":e.seconds===a.seconds}),onClick:d(e),children:e.title},e.seconds)}))})})]})},Uo=function(e){var t=e.relativeTime,n=e.setDuration;return xr("div",{className:"vm-time-duration",children:Vr.map((function(e){var r,i=e.id,o=e.duration,a=e.until,u=e.title;return xr("div",{className:Ji()({"vm-list-item":!0,"vm-list-item_active":i===t}),onClick:(r={duration:o,until:a(),id:i},function(){n(r)}),children:u||o},i)}))})},Ho=function(e){var t=e.viewDate,n=e.displayYears,r=e.onChangeViewDate;return xr("div",{className:"vm-calendar-header",children:[xr("div",{className:"vm-calendar-header-left",onClick:e.toggleDisplayYears,children:[xr("span",{className:"vm-calendar-header-left__date",children:t.format("MMMM YYYY")}),xr("div",{className:"vm-calendar-header-left__select-year",children:xr(Ai,{})})]}),!n&&xr("div",{className:"vm-calendar-header-right",children:[xr("div",{className:"vm-calendar-header-right__prev",onClick:function(){r(t.subtract(1,"month"))},children:xr(Si,{})}),xr("div",{className:"vm-calendar-header-right__next",onClick:function(){r(t.add(1,"month"))},children:xr(Si,{})})]})]})},Yo=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],Vo=function(e){var t=e.viewDate,n=e.selectDate,r=e.onChangeSelectDate,i=_t()().tz().startOf("day"),o=ae((function(){var e=new Array(42).fill(null),n=t.startOf("month"),r=t.endOf("month").diff(n,"day")+1,i=new Array(r).fill(n).map((function(e,t){return e.add(t,"day")})),o=n.day();return e.splice.apply(e,[o,r].concat(Ft(i))),e}),[t]),a=function(e){return function(){e&&r(e)}};return xr("div",{className:"vm-calendar-body",children:[Yo.map((function(e){return xr("div",{className:"vm-calendar-body-cell vm-calendar-body-cell_weekday",children:e[0]},e)})),o.map((function(e,t){return xr("div",{className:Ji()({"vm-calendar-body-cell":!0,"vm-calendar-body-cell_day":!0,"vm-calendar-body-cell_day_empty":!e,"vm-calendar-body-cell_day_active":(e&&e.toISOString())===n.startOf("day").toISOString(),"vm-calendar-body-cell_day_today":(e&&e.toISOString())===i.toISOString()}),onClick:a(e),children:e&&e.format("D")},e?e.toISOString():t)}))]})},qo=function(e){var t=e.viewDate,n=e.onChangeViewDate,r=ae((function(){return t.format("YYYY")}),[t]),i=ae((function(){var e=_t()().subtract(103,"year");return new Array(206).fill(e).map((function(e,t){return e.add(t,"year")}))}),[t]);ne((function(){var e=document.getElementById("vm-calendar-year-".concat(r));e&&e.scrollIntoView({block:"center"})}),[]);return xr("div",{className:"vm-calendar-years",children:i.map((function(e){return xr("div",{className:Ji()({"vm-calendar-years__year":!0,"vm-calendar-years__year_selected":e.format("YYYY")===r}),id:"vm-calendar-year-".concat(e.format("YYYY")),onClick:(t=e,function(){n(t)}),children:e.format("YYYY")},e.format("YYYY"));var t}))})};!function(e){e[e.hour=0]="hour",e[e.minutes=1]="minutes",e[e.seconds=2]="seconds"}(To||(To={}));var Wo,Qo=function(e){var t=e.selectDate,n=e.onChangeTime,r=e.onClose,i=At(ee(To.hour),2),o=i[0],a=i[1],u=At(ee(t.format("HH")),2),l=u[0],c=u[1],s=At(ee(t.format("mm")),2),f=s[0],d=s[1],h=At(ee(t.format("ss")),2),p=h[0],v=h[1],m=ae((function(){return o===To.hour?new Array(24).fill("00").map((function(e,t){return{value:t,degrees:t/12*360,offset:0===t||t>12,title:t?"".concat(t):e}})):new Array(60).fill("00").map((function(e,t){return{value:t,degrees:t/60*360,offset:!1,title:t?"".concat(t):e}}))}),[o,l,f,p]),y=ae((function(){switch(o){case To.hour:return+l/12*360;case To.minutes:return+f/60*360;case To.seconds:return+p/60*360}}),[o,l,f,p]),g=ie(null),_=ie(null),b=ie(null),D=function(e){return function(t){!function(e,t){t.target.select(),a(e)}(e,t)}};return ne((function(){n("".concat(l,":").concat(f,":").concat(p))}),[l,f,p]),ne((function(){c(t.format("HH")),d(t.format("mm")),v(t.format("ss"))}),[t]),ne((function(){g.current&&g.current.focus()}),[]),xr("div",{className:"vm-calendar-time-picker",children:[xr("div",{className:"vm-calendar-time-picker-clock",children:[xr("div",{className:Ji()({"vm-calendar-time-picker-clock__arrow":!0,"vm-calendar-time-picker-clock__arrow_offset":o===To.hour&&("00"===l||+l>12)}),style:{transform:"rotate(".concat(y,"deg)")}}),m.map((function(e){return xr("div",{className:Ji()({"vm-calendar-time-picker-clock__time":!0,"vm-calendar-time-picker-clock__time_offset":e.offset,"vm-calendar-time-picker-clock__time_hide":m.length>24&&e.value%5}),style:{transform:"rotate(".concat(e.degrees,"deg)")},onClick:(t=e.value,function(){var e=String(t);switch(o){case To.hour:c(e),_.current&&_.current.focus();break;case To.minutes:d(e),b.current&&b.current.focus();break;case To.seconds:v(e),r()}}),children:xr("span",{style:{transform:"rotate(-".concat(e.degrees,"deg)")},children:e.title})},e.value);var t}))]}),xr("div",{className:"vm-calendar-time-picker-fields",children:[xr("input",{className:"vm-calendar-time-picker-fields__input",value:l,onChange:function(e){var t=e.target,n=t.value,r=+n>23?"23":n;t.value=r,c(r),n.length>1&&_.current&&_.current.focus()},onFocus:D(To.hour),ref:g,type:"number",min:0,max:24}),xr("span",{children:":"}),xr("input",{className:"vm-calendar-time-picker-fields__input",value:f,onChange:function(e){var t=e.target,n=t.value,r=+n>59?"59":n;t.value=r,d(r),n.length>1&&b.current&&b.current.focus()},onFocus:D(To.minutes),ref:_,type:"number",min:0,max:60}),xr("span",{children:":"}),xr("input",{className:"vm-calendar-time-picker-fields__input",value:p,onChange:function(e){var t=e.target,n=t.value,i=+n>59?"59":n;t.value=i,v(i),n.length>1&&b.current&&r()},onFocus:D(To.seconds),ref:b,type:"number",min:0,max:60})]})]})},Go=[{value:"date",icon:xr(Oi,{})},{value:"time",icon:xr(Ni,{})}],Jo=function(e){var t=e.date,n=e.timepicker,r=void 0!==n&&n,i=e.format,o=void 0===i?Fr:i,a=e.onChange,u=e.onClose,l=At(ee(!1),2),c=l[0],s=l[1],f=At(ee(_t().tz(t)),2),d=f[0],h=f[1],p=At(ee(_t().tz(t)),2),v=p[0],m=p[1],g=At(ee(Go[0].value),2),_=g[0],b=g[1],D=function(e){h(e),s(!1)};return ne((function(){v.format()!==_t().tz(t).format()&&a(v.format(o))}),[v]),xr("div",{className:"vm-calendar",children:["date"===_&&xr(Ho,{viewDate:d,onChangeViewDate:D,toggleDisplayYears:function(){s((function(e){return!e}))},displayYears:c}),"date"===_&&xr(y,{children:[!c&&xr(Vo,{viewDate:d,selectDate:v,onChangeSelectDate:function(e){m(e),r&&b("time")}}),c&&xr(qo,{viewDate:d,onChangeViewDate:D})]}),"time"===_&&xr(Qo,{selectDate:v,onChangeTime:function(e){var t=At(e.split(":"),3),n=t[0],r=t[1],i=t[2];m((function(e){return e.set("hour",+n).set("minute",+r).set("second",+i)}))},onClose:function(){u&&u()}}),r&&xr("div",{className:"vm-calendar__tabs",children:xr(eo,{activeItem:_,items:Go,onChange:function(e){b(e)},indicatorPlacement:"top"})})]})},Zo=Ee((function(e,t){var n=e.date,r=e.targetRef,i=e.format,o=void 0===i?Fr:i,a=e.timepicker,u=e.onChange,l=At(ee(!1),2),c=l[0],s=l[1],f=ae((function(){return n?_t().tz(n):_t()().tz()}),[n]),d=function(){s((function(e){return!e}))},h=function(){s(!1)},p=function(e){"Escape"!==e.key&&"Enter"!==e.key||h()};return ne((function(){var e;return null===(e=r.current)||void 0===e||e.addEventListener("click",d),function(){var e;null===(e=r.current)||void 0===e||e.removeEventListener("click",d)}}),[r]),ne((function(){return window.addEventListener("keyup",p),function(){window.removeEventListener("keyup",p)}}),[]),xr(y,{children:xr(zo,{open:c,buttonRef:r,placement:"bottom-right",onClose:h,children:xr("div",{ref:t,children:xr(Jo,{date:f,format:o,timepicker:a,onChange:function(e){a||h(),u(e)},onClose:h})})})})})),Ko=Zo,Xo=function(){var e=ie(null),t=Xi(document.body),n=ae((function(){return t.width>1120}),[t]),r=At(ee(),2),i=r[0],o=r[1],a=At(ee(),2),u=a[0],l=a[1],c=ae((function(){return _t().tz(u).format(Fr)}),[u]),s=ae((function(){return _t().tz(i).format(Fr)}),[i]),f=ci(),d=f.period,h=d.end,p=d.start,v=f.relativeTime,m=f.timezone,g=f.duration,_=si(),b=fr(),D=ae((function(){return{region:m,utc:Wr(m)}}),[m]);ne((function(){o(Ur(Yr(h)))}),[m,h]),ne((function(){l(Ur(Yr(p)))}),[m,p]);var w=function(e){var t=e.duration,n=e.until,r=e.id;_({type:"SET_RELATIVE_TIME",payload:{duration:t,until:n,id:r}}),O(!1)},x=ae((function(){return{start:_t().tz(Yr(p)).format(Fr),end:_t().tz(Yr(h)).format(Fr)}}),[p,h,m]),k=ae((function(){return v&&"none"!==v?v.replace(/_/g," "):"".concat(x.start," - ").concat(x.end)}),[v,x]),C=ie(null),E=ie(null),S=ie(null),A=ie(null),F=At(ee(!1),2),N=F[0],O=F[1],T=ie(null),M=function(){O(!1)};return ne((function(){var e=qr({relativeTimeId:v,defaultDuration:g,defaultEndInput:Yr(h)});w({id:e.relativeTimeId,duration:e.duration,until:e.endInput})}),[m]),Po(e,(function(e){var t,n,r=e.target,i=(null===C||void 0===C?void 0:C.current)&&C.current.contains(r),o=(null===E||void 0===E?void 0:E.current)&&E.current.contains(r),a=(null===S||void 0===S?void 0:S.current)&&(null===S||void 0===S||null===(t=S.current)||void 0===t?void 0:t.contains(r)),u=(null===A||void 0===A?void 0:A.current)&&(null===A||void 0===A||null===(n=A.current)||void 0===n?void 0:n.contains(r));i||o||a||u||M()})),xr(y,{children:[xr("div",{ref:T,children:xr(Ro,{title:"Time range controls",children:xr(Lo,{className:b?"":"vm-header-button",variant:"contained",color:"primary",startIcon:xr(Ni,{}),onClick:function(){O((function(e){return!e}))},children:n&&xr("span",{children:k})})})}),xr(zo,{open:N,buttonRef:T,placement:"bottom-right",onClose:M,clickOutside:!1,children:xr("div",{className:"vm-time-selector",ref:e,children:[xr("div",{className:"vm-time-selector-left",children:[xr("div",{className:"vm-time-selector-left-inputs",children:[xr("div",{className:"vm-time-selector-left-inputs__date",ref:C,children:[xr("label",{children:"From:"}),xr("span",{children:c}),xr(Oi,{}),xr(Ko,{ref:S,date:u||"",onChange:function(e){return l(e)},targetRef:C,timepicker:!0})]}),xr("div",{className:"vm-time-selector-left-inputs__date",ref:E,children:[xr("label",{children:"To:"}),xr("span",{children:s}),xr(Oi,{}),xr(Ko,{ref:A,date:i||"",onChange:function(e){return o(e)},targetRef:E,timepicker:!0})]})]}),xr("div",{className:"vm-time-selector-left-timezone",children:[xr("div",{className:"vm-time-selector-left-timezone__title",children:D.region}),xr("div",{className:"vm-time-selector-left-timezone__utc",children:D.utc})]}),xr(Lo,{variant:"text",startIcon:xr(Ti,{}),onClick:function(){return _({type:"RUN_QUERY_TO_NOW"})},children:"switch to now"}),xr("div",{className:"vm-time-selector-left__controls",children:[xr(Lo,{color:"error",variant:"outlined",onClick:function(){o(Ur(Yr(h))),l(Ur(Yr(p))),O(!1)},children:"Cancel"}),xr(Lo,{color:"primary",onClick:function(){return u&&i&&_({type:"SET_PERIOD",payload:{from:_t().tz(u).toDate(),to:_t().tz(i).toDate()}}),void O(!1)},children:"Apply"})]})]}),xr(Uo,{relativeTime:v||"",setDuration:w})]})})]})};!function(e){e.emptyServer="Please enter Server URL",e.validServer="Please provide a valid Server URL",e.validQuery="Please enter a valid Query and execute it",e.traceNotFound="Not found the tracing information",e.emptyTitle="Please enter title",e.positiveNumber="Please enter positive number",e.validStep="Please enter a valid step"}(Wo||(Wo={}));var ea=function(e){var t=e.label,n=e.value,r=e.type,i=void 0===r?"text":r,o=e.error,a=void 0===o?"":o,u=e.placeholder,l=e.endIcon,c=e.startIcon,s=e.disabled,f=void 0!==s&&s,d=e.autofocus,h=void 0!==d&&d,p=e.helperText,v=e.onChange,m=e.onEnter,y=e.onKeyDown,g=e.onFocus,_=e.onBlur,b=ie(null),D=ie(null),w=ae((function(){return"textarea"===i?D:b}),[i]),x=Ji()({"vm-text-field__input":!0,"vm-text-field__input_error":a,"vm-text-field__input_icon-start":c,"vm-text-field__input_disabled":f,"vm-text-field__input_textarea":"textarea"===i}),k=function(e){y&&y(e),"Enter"!==e.key||e.shiftKey||(e.preventDefault(),m&&m())},C=function(e){f||v&&v(e.target.value)};ne((function(){var e;h&&(null===w||void 0===w||null===(e=w.current)||void 0===e?void 0:e.focus)&&w.current.focus()}),[w,h]);var E=function(){g&&g()},S=function(){_&&_()};return xr("label",{className:Ji()({"vm-text-field":!0,"vm-text-field_textarea":"textarea"===i}),"data-replicated-value":n,children:[c&&xr("div",{className:"vm-text-field__icon-start",children:c}),l&&xr("div",{className:"vm-text-field__icon-end",children:l}),"textarea"===i?xr("textarea",{className:x,disabled:f,ref:D,value:n,rows:1,placeholder:u,onInput:C,onKeyDown:k,onFocus:E,onBlur:S}):xr("input",{className:x,disabled:f,ref:b,value:n,type:i,placeholder:u,onInput:C,onKeyDown:k,onFocus:E,onBlur:S}),t&&xr("span",{className:"vm-text-field__label",children:t}),xr("span",{className:"vm-text-field__error","data-show":!!a,children:a}),p&&!a&&xr("span",{className:"vm-text-field__helper-text",children:p})]})},ta=function(e){var t;try{t=new URL(e)}catch(_){return!1}return"http:"===t.protocol||"https:"===t.protocol},na=function(e){var t=e.serverUrl,n=e.onChange,r=e.onEnter,i=At(ee(""),2),o=i[0],a=i[1];return xr("div",{children:[xr("div",{className:"vm-server-configurator__title",children:"Server URL"}),xr(ea,{autofocus:!0,value:t,error:o,onChange:function(e){var t=e||"";n(t),a(""),t||a(Wo.emptyServer),ta(t)||a(Wo.validServer)},onEnter:r})]})},ra=function(e){var t=e.title,n=e.children,r=e.onClose,i=function(e){"Escape"===e.key&&r()};return ne((function(){return window.addEventListener("keyup",i),function(){window.removeEventListener("keyup",i)}}),[]),yt.createPortal(xr("div",{className:"vm-modal",onMouseDown:r,children:xr("div",{className:"vm-modal-content",children:[xr("div",{className:"vm-modal-content-header",children:[t&&xr("div",{className:"vm-modal-content-header__title",children:t}),xr("div",{className:"vm-modal-header__close",children:xr(Lo,{variant:"text",size:"small",onClick:r,children:xr(bi,{})})})]}),xr("div",{className:"vm-modal-content-body",onMouseDown:function(e){e.stopPropagation()},children:n})]})}),document.body)},ia=[{label:"Graph",type:"chart"},{label:"JSON",type:"code"},{label:"Table",type:"table"}],oa=function(e){var t=e.limits,n=e.onChange,r=e.onEnter,i=At(ee({table:"",chart:"",code:""}),2),o=i[0],a=i[1],u=function(e){return function(r){!function(e,r){var i=e||"";a((function(e){return or(or({},e),{},rr({},r,+i<0?Wo.positiveNumber:""))})),n(or(or({},t),{},rr({},r,i||1/0)))}(r,e)}};return xr("div",{className:"vm-limits-configurator",children:[xr("div",{className:"vm-server-configurator__title",children:["Series limits by tabs",xr(Ro,{title:"To disable limits set to 0",children:xr(Lo,{variant:"text",color:"primary",size:"small",startIcon:xr(wi,{})})}),xr("div",{className:"vm-limits-configurator-title__reset",children:xr(Lo,{variant:"text",color:"primary",size:"small",startIcon:xr(Di,{}),onClick:function(){n(mr)},children:"Reset"})})]}),xr("div",{className:"vm-limits-configurator__inputs",children:ia.map((function(e){return xr(ea,{label:e.label,value:t[e.type],error:o[e.type],onChange:u(e.type),onEnter:r,type:"number"},e.type)}))})]})},aa=function(e){var t=e.defaultExpanded,n=void 0!==t&&t,r=e.onChange,i=e.title,o=e.children,a=At(ee(n),2),u=a[0],l=a[1];return ne((function(){r&&r(u)}),[u]),xr(y,{children:[xr("header",{className:"vm-accordion-header ".concat(u&&"vm-accordion-header_open"),onClick:function(){l((function(e){return!e}))},children:[i,xr("div",{className:"vm-accordion-header__arrow ".concat(u&&"vm-accordion-header__arrow_open"),children:xr(Si,{})})]}),u&&xr("section",{className:"vm-accordion-section",children:o},"content")]})},ua=function(e){var t=e.timezoneState,n=e.onChange,r=Qr(),i=At(ee(!1),2),o=i[0],a=i[1],u=At(ee(""),2),l=u[0],c=u[1],f=ie(null),d=ae((function(){if(!l)return r;try{return Qr(l)}catch(s){return{}}}),[l,r]),h=ae((function(){return Object.keys(d)}),[d]),p=ae((function(){return{region:_t().tz.guess(),utc:Wr(_t().tz.guess())}}),[]),v=ae((function(){return{region:t,utc:Wr(t)}}),[t]),m=function(){a(!1)},y=function(e){return function(){!function(e){n(e.region),c(""),m()}(e)}};return xr("div",{className:"vm-timezones",children:[xr("div",{className:"vm-server-configurator__title",children:"Time zone"}),xr("div",{className:"vm-timezones-item vm-timezones-item_selected",onClick:function(){a((function(e){return!e}))},ref:f,children:[xr("div",{className:"vm-timezones-item__title",children:v.region}),xr("div",{className:"vm-timezones-item__utc",children:v.utc}),xr("div",{className:Ji()({"vm-timezones-item__icon":!0,"vm-timezones-item__icon_open":o}),children:xr(Ai,{})})]}),xr(zo,{open:o,buttonRef:f,placement:"bottom-left",onClose:m,children:xr("div",{className:"vm-timezones-list",children:[xr("div",{className:"vm-timezones-list-header",children:[xr("div",{className:"vm-timezones-list-header__search",children:xr(ea,{autofocus:!0,label:"Search",value:l,onChange:function(e){c(e)}})}),xr("div",{className:"vm-timezones-item vm-timezones-list-group-options__item",onClick:y(p),children:[xr("div",{className:"vm-timezones-item__title",children:["Browser Time (",p.region,")"]}),xr("div",{className:"vm-timezones-item__utc",children:p.utc})]})]}),h.map((function(e){return xr("div",{className:"vm-timezones-list-group",children:xr(aa,{defaultExpanded:!0,title:xr("div",{className:"vm-timezones-list-group__title",children:e}),children:xr("div",{className:"vm-timezones-list-group-options",children:d[e]&&d[e].map((function(e){return xr("div",{className:"vm-timezones-item vm-timezones-list-group-options__item",onClick:y(e),children:[xr("div",{className:"vm-timezones-item__title",children:e.region}),xr("div",{className:"vm-timezones-item__utc",children:e.utc})]},e.search)}))})})},e)}))]})})]})},la="Settings",ca=function(){var e=fr(),t=Cr().serverUrl,n=ci().timezone,r=co().seriesLimits,i=Er(),o=si(),a=so(),u=At(ee(t),2),l=u[0],c=u[1],s=At(ee(r),2),f=s[0],d=s[1],h=At(ee(n),2),p=h[0],v=h[1],m=At(ee(!1),2),g=m[0],_=m[1],b=function(){return _(!1)},D=function(){i({type:"SET_SERVER",payload:l}),o({type:"SET_TIMEZONE",payload:p}),a({type:"SET_SERIES_LIMITS",payload:f}),b()};return xr(y,{children:[xr(Ro,{title:la,children:xr(Lo,{className:Ji()({"vm-header-button":!e}),variant:"contained",color:"primary",startIcon:xr(_i,{}),onClick:function(){return _(!0)}})}),g&&xr(ra,{title:la,onClose:b,children:xr("div",{className:"vm-server-configurator",children:[!e&&xr("div",{className:"vm-server-configurator__input",children:xr(na,{serverUrl:l,onChange:c,onEnter:D})}),xr("div",{className:"vm-server-configurator__input",children:xr(oa,{limits:f,onChange:d,onEnter:D})}),xr("div",{className:"vm-server-configurator__input",children:xr(ua,{timezoneState:p,onChange:v})}),xr("div",{className:"vm-server-configurator__footer",children:[xr(Lo,{variant:"outlined",color:"error",onClick:b,children:"Cancel"}),xr(Lo,{variant:"contained",onClick:D,children:"apply"})]})]})})]})},sa={windows:"Windows",mac:"Mac OS",linux:"Linux"},fa=(Object.values(sa).find((function(e){return navigator.userAgent.indexOf(e)>=0}))||"unknown")===sa.mac?"Cmd":"Ctrl",da=[{title:"Query",list:[{keys:["Enter"],description:"Run"},{keys:["Shift","Enter"],description:"Multi-line queries"},{keys:[fa,"Arrow Up"],description:"Previous command from the Query history"},{keys:[fa,"Arrow Down"],description:"Next command from the Query history"},{keys:[fa,"Click by 'Eye'"],description:"Toggle multiple queries"}]},{title:"Graph",list:[{keys:[fa,"Scroll Up"],alt:["+"],description:"Zoom in"},{keys:[fa,"Scroll Down"],alt:["-"],description:"Zoom out"},{keys:[fa,"Click and Drag"],description:"Move the graph left/right"}]},{title:"Legend",list:[{keys:["Mouse Click"],description:"Select series"},{keys:[fa,"Mouse Click"],description:"Toggle multiple series"}]}],ha=function(){var e=At(ee(!1),2),t=e[0],n=e[1],r=fr();return xr(y,{children:[xr(Ro,{title:"Shortcut keys",placement:"bottom-center",children:xr(Lo,{className:r?"":"vm-header-button",variant:"contained",color:"primary",startIcon:xr(Mi,{}),onClick:function(){n(!0)}})}),t&&xr(ra,{title:"Shortcut keys",onClose:function(){n(!1)},children:xr("div",{className:"vm-shortcuts",children:da.map((function(e){return xr("div",{className:"vm-shortcuts-section",children:[xr("h3",{className:"vm-shortcuts-section__title",children:e.title}),xr("div",{className:"vm-shortcuts-section-list",children:e.list.map((function(e){return xr("div",{className:"vm-shortcuts-section-list-item",children:[xr("div",{className:"vm-shortcuts-section-list-item__key",children:[e.keys.map((function(t,n){return xr(y,{children:[xr("code",{children:t},t),n!==e.keys.length-1?"+":""]})})),e.alt&&e.alt.map((function(t,n){return xr(y,{children:["or",xr("code",{children:t},t),n!==e.alt.length-1?"+":""]})}))]}),xr("p",{className:"vm-shortcuts-section-list-item__description",children:e.description})]},e.keys.join("+"))}))})]},e.title)}))})})]})},pa=function(){var e=fr(),t=ie(null),n=bo().date,r=Do(),i=ae((function(){return _t().tz(n).format(Ar)}),[n]);return xr("div",{children:[xr("div",{ref:t,children:xr(Ro,{title:"Date control",children:xr(Lo,{className:e?"":"vm-header-button",variant:"contained",color:"primary",startIcon:xr(Oi,{}),children:i})})}),xr(Ko,{date:n||"",format:Ar,onChange:function(e){r({type:"SET_DATE",payload:e})},targetRef:t})]})},va=function(){var e=Zi("color-primary"),t=fr(),n=Bo().dashboardsSettings,r=sr().headerStyles,i=(r=void 0===r?{}:r).background,o=void 0===i?t?"#FFF":e:i,a=r.color,u=void 0===a?t?e:"#FFF":a,l=zn(),c=Pn(),s=c.search,f=c.pathname,d=ae((function(){return[{label:lr[cr.home].title,value:cr.home},{label:lr[cr.metrics].title,value:cr.metrics},{label:lr[cr.cardinality].title,value:cr.cardinality},{label:lr[cr.topQueries].title,value:cr.topQueries},{label:lr[cr.trace].title,value:cr.trace},{label:lr[cr.dashboards].title,value:cr.dashboards,hide:t||!n.length}]}),[t,n]),h=At(ee(f),2),p=h[0],v=h[1],m=ae((function(){return(lr[f]||{}).header||{}}),[f]),y=function(e){l({pathname:e,search:s})};return ne((function(){v(f)}),[f]),xr("header",{className:Ji()({"vm-header":!0,"vm-header_app":t}),style:{background:o,color:u},children:[!t&&xr("div",{className:"vm-header__logo",onClick:function(){y(cr.home),gr({}),window.location.reload()},style:{color:u},children:xr(yi,{})}),xr("div",{className:"vm-header-nav",children:xr(eo,{activeItem:p,items:d.filter((function(e){return!e.hide})),color:u,onChange:function(e){v(e),l(e)}})}),xr("div",{className:"vm-header__settings",children:[(null===m||void 0===m?void 0:m.timeSelector)&&xr(Xo,{}),(null===m||void 0===m?void 0:m.cardinalityDatePicker)&&xr(pa,{}),(null===m||void 0===m?void 0:m.executionControls)&&xr($o,{}),xr(ca,{}),xr(ha,{})]})]})},ma=function(){var e="2019-".concat(_t()().format("YYYY"));return xr("footer",{className:"vm-footer",children:[xr("a",{className:"vm__link vm-footer__website",target:"_blank",href:"https://victoriametrics.com/",rel:"noreferrer",children:[xr(gi,{}),"victoriametrics.com"]}),xr("a",{className:"vm__link",target:"_blank",href:"https://github.com/VictoriaMetrics/VictoriaMetrics/issues/new/choose",rel:"noreferrer",children:"create an issue"}),xr("div",{className:"vm-footer__copyright",children:["\xa9 ",e," VictoriaMetrics"]})]})};function ya(){ya=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(A){l=function(e,t,n){return e[t]=n}}function c(e,t,n,i){var o=t&&t.prototype instanceof d?t:d,a=Object.create(o.prototype),u=new C(i||[]);return r(a,"_invoke",{value:D(e,n,u)}),a}function s(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(A){return{type:"throw",arg:A}}}e.wrap=c;var f={};function d(){}function h(){}function p(){}var v={};l(v,o,(function(){return this}));var m=Object.getPrototypeOf,y=m&&m(m(E([])));y&&y!==t&&n.call(y,o)&&(v=y);var g=p.prototype=d.prototype=Object.create(v);function _(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function i(r,o,a,u){var l=s(e[r],e,o);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==Ot(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){i("next",e,a,u)}),(function(e){i("throw",e,a,u)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return i("throw",e,a,u)}))}u(l.arg)}var o;r(this,"_invoke",{value:function(e,n){function r(){return new t((function(t,r){i(e,n,t,r)}))}return o=o?o.then(r,r):r()}})}function D(e,t,n){var r="suspendedStart";return function(i,o){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===i)throw o;return S()}for(n.method=i,n.arg=o;;){var a=n.delegate;if(a){var u=w(a,n);if(u){if(u===f)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=s(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===f)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}function w(e,t){var n=t.method,r=e.iterator[n];if(void 0===r)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),f;var i=s(r,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,f;var o=i.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,f):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,f)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function k(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function E(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r=0;--i){var o=this.tryEntries[i],a=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var u=n.call(o,"catchLoc"),l=n.call(o,"finallyLoc");if(u&&l){if(this.prev=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),k(n),f}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;k(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:E(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),f}},e}function ga(e,t,n,r,i,o,a){try{var u=e[o](a),l=u.value}catch(c){return void n(c)}u.done?t(l):Promise.resolve(l).then(r,i)}function _a(e){return function(){var t=this,n=arguments;return new Promise((function(r,i){var o=e.apply(t,n);function a(e){ga(o,r,i,a,u,"next",e)}function u(e){ga(o,r,i,a,u,"throw",e)}a(void 0)}))}}var ba=function(){var e=_a(ya().mark((function e(t){var n,r;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("./dashboards/".concat(t));case 2:return n=e.sent,e.next=5,n.json();case 5:return r=e.sent,e.abrupt("return",r);case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),Da=function(){var e=fr(),t=Cr().serverUrl,n=le(Mo).dispatch,r=At(ee(!1),2),i=r[0],o=r[1],a=At(ee(""),2),u=a[0],l=a[1],c=At(ee([]),2),s=c[0],f=c[1],d=function(){var e=_a(ya().mark((function e(){var t;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(null!==(t=window.__VMUI_PREDEFINED_DASHBOARDS__)&&void 0!==t&&t.length){e.next=3;break}return e.abrupt("return",[]);case 3:return e.next=5,Promise.all(t.map(function(){var e=_a(ya().mark((function e(t){return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",ba(t));case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()));case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),h=function(){var e=_a(ya().mark((function e(){var n,r,i;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t){e.next=2;break}return e.abrupt("return");case 2:return l(""),o(!0),e.prev=4,e.next=7,fetch("".concat(t,"/vmui/custom-dashboards"));case 7:return n=e.sent,e.next=10,n.json();case 10:r=e.sent,n.ok?((i=r.dashboardsSettings)&&i.length>0&&f((function(e){return[].concat(Ft(e),Ft(i))})),o(!1)):(l(r.error),o(!1)),e.next=18;break;case 14:e.prev=14,e.t0=e.catch(4),o(!1),e.t0 instanceof Error&&l("".concat(e.t0.name,": ").concat(e.t0.message));case 18:case"end":return e.stop()}}),e,null,[[4,14]])})));return function(){return e.apply(this,arguments)}}();return ne((function(){e||(f([]),d().then((function(e){return e.length&&f((function(t){return[].concat(Ft(e),Ft(t))}))})),h())}),[t]),ne((function(){n({type:"SET_DASHBOARDS_SETTINGS",payload:s})}),[s]),ne((function(){n({type:"SET_DASHBOARDS_LOADING",payload:i})}),[i]),ne((function(){n({type:"SET_DASHBOARDS_ERROR",payload:u})}),[u]),{dashboardsSettings:s,isLoading:i,error:u}},wa=function(){var e=fr();Da();var t=Pn().pathname;return ne((function(){var e,n="VM UI",r=null===(e=lr[t])||void 0===e?void 0:e.title;document.title=r?"".concat(r," - ").concat(n):n}),[t]),xr("section",{className:"vm-container",children:[xr(va,{}),xr("div",{className:Ji()({"vm-container-body":!0,"vm-container-body_app":e}),children:xr(Qn,{})}),!e&&xr(ma,{})]})};function xa(e,t){var n="undefined"!==typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=St(e))||t&&e&&"number"===typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a=!0,u=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){u=!0,o=e},f:function(){try{a||null==n.return||n.return()}finally{if(u)throw o}}}}var ka,Ca,Ea="u-off",Sa="u-label",Aa="width",Fa="height",Na="top",Oa="bottom",Ta="left",Ma="right",Ba="#000",Ia=Ba+"0",La="mousemove",Pa="mousedown",za="mouseup",Ra="mouseenter",ja="mouseleave",$a="dblclick",Ua="change",Ha="dppxchange",Ya="undefined"!=typeof window,Va=Ya?document:null,qa=Ya?window:null,Wa=Ya?navigator:null;function Qa(e,t){if(null!=t){var n=e.classList;!n.contains(t)&&n.add(t)}}function Ga(e,t){var n=e.classList;n.contains(t)&&n.remove(t)}function Ja(e,t,n){e.style[t]=n+"px"}function Za(e,t,n,r){var i=Va.createElement(e);return null!=t&&Qa(i,t),null!=n&&n.insertBefore(i,r),i}function Ka(e,t){return Za("div",e,t)}var Xa=new WeakMap;function eu(e,t,n,r,i){var o="translate("+t+"px,"+n+"px)";o!=Xa.get(e)&&(e.style.transform=o,Xa.set(e,o),t<0||n<0||t>r||n>i?Qa(e,Ea):Ga(e,Ea))}var tu=new WeakMap;function nu(e,t,n){var r=t+n;r!=tu.get(e)&&(tu.set(e,r),e.style.background=t,e.style.borderColor=n)}var ru=new WeakMap;function iu(e,t,n,r){var i=t+""+n;i!=ru.get(e)&&(ru.set(e,i),e.style.height=n+"px",e.style.width=t+"px",e.style.marginLeft=r?-t/2+"px":0,e.style.marginTop=r?-n/2+"px":0)}var ou={passive:!0},au=or(or({},ou),{},{capture:!0});function uu(e,t,n,r){t.addEventListener(e,n,r?au:ou)}function lu(e,t,n,r){t.removeEventListener(e,n,r?au:ou)}function cu(e,t,n,r){var i;n=n||0;for(var o=(r=r||t.length-1)<=2147483647;r-n>1;)t[i=o?n+r>>1:Eu((n+r)/2)]=t&&i<=n;i+=r)if(null!=e[i])return i;return-1}function fu(e,t,n,r){var i=Lu,o=-Lu;if(1==r)i=e[t],o=e[n];else if(-1==r)i=e[n],o=e[t];else for(var a=t;a<=n;a++)null!=e[a]&&(i=Fu(i,e[a]),o=Nu(o,e[a]));return[i,o]}function du(e,t,n){for(var r=Lu,i=-Lu,o=t;o<=n;o++)e[o]>0&&(r=Fu(r,e[o]),i=Nu(i,e[o]));return[r==Lu?1:r,i==-Lu?10:i]}function hu(e,t,n,r){var i=Tu(e),o=Tu(t),a=10==n?Mu:Bu;e==t&&(-1==i?(e*=n,t/=n):(e/=n,t*=n));var u=1==o?Au:Eu,l=(1==i?Eu:Au)(a(Cu(e))),c=u(a(Cu(t))),s=Ou(n,l),f=Ou(n,c);return l<0&&(s=Qu(s,-l)),c<0&&(f=Qu(f,-c)),r?(e=s*i,t=f*o):(e=Wu(e,s),t=qu(t,f)),[e,t]}function pu(e,t,n,r){var i=hu(e,t,n,r);return 0==e&&(i[0]=0),0==t&&(i[1]=0),i}Ya&&function e(){var t=devicePixelRatio;ka!=t&&(ka=t,Ca&&lu(Ua,Ca,e),Ca=matchMedia("(min-resolution: ".concat(ka-.001,"dppx) and (max-resolution: ").concat(ka+.001,"dppx)")),uu(Ua,Ca,e),qa.dispatchEvent(new CustomEvent(Ha)))}();var vu={mode:3,pad:.1},mu={pad:0,soft:null,mode:0},yu={min:mu,max:mu};function gu(e,t,n,r){return il(n)?bu(e,t,n):(mu.pad=n,mu.soft=r?0:null,mu.mode=r?3:0,bu(e,t,yu))}function _u(e,t){return null==e?t:e}function bu(e,t,n){var r=n.min,i=n.max,o=_u(r.pad,0),a=_u(i.pad,0),u=_u(r.hard,-Lu),l=_u(i.hard,Lu),c=_u(r.soft,Lu),s=_u(i.soft,-Lu),f=_u(r.mode,0),d=_u(i.mode,0),h=t-e,p=Mu(h),v=Nu(Cu(e),Cu(t)),m=Mu(v),y=Cu(m-p);(h<1e-9||y>10)&&(h=0,0!=e&&0!=t||(h=1e-9,2==f&&c!=Lu&&(o=0),2==d&&s!=-Lu&&(a=0)));var g=h||v||1e3,_=Mu(g),b=Ou(10,Eu(_)),D=Qu(Wu(e-g*(0==h?0==e?.1:1:o),b/10),9),w=e>=c&&(1==f||3==f&&D<=c||2==f&&D>=c)?c:Lu,x=Nu(u,D=w?w:Fu(w,D)),k=Qu(qu(t+g*(0==h?0==t?.1:1:a),b/10),9),C=t<=s&&(1==d||3==d&&k>=s||2==d&&k<=s)?s:-Lu,E=Fu(l,k>C&&t<=C?C:Nu(C,k));return x==E&&0==x&&(E=100),[x,E]}var Du=new Intl.NumberFormat(Ya?Wa.language:"en-US"),wu=function(e){return Du.format(e)},xu=Math,ku=xu.PI,Cu=xu.abs,Eu=xu.floor,Su=xu.round,Au=xu.ceil,Fu=xu.min,Nu=xu.max,Ou=xu.pow,Tu=xu.sign,Mu=xu.log10,Bu=xu.log2,Iu=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return xu.asinh(e/t)},Lu=1/0;function Pu(e){return 1+(0|Mu((e^e>>31)-(e>>31)))}function zu(e,t){return Su(e/t)*t}function Ru(e,t,n){return Fu(Nu(e,t),n)}function ju(e){return"function"==typeof e?e:function(){return e}}var $u=function(e){return e},Uu=function(e,t){return t},Hu=function(e){return null},Yu=function(e){return!0},Vu=function(e,t){return e==t};function qu(e,t){return Au(e/t)*t}function Wu(e,t){return Eu(e/t)*t}function Qu(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(nl(e))return e;var n=Math.pow(10,t),r=e*n*(1+Number.EPSILON);return Su(r)/n}var Gu=new Map;function Ju(e){return((""+e).split(".")[1]||"").length}function Zu(e,t,n,r){for(var i=[],o=r.map(Ju),a=t;a=0&&a>=0?0:u)+(a>=o[c]?0:o[c]),d=Qu(s,f);i.push(d),Gu.set(d,f)}return i}var Ku={},Xu=[],el=[null,null],tl=Array.isArray,nl=Number.isInteger;function rl(e){return"string"==typeof e}function il(e){var t=!1;if(null!=e){var n=e.constructor;t=null==n||n==Object}return t}function ol(e){return null!=e&&"object"==typeof e}var al=Object.getPrototypeOf(Uint8Array);function ul(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:il;if(tl(e)){var r=e.find((function(e){return null!=e}));if(tl(r)||n(r)){t=Array(e.length);for(var i=0;io){for(r=a-1;r>=0&&null==e[r];)e[r--]=null;for(r=a+1;r12?t-12:t},AA:function(e){return e.getHours()>=12?"PM":"AM"},aa:function(e){return e.getHours()>=12?"pm":"am"},a:function(e){return e.getHours()>=12?"p":"a"},mm:function(e){return yl(e.getMinutes())},m:function(e){return e.getMinutes()},ss:function(e){return yl(e.getSeconds())},s:function(e){return e.getSeconds()},fff:function(e){return((t=e.getMilliseconds())<10?"00":t<100?"0":"")+t;var t}};function _l(e,t){t=t||ml;for(var n,r=[],i=/\{([a-z]+)\}|[^{]+/gi;n=i.exec(e);)r.push("{"==n[0][0]?gl[n[1]]:n[0]);return function(e){for(var n="",i=0;i=a,v=f>=o&&f=i?i:f,N=_+(Eu(c)-Eu(y))+qu(y-_,F);h.push(N);for(var O=t(N),T=O.getHours()+O.getMinutes()/n+O.getSeconds()/r,M=f/r,B=d/u.axes[l]._space;!((N=Qu(N+f,1==e?0:3))>s);)if(M>1){var I=Eu(Qu(T+M,6))%24,L=t(N).getHours()-I;L>1&&(L=-1),T=(T+M)%24,Qu(((N-=L*r)-h[h.length-1])/f,3)*B>=.7&&h.push(N)}else h.push(N)}return h}}]}var zl=At(Pl(1),3),Rl=zl[0],jl=zl[1],$l=zl[2],Ul=At(Pl(.001),3),Hl=Ul[0],Yl=Ul[1],Vl=Ul[2];function ql(e,t){return e.map((function(e){return e.map((function(n,r){return 0==r||8==r||null==n?n:t(1==r||0==e[8]?n:e[1]+n)}))}))}function Wl(e,t){return function(n,r,i,o,a){var u,l,c,s,f,d,h=t.find((function(e){return a>=e[0]}))||t[t.length-1];return r.map((function(t){var n=e(t),r=n.getFullYear(),i=n.getMonth(),o=n.getDate(),a=n.getHours(),p=n.getMinutes(),v=n.getSeconds(),m=r!=u&&h[2]||i!=l&&h[3]||o!=c&&h[4]||a!=s&&h[5]||p!=f&&h[6]||v!=d&&h[7]||h[1];return u=r,l=i,c=o,s=a,f=p,d=v,m(n)}))}}function Ql(e,t,n){return new Date(e,t,n)}function Gl(e,t){return t(e)}Zu(2,-53,53,[1]);function Jl(e,t){return function(n,r){return t(e(r))}}var Zl={show:!0,live:!0,isolate:!1,mount:function(){},markers:{show:!0,width:2,stroke:function(e,t){var n=e.series[t];return n.width?n.stroke(e,t):n.points.width?n.points.stroke(e,t):null},fill:function(e,t){return e.series[t].fill(e,t)},dash:"solid"},idx:null,idxs:null,values:[]};var Kl=[0,0];function Xl(e,t,n){return function(e){0==e.button&&n(e)}}function ec(e,t,n){return n}var tc={show:!0,x:!0,y:!0,lock:!1,move:function(e,t,n){return Kl[0]=t,Kl[1]=n,Kl},points:{show:function(e,t){var n=e.cursor.points,r=Ka(),i=n.size(e,t);Ja(r,Aa,i),Ja(r,Fa,i);var o=i/-2;Ja(r,"marginLeft",o),Ja(r,"marginTop",o);var a=n.width(e,t,i);return a&&Ja(r,"borderWidth",a),r},size:function(e,t){return Dc(e.series[t].points.width,1)},width:0,stroke:function(e,t){var n=e.series[t].points;return n._stroke||n._fill},fill:function(e,t){var n=e.series[t].points;return n._fill||n._stroke}},bind:{mousedown:Xl,mouseup:Xl,click:Xl,dblclick:Xl,mousemove:ec,mouseleave:ec,mouseenter:ec},drag:{setScale:!0,x:!0,y:!1,dist:0,uni:null,_x:!1,_y:!1},focus:{prox:-1},left:-10,top:-10,idx:null,dataIdx:function(e,t,n){return n},idxs:null},nc={show:!0,stroke:"rgba(0,0,0,0.07)",width:2},rc=ll({},nc,{filter:Uu}),ic=ll({},rc,{size:10}),oc=ll({},nc,{show:!1}),ac='12px system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',uc="bold "+ac,lc={show:!0,scale:"x",stroke:Ba,space:50,gap:5,size:50,labelGap:0,labelSize:30,labelFont:uc,side:2,grid:rc,ticks:ic,border:oc,font:ac,rotate:0},cc={show:!0,scale:"x",auto:!1,sorted:1,min:Lu,max:-Lu,idxs:[]};function sc(e,t,n,r,i){return t.map((function(e){return null==e?"":wu(e)}))}function fc(e,t,n,r,i,o,a){for(var u=[],l=Gu.get(i)||0,c=n=a?n:Qu(qu(n,i),l);c<=r;c=Qu(c+i,l))u.push(Object.is(c,-0)?0:c);return u}function dc(e,t,n,r,i,o,a){var u=[],l=e.scales[e.axes[t].scale].log,c=Eu((10==l?Mu:Bu)(n));i=Ou(l,c),c<0&&(i=Qu(i,-c));var s=n;do{u.push(s),(s=Qu(s+i,Gu.get(i)))>=i*l&&(i=s)}while(s<=r);return u}function hc(e,t,n,r,i,o,a){var u=e.scales[e.axes[t].scale].asinh,l=r>u?dc(e,t,Nu(u,n),r,i):[u],c=r>=0&&n<=0?[0]:[];return(n<-u?dc(e,t,Nu(u,-r),-n,i):[u]).reverse().map((function(e){return-e})).concat(c,l)}var pc=/./,vc=/[12357]/,mc=/[125]/,yc=/1/;function gc(e,t,n,r,i){var o=e.axes[n],a=o.scale,u=e.scales[a];if(3==u.distr&&2==u.log)return t;var l=e.valToPos,c=o._space,s=l(10,a),f=l(9,a)-s>=c?pc:l(7,a)-s>=c?vc:l(5,a)-s>=c?mc:yc;return t.map((function(e){return 4==u.distr&&0==e||f.test(e)?e:null}))}function _c(e,t){return null==t?"":wu(t)}var bc={show:!0,scale:"y",stroke:Ba,space:30,gap:5,size:50,labelGap:0,labelSize:30,labelFont:uc,side:3,grid:rc,ticks:ic,border:oc,font:ac,rotate:0};function Dc(e,t){return Qu((3+2*(e||1))*t,3)}var wc={scale:null,auto:!0,sorted:0,min:Lu,max:-Lu},xc=function(e,t,n,r,i){return i},kc={show:!0,auto:!0,sorted:0,gaps:xc,alpha:1,facets:[ll({},wc,{scale:"x"}),ll({},wc,{scale:"y"})]},Cc={scale:"y",auto:!0,sorted:0,show:!0,spanGaps:!1,gaps:xc,alpha:1,points:{show:function(e,t){var n=e.series[0],r=n.scale,i=n.idxs,o=e._data[0],a=e.valToPos(o[i[0]],r,!0),u=e.valToPos(o[i[1]],r,!0),l=Cu(u-a)/(e.series[t].points.space*ka);return i[1]-i[0]<=l},filter:null},values:null,min:Lu,max:-Lu,idxs:[],path:null,clip:null};function Ec(e,t,n,r,i){return n/10}var Sc={time:!0,auto:!0,distr:1,log:10,asinh:1,min:null,max:null,dir:1,ori:0},Ac=ll({},Sc,{time:!1,ori:1}),Fc={};function Nc(e,t){var n=Fc[e];return n||(n={key:e,plots:[],sub:function(e){n.plots.push(e)},unsub:function(e){n.plots=n.plots.filter((function(t){return t!=e}))},pub:function(e,t,r,i,o,a,u){for(var l=0;l0){a=new Path2D;for(var u=0==t?Hc:Yc,l=n,c=0;cs[0]){var f=s[0]-l;f>0&&u(a,l,r,f,r+o),l=s[1]}}var d=n+i-l;d>0&&u(a,l,r,d,r+o)}return a}function Lc(e,t,n,r,i,o,a){for(var u=[],l=e.length,c=1==i?n:r;c>=n&&c<=r;c+=i){if(null===t[c]){var s=c,f=c;if(1==i)for(;++c<=r&&null===t[c];)f=c;else for(;--c>=n&&null===t[c];)f=c;var d=o(e[s]),h=f==s?d:o(e[f]),p=s-i;d=a<=0&&p>=0&&p=0&&v>=0&&v=d&&u.push([d,h])}}return u}function Pc(e){return 0==e?$u:1==e?Su:function(t){return zu(t,e)}}function zc(e){var t=0==e?Rc:jc,n=0==e?function(e,t,n,r,i,o){e.arcTo(t,n,r,i,o)}:function(e,t,n,r,i,o){e.arcTo(n,t,i,r,o)},r=0==e?function(e,t,n,r,i){e.rect(t,n,r,i)}:function(e,t,n,r,i){e.rect(n,t,i,r)};return function(e,i,o,a,u){var l=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;0==l?r(e,i,o,a,u):(l=Fu(l,a/2,u/2),t(e,i+l,o),n(e,i+a,o,i+a,o+u,l),n(e,i+a,o+u,i,o+u,l),n(e,i,o+u,i,o,l),n(e,i,o,i+a,o,l),e.closePath())}}var Rc=function(e,t,n){e.moveTo(t,n)},jc=function(e,t,n){e.moveTo(n,t)},$c=function(e,t,n){e.lineTo(t,n)},Uc=function(e,t,n){e.lineTo(n,t)},Hc=zc(0),Yc=zc(1),Vc=function(e,t,n,r,i,o){e.arc(t,n,r,i,o)},qc=function(e,t,n,r,i,o){e.arc(n,t,r,i,o)},Wc=function(e,t,n,r,i,o,a){e.bezierCurveTo(t,n,r,i,o,a)},Qc=function(e,t,n,r,i,o,a){e.bezierCurveTo(n,t,i,r,a,o)};function Gc(e){return function(e,t,n,r,i){return Oc(e,t,(function(t,o,a,u,l,c,s,f,d,h,p){var v,m,y=t.pxRound,g=t.points;0==u.ori?(v=Rc,m=Vc):(v=jc,m=qc);var _=Qu(g.width*ka,3),b=(g.size-g.width)/2*ka,D=Qu(2*b,3),w=new Path2D,x=new Path2D,k=e.bbox,C=k.left,E=k.top,S=k.width,A=k.height;Hc(x,C-D,E-D,S+2*D,A+2*D);var F=function(e){if(null!=a[e]){var t=y(c(o[e],u,h,f)),n=y(s(a[e],l,p,d));v(w,t+b,n),m(w,t,n,b,0,2*ku)}};if(i)i.forEach(F);else for(var N=n;N<=r;N++)F(N);return{stroke:_>0?w:null,fill:w,clip:x,flags:3}}))}}function Jc(e){return function(t,n,r,i,o,a){r!=i&&(o!=r&&a!=r&&e(t,n,r),o!=i&&a!=i&&e(t,n,i),e(t,n,a))}}var Zc=Jc($c),Kc=Jc(Uc);function Xc(e){var t=_u(null===e||void 0===e?void 0:e.alignGaps,0);return function(e,n,r,i){return Oc(e,n,(function(o,a,u,l,c,s,f,d,h,p,v){var m,y,g=o.pxRound,_=function(e){return g(s(e,l,p,d))},b=function(e){return g(f(e,c,v,h))};0==l.ori?(m=$c,y=Zc):(m=Uc,y=Kc);for(var D,w,x,k=l.dir*(0==l.ori?1:-1),C={stroke:new Path2D,fill:null,clip:null,band:null,gaps:null,flags:1},E=C.stroke,S=Lu,A=-Lu,F=_(a[1==k?r:i]),N=su(u,r,i,1*k),O=su(u,r,i,-1*k),T=_(a[N]),M=_(a[O]),B=1==k?r:i;B>=r&&B<=i;B+=k){var I=_(a[B]);I==F?null!=u[B]&&(w=b(u[B]),S==Lu&&(m(E,I,w),D=w),S=Fu(w,S),A=Nu(w,A)):(S!=Lu&&(y(E,F,S,A,D,w),x=F),null!=u[B]?(m(E,I,w=b(u[B])),S=A=D=w):(S=Lu,A=-Lu),F=I)}S!=Lu&&S!=A&&x!=F&&y(E,F,S,A,D,w);var L=At(Tc(e,n),2),P=L[0],z=L[1];if(null!=o.fill||0!=P){var R=C.fill=new Path2D(E),j=b(o.fillTo(e,n,o.min,o.max,P));m(R,M,j),m(R,T,j)}if(!o.spanGaps){var $,U=[];($=U).push.apply($,Ft(Lc(a,u,r,i,k,_,t))),C.gaps=U=o.gaps(e,n,r,i,U),C.clip=Ic(U,l.ori,d,h,p,v)}return 0!=z&&(C.band=2==z?[Bc(e,n,r,i,E,-1),Bc(e,n,r,i,E,1)]:Bc(e,n,r,i,E,z)),C}))}}function es(e,t,n,r,i,o){var a=e.length;if(a<2)return null;var u=new Path2D;if(n(u,e[0],t[0]),2==a)r(u,e[1],t[1]);else{for(var l=Array(a),c=Array(a-1),s=Array(a-1),f=Array(a-1),d=0;d0!==c[h]>0?l[h]=0:(l[h]=3*(f[h-1]+f[h])/((2*f[h]+f[h-1])/c[h-1]+(f[h]+2*f[h-1])/c[h]),isFinite(l[h])||(l[h]=0));l[a-1]=c[a-2];for(var p=0;p=i&&o+(l<5?Gu.get(l):0)<=17)return[l,c]}while(++u0?e:t.clamp(r,e,t.min,t.max,t.key)):4==t.distr?Iu(e,t.asinh):e)-t._min)/(t._max-t._min)}function a(e,t,n,r){var i=o(e,t);return r+n*(-1==t.dir?1-i:i)}function u(e,t,n,r){var i=o(e,t);return r+n*(-1==t.dir?i:1-i)}function l(e,t,n,r){return 0==t.ori?a(e,t,n,r):u(e,t,n,r)}r.valToPosH=a,r.valToPosV=u;var c=!1;r.status=0;var s=r.root=Ka("uplot");(null!=e.id&&(s.id=e.id),Qa(s,e.class),e.title)&&(Ka("u-title",s).textContent=e.title);var f=Za("canvas"),d=r.ctx=f.getContext("2d"),h=Ka("u-wrap",s),p=r.under=Ka("u-under",h);h.appendChild(f);var v=r.over=Ka("u-over",h),m=+_u((e=ul(e)).pxAlign,1),y=Pc(m);(e.plugins||[]).forEach((function(t){t.opts&&(e=t.opts(r,e)||e)}));var g=e.ms||.001,_=r.series=1==i?os(e.series||[],cc,Cc,!1):function(e,t){return e.map((function(e,n){return 0==n?null:ll({},t,e)}))}(e.series||[null],kc),b=r.axes=os(e.axes||[],lc,bc,!0),D=r.scales={},w=r.bands=e.bands||[];w.forEach((function(e){e.fill=ju(e.fill||null),e.dir=_u(e.dir,-1)}));var x=2==i?_[1].facets[0].scale:_[0].scale,k={axes:function(){for(var e=function(e){var t=b[e];if(!t.show||!t._show)return"continue";var n=t.side,i=n%2,o=void 0,a=void 0,u=t.stroke(r,e),c=0==n||3==n?-1:1;if(t.label){var s=t.labelGap*c,f=Su((t._lpos+s)*ka);Ke(t.labelFont[0],u,"center",2==n?Na:Oa),d.save(),1==i?(o=a=0,d.translate(f,Su(de+pe/2)),d.rotate((3==n?-ku:ku)/2)):(o=Su(fe+he/2),a=f),d.fillText(t.label,o,a),d.restore()}var h=At(t._found,2),p=h[0],v=h[1];if(0==v)return"continue";var m=D[t.scale],g=0==i?he:pe,_=0==i?fe:de,w=Su(t.gap*ka),x=t._splits,k=2==m.distr?x.map((function(e){return We[e]})):x,C=2==m.distr?We[x[1]]-We[x[0]]:p,E=t.ticks,S=t.border,A=E.show?Su(E.size*ka):0,F=t._rotate*-ku/180,N=y(t._pos*ka),O=N+(A+w)*c;a=0==i?O:0,o=1==i?O:0,Ke(t.font[0],u,1==t.align?Ta:2==t.align?Ma:F>0?Ta:F<0?Ma:0==i?"center":3==n?Ma:Ta,F||1==i?"middle":2==n?Na:Oa);for(var T=1.5*t.font[1],M=x.map((function(e){return y(l(e,m,g,_))})),B=t._values,I=0;I0&&(_.forEach((function(e,n){if(n>0&&e.show&&null==e._paths){var o=2==i?[0,t[n][0].length-1]:function(e){var t=Ru(Ye-1,0,Oe-1),n=Ru(Ve+1,0,Oe-1);for(;null==e[t]&&t>0;)t--;for(;null==e[n]&&n0&&e.show){$e!=e.alpha&&(d.globalAlpha=$e=e.alpha),et(t,!1),e._paths&&tt(t,!1),et(t,!0);var n=e._paths?e._paths.gaps:null,i=e.points.show(r,t,Ye,Ve,n),o=e.points.filter(r,t,i,n);(i||o)&&(e.points._paths=e.points.paths(r,t,Ye,Ve,o),tt(t,!0)),1!=$e&&(d.globalAlpha=$e=1),an("drawSeries",t)}})))}},C=(e.drawOrder||["axes","series"]).map((function(e){return k[e]}));function E(t){var n=D[t];if(null==n){var r=(e.scales||Ku)[t]||Ku;if(null!=r.from)E(r.from),D[t]=ll({},D[r.from],r,{key:t});else{(n=D[t]=ll({},t==x?Sc:Ac,r)).key=t;var o=n.time,a=n.range,u=tl(a);if((t!=x||2==i&&!o)&&(!u||null!=a[0]&&null!=a[1]||(a={min:null==a[0]?vu:{mode:1,hard:a[0],soft:a[0]},max:null==a[1]?vu:{mode:1,hard:a[1],soft:a[1]}},u=!1),!u&&il(a))){var l=a;a=function(e,t,n){return null==t?el:gu(t,n,l)}}n.range=ju(a||(o?ls:t==x?3==n.distr?fs:4==n.distr?hs:us:3==n.distr?ss:4==n.distr?ds:cs)),n.auto=ju(!u&&n.auto),n.clamp=ju(n.clamp||Ec),n._min=n._max=null}}}for(var S in E("x"),E("y"),1==i&&_.forEach((function(e){E(e.scale)})),b.forEach((function(e){E(e.scale)})),e.scales)E(S);var A,F,N=D[x],O=N.distr;0==N.ori?(Qa(s,"u-hz"),A=a,F=u):(Qa(s,"u-vt"),A=u,F=a);var T={};for(var M in D){var B=D[M];null==B.min&&null==B.max||(T[M]={min:B.min,max:B.max},B.min=B.max=null)}var I,L=e.tzDate||function(e){return new Date(Su(e/g))},P=e.fmtDate||_l,z=1==g?$l(L):Vl(L),R=Wl(L,ql(1==g?jl:Yl,P)),j=Jl(L,Gl("{YYYY}-{MM}-{DD} {h}:{mm}{aa}",P)),$=[],U=r.legend=ll({},Zl,e.legend),H=U.show,Y=U.markers;U.idxs=$,Y.width=ju(Y.width),Y.dash=ju(Y.dash),Y.stroke=ju(Y.stroke),Y.fill=ju(Y.fill);var V,q=[],W=[],Q=!1,G={};if(U.live){var J=_[1]?_[1].values:null;for(var Z in V=(Q=null!=J)?J(r,1,0):{_:0})G[Z]="--"}if(H)if(I=Za("table","u-legend",s),U.mount(r,I),Q){var K=Za("tr","u-thead",I);for(var X in Za("th",null,K),V)Za("th",Sa,K).textContent=X}else Qa(I,"u-inline"),U.live&&Qa(I,"u-live");var ee={show:!0},te={show:!1};var ne=new Map;function re(e,t,n){var i=ne.get(t)||{},o=xe.bind[e](r,t,n);o&&(uu(e,t,i[e]=o),ne.set(t,i))}function ie(e,t,n){var r=ne.get(t)||{};for(var i in r)null!=e&&i!=e||(lu(i,t,r[i]),delete r[i]);null==e&&ne.delete(t)}var oe=0,ae=0,ue=0,le=0,ce=0,se=0,fe=0,de=0,he=0,pe=0;r.bbox={};var ve=!1,me=!1,ye=!1,ge=!1,_e=!1,be=!1;function De(e,t,n){(n||e!=r.width||t!=r.height)&&we(e,t),lt(!1),ye=!0,me=!0,xe.left>=0&&(ge=be=!0),wt()}function we(e,t){r.width=oe=ue=e,r.height=ae=le=t,ce=se=0,function(){var e=!1,t=!1,n=!1,r=!1;b.forEach((function(i,o){if(i.show&&i._show){var a=i.side,u=a%2,l=i._size+(null!=i.label?i.labelSize:0);l>0&&(u?(ue-=l,3==a?(ce+=l,r=!0):n=!0):(le-=l,0==a?(se+=l,e=!0):t=!0))}})),Fe[0]=e,Fe[1]=n,Fe[2]=t,Fe[3]=r,ue-=He[1]+He[3],ce+=He[3],le-=He[2]+He[0],se+=He[0]}(),function(){var e=ce+ue,t=se+le,n=ce,r=se;function i(i,o){switch(i){case 1:return(e+=o)-o;case 2:return(t+=o)-o;case 3:return(n-=o)+o;case 0:return(r-=o)+o}}b.forEach((function(e,t){if(e.show&&e._show){var n=e.side;e._pos=i(n,e._size),null!=e.label&&(e._lpos=i(n,e.labelSize))}}))}();var n=r.bbox;fe=n.left=zu(ce*ka,.5),de=n.top=zu(se*ka,.5),he=n.width=zu(ue*ka,.5),pe=n.height=zu(le*ka,.5)}r.setSize=function(e){De(e.width,e.height)};var xe=r.cursor=ll({},tc,{drag:{y:2==i}},e.cursor);xe.idxs=$,xe._lock=!1;var ke=xe.points;ke.show=ju(ke.show),ke.size=ju(ke.size),ke.stroke=ju(ke.stroke),ke.width=ju(ke.width),ke.fill=ju(ke.fill);var Ce=r.focus=ll({},e.focus||{alpha:.3},xe.focus),Ee=Ce.prox>=0,Se=[null];function Ae(e,t){if(1==i||t>0){var n=1==i&&D[e.scale].time,o=e.value;e.value=n?rl(o)?Jl(L,Gl(o,P)):o||j:o||_c,e.label=e.label||(n?"Time":"Value")}if(t>0){e.width=null==e.width?1:e.width,e.paths=e.paths||rs||Hu,e.fillTo=ju(e.fillTo||Mc),e.pxAlign=+_u(e.pxAlign,m),e.pxRound=Pc(e.pxAlign),e.stroke=ju(e.stroke||null),e.fill=ju(e.fill||null),e._stroke=e._fill=e._paths=e._focus=null;var a=Dc(e.width,1),u=e.points=ll({},{size:a,width:Nu(1,.2*a),stroke:e.stroke,space:2*a,paths:is,_stroke:null,_fill:null},e.points);u.show=ju(u.show),u.filter=ju(u.filter),u.fill=ju(u.fill),u.stroke=ju(u.stroke),u.paths=ju(u.paths),u.pxAlign=e.pxAlign}if(H){var l=function(e,t){if(0==t&&(Q||!U.live||2==i))return el;var n=[],o=Za("tr","u-series",I,I.childNodes[t]);Qa(o,e.class),e.show||Qa(o,Ea);var a=Za("th",null,o);if(Y.show){var u=Ka("u-marker",a);if(t>0){var l=Y.width(r,t);l&&(u.style.border=l+"px "+Y.dash(r,t)+" "+Y.stroke(r,t)),u.style.background=Y.fill(r,t)}}var c=Ka(Sa,a);for(var s in c.textContent=e.label,t>0&&(Y.show||(c.style.color=e.width>0?Y.stroke(r,t):Y.fill(r,t)),re("click",a,(function(t){if(!xe._lock){var n=_.indexOf(e);if((t.ctrlKey||t.metaKey)!=U.isolate){var r=_.some((function(e,t){return t>0&&t!=n&&e.show}));_.forEach((function(e,t){t>0&&Pt(t,r?t==n?ee:te:ee,!0,un.setSeries)}))}else Pt(n,{show:!e.show},!0,un.setSeries)}})),Ee&&re(Ra,a,(function(t){xe._lock||Pt(_.indexOf(e),zt,!0,un.setSeries)}))),V){var f=Za("td","u-value",o);f.textContent="--",n.push(f)}return[o,n]}(e,t);q.splice(t,0,l[0]),W.splice(t,0,l[1]),U.values.push(null)}if(xe.show){$.splice(t,0,null);var c=function(e,t){if(t>0){var n=xe.points.show(r,t);if(n)return Qa(n,"u-cursor-pt"),Qa(n,e.class),eu(n,-10,-10,ue,le),v.insertBefore(n,Se[t]),n}}(e,t);c&&Se.splice(t,0,c)}an("addSeries",t)}r.addSeries=function(e,t){t=null==t?_.length:t,e=1==i?as(e,t,cc,Cc):as(e,t,null,kc),_.splice(t,0,e),Ae(_[t],t)},r.delSeries=function(e){if(_.splice(e,1),H){U.values.splice(e,1),W.splice(e,1);var t=q.splice(e,1)[0];ie(null,t.firstChild),t.remove()}xe.show&&($.splice(e,1),Se.length>1&&Se.splice(e,1)[0].remove()),an("delSeries",e)};var Fe=[!1,!1,!1,!1];function Ne(e,t,n,r){var i=At(n,4),o=i[0],a=i[1],u=i[2],l=i[3],c=t%2,s=0;return 0==c&&(l||a)&&(s=0==t&&!o||2==t&&!u?Su(lc.size/3):0),1==c&&(o||u)&&(s=1==t&&!a||3==t&&!l?Su(bc.size/2):0),s}var Oe,Te,Me,Be,Ie,Le,Pe,ze,Re,je,$e,Ue=r.padding=(e.padding||[Ne,Ne,Ne,Ne]).map((function(e){return ju(_u(e,Ne))})),He=r._padding=Ue.map((function(e,t){return e(r,t,Fe,0)})),Ye=null,Ve=null,qe=1==i?_[0].idxs:null,We=null,Qe=!1;function Ge(e,n){if(t=null==e?[]:ul(e,ol),2==i){Oe=0;for(var o=1;o<_.length;o++)Oe+=t[o][0].length;r.data=t=e}else if(null==t[0]&&(t[0]=[]),r.data=t.slice(),We=t[0],Oe=We.length,2==O){t[0]=Array(Oe);for(var a=0;a=0,be=!0,wt()}}function Je(){var e,n;if(Qe=!0,1==i)if(Oe>0){if(Ye=qe[0]=0,Ve=qe[1]=Oe-1,e=t[0][Ye],n=t[0][Ve],2==O)e=Ye,n=Ve;else if(1==Oe)if(3==O){var r=At(hu(e,e,N.log,!1),2);e=r[0],n=r[1]}else if(4==O){var o=At(pu(e,e,N.log,!1),2);e=o[0],n=o[1]}else if(N.time)n=e+Su(86400/g);else{var a=At(gu(e,n,.1,!0),2);e=a[0],n=a[1]}}else Ye=qe[0]=e=null,Ve=qe[1]=n=null;Lt(x,e,n)}function Ze(e,t,n,r,i,o){var a,u,l,c,s;null!==(a=e)&&void 0!==a||(e=Ia),null!==(u=n)&&void 0!==u||(n=Xu),null!==(l=r)&&void 0!==l||(r="butt"),null!==(c=i)&&void 0!==c||(i=Ia),null!==(s=o)&&void 0!==s||(o="round"),e!=Te&&(d.strokeStyle=Te=e),i!=Me&&(d.fillStyle=Me=i),t!=Be&&(d.lineWidth=Be=t),o!=Le&&(d.lineJoin=Le=o),r!=Pe&&(d.lineCap=Pe=r),n!=Ie&&d.setLineDash(Ie=n)}function Ke(e,t,n,r){t!=Me&&(d.fillStyle=Me=t),e!=ze&&(d.font=ze=e),n!=Re&&(d.textAlign=Re=n),r!=je&&(d.textBaseline=je=r)}function Xe(e,t,n,i){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0;if(i.length>0&&e.auto(r,Qe)&&(null==t||null==t.min)){var a=_u(Ye,0),u=_u(Ve,i.length-1),l=null==n.min?3==e.distr?du(i,a,u):fu(i,a,u,o):[n.min,n.max];e.min=Fu(e.min,n.min=l[0]),e.max=Nu(e.max,n.max=l[1])}}function et(e,t){var n=t?_[e].points:_[e];n._stroke=n.stroke(r,e),n._fill=n.fill(r,e)}function tt(e,n){var i=n?_[e].points:_[e],o=i._stroke,a=i._fill,u=i._paths,l=u.stroke,c=u.fill,s=u.clip,f=u.flags,h=null,p=Qu(i.width*ka,3),v=p%2/2;n&&null==a&&(a=p>0?"#fff":o);var m=1==i.pxAlign;if(m&&d.translate(v,v),!n){var y=fe,g=de,b=he,D=pe,x=p*ka/2;0==i.min&&(D+=x),0==i.max&&(g-=x,D+=x),(h=new Path2D).rect(y,g,b,D)}n?nt(o,p,i.dash,i.cap,a,l,c,f,s):function(e,n,i,o,a,u,l,c,s,f,d){var h=!1;w.forEach((function(p,v){if(p.series[0]==e){var m,y=_[p.series[1]],g=t[p.series[1]],b=(y._paths||Ku).band;tl(b)&&(b=1==p.dir?b[0]:b[1]);var D=null;y.show&&b&&function(e,t,n){for(t=_u(t,0),n=_u(n,e.length-1);t<=n;){if(null!=e[t])return!0;t++}return!1}(g,Ye,Ve)?(D=p.fill(r,v)||u,m=y._paths.clip):b=null,nt(n,i,o,a,D,l,c,s,f,d,m,b),h=!0}})),h||nt(n,i,o,a,u,l,c,s,f,d)}(e,o,p,i.dash,i.cap,a,l,c,f,h,s),m&&d.translate(-v,-v)}r.setData=Ge;function nt(e,t,n,r,i,o,a,u,l,c,s,f){Ze(e,t,n,r,i),(l||c||f)&&(d.save(),l&&d.clip(l),c&&d.clip(c)),f?3==(3&u)?(d.clip(f),s&&d.clip(s),it(i,a),rt(e,o,t)):2&u?(it(i,a),d.clip(f),rt(e,o,t)):1&u&&(d.save(),d.clip(f),s&&d.clip(s),it(i,a),d.restore(),rt(e,o,t)):(it(i,a),rt(e,o,t)),(l||c||f)&&d.restore()}function rt(e,t,n){n>0&&(t instanceof Map?t.forEach((function(e,t){d.strokeStyle=Te=t,d.stroke(e)})):null!=t&&e&&d.stroke(t))}function it(e,t){t instanceof Map?t.forEach((function(e,t){d.fillStyle=Me=t,d.fill(e)})):null!=t&&e&&d.fill(t)}function ot(e,t,n,r,i,o,a,u,l,c){var s=a%2/2;1==m&&d.translate(s,s),Ze(u,a,l,c,u),d.beginPath();var f,h,p,v,y=i+(0==r||3==r?-o:o);0==n?(h=i,v=y):(f=i,p=y);for(var g=0;g0&&(t._paths=null,e&&(1==i?(t.min=null,t.max=null):t.facets.forEach((function(e){e.min=null,e.max=null}))))}))}var ct,st,ft,dt,ht,pt,vt,mt,yt,gt,_t,bt,Dt=!1;function wt(){Dt||(sl(xt),Dt=!0)}function xt(){ve&&(!function(){var e=ul(D,ol);for(var n in e){var o=e[n],a=T[n];if(null!=a&&null!=a.min)ll(o,a),n==x&<(!0);else if(n!=x||2==i)if(0==Oe&&null==o.from){var u=o.range(r,null,null,n);o.min=u[0],o.max=u[1]}else o.min=Lu,o.max=-Lu}if(Oe>0)for(var l in _.forEach((function(n,o){if(1==i){var a=n.scale,u=e[a],l=T[a];if(0==o){var c=u.range(r,u.min,u.max,a);u.min=c[0],u.max=c[1],Ye=cu(u.min,t[0]),(Ve=cu(u.max,t[0]))-Ye>1&&(t[0][Ye]u.max&&Ve--),n.min=We[Ye],n.max=We[Ve]}else n.show&&n.auto&&Xe(u,l,n,t[o],n.sorted);n.idxs[0]=Ye,n.idxs[1]=Ve}else if(o>0&&n.show&&n.auto){var s=At(n.facets,2),f=s[0],d=s[1],h=f.scale,p=d.scale,v=At(t[o],2),m=v[0],y=v[1];Xe(e[h],T[h],f,m,f.sorted),Xe(e[p],T[p],d,y,d.sorted),n.min=d.min,n.max=d.max}})),e){var c=e[l],s=T[l];if(null==c.from&&(null==s||null==s.min)){var f=c.range(r,c.min==Lu?null:c.min,c.max==-Lu?null:c.max,l);c.min=f[0],c.max=f[1]}}for(var d in e){var h=e[d];if(null!=h.from){var p=e[h.from];if(null==p.min)h.min=h.max=null;else{var v=h.range(r,p.min,p.max,d);h.min=v[0],h.max=v[1]}}}var m={},y=!1;for(var g in e){var b=e[g],w=D[g];if(w.min!=b.min||w.max!=b.max){w.min=b.min,w.max=b.max;var k=w.distr;w._min=3==k?Mu(w.min):4==k?Iu(w.min,w.asinh):w.min,w._max=3==k?Mu(w.max):4==k?Iu(w.max,w.asinh):w.max,m[g]=y=!0}}if(y){for(var C in _.forEach((function(e,t){2==i?t>0&&m.y&&(e._paths=null):m[e.scale]&&(e._paths=null)})),m)ye=!0,an("setScale",C);xe.show&&xe.left>=0&&(ge=be=!0)}for(var E in T)T[E]=null}(),ve=!1),ye&&(!function(){for(var e=!1,t=0;!e;){var n=at(++t),i=ut(t);(e=3==t||n&&i)||(we(r.width,r.height),me=!0)}}(),ye=!1),me&&(Ja(p,Ta,ce),Ja(p,Na,se),Ja(p,Aa,ue),Ja(p,Fa,le),Ja(v,Ta,ce),Ja(v,Na,se),Ja(v,Aa,ue),Ja(v,Fa,le),Ja(h,Aa,oe),Ja(h,Fa,ae),f.width=Su(oe*ka),f.height=Su(ae*ka),b.forEach((function(e){var t=e._el,n=e._show,r=e._size,i=e._pos,o=e.side;if(null!=t)if(n){var a=o%2==1;Ja(t,a?"left":"top",i-(3===o||0===o?r:0)),Ja(t,a?"width":"height",r),Ja(t,a?"top":"left",a?se:ce),Ja(t,a?"height":"width",a?le:ue),Ga(t,Ea)}else Qa(t,Ea)})),Te=Me=Be=Le=Pe=ze=Re=je=Ie=null,$e=1,Qt(!0),an("setSize"),me=!1),oe>0&&ae>0&&(d.clearRect(0,0,f.width,f.height),an("drawClear"),C.forEach((function(e){return e()})),an("draw")),Mt.show&&_e&&(It(Mt),_e=!1),xe.show&&ge&&(qt(null,!0,!1),ge=!1),c||(c=!0,r.status=1,an("ready")),Qe=!1,Dt=!1}function kt(e,n){var i=D[e];if(null==i.from){if(0==Oe){var o=i.range(r,n.min,n.max,e);n.min=o[0],n.max=o[1]}if(n.min>n.max){var a=n.min;n.min=n.max,n.max=a}if(Oe>1&&null!=n.min&&null!=n.max&&n.max-n.min<1e-16)return;e==x&&2==i.distr&&Oe>0&&(n.min=cu(n.min,t[0]),n.max=cu(n.max,t[0]),n.min==n.max&&n.max++),T[e]=n,ve=!0,wt()}}r.redraw=function(e,t){ye=t||!1,!1!==e?Lt(x,N.min,N.max):wt()},r.setScale=kt;var Ct=!1,Et=xe.drag,St=Et.x,Ft=Et.y;xe.show&&(xe.x&&(ct=Ka("u-cursor-x",v)),xe.y&&(st=Ka("u-cursor-y",v)),0==N.ori?(ft=ct,dt=st):(ft=st,dt=ct),_t=xe.left,bt=xe.top);var Nt,Ot,Tt,Mt=r.select=ll({show:!0,over:!0,left:0,width:0,top:0,height:0},e.select),Bt=Mt.show?Ka("u-select",Mt.over?v:p):null;function It(e,t){if(Mt.show){for(var n in e)Mt[n]=e[n],n in Zt&&Ja(Bt,n,e[n]);!1!==t&&an("setSelect")}}function Lt(e,t,n){kt(e,{min:t,max:n})}function Pt(e,t,n,o){null!=t.focus&&function(e){if(e!=Tt){var t=null==e,n=1!=Ce.alpha;_.forEach((function(r,i){var o=t||0==i||i==e;r._focus=t?null:o,n&&function(e,t){_[e].alpha=t,xe.show&&Se[e]&&(Se[e].style.opacity=t);H&&q[e]&&(q[e].style.opacity=t)}(i,o?1:Ce.alpha)})),Tt=e,n&&wt()}}(e),null!=t.show&&_.forEach((function(n,r){r>0&&(e==r||null==e)&&(n.show=t.show,function(e,t){var n=_[e],r=H?q[e]:null;n.show?r&&Ga(r,Ea):(r&&Qa(r,Ea),Se.length>1&&eu(Se[e],-10,-10,ue,le))}(r,t.show),Lt(2==i?n.facets[1].scale:n.scale,null,null),wt())})),!1!==n&&an("setSeries",e,t),o&&sn("setSeries",r,e,t)}r.setSelect=It,r.setSeries=Pt,r.addBand=function(e,t){e.fill=ju(e.fill||null),e.dir=_u(e.dir,-1),t=null==t?w.length:t,w.splice(t,0,e)},r.setBand=function(e,t){ll(w[e],t)},r.delBand=function(e){null==e?w.length=0:w.splice(e,1)};var zt={focus:!0};function Rt(e,t,n){var r=D[t];n&&(e=e/ka-(1==r.ori?se:ce));var i=ue;1==r.ori&&(e=(i=le)-e),-1==r.dir&&(e=i-e);var o=r._min,a=o+(r._max-o)*(e/i),u=r.distr;return 3==u?Ou(10,a):4==u?function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return xu.sinh(e)*t}(a,r.asinh):a}function jt(e,t){Ja(Bt,Ta,Mt.left=e),Ja(Bt,Aa,Mt.width=t)}function $t(e,t){Ja(Bt,Na,Mt.top=e),Ja(Bt,Fa,Mt.height=t)}H&&Ee&&uu(ja,I,(function(e){xe._lock||null!=Tt&&Pt(null,zt,!0,un.setSeries)})),r.valToIdx=function(e){return cu(e,t[0])},r.posToIdx=function(e,n){return cu(Rt(e,x,n),t[0],Ye,Ve)},r.posToVal=Rt,r.valToPos=function(e,t,n){return 0==D[t].ori?a(e,D[t],n?he:ue,n?fe:0):u(e,D[t],n?pe:le,n?de:0)},r.batch=function(e){e(r),wt()},r.setCursor=function(e,t,n){_t=e.left,bt=e.top,qt(null,t,n)};var Ut=0==N.ori?jt:$t,Ht=1==N.ori?jt:$t;function Yt(e,t){if(null!=e){var n=e.idx;U.idx=n,_.forEach((function(e,t){(t>0||!Q)&&Vt(t,n)}))}H&&U.live&&function(){if(H&&U.live)for(var e=2==i?1:0;e<_.length;e++)if(0!=e||!Q){var t=U.values[e],n=0;for(var r in t)W[e][n++].firstChild.nodeValue=t[r]}}(),be=!1,!1!==t&&an("setLegend")}function Vt(e,n){var i;if(null==n)i=G;else{var o=_[e],a=0==e&&2==O?We:t[e];i=Q?o.values(r,e,n):{_:o.value(r,a[n],e,n)}}U.values[e]=i}function qt(e,n,o){yt=_t,gt=bt;var a,u=At(xe.move(r,_t,bt),2);_t=u[0],bt=u[1],xe.show&&(ft&&eu(ft,Su(_t),0,ue,le),dt&&eu(dt,0,Su(bt),ue,le));var l=Ye>Ve;Nt=Lu;var c=0==N.ori?ue:le,s=1==N.ori?ue:le;if(_t<0||0==Oe||l){a=null;for(var f=0;f<_.length;f++)f>0&&Se.length>1&&eu(Se[f],-10,-10,ue,le);if(Ee&&Pt(null,zt,!0,null==e&&un.setSeries),U.live){$.fill(null),be=!0;for(var d=0;d<_.length;d++)U.values[d]=G}}else{var h,p;1==i&&(a=cu(h=Rt(0==N.ori?_t:bt,x),t[0],Ye,Ve),p=qu(A(t[0][a],N,c,0),.5));for(var v=2==i?1:0;v<_.length;v++){var m=_[v],y=$[v],g=1==i?t[v][y]:t[v][1][y],b=xe.dataIdx(r,v,a,h),w=1==i?t[v][b]:t[v][1][b];be=be||w!=g||b!=y,$[v]=b;var k=b==a?p:qu(A(1==i?t[0][b]:t[v][0][b],N,c,0),.5);if(v>0&&m.show){var C=null==w?-10:qu(F(w,1==i?D[m.scale]:D[m.facets[1].scale],s,0),.5);if(C>0&&1==i){var E=Cu(C-bt);E<=Nt&&(Nt=E,Ot=v)}var S=void 0,O=void 0;if(0==N.ori?(S=k,O=C):(S=C,O=k),be&&Se.length>1){nu(Se[v],xe.points.fill(r,v),xe.points.stroke(r,v));var T=void 0,M=void 0,B=void 0,I=void 0,L=!0,P=xe.points.bbox;if(null!=P){L=!1;var z=P(r,v);B=z.left,I=z.top,T=z.width,M=z.height}else B=S,I=O,T=M=xe.points.size(r,v);iu(Se[v],T,M,L),eu(Se[v],B,I,ue,le)}}if(U.live){if(!be||0==v&&Q)continue;Vt(v,b)}}}if(xe.idx=a,xe.left=_t,xe.top=bt,be&&(U.idx=a,Yt()),Mt.show&&Ct)if(null!=e){var R=At(un.scales,2),j=R[0],H=R[1],Y=At(un.match,2),V=Y[0],q=Y[1],W=At(e.cursor.sync.scales,2),J=W[0],Z=W[1],K=e.cursor.drag;if(St=K._x,Ft=K._y,St||Ft){var X,ee,te,ne,re,ie=e.select,oe=ie.left,ae=ie.top,ce=ie.width,se=ie.height,fe=e.scales[j].ori,de=e.posToVal,he=null!=j&&V(j,J),pe=null!=H&&q(H,Z);he&&St?(0==fe?(X=oe,ee=ce):(X=ae,ee=se),te=D[j],ne=A(de(X,J),te,c,0),re=A(de(X+ee,J),te,c,0),Ut(Fu(ne,re),Cu(re-ne))):Ut(0,c),pe&&Ft?(1==fe?(X=oe,ee=ce):(X=ae,ee=se),te=D[H],ne=F(de(X,Z),te,s,0),re=F(de(X+ee,Z),te,s,0),Ht(Fu(ne,re),Cu(re-ne))):Ht(0,s)}else Kt()}else{var ve=Cu(yt-ht),me=Cu(gt-pt);if(1==N.ori){var ye=ve;ve=me,me=ye}St=Et.x&&ve>=Et.dist,Ft=Et.y&&me>=Et.dist;var ge,_e,De=Et.uni;null!=De?St&&Ft&&(Ft=me>=De,(St=ve>=De)||Ft||(me>ve?Ft=!0:St=!0)):Et.x&&Et.y&&(St||Ft)&&(St=Ft=!0),St&&(0==N.ori?(ge=vt,_e=_t):(ge=mt,_e=bt),Ut(Fu(ge,_e),Cu(_e-ge)),Ft||Ht(0,s)),Ft&&(1==N.ori?(ge=vt,_e=_t):(ge=mt,_e=bt),Ht(Fu(ge,_e),Cu(_e-ge)),St||Ut(0,c)),St||Ft||(Ut(0,0),Ht(0,0))}if(Et._x=St,Et._y=Ft,null==e){if(o){if(null!=ln){var we=At(un.scales,2),ke=we[0],Ae=we[1];un.values[0]=null!=ke?Rt(0==N.ori?_t:bt,ke):null,un.values[1]=null!=Ae?Rt(1==N.ori?_t:bt,Ae):null}sn(La,r,_t,bt,ue,le,a)}if(Ee){var Fe=o&&un.setSeries,Ne=Ce.prox;null==Tt?Nt<=Ne&&Pt(Ot,zt,!0,Fe):Nt>Ne?Pt(null,zt,!0,Fe):Ot!=Tt&&Pt(Ot,zt,!0,Fe)}}!1!==n&&an("setCursor")}r.setLegend=Yt;var Wt=null;function Qt(e){!0===e?Wt=null:an("syncRect",Wt=v.getBoundingClientRect())}function Gt(e,t,n,r,i,o,a){xe._lock||Ct&&null!=e&&0==e.movementX&&0==e.movementY||(Jt(e,t,n,r,i,o,a,!1,null!=e),null!=e?qt(null,!0,!0):qt(t,!0,!1))}function Jt(e,t,n,i,o,a,u,c,s){if(null==Wt&&Qt(!1),null!=e)n=e.clientX-Wt.left,i=e.clientY-Wt.top;else{if(n<0||i<0)return _t=-10,void(bt=-10);var f=At(un.scales,2),d=f[0],h=f[1],p=t.cursor.sync,v=At(p.values,2),m=v[0],y=v[1],g=At(p.scales,2),_=g[0],b=g[1],w=At(un.match,2),x=w[0],k=w[1],C=t.axes[0].side%2==1,E=0==N.ori?ue:le,S=1==N.ori?ue:le,A=C?a:o,F=C?o:a,O=C?i:n,T=C?n:i;if(n=null!=_?x(d,_)?l(m,D[d],E,0):-10:E*(O/A),i=null!=b?k(h,b)?l(y,D[h],S,0):-10:S*(T/F),1==N.ori){var M=n;n=i,i=M}}if(s&&((n<=1||n>=ue-1)&&(n=zu(n,ue)),(i<=1||i>=le-1)&&(i=zu(i,le))),c){ht=n,pt=i;var B=At(xe.move(r,n,i),2);vt=B[0],mt=B[1]}else _t=n,bt=i}var Zt={width:0,height:0,left:0,top:0};function Kt(){It(Zt,!1)}function Xt(e,t,n,i,o,a,u){Ct=!0,St=Ft=Et._x=Et._y=!1,Jt(e,t,n,i,o,a,0,!0,!1),null!=e&&(re(za,Va,en),sn(Pa,r,vt,mt,ue,le,null))}function en(e,t,n,i,o,a,u){Ct=Et._x=Et._y=!1,Jt(e,t,n,i,o,a,0,!1,!0);var l=Mt.left,c=Mt.top,s=Mt.width,f=Mt.height,d=s>0||f>0;if(d&&It(Mt),Et.setScale&&d){var h=l,p=s,v=c,m=f;if(1==N.ori&&(h=c,p=f,v=l,m=s),St&&Lt(x,Rt(h,x),Rt(h+p,x)),Ft)for(var y in D){var g=D[y];y!=x&&null==g.from&&g.min!=Lu&&Lt(y,Rt(v+m,y),Rt(v,y))}Kt()}else xe.lock&&(xe._lock=!xe._lock,xe._lock||qt(null,!0,!1));null!=e&&(ie(za,Va),sn(za,r,_t,bt,ue,le,null))}function tn(e,t,n,i,o,a,u){Je(),Kt(),null!=e&&sn($a,r,_t,bt,ue,le,null)}function nn(){b.forEach(ms),De(r.width,r.height,!0)}uu(Ha,qa,nn);var rn={};rn.mousedown=Xt,rn.mousemove=Gt,rn.mouseup=en,rn.dblclick=tn,rn.setSeries=function(e,t,n,r){Pt(n,r,!0,!1)},xe.show&&(re(Pa,v,Xt),re(La,v,Gt),re(Ra,v,Qt),re(ja,v,(function(e,t,n,r,i,o,a){if(!xe._lock){var u=Ct;if(Ct){var l,c,s=!0,f=!0;0==N.ori?(l=St,c=Ft):(l=Ft,c=St),l&&c&&(s=_t<=10||_t>=ue-10,f=bt<=10||bt>=le-10),l&&s&&(_t=_t=3&&10==i.log?gc:Uu)),e.font=vs(e.font),e.labelFont=vs(e.labelFont),e._size=e.size(r,null,t,0),e._space=e._rotate=e._incrs=e._found=e._splits=e._values=null,e._size>0&&(Fe[t]=!0,e._el=Ka("u-axis",h))}})),n?n instanceof HTMLElement?(n.appendChild(s),fn()):n(r,fn):fn(),r}ys.assign=ll,ys.fmtNum=wu,ys.rangeNum=gu,ys.rangeLog=hu,ys.rangeAsinh=pu,ys.orient=Oc,ys.pxRatio=ka,ys.join=function(e,t){for(var n=new Set,r=0;r=a&&M<=u;M+=A){var B=s[M];if(null!=B){var I=x(c[M]),L=k(B);1==t?C(S,I,F):C(S,O,L),C(S,I,L),F=L,O=I}}var P=O;i&&1==t&&C(S,P=D+w,F);var z=At(Tc(e,o),2),R=z[0],j=z[1];if(null!=l.fill||0!=R){var $=E.fill=new Path2D(S),U=k(l.fillTo(e,o,l.min,l.max,R));C($,P,U),C($,T,U)}if(!l.spanGaps){var H,Y=[];(H=Y).push.apply(H,Ft(Lc(c,s,a,u,A,x,r)));var V=l.width*ka/2,q=n||1==t?V:-V,W=n||-1==t?-V:V;Y.forEach((function(e){e[0]+=q,e[1]+=W})),E.gaps=Y=l.gaps(e,o,a,u,Y),E.clip=Ic(Y,f.ori,v,m,y,g)}return 0!=j&&(E.band=2==j?[Bc(e,o,a,u,S,-1),Bc(e,o,a,u,S,1)]:Bc(e,o,a,u,S,j)),E}))}},gs.bars=function(e){var t=_u((e=e||Ku).size,[.6,Lu,1]),n=e.align||0,r=(e.gap||0)*ka,i=_u(e.radius,0),o=1-t[0],a=_u(t[1],Lu)*ka,u=_u(t[2],1)*ka,l=_u(e.disp,Ku),c=_u(e.each,(function(e){})),s=l.fill,f=l.stroke;return function(e,t,d,h){return Oc(e,t,(function(p,v,m,y,g,_,b,D,w,x,k){var C,E,S=p.pxRound,A=y.dir*(0==y.ori?1:-1),F=g.dir*(1==g.ori?1:-1),N=0==y.ori?Hc:Yc,O=0==y.ori?c:function(e,t,n,r,i,o,a){c(e,t,n,i,r,a,o)},T=At(Tc(e,t),2),M=T[0],B=T[1],I=3==g.distr?1==M?g.max:g.min:0,L=b(I,g,k,w),P=S(p.width*ka),z=!1,R=null,j=null,$=null,U=null;null==s||0!=P&&null==f||(z=!0,R=s.values(e,t,d,h),j=new Map,new Set(R).forEach((function(e){null!=e&&j.set(e,new Path2D)})),P>0&&($=f.values(e,t,d,h),U=new Map,new Set($).forEach((function(e){null!=e&&U.set(e,new Path2D)}))));var H=l.x0,Y=l.size;if(null!=H&&null!=Y){v=H.values(e,t,d,h),2==H.unit&&(v=v.map((function(t){return e.posToVal(D+t*x,y.key,!0)})));var V=Y.values(e,t,d,h);E=S((E=2==Y.unit?V[0]*x:_(V[0],y,x,D)-_(0,y,x,D))-P),C=1==A?-P/2:E+P/2}else{var q=x;if(v.length>1)for(var W=null,Q=0,G=1/0;Q=d&&Q<=h;Q+=A){var ie=m[Q];if(void 0!==ie){var oe=_(2!=y.distr||null!=l?v[Q]:Q,y,x,D),ae=b(_u(ie,I),g,k,w);null!=re&&null!=ie&&(L=b(re[Q],g,k,w));var ue=S(oe-C),le=S(Nu(ae,L)),ce=S(Fu(ae,L)),se=le-ce,fe=i*E;null!=ie&&(z?(P>0&&null!=$[Q]&&N(U.get($[Q]),ue,ce+Eu(P/2),E,Nu(0,se-P),fe),null!=R[Q]&&N(j.get(R[Q]),ue,ce+Eu(P/2),E,Nu(0,se-P),fe)):N(X,ue,ce+Eu(P/2),E,Nu(0,se-P),fe),O(e,t,Q,ue-P/2,ce,E+P,se)),0!=B&&(F*B==1?(le=ce,ce=Z):(ce=le,le=Z),N(ee,ue-P/2,ce,E+P,Nu(0,se=le-ce),0))}}return P>0&&(K.stroke=z?U:X),K.fill=z?j:X,K}))}},gs.spline=function(e){return function(e,t){var n=_u(null===t||void 0===t?void 0:t.alignGaps,0);return function(t,r,i,o){return Oc(t,r,(function(a,u,l,c,s,f,d,h,p,v,m){var y,g,_,b=a.pxRound,D=function(e){return b(f(e,c,v,h))},w=function(e){return b(d(e,s,m,p))};0==c.ori?(y=Rc,_=$c,g=Wc):(y=jc,_=Uc,g=Qc);var x=c.dir*(0==c.ori?1:-1);i=su(l,i,o,1),o=su(l,i,o,-1);for(var k=D(u[1==x?i:o]),C=k,E=[],S=[],A=1==x?i:o;A>=i&&A<=o;A+=x)if(null!=l[A]){var F=D(u[A]);E.push(C=F),S.push(w(l[A]))}var N={stroke:e(E,S,y,_,g,b),fill:null,clip:null,band:null,gaps:null,flags:1},O=N.stroke,T=At(Tc(t,r),2),M=T[0],B=T[1];if(null!=a.fill||0!=M){var I=N.fill=new Path2D(O),L=w(a.fillTo(t,r,a.min,a.max,M));_(I,C,L),_(I,k,L)}if(!a.spanGaps){var P,z=[];(P=z).push.apply(P,Ft(Lc(u,l,i,o,x,D,n))),N.gaps=z=a.gaps(t,r,i,o,z),N.clip=Ic(z,c.ori,h,p,v,m)}return 0!=B&&(N.band=2==B?[Bc(t,r,i,o,O,-1),Bc(t,r,i,o,O,1)]:Bc(t,r,i,o,O,B)),N}))}}(es,e)};var _s,bs={legend:{show:!1},cursor:{drag:{x:!0,y:!1},focus:{prox:30},points:{size:5.6,width:1.4},bind:{click:function(){return null},dblclick:function(){return null}}}},Ds=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(void 0===e||null===e)return"";var r=3+Math.floor(1+Math.log10(Math.max(Math.abs(t),Math.abs(n)))-Math.log10(Math.abs(t-n)));return(isNaN(r)||r>20)&&(r=20),e.toLocaleString("en-US",{minimumSignificantDigits:r,maximumSignificantDigits:r})},ws=function(e,t,n,r){var i,o=e.axes[n];if(r>1)return o._size||60;var a=6+((null===o||void 0===o||null===(i=o.ticks)||void 0===i?void 0:i.size)||0)+(o.gap||0),u=(null!==t&&void 0!==t?t:[]).reduce((function(e,t){return t.length>e.length?t:e}),"");return""!=u&&(a+=function(e,t){var n=document.createElement("span");n.innerText=e,n.style.cssText="position: absolute; z-index: -1; pointer-events: none; opacity: 0; font: ".concat(t),document.body.appendChild(n);var r=n.offsetWidth;return n.remove(),r}(u,e.ctx.font)),Math.ceil(a)},xs=function(e){return function(e){for(var t=0,n=0;n>8*i&255).toString(16)).substr(-2);return r}(e)},ks=function(e){for(var t=e.length,n=-1/0;t--;){var r=e[t];Number.isFinite(r)&&r>n&&(n=r)}return Number.isFinite(n)?n:null},Cs=function(e){for(var t=e.length,n=1/0;t--;){var r=e[t];Number.isFinite(r)&&r2&&void 0!==arguments[2]?arguments[2]:"",r=t[0],i=t[t.length-1];return n?t.map((function(e){return"".concat(Ds(e,r,i)," ").concat(n)})):t.map((function(e){return Ds(e,r,i)}))}(e,n,t)}};return e?Number(e)%2?n:or(or({},n),{},{side:1}):{space:80,values:Es}}))},As=function(e,t){if(null==e||null==t)return[-1,1];var n=.02*(Math.abs(t-e)||Math.abs(e)||1);return[e-n,t+n]},Fs=n(61),Ns=n.n(Fs),Os=function(e){var t,n,r,i=e.u,o=e.id,a=e.unit,u=void 0===a?"":a,l=e.metrics,c=e.series,s=e.yRange,f=e.tooltipIdx,d=e.tooltipOffset,h=e.isSticky,p=e.onClose,v=ie(null),m=At(ee({top:-999,left:-999}),2),g=m[0],_=m[1],b=At(ee(!1),2),D=b[0],w=b[1],x=At(ee(!1),2),k=x[0],C=x[1],E=At(ee(f.seriesIdx),2),S=E[0],A=E[1],F=At(ee(f.dataIdx),2),N=F[0],O=F[1],T=ae((function(){return i.root.querySelector(".u-wrap")}),[i]),M=vr()(i,["data",S,N],0),B=Ds(M,vr()(s,[0]),vr()(s,[1])),I=i.data[0][N],L=_t()(1e3*I).tz().format("YYYY-MM-DD HH:mm:ss:SSS (Z)"),P=(null===(t=c[S])||void 0===t?void 0:t.stroke)+"",z=new Set;l.forEach((function(e){return z.add(e.group)}));var R=z.size,j=(null===(n=l[S-1])||void 0===n?void 0:n.group)||0,$=(null===(r=l[S-1])||void 0===r?void 0:r.metric)||{},U=Object.keys($).filter((function(e){return"__name__"!=e})),H=$.__name__||"value",Y=ae((function(){return U.map((function(e){return"".concat(e,"=").concat(JSON.stringify($[e]))}))}),[l,S]),V=function(e){if(D){var t=e.clientX,n=e.clientY;_({top:n,left:t})}},q=function(){w(!1)};return ne((function(){var e;if(v.current){var t=i.valToPos(M||0,(null===(e=c[S])||void 0===e?void 0:e.scale)||"1"),n=i.valToPos(I,"x"),r=v.current.getBoundingClientRect(),o=r.width,a=r.height,u=i.over.getBoundingClientRect(),l=n+o>=u.width?o+20:0,s=t+a>=u.height?a+20:0;_({top:t+d.top+10-s,left:n+d.left+10-l})}}),[i,M,I,S,d,v]),ne((function(){A(f.seriesIdx),O(f.dataIdx)}),[f]),ne((function(){return D&&(document.addEventListener("mousemove",V),document.addEventListener("mouseup",q)),function(){document.removeEventListener("mousemove",V),document.removeEventListener("mouseup",q)}}),[D]),!T||f.seriesIdx<0||f.dataIdx<0?null:yt.createPortal(xr("div",{className:Ji()({"vm-chart-tooltip":!0,"vm-chart-tooltip_sticky":h,"vm-chart-tooltip_moved":k}),ref:v,style:g,children:[xr("div",{className:"vm-chart-tooltip-header",children:[xr("div",{className:"vm-chart-tooltip-header__date",children:[R>1&&xr("div",{children:["Query ",j]}),L]}),h&&xr(y,{children:[xr(Lo,{className:"vm-chart-tooltip-header__drag",variant:"text",size:"small",startIcon:xr(qi,{}),onMouseDown:function(e){C(!0),w(!0);var t=e.clientX,n=e.clientY;_({top:n,left:t})}}),xr(Lo,{className:"vm-chart-tooltip-header__close",variant:"text",size:"small",startIcon:xr(bi,{}),onClick:function(){p&&p(o)}})]})]}),xr("div",{className:"vm-chart-tooltip-data",children:[xr("div",{className:"vm-chart-tooltip-data__marker",style:{background:P}}),xr("p",{children:[H,":",xr("b",{className:"vm-chart-tooltip-data__value",children:B}),u]})]}),!!Y.length&&xr("div",{className:"vm-chart-tooltip-info",children:Y.map((function(e,t){return xr("div",{children:e},"".concat(e,"_").concat(t))}))})]}),T)};!function(e){e.xRange="xRange",e.yRange="yRange",e.data="data"}(_s||(_s={}));var Ts=function(e){var t=e.data,n=e.series,r=e.metrics,i=void 0===r?[]:r,o=e.period,a=e.yaxis,u=e.unit,l=e.setPeriod,c=e.container,s=e.height,f=ie(null),d=At(ee(!1),2),h=d[0],v=d[1],m=At(ee({min:o.start,max:o.end}),2),y=m[0],g=m[1],_=At(ee([0,1]),2),b=_[0],D=_[1],w=At(ee(),2),x=w[0],k=w[1],C=Xi(c),E=At(ee(!1),2),S=E[0],A=E[1],F=At(ee({seriesIdx:-1,dataIdx:-1}),2),N=F[0],O=F[1],T=At(ee({left:0,top:0}),2),M=T[0],B=T[1],I=At(ee([]),2),L=I[0],P=I[1],z=ae((function(){return"".concat(N.seriesIdx,"_").concat(N.dataIdx)}),[N]),R=ue(Ns()((function(e){var t=e.min,n=e.max;l({from:_t()(1e3*t).toDate(),to:_t()(1e3*n).toDate()})}),500),[]),j=function(e){var t=e.u,n=e.min,r=e.max,i=1e3*(r-n);iMr||(t.setScale("x",{min:n,max:r}),g({min:n,max:r}),R({min:n,max:r}))},$=function(e){var t=e.target,n=e.ctrlKey,r=e.metaKey,i=e.key,o=t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement;if(x&&!o){var a="+"===i||"="===i;if(("-"===i||a)&&!n&&!r){e.preventDefault();var u=(y.max-y.min)/10*(a?1:-1);j({u:x,min:y.min+u,max:y.max-u})}}},U=function(){var e="".concat(N.seriesIdx,"_").concat(N.dataIdx),t={id:e,unit:u,series:n,metrics:i,yRange:b,tooltipIdx:N,tooltipOffset:M};if(!L.find((function(t){return t.id===e}))){var r=JSON.parse(JSON.stringify(t));P((function(e){return[].concat(Ft(e),[r])}))}},H=function(e){P((function(t){return t.filter((function(t){return t.id!==e}))}))},Y=function(){return[y.min,y.max]},V=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,r=arguments.length>3?arguments[3]:void 0;return"1"==r&&D([t,n]),a.limits.enable?a.limits.range[r]:As(t,n)},q=or(or({},bs),{},{tzDate:function(e){return _t()(Ur(Yr(e))).local().toDate()},series:n,axes:Ss([{},{scale:"1"}],u),scales:or({},function(){var e={x:{range:Y}},t=Object.keys(a.limits.range);return(t.length?t:["1"]).forEach((function(t){e[t]={range:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;return V(e,n,r,t)}}})),e}()),width:C.width||400,height:s||500,plugins:[{hooks:{ready:function(e){B({left:parseFloat(e.over.style.left),top:parseFloat(e.over.style.top)}),e.over.addEventListener("mousedown",(function(t){var n=t.ctrlKey,r=t.metaKey;0===t.button&&(n||r)&&function(e){var t=e.e,n=e.factor,r=void 0===n?.85:n,i=e.u,o=e.setPanning,a=e.setPlotScale;t.preventDefault(),o(!0);var u=t.clientX,l=i.posToVal(1,"x")-i.posToVal(0,"x"),c=i.scales.x.min||0,s=i.scales.x.max||0,f=function(e){e.preventDefault();var t=l*((e.clientX-u)*r);a({u:i,min:c-t,max:s-t})};document.addEventListener("mousemove",f),document.addEventListener("mouseup",(function e(){o(!1),document.removeEventListener("mousemove",f),document.removeEventListener("mouseup",e)}))}({u:e,e:t,setPanning:v,setPlotScale:j,factor:.9})})),e.over.addEventListener("wheel",(function(t){if(t.ctrlKey||t.metaKey){t.preventDefault();var n=e.over.getBoundingClientRect().width,r=e.cursor.left&&e.cursor.left>0?e.cursor.left:0,i=e.posToVal(r,"x"),o=(e.scales.x.max||0)-(e.scales.x.min||0),a=t.deltaY<0?.9*o:o/.9,u=i-r/n*a,l=u+a;e.batch((function(){return j({u:e,min:u,max:l})}))}}))},setCursor:function(e){var t,n=null!==(t=e.cursor.idx)&&void 0!==t?t:-1;O((function(e){return or(or({},e),{},{dataIdx:n})}))},setSeries:function(e,t){var n=null!==t&&void 0!==t?t:-1;O((function(e){return or(or({},e),{},{seriesIdx:n})}))}}}],hooks:{setSelect:[function(e){var t=e.posToVal(e.select.left,"x"),n=e.posToVal(e.select.left+e.select.width,"x");j({u:e,min:t,max:n})}]}}),W=function(e){if(x){switch(e){case _s.xRange:x.scales.x.range=Y;break;case _s.yRange:Object.keys(a.limits.range).forEach((function(e){x.scales[e]&&(x.scales[e].range=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;return V(t,n,r,e)})}));break;case _s.data:x.setData(t)}h||x.redraw()}};return ne((function(){return g({min:o.start,max:o.end})}),[o]),ne((function(){if(P([]),O({seriesIdx:-1,dataIdx:-1}),f.current){var e=new ys(q,t,f.current);return k(e),g({min:o.start,max:o.end}),e.destroy}}),[f.current,n,C,s]),ne((function(){return window.addEventListener("keydown",$),function(){window.removeEventListener("keydown",$)}}),[y]),ne((function(){return W(_s.data)}),[t]),ne((function(){return W(_s.xRange)}),[y]),ne((function(){return W(_s.yRange)}),[a]),ne((function(){var e=-1!==N.dataIdx&&-1!==N.seriesIdx;return A(e),e&&window.addEventListener("click",U),function(){window.removeEventListener("click",U)}}),[N,L]),xr("div",{className:Ji()({"vm-line-chart":!0,"vm-line-chart_panning":h}),children:[xr("div",{className:"vm-line-chart__u-plot",ref:f}),x&&S&&xr(Os,{unit:u,u:x,series:n,metrics:i,yRange:b,tooltipIdx:N,tooltipOffset:M,id:z}),x&&L.map((function(e){return p(Os,or(or({},e),{},{isSticky:!0,u:x,key:e.id,onClose:H}))}))]})},Ms=function(e){var t=e.legend,n=e.onChange,r=At(ee(""),2),i=r[0],o=r[1],a=ae((function(){return function(e){var t=Object.keys(e.freeFormFields).filter((function(e){return"__name__"!==e}));return t.map((function(t){var n="".concat(t,"=").concat(JSON.stringify(e.freeFormFields[t]));return{id:"".concat(e.label,".").concat(n),freeField:n,key:t}}))}(t)}),[t]),u=function(){var e=_a(ya().mark((function e(t,n){return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,navigator.clipboard.writeText(t);case 2:o(n),setTimeout((function(){return o("")}),2e3);case 4:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();return xr("div",{className:Ji()({"vm-legend-item":!0,"vm-legend-item_hide":!t.checked}),onClick:function(e){return function(t){n(e,t.ctrlKey||t.metaKey)}}(t),children:[xr("div",{className:"vm-legend-item__marker",style:{backgroundColor:t.color}}),xr("div",{className:"vm-legend-item-info",children:[xr("span",{className:"vm-legend-item-info__label",children:t.freeFormFields.__name__||(0==a.length?"{}":"")}),a.length>0&&xr("span",{children:["{",a.map((function(e){return xr(Ro,{open:i===e.id,title:"Copied!",placement:"top-center",children:xr("span",{className:"vm-legend-item-info__free-fields",onClick:(t=e.freeField,n=e.id,function(e){e.stopPropagation(),u(t,n)}),children:e.freeField},e.key)},e.id);var t,n})),"}"]})]})]})},Bs=function(e){var t=e.labels,n=e.query,r=e.onChange,i=ae((function(){return Array.from(new Set(t.map((function(e){return e.group}))))}),[t]);return xr(y,{children:xr("div",{className:"vm-legend",children:i.map((function(e){return xr("div",{className:"vm-legend-group",children:[xr("div",{className:"vm-legend-group-title",children:[xr("span",{className:"vm-legend-group-title__count",children:["Query ",e,": "]}),xr("span",{className:"vm-legend-group-title__query",children:n[e-1]})]}),xr("div",{children:t.filter((function(t){return t.group===e})).map((function(e){return xr(Ms,{legend:e,onChange:r},e.label)}))})]},e)}))})})};function Is(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}var Ls=["__name__"],Ps=function(e,t){var n=e.metric,r=n.__name__,i=Is(n,Ls),o=t||"[Query ".concat(e.group,"] ").concat(r||"");return 0==Object.keys(i).length?o:"".concat(o,"{").concat(Object.entries(i).map((function(e){return"".concat(e[0],"=").concat(JSON.stringify(e[1]))})).join(", "),"}")},zs=function(e,t,n){var r=Ps(e,n[e.group-1]);return{label:r,freeFormFields:e.metric,width:1.4,stroke:xs(r),show:!js(r,t),scale:"1",points:{size:4.2,width:1.4}}},Rs=function(e,t){return{group:t,label:e.label||"",color:e.stroke,checked:e.show||!1,freeFormFields:e.freeFormFields}},js=function(e,t){return t.includes("".concat(e))},$s=function(e){switch(e){case"NaN":return NaN;case"Inf":case"+Inf":return 1/0;case"-Inf":return-1/0;default:return parseFloat(e)}},Us=function(e){var t=e.data,n=void 0===t?[]:t,r=e.period,i=e.customStep,o=e.query,a=e.yaxis,u=e.unit,l=e.showLegend,c=void 0===l||l,s=e.setYaxisLimits,f=e.setPeriod,d=e.alias,h=void 0===d?[]:d,p=e.fullWidth,v=void 0===p||p,m=e.height,y=ci().timezone,g=ae((function(){return i||r.step||"1s"}),[r.step,i]),_=At(ee([[]]),2),b=_[0],D=_[1],w=At(ee([]),2),x=w[0],k=w[1],C=At(ee([]),2),E=C[0],S=C[1],A=At(ee([]),2),F=A[0],N=A[1],O=function(e){var t=function(e){var t={},n=Object.values(e).flat(),r=Cs(n),i=ks(n);return t[1]=As(r,i),t}(e);s(t)};ne((function(){var e=[],t={},i=[],o=[{}];null===n||void 0===n||n.forEach((function(n){var r=zs(n,F,h);o.push(r),i.push(Rs(r,n.group));var a,u=t[n.group]||[],l=xa(n.values);try{for(l.s();!(a=l.n()).done;){var c=a.value;e.push(c[0]),u.push($s(c[1]))}}catch(s){l.e(s)}finally{l.f()}t[n.group]=u}));var a=function(e,t,n){for(var r=Rr(t)||1,i=Array.from(new Set(e)).sort((function(e,t){return e-t})),o=n.start,a=Pr(n.end+r),u=0,l=[];o<=a;){for(;u=i.length||i[u]>o)&&l.push(o)}for(;l.length<2;)l.push(o),o=Pr(o+r);return l}(e,g,r),u=n.map((function(e){var t,n=[],r=e.values,i=r.length,o=0,u=xa(a);try{for(u.s();!(t=u.n()).done;){for(var l=t.value;o1e10*h?n.map((function(){return f})):n}));u.unshift(a),O(t),D(u),k(o),S(i)}),[n,y]),ne((function(){var e=[],t=[{}];null===n||void 0===n||n.forEach((function(n){var r=zs(n,F,h);t.push(r),e.push(Rs(r,n.group))})),k(t),S(e)}),[F]);var T=ie(null);return xr("div",{className:Ji()({"vm-graph-view":!0,"vm-graph-view_full-width":v}),ref:T,children:[(null===T||void 0===T?void 0:T.current)&&xr(Ts,{data:b,series:x,metrics:n,period:r,yaxis:a,unit:u,setPeriod:f,container:null===T||void 0===T?void 0:T.current,height:m}),c&&xr(Bs,{labels:E,query:o,onChange:function(e,t){N(function(e){var t=e.hideSeries,n=e.legend,r=e.metaKey,i=e.series,o=n.label,a=js(o,t),u=i.map((function(e){return e.label||""}));return r?a?t.filter((function(e){return e!==o})):[].concat(Ft(t),[o]):t.length?a?Ft(u.filter((function(e){return e!==o}))):[]:Ft(u.filter((function(e){return e!==o})))}({hideSeries:F,legend:e,metaKey:t,series:x}))}})]})},Hs=function(e){var t=e.value,n=e.options,r=e.anchor,i=e.disabled,o=e.maxWords,a=void 0===o?1:o,u=e.minLength,l=void 0===u?2:u,c=e.fullWidth,f=e.selected,d=e.noOptionsText,h=e.onSelect,p=e.onOpenAutocomplete,v=ie(null),m=At(ee(!1),2),y=m[0],g=m[1],_=At(ee(-1),2),b=_[0],D=_[1],w=ae((function(){if(!y)return[];try{var e=new RegExp(String(t),"i");return n.filter((function(n){return e.test(n)&&n!==t})).sort((function(t,n){var r,i;return((null===(r=t.match(e))||void 0===r?void 0:r.index)||0)-((null===(i=n.match(e))||void 0===i?void 0:i.index)||0)}))}catch(s){return[]}}),[y,n,t]),x=ae((function(){return d&&!w.length}),[d,w]),k=function(){g(!1)},C=function(e){var t=e.key,n=e.ctrlKey,r=e.metaKey,i=e.shiftKey,o=n||r||i,a=w.length;if("ArrowUp"===t&&!o&&a&&(e.preventDefault(),D((function(e){return e<=0?0:e-1}))),"ArrowDown"===t&&!o&&a){e.preventDefault();var u=w.length-1;D((function(e){return e>=u?u:e+1}))}if("Enter"===t){var l=w[b];l&&h(l),f||k()}"Escape"===t&&k()};return ne((function(){var e=(t.match(/[a-zA-Z_:.][a-zA-Z0-9_:.]*/gm)||[]).length;g(t.length>l&&e<=a)}),[t]),ne((function(){return function(){if(v.current){var e=v.current.childNodes[b];null!==e&&void 0!==e&&e.scrollIntoView&&e.scrollIntoView({block:"center"})}}(),window.addEventListener("keydown",C),function(){window.removeEventListener("keydown",C)}}),[b,w]),ne((function(){D(-1)}),[w]),ne((function(){p&&p(y)}),[y]),Po(v,k,r),xr(zo,{open:y,buttonRef:r,placement:"bottom-left",onClose:k,fullWidth:c,children:xr("div",{className:"vm-autocomplete",ref:v,children:[x&&xr("div",{className:"vm-autocomplete__no-options",children:d}),w.map((function(e,t){return xr("div",{className:Ji()({"vm-list-item":!0,"vm-list-item_active":t===b,"vm-list-item_multiselect":f,"vm-list-item_multiselect_selected":null===f||void 0===f?void 0:f.includes(e)}),id:"$autocomplete$".concat(e),onClick:(n=e,function(){i||(h(n),f||k())}),children:[(null===f||void 0===f?void 0:f.includes(e))&&xr(Ui,{}),xr("span",{children:e})]},e);var n}))]})})},Ys=function(e){var t=e.value,n=e.onChange,r=e.onEnter,i=e.onArrowUp,o=e.onArrowDown,a=e.autocomplete,u=e.error,l=e.options,c=e.label,s=e.disabled,f=void 0!==s&&s,d=At(ee(!1),2),h=d[0],p=d[1],v=ie(null);return xr("div",{className:"vm-query-editor",ref:v,children:[xr(ea,{value:t,label:c,type:"textarea",autofocus:!!t,error:u,onKeyDown:function(e){var t=e.key,n=e.ctrlKey,a=e.metaKey,u=e.shiftKey,l=n||a,c="ArrowDown"===t,s="Enter"===t;"ArrowUp"===t&&l&&(e.preventDefault(),i()),c&&l&&(e.preventDefault(),o()),!s||u||h||r()},onChange:n,disabled:f}),a&&xr(Hs,{value:t,options:l,anchor:v,onSelect:function(e){n(e)},onOpenAutocomplete:p})]})},Vs=function(e){var t=e.value,n=e.defaultStep,r=e.setStep,i=At(ee(t||n),2),o=i[0],a=i[1],u=At(ee(""),2),l=u[0],c=u[1],s=function(e){var t=e||o||n||"1s",i=t.match(/[a-zA-Z]+/g)||[];r(i.length?t:"".concat(t,"s"))},f=function(e){var t=e.match(/[-+]?([0-9]*\.[0-9]+|[0-9]+)/g)||[],n=e.match(/[a-zA-Z]+/g)||[],r=t.length&&t.every((function(e){return parseFloat(e)>0})),i=n.every((function(e){return Ir.find((function(t){return t.short===e}))})),o=r&&i;a(e),c(o?"":Wo.validStep)};return ne((function(){t&&f(t)}),[t]),xr(ea,{label:"Step value",value:o,error:l,onChange:f,onEnter:s,onBlur:s,endIcon:xr(Ro,{title:"Reset step to default",children:xr(Lo,{variant:"text",size:"small",startIcon:xr(Di,{}),onClick:function(){var e=n||"1s";f(e),s(e)}})})})},qs=n(936),Ws=n.n(qs),Qs=function(){var e=sr().serverURL,t=Cr().tenantId,n=Er(),r=si(),i=At(ee(t||0),2),o=i[0],a=i[1],u=ue(Ws()((function(t){var i=Number(t);if(n({type:"SET_TENANT_ID",payload:i}),e){var o=e.replace(/(\/select\/)([\d]+)(\/prometheus)/,"$1".concat(i,"$3"));n({type:"SET_SERVER",payload:o}),r({type:"RUN_QUERY"})}}),700),[]);return ne((function(){o!==t&&a(t)}),[t]),xr(ea,{label:"Tenant ID",type:"number",value:o,onChange:function(e){a(e),u(e)},endIcon:xr(Ro,{title:"Define tenant id if you need request to another storage",children:xr(Lo,{variant:"text",size:"small",startIcon:xr(wi,{})})})})},Gs=function(e){var t,n=e.value,r=void 0!==n&&n,i=e.disabled,o=void 0!==i&&i,a=e.label,u=e.color,l=void 0===u?"secondary":u,c=e.onChange;return xr("div",{className:Ji()((rr(t={"vm-switch":!0,"vm-switch_disabled":o,"vm-switch_active":r},"vm-switch_".concat(l,"_active"),r),rr(t,"vm-switch_".concat(l),l),t)),onClick:function(){o||c(!r)},children:[xr("div",{className:"vm-switch-track",children:xr("div",{className:"vm-switch-track__thumb"})}),a&&xr("span",{className:"vm-switch__label",children:a})]})};var Js=function(e){var t=ie();return ne((function(){t.current=e}),[e]),t.current},Zs=function(){var e=vo().customStep,t=mo(),n=sr().inputTenantID,r=vi().autocomplete,i=mi(),o=co(),a=o.nocache,u=o.isTracingEnabled,l=so(),c=ci(),s=c.period.step,f=c.duration,d=Js(f),h=function(e){t({type:"SET_CUSTOM_STEP",payload:e})};return ne((function(){!e&&s&&h(s)}),[s]),ne((function(){f!==d&&d&&s&&h(s)}),[f,d]),xr("div",{className:"vm-additional-settings",children:[xr(Gs,{label:"Autocomplete",value:r,onChange:function(){i({type:"TOGGLE_AUTOCOMPLETE"})}}),xr(Gs,{label:"Disable cache",value:a,onChange:function(){l({type:"TOGGLE_NO_CACHE"})}}),xr(Gs,{label:"Trace query",value:u,onChange:function(){l({type:"TOGGLE_QUERY_TRACING"})}}),xr("div",{className:"vm-additional-settings__input",children:xr(Vs,{defaultStep:s,setStep:h,value:e})}),!!n&&xr("div",{className:"vm-additional-settings__input",children:xr(Qs,{})})]})},Ks=function(e,t){return e.length===t.length&&e.every((function(e,n){return e===t[n]}))},Xs=function(e){var t=e.error,n=e.queryOptions,r=e.onHideQuery,i=vi(),o=i.query,a=i.queryHistory,u=i.autocomplete,l=mi(),c=si(),s=At(ee(o||[]),2),f=s[0],d=s[1],h=At(ee([]),2),p=h[0],v=h[1],m=Js(f),y=function(){l({type:"SET_QUERY_HISTORY",payload:f.map((function(e,t){var n=a[t]||{values:[]},r=e===n.values[n.values.length-1];return{index:n.values.length-Number(r),values:!r&&e?[].concat(Ft(n.values),[e]):n.values}}))}),l({type:"SET_QUERY",payload:f}),c({type:"RUN_QUERY"})},g=function(e,t){d((function(n){return n.map((function(n,r){return r===t?e:n}))}))},_=function(e,t){return function(){!function(e,t){var n=a[t],r=n.index,i=n.values,o=r+e;o<0||o>=i.length||(g(i[o]||"",t),l({type:"SET_QUERY_HISTORY_BY_INDEX",payload:{value:{values:i,index:o},queryNumber:t}}))}(e,t)}},b=function(e){return function(t){g(t,e)}},D=function(e){return function(){var t;t=e,d((function(e){return e.filter((function(e,n){return n!==t}))})),v((function(t){return t.includes(e)?t.filter((function(t){return t!==e})):t.map((function(t){return t>e?t-1:t}))}))}},w=function(e){return function(t){!function(e,t){var n=e.ctrlKey,r=e.metaKey;if(n||r){var i=f.map((function(e,t){return t})).filter((function(e){return e!==t}));v((function(e){return Ks(i,e)?[]:i}))}else v((function(e){return e.includes(t)?e.filter((function(e){return e!==t})):[].concat(Ft(e),[t])}))}(t,e)}};return ne((function(){m&&f.length1&&xr(Ro,{title:"Remove Query",children:xr("div",{className:"vm-query-configurator-list-row__button",children:xr(Lo,{variant:"text",color:"error",startIcon:xr(ji,{}),onClick:D(r)})})})]},r)}))}),xr("div",{className:"vm-query-configurator-settings",children:[xr(Zs,{}),xr("div",{className:"vm-query-configurator-settings__buttons",children:[f.length<4&&xr(Lo,{variant:"outlined",onClick:function(){d((function(e){return[].concat(Ft(e),[""])}))},startIcon:xr($i,{}),children:"Add Query"}),xr(Lo,{variant:"contained",onClick:y,startIcon:xr(Ii,{}),children:"Execute Query"})]})]})]})};function ef(e){var t,n,r,i=2;for("undefined"!=typeof Symbol&&(n=Symbol.asyncIterator,r=Symbol.iterator);i--;){if(n&&null!=(t=e[n]))return t.call(e);if(r&&null!=(t=e[r]))return new tf(t.call(e));n="@@asyncIterator",r="@@iterator"}throw new TypeError("Object is not async iterable")}function tf(e){function t(e){if(Object(e)!==e)return Promise.reject(new TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then((function(e){return{value:e,done:t}}))}return tf=function(e){this.s=e,this.n=e.next},tf.prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var n=this.s.return;return void 0===n?Promise.resolve({value:e,done:!0}):t(n.apply(this.s,arguments))},throw:function(e){var n=this.s.return;return void 0===n?Promise.reject(e):t(n.apply(this.s,arguments))}},new tf(e)}var nf=0,rf=function(){function e(t,n){Nt(this,e),this.tracing=void 0,this.query=void 0,this.tracingChildren=void 0,this.originalTracing=void 0,this.id=void 0,this.tracing=t,this.originalTracing=JSON.parse(JSON.stringify(t)),this.query=n,this.id=nf++;var r=t.children||[];this.tracingChildren=r.map((function(t){return new e(t,n)}))}return Bt(e,[{key:"queryValue",get:function(){return this.query}},{key:"idValue",get:function(){return this.id}},{key:"children",get:function(){return this.tracingChildren}},{key:"message",get:function(){return this.tracing.message}},{key:"duration",get:function(){return this.tracing.duration_msec}},{key:"JSON",get:function(){return JSON.stringify(this.tracing,null,2)}},{key:"originalJSON",get:function(){return JSON.stringify(this.originalTracing,null,2)}},{key:"setTracing",value:function(t){var n=this;this.tracing=t;var r=t.children||[];this.tracingChildren=r.map((function(t){return new e(t,n.query)}))}},{key:"setQuery",value:function(e){this.query=e}},{key:"resetTracing",value:function(){this.tracing=this.originalTracing}}]),e}(),of=function(e){var t=e.predefinedQuery,n=e.visible,r=e.display,i=e.customStep,o=e.hideQuery,a=e.showAllSeries,u=vi().query,l=ci().period,c=co(),s=c.displayType,f=c.nocache,d=c.isTracingEnabled,h=c.seriesLimits,p=Cr().serverUrl,v=At(ee(!1),2),m=v[0],y=v[1],g=At(ee(),2),_=g[0],b=g[1],D=At(ee(),2),w=D[0],x=D[1],k=At(ee(),2),C=k[0],E=k[1],S=At(ee(),2),A=S[0],F=S[1],N=At(ee(),2),O=N[0],T=N[1],M=At(ee([]),2),B=M[0],I=M[1];ne((function(){A&&(b(void 0),x(void 0),E(void 0))}),[A]);var L=function(){var e=_a(ya().mark((function e(t){var n,r,i,o,a,u,l,c,s,f,d,h,p;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.fetchUrl,r=t.fetchQueue,i=t.displayType,o=t.query,a=t.stateSeriesLimits,u=t.showAllSeries,l=t.hideQuery,c=new AbortController,I([].concat(Ft(r),[c])),e.prev=3,e.delegateYield(ya().mark((function e(){var t,r,v,m,y,g,_,D,w,k,C,S;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:t="chart"===i,r=u?1/0:a[i],v=[],m=[],y=1,g=0,s=!1,f=!1,e.prev=8,h=ef(n);case 10:return e.next=12,h.next();case 12:if(!(s=!(p=e.sent).done)){e.next=28;break}if(_=p.value,!(null===l||void 0===l?void 0:l.includes(y-1))){e.next=18;break}return y++,e.abrupt("continue",25);case 18:return e.next=20,fetch(_,{signal:c.signal});case 20:return D=e.sent,e.next=23,D.json();case 23:w=e.sent,D.ok?(F(void 0),w.trace&&(k=new rf(w.trace,o[y-1]),m.push(k)),C=r-v.length,w.data.result.slice(0,C).forEach((function(e){e.group=y,v.push(e)})),g+=w.data.result.length,y++):F("".concat(w.errorType,"\r\n").concat(null===w||void 0===w?void 0:w.error));case 25:s=!1,e.next=10;break;case 28:e.next=34;break;case 30:e.prev=30,e.t0=e.catch(8),f=!0,d=e.t0;case 34:if(e.prev=34,e.prev=35,!s||null==h.return){e.next=39;break}return e.next=39,h.return();case 39:if(e.prev=39,!f){e.next=42;break}throw d;case 42:return e.finish(39);case 43:return e.finish(34);case 44:S="Showing ".concat(r," series out of ").concat(g," series due to performance reasons. Please narrow down the query, so it returns less series"),T(g>r?S:""),t?b(v):x(v),E(m);case 48:case"end":return e.stop()}}),e,null,[[8,30,34,44],[35,,39,43]])}))(),"t0",5);case 5:e.next=10;break;case 7:e.prev=7,e.t1=e.catch(3),e.t1 instanceof Error&&"AbortError"!==e.t1.name&&F("".concat(e.t1.name,": ").concat(e.t1.message));case 10:y(!1);case 11:case"end":return e.stop()}}),e,null,[[3,7]])})));return function(t){return e.apply(this,arguments)}}(),P=ue(Ws()(L,800),[]),z=ae((function(){var e=null!==t&&void 0!==t?t:u,n="chart"===(r||s);if(l)if(p)if(e.every((function(e){return!e.trim()})))F(Wo.validQuery);else{if(ta(p)){var o=or({},l);return o.step=i,e.map((function(e){return n?function(e,t,n,r,i){return"".concat(e,"/api/v1/query_range?query=").concat(encodeURIComponent(t),"&start=").concat(n.start,"&end=").concat(n.end,"&step=").concat(n.step).concat(r?"&nocache=1":"").concat(i?"&trace=1":"")}(p,e,o,f,d):function(e,t,n,r){return"".concat(e,"/api/v1/query?query=").concat(encodeURIComponent(t),"&time=").concat(n.end,"&step=").concat(n.step).concat(r?"&trace=1":"")}(p,e,o,d)}))}F(Wo.validServer)}else F(Wo.emptyServer)}),[p,l,s,i,o]);return ne((function(){n&&null!==z&&void 0!==z&&z.length&&(y(!0),P({fetchUrl:z,fetchQueue:B,displayType:r||s,query:null!==t&&void 0!==t?t:u,stateSeriesLimits:h,showAllSeries:a,hideQuery:o}))}),[z,n,h,a]),ne((function(){var e=B.slice(0,-1);e.length&&(e.map((function(e){return e.abort()})),I(B.filter((function(e){return!e.signal.aborted}))))}),[B]),{fetchUrl:z,isLoading:m,graphData:_,liveData:w,error:A,warning:O,traces:C}},af=function(e){var t=e.data,n=Fo().showInfoMessage,r=ae((function(){return JSON.stringify(t,null,2)}),[t]);return xr("div",{className:"vm-json-view",children:[xr("div",{className:"vm-json-view__copy",children:xr(Lo,{variant:"outlined",onClick:function(){navigator.clipboard.writeText(r),n({text:"Formatted JSON has been copied",type:"success"})},children:"Copy JSON"})}),xr("pre",{className:"vm-json-view__code",children:xr("code",{children:r})})]})},uf=function(e){var t=e.yaxis,n=e.setYaxisLimits,r=e.toggleEnableLimits,i=ae((function(){return Object.keys(t.limits.range)}),[t.limits.range]),o=ue(Ws()((function(e,r,i){var o=t.limits.range;o[r][i]=+e,o[r][0]===o[r][1]||o[r][0]>o[r][1]||n(o)}),500),[t.limits.range]),a=function(e,t){return function(n){o(n,e,t)}};return xr("div",{className:"vm-axes-limits",children:[xr(Gs,{value:t.limits.enable,onChange:r,label:"Fix the limits for y-axis"}),xr("div",{className:"vm-axes-limits-list",children:i.map((function(e){return xr("div",{className:"vm-axes-limits-list__inputs",children:[xr(ea,{label:"Min ".concat(e),type:"number",disabled:!t.limits.enable,value:t.limits.range[e][0],onChange:a(e,0)}),xr(ea,{label:"Max ".concat(e),type:"number",disabled:!t.limits.enable,value:t.limits.range[e][1],onChange:a(e,1)})]},e)}))})]})},lf="Axes settings",cf=function(e){var t=e.yaxis,n=e.setYaxisLimits,r=e.toggleEnableLimits,i=ie(null),o=At(ee(!1),2),a=o[0],u=o[1],l=ie(null);Po(i,(function(){return u(!1)}),l);var c=function(){u(!1)};return xr("div",{className:"vm-graph-settings",children:[xr(Ro,{title:lf,children:xr("div",{ref:l,children:xr(Lo,{variant:"text",startIcon:xr(_i,{}),onClick:function(){u((function(e){return!e}))}})})}),xr(zo,{open:a,buttonRef:l,placement:"bottom-right",onClose:c,children:xr("div",{className:"vm-graph-settings-popper",ref:i,children:[xr("div",{className:"vm-popper-header",children:[xr("h3",{className:"vm-popper-header__title",children:lf}),xr(Lo,{size:"small",startIcon:xr(bi,{}),onClick:c})]}),xr("div",{className:"vm-graph-settings-popper__body",children:xr(uf,{yaxis:t,setYaxisLimits:n,toggleEnableLimits:r})})]})})]})},sf=function(e){var t=e.containerStyles,n=void 0===t?{}:t,r=e.message;return xr("div",{className:"vm-spinner",style:n&&{},children:[xr("div",{className:"half-circle-spinner",children:[xr("div",{className:"circle circle-1"}),xr("div",{className:"circle circle-2"})]}),r&&xr("div",{className:"vm-spinner__message",children:r})]})},ff=function(){var e=Cr().serverUrl,t=At(ee([]),2),n=t[0],r=t[1],i=function(){var t=_a(ya().mark((function t(){var n,i,o;return ya().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e){t.next=2;break}return t.abrupt("return");case 2:return n="".concat(e,"/api/v1/label/__name__/values"),t.prev=3,t.next=6,fetch(n);case 6:return i=t.sent,t.next=9,i.json();case 9:o=t.sent,i.ok&&r(o.data),t.next=16;break;case 13:t.prev=13,t.t0=t.catch(3),console.error(t.t0);case 16:case"end":return t.stop()}}),t,null,[[3,13]])})));return function(){return t.apply(this,arguments)}}();return ne((function(){i()}),[e]),{queryOptions:n}},df=function(e){var t=e.value;return xr("div",{className:"vm-line-progress",children:[xr("div",{className:"vm-line-progress-track",children:xr("div",{className:"vm-line-progress-track__thumb",style:{width:"".concat(t,"%")}})}),xr("span",{children:[t.toFixed(2),"%"]})]})},hf=function e(t){var n,r=t.trace,i=t.totalMsec,o=At(ee({}),2),a=o[0],u=o[1],l=r.children&&!!r.children.length,c=r.duration/i*100;return xr("div",{className:"vm-nested-nav",children:[xr("div",{className:"vm-nested-nav-header",onClick:(n=r.idValue,function(){u((function(e){return or(or({},e),{},rr({},n,!e[n]))}))}),children:[l&&xr("div",{className:Ji()({"vm-nested-nav-header__icon":!0,"vm-nested-nav-header__icon_open":a[r.idValue]}),children:xr(Si,{})}),xr("div",{className:"vm-nested-nav-header__progress",children:xr(df,{value:c})}),xr("div",{className:"vm-nested-nav-header__message",children:r.message}),xr("div",{className:"vm-nested-nav-header__duration",children:"duration: ".concat(r.duration," ms")})]}),a[r.idValue]&&xr("div",{children:l&&r.children.map((function(t){return xr(e,{trace:t,totalMsec:i},t.duration)}))})]})},pf=function(e){var t=e.editable,n=void 0!==t&&t,r=e.defaultTile,i=void 0===r?"JSON":r,o=e.displayTitle,a=void 0===o||o,u=e.defaultJson,l=void 0===u?"":u,c=e.resetValue,f=void 0===c?"":c,d=e.onClose,h=e.onUpload,p=Fo().showInfoMessage,v=At(ee(l),2),m=v[0],y=v[1],g=At(ee(i),2),_=g[0],b=g[1],D=At(ee(""),2),w=D[0],x=D[1],k=At(ee(""),2),C=k[0],E=k[1],S=ae((function(){try{var e=JSON.parse(m),t=e.trace||e;return t.duration_msec?(new rf(t,""),""):Wo.traceNotFound}catch(s){return s instanceof Error?s.message:"Unknown error"}}),[m]),A=function(){var e=_a(ya().mark((function e(){return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,navigator.clipboard.writeText(m);case 2:p({text:"Formatted JSON has been copied",type:"success"});case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),F=function(){E(S),_.trim()||x(Wo.emptyTitle),S||w||(h(m,_),d())};return xr("div",{className:Ji()({"vm-json-form":!0,"vm-json-form_one-field":!a}),children:[a&&xr(ea,{value:_,label:"Title",error:w,onEnter:F,onChange:function(e){b(e)}}),xr(ea,{value:m,label:"JSON",type:"textarea",error:C,autofocus:!0,onChange:function(e){E(""),y(e)},disabled:!n}),xr("div",{className:"vm-json-form-footer",children:[xr("div",{className:"vm-json-form-footer__controls",children:[xr(Lo,{variant:"outlined",startIcon:xr(Vi,{}),onClick:A,children:"Copy JSON"}),f&&xr(Lo,{variant:"text",startIcon:xr(Di,{}),onClick:function(){y(f)},children:"Reset JSON"})]}),xr("div",{className:"vm-json-form-footer__controls vm-json-form-footer__controls_right",children:[xr(Lo,{variant:"outlined",color:"error",onClick:d,children:"Cancel"}),xr(Lo,{variant:"contained",onClick:F,children:"apply"})]})]})]})},vf=function(e){var t=e.traces,n=e.jsonEditor,r=void 0!==n&&n,i=e.onDeleteClick,o=At(ee(null),2),a=o[0],u=o[1],l=function(){u(null)};if(!t.length)return xr(So,{variant:"info",children:"Please re-run the query to see results of the tracing"});var c=function(e){return function(){i(e)}};return xr(y,{children:[xr("div",{className:"vm-tracings-view",children:t.map((function(e){return xr("div",{className:"vm-tracings-view-trace vm-block vm-block_empty-padding",children:[xr("div",{className:"vm-tracings-view-trace-header",children:[xr("h3",{className:"vm-tracings-view-trace-header-title",children:["Trace for ",xr("b",{className:"vm-tracings-view-trace-header-title__query",children:e.queryValue})]}),xr(Ro,{title:"Open JSON",children:xr(Lo,{variant:"text",startIcon:xr(Ri,{}),onClick:(t=e,function(){u(t)})})}),xr(Ro,{title:"Remove trace",children:xr(Lo,{variant:"text",color:"error",startIcon:xr(ji,{}),onClick:c(e)})})]}),xr("nav",{className:"vm-tracings-view-trace__nav",children:xr(hf,{trace:e,totalMsec:e.duration})})]},e.idValue);var t}))}),a&&xr(ra,{title:a.queryValue,onClose:l,children:xr(pf,{editable:r,displayTitle:r,defaultTile:a.queryValue,defaultJson:a.JSON,resetValue:a.originalJSON,onClose:l,onUpload:function(e,t){if(r&&a)try{a.setTracing(JSON.parse(e)),a.setQuery(t),u(null)}catch(s){console.error(s)}}})})]})},mf=function(e,t){return ae((function(){var n={};e.forEach((function(e){return Object.entries(e.metric).forEach((function(e){return n[e[0]]?n[e[0]].options.add(e[1]):n[e[0]]={options:new Set([e[1]])}}))}));var r=Object.entries(n).map((function(e){return{key:e[0],variations:e[1].options.size}})).sort((function(e,t){return e.variations-t.variations}));return t?r.filter((function(e){return t.includes(e.key)})):r}),[e,t])},yf=function(e){var t,n=e.checked,r=void 0!==n&&n,i=e.disabled,o=void 0!==i&&i,a=e.label,u=e.color,l=void 0===u?"secondary":u,c=e.onChange;return xr("div",{className:Ji()((rr(t={"vm-checkbox":!0,"vm-checkbox_disabled":o,"vm-checkbox_active":r},"vm-checkbox_".concat(l,"_active"),r),rr(t,"vm-checkbox_".concat(l),l),t)),onClick:function(){o||c(!r)},children:[xr("div",{className:"vm-checkbox-track",children:xr("div",{className:"vm-checkbox-track__thumb",children:xr(Ui,{})})}),a&&xr("span",{className:"vm-checkbox__label",children:a})]})},gf="Table settings",_f=function(e){var t=e.data,n=e.defaultColumns,r=void 0===n?[]:n,i=e.onChange,o=co().tableCompact,a=so(),u=mf(t),l=ie(null),c=At(ee(!1),2),s=c[0],f=c[1],d=ae((function(){return!u.length}),[u]),h=function(){f(!1)},p=function(e){return function(){!function(e){i(r.includes(e)?r.filter((function(t){return t!==e})):[].concat(Ft(r),[e]))}(e)}};return ne((function(){var e=u.map((function(e){return e.key}));Ks(e,r)||i(e)}),[u]),xr("div",{className:"vm-table-settings",children:[xr(Ro,{title:gf,children:xr("div",{ref:l,children:xr(Lo,{variant:"text",startIcon:xr(_i,{}),onClick:function(){f((function(e){return!e}))},disabled:d})})}),xr(zo,{open:s,onClose:h,placement:"bottom-right",buttonRef:l,children:xr("div",{className:"vm-table-settings-popper",children:[xr("div",{className:"vm-popper-header",children:[xr("h3",{className:"vm-popper-header__title",children:gf}),xr(Lo,{onClick:h,startIcon:xr(bi,{}),size:"small"})]}),xr("div",{className:"vm-table-settings-popper-list",children:xr(Gs,{label:"Compact view",value:o,onChange:function(){a({type:"TOGGLE_TABLE_COMPACT"})}})}),xr("div",{className:"vm-table-settings-popper-list",children:[xr("div",{className:"vm-table-settings-popper-list-header",children:[xr("h3",{className:"vm-table-settings-popper-list-header__title",children:"Display columns"}),xr(Ro,{title:"Reset to default",children:xr(Lo,{color:"primary",variant:"text",size:"small",onClick:function(){f(!1),i(u.map((function(e){return e.key})))},startIcon:xr(Di,{})})})]}),u.map((function(e){return xr("div",{className:"vm-table-settings-popper-list__item",children:xr(yf,{checked:r.includes(e.key),onChange:p(e.key),label:e.key,disabled:o})},e.key)}))]})]})})]})};function bf(e){return function(e,t){return Object.fromEntries(Object.entries(e).filter(t))}(e,(function(e){return!!e[1]}))}var Df=["__name__"],wf=function(e){var t=e.data,n=e.displayColumns,r=Fo().showInfoMessage,i=co().tableCompact,o=Xi(document.body),a=ie(null),u=At(ee(0),2),l=u[0],c=u[1],s=At(ee(0),2),f=s[0],d=s[1],h=At(ee(""),2),p=h[0],v=h[1],m=At(ee("asc"),2),y=m[0],g=m[1],_=i?mf([{group:0,metric:{Data:"Data"}}],["Data"]):mf(t,n),b=function(e){var t=e.__name__,n=Is(e,Df);return t||Object.keys(n).length?"".concat(t," ").concat(JSON.stringify(n)):""},D=ae((function(){var e=null===t||void 0===t?void 0:t.map((function(e){return{metadata:_.map((function(t){return i?Ps(e):e.metric[t.key]||"-"})),value:e.value?e.value[1]:"-",copyValue:b(e.metric)}})),n="Value"===p,r=_.findIndex((function(e){return e.key===p}));return n||-1!==r?e.sort((function(e,t){var i=n?Number(e.value):e.metadata[r],o=n?Number(t.value):t.metadata[r];return("asc"===y?io)?-1:1})):e}),[_,t,p,y,i]),w=ae((function(){return D.some((function(e){return e.copyValue}))}),[D]),x=function(){var e=_a(ya().mark((function e(t){return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,navigator.clipboard.writeText(t);case 2:r({text:"Row has been copied",type:"success"});case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),k=function(e){return function(){!function(e){g((function(t){return"asc"===t&&p===e?"desc":"asc"})),v(e)}(e)}},C=function(){if(a.current){var e=a.current.getBoundingClientRect().top;d(e<0?window.scrollY-l:0)}};return ne((function(){return window.addEventListener("scroll",C),function(){window.removeEventListener("scroll",C)}}),[a,l,o]),ne((function(){if(a.current){var e=a.current.getBoundingClientRect().top;c(e+window.scrollY)}}),[a,o]),D.length?xr("div",{className:"vm-table-view",children:xr("table",{className:"vm-table",ref:a,children:[xr("thead",{className:"vm-table-header",children:xr("tr",{className:"vm-table__row vm-table__row_header",style:{transform:"translateY(".concat(f,"px)")},children:[_.map((function(e,t){return xr("td",{className:"vm-table-cell vm-table-cell_header vm-table-cell_sort",onClick:k(e.key),children:xr("div",{className:"vm-table-cell__content",children:[e.key,xr("div",{className:Ji()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":p===e.key,"vm-table__sort-icon_desc":"desc"===y&&p===e.key}),children:xr(Ai,{})})]})},t)})),xr("td",{className:"vm-table-cell vm-table-cell_header vm-table-cell_right vm-table-cell_sort",onClick:k("Value"),children:xr("div",{className:"vm-table-cell__content",children:[xr("div",{className:Ji()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":"Value"===p,"vm-table__sort-icon_desc":"desc"===y}),children:xr(Ai,{})}),"Value"]})}),w&&xr("td",{className:"vm-table-cell vm-table-cell_header"})]})}),xr("tbody",{className:"vm-table-body",children:D.map((function(e,t){return xr("tr",{className:"vm-table__row",children:[e.metadata.map((function(e,n){return xr("td",{className:Ji()({"vm-table-cell vm-table-cell_no-wrap":!0,"vm-table-cell_gray":D[t-1]&&D[t-1].metadata[n]===e}),children:e},n)})),xr("td",{className:"vm-table-cell vm-table-cell_right",children:e.value}),w&&xr("td",{className:"vm-table-cell vm-table-cell_right",children:e.copyValue&&xr("div",{className:"vm-table-cell__content",children:xr(Ro,{title:"Copy row",children:xr(Lo,{variant:"text",color:"gray",size:"small",startIcon:xr(Vi,{}),onClick:(n=e.copyValue,function(){x(n)})})})})})]},t);var n}))})]})}):xr(So,{variant:"warning",children:"No data to show"})},xf=function(){var e=co(),t=e.displayType,n=e.isTracingEnabled,r=vi().query,i=ci().period,o=si();!function(){var e=Cr().tenantId,t=co().displayType,n=vi().query,r=ci(),i=r.duration,o=r.relativeTime,a=r.period,u=a.date,l=a.step,c=vo().customStep,s=function(){var r={};n.forEach((function(n,a){var s,f="g".concat(a);r["".concat(f,".expr")]=n,r["".concat(f,".range_input")]=i,r["".concat(f,".end_input")]=u,r["".concat(f,".tab")]=(null===(s=to.find((function(e){return e.value===t})))||void 0===s?void 0:s.prometheusCode)||0,r["".concat(f,".relative_time")]=o,r["".concat(f,".tenantID")]=e,l!==c&&c&&(r["".concat(f,".step_input")]=c)})),gr(bf(r))};ne(s,[e,t,n,i,o,u,l,c]),ne(s,[])}();var a=At(ee(),2),u=a[0],l=a[1],c=At(ee([]),2),s=c[0],f=c[1],d=At(ee([]),2),h=d[0],p=d[1],v=At(ee(!1),2),m=v[0],y=v[1],g=vo(),_=g.customStep,b=g.yaxis,D=mo(),w=ff().queryOptions,x=of({visible:!0,customStep:_,hideQuery:h,showAllSeries:m}),k=x.isLoading,C=x.liveData,E=x.graphData,S=x.error,A=x.warning,F=x.traces,N=function(e){D({type:"SET_YAXIS_LIMITS",payload:e})};return ne((function(){F&&f([].concat(Ft(s),Ft(F)))}),[F]),ne((function(){f([])}),[t]),ne((function(){y(!1)}),[r]),xr("div",{className:"vm-custom-panel",children:[xr(Xs,{error:S,queryOptions:w,onHideQuery:function(e){p(e)}}),n&&xr("div",{className:"vm-custom-panel__trace",children:xr(vf,{traces:s,onDeleteClick:function(e){var t=s.filter((function(t){return t.idValue!==e.idValue}));f(Ft(t))}})}),k&&xr(sf,{}),S&&xr(So,{variant:"error",children:S}),A&&xr(So,{variant:"warning",children:xr("div",{className:"vm-custom-panel__warning",children:[xr("p",{children:A}),xr(Lo,{color:"warning",variant:"outlined",onClick:function(){y(!0)},children:"Show all"})]})}),xr("div",{className:"vm-custom-panel-body vm-block",children:[xr("div",{className:"vm-custom-panel-body-header",children:[xr(no,{}),"chart"===t&&xr(cf,{yaxis:b,setYaxisLimits:N,toggleEnableLimits:function(){D({type:"TOGGLE_ENABLE_YAXIS_LIMITS"})}}),"table"===t&&xr(_f,{data:C||[],defaultColumns:u,onChange:l})]}),E&&i&&"chart"===t&&xr(Us,{data:E,period:i,customStep:_,query:r,yaxis:b,setYaxisLimits:N,setPeriod:function(e){var t=e.from,n=e.to;o({type:"SET_PERIOD",payload:{from:t,to:n}})}}),C&&"code"===t&&xr(af,{data:C}),C&&"table"===t&&xr(wf,{data:C,displayColumns:u})]})]})};function kf(){return{async:!1,baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1}}var Cf={async:!1,baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1};var Ef=/[&<>"']/,Sf=new RegExp(Ef.source,"g"),Af=/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,Ff=new RegExp(Af.source,"g"),Nf={"&":"&","<":"<",">":">",'"':""","'":"'"},Of=function(e){return Nf[e]};function Tf(e,t){if(t){if(Ef.test(e))return e.replace(Sf,Of)}else if(Af.test(e))return e.replace(Ff,Of);return e}var Mf=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/gi;function Bf(e){return e.replace(Mf,(function(e,t){return"colon"===(t=t.toLowerCase())?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""}))}var If=/(^|[^\[])\^/g;function Lf(e,t){e="string"===typeof e?e:e.source,t=t||"";var n={replace:function(t,r){return r=(r=r.source||r).replace(If,"$1"),e=e.replace(t,r),n},getRegex:function(){return new RegExp(e,t)}};return n}var Pf=/[^\w:]/g,zf=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function Rf(e,t,n){if(e){var r;try{r=decodeURIComponent(Bf(n)).replace(Pf,"").toLowerCase()}catch(s){return null}if(0===r.indexOf("javascript:")||0===r.indexOf("vbscript:")||0===r.indexOf("data:"))return null}t&&!zf.test(n)&&(n=function(e,t){jf[" "+e]||($f.test(e)?jf[" "+e]=e+"/":jf[" "+e]=Wf(e,"/",!0));e=jf[" "+e];var n=-1===e.indexOf(":");return"//"===t.substring(0,2)?n?t:e.replace(Uf,"$1")+t:"/"===t.charAt(0)?n?t:e.replace(Hf,"$1")+t:e+t}(t,n));try{n=encodeURI(n).replace(/%25/g,"%")}catch(s){return null}return n}var jf={},$f=/^[^:]+:\/*[^/]*$/,Uf=/^([^:]+:)[\s\S]*$/,Hf=/^([^:]+:\/*[^/]*)[\s\S]*$/;var Yf={exec:function(){}};function Vf(e){for(var t,n,r=1;r=0&&"\\"===n[i];)r=!r;return r?"|":" |"})).split(/ \|/),r=0;if(n[0].trim()||n.shift(),n.length>0&&!n[n.length-1].trim()&&n.pop(),n.length>t)n.splice(t);else for(;n.length1;)1&t&&(n+=e),t>>=1,e+=e;return n+e}function Jf(e,t,n,r){var i=t.href,o=t.title?Tf(t.title):null,a=e[1].replace(/\\([\[\]])/g,"$1");if("!"!==e[0].charAt(0)){r.state.inLink=!0;var u={type:"link",raw:n,href:i,title:o,text:a,tokens:r.inlineTokens(a)};return r.state.inLink=!1,u}return{type:"image",raw:n,href:i,title:o,text:Tf(a)}}var Zf=function(){function e(t){Nt(this,e),this.options=t||Cf}return Bt(e,[{key:"space",value:function(e){var t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}},{key:"code",value:function(e){var t=this.rules.block.code.exec(e);if(t){var n=t[0].replace(/^ {1,4}/gm,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?n:Wf(n,"\n")}}}},{key:"fences",value:function(e){var t=this.rules.block.fences.exec(e);if(t){var n=t[0],r=function(e,t){var n=e.match(/^(\s+)(?:```)/);if(null===n)return t;var r=n[1];return t.split("\n").map((function(e){var t=e.match(/^\s+/);return null===t?e:At(t,1)[0].length>=r.length?e.slice(r.length):e})).join("\n")}(n,t[3]||"");return{type:"code",raw:n,lang:t[2]?t[2].trim().replace(this.rules.inline._escapes,"$1"):t[2],text:r}}}},{key:"heading",value:function(e){var t=this.rules.block.heading.exec(e);if(t){var n=t[2].trim();if(/#$/.test(n)){var r=Wf(n,"#");this.options.pedantic?n=r.trim():r&&!/ $/.test(r)||(n=r.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:n,tokens:this.lexer.inline(n)}}}},{key:"hr",value:function(e){var t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:t[0]}}},{key:"blockquote",value:function(e){var t=this.rules.block.blockquote.exec(e);if(t){var n=t[0].replace(/^ *>[ \t]?/gm,""),r=this.lexer.state.top;this.lexer.state.top=!0;var i=this.lexer.blockTokens(n);return this.lexer.state.top=r,{type:"blockquote",raw:t[0],tokens:i,text:n}}}},{key:"list",value:function(e){var t=this.rules.block.list.exec(e);if(t){var n,r,i,o,a,u,l,c,s,f,d,h,p=t[1].trim(),v=p.length>1,m={type:"list",raw:"",ordered:v,start:v?+p.slice(0,-1):"",loose:!1,items:[]};p=v?"\\d{1,9}\\".concat(p.slice(-1)):"\\".concat(p),this.options.pedantic&&(p=v?p:"[*+-]");for(var y=new RegExp("^( {0,3}".concat(p,")((?:[\t ][^\\n]*)?(?:\\n|$))"));e&&(h=!1,t=y.exec(e))&&!this.rules.block.hr.test(e);){if(n=t[0],e=e.substring(n.length),c=t[2].split("\n",1)[0],s=e.split("\n",1)[0],this.options.pedantic?(o=2,d=c.trimLeft()):(o=(o=t[2].search(/[^ ]/))>4?1:o,d=c.slice(o),o+=t[1].length),u=!1,!c&&/^ *$/.test(s)&&(n+=s+"\n",e=e.substring(s.length+1),h=!0),!h)for(var g=new RegExp("^ {0,".concat(Math.min(3,o-1),"}(?:[*+-]|\\d{1,9}[.)])((?: [^\\n]*)?(?:\\n|$))")),_=new RegExp("^ {0,".concat(Math.min(3,o-1),"}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)")),b=new RegExp("^ {0,".concat(Math.min(3,o-1),"}(?:```|~~~)")),D=new RegExp("^ {0,".concat(Math.min(3,o-1),"}#"));e&&(c=f=e.split("\n",1)[0],this.options.pedantic&&(c=c.replace(/^ {1,4}(?=( {4})*[^ ])/g," ")),!b.test(c))&&!D.test(c)&&!g.test(c)&&!_.test(e);){if(c.search(/[^ ]/)>=o||!c.trim())d+="\n"+c.slice(o);else{if(u)break;d+="\n"+c}u||c.trim()||(u=!0),n+=f+"\n",e=e.substring(f.length+1)}m.loose||(l?m.loose=!0:/\n *\n *$/.test(n)&&(l=!0)),this.options.gfm&&(r=/^\[[ xX]\] /.exec(d))&&(i="[ ] "!==r[0],d=d.replace(/^\[[ xX]\] +/,"")),m.items.push({type:"list_item",raw:n,task:!!r,checked:i,loose:!1,text:d}),m.raw+=n}m.items[m.items.length-1].raw=n.trimRight(),m.items[m.items.length-1].text=d.trimRight(),m.raw=m.raw.trimRight();var w=m.items.length;for(a=0;a0&&x.some((function(e){return/\n.*\n/.test(e.raw)}));m.loose=k}if(m.loose)for(a=0;a$/,"$1").replace(this.rules.inline._escapes,"$1"):"",i=t[3]?t[3].substring(1,t[3].length-1).replace(this.rules.inline._escapes,"$1"):t[3];return{type:"def",tag:n,raw:t[0],href:r,title:i}}}},{key:"table",value:function(e){var t=this.rules.block.table.exec(e);if(t){var n={type:"table",header:qf(t[1]).map((function(e){return{text:e}})),align:t[2].replace(/^ *|\| *$/g,"").split(/ *\| */),rows:t[3]&&t[3].trim()?t[3].replace(/\n[ \t]*$/,"").split("\n"):[]};if(n.header.length===n.align.length){n.raw=t[0];var r,i,o,a,u=n.align.length;for(r=0;r/i.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:this.options.sanitize?"text":"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(t[0]):Tf(t[0]):t[0]}}},{key:"link",value:function(e){var t=this.rules.inline.link.exec(e);if(t){var n=t[2].trim();if(!this.options.pedantic&&/^$/.test(n))return;var r=Wf(n.slice(0,-1),"\\");if((n.length-r.length)%2===0)return}else{var i=function(e,t){if(-1===e.indexOf(t[1]))return-1;for(var n=e.length,r=0,i=0;i-1){var o=(0===t[0].indexOf("!")?5:4)+t[1].length+i;t[2]=t[2].substring(0,i),t[0]=t[0].substring(0,o).trim(),t[3]=""}}var a=t[2],u="";if(this.options.pedantic){var l=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(a);l&&(a=l[1],u=l[3])}else u=t[3]?t[3].slice(1,-1):"";return a=a.trim(),/^$/.test(n)?a.slice(1):a.slice(1,-1)),Jf(t,{href:a?a.replace(this.rules.inline._escapes,"$1"):a,title:u?u.replace(this.rules.inline._escapes,"$1"):u},t[0],this.lexer)}}},{key:"reflink",value:function(e,t){var n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){var r=(n[2]||n[1]).replace(/\s+/g," ");if(!(r=t[r.toLowerCase()])){var i=n[0].charAt(0);return{type:"text",raw:i,text:i}}return Jf(n,r,n[0],this.lexer)}}},{key:"emStrong",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=this.rules.inline.emStrong.lDelim.exec(e);if(r&&(!r[3]||!n.match(/(?:[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xBC-\xBE\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u0660-\u0669\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0966-\u096F\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09F9\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AE6-\u0AEF\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B6F\u0B71-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0BE6-\u0BF2\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C78-\u0C7E\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D58-\u0D61\u0D66-\u0D78\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DE6-\u0DEF\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F20-\u0F33\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F-\u1049\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1090-\u1099\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1369-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A20-\u1A54\u1A80-\u1A89\u1A90-\u1A99\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B50-\u1B59\u1B83-\u1BA0\u1BAE-\u1BE5\u1C00-\u1C23\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2150-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2CFD\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3192-\u3195\u31A0-\u31BF\u31F0-\u31FF\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA830-\uA835\uA840-\uA873\uA882-\uA8B3\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uA9E0-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDE80-\uDE9C\uDEA0-\uDED0\uDEE1-\uDEFB\uDF00-\uDF23\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC58-\uDC76\uDC79-\uDC9E\uDCA7-\uDCAF\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDD1B\uDD20-\uDD39\uDD80-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE40-\uDE48\uDE60-\uDE7E\uDE80-\uDE9F\uDEC0-\uDEC7\uDEC9-\uDEE4\uDEEB-\uDEEF\uDF00-\uDF35\uDF40-\uDF55\uDF58-\uDF72\uDF78-\uDF91\uDFA9-\uDFAF]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDD23\uDD30-\uDD39\uDE60-\uDE7E\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF27\uDF30-\uDF45\uDF51-\uDF54\uDF70-\uDF81\uDFB0-\uDFCB\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC52-\uDC6F\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD03-\uDD26\uDD36-\uDD3F\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDD0-\uDDDA\uDDDC\uDDE1-\uDDF4\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDEF0-\uDEF9\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC50-\uDC59\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE50-\uDE59\uDE80-\uDEAA\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF30-\uDF3B\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCF2\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC50-\uDC6C\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDF50-\uDF59\uDFB0\uDFC0-\uDFD4]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDE70-\uDEBE\uDEC0-\uDEC9\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE96\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD834[\uDEC0-\uDED3\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD40-\uDD49\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB\uDEF0-\uDEF9]|\uD839[\uDCD0-\uDCEB\uDCF0-\uDCF9\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDCC7-\uDCCF\uDD00-\uDD43\uDD4B\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])/))){var i=r[1]||r[2]||"";if(!i||i&&(""===n||this.rules.inline.punctuation.exec(n))){var o,a,u=r[0].length-1,l=u,c=0,s="*"===r[0][0]?this.rules.inline.emStrong.rDelimAst:this.rules.inline.emStrong.rDelimUnd;for(s.lastIndex=0,t=t.slice(-1*e.length+u);null!=(r=s.exec(t));)if(o=r[1]||r[2]||r[3]||r[4]||r[5]||r[6])if(a=o.length,r[3]||r[4])l+=a;else if(!((r[5]||r[6])&&u%3)||(u+a)%3){if(!((l-=a)>0)){a=Math.min(a,a+l+c);var f=e.slice(0,u+r.index+(r[0].length-o.length)+a);if(Math.min(u,a)%2){var d=f.slice(1,-1);return{type:"em",raw:f,text:d,tokens:this.lexer.inlineTokens(d)}}var h=f.slice(2,-2);return{type:"strong",raw:f,text:h,tokens:this.lexer.inlineTokens(h)}}}else c+=a}}}},{key:"codespan",value:function(e){var t=this.rules.inline.code.exec(e);if(t){var n=t[2].replace(/\n/g," "),r=/[^ ]/.test(n),i=/^ /.test(n)&&/ $/.test(n);return r&&i&&(n=n.substring(1,n.length-1)),n=Tf(n,!0),{type:"codespan",raw:t[0],text:n}}}},{key:"br",value:function(e){var t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}},{key:"del",value:function(e){var t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}},{key:"autolink",value:function(e,t){var n,r,i=this.rules.inline.autolink.exec(e);if(i)return r="@"===i[2]?"mailto:"+(n=Tf(this.options.mangle?t(i[1]):i[1])):n=Tf(i[1]),{type:"link",raw:i[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}},{key:"url",value:function(e,t){var n;if(n=this.rules.inline.url.exec(e)){var r,i;if("@"===n[2])i="mailto:"+(r=Tf(this.options.mangle?t(n[0]):n[0]));else{var o;do{o=n[0],n[0]=this.rules.inline._backpedal.exec(n[0])[0]}while(o!==n[0]);r=Tf(n[0]),i="www."===n[1]?"http://"+n[0]:n[0]}return{type:"link",raw:n[0],text:r,href:i,tokens:[{type:"text",raw:r,text:r}]}}}},{key:"inlineText",value:function(e,t){var n,r=this.rules.inline.text.exec(e);if(r)return n=this.lexer.state.inRawBlock?this.options.sanitize?this.options.sanitizer?this.options.sanitizer(r[0]):Tf(r[0]):r[0]:Tf(this.options.smartypants?t(r[0]):r[0]),{type:"text",raw:r[0],text:n}}}]),e}(),Kf={newline:/^(?: *(?:\n|$))+/,code:/^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/,fences:/^ {0,3}(`{3,}(?=[^`\n]*\n)|~{3,})([^\n]*)\n(?:|([\s\S]*?)\n)(?: {0,3}\1[~`]* *(?=\n|$)|$)/,hr:/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/,html:"^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n *)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$))",def:/^ {0,3}\[(label)\]: *(?:\n *)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n *)?| *\n *)(title))? *(?:\n+|$)/,table:Yf,lheading:/^((?:.|\n(?!\n))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,text:/^[^\n]+/,_label:/(?!\s*\])(?:\\.|[^\[\]\\])+/,_title:/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/};Kf.def=Lf(Kf.def).replace("label",Kf._label).replace("title",Kf._title).getRegex(),Kf.bullet=/(?:[*+-]|\d{1,9}[.)])/,Kf.listItemStart=Lf(/^( *)(bull) */).replace("bull",Kf.bullet).getRegex(),Kf.list=Lf(Kf.list).replace(/bull/g,Kf.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+Kf.def.source+")").getRegex(),Kf._tag="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|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",Kf._comment=/|$)/,Kf.html=Lf(Kf.html,"i").replace("comment",Kf._comment).replace("tag",Kf._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),Kf.paragraph=Lf(Kf._paragraph).replace("hr",Kf.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Kf._tag).getRegex(),Kf.blockquote=Lf(Kf.blockquote).replace("paragraph",Kf.paragraph).getRegex(),Kf.normal=Vf({},Kf),Kf.gfm=Vf({},Kf.normal,{table:"^ *([^\\n ].*\\|.*)\\n {0,3}(?:\\| *)?(:?-+:? *(?:\\| *:?-+:? *)*)(?:\\| *)?(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)"}),Kf.gfm.table=Lf(Kf.gfm.table).replace("hr",Kf.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Kf._tag).getRegex(),Kf.gfm.paragraph=Lf(Kf._paragraph).replace("hr",Kf.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("table",Kf.gfm.table).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Kf._tag).getRegex(),Kf.pedantic=Vf({},Kf.normal,{html:Lf("^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))").replace("comment",Kf._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:Yf,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:Lf(Kf.normal._paragraph).replace("hr",Kf.hr).replace("heading"," *#{1,6} *[^\n]").replace("lheading",Kf.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()});var Xf={escape:/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:Yf,tag:"^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(ref)\]/,nolink:/^!?\[(ref)\](?:\[\])?/,reflinkSearch:"reflink|nolink(?!\\()",emStrong:{lDelim:/^(?:\*+(?:([punct_])|[^\s*]))|^_+(?:([punct*])|([^\s_]))/,rDelimAst:/^(?:[^_*\\]|\\.)*?\_\_(?:[^_*\\]|\\.)*?\*(?:[^_*\\]|\\.)*?(?=\_\_)|(?:[^*\\]|\\.)+(?=[^*])|[punct_](\*+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\*+)(?=[punct_\s]|$)|[punct_\s](\*+)(?=[^punct*_\s])|[\s](\*+)(?=[punct_])|[punct_](\*+)(?=[punct_])|(?:[^punct*_\s\\]|\\.)(\*+)(?=[^punct*_\s])/,rDelimUnd:/^(?:[^_*\\]|\\.)*?\*\*(?:[^_*\\]|\\.)*?\_(?:[^_*\\]|\\.)*?(?=\*\*)|(?:[^_\\]|\\.)+(?=[^_])|[punct*](\_+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\_+)(?=[punct*\s]|$)|[punct*\s](\_+)(?=[^punct*_\s])|[\s](\_+)(?=[punct*])|[punct*](\_+)(?=[punct*])/},code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:Yf,text:/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\.5&&(n="x"+n.toString(16)),r+="&#"+n+";";return r}Xf._punctuation="!\"#$%&'()+\\-.,/:;<=>?@\\[\\]`^{|}~",Xf.punctuation=Lf(Xf.punctuation).replace(/punctuation/g,Xf._punctuation).getRegex(),Xf.blockSkip=/\[[^\]]*?\]\([^\)]*?\)|`[^`]*?`|<[^>]*?>/g,Xf.escapedEmSt=/(?:^|[^\\])(?:\\\\)*\\[*_]/g,Xf._comment=Lf(Kf._comment).replace("(?:--\x3e|$)","--\x3e").getRegex(),Xf.emStrong.lDelim=Lf(Xf.emStrong.lDelim).replace(/punct/g,Xf._punctuation).getRegex(),Xf.emStrong.rDelimAst=Lf(Xf.emStrong.rDelimAst,"g").replace(/punct/g,Xf._punctuation).getRegex(),Xf.emStrong.rDelimUnd=Lf(Xf.emStrong.rDelimUnd,"g").replace(/punct/g,Xf._punctuation).getRegex(),Xf._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g,Xf._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,Xf._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/,Xf.autolink=Lf(Xf.autolink).replace("scheme",Xf._scheme).replace("email",Xf._email).getRegex(),Xf._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/,Xf.tag=Lf(Xf.tag).replace("comment",Xf._comment).replace("attribute",Xf._attribute).getRegex(),Xf._label=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,Xf._href=/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/,Xf._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/,Xf.link=Lf(Xf.link).replace("label",Xf._label).replace("href",Xf._href).replace("title",Xf._title).getRegex(),Xf.reflink=Lf(Xf.reflink).replace("label",Xf._label).replace("ref",Kf._label).getRegex(),Xf.nolink=Lf(Xf.nolink).replace("ref",Kf._label).getRegex(),Xf.reflinkSearch=Lf(Xf.reflinkSearch,"g").replace("reflink",Xf.reflink).replace("nolink",Xf.nolink).getRegex(),Xf.normal=Vf({},Xf),Xf.pedantic=Vf({},Xf.normal,{strong:{start:/^__|\*\*/,middle:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,endAst:/\*\*(?!\*)/g,endUnd:/__(?!_)/g},em:{start:/^_|\*/,middle:/^()\*(?=\S)([\s\S]*?\S)\*(?!\*)|^_(?=\S)([\s\S]*?\S)_(?!_)/,endAst:/\*(?!\*)/g,endUnd:/_(?!_)/g},link:Lf(/^!?\[(label)\]\((.*?)\)/).replace("label",Xf._label).getRegex(),reflink:Lf(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",Xf._label).getRegex()}),Xf.gfm=Vf({},Xf.normal,{escape:Lf(Xf.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])([\s\S]*?[^\s~])\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\1&&void 0!==arguments[1]?arguments[1]:[];for(e=this.options.pedantic?e.replace(/\t/g," ").replace(/^ +$/gm,""):e.replace(/^( *)(\t+)/gm,(function(e,t,n){return t+" ".repeat(n.length)}));e;)if(!(this.options.extensions&&this.options.extensions.block&&this.options.extensions.block.some((function(n){return!!(t=n.call({lexer:o},e,a))&&(e=e.substring(t.raw.length),a.push(t),!0)}))))if(t=this.tokenizer.space(e))e=e.substring(t.raw.length),1===t.raw.length&&a.length>0?a[a.length-1].raw+="\n":a.push(t);else if(t=this.tokenizer.code(e))e=e.substring(t.raw.length),!(n=a[a.length-1])||"paragraph"!==n.type&&"text"!==n.type?a.push(t):(n.raw+="\n"+t.raw,n.text+="\n"+t.text,this.inlineQueue[this.inlineQueue.length-1].src=n.text);else if(t=this.tokenizer.fences(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.heading(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.hr(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.blockquote(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.list(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.html(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.def(e))e=e.substring(t.raw.length),!(n=a[a.length-1])||"paragraph"!==n.type&&"text"!==n.type?this.tokens.links[t.tag]||(this.tokens.links[t.tag]={href:t.href,title:t.title}):(n.raw+="\n"+t.raw,n.text+="\n"+t.raw,this.inlineQueue[this.inlineQueue.length-1].src=n.text);else if(t=this.tokenizer.table(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.lheading(e))e=e.substring(t.raw.length),a.push(t);else if(r=e,this.options.extensions&&this.options.extensions.startBlock&&function(){var t=1/0,n=e.slice(1),i=void 0;o.options.extensions.startBlock.forEach((function(e){"number"===typeof(i=e.call({lexer:this},n))&&i>=0&&(t=Math.min(t,i))})),t<1/0&&t>=0&&(r=e.substring(0,t+1))}(),this.state.top&&(t=this.tokenizer.paragraph(r)))n=a[a.length-1],i&&"paragraph"===n.type?(n.raw+="\n"+t.raw,n.text+="\n"+t.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=n.text):a.push(t),i=r.length!==e.length,e=e.substring(t.raw.length);else if(t=this.tokenizer.text(e))e=e.substring(t.raw.length),(n=a[a.length-1])&&"text"===n.type?(n.raw+="\n"+t.raw,n.text+="\n"+t.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=n.text):a.push(t);else if(e){var u="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(u);break}throw new Error(u)}return this.state.top=!0,a}},{key:"inline",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return this.inlineQueue.push({src:e,tokens:t}),t}},{key:"inlineTokens",value:function(e){var t,n,r,i,o,a,u=this,l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],c=e;if(this.tokens.links){var s=Object.keys(this.tokens.links);if(s.length>0)for(;null!=(i=this.tokenizer.rules.inline.reflinkSearch.exec(c));)s.includes(i[0].slice(i[0].lastIndexOf("[")+1,-1))&&(c=c.slice(0,i.index)+"["+Gf("a",i[0].length-2)+"]"+c.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;null!=(i=this.tokenizer.rules.inline.blockSkip.exec(c));)c=c.slice(0,i.index)+"["+Gf("a",i[0].length-2)+"]"+c.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;null!=(i=this.tokenizer.rules.inline.escapedEmSt.exec(c));)c=c.slice(0,i.index+i[0].length-2)+"++"+c.slice(this.tokenizer.rules.inline.escapedEmSt.lastIndex),this.tokenizer.rules.inline.escapedEmSt.lastIndex--;for(;e;)if(o||(a=""),o=!1,!(this.options.extensions&&this.options.extensions.inline&&this.options.extensions.inline.some((function(n){return!!(t=n.call({lexer:u},e,l))&&(e=e.substring(t.raw.length),l.push(t),!0)}))))if(t=this.tokenizer.escape(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.tag(e))e=e.substring(t.raw.length),(n=l[l.length-1])&&"text"===t.type&&"text"===n.type?(n.raw+=t.raw,n.text+=t.text):l.push(t);else if(t=this.tokenizer.link(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.reflink(e,this.tokens.links))e=e.substring(t.raw.length),(n=l[l.length-1])&&"text"===t.type&&"text"===n.type?(n.raw+=t.raw,n.text+=t.text):l.push(t);else if(t=this.tokenizer.emStrong(e,c,a))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.codespan(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.br(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.del(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.autolink(e,td))e=e.substring(t.raw.length),l.push(t);else if(this.state.inLink||!(t=this.tokenizer.url(e,td))){if(r=e,this.options.extensions&&this.options.extensions.startInline&&function(){var t=1/0,n=e.slice(1),i=void 0;u.options.extensions.startInline.forEach((function(e){"number"===typeof(i=e.call({lexer:this},n))&&i>=0&&(t=Math.min(t,i))})),t<1/0&&t>=0&&(r=e.substring(0,t+1))}(),t=this.tokenizer.inlineText(r,ed))e=e.substring(t.raw.length),"_"!==t.raw.slice(-1)&&(a=t.raw.slice(-1)),o=!0,(n=l[l.length-1])&&"text"===n.type?(n.raw+=t.raw,n.text+=t.text):l.push(t);else if(e){var f="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(f);break}throw new Error(f)}}else e=e.substring(t.raw.length),l.push(t);return l}}],[{key:"rules",get:function(){return{block:Kf,inline:Xf}}},{key:"lex",value:function(t,n){return new e(n).lex(t)}},{key:"lexInline",value:function(t,n){return new e(n).inlineTokens(t)}}]),e}(),rd=function(){function e(t){Nt(this,e),this.options=t||Cf}return Bt(e,[{key:"code",value:function(e,t,n){var r=(t||"").match(/\S*/)[0];if(this.options.highlight){var i=this.options.highlight(e,r);null!=i&&i!==e&&(n=!0,e=i)}return e=e.replace(/\n$/,"")+"\n",r?'
'+(n?e:Tf(e,!0))+"
\n":"
"+(n?e:Tf(e,!0))+"
\n"}},{key:"blockquote",value:function(e){return"
\n".concat(e,"
\n")}},{key:"html",value:function(e){return e}},{key:"heading",value:function(e,t,n,r){if(this.options.headerIds){var i=this.options.headerPrefix+r.slug(n);return"').concat(e,"\n")}return"").concat(e,"\n")}},{key:"hr",value:function(){return this.options.xhtml?"
\n":"
\n"}},{key:"list",value:function(e,t,n){var r=t?"ol":"ul";return"<"+r+(t&&1!==n?' start="'+n+'"':"")+">\n"+e+"\n"}},{key:"listitem",value:function(e){return"
  • ".concat(e,"
  • \n")}},{key:"checkbox",value:function(e){return" "}},{key:"paragraph",value:function(e){return"

    ".concat(e,"

    \n")}},{key:"table",value:function(e,t){return t&&(t="".concat(t,"")),"\n\n"+e+"\n"+t+"
    \n"}},{key:"tablerow",value:function(e){return"\n".concat(e,"\n")}},{key:"tablecell",value:function(e,t){var n=t.header?"th":"td";return(t.align?"<".concat(n,' align="').concat(t.align,'">'):"<".concat(n,">"))+e+"\n")}},{key:"strong",value:function(e){return"".concat(e,"")}},{key:"em",value:function(e){return"".concat(e,"")}},{key:"codespan",value:function(e){return"".concat(e,"")}},{key:"br",value:function(){return this.options.xhtml?"
    ":"
    "}},{key:"del",value:function(e){return"".concat(e,"")}},{key:"link",value:function(e,t,n){if(null===(e=Rf(this.options.sanitize,this.options.baseUrl,e)))return n;var r='"}},{key:"image",value:function(e,t,n){if(null===(e=Rf(this.options.sanitize,this.options.baseUrl,e)))return n;var r='').concat(n,'":">"}},{key:"text",value:function(e){return e}}]),e}(),id=function(){function e(){Nt(this,e)}return Bt(e,[{key:"strong",value:function(e){return e}},{key:"em",value:function(e){return e}},{key:"codespan",value:function(e){return e}},{key:"del",value:function(e){return e}},{key:"html",value:function(e){return e}},{key:"text",value:function(e){return e}},{key:"link",value:function(e,t,n){return""+n}},{key:"image",value:function(e,t,n){return""+n}},{key:"br",value:function(){return""}}]),e}(),od=function(){function e(){Nt(this,e),this.seen={}}return Bt(e,[{key:"serialize",value:function(e){return e.toLowerCase().trim().replace(/<[!\/a-z].*?>/gi,"").replace(/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,./:;<=>?@[\]^`{|}~]/g,"").replace(/\s/g,"-")}},{key:"getNextSafeSlug",value:function(e,t){var n=e,r=0;if(this.seen.hasOwnProperty(n)){r=this.seen[e];do{n=e+"-"+ ++r}while(this.seen.hasOwnProperty(n))}return t||(this.seen[e]=r,this.seen[n]=0),n}},{key:"slug",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=this.serialize(e);return this.getNextSafeSlug(n,t.dryrun)}}]),e}(),ad=function(){function e(t){Nt(this,e),this.options=t||Cf,this.options.renderer=this.options.renderer||new rd,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new id,this.slugger=new od}return Bt(e,[{key:"parse",value:function(e){var t,n,r,i,o,a,u,l,c,s,f,d,h,p,v,m,y,g,_,b=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],D="",w=e.length;for(t=0;t0&&"paragraph"===v.tokens[0].type?(v.tokens[0].text=g+" "+v.tokens[0].text,v.tokens[0].tokens&&v.tokens[0].tokens.length>0&&"text"===v.tokens[0].tokens[0].type&&(v.tokens[0].tokens[0].text=g+" "+v.tokens[0].tokens[0].text)):v.tokens.unshift({type:"text",text:g}):p+=g),p+=this.parse(v.tokens,h),c+=this.renderer.listitem(p,y,m);D+=this.renderer.list(c,f,d);continue;case"html":D+=this.renderer.html(s.text);continue;case"paragraph":D+=this.renderer.paragraph(this.parseInline(s.tokens));continue;case"text":for(c=s.tokens?this.parseInline(s.tokens):s.text;t+1An error occurred:

    "+Tf(e.message+"",!0)+"
    ";throw e}try{var l=nd.lex(e,t);if(t.walkTokens){if(t.async)return Promise.all(ud.walkTokens(l,t.walkTokens)).then((function(){return ad.parse(l,t)})).catch(u);ud.walkTokens(l,t.walkTokens)}return ad.parse(l,t)}catch(s){u(s)}}ud.options=ud.setOptions=function(e){var t;return Vf(ud.defaults,e),t=ud.defaults,Cf=t,ud},ud.getDefaults=kf,ud.defaults=Cf,ud.use=function(){for(var e=ud.defaults.extensions||{renderers:{},childTokens:{}},t=arguments.length,n=new Array(t),r=0;rAn error occurred:

    "+Tf(s.message+"",!0)+"
    ";throw s}},ud.Parser=ad,ud.parser=ad.parse,ud.Renderer=rd,ud.TextRenderer=id,ud.Lexer=nd,ud.lexer=nd.lex,ud.Tokenizer=Zf,ud.Slugger=od,ud.parse=ud;ud.options,ud.setOptions,ud.use,ud.walkTokens,ud.parseInline,ad.parse,nd.lex;var ld=function(e){var t=e.title,n=e.description,r=e.unit,i=e.expr,o=e.showLegend,a=e.filename,u=e.alias,l=ci(),c=l.period,s=l.duration,f=si(),d=Js(s),h=ie(null),p=At(ee(!0),2),v=p[0],m=p[1],g=At(ee(c.step||"1s"),2),_=g[0],b=g[1],D=At(ee({limits:{enable:!1,range:{1:[0,0]}}}),2),w=D[0],x=D[1],k=ae((function(){return Array.isArray(i)&&i.every((function(e){return e}))}),[i]),C=of({predefinedQuery:k?i:[],display:"chart",visible:v,customStep:_}),E=C.isLoading,S=C.graphData,A=C.error,F=C.warning,N=function(e){var t=or({},w);t.limits.range=e,x(t)};if(ne((function(){var e=new IntersectionObserver((function(e){e.forEach((function(e){return m(e.isIntersecting)}))}),{threshold:.1});return h.current&&e.observe(h.current),function(){h.current&&e.unobserve(h.current)}}),[]),ne((function(){s!==d&&d&&_&&b(c.step||"1s")}),[s,d]),!k)return xr(So,{variant:"error",children:[xr("code",{children:'"expr"'})," not found. Check the configuration file ",xr("b",{children:a}),"."]});var O=function(){return xr("div",{className:"vm-predefined-panel-header__description vm-default-styles",children:[n&&xr(y,{children:[xr("div",{children:[xr("span",{children:"Description:"}),xr("div",{dangerouslySetInnerHTML:{__html:ud.parse(n)}})]}),xr("hr",{})]}),xr("div",{children:[xr("span",{children:"Queries:"}),xr("div",{children:i.map((function(e,t){return xr("div",{children:e},"".concat(t,"_").concat(e))}))})]})]})};return xr("div",{className:"vm-predefined-panel",ref:h,children:[xr("div",{className:"vm-predefined-panel-header",children:[xr(Ro,{title:xr(O,{}),children:xr("div",{className:"vm-predefined-panel-header__info",children:xr(wi,{})})}),xr("h3",{className:"vm-predefined-panel-header__title",children:t||""}),xr("div",{className:"vm-predefined-panel-header__step",children:xr(Vs,{defaultStep:c.step,value:_,setStep:b})}),xr(cf,{yaxis:w,setYaxisLimits:N,toggleEnableLimits:function(){var e=or({},w);e.limits.enable=!e.limits.enable,x(e)}})]}),xr("div",{className:"vm-predefined-panel-body",children:[E&&xr(sf,{}),A&&xr(So,{variant:"error",children:A}),F&&xr(So,{variant:"warning",children:F}),S&&xr(Us,{data:S,period:c,customStep:_,query:i,yaxis:w,unit:r,alias:u,showLegend:o,setYaxisLimits:N,setPeriod:function(e){var t=e.from,n=e.to;f({type:"SET_PERIOD",payload:{from:t,to:n}})},fullWidth:!1})]})]})},cd=function(e){var t=e.index,n=e.title,r=e.panels,i=e.filename,o=Xi(document.body),a=ae((function(){return o.width/12}),[o]),u=At(ee(!t),2),l=u[0],c=u[1],s=At(ee([]),2),f=s[0],d=s[1];ne((function(){d(r&&r.map((function(e){return e.width||12})))}),[r]);var h=At(ee({start:0,target:0,enable:!1}),2),p=h[0],v=h[1],m=function(e){if(p.enable){var t=p.start,n=Math.ceil((t-e.clientX)/a);if(!(Math.abs(n)>=12)){var r=f.map((function(e,t){return e-(t===p.target?n:0)}));d(r)}}},y=function(){v(or(or({},p),{},{enable:!1}))},g=function(e){return function(t){!function(e,t){v({start:e.clientX,target:t,enable:!0})}(t,e)}};return ne((function(){return window.addEventListener("mousemove",m),window.addEventListener("mouseup",y),function(){window.removeEventListener("mousemove",m),window.removeEventListener("mouseup",y)}}),[p]),xr("div",{className:"vm-predefined-dashboard",children:xr(aa,{defaultExpanded:l,onChange:function(e){return c(e)},title:xr((function(){return xr("div",{className:Ji()({"vm-predefined-dashboard-header":!0,"vm-predefined-dashboard-header_open":l}),children:[(n||i)&&xr("span",{className:"vm-predefined-dashboard-header__title",children:n||"".concat(t+1,". ").concat(i)}),r&&xr("span",{className:"vm-predefined-dashboard-header__count",children:["(",r.length," panels)"]})]})}),{}),children:xr("div",{className:"vm-predefined-dashboard-panels",children:Array.isArray(r)&&r.length?r.map((function(e,t){return xr("div",{className:"vm-predefined-dashboard-panels-panel vm-block vm-block_empty-padding",style:{gridColumn:"span ".concat(f[t])},children:[xr(ld,{title:e.title,description:e.description,unit:e.unit,expr:e.expr,alias:e.alias,filename:i,showLegend:e.showLegend}),xr("button",{className:"vm-predefined-dashboard-panels-panel__resizer",onMouseDown:g(t)})]},t)})):xr("div",{className:"vm-predefined-dashboard-panels-panel__alert",children:xr(So,{variant:"error",children:[xr("code",{children:'"panels"'})," not found. Check the configuration file ",xr("b",{children:i}),"."]})})})})})},sd=function(){!function(){var e=ci(),t=e.duration,n=e.relativeTime,r=e.period,i=r.date,o=r.step,a=function(){var e,r=bf((rr(e={},"g0.range_input",t),rr(e,"g0.end_input",i),rr(e,"g0.step_input",o),rr(e,"g0.relative_time",n),e));gr(r)};ne(a,[t,n,i,o]),ne(a,[])}();var e=Bo(),t=e.dashboardsSettings,n=e.dashboardsLoading,r=e.dashboardsError,i=At(ee(0),2),o=i[0],a=i[1],u=ae((function(){return t.map((function(e,t){return{label:e.title||"",value:t}}))}),[t]),l=ae((function(){return t[o]||{}}),[t,o]),c=ae((function(){return null===l||void 0===l?void 0:l.rows}),[l]),s=ae((function(){return l.title||l.filename||""}),[l]),f=ae((function(){return Array.isArray(c)&&!!c.length}),[c]),d=function(e){return function(){!function(e){a(e)}(e)}};return xr("div",{className:"vm-predefined-panels",children:[n&&xr(sf,{}),r&&xr(So,{variant:"error",children:r}),!t.length&&xr(So,{variant:"info",children:"Dashboards not found"}),u.length>1&&xr("div",{className:"vm-predefined-panels-tabs vm-block",children:u.map((function(e){return xr("div",{className:Ji()({"vm-predefined-panels-tabs__tab":!0,"vm-predefined-panels-tabs__tab_active":e.value==o}),onClick:d(e.value),children:e.label},e.value)}))}),xr("div",{className:"vm-predefined-panels__dashboards",children:[f&&c.map((function(e,t){return xr(cd,{index:t,filename:s,title:e.title,panels:e.panels},"".concat(o,"_").concat(t))})),!!t.length&&!f&&xr(So,{variant:"error",children:[xr("code",{children:'"rows"'})," not found. Check the configuration file ",xr("b",{children:s}),"."]})]})]})},fd=function(e,t){var n=t.match?"&match[]="+encodeURIComponent(t.match):"",r=t.focusLabel?"&focusLabel="+encodeURIComponent(t.focusLabel):"";return"".concat(e,"/api/v1/status/tsdb?topN=").concat(t.topN,"&date=").concat(t.date).concat(n).concat(r)},dd=function(){function e(){Nt(this,e),this.tsdbStatus=void 0,this.tabsNames=void 0,this.tsdbStatus=this.defaultTSDBStatus,this.tabsNames=["table","graph"]}return Bt(e,[{key:"tsdbStatusData",get:function(){return this.tsdbStatus},set:function(e){this.tsdbStatus=e}},{key:"defaultTSDBStatus",get:function(){return{totalSeries:0,totalLabelValuePairs:0,seriesCountByMetricName:[],seriesCountByLabelName:[],seriesCountByFocusLabelValue:[],seriesCountByLabelValuePair:[],labelValueCountByLabelName:[]}}},{key:"keys",value:function(e){var t=[];return e&&(t=t.concat("seriesCountByFocusLabelValue")),t=t.concat("seriesCountByMetricName","seriesCountByLabelName","seriesCountByLabelValuePair","labelValueCountByLabelName"),t}},{key:"defaultState",get:function(){var e=this;return this.keys("job").reduce((function(t,n){return or(or({},t),{},{tabs:or(or({},t.tabs),{},rr({},n,e.tabsNames)),containerRefs:or(or({},t.containerRefs),{},rr({},n,ie(null))),defaultActiveTab:or(or({},t.defaultActiveTab),{},rr({},n,0))})}),{tabs:{},containerRefs:{},defaultActiveTab:{}})}},{key:"sectionsTitles",value:function(e){return{seriesCountByMetricName:"Metric names with the highest number of series",seriesCountByLabelName:"Labels with the highest number of series",seriesCountByFocusLabelValue:'Values for "'.concat(e,'" label with the highest number of series'),seriesCountByLabelValuePair:"Label=value pairs with the highest number of series",labelValueCountByLabelName:"Labels with the highest number of unique values"}}},{key:"tablesHeaders",get:function(){return{seriesCountByMetricName:hd,seriesCountByLabelName:pd,seriesCountByFocusLabelValue:vd,seriesCountByLabelValuePair:md,labelValueCountByLabelName:yd}}},{key:"totalSeries",value:function(e){return"labelValueCountByLabelName"===e?-1:this.tsdbStatus.totalSeries}}]),e}(),hd=[{id:"name",label:"Metric name"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{id:"action",label:"Action"}],pd=[{id:"name",label:"Label name"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{id:"action",label:"Action"}],vd=[{id:"name",label:"Label value"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{disablePadding:!1,id:"action",label:"Action",numeric:!1}],md=[{id:"name",label:"Label=value pair"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{id:"action",label:"Action"}],yd=[{id:"name",label:"Label name"},{id:"value",label:"Number of unique values"},{id:"action",label:"Action"}],gd={seriesCountByMetricName:function(e,t){return _d("__name__",t)},seriesCountByLabelName:function(e,t){return"{".concat(t,'!=""}')},seriesCountByFocusLabelValue:function(e,t){return _d(e,t)},seriesCountByLabelValuePair:function(e,t){var n=t.split("="),r=n[0],i=n.slice(1).join("=");return _d(r,i)},labelValueCountByLabelName:function(e,t){return"{".concat(t,'!=""}')}},_d=function(e,t){return e?"{"+e+"="+JSON.stringify(t)+"}":""},bd=function(e){var t=e.topN,n=e.error,r=e.query,i=e.onSetHistory,o=e.onRunQuery,a=e.onSetQuery,u=e.onTopNChange,l=e.onFocusLabelChange,c=e.totalSeries,s=e.totalLabelValuePairs,f=e.date,d=e.match,h=e.focusLabel,p=vi().autocomplete,v=mi(),m=ff().queryOptions,y=ae((function(){return t<1?"Number must be bigger than zero":""}),[t]);return xr("div",{className:"vm-cardinality-configurator vm-block",children:[xr("div",{className:"vm-cardinality-configurator-controls",children:[xr("div",{className:"vm-cardinality-configurator-controls__query",children:xr(Ys,{value:r||d||"",autocomplete:p,options:m,error:n,onArrowUp:function(){i(-1)},onArrowDown:function(){i(1)},onEnter:o,onChange:a,label:"Time series selector"})}),xr("div",{className:"vm-cardinality-configurator-controls__item",children:xr(ea,{label:"Number of entries per table",type:"number",value:t,error:y,onChange:u})}),xr("div",{className:"vm-cardinality-configurator-controls__item",children:xr(ea,{label:"Focus label",type:"text",value:h||"",onChange:l})}),xr("div",{className:"vm-cardinality-configurator-controls__item",children:xr(Gs,{label:"Autocomplete",value:p,onChange:function(){v({type:"TOGGLE_AUTOCOMPLETE"})}})})]}),xr("div",{className:"vm-cardinality-configurator-bottom",children:[xr("div",{className:"vm-cardinality-configurator-bottom__info",children:["Analyzed ",xr("b",{children:c})," series with ",xr("b",{children:s}),' "label=value" pairs at ',xr("b",{children:f}),d&&xr("span",{children:[" for series selector ",xr("b",{children:d})]}),". Show top ",t," entries per table."]}),xr(Lo,{startIcon:xr(Ii,{}),onClick:o,children:"Execute Query"})]})]})};function Dd(e){var t=e.order,n=e.orderBy,r=e.onRequestSort,i=e.headerCells;return xr("thead",{className:"vm-table-header",children:xr("tr",{className:"vm-table__row vm-table__row_header",children:i.map((function(e){return xr("th",{className:Ji()({"vm-table-cell vm-table-cell_header":!0,"vm-table-cell_sort":"action"!==e.id&&"percentage"!==e.id,"vm-table-cell_right":"action"===e.id}),onClick:(i=e.id,function(e){r(e,i)}),children:xr("div",{className:"vm-table-cell__content",children:[e.label,"action"!==e.id&&"percentage"!==e.id&&xr("div",{className:Ji()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":n===e.id,"vm-table__sort-icon_desc":"desc"===t&&n===e.id}),children:xr(Ai,{})})]})},e.id);var i}))})})}function wd(e,t,n){return t[n]e[n]?1:0}function xd(e,t){return"desc"===e?function(e,n){return wd(e,n,t)}:function(e,n){return-wd(e,n,t)}}function kd(e,t){var n=e.map((function(e,t){return[e,t]}));return n.sort((function(e,n){var r=t(e[0],n[0]);return 0!==r?r:e[1]-n[1]})),n.map((function(e){return e[0]}))}var Cd=function(e){var t=e.rows,n=e.headerCells,r=e.defaultSortColumn,i=e.tableCells,o=At(ee("desc"),2),a=o[0],u=o[1],l=At(ee(r),2),c=l[0],s=l[1],f=At(ee([]),2),d=f[0],h=f[1],p=function(e){return function(){var t=d.indexOf(e),n=[];-1===t?n=n.concat(d,e):0===t?n=n.concat(d.slice(1)):t===d.length-1?n=n.concat(d.slice(0,-1)):t>0&&(n=n.concat(d.slice(0,t),d.slice(t+1))),h(n)}},v=kd(t,xd(a,c));return xr("table",{className:"vm-table",children:[xr(Dd,{numSelected:d.length,order:a,orderBy:c,onSelectAllClick:function(e){if(e.target.checked){var n=t.map((function(e){return e.name}));h(n)}else h([])},onRequestSort:function(e,t){u(c===t&&"asc"===a?"desc":"asc"),s(t)},rowCount:t.length,headerCells:n}),xr("tbody",{className:"vm-table-header",children:v.map((function(e){return xr("tr",{className:Ji()({"vm-table__row":!0,"vm-table__row_selected":(t=e.name,-1!==d.indexOf(t))}),onClick:p(e.name),children:i(e)},e.name);var t}))})]})},Ed=function(e){var t=e.row,n=e.totalSeries,r=e.onActionClick,i=n>0?t.value/n*100:-1;return xr(y,{children:[xr("td",{className:"vm-table-cell",children:t.name},t.name),xr("td",{className:"vm-table-cell",children:t.value},t.value),i>0&&xr("td",{className:"vm-table-cell",children:xr(df,{value:i})},t.progressValue),xr("td",{className:"vm-table-cell vm-table-cell_right",children:xr("div",{className:"vm-table-cell__content",children:xr(Ro,{title:"Filter by ".concat(t.name),children:xr(Lo,{variant:"text",size:"small",onClick:function(){r(t.name)},children:xr(Li,{})})})})},"action")]})},Sd=function(e){var t=e.data,n=e.container,r=e.configs,i=ie(null),o=At(ee(),2),a=o[0],u=o[1],l=Xi(n),c=or(or({},r),{},{width:l.width||400});return ne((function(){if(i.current){var e=new ys(c,t,i.current);return u(e),e.destroy}}),[i.current,l]),ne((function(){a&&a.setData(t)}),[t]),xr("div",{style:{height:"100%"},children:xr("div",{ref:i})})},Ad=function(e,t){return Math.round(e*(t=Math.pow(10,t)))/t},Fd=1,Nd=function(e,t,n,r){return Ad(t+e*(n+r),6)},Od=function(e,t,n,r,i){var o=1-t,a=n===Fd?o/(e-1):2===n?o/e:3===n?o/(e+1):0;(isNaN(a)||a===1/0)&&(a=0);var u=n===Fd?0:2===n?a/2:3===n?a:0,l=t/e,c=Ad(l,6);if(null==r)for(var s=0;s=n&&e<=i&&t>=r&&t<=o};function Md(e,t,n,r,i){var o=this;o.x=e,o.y=t,o.w=n,o.h=r,o.l=i||0,o.o=[],o.q=null}var Bd={split:function(){var e=this,t=e.x,n=e.y,r=e.w/2,i=e.h/2,o=e.l+1;e.q=[new Md(t+r,n,r,i,o),new Md(t,n,r,i,o),new Md(t,n+i,r,i,o),new Md(t+r,n+i,r,i,o)]},quads:function(e,t,n,r,i){var o=this,a=o.q,u=o.x+o.w/2,l=o.y+o.h/2,c=tu,d=t+r>l;c&&f&&i(a[0]),s&&c&&i(a[1]),s&&d&&i(a[2]),f&&d&&i(a[3])},add:function(e){var t=this;if(null!=t.q)t.quads(e.x,e.y,e.w,e.h,(function(t){t.add(e)}));else{var n=t.o;if(n.push(e),n.length>10&&t.l<4){t.split();for(var r=function(e){var r=n[e];t.quads(r.x,r.y,r.w,r.h,(function(e){e.add(r)}))},i=0;i=0?"left":"right",e.ctx.textBaseline=1===s?"middle":i[n]>=0?"bottom":"top",e.ctx.fillText(i[n],f,g)}}))})),e.ctx.restore()}function b(e,t,n){return[0,ys.rangeNum(0,n,.05,!0)[1]]}return{hooks:{drawClear:function(t){var n;if((y=y||new Md(0,0,t.bbox.width,t.bbox.height)).clear(),t.series.forEach((function(e){e._paths=null})),l=d?[null].concat(m(t.data.length-1-o.length,t.data[0].length)):2===t.series.length?[null].concat(m(t.data[0].length,1)):[null].concat(function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:h,r=Array.from({length:t},(function(){return{offs:Array(e).fill(0),size:Array(e).fill(0)}}));return Od(e,n,p,null,(function(e,n,i){Od(t,1,v,null,(function(t,o,a){r[t].offs[e]=n+i*o,r[t].size[e]=i*a}))})),r}(t.data[0].length,t.data.length-1-o.length,1===t.data[0].length?1:h)),null!=(null===(n=e.disp)||void 0===n?void 0:n.fill)){c=[null];for(var r=1;r0&&!o.includes(t)&&ys.assign(e,{paths:g,points:{show:_}})}))}}}((Id=[1],Ld=0,Pd=1,zd=0,Rd=function(e,t){return{stroke:e,fill:t}}({unit:3,values:function(e){return e.data[1].map((function(e,t){return 0!==t?"#33BB55":"#F79420"}))}},{unit:3,values:function(e){return e.data[1].map((function(e,t){return 0!==t?"#33BB55":"#F79420"}))}}),{which:Id,ori:Ld,dir:Pd,radius:zd,disp:Rd}))]},$d=function(e){var t=e.rows,n=e.activeTab,r=e.onChange,i=e.tabs,o=e.chartContainer,a=e.totalSeries,u=e.tabId,l=e.onActionClick,c=e.sectionTitle,s=e.tableHeaderCells,f=ae((function(){return i.map((function(e,t){return{value:String(t),label:e,icon:xr(0===t?zi:Pi,{})}}))}),[i]);return xr("div",{className:"vm-metrics-content vm-block",children:[xr("div",{className:"vm-metrics-content-header vm-section-header",children:[xr("h5",{className:"vm-section-header__title",children:c}),xr("div",{className:"vm-section-header__tabs",children:xr(eo,{activeItem:String(n),items:f,onChange:function(e){r(e,u)}})})]}),xr("div",{ref:o,children:[0===n&&xr(Cd,{rows:t,headerCells:s,defaultSortColumn:"value",tableCells:function(e){return xr(Ed,{row:e,totalSeries:a,onActionClick:l})}}),1===n&&xr(Sd,{data:[t.map((function(e){return e.name})),t.map((function(e){return e.value})),t.map((function(e,t){return t%12==0?1:t%10==0?2:0}))],container:(null===o||void 0===o?void 0:o.current)||null,configs:jd})]})]})},Ud=function(){var e=bo(),t=e.topN,n=e.match,r=e.date,i=e.focusLabel,o=Do();!function(){var e=bo(),t=e.topN,n=e.match,r=e.date,i=e.focusLabel,o=e.extraLabel,a=function(){var e=bf({topN:t,date:r,match:n,extraLabel:o,focusLabel:i});gr(e)};ne(a,[t,n,r,i,o]),ne(a,[])}();var a=At(ee(n||""),2),u=a[0],l=a[1],c=At(ee(0),2),s=c[0],f=c[1],d=At(ee([]),2),h=d[0],p=d[1],v=function(){var e=new dd,t=bo(),n=t.topN,r=t.extraLabel,i=t.match,o=t.date,a=t.runQuery,u=t.focusLabel,l=Cr().serverUrl,c=At(ee(!1),2),s=c[0],f=c[1],d=At(ee(),2),h=d[0],p=d[1],v=At(ee(e.defaultTSDBStatus),2),m=v[0],y=v[1];ne((function(){h&&(y(e.defaultTSDBStatus),f(!1))}),[h]);var g=function(){var t=_a(ya().mark((function t(n){var r,i,o,a;return ya().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(l){t.next=2;break}return t.abrupt("return");case 2:return p(""),f(!0),y(e.defaultTSDBStatus),r=fd(l,n),t.prev=6,t.next=9,fetch(r);case 9:return i=t.sent,t.next=12,i.json();case 12:o=t.sent,i.ok?(a=o.data,y(or({},a)),f(!1)):(p(o.error),y(e.defaultTSDBStatus),f(!1)),t.next=20;break;case 16:t.prev=16,t.t0=t.catch(6),f(!1),t.t0 instanceof Error&&p("".concat(t.t0.name,": ").concat(t.t0.message));case 20:case"end":return t.stop()}}),t,null,[[6,16]])})));return function(e){return t.apply(this,arguments)}}();return ne((function(){g({topN:n,extraLabel:r,match:i,date:o,focusLabel:u})}),[l,a,o]),e.tsdbStatusData=m,{isLoading:s,appConfigurator:e,error:h}}(),m=v.isLoading,y=v.appConfigurator,g=v.error,_=At(ee(y.defaultState.defaultActiveTab),2),b=_[0],D=_[1],w=y.tsdbStatusData,x=y.defaultState,k=y.tablesHeaders,C=function(e,t){D(or(or({},b),{},rr({},t,+e)))};return xr("div",{className:"vm-cardinality-panel",children:[m&&xr(sf,{message:"Please wait while cardinality stats is calculated. \n This may take some time if the db contains big number of time series."}),xr(bd,{error:"",query:u,topN:t,date:r,match:n,totalSeries:w.totalSeries,totalLabelValuePairs:w.totalLabelValuePairs,focusLabel:i,onRunQuery:function(){p((function(e){return[].concat(Ft(e),[u])})),f((function(e){return e+1})),o({type:"SET_MATCH",payload:u}),o({type:"RUN_QUERY"})},onSetQuery:function(e){l(e)},onSetHistory:function(e){var t=s+e;t<0||t>=h.length||(f(t),l(h[t]))},onTopNChange:function(e){o({type:"SET_TOP_N",payload:+e})},onFocusLabelChange:function(e){o({type:"SET_FOCUS_LABEL",payload:e})}}),g&&xr(So,{variant:"error",children:g}),y.keys(i).map((function(e){return xr($d,{sectionTitle:y.sectionsTitles(i)[e],activeTab:b[e],rows:w[e],onChange:C,onActionClick:(t=e,function(e){var n=gd[t](i,e);l(n),p((function(e){return[].concat(Ft(e),[n])})),f((function(e){return e+1})),o({type:"SET_MATCH",payload:n});var r="";"labelValueCountByLabelName"!==t&&"seriesCountByLabelName"!=t||(r=e),o({type:"SET_FOCUS_LABEL",payload:r}),o({type:"RUN_QUERY"})}),tabs:x.tabs[e],chartContainer:x.containerRefs[e],totalSeries:y.totalSeries(e),tabId:e,tableHeaderCells:k[e]},e);var t}))]})},Hd=function(e){var t=e.rows,n=e.columns,r=At(ee(e.defaultOrderBy||"count"),2),i=r[0],o=r[1],a=At(ee("desc"),2),u=a[0],l=a[1],c=ae((function(){return kd(t,xd(u,i))}),[t,i,u]),s=function(e){return function(){var t;t=e,l((function(e){return"asc"===e&&i===t?"desc":"asc"})),o(t)}};return xr("table",{className:"vm-table",children:[xr("thead",{className:"vm-table-header",children:xr("tr",{className:"vm-table__row vm-table__row_header",children:n.map((function(e){return xr("th",{className:"vm-table-cell vm-table-cell_header vm-table-cell_sort",onClick:s(e.key),children:xr("div",{className:"vm-table-cell__content",children:[e.title||e.key,xr("div",{className:Ji()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":i===e.key,"vm-table__sort-icon_desc":"desc"===u&&i===e.key}),children:xr(Ai,{})})]})},e.key)}))})}),xr("tbody",{className:"vm-table-body",children:c.map((function(e,t){return xr("tr",{className:"vm-table__row",children:n.map((function(t){return xr("td",{className:"vm-table-cell",children:e[t.key]||"-"},t.key)}))},t)}))})]})},Yd=["table","JSON"].map((function(e,t){return{value:String(t),label:e,icon:xr(0===t?zi:Ri,{})}})),Vd=function(e){var t=e.rows,n=e.title,r=e.columns,i=e.defaultOrderBy,o=At(ee(0),2),a=o[0],u=o[1];return xr("div",{className:"vm-top-queries-panel vm-block",children:[xr("div",{className:"vm-top-queries-panel-header vm-section-header",children:[xr("h5",{className:"vm-section-header__title",children:n}),xr("div",{className:"vm-section-header__tabs",children:xr(eo,{activeItem:String(a),items:Yd,onChange:function(e){u(+e)}})})]}),xr("div",{children:[0===a&&xr(Hd,{rows:t,columns:r,defaultOrderBy:i}),1===a&&xr(af,{data:t})]})]})},qd=function(){var e=function(){var e=Cr().serverUrl,t=Co(),n=t.topN,r=t.maxLifetime,i=t.runQuery,o=At(ee(null),2),a=o[0],u=o[1],l=At(ee(!1),2),c=l[0],s=l[1],f=At(ee(),2),d=f[0],h=f[1],p=ae((function(){return function(e,t,n){return"".concat(e,"/api/v1/status/top_queries?topN=").concat(t||"","&maxLifetime=").concat(n||"")}(e,n,r)}),[e,n,r]),v=function(){var e=_a(ya().mark((function e(){var t,n;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return s(!0),e.prev=1,e.next=4,fetch(p);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,t.ok&&["topByAvgDuration","topByCount","topBySumDuration"].forEach((function(e){var t=n[e];Array.isArray(t)&&t.forEach((function(e){return e.timeRangeHours=+(e.timeRangeSeconds/3600).toFixed(2)}))})),u(t.ok?n:null),h(String(n.error||"")),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&"AbortError"!==e.t0.name&&h("".concat(e.t0.name,": ").concat(e.t0.message));case 16:s(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();return ne((function(){v()}),[i]),{data:a,error:d,loading:c}}(),t=e.data,n=e.error,r=e.loading,i=Co(),o=i.topN,a=i.maxLifetime,u=le(ko).dispatch;!function(){var e=Co(),t=e.topN,n=e.maxLifetime,r=function(){var e=bf({topN:String(t),maxLifetime:n});gr(e)};ne(r,[t,n]),ne(r,[])}();var l=ae((function(){var e=a.trim().split(" ").reduce((function(e,t){var n=zr(t);return n?or(or({},e),n):or({},e)}),{});return!!_t().duration(e).asMilliseconds()}),[a]),c=ae((function(){return!!o&&o<1}),[o]),s=ae((function(){return c?"Number must be bigger than zero":""}),[c]),f=ae((function(){return l?"":"Invalid duration value"}),[l]),d=function(e){if(!t)return e;var n=t[e];return"number"===typeof n?Ds(n):n||e},h=function(){u({type:"SET_RUN_QUERY"})},p=function(e){"Enter"===e.key&&h()};return ne((function(){t&&(o||u({type:"SET_TOP_N",payload:+t.topN}),a||u({type:"SET_MAX_LIFE_TIME",payload:t.maxLifetime}))}),[t]),xr("div",{className:"vm-top-queries",children:[r&&xr(sf,{containerStyles:{height:"500px"}}),xr("div",{className:"vm-top-queries-controls vm-block",children:[xr("div",{className:"vm-top-queries-controls__fields",children:[xr(ea,{label:"Max lifetime",value:a,error:f,helperText:"For example ".concat("30ms, 15s, 3d4h, 1y2w"),onChange:function(e){u({type:"SET_MAX_LIFE_TIME",payload:e})},onKeyDown:p}),xr(ea,{label:"Number of returned queries",type:"number",value:o||"",error:s,onChange:function(e){u({type:"SET_TOP_N",payload:+e})},onKeyDown:p})]}),xr("div",{className:"vm-top-queries-controls-bottom",children:[xr("div",{className:"vm-top-queries-controls-bottom__info",children:["VictoriaMetrics tracks the last\xa0",xr(Ro,{title:"search.queryStats.lastQueriesCount",children:xr("b",{children:d("search.queryStats.lastQueriesCount")})}),"\xa0queries with durations at least\xa0",xr(Ro,{title:"search.queryStats.minQueryDuration",children:xr("b",{children:d("search.queryStats.minQueryDuration")})})]}),xr("div",{className:"vm-top-queries-controls-bottom__button",children:xr(Lo,{startIcon:xr(Ii,{}),onClick:h,children:"Execute"})})]})]}),n&&xr(So,{variant:"error",children:n}),t&&xr(y,{children:xr("div",{className:"vm-top-queries-panels",children:[xr(Vd,{rows:t.topByCount,title:"Most frequently executed queries",columns:[{key:"query"},{key:"timeRangeHours",title:"time range, hours"},{key:"count"}]}),xr(Vd,{rows:t.topByAvgDuration,title:"Most heavy queries",columns:[{key:"query"},{key:"avgDurationSeconds",title:"avg duration, seconds"},{key:"timeRangeHours",title:"time range, hours"},{key:"count"}],defaultOrderBy:"avgDurationSeconds"}),xr(Vd,{rows:t.topBySumDuration,title:"Queries with most summary time to execute",columns:[{key:"query"},{key:"sumDurationSeconds",title:"sum duration, seconds"},{key:"timeRangeHours",title:"time range, hours"},{key:"count"}],defaultOrderBy:"sumDurationSeconds"})]})})]})},Wd=["primary","secondary","error","warning","info","success"],Qd=function(e){var t=e.setLoadingTheme,n=sr().palette,r=void 0===n?{}:n,i=function(){Wd.forEach((function(e){var t=function(e){var t=e.replace("#","").trim();if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6!==t.length)throw new Error("Invalid HEX color.");return(299*parseInt(t.slice(0,2),16)+587*parseInt(t.slice(2,4),16)+114*parseInt(t.slice(4,6),16))/1e3>=128?"#000000":"#FFFFFF"}(Zi("color-".concat(e)));Ki("".concat(e,"-text"),t)}))};return ne((function(){Wd.forEach((function(e){var t=r[e];t&&Ki("color-".concat(e),t)})),function(){var e=window,t=e.innerWidth,n=e.innerHeight,r=document.documentElement,i=r.clientWidth,o=r.clientHeight;Ki("scrollbar-width","".concat(t-i,"px")),Ki("scrollbar-height","".concat(n-o,"px"))}(),i(),t(!1)}),[]),null},Gd=function(){var e=At(ee(!1),2),t=e[0],n=e[1],r=At(ee([]),2),i=r[0],o=r[1],a=At(ee([]),2),u=a[0],l=a[1],c=ae((function(){return!!i.length}),[i]),f=function(){n(!0)},d=function(){n(!1)},h=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";l((function(n){return[{filename:t,text:": ".concat(e.message)}].concat(Ft(n))}))},p=function(e,t){try{var n=JSON.parse(e),r=n.trace||n;if(!r.duration_msec)return void h(new Error(Wo.traceNotFound),t);var i=new rf(r,t);o((function(e){return[i].concat(Ft(e))}))}catch(s){s instanceof Error&&h(s,t)}},v=function(e){l([]),Array.from(e.target.files||[]).map((function(e){var t=new FileReader,n=(null===e||void 0===e?void 0:e.name)||"";t.onload=function(e){var t,r=String(null===(t=e.target)||void 0===t?void 0:t.result);p(r,n)},t.readAsText(e)})),e.target.value=""},m=function(e){return function(){!function(e){l((function(t){return t.filter((function(t,n){return n!==e}))}))}(e)}};ne((function(){gr({})}),[]);var y=function(){return xr("div",{className:"vm-trace-page-controls",children:[xr(Lo,{variant:"outlined",onClick:f,children:"Paste JSON"}),xr(Ro,{title:"The file must contain tracing information in JSON format",children:xr(Lo,{children:["Upload Files",xr("input",{id:"json",type:"file",accept:"application/json",multiple:!0,title:" ",onChange:v})]})})]})};return xr("div",{className:"vm-trace-page",children:[xr("div",{className:"vm-trace-page-header",children:[xr("div",{className:"vm-trace-page-header-errors",children:u.map((function(e,t){return xr("div",{className:"vm-trace-page-header-errors-item",children:[xr(So,{variant:"error",children:[xr("b",{className:"vm-trace-page-header-errors-item__filename",children:e.filename}),xr("span",{children:e.text})]}),xr(Lo,{className:"vm-trace-page-header-errors-item__close",startIcon:xr(bi,{}),variant:"text",color:"error",onClick:m(t)})]},"".concat(e,"_").concat(t))}))}),xr("div",{children:c&&xr(y,{})})]}),c&&xr("div",{children:xr(vf,{jsonEditor:!0,traces:i,onDeleteClick:function(e){var t=i.filter((function(t){return t.idValue!==e.idValue}));o(Ft(t))}})}),!c&&xr("div",{className:"vm-trace-page-preview",children:[xr("p",{className:"vm-trace-page-preview__text",children:["Please, upload file with JSON response content.","\n","The file must contain tracing information in JSON format.","\n","In order to use tracing please refer to the doc:\xa0",xr("a",{className:"vm__link vm__link_colored",href:"https://docs.victoriametrics.com/#query-tracing",target:"_blank",rel:"noreferrer",children:"https://docs.victoriametrics.com/#query-tracing"}),"\n","Tracing graph will be displayed after file upload."]}),xr(y,{})]}),t&&xr(ra,{title:"Paste JSON",onClose:d,children:xr(pf,{editable:!0,displayTitle:!0,defaultTile:"JSON ".concat(i.length+1),onClose:d,onUpload:p})})]})},Jd=function(e){var t=Cr().serverUrl,n=ci().period,r=At(ee([]),2),i=r[0],o=r[1],a=At(ee(!1),2),u=a[0],l=a[1],c=At(ee(),2),s=c[0],f=c[1],d=ae((function(){return function(e,t,n){var r="{job=".concat(JSON.stringify(n),"}");return"".concat(e,"/api/v1/label/instance/values?match[]=").concat(encodeURIComponent(r),"&start=").concat(t.start,"&end=").concat(t.end)}(t,n,e)}),[t,n,e]);return ne((function(){if(e){var t=function(){var e=_a(ya().mark((function e(){var t,n,r;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return l(!0),e.prev=1,e.next=4,fetch(d);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,r=n.data||[],o(r.sort((function(e,t){return e.localeCompare(t)}))),t.ok?f(void 0):f("".concat(n.errorType,"\r\n").concat(null===n||void 0===n?void 0:n.error)),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&f("".concat(e.t0.name,": ").concat(e.t0.message));case 16:l(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();t().catch(console.error)}}),[d]),{instances:i,isLoading:u,error:s}},Zd=function(e,t){var n=Cr().serverUrl,r=ci().period,i=At(ee([]),2),o=i[0],a=i[1],u=At(ee(!1),2),l=u[0],c=u[1],s=At(ee(),2),f=s[0],d=s[1],h=ae((function(){return function(e,t,n,r){var i=Object.entries({job:n,instance:r}).filter((function(e){return e[1]})).map((function(e){var t=At(e,2),n=t[0],r=t[1];return"".concat(n,"=").concat(JSON.stringify(r))})).join(","),o="{".concat(i,"}");return"".concat(e,"/api/v1/label/__name__/values?match[]=").concat(encodeURIComponent(o),"&start=").concat(t.start,"&end=").concat(t.end)}(n,r,e,t)}),[n,r,e,t]);return ne((function(){if(e){var t=function(){var e=_a(ya().mark((function e(){var t,n,r;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c(!0),e.prev=1,e.next=4,fetch(h);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,r=n.data||[],a(r.sort((function(e,t){return e.localeCompare(t)}))),t.ok?d(void 0):d("".concat(n.errorType,"\r\n").concat(null===n||void 0===n?void 0:n.error)),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&d("".concat(e.t0.name,": ").concat(e.t0.message));case 16:c(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();t().catch(console.error)}}),[h]),{names:o,isLoading:l,error:f}},Kd=function(e){var t=e.name,n=e.job,r=e.instance,i=e.rateEnabled,o=e.isBucket,a=e.height,u=vo(),l=u.customStep,c=u.yaxis,s=ci().period,f=mo(),d=si(),h=At(ee(!1),2),p=h[0],v=h[1],m=ae((function(){var e=Object.entries({job:n,instance:r}).filter((function(e){return e[1]})).map((function(e){var t=At(e,2),n=t[0],r=t[1];return"".concat(n,"=").concat(JSON.stringify(r))}));e.push("__name__=".concat(JSON.stringify(t))),"node_cpu_seconds_total"==t&&e.push('mode!="idle"');var a="{".concat(e.join(","),"}");if(o)return r?'\nlabel_map(\n histogram_quantiles("__name__", 0.5, 0.95, 0.99, sum(rate('.concat(a,')) by (vmrange, le)),\n "__name__",\n "0.5", "q50",\n "0.95", "q95",\n "0.99", "q99",\n)'):"\nwith (q = histogram_quantile(0.95, sum(rate(".concat(a,')) by (instance, vmrange, le))) (\n alias(min(q), "q95min"),\n alias(max(q), "q95max"),\n alias(avg(q), "q95avg"),\n)');var u=i?"rollup_rate(".concat(a,")"):"rollup(".concat(a,")");return"\nwith (q = ".concat(u,') (\n alias(min(label_match(q, "rollup", "min")), "min"),\n alias(max(label_match(q, "rollup", "max")), "max"),\n alias(avg(label_match(q, "rollup", "avg")), "avg"),\n)')}),[t,n,r,i,o]),y=of({predefinedQuery:[m],visible:!0,customStep:l,showAllSeries:p}),g=y.isLoading,_=y.graphData,b=y.error,D=y.warning;return xr("div",{className:"vm-explore-metrics-graph",children:[g&&xr(sf,{}),b&&xr(So,{variant:"error",children:b}),D&&xr(So,{variant:"warning",children:xr("div",{className:"vm-explore-metrics-graph__warning",children:[xr("p",{children:D}),xr(Lo,{color:"warning",variant:"outlined",onClick:function(){v(!0)},children:"Show all"})]})}),_&&s&&xr(Us,{data:_,period:s,customStep:l,query:[m],yaxis:c,setYaxisLimits:function(e){f({type:"SET_YAXIS_LIMITS",payload:e})},setPeriod:function(e){var t=e.from,n=e.to;d({type:"SET_PERIOD",payload:{from:t,to:n}})},showLegend:!1,height:a})]})},Xd=function(e){var t=e.name,n=e.index,r=e.isBucket,i=e.rateEnabled,o=e.onChangeRate,a=e.onRemoveItem,u=e.onChangeOrder;return xr("div",{className:"vm-explore-metrics-item-header",children:[xr("div",{className:"vm-explore-metrics-item-header-order",children:[xr(Ro,{title:"move graph up",children:xr(Lo,{className:"vm-explore-metrics-item-header-order__up",startIcon:xr(Si,{}),variant:"text",color:"gray",size:"small",onClick:function(){u(t,n,n-1)}})}),xr("div",{className:"vm-explore-metrics-item-header__index",children:["#",n+1]}),xr(Ro,{title:"move graph down",children:xr(Lo,{className:"vm-explore-metrics-item-header-order__down",startIcon:xr(Si,{}),variant:"text",color:"gray",size:"small",onClick:function(){u(t,n,n+1)}})})]}),xr("div",{className:"vm-explore-metrics-item-header__name",children:t}),!r&&xr(Ro,{title:"calculates the average per-second speed of metric's change",children:xr(Gs,{label:xr("span",{children:["enable ",xr("code",{children:"rate()"})]}),value:i,onChange:o})}),xr("div",{className:"vm-explore-metrics-item-header__layout",children:xr(Ro,{title:"close graph",children:xr(Lo,{startIcon:xr(bi,{}),variant:"text",color:"gray",size:"small",onClick:function(){a(t)}})})})]})},eh=function(e){var t=e.name,n=e.job,r=e.instance,i=e.index,o=e.size,a=e.onRemoveItem,u=e.onChangeOrder,l=ae((function(){return/_sum?|_total?|_count?/.test(t)}),[t]),c=ae((function(){return/_bucket?/.test(t)}),[t]),s=At(ee(l),2),f=s[0],d=s[1],h=Xi(document.body),p=ae(o.height,[o,h]);return ne((function(){d(l)}),[n]),xr("div",{className:"vm-explore-metrics-item vm-block vm-block_empty-padding",children:[xr(Xd,{name:t,index:i,isBucket:c,rateEnabled:f,size:o.id,onChangeRate:d,onRemoveItem:a,onChangeOrder:u}),xr(Kd,{name:t,job:n,instance:r,rateEnabled:f,isBucket:c,height:p},"".concat(t,"_").concat(n,"_").concat(r,"_").concat(f))]})},th=function(e){var t=e.value,n=e.list,r=e.label,i=e.placeholder,o=e.noOptionsText,a=e.clearable,u=void 0!==a&&a,l=e.autofocus,c=e.onChange,s=At(ee(""),2),f=s[0],d=s[1],h=ie(null),p=At(ee(!1),2),v=p[0],m=p[1],y=ie(null),g=ae((function(){return Array.isArray(t)}),[t]),_=ae((function(){return Array.isArray(t)?t:void 0}),[g,t]),b=ae((function(){return v?f:Array.isArray(t)?"":t}),[t,f,v,g]),D=ae((function(){return v?f||"(.+)":""}),[f,v]),w=function(){y.current&&y.current.blur()},x=function(e){c(e),g||(m(!1),w()),g&&y.current&&y.current.focus()},k=function(e){return function(t){x(e),t.stopPropagation()}},C=function(e){y.current!==e.target&&m(!1)};return ne((function(){d(""),v&&y.current&&y.current.focus(),v||w()}),[v,y]),ne((function(){l&&y.current&&y.current.focus()}),[l,y]),ne((function(){return window.addEventListener("keyup",C),function(){window.removeEventListener("keyup",C)}}),[]),xr("div",{className:"vm-select",children:[xr("div",{className:"vm-select-input",onClick:function(e){e.target instanceof HTMLInputElement||m((function(e){return!e}))},ref:h,children:[xr("div",{className:"vm-select-input-content",children:[_&&_.map((function(e){return xr("div",{className:"vm-select-input-content__selected",children:[e,xr("div",{onClick:k(e),children:xr(bi,{})})]},e)})),xr("input",{value:b,type:"text",placeholder:i,onInput:function(e){d(e.target.value)},onFocus:function(){m(!0)},ref:y})]}),r&&xr("span",{className:"vm-text-field__label",children:r}),u&&t&&xr("div",{className:"vm-select-input__icon",onClick:k(""),children:xr(bi,{})}),xr("div",{className:Ji()({"vm-select-input__icon":!0,"vm-select-input__icon_open":v}),children:xr(Ai,{})})]}),xr(Hs,{value:D,options:n,anchor:h,selected:_,maxWords:10,minLength:0,fullWidth:!0,noOptionsText:o,onSelect:x,onOpenAutocomplete:m})]})},nh=yr.map((function(e){return e.id})),rh=function(e){var t=e.jobs,n=e.instances,r=e.names,i=e.job,o=e.instance,a=e.size,u=e.selectedMetrics,l=e.onChangeJob,c=e.onChangeInstance,s=e.onToggleMetric,f=e.onChangeSize,d=ci(),h=d.period.step,p=d.duration,v=vo().customStep,m=mo(),y=Js(p),g=ae((function(){return i?"":"No instances. Please select job"}),[i]),_=ae((function(){return i?"":"No metric names. Please select job"}),[i]),b=function(e){m({type:"SET_CUSTOM_STEP",payload:e})};return ne((function(){p!==y&&y&&v&&b(h||"1s")}),[p,y]),ne((function(){!v&&h&&b(h)}),[h]),xr("div",{className:"vm-explore-metrics-header vm-block",children:[xr("div",{className:"vm-explore-metrics-header__job",children:xr(th,{value:i,list:t,label:"Job",placeholder:"Please select job",onChange:l,autofocus:!i})}),xr("div",{className:"vm-explore-metrics-header__instance",children:xr(th,{value:o,list:n,label:"Instance",placeholder:"Please select instance",onChange:c,noOptionsText:g,clearable:!0})}),xr("div",{className:"vm-explore-metrics-header__step",children:xr(Vs,{defaultStep:h,setStep:b,value:v})}),xr("div",{className:"vm-explore-metrics-header__size",children:xr(th,{label:"Size graphs",value:a,list:nh,onChange:f})}),xr("div",{className:"vm-explore-metrics-header-metrics",children:xr(th,{value:u,list:r,placeholder:"Search metric name",onChange:s,noOptionsText:_,clearable:!0})})]})},ih=_r("job",""),oh=_r("instance",""),ah=_r("metrics",""),uh=_r("size",""),lh=yr.find((function(e){return uh?e.id===uh:e.isDefault}))||yr[0],ch=function(){var e=At(ee(ih),2),t=e[0],n=e[1],r=At(ee(oh),2),i=r[0],o=r[1],a=At(ee(ah?ah.split("&"):[]),2),u=a[0],l=a[1],c=At(ee(lh),2),s=c[0],f=c[1];!function(e){var t=e.job,n=e.instance,r=e.metrics,i=e.size,o=ci(),a=o.duration,u=o.relativeTime,l=o.period,c=l.date,s=l.step,f=function(){var e,o=bf((rr(e={},"g0.range_input",a),rr(e,"g0.end_input",c),rr(e,"g0.step_input",s),rr(e,"g0.relative_time",u),rr(e,"size",i),rr(e,"job",t),rr(e,"instance",n),rr(e,"metrics",r),e));gr(o)};ne(f,[a,u,c,s,t,n,r,i]),ne(f,[])}({job:t,instance:i,metrics:u.join("&"),size:s.id});var d=function(){var e=Cr().serverUrl,t=ci().period,n=At(ee([]),2),r=n[0],i=n[1],o=At(ee(!1),2),a=o[0],u=o[1],l=At(ee(),2),c=l[0],s=l[1],f=ae((function(){return function(e,t){return"".concat(e,"/api/v1/label/job/values?start=").concat(t.start,"&end=").concat(t.end)}(e,t)}),[e,t]);return ne((function(){var e=function(){var e=_a(ya().mark((function e(){var t,n,r;return ya().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return u(!0),e.prev=1,e.next=4,fetch(f);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,r=n.data||[],i(r.sort((function(e,t){return e.localeCompare(t)}))),t.ok?s(void 0):s("".concat(n.errorType,"\r\n").concat(null===n||void 0===n?void 0:n.error)),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&s("".concat(e.t0.name,": ").concat(e.t0.message));case 16:u(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();e().catch(console.error)}),[f]),{jobs:r,isLoading:a,error:c}}(),h=d.jobs,p=d.isLoading,v=d.error,m=Jd(t),y=m.instances,g=m.isLoading,_=m.error,b=Zd(t,i),D=b.names,w=b.isLoading,x=b.error,k=ae((function(){return p||g||w}),[p,g,w]),C=ae((function(){return v||_||x}),[v,_,x]),E=function(e){l(e?function(t){return t.includes(e)?t.filter((function(t){return t!==e})):[].concat(Ft(t),[e])}:[])},S=function(e,t,n){var r=n>u.length-1;n<0||r||l((function(e){var r=Ft(e),i=At(r.splice(t,1),1)[0];return r.splice(n,0,i),r}))};return ne((function(){i&&y.length&&!y.includes(i)&&o("")}),[y,i]),xr("div",{className:"vm-explore-metrics",children:[xr(rh,{jobs:h,instances:y,names:D,job:t,size:s.id,instance:i,selectedMetrics:u,onChangeJob:n,onChangeSize:function(e){var t=yr.find((function(t){return t.id===e}));t&&f(t)},onChangeInstance:o,onToggleMetric:E}),k&&xr(sf,{}),C&&xr(So,{variant:"error",children:C}),!t&&xr(So,{variant:"info",children:"Please select job to see list of metric names."}),t&&!u.length&&xr(So,{variant:"info",children:"Please select metric names to see the graphs."}),xr("div",{className:"vm-explore-metrics-body",children:u.map((function(e,n){return xr(eh,{name:e,job:t,instance:i,index:n,size:s,onRemoveItem:E,onChangeOrder:S},e)}))})]})},sh=function(){var e=Fo().showInfoMessage,n=function(t){return function(){var n;n=t,navigator.clipboard.writeText("<".concat(n,"/>")),e({text:"<".concat(n,"/> has been copied"),type:"success"})}};return xr("div",{className:"vm-preview-icons",children:Object.entries(t).map((function(e){var t=At(e,2),r=t[0],i=t[1];return xr("div",{className:"vm-preview-icons-item",onClick:n(r),children:[xr("div",{className:"vm-preview-icons-item__svg",children:i()}),xr("div",{className:"vm-preview-icons-item__name",children:"<".concat(r,"/>")})]},r)}))})},fh=function(){var e=At(ee(!0),2),t=e[0],n=e[1];return xr(y,t?{children:[xr(sf,{}),xr(Qd,{setLoadingTheme:n}),";"]}:{children:xr(Xn,{children:xr(Io,{children:xr(Zn,{children:xr(Gn,{path:"/",element:xr(wa,{}),children:[xr(Gn,{path:cr.home,element:xr(xf,{})}),xr(Gn,{path:cr.metrics,element:xr(ch,{})}),xr(Gn,{path:cr.cardinality,element:xr(Ud,{})}),xr(Gn,{path:cr.topQueries,element:xr(qd,{})}),xr(Gn,{path:cr.trace,element:xr(Gd,{})}),xr(Gn,{path:cr.dashboards,element:xr(sd,{})}),xr(Gn,{path:cr.icons,element:xr(sh,{})})]})})})})})},dh=function(e){e&&n.e(27).then(n.bind(n,27)).then((function(t){var n=t.getCLS,r=t.getFID,i=t.getFCP,o=t.getLCP,a=t.getTTFB;n(e),r(e),i(e),o(e),a(e)}))},hh=document.getElementById("root");hh&&Ve(xr(fh,{}),hh),dh()}()}(); \ No newline at end of file diff --git a/app/vmselect/vmui/static/js/main.9c17bdf0.js.LICENSE.txt b/app/vmselect/vmui/static/js/main.84759f8d.js.LICENSE.txt similarity index 100% rename from app/vmselect/vmui/static/js/main.9c17bdf0.js.LICENSE.txt rename to app/vmselect/vmui/static/js/main.84759f8d.js.LICENSE.txt diff --git a/app/vmselect/vmui/static/js/main.9c17bdf0.js b/app/vmselect/vmui/static/js/main.9c17bdf0.js deleted file mode 100644 index cd6635891..000000000 --- a/app/vmselect/vmui/static/js/main.9c17bdf0.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see main.9c17bdf0.js.LICENSE.txt */ -!function(){var e={680:function(e,t,n){"use strict";var r=n(476),i=n(962),o=i(r("String.prototype.indexOf"));e.exports=function(e,t){var n=r(e,!!t);return"function"===typeof n&&o(e,".prototype.")>-1?i(n):n}},962:function(e,t,n){"use strict";var r=n(199),i=n(476),o=i("%Function.prototype.apply%"),a=i("%Function.prototype.call%"),u=i("%Reflect.apply%",!0)||r.call(a,o),l=i("%Object.getOwnPropertyDescriptor%",!0),c=i("%Object.defineProperty%",!0),s=i("%Math.max%");if(c)try{c({},"a",{value:1})}catch(d){c=null}e.exports=function(e){var t=u(r,a,arguments);if(l&&c){var n=l(t,"length");n.configurable&&c(t,"length",{value:1+s(0,e.length-(arguments.length-1))})}return t};var f=function(){return u(r,o,arguments)};c?c(e.exports,"apply",{value:f}):e.exports.apply=f},123:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function i(){for(var e=[],t=0;t=t?e:""+Array(t+1-r.length).join(n)+e},g={s:y,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),i=n%60;return(t<=0?"+":"-")+y(r,2,"0")+":"+y(i,2,"0")},m:function e(t,n){if(t.date()1)return e(a[0])}else{var u=t.name;b[u]=t,i=u}return!r&&i&&(_=i),i||!r&&_},x=function(e,t){if(D(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new C(n)},k=g;k.l=w,k.i=D,k.w=function(e,t){return x(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var C=function(){function m(e){this.$L=w(e.locale,null,!0),this.parse(e)}var y=m.prototype;return y.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(null===t)return new Date(NaN);if(k.u(t))return new Date;if(t instanceof Date)return new Date(t);if("string"==typeof t&&!/Z$/i.test(t)){var r=t.match(p);if(r){var i=r[2]-1||0,o=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,o)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,o)}}return new Date(t)}(e),this.$x=e.x||{},this.init()},y.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},y.$utils=function(){return k},y.isValid=function(){return!(this.$d.toString()===h)},y.isSame=function(e,t){var n=x(e);return this.startOf(t)<=n&&n<=this.endOf(t)},y.isAfter=function(e,t){return x(e)=0&&(o[f]=parseInt(s,10))}var d=o[3],h=24===d?0:d,p=o[0]+"-"+o[1]+"-"+o[2]+" "+h+":"+o[4]+":"+o[5]+":000",v=+t;return(i.utc(p).valueOf()-(v-=v%1e3))/6e4},l=r.prototype;l.tz=function(e,t){void 0===e&&(e=o);var n=this.utcOffset(),r=this.toDate(),a=r.toLocaleString("en-US",{timeZone:e}),u=Math.round((r-new Date(a))/1e3/60),l=i(a).$set("millisecond",this.$ms).utcOffset(15*-Math.round(r.getTimezoneOffset()/15)-u,!0);if(t){var c=l.utcOffset();l=l.add(n-c,"minute")}return l.$x.$timezone=e,l},l.offsetName=function(e){var t=this.$x.$timezone||i.tz.guess(),n=a(this.valueOf(),t,{timeZoneName:e}).find((function(e){return"timezonename"===e.type.toLowerCase()}));return n&&n.value};var c=l.startOf;l.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return c.call(this,e,t);var n=i(this.format("YYYY-MM-DD HH:mm:ss:SSS"));return c.call(n,e,t).tz(this.$x.$timezone,!0)},i.tz=function(e,t,n){var r=n&&t,a=n||t||o,l=u(+i(),a);if("string"!=typeof e)return i(e).tz(a);var c=function(e,t,n){var r=e-60*t*1e3,i=u(r,n);if(t===i)return[r,t];var o=u(r-=60*(i-t)*1e3,n);return i===o?[r,i]:[e-60*Math.min(i,o)*1e3,Math.max(i,o)]}(i.utc(e,r).valueOf(),l,a),s=c[0],f=c[1],d=i(s).utcOffset(f);return d.$x.$timezone=a,d},i.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},i.tz.setDefault=function(e){o=e}}}()},635:function(e){e.exports=function(){"use strict";var e="minute",t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,i,o){var a=i.prototype;o.utc=function(e){return new i({date:e,utc:!0,args:arguments})},a.utc=function(t){var n=o(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},a.local=function(){return o(this.toDate(),{locale:this.$L,utc:!1})};var u=a.parse;a.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),u.call(this,e)};var l=a.init;a.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else l.call(this)};var c=a.utcOffset;a.utcOffset=function(r,i){var o=this.$utils().u;if(o(r))return this.$u?0:o(this.$offset)?c.call(this):this.$offset;if("string"==typeof r&&(r=function(e){void 0===e&&(e="");var r=e.match(t);if(!r)return null;var i=(""+r[0]).match(n)||["-",0,0],o=i[0],a=60*+i[1]+ +i[2];return 0===a?0:"+"===o?a:-a}(r),null===r))return this;var a=Math.abs(r)<=16?60*r:r,u=this;if(i)return u.$offset=a,u.$u=0===r,u;if(0!==r){var l=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();(u=this.local().add(a+l,e)).$offset=a,u.$x.$localOffset=l}else u=this.utc();return u};var s=a.format;a.format=function(e){var t=e||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return s.call(this,t)},a.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},a.isUTC=function(){return!!this.$u},a.toISOString=function(){return this.toDate().toISOString()},a.toString=function(){return this.toDate().toUTCString()};var f=a.toDate;a.toDate=function(e){return"s"===e&&this.$offset?o(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():f.call(this)};var d=a.diff;a.diff=function(e,t,n){if(e&&this.$u===e.$u)return d.call(this,e,t,n);var r=this.local(),i=o(e).local();return d.call(r,i,t,n)}}}()},781:function(e){"use strict";var t="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,r=Object.prototype.toString,i="[object Function]";e.exports=function(e){var o=this;if("function"!==typeof o||r.call(o)!==i)throw new TypeError(t+o);for(var a,u=n.call(arguments,1),l=function(){if(this instanceof a){var t=o.apply(this,u.concat(n.call(arguments)));return Object(t)===t?t:this}return o.apply(e,u.concat(n.call(arguments)))},c=Math.max(0,o.length-u.length),s=[],f=0;f1&&"boolean"!==typeof t)throw new a('"allowMissing" argument must be a boolean');if(null===k(/^%?[^%]*%?$/,e))throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=S(e),r=n.length>0?n[0]:"",o=A("%"+r+"%",t),u=o.name,c=o.value,s=!1,f=o.alias;f&&(r=f[0],D(n,b([0,1],f)));for(var d=1,h=!0;d=n.length){var g=l(c,p);c=(h=!!g)&&"get"in g&&!("originalValue"in g.get)?g.get:c[p]}else h=_(c,p),c=c[p];h&&!s&&(v[u]=c)}}return c}},520:function(e,t,n){"use strict";var r="undefined"!==typeof Symbol&&Symbol,i=n(541);e.exports=function(){return"function"===typeof r&&("function"===typeof Symbol&&("symbol"===typeof r("foo")&&("symbol"===typeof Symbol("bar")&&i())))}},541:function(e){"use strict";e.exports=function(){if("function"!==typeof Symbol||"function"!==typeof Object.getOwnPropertySymbols)return!1;if("symbol"===typeof Symbol.iterator)return!0;var e={},t=Symbol("test"),n=Object(t);if("string"===typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"===typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"===typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var r=Object.getOwnPropertySymbols(e);if(1!==r.length||r[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"===typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(e,t);if(42!==i.value||!0!==i.enumerable)return!1}return!0}},838:function(e,t,n){"use strict";var r=n(199);e.exports=r.call(Function.call,Object.prototype.hasOwnProperty)},936:function(e,t,n){var r=/^\s+|\s+$/g,i=/^[-+]0x[0-9a-f]+$/i,o=/^0b[01]+$/i,a=/^0o[0-7]+$/i,u=parseInt,l="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,c="object"==typeof self&&self&&self.Object===Object&&self,s=l||c||Function("return this")(),f=Object.prototype.toString,d=Math.max,h=Math.min,p=function(){return s.Date.now()};function v(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function m(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==f.call(e)}(e))return NaN;if(v(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=v(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(r,"");var n=o.test(e);return n||a.test(e)?u(e.slice(2),n?2:8):i.test(e)?NaN:+e}e.exports=function(e,t,n){var r,i,o,a,u,l,c=0,s=!1,f=!1,y=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function g(t){var n=r,o=i;return r=i=void 0,c=t,a=e.apply(o,n)}function _(e){return c=e,u=setTimeout(D,t),s?g(e):a}function b(e){var n=e-l;return void 0===l||n>=t||n<0||f&&e-c>=o}function D(){var e=p();if(b(e))return w(e);u=setTimeout(D,function(e){var n=t-(e-l);return f?h(n,o-(e-c)):n}(e))}function w(e){return u=void 0,y&&r?g(e):(r=i=void 0,a)}function x(){var e=p(),n=b(e);if(r=arguments,i=this,l=e,n){if(void 0===u)return _(l);if(f)return u=setTimeout(D,t),g(l)}return void 0===u&&(u=setTimeout(D,t)),a}return t=m(t)||0,v(n)&&(s=!!n.leading,o=(f="maxWait"in n)?d(m(n.maxWait)||0,t):o,y="trailing"in n?!!n.trailing:y),x.cancel=function(){void 0!==u&&clearTimeout(u),c=0,r=l=i=u=void 0},x.flush=function(){return void 0===u?a:w(p())},x}},7:function(e,t,n){var r="__lodash_hash_undefined__",i="[object Function]",o="[object GeneratorFunction]",a=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,u=/^\w*$/,l=/^\./,c=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,s=/\\(\\)?/g,f=/^\[object .+?Constructor\]$/,d="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,h="object"==typeof self&&self&&self.Object===Object&&self,p=d||h||Function("return this")();var v=Array.prototype,m=Function.prototype,y=Object.prototype,g=p["__core-js_shared__"],_=function(){var e=/[^.]+$/.exec(g&&g.keys&&g.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),b=m.toString,D=y.hasOwnProperty,w=y.toString,x=RegExp("^"+b.call(D).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),k=p.Symbol,C=v.splice,E=P(p,"Map"),S=P(Object,"create"),A=k?k.prototype:void 0,F=A?A.toString:void 0;function N(e){var t=-1,n=e?e.length:0;for(this.clear();++t-1},O.prototype.set=function(e,t){var n=this.__data__,r=M(n,e);return r<0?n.push([e,t]):n[r][1]=t,this},T.prototype.clear=function(){this.__data__={hash:new N,map:new(E||O),string:new N}},T.prototype.delete=function(e){return L(this,e).delete(e)},T.prototype.get=function(e){return L(this,e).get(e)},T.prototype.has=function(e){return L(this,e).has(e)},T.prototype.set=function(e,t){return L(this,e).set(e,t),this};var z=R((function(e){var t;e=null==(t=e)?"":function(e){if("string"==typeof e)return e;if(H(e))return F?F.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(t);var n=[];return l.test(e)&&n.push(""),e.replace(c,(function(e,t,r,i){n.push(r?i.replace(s,"$1"):t||e)})),n}));function j(e){if("string"==typeof e||H(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function R(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function n(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a),a};return n.cache=new(R.Cache||T),n}R.Cache=T;var $=Array.isArray;function U(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function H(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==w.call(e)}e.exports=function(e,t,n){var r=null==e?void 0:B(e,t);return void 0===r?n:r}},61:function(e,t,n){var r="Expected a function",i=/^\s+|\s+$/g,o=/^[-+]0x[0-9a-f]+$/i,a=/^0b[01]+$/i,u=/^0o[0-7]+$/i,l=parseInt,c="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,s="object"==typeof self&&self&&self.Object===Object&&self,f=c||s||Function("return this")(),d=Object.prototype.toString,h=Math.max,p=Math.min,v=function(){return f.Date.now()};function m(e,t,n){var i,o,a,u,l,c,s=0,f=!1,d=!1,m=!0;if("function"!=typeof e)throw new TypeError(r);function _(t){var n=i,r=o;return i=o=void 0,s=t,u=e.apply(r,n)}function b(e){return s=e,l=setTimeout(w,t),f?_(e):u}function D(e){var n=e-c;return void 0===c||n>=t||n<0||d&&e-s>=a}function w(){var e=v();if(D(e))return x(e);l=setTimeout(w,function(e){var n=t-(e-c);return d?p(n,a-(e-s)):n}(e))}function x(e){return l=void 0,m&&i?_(e):(i=o=void 0,u)}function k(){var e=v(),n=D(e);if(i=arguments,o=this,c=e,n){if(void 0===l)return b(c);if(d)return l=setTimeout(w,t),_(c)}return void 0===l&&(l=setTimeout(w,t)),u}return t=g(t)||0,y(n)&&(f=!!n.leading,a=(d="maxWait"in n)?h(g(n.maxWait)||0,t):a,m="trailing"in n?!!n.trailing:m),k.cancel=function(){void 0!==l&&clearTimeout(l),s=0,i=c=o=l=void 0},k.flush=function(){return void 0===l?u:x(v())},k}function y(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function g(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==d.call(e)}(e))return NaN;if(y(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=y(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(i,"");var n=a.test(e);return n||u.test(e)?l(e.slice(2),n?2:8):o.test(e)?NaN:+e}e.exports=function(e,t,n){var i=!0,o=!0;if("function"!=typeof e)throw new TypeError(r);return y(n)&&(i="leading"in n?!!n.leading:i,o="trailing"in n?!!n.trailing:o),m(e,t,{leading:i,maxWait:t,trailing:o})}},154:function(e,t,n){var r="function"===typeof Map&&Map.prototype,i=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,o=r&&i&&"function"===typeof i.get?i.get:null,a=r&&Map.prototype.forEach,u="function"===typeof Set&&Set.prototype,l=Object.getOwnPropertyDescriptor&&u?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=u&&l&&"function"===typeof l.get?l.get:null,s=u&&Set.prototype.forEach,f="function"===typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,d="function"===typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,h="function"===typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,p=Boolean.prototype.valueOf,v=Object.prototype.toString,m=Function.prototype.toString,y=String.prototype.match,g=String.prototype.slice,_=String.prototype.replace,b=String.prototype.toUpperCase,D=String.prototype.toLowerCase,w=RegExp.prototype.test,x=Array.prototype.concat,k=Array.prototype.join,C=Array.prototype.slice,E=Math.floor,S="function"===typeof BigInt?BigInt.prototype.valueOf:null,A=Object.getOwnPropertySymbols,F="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?Symbol.prototype.toString:null,N="function"===typeof Symbol&&"object"===typeof Symbol.iterator,O="function"===typeof Symbol&&Symbol.toStringTag&&(typeof Symbol.toStringTag===N||"symbol")?Symbol.toStringTag:null,T=Object.prototype.propertyIsEnumerable,M=("function"===typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function B(e,t){if(e===1/0||e===-1/0||e!==e||e&&e>-1e3&&e<1e3||w.call(/e/,t))return t;var n=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"===typeof e){var r=e<0?-E(-e):E(e);if(r!==e){var i=String(r),o=g.call(t,i.length+1);return _.call(i,n,"$&_")+"."+_.call(_.call(o,/([0-9]{3})/g,"$&_"),/_$/,"")}}return _.call(t,n,"$&_")}var I=n(654),L=I.custom,P=U(L)?L:null;function z(e,t,n){var r="double"===(n.quoteStyle||t)?'"':"'";return r+e+r}function j(e){return _.call(String(e),/"/g,""")}function R(e){return"[object Array]"===V(e)&&(!O||!("object"===typeof e&&O in e))}function $(e){return"[object RegExp]"===V(e)&&(!O||!("object"===typeof e&&O in e))}function U(e){if(N)return e&&"object"===typeof e&&e instanceof Symbol;if("symbol"===typeof e)return!0;if(!e||"object"!==typeof e||!F)return!1;try{return F.call(e),!0}catch(t){}return!1}e.exports=function e(t,n,r,i){var u=n||{};if(Y(u,"quoteStyle")&&"single"!==u.quoteStyle&&"double"!==u.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(Y(u,"maxStringLength")&&("number"===typeof u.maxStringLength?u.maxStringLength<0&&u.maxStringLength!==1/0:null!==u.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var l=!Y(u,"customInspect")||u.customInspect;if("boolean"!==typeof l&&"symbol"!==l)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(Y(u,"indent")&&null!==u.indent&&"\t"!==u.indent&&!(parseInt(u.indent,10)===u.indent&&u.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(Y(u,"numericSeparator")&&"boolean"!==typeof u.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var v=u.numericSeparator;if("undefined"===typeof t)return"undefined";if(null===t)return"null";if("boolean"===typeof t)return t?"true":"false";if("string"===typeof t)return W(t,u);if("number"===typeof t){if(0===t)return 1/0/t>0?"0":"-0";var b=String(t);return v?B(t,b):b}if("bigint"===typeof t){var w=String(t)+"n";return v?B(t,w):w}var E="undefined"===typeof u.depth?5:u.depth;if("undefined"===typeof r&&(r=0),r>=E&&E>0&&"object"===typeof t)return R(t)?"[Array]":"[Object]";var A=function(e,t){var n;if("\t"===e.indent)n="\t";else{if(!("number"===typeof e.indent&&e.indent>0))return null;n=k.call(Array(e.indent+1)," ")}return{base:n,prev:k.call(Array(t+1),n)}}(u,r);if("undefined"===typeof i)i=[];else if(q(i,t)>=0)return"[Circular]";function L(t,n,o){if(n&&(i=C.call(i)).push(n),o){var a={depth:u.depth};return Y(u,"quoteStyle")&&(a.quoteStyle=u.quoteStyle),e(t,a,r+1,i)}return e(t,u,r+1,i)}if("function"===typeof t&&!$(t)){var H=function(e){if(e.name)return e.name;var t=y.call(m.call(e),/^function\s*([\w$]+)/);if(t)return t[1];return null}(t),Q=X(t,L);return"[Function"+(H?": "+H:" (anonymous)")+"]"+(Q.length>0?" { "+k.call(Q,", ")+" }":"")}if(U(t)){var ee=N?_.call(String(t),/^(Symbol\(.*\))_[^)]*$/,"$1"):F.call(t);return"object"!==typeof t||N?ee:J(ee)}if(function(e){if(!e||"object"!==typeof e)return!1;if("undefined"!==typeof HTMLElement&&e instanceof HTMLElement)return!0;return"string"===typeof e.nodeName&&"function"===typeof e.getAttribute}(t)){for(var te="<"+D.call(String(t.nodeName)),ne=t.attributes||[],re=0;re"}if(R(t)){if(0===t.length)return"[]";var ie=X(t,L);return A&&!function(e){for(var t=0;t=0)return!1;return!0}(ie)?"["+K(ie,A)+"]":"[ "+k.call(ie,", ")+" ]"}if(function(e){return"[object Error]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t)){var oe=X(t,L);return"cause"in Error.prototype||!("cause"in t)||T.call(t,"cause")?0===oe.length?"["+String(t)+"]":"{ ["+String(t)+"] "+k.call(oe,", ")+" }":"{ ["+String(t)+"] "+k.call(x.call("[cause]: "+L(t.cause),oe),", ")+" }"}if("object"===typeof t&&l){if(P&&"function"===typeof t[P]&&I)return I(t,{depth:E-r});if("symbol"!==l&&"function"===typeof t.inspect)return t.inspect()}if(function(e){if(!o||!e||"object"!==typeof e)return!1;try{o.call(e);try{c.call(e)}catch(te){return!0}return e instanceof Map}catch(t){}return!1}(t)){var ae=[];return a.call(t,(function(e,n){ae.push(L(n,t,!0)+" => "+L(e,t))})),Z("Map",o.call(t),ae,A)}if(function(e){if(!c||!e||"object"!==typeof e)return!1;try{c.call(e);try{o.call(e)}catch(t){return!0}return e instanceof Set}catch(n){}return!1}(t)){var ue=[];return s.call(t,(function(e){ue.push(L(e,t))})),Z("Set",c.call(t),ue,A)}if(function(e){if(!f||!e||"object"!==typeof e)return!1;try{f.call(e,f);try{d.call(e,d)}catch(te){return!0}return e instanceof WeakMap}catch(t){}return!1}(t))return G("WeakMap");if(function(e){if(!d||!e||"object"!==typeof e)return!1;try{d.call(e,d);try{f.call(e,f)}catch(te){return!0}return e instanceof WeakSet}catch(t){}return!1}(t))return G("WeakSet");if(function(e){if(!h||!e||"object"!==typeof e)return!1;try{return h.call(e),!0}catch(t){}return!1}(t))return G("WeakRef");if(function(e){return"[object Number]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t))return J(L(Number(t)));if(function(e){if(!e||"object"!==typeof e||!S)return!1;try{return S.call(e),!0}catch(t){}return!1}(t))return J(L(S.call(t)));if(function(e){return"[object Boolean]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t))return J(p.call(t));if(function(e){return"[object String]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t))return J(L(String(t)));if(!function(e){return"[object Date]"===V(e)&&(!O||!("object"===typeof e&&O in e))}(t)&&!$(t)){var le=X(t,L),ce=M?M(t)===Object.prototype:t instanceof Object||t.constructor===Object,se=t instanceof Object?"":"null prototype",fe=!ce&&O&&Object(t)===t&&O in t?g.call(V(t),8,-1):se?"Object":"",de=(ce||"function"!==typeof t.constructor?"":t.constructor.name?t.constructor.name+" ":"")+(fe||se?"["+k.call(x.call([],fe||[],se||[]),": ")+"] ":"");return 0===le.length?de+"{}":A?de+"{"+K(le,A)+"}":de+"{ "+k.call(le,", ")+" }"}return String(t)};var H=Object.prototype.hasOwnProperty||function(e){return e in this};function Y(e,t){return H.call(e,t)}function V(e){return v.call(e)}function q(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;nt.maxStringLength){var n=e.length-t.maxStringLength,r="... "+n+" more character"+(n>1?"s":"");return W(g.call(e,0,t.maxStringLength),t)+r}return z(_.call(_.call(e,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,Q),"single",t)}function Q(e){var t=e.charCodeAt(0),n={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return n?"\\"+n:"\\x"+(t<16?"0":"")+b.call(t.toString(16))}function J(e){return"Object("+e+")"}function G(e){return e+" { ? }"}function Z(e,t,n,r){return e+" ("+t+") {"+(r?K(n,r):k.call(n,", "))+"}"}function K(e,t){if(0===e.length)return"";var n="\n"+t.prev+t.base;return n+k.call(e,","+n)+"\n"+t.prev}function X(e,t){var n=R(e),r=[];if(n){r.length=e.length;for(var i=0;i-1?e.split(","):e},c=function(e,t,n,r){if(e){var o=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,a=/(\[[^[\]]*])/g,u=n.depth>0&&/(\[[^[\]]*])/.exec(o),c=u?o.slice(0,u.index):o,s=[];if(c){if(!n.plainObjects&&i.call(Object.prototype,c)&&!n.allowPrototypes)return;s.push(c)}for(var f=0;n.depth>0&&null!==(u=a.exec(o))&&f=0;--o){var a,u=e[o];if("[]"===u&&n.parseArrays)a=[].concat(i);else{a=n.plainObjects?Object.create(null):{};var c="["===u.charAt(0)&&"]"===u.charAt(u.length-1)?u.slice(1,-1):u,s=parseInt(c,10);n.parseArrays||""!==c?!isNaN(s)&&u!==c&&String(s)===c&&s>=0&&n.parseArrays&&s<=n.arrayLimit?(a=[])[s]=i:"__proto__"!==c&&(a[c]=i):a={0:i}}i=a}return i}(s,t,n,r)}};e.exports=function(e,t){var n=function(e){if(!e)return a;if(null!==e.decoder&&void 0!==e.decoder&&"function"!==typeof e.decoder)throw new TypeError("Decoder has to be a function.");if("undefined"!==typeof e.charset&&"utf-8"!==e.charset&&"iso-8859-1"!==e.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var t="undefined"===typeof e.charset?a.charset:e.charset;return{allowDots:"undefined"===typeof e.allowDots?a.allowDots:!!e.allowDots,allowPrototypes:"boolean"===typeof e.allowPrototypes?e.allowPrototypes:a.allowPrototypes,allowSparse:"boolean"===typeof e.allowSparse?e.allowSparse:a.allowSparse,arrayLimit:"number"===typeof e.arrayLimit?e.arrayLimit:a.arrayLimit,charset:t,charsetSentinel:"boolean"===typeof e.charsetSentinel?e.charsetSentinel:a.charsetSentinel,comma:"boolean"===typeof e.comma?e.comma:a.comma,decoder:"function"===typeof e.decoder?e.decoder:a.decoder,delimiter:"string"===typeof e.delimiter||r.isRegExp(e.delimiter)?e.delimiter:a.delimiter,depth:"number"===typeof e.depth||!1===e.depth?+e.depth:a.depth,ignoreQueryPrefix:!0===e.ignoreQueryPrefix,interpretNumericEntities:"boolean"===typeof e.interpretNumericEntities?e.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"===typeof e.parameterLimit?e.parameterLimit:a.parameterLimit,parseArrays:!1!==e.parseArrays,plainObjects:"boolean"===typeof e.plainObjects?e.plainObjects:a.plainObjects,strictNullHandling:"boolean"===typeof e.strictNullHandling?e.strictNullHandling:a.strictNullHandling}}(t);if(""===e||null===e||"undefined"===typeof e)return n.plainObjects?Object.create(null):{};for(var s="string"===typeof e?function(e,t){var n,c={},s=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,f=t.parameterLimit===1/0?void 0:t.parameterLimit,d=s.split(t.delimiter,f),h=-1,p=t.charset;if(t.charsetSentinel)for(n=0;n-1&&(m=o(m)?[m]:m),i.call(c,v)?c[v]=r.combine(c[v],m):c[v]=m}return c}(e,n):e,f=n.plainObjects?Object.create(null):{},d=Object.keys(s),h=0;h0?C.join(",")||null:void 0}];else if(l(h))B=h;else{var L=Object.keys(C);B=m?L.sort(m):L}for(var P=a&&l(C)&&1===C.length?n+"[]":n,z=0;z0?D+b:""}},837:function(e,t,n){"use strict";var r=n(609),i=Object.prototype.hasOwnProperty,o=Array.isArray,a=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),u=function(e,t){for(var n=t&&t.plainObjects?Object.create(null):{},r=0;r1;){var t=e.pop(),n=t.obj[t.prop];if(o(n)){for(var r=[],i=0;i=48&&s<=57||s>=65&&s<=90||s>=97&&s<=122||o===r.RFC1738&&(40===s||41===s)?l+=u.charAt(c):s<128?l+=a[s]:s<2048?l+=a[192|s>>6]+a[128|63&s]:s<55296||s>=57344?l+=a[224|s>>12]+a[128|s>>6&63]+a[128|63&s]:(c+=1,s=65536+((1023&s)<<10|1023&u.charCodeAt(c)),l+=a[240|s>>18]+a[128|s>>12&63]+a[128|s>>6&63]+a[128|63&s])}return l},isBuffer:function(e){return!(!e||"object"!==typeof e)&&!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))},isRegExp:function(e){return"[object RegExp]"===Object.prototype.toString.call(e)},maybeMap:function(e,t){if(o(e)){for(var n=[],r=0;r2&&(u.children=arguments.length>3?r.call(arguments,2):n),"function"==typeof e&&null!=e.defaultProps)for(a in e.defaultProps)void 0===u[a]&&(u[a]=e.defaultProps[a]);return v(e,u,i,o,null)}function v(e,t,n,r,a){var u={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==a?++o:a};return null==a&&null!=i.vnode&&i.vnode(u),u}function m(){return{current:null}}function y(e){return e.children}function g(e,t){this.props=e,this.context=t}function _(e,t){if(null==t)return e.__?_(e.__,e.__.__k.indexOf(e)+1):null;for(var n;t0?v(m.type,m.props,m.key,m.ref?m.ref:null,m.__v):m)){if(m.__=n,m.__b=n.__b+1,null===(p=w[d])||p&&m.key==p.key&&m.type===p.type)w[d]=void 0;else for(h=0;h2&&(u.children=arguments.length>3?r.call(arguments,2):n),v(e.type,u,i||e.key,o||e.ref,null)}function R(e,t){var n={__c:t="__cC"+l++,__:e,Consumer:function(e,t){return e.children(t)},Provider:function(e){var n,r;return this.getChildContext||(n=[],(r={})[t]=this,this.getChildContext=function(){return r},this.shouldComponentUpdate=function(e){this.props.value!==e.value&&n.some(D)},this.sub=function(e){n.push(e);var t=e.componentWillUnmount;e.componentWillUnmount=function(){n.splice(n.indexOf(e),1),t&&t.call(e)}}),e.children}};return n.Provider.__=n.Consumer.contextType=n}r=s.slice,i={__e:function(e,t,n,r){for(var i,o,a;t=t.__;)if((i=t.__c)&&!i.__)try{if((o=i.constructor)&&null!=o.getDerivedStateFromError&&(i.setState(o.getDerivedStateFromError(e)),a=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(e,r||{}),a=i.__d),a)return i.__E=i}catch(t){e=t}throw e}},o=0,g.prototype.setState=function(e,t){var n;n=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=d({},this.state),"function"==typeof e&&(e=e(d({},n),this.props)),e&&d(n,e),null!=e&&this.__v&&(t&&this._sb.push(t),D(this))},g.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),D(this))},g.prototype.render=y,a=[],w.__r=0,l=0;var $,U,H,Y,V=0,q=[],W=[],Q=i.__b,J=i.__r,G=i.diffed,Z=i.__c,K=i.unmount;function X(e,t){i.__h&&i.__h(U,e,V||t),V=0;var n=U.__H||(U.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({__V:W}),n.__[e]}function ee(e){return V=1,te(ge,e)}function te(e,t,n){var r=X($++,2);if(r.t=e,!r.__c&&(r.__=[n?n(t):ge(void 0,t),function(e){var t=r.__N?r.__N[0]:r.__[0],n=r.t(t,e);t!==n&&(r.__N=[n,r.__[1]],r.__c.setState({}))}],r.__c=U,!U.u)){U.u=!0;var i=U.shouldComponentUpdate;U.shouldComponentUpdate=function(e,t,n){if(!r.__c.__H)return!0;var o=r.__c.__H.__.filter((function(e){return e.__c}));if(o.every((function(e){return!e.__N})))return!i||i.call(this,e,t,n);var a=!1;return o.forEach((function(e){if(e.__N){var t=e.__[0];e.__=e.__N,e.__N=void 0,t!==e.__[0]&&(a=!0)}})),!(!a&&r.__c.props===e)&&(!i||i.call(this,e,t,n))}}return r.__N||r.__}function ne(e,t){var n=X($++,3);!i.__s&&ye(n.__H,t)&&(n.__=e,n.i=t,U.__H.__h.push(n))}function re(e,t){var n=X($++,4);!i.__s&&ye(n.__H,t)&&(n.__=e,n.i=t,U.__h.push(n))}function ie(e){return V=5,ae((function(){return{current:e}}),[])}function oe(e,t,n){V=6,re((function(){return"function"==typeof e?(e(t()),function(){return e(null)}):e?(e.current=t(),function(){return e.current=null}):void 0}),null==n?n:n.concat(e))}function ae(e,t){var n=X($++,7);return ye(n.__H,t)?(n.__V=e(),n.i=t,n.__h=e,n.__V):n.__}function ue(e,t){return V=8,ae((function(){return e}),t)}function le(e){var t=U.context[e.__c],n=X($++,9);return n.c=e,t?(null==n.__&&(n.__=!0,t.sub(U)),t.props.value):e.__}function ce(e,t){i.useDebugValue&&i.useDebugValue(t?t(e):e)}function se(e){var t=X($++,10),n=ee();return t.__=e,U.componentDidCatch||(U.componentDidCatch=function(e,r){t.__&&t.__(e,r),n[1](e)}),[n[0],function(){n[1](void 0)}]}function fe(){var e=X($++,11);if(!e.__){for(var t=U.__v;null!==t&&!t.__m&&null!==t.__;)t=t.__;var n=t.__m||(t.__m=[0,0]);e.__="P"+n[0]+"-"+n[1]++}return e.__}function de(){for(var e;e=q.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(ve),e.__H.__h.forEach(me),e.__H.__h=[]}catch(l){e.__H.__h=[],i.__e(l,e.__v)}}i.__b=function(e){U=null,Q&&Q(e)},i.__r=function(e){J&&J(e),$=0;var t=(U=e.__c).__H;t&&(H===U?(t.__h=[],U.__h=[],t.__.forEach((function(e){e.__N&&(e.__=e.__N),e.__V=W,e.__N=e.i=void 0}))):(t.__h.forEach(ve),t.__h.forEach(me),t.__h=[])),H=U},i.diffed=function(e){G&&G(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(1!==q.push(t)&&Y===i.requestAnimationFrame||((Y=i.requestAnimationFrame)||pe)(de)),t.__H.__.forEach((function(e){e.i&&(e.__H=e.i),e.__V!==W&&(e.__=e.__V),e.i=void 0,e.__V=W}))),H=U=null},i.__c=function(e,t){t.some((function(e){try{e.__h.forEach(ve),e.__h=e.__h.filter((function(e){return!e.__||me(e)}))}catch(o){t.some((function(e){e.__h&&(e.__h=[])})),t=[],i.__e(o,e.__v)}})),Z&&Z(e,t)},i.unmount=function(e){K&&K(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach((function(e){try{ve(e)}catch(e){t=e}})),n.__H=void 0,t&&i.__e(t,n.__v))};var he="function"==typeof requestAnimationFrame;function pe(e){var t,n=function(){clearTimeout(r),he&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,100);he&&(t=requestAnimationFrame(n))}function ve(e){var t=U,n=e.__c;"function"==typeof n&&(e.__c=void 0,n()),U=t}function me(e){var t=U;e.__c=e.__(),U=t}function ye(e,t){return!e||e.length!==t.length||t.some((function(t,n){return t!==e[n]}))}function ge(e,t){return"function"==typeof t?t(e):t}function _e(e,t){for(var n in t)e[n]=t[n];return e}function be(e,t){for(var n in e)if("__source"!==n&&!(n in t))return!0;for(var r in t)if("__source"!==r&&e[r]!==t[r])return!0;return!1}function De(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t}function we(e){this.props=e}function xe(e,t){function n(e){var n=this.props.ref,r=n==e.ref;return!r&&n&&(n.call?n(null):n.current=null),t?!t(this.props,e)||!r:be(this.props,e)}function r(t){return this.shouldComponentUpdate=n,p(e,t)}return r.displayName="Memo("+(e.displayName||e.name)+")",r.prototype.isReactComponent=!0,r.__f=!0,r}(we.prototype=new g).isPureReactComponent=!0,we.prototype.shouldComponentUpdate=function(e,t){return be(this.props,e)||be(this.state,t)};var ke=i.__b;i.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),ke&&ke(e)};var Ce="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.forward_ref")||3911;function Ee(e){function t(t){var n=_e({},t);return delete n.ref,e(n,t.ref||null)}return t.$$typeof=Ce,t.render=t,t.prototype.isReactComponent=t.__f=!0,t.displayName="ForwardRef("+(e.displayName||e.name)+")",t}var Se=function(e,t){return null==e?null:C(C(e).map(t))},Ae={map:Se,forEach:Se,count:function(e){return e?C(e).length:0},only:function(e){var t=C(e);if(1!==t.length)throw"Children.only";return t[0]},toArray:C},Fe=i.__e;i.__e=function(e,t,n,r){if(e.then)for(var i,o=t;o=o.__;)if((i=o.__c)&&i.__c)return null==t.__e&&(t.__e=n.__e,t.__k=n.__k),i.__c(e,t);Fe(e,t,n,r)};var Ne=i.unmount;function Oe(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach((function(e){"function"==typeof e.__c&&e.__c()})),e.__c.__H=null),null!=(e=_e({},e)).__c&&(e.__c.__P===n&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map((function(e){return Oe(e,t,n)}))),e}function Te(e,t,n){return e&&(e.__v=null,e.__k=e.__k&&e.__k.map((function(e){return Te(e,t,n)})),e.__c&&e.__c.__P===t&&(e.__e&&n.insertBefore(e.__e,e.__d),e.__c.__e=!0,e.__c.__P=n)),e}function Me(){this.__u=0,this.t=null,this.__b=null}function Be(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Ie(e){var t,n,r;function i(i){if(t||(t=e()).then((function(e){n=e.default||e}),(function(e){r=e})),r)throw r;if(!n)throw t;return p(n,i)}return i.displayName="Lazy",i.__f=!0,i}function Le(){this.u=null,this.o=null}i.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&!0===e.__h&&(e.type=null),Ne&&Ne(e)},(Me.prototype=new g).__c=function(e,t){var n=t.__c,r=this;null==r.t&&(r.t=[]),r.t.push(n);var i=Be(r.__v),o=!1,a=function(){o||(o=!0,n.__R=null,i?i(u):u())};n.__R=a;var u=function(){if(!--r.__u){if(r.state.__a){var e=r.state.__a;r.__v.__k[0]=Te(e,e.__c.__P,e.__c.__O)}var t;for(r.setState({__a:r.__b=null});t=r.t.pop();)t.forceUpdate()}},l=!0===t.__h;r.__u++||l||r.setState({__a:r.__b=r.__v.__k[0]}),e.then(a,a)},Me.prototype.componentWillUnmount=function(){this.t=[]},Me.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),r=this.__v.__k[0].__c;this.__v.__k[0]=Oe(this.__b,n,r.__O=r.__P)}this.__b=null}var i=t.__a&&p(y,null,e.fallback);return i&&(i.__h=null),[p(y,null,t.__a?null:e.children),i]};var Pe=function(e,t,n){if(++n[1]===n[0]&&e.o.delete(t),e.props.revealOrder&&("t"!==e.props.revealOrder[0]||!e.o.size))for(n=e.u;n;){for(;n.length>3;)n.pop()();if(n[1]>>1,1),t.i.removeChild(e)}}),P(p(ze,{context:t.context},e.__v),t.l)):t.l&&t.componentWillUnmount()}function Re(e,t){var n=p(je,{__v:e,i:t});return n.containerInfo=t,n}(Le.prototype=new g).__a=function(e){var t=this,n=Be(t.__v),r=t.o.get(e);return r[0]++,function(i){var o=function(){t.props.revealOrder?(r.push(i),Pe(t,e,r)):i()};n?n(o):o()}},Le.prototype.render=function(e){this.u=null,this.o=new Map;var t=C(e.children);e.revealOrder&&"b"===e.revealOrder[0]&&t.reverse();for(var n=t.length;n--;)this.o.set(t[n],this.u=[1,0,this.u]);return e.children},Le.prototype.componentDidUpdate=Le.prototype.componentDidMount=function(){var e=this;this.o.forEach((function(t,n){Pe(e,n,t)}))};var $e="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,Ue=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,He="undefined"!=typeof document,Ye=function(e){return("undefined"!=typeof Symbol&&"symbol"==typeof Symbol()?/fil|che|rad/i:/fil|che|ra/i).test(e)};function Ve(e,t,n){return null==t.__k&&(t.textContent=""),P(e,t),"function"==typeof n&&n(),e?e.__c:null}function qe(e,t,n){return z(e,t),"function"==typeof n&&n(),e?e.__c:null}g.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach((function(e){Object.defineProperty(g.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})}));var We=i.event;function Qe(){}function Je(){return this.cancelBubble}function Ge(){return this.defaultPrevented}i.event=function(e){return We&&(e=We(e)),e.persist=Qe,e.isPropagationStopped=Je,e.isDefaultPrevented=Ge,e.nativeEvent=e};var Ze,Ke={configurable:!0,get:function(){return this.class}},Xe=i.vnode;i.vnode=function(e){var t=e.type,n=e.props,r=n;if("string"==typeof t){var i=-1===t.indexOf("-");for(var o in r={},n){var a=n[o];He&&"children"===o&&"noscript"===t||"value"===o&&"defaultValue"in n&&null==a||("defaultValue"===o&&"value"in n&&null==n.value?o="value":"download"===o&&!0===a?a="":/ondoubleclick/i.test(o)?o="ondblclick":/^onchange(textarea|input)/i.test(o+t)&&!Ye(n.type)?o="oninput":/^onfocus$/i.test(o)?o="onfocusin":/^onblur$/i.test(o)?o="onfocusout":/^on(Ani|Tra|Tou|BeforeInp|Compo)/.test(o)?o=o.toLowerCase():i&&Ue.test(o)?o=o.replace(/[A-Z0-9]/g,"-$&").toLowerCase():null===a&&(a=void 0),/^oninput$/i.test(o)&&(o=o.toLowerCase(),r[o]&&(o="oninputCapture")),r[o]=a)}"select"==t&&r.multiple&&Array.isArray(r.value)&&(r.value=C(n.children).forEach((function(e){e.props.selected=-1!=r.value.indexOf(e.props.value)}))),"select"==t&&null!=r.defaultValue&&(r.value=C(n.children).forEach((function(e){e.props.selected=r.multiple?-1!=r.defaultValue.indexOf(e.props.value):r.defaultValue==e.props.value}))),e.props=r,n.class!=n.className&&(Ke.enumerable="className"in n,null!=n.className&&(r.class=n.className),Object.defineProperty(r,"className",Ke))}e.$$typeof=$e,Xe&&Xe(e)};var et=i.__r;i.__r=function(e){et&&et(e),Ze=e.__c};var tt={ReactCurrentDispatcher:{current:{readContext:function(e){return Ze.__n[e.__c].props.value}}}},nt="17.0.2";function rt(e){return p.bind(null,e)}function it(e){return!!e&&e.$$typeof===$e}function ot(e){return it(e)?j.apply(null,arguments):e}function at(e){return!!e.__k&&(P(null,e),!0)}function ut(e){return e&&(e.base||1===e.nodeType&&e)||null}var lt=function(e,t){return e(t)},ct=function(e,t){return e(t)},st=y;function ft(e){e()}function dt(e){return e}function ht(){return[!1,ft]}var pt=re;function vt(e,t){var n=t(),r=ee({h:{__:n,v:t}}),i=r[0].h,o=r[1];return re((function(){i.__=n,i.v=t,De(i.__,t())||o({h:i})}),[e,n,t]),ne((function(){return De(i.__,i.v())||o({h:i}),e((function(){De(i.__,i.v())||o({h:i})}))}),[e]),n}var mt,yt={useState:ee,useId:fe,useReducer:te,useEffect:ne,useLayoutEffect:re,useInsertionEffect:pt,useTransition:ht,useDeferredValue:dt,useSyncExternalStore:vt,startTransition:ft,useRef:ie,useImperativeHandle:oe,useMemo:ae,useCallback:ue,useContext:le,useDebugValue:ce,version:"17.0.2",Children:Ae,render:Ve,hydrate:qe,unmountComponentAtNode:at,createPortal:Re,createElement:p,createContext:R,createFactory:rt,cloneElement:ot,createRef:m,Fragment:y,isValidElement:it,findDOMNode:ut,Component:g,PureComponent:we,memo:xe,forwardRef:Ee,flushSync:ct,unstable_batchedUpdates:lt,StrictMode:st,Suspense:Me,SuspenseList:Le,lazy:Ie,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:tt},gt=n(658),_t=n.n(gt),bt=n(443),Dt=n.n(bt),wt=n(446),xt=n.n(wt),kt=n(635),Ct=n.n(kt);function Et(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0&&(t.hash=e.substr(n),e=e.substr(0,n));var r=e.indexOf("?");r>=0&&(t.search=e.substr(r),e=e.substr(0,r)),e&&(t.pathname=e)}return t}function Kt(e){var t="undefined"!==typeof window&&"undefined"!==typeof window.location&&"null"!==window.location.origin?window.location.origin:window.location.href,n="string"===typeof e?e:Gt(e);return qt(t,"No window.location.(origin|href) available to create URL for href: "+n),new URL(n,t)}function Xt(e,t,n,r){void 0===r&&(r={});var i=r,o=i.window,a=void 0===o?document.defaultView:o,u=i.v5Compat,l=void 0!==u&&u,c=a.history,s=mt.Pop,f=null;function d(){s=mt.Pop,f&&f({action:s,location:h.location})}var h={get action(){return s},get location(){return e(a,c)},listen:function(e){if(f)throw new Error("A history only accepts one active listener");return a.addEventListener(Vt,d),f=e,function(){a.removeEventListener(Vt,d),f=null}},createHref:function(e){return t(a,e)},encodeLocation:function(e){var t=Kt("string"===typeof e?e:Gt(e));return{pathname:t.pathname,search:t.search,hash:t.hash}},push:function(e,t){s=mt.Push;var r=Jt(h.location,e,t);n&&n(r,e);var i=Qt(r),o=h.createHref(r);try{c.pushState(i,"",o)}catch(u){a.location.assign(o)}l&&f&&f({action:s,location:h.location})},replace:function(e,t){s=mt.Replace;var r=Jt(h.location,e,t);n&&n(r,e);var i=Qt(r),o=h.createHref(r);c.replaceState(i,"",o),l&&f&&f({action:s,location:h.location})},go:function(e){return c.go(e)}};return h}function en(e,t,n){void 0===n&&(n="/");var r=cn(("string"===typeof t?Zt(t):t).pathname||"/",n);if(null==r)return null;var i=tn(e);!function(e){e.sort((function(e,t){return e.score!==t.score?t.score-e.score:function(e,t){var n=e.length===t.length&&e.slice(0,-1).every((function(e,n){return e===t[n]}));return n?e[e.length-1]-t[t.length-1]:0}(e.routesMeta.map((function(e){return e.childrenIndex})),t.routesMeta.map((function(e){return e.childrenIndex})))}))}(i);for(var o=null,a=0;null==o&&a0&&(qt(!0!==e.index,'Index routes must not have child routes. Please remove all child routes from route path "'+a+'".'),tn(e.children,t,u,a)),(null!=e.path||e.index)&&t.push({path:a,score:on(a,e.index),routesMeta:u})})),t}!function(e){e.data="data",e.deferred="deferred",e.redirect="redirect",e.error="error"}(Yt||(Yt={}));var nn=/^:\w+$/,rn=function(e){return"*"===e};function on(e,t){var n=e.split("/"),r=n.length;return n.some(rn)&&(r+=-2),t&&(r+=2),n.filter((function(e){return!rn(e)})).reduce((function(e,t){return e+(nn.test(t)?3:""===t?1:10)}),r)}function an(e,t){for(var n=e.routesMeta,r={},i="/",o=[],a=0;a and the router will parse it for you.'}function dn(e){return e.filter((function(e,t){return 0===t||e.route.path&&e.route.path.length>0}))}function hn(e,t,n,r){var i;void 0===r&&(r=!1),"string"===typeof e?i=Zt(e):(qt(!(i=Ht({},e)).pathname||!i.pathname.includes("?"),fn("?","pathname","search",i)),qt(!i.pathname||!i.pathname.includes("#"),fn("#","pathname","hash",i)),qt(!i.search||!i.search.includes("#"),fn("#","search","hash",i)));var o,a=""===e||""===i.pathname,u=a?"/":i.pathname;if(r||null==u)o=n;else{var l=t.length-1;if(u.startsWith("..")){for(var c=u.split("/");".."===c[0];)c.shift(),l-=1;i.pathname=c.join("/")}o=l>=0?t[l]:"/"}var s=function(e,t){void 0===t&&(t="/");var n="string"===typeof e?Zt(e):e,r=n.pathname,i=n.search,o=void 0===i?"":i,a=n.hash,u=void 0===a?"":a,l=r?r.startsWith("/")?r:function(e,t){var n=t.replace(/\/+$/,"").split("/");return e.split("/").forEach((function(e){".."===e?n.length>1&&n.pop():"."!==e&&n.push(e)})),n.length>1?n.join("/"):"/"}(r,t):t;return{pathname:l,search:mn(o),hash:yn(u)}}(i,o),f=u&&"/"!==u&&u.endsWith("/"),d=(a||"."===u)&&n.endsWith("/");return s.pathname.endsWith("/")||!f&&!d||(s.pathname+="/"),s}var pn=function(e){return e.join("/").replace(/\/\/+/g,"/")},vn=function(e){return e.replace(/\/+$/,"").replace(/^\/*/,"/")},mn=function(e){return e&&"?"!==e?e.startsWith("?")?e:"?"+e:""},yn=function(e){return e&&"#"!==e?e.startsWith("#")?e:"#"+e:""};Error;var gn=Bt((function e(t,n,r,i){Nt(this,e),void 0===i&&(i=!1),this.status=t,this.statusText=n||"",this.internal=i,r instanceof Error?(this.data=r.toString(),this.error=r):this.data=r}));function _n(e){return e instanceof gn}var bn=["post","put","patch","delete"],Dn=(new Set(bn),["get"].concat(bn));new Set(Dn),new Set([301,302,303,307,308]),new Set([307,308]),"undefined"!==typeof window&&"undefined"!==typeof window.document&&window.document.createElement;function wn(){return wn=Object.assign?Object.assign.bind():function(e){for(var t=1;t")))}var $n,Un,Hn=function(e){Lt(n,e);var t=Rt(n);function n(e){var r;return Nt(this,n),(r=t.call(this,e)).state={location:e.location,error:e.error},r}return Bt(n,[{key:"componentDidCatch",value:function(e,t){console.error("React Router caught the following error during render",e,t)}},{key:"render",value:function(){return this.state.error?p(In.Provider,{value:this.state.error,children:this.props.component}):this.props.children}}],[{key:"getDerivedStateFromError",value:function(e){return{error:e}}},{key:"getDerivedStateFromProps",value:function(e,t){return t.location!==e.location?{error:e.error,location:e.location}:{error:e.error||t.error,location:t.location}}}]),n}(g);function Yn(e){var t=e.routeContext,n=e.match,r=e.children,i=le(Fn);return i&&n.route.errorElement&&(i._deepestRenderedBoundaryId=n.route.id),p(Bn.Provider,{value:t},r)}function Vn(e,t,n){if(void 0===t&&(t=[]),null==e){if(null==n||!n.errors)return null;e=n.matches}var r=e,i=null==n?void 0:n.errors;if(null!=i){var o=r.findIndex((function(e){return e.route.id&&(null==i?void 0:i[e.route.id])}));o>=0||qt(!1),r=r.slice(0,Math.min(r.length,o+1))}return r.reduceRight((function(e,o,a){var u=o.route.id?null==i?void 0:i[o.route.id]:null,l=n?o.route.errorElement||p(Rn,null):null,c=function(){return p(Yn,{match:o,routeContext:{outlet:e,matches:t.concat(r.slice(0,a+1))}},u?l:void 0!==o.route.element?o.route.element:e)};return n&&(o.route.errorElement||0===a)?p(Hn,{location:n.location,component:l,error:u,children:c()}):c()}),null)}function qn(e){var t=le(On);return t||qt(!1),t}!function(e){e.UseRevalidator="useRevalidator"}($n||($n={})),function(e){e.UseLoaderData="useLoaderData",e.UseActionData="useActionData",e.UseRouteError="useRouteError",e.UseNavigation="useNavigation",e.UseRouteLoaderData="useRouteLoaderData",e.UseMatches="useMatches",e.UseRevalidator="useRevalidator"}(Un||(Un={}));var Wn;function Qn(e){return function(e){var t=le(Bn).outlet;return t?p(jn.Provider,{value:e},t):t}(e.context)}function Jn(e){qt(!1)}function Gn(e){var t=e.basename,n=void 0===t?"/":t,r=e.children,i=void 0===r?null:r,o=e.location,a=e.navigationType,u=void 0===a?mt.Pop:a,l=e.navigator,c=e.static,s=void 0!==c&&c;Ln()&&qt(!1);var f=n.replace(/^\/*/,"/"),d=ae((function(){return{basename:f,navigator:l,static:s}}),[f,l,s]);"string"===typeof o&&(o=Zt(o));var h=o,v=h.pathname,m=void 0===v?"/":v,y=h.search,g=void 0===y?"":y,_=h.hash,b=void 0===_?"":_,D=h.state,w=void 0===D?null:D,x=h.key,k=void 0===x?"default":x,C=ae((function(){var e=cn(m,f);return null==e?null:{pathname:e,search:g,hash:b,state:w,key:k}}),[f,m,g,b,w,k]);return null==C?null:p(Tn.Provider,{value:d},p(Mn.Provider,{children:i,value:{location:C,navigationType:u}}))}function Zn(e){var t=e.children,n=e.location,r=le(Nn);return function(e,t){Ln()||qt(!1);var n,r=le(Tn).navigator,i=le(On),o=le(Bn).matches,a=o[o.length-1],u=a?a.params:{},l=(a&&a.pathname,a?a.pathnameBase:"/"),c=(a&&a.route,Pn());if(t){var s,f="string"===typeof t?Zt(t):t;"/"===l||(null==(s=f.pathname)?void 0:s.startsWith(l))||qt(!1),n=f}else n=c;var d=n.pathname||"/",h=en(e,{pathname:"/"===l?d:d.slice(l.length)||"/"}),v=Vn(h&&h.map((function(e){return Object.assign({},e,{params:Object.assign({},u,e.params),pathname:pn([l,r.encodeLocation?r.encodeLocation(e.pathname).pathname:e.pathname]),pathnameBase:"/"===e.pathnameBase?l:pn([l,r.encodeLocation?r.encodeLocation(e.pathnameBase).pathname:e.pathnameBase])})})),o,i||void 0);return t&&v?p(Mn.Provider,{value:{location:wn({pathname:"/",search:"",hash:"",state:null,key:"default"},n),navigationType:mt.Pop}},v):v}(r&&!t?r.router.routes:Kn(t),n)}!function(e){e[e.pending=0]="pending",e[e.success=1]="success",e[e.error=2]="error"}(Wn||(Wn={}));new Promise((function(){}));function Kn(e,t){void 0===t&&(t=[]);var n=[];return Ae.forEach(e,(function(e,r){if(it(e))if(e.type!==y){e.type!==Jn&&qt(!1),e.props.index&&e.props.children&&qt(!1);var i=[].concat(Ft(t),[r]),o={id:e.props.id||i.join("-"),caseSensitive:e.props.caseSensitive,element:e.props.element,index:e.props.index,path:e.props.path,loader:e.props.loader,action:e.props.action,errorElement:e.props.errorElement,hasErrorBoundary:null!=e.props.errorElement,shouldRevalidate:e.props.shouldRevalidate,handle:e.props.handle};e.props.children&&(o.children=Kn(e.props.children,i)),n.push(o)}else n.push.apply(n,Kn(e.props.children,t))})),n}function Xn(e){var t=e.basename,n=e.children,r=e.window,i=ie();null==i.current&&(i.current=function(e){return void 0===e&&(e={}),Xt((function(e,t){var n=Zt(e.location.hash.substr(1)),r=n.pathname,i=void 0===r?"/":r,o=n.search,a=void 0===o?"":o,u=n.hash;return Jt("",{pathname:i,search:a,hash:void 0===u?"":u},t.state&&t.state.usr||null,t.state&&t.state.key||"default")}),(function(e,t){var n=e.document.querySelector("base"),r="";if(n&&n.getAttribute("href")){var i=e.location.href,o=i.indexOf("#");r=-1===o?i:i.slice(0,o)}return r+"#"+("string"===typeof t?t:Gt(t))}),(function(e,t){Wt("/"===e.pathname.charAt(0),"relative pathnames are not supported in hash history.push("+JSON.stringify(t)+")")}),e)}({window:r,v5Compat:!0}));var o=i.current,a=At(ee({action:o.action,location:o.location}),2),u=a[0],l=a[1];return re((function(){return o.listen(l)}),[o]),p(Gn,{basename:t,children:n,location:u.location,navigationType:u.action,navigator:o})}var er,tr;(function(e){e.UseScrollRestoration="useScrollRestoration",e.UseSubmitImpl="useSubmitImpl",e.UseFetcher="useFetcher"})(er||(er={})),function(e){e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration"}(tr||(tr={}));var nr;function rr(e,t,n){return(t=Tt(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ir(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function or(e){for(var t=1;t2&&void 0!==arguments[2]?arguments[2]:window.location.search,r=hr().parse(n,{ignoreQueryPrefix:!0});return vr()(r,e,t||"")},br={serverUrl:sr().serverURL||window.location.href.replace(/\/(?:prometheus\/)?(?:graph|vmui)\/.*/,"/prometheus"),tenantId:Number(_r("g0.tenantID",0))};function Dr(e,t){switch(t.type){case"SET_SERVER":return or(or({},e),{},{serverUrl:t.payload});case"SET_TENANT_ID":return or(or({},e),{},{tenantId:t.payload});default:throw new Error}}var wr=0;function xr(e,t,n,r,o){var a,u,l={};for(u in t)"ref"==u?a=t[u]:l[u]=t[u];var c={type:e,props:l,key:n,ref:a,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:--wr,__source:o,__self:r};if("function"==typeof e&&(a=e.defaultProps))for(u in a)void 0===l[u]&&(l[u]=a[u]);return i.vnode&&i.vnode(c),c}var kr=R({}),Cr=function(){return le(kr).state},Er=function(){return le(kr).dispatch},Sr=Object.entries(br).reduce((function(e,t){var n=At(t,2),r=n[0],i=n[1];return or(or({},e),{},rr({},r,_r(r)||i))}),{}),Ar="YYYY-MM-DD",Fr="YYYY-MM-DD HH:mm:ss",Nr="YYYY-MM-DD[T]HH:mm:ss",Or=window.innerWidth/4,Tr=1,Mr=1578e8,Br=Intl.supportedValuesOf("timeZone"),Ir=[{long:"years",short:"y",possible:"year"},{long:"weeks",short:"w",possible:"week"},{long:"days",short:"d",possible:"day"},{long:"hours",short:"h",possible:"hour"},{long:"minutes",short:"m",possible:"min"},{long:"seconds",short:"s",possible:"sec"},{long:"milliseconds",short:"ms",possible:"millisecond"}],Lr=Ir.map((function(e){return e.short})),Pr=function(e){return Math.round(1e3*e)/1e3},zr=function(e){var t=e.match(/\d+/g),n=e.match(/[a-zA-Z]+/g);if(n&&t&&Lr.includes(n[0]))return rr({},n[0],t[0])},jr=function(e){var t=Ir.map((function(e){return e.short})).join("|"),n=new RegExp("\\d+[".concat(t,"]+"),"g"),r=(e.match(n)||[]).reduce((function(e,t){var n=zr(t);return n?or(or({},e),n):or({},e)}),{});return _t().duration(r).asSeconds()},Rr=function(e,t){var n=(t||_t()().toDate()).valueOf()/1e3,r=jr(e);return{start:n-r,end:n,step:function(e){var t=Pr(e),n=Math.round(e);return e>=100&&(t=n-n%10),e<100&&e>=10&&(t=n-n%5),e<10&&e>=1&&(t=n),e<1&&e>.01&&(t=Math.round(40*e)/40),Hr(_t().duration(t||.001,"seconds").asMilliseconds()).replace(/\s/g,"")}(r/Or),date:$r(t||_t()().toDate())}},$r=function(e){return _t().tz(e).utc().format(Nr)},Ur=function(e){return _t().tz(e).format(Nr)},Hr=function(e){var t=Math.floor(e%1e3),n=Math.floor(e/1e3%60),r=Math.floor(e/1e3/60%60),i=Math.floor(e/1e3/3600%24),o=Math.floor(e/864e5),a=["d","h","m","s","ms"],u=[o,i,r,n,t].map((function(e,t){return e?"".concat(e).concat(a[t]):""}));return u.filter((function(e){return e})).join(" ")},Yr=function(e){return _t()(1e3*e).toDate()},Vr=[{title:"Last 5 minutes",duration:"5m"},{title:"Last 15 minutes",duration:"15m"},{title:"Last 30 minutes",duration:"30m",isDefault:!0},{title:"Last 1 hour",duration:"1h"},{title:"Last 3 hours",duration:"3h"},{title:"Last 6 hours",duration:"6h"},{title:"Last 12 hours",duration:"12h"},{title:"Last 24 hours",duration:"24h"},{title:"Last 2 days",duration:"2d"},{title:"Last 7 days",duration:"7d"},{title:"Last 30 days",duration:"30d"},{title:"Last 90 days",duration:"90d"},{title:"Last 180 days",duration:"180d"},{title:"Last 1 year",duration:"1y"},{title:"Yesterday",duration:"1d",until:function(){return _t()().tz().subtract(1,"day").endOf("day").toDate()}},{title:"Today",duration:"1d",until:function(){return _t()().tz().endOf("day").toDate()}}].map((function(e){return or({id:e.title.replace(/\s/g,"_").toLocaleLowerCase(),until:e.until?e.until:function(){return _t()().tz().toDate()}},e)})),qr=function(e){var t,n=e.relativeTimeId,r=e.defaultDuration,i=e.defaultEndInput,o=null===(t=Vr.find((function(e){return e.isDefault})))||void 0===t?void 0:t.id,a=n||_r("g0.relative_time",o),u=Vr.find((function(e){return e.id===a}));return{relativeTimeId:u?a:"none",duration:u?u.duration:r,endInput:u?u.until():i}},Wr=function(e){var t=_t()().tz(e);return"UTC".concat(t.format("Z"))},Qr=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=new RegExp(e,"i");return Br.reduce((function(n,r){var i=(r.match(/^(.*?)\//)||[])[1]||"unknown",o=Wr(r),a=o.replace(/UTC|0/,""),u=r.replace(/[/_]/g," "),l={region:r,utc:o,search:"".concat(r," ").concat(o," ").concat(u," ").concat(a)},c=!e||e&&t.test(l.search);return c&&n[i]?n[i].push(l):c&&(n[i]=[l]),n}),{})},Jr=function(e){_t().tz.setDefault(e)},Gr=function(e,t){t?window.localStorage.setItem(e,JSON.stringify({value:t})):Kr([e])},Zr=function(e){var t=window.localStorage.getItem(e);if(null!==t)try{var n;return null===(n=JSON.parse(t))||void 0===n?void 0:n.value}catch(s){return t}},Kr=function(e){return e.forEach((function(e){return window.localStorage.removeItem(e)}))},Xr=Zr("TIMEZONE")||_t().tz.guess();Jr(Xr);var ei,ti=_r("g0.range_input"),ni=qr({defaultDuration:ti||"1h",defaultEndInput:(ei=_r("g0.end_input",_t()().utc().format(Nr)),_t()(ei).utcOffset(0,!0).toDate()),relativeTimeId:ti?_r("g0.relative_time","none"):void 0}),ri=ni.duration,ii=ni.endInput,oi=ni.relativeTimeId,ai={duration:ri,period:Rr(ri,ii),relativeTime:oi,timezone:Xr};function ui(e,t){switch(t.type){case"SET_DURATION":return or(or({},e),{},{duration:t.payload,period:Rr(t.payload,Yr(e.period.end)),relativeTime:"none"});case"SET_RELATIVE_TIME":return or(or({},e),{},{duration:t.payload.duration,period:Rr(t.payload.duration,t.payload.until),relativeTime:t.payload.id});case"SET_PERIOD":var n=function(e){var t=e.to.valueOf()-e.from.valueOf();return Hr(t)}(t.payload);return or(or({},e),{},{duration:n,period:Rr(n,t.payload.to),relativeTime:"none"});case"RUN_QUERY":var r=qr({relativeTimeId:e.relativeTime,defaultDuration:e.duration,defaultEndInput:Yr(e.period.end)}),i=r.duration,o=r.endInput;return or(or({},e),{},{period:Rr(i,o)});case"RUN_QUERY_TO_NOW":return or(or({},e),{},{period:Rr(e.duration)});case"SET_TIMEZONE":return Jr(t.payload),Gr("TIMEZONE",t.payload),or(or({},e),{},{timezone:t.payload});default:throw new Error}}var li=R({}),ci=function(){return le(li).state},si=function(){return le(li).dispatch},fi=function(){var e,t=(null===(e=window.location.search.match(/g\d+\.expr/g))||void 0===e?void 0:e.length)||1;return new Array(t>4?4:t).fill(1).map((function(e,t){return _r("g".concat(t,".expr"),"")}))}(),di={query:fi,queryHistory:fi.map((function(e){return{index:0,values:[e]}})),autocomplete:Zr("AUTOCOMPLETE")||!1};function hi(e,t){switch(t.type){case"SET_QUERY":return or(or({},e),{},{query:t.payload.map((function(e){return e}))});case"SET_QUERY_HISTORY":return or(or({},e),{},{queryHistory:t.payload});case"SET_QUERY_HISTORY_BY_INDEX":return e.queryHistory.splice(t.payload.queryNumber,1,t.payload.value),or(or({},e),{},{queryHistory:e.queryHistory});case"TOGGLE_AUTOCOMPLETE":return Gr("AUTOCOMPLETE",!e.autocomplete),or(or({},e),{},{autocomplete:!e.autocomplete});default:throw new Error}}var pi=R({}),vi=function(){return le(pi).state},mi=function(){return le(pi).dispatch},yi=function(){return xr("svg",{viewBox:"0 0 74 24",fill:"currentColor",children:[xr("path",{d:"M6.11767 10.4759C6.47736 10.7556 6.91931 10.909 7.37503 10.9121H7.42681C7.90756 10.9047 8.38832 10.7199 8.67677 10.4685C10.1856 9.18921 14.5568 5.18138 14.5568 5.18138C15.7254 4.09438 12.4637 3.00739 7.42681 3H7.36764C2.3308 3.00739 -0.930935 4.09438 0.237669 5.18138C0.237669 5.18138 4.60884 9.18921 6.11767 10.4759ZM8.67677 12.6424C8.31803 12.9248 7.87599 13.0808 7.41941 13.0861H7.37503C6.91845 13.0808 6.47641 12.9248 6.11767 12.6424C5.0822 11.7551 1.38409 8.42018 0.000989555 7.14832V9.07829C0.000989555 9.29273 0.0823481 9.57372 0.222877 9.70682L0.293316 9.7712L0.293344 9.77122C1.33784 10.7258 4.83903 13.9255 6.11767 15.0161C6.47641 15.2985 6.91845 15.4545 7.37503 15.4597H7.41941C7.90756 15.4449 8.38092 15.2601 8.67677 15.0161C9.9859 13.9069 13.6249 10.572 14.5642 9.70682C14.7121 9.57372 14.7861 9.29273 14.7861 9.07829V7.14832C12.7662 8.99804 10.7297 10.8295 8.67677 12.6424ZM7.41941 17.6263C7.87513 17.6232 8.31708 17.4698 8.67677 17.19C10.7298 15.3746 12.7663 13.5407 14.7861 11.6885V13.6259C14.7861 13.8329 14.7121 14.1139 14.5642 14.247C13.6249 15.1196 9.9859 18.4471 8.67677 19.5563C8.38092 19.8077 7.90756 19.9926 7.41941 20H7.37503C6.91931 19.9968 6.47736 19.8435 6.11767 19.5637C4.91427 18.5373 1.74219 15.6364 0.502294 14.5025C0.393358 14.4029 0.299337 14.3169 0.222877 14.247C0.0823481 14.1139 0.000989555 13.8329 0.000989555 13.6259V11.6885C1.38409 12.953 5.0822 16.2953 6.11767 17.1827C6.47641 17.4651 6.91845 17.6211 7.37503 17.6263H7.41941Z"}),xr("path",{d:"M34.9996 5L29.1596 19.46H26.7296L20.8896 5H23.0496C23.2829 5 23.4729 5.05667 23.6196 5.17C23.7663 5.28333 23.8763 5.43 23.9496 5.61L27.3596 14.43C27.4729 14.7167 27.5796 15.0333 27.6796 15.38C27.7863 15.72 27.8863 16.0767 27.9796 16.45C28.0596 16.0767 28.1463 15.72 28.2396 15.38C28.3329 15.0333 28.4363 14.7167 28.5496 14.43L31.9396 5.61C31.9929 5.45667 32.0963 5.31667 32.2496 5.19C32.4096 5.06333 32.603 5 32.8297 5H34.9996ZM52.1763 5V19.46H49.8064V10.12C49.8064 9.74667 49.8263 9.34333 49.8663 8.91L45.4963 17.12C45.2897 17.5133 44.973 17.71 44.5463 17.71H44.1663C43.7397 17.71 43.4231 17.5133 43.2164 17.12L38.7963 8.88C38.8163 9.1 38.833 9.31667 38.8463 9.53C38.8597 9.74333 38.8663 9.94 38.8663 10.12V19.46H36.4963V5H38.5263C38.6463 5 38.7497 5.00333 38.8363 5.01C38.923 5.01667 38.9997 5.03333 39.0663 5.06C39.1397 5.08667 39.203 5.13 39.2563 5.19C39.3163 5.25 39.373 5.33 39.4263 5.43L43.7563 13.46C43.8697 13.6733 43.973 13.8933 44.0663 14.12C44.1663 14.3467 44.263 14.58 44.3563 14.82C44.4497 14.5733 44.5464 14.3367 44.6464 14.11C44.7464 13.8767 44.8531 13.6533 44.9664 13.44L49.2363 5.43C49.2897 5.33 49.3463 5.25 49.4063 5.19C49.4663 5.13 49.5297 5.08667 49.5963 5.06C49.6697 5.03333 49.7497 5.01667 49.8363 5.01C49.923 5.00333 50.0264 5 50.1464 5H52.1763ZM61.0626 18.73C61.7426 18.73 62.3492 18.6133 62.8826 18.38C63.4226 18.14 63.8792 17.81 64.2526 17.39C64.6259 16.97 64.9092 16.4767 65.1026 15.91C65.3026 15.3367 65.4026 14.72 65.4026 14.06V5.31H66.4226V14.06C66.4226 14.84 66.2993 15.57 66.0527 16.25C65.806 16.9233 65.4493 17.5133 64.9827 18.02C64.5227 18.52 63.9592 18.9133 63.2926 19.2C62.6326 19.4867 61.8892 19.63 61.0626 19.63C60.2359 19.63 59.4893 19.4867 58.8227 19.2C58.1627 18.9133 57.5992 18.52 57.1326 18.02C56.6726 17.5133 56.3193 16.9233 56.0727 16.25C55.826 15.57 55.7026 14.84 55.7026 14.06V5.31H56.7327V14.05C56.7327 14.71 56.8292 15.3267 57.0226 15.9C57.2226 16.4667 57.506 16.96 57.8727 17.38C58.246 17.8 58.6993 18.13 59.2327 18.37C59.7727 18.61 60.3826 18.73 61.0626 18.73ZM71.4438 19.46H70.4138V5.31H71.4438V19.46Z"})]})},gi=function(){return xr("svg",{viewBox:"0 0 15 17",fill:"currentColor",children:xr("path",{d:"M6.11767 7.47586C6.47736 7.75563 6.91931 7.90898 7.37503 7.91213H7.42681C7.90756 7.90474 8.38832 7.71987 8.67677 7.46846C10.1856 6.18921 14.5568 2.18138 14.5568 2.18138C15.7254 1.09438 12.4637 0.00739 7.42681 0H7.36764C2.3308 0.00739 -0.930935 1.09438 0.237669 2.18138C0.237669 2.18138 4.60884 6.18921 6.11767 7.47586ZM8.67677 9.64243C8.31803 9.92483 7.87599 10.0808 7.41941 10.0861H7.37503C6.91845 10.0808 6.47641 9.92483 6.11767 9.64243C5.0822 8.75513 1.38409 5.42018 0.000989555 4.14832V6.07829C0.000989555 6.29273 0.0823481 6.57372 0.222877 6.70682L0.293316 6.7712L0.293344 6.77122C1.33784 7.72579 4.83903 10.9255 6.11767 12.0161C6.47641 12.2985 6.91845 12.4545 7.37503 12.4597H7.41941C7.90756 12.4449 8.38092 12.2601 8.67677 12.0161C9.9859 10.9069 13.6249 7.57198 14.5642 6.70682C14.7121 6.57372 14.7861 6.29273 14.7861 6.07829V4.14832C12.7662 5.99804 10.7297 7.82949 8.67677 9.64243ZM7.41941 14.6263C7.87513 14.6232 8.31708 14.4698 8.67677 14.19C10.7298 12.3746 12.7663 10.5407 14.7861 8.68853V10.6259C14.7861 10.8329 14.7121 11.1139 14.5642 11.247C13.6249 12.1196 9.9859 15.4471 8.67677 16.5563C8.38092 16.8077 7.90756 16.9926 7.41941 17H7.37503C6.91931 16.9968 6.47736 16.8435 6.11767 16.5637C4.91427 15.5373 1.74219 12.6364 0.502294 11.5025C0.393358 11.4029 0.299337 11.3169 0.222877 11.247C0.0823481 11.1139 0.000989555 10.8329 0.000989555 10.6259V8.68853C1.38409 9.95303 5.0822 13.2953 6.11767 14.1827C6.47641 14.4651 6.91845 14.6211 7.37503 14.6263H7.41941Z"})})},_i=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.09.63-.09.94s.02.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z"})})},bi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"})})},Di=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34C4.9 8.79 4 10.79 4 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z"})})},wi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"})})},xi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"})})},ki=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"})})},Ci=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"})})},Ei=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"})})},Si=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"})})},Ai=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m7 10 5 5 5-5z"})})},Fi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"})})},Ni=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:[xr("path",{d:"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"}),xr("path",{d:"M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z"})]})},Oi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"})})},Ti=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m22 5.72-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9c4.97 0 9-4.03 9-9s-4.03-9-9-9zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"})})},Mi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z"})})},Bi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"})})},Ii=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M8 5v14l11-7z"})})},Li=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m10 16.5 6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"})})},Pi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"m3.5 18.49 6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z"})})},zi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M10 10.02h5V21h-5zM17 21h3c1.1 0 2-.9 2-2v-9h-5v11zm3-18H5c-1.1 0-2 .9-2 2v3h19V5c0-1.1-.9-2-2-2zM3 19c0 1.1.9 2 2 2h3V10H3v9z"})})},ji=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M9.4 16.6 4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"})})},Ri=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"})})},$i=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"})})},Ui=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M8.9999 14.7854L18.8928 4.8925C19.0803 4.70497 19.3347 4.59961 19.5999 4.59961C19.8651 4.59961 20.1195 4.70497 20.307 4.8925L21.707 6.2925C22.0975 6.68303 22.0975 7.31619 21.707 7.70672L9.70701 19.7067C9.31648 20.0972 8.68332 20.0972 8.2928 19.7067L2.6928 14.1067C2.50526 13.9192 2.3999 13.6648 2.3999 13.3996C2.3999 13.1344 2.50526 12.88 2.6928 12.6925L4.0928 11.2925C4.48332 10.902 5.11648 10.902 5.50701 11.2925L8.9999 14.7854Z"})})},Hi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"})})},Yi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78 3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"})})},Vi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"})})},qi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M20 9H4v2h16V9zM4 15h16v-2H4v2z"})})},Wi=function(){return xr("svg",{viewBox:"0 0 24 24",fill:"currentColor",children:xr("path",{d:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"})})},Qi=function(){return xr("svg",{className:"MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiBox-root css-1om0hkc",focusable:"false","aria-hidden":"true",viewBox:"0 0 24 24","data-testid":"OpenInFullIcon",fill:"currentColor",children:xr("path",{d:"M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z"})})},Ji=n(123),Gi=n.n(Ji),Zi=function(e){return getComputedStyle(document.documentElement).getPropertyValue("--".concat(e))},Ki=function(e,t){document.documentElement.style.setProperty("--".concat(e),t)},Xi=function(e){var t=At(ee({width:0,height:0}),2),n=t[0],r=t[1];return ne((function(){var t=new ResizeObserver((function(e){var t=e[0].contentRect,n=t.width,i=t.height;r({width:n,height:i})}));return e&&t.observe(e),function(){e&&t.unobserve(e)}}),[]),n},eo=function(e){var t=e.activeItem,n=e.items,r=e.color,i=void 0===r?Zi("color-primary"):r,o=e.onChange,a=e.indicatorPlacement,u=void 0===a?"bottom":a,l=Xi(document.body),c=ie(null),s=At(ee({left:0,width:0,bottom:0}),2),f=s[0],d=s[1];return ne((function(){if(c.current){var e=c.current,t=e.offsetLeft,n=e.offsetWidth,r=e.offsetHeight;d({left:t,width:n,bottom:"top"===u?r-2:0})}}),[l,t,c,n]),xr("div",{className:"vm-tabs",children:[n.map((function(e){return xr("div",{className:Gi()(rr({"vm-tabs-item":!0,"vm-tabs-item_active":t===e.value},e.className||"",e.className)),ref:t===e.value?c:void 0,style:{color:i},onClick:(n=e.value,function(){o(n)}),children:[e.icon&&xr("div",{className:Gi()({"vm-tabs-item__icon":!0,"vm-tabs-item__icon_single":!e.label}),children:e.icon}),e.label]},e.value);var n})),xr("div",{className:"vm-tabs__indicator",style:or(or({},f),{},{borderColor:i})})]})},to=[{value:"chart",icon:xr(Pi,{}),label:"Graph",prometheusCode:0},{value:"code",icon:xr(ji,{}),label:"JSON",prometheusCode:3},{value:"table",icon:xr(zi,{}),label:"Table",prometheusCode:1}],no=function(){var e=co().displayType,t=so();return xr(eo,{activeItem:e,items:to,onChange:function(n){var r;t({type:"SET_DISPLAY_TYPE",payload:null!==(r=n)&&void 0!==r?r:e})}})},ro=_r("g0.tab",0),io=to.find((function(e){return e.prometheusCode===+ro||e.value===ro})),oo=Zr("SERIES_LIMITS"),ao={displayType:(null===io||void 0===io?void 0:io.value)||"chart",nocache:!1,isTracingEnabled:!1,seriesLimits:oo?JSON.parse(Zr("SERIES_LIMITS")):mr,tableCompact:Zr("TABLE_COMPACT")||!1};function uo(e,t){switch(t.type){case"SET_DISPLAY_TYPE":return or(or({},e),{},{displayType:t.payload});case"SET_SERIES_LIMITS":return Gr("SERIES_LIMITS",JSON.stringify(t.payload)),or(or({},e),{},{seriesLimits:t.payload});case"TOGGLE_QUERY_TRACING":return or(or({},e),{},{isTracingEnabled:!e.isTracingEnabled});case"TOGGLE_NO_CACHE":return or(or({},e),{},{nocache:!e.nocache});case"TOGGLE_TABLE_COMPACT":return Gr("TABLE_COMPACT",!e.tableCompact),or(or({},e),{},{tableCompact:!e.tableCompact});default:throw new Error}}var lo=R({}),co=function(){return le(lo).state},so=function(){return le(lo).dispatch},fo={customStep:_r("g0.step_input",""),yaxis:{limits:{enable:!1,range:{1:[0,0]}}}};function ho(e,t){switch(t.type){case"TOGGLE_ENABLE_YAXIS_LIMITS":return or(or({},e),{},{yaxis:or(or({},e.yaxis),{},{limits:or(or({},e.yaxis.limits),{},{enable:!e.yaxis.limits.enable})})});case"SET_CUSTOM_STEP":return or(or({},e),{},{customStep:t.payload});case"SET_YAXIS_LIMITS":return or(or({},e),{},{yaxis:or(or({},e.yaxis),{},{limits:or(or({},e.yaxis.limits),{},{range:t.payload})})});default:throw new Error}}var po=R({}),vo=function(){return le(po).state},mo=function(){return le(po).dispatch},yo={runQuery:0,topN:_r("topN",10),date:_r("date",_t()().tz().format(Ar)),focusLabel:_r("focusLabel",""),match:_r("match",""),extraLabel:_r("extra_label","")};function go(e,t){switch(t.type){case"SET_TOP_N":return or(or({},e),{},{topN:t.payload});case"SET_DATE":return or(or({},e),{},{date:t.payload});case"SET_MATCH":return or(or({},e),{},{match:t.payload});case"SET_EXTRA_LABEL":return or(or({},e),{},{extraLabel:t.payload});case"SET_FOCUS_LABEL":return or(or({},e),{},{focusLabel:t.payload});case"RUN_QUERY":return or(or({},e),{},{runQuery:e.runQuery+1});default:throw new Error}}var _o=R({}),bo=function(){return le(_o).state},Do=function(){return le(_o).dispatch},wo={topN:_r("topN",null),maxLifetime:_r("maxLifetime",""),runQuery:0};function xo(e,t){switch(t.type){case"SET_TOP_N":return or(or({},e),{},{topN:t.payload});case"SET_MAX_LIFE_TIME":return or(or({},e),{},{maxLifetime:t.payload});case"SET_RUN_QUERY":return or(or({},e),{},{runQuery:e.runQuery+1});default:throw new Error}}var ko,Co=R({}),Eo=function(){return le(Co).state},So={success:xr(Ci,{}),error:xr(ki,{}),warning:xr(xi,{}),info:xr(wi,{})},Ao=function(e){var t=e.variant,n=e.children;return xr("div",{className:Gi()(rr({"vm-alert":!0},"vm-alert_".concat(t),t)),children:[xr("div",{className:"vm-alert__icon",children:So[t||"info"]}),xr("div",{className:"vm-alert__content",children:n})]})},Fo=R({showInfoMessage:function(){}}),No=function(){return le(Fo)},Oo=function(){for(var e=arguments.length,t=new Array(e),n=0;nh,m=r.top-20<0,y=r.left+g.width+20>f,_=r.left-20<0;return v&&(r.top=t.top-g.height-u),m&&(r.top=t.height+t.top+u),y&&(r.left=t.right-g.width-l),_&&(r.left=t.left+l),d&&(r.width="".concat(t.width,"px")),r}),[n,i,p,t,d]);f&&Mo(b,(function(){return v(!1)}),n);var x=Gi()({"vm-popper":!0,"vm-popper_open":p});return xr(y,{children:p&&yt.createPortal(xr("div",{className:x,ref:b,style:w,children:t}),document.body)})},Io=function(e){var t=e.children,n=e.title,r=e.open,i=e.placement,o=void 0===i?"bottom-center":i,a=e.offset,u=void 0===a?{top:6,left:0}:a,l=At(ee(!1),2),c=l[0],s=l[1],f=At(ee({width:0,height:0}),2),d=f[0],h=f[1],p=ie(null),v=ie(null),m=function(){return s(!1)};ne((function(){return window.addEventListener("scroll",m),function(){window.removeEventListener("scroll",m)}}),[]),ne((function(){v.current&&c&&h({width:v.current.clientWidth,height:v.current.clientHeight})}),[c]);var g=ae((function(){var e,t=null===p||void 0===p||null===(e=p.current)||void 0===e?void 0:e.base;if(!t||!c)return{};var n=t.getBoundingClientRect(),r={top:0,left:0},i="bottom-right"===o||"top-right"===o,a="bottom-left"===o||"top-left"===o,l=null===o||void 0===o?void 0:o.includes("top"),s=(null===u||void 0===u?void 0:u.top)||0,f=(null===u||void 0===u?void 0:u.left)||0;r.left=n.left-(d.width-n.width)/2+f,r.top=n.height+n.top+s,i&&(r.left=n.right-d.width),a&&(r.left=n.left+f),l&&(r.top=n.top-d.height-s);var h=window,v=h.innerWidth,m=h.innerHeight,y=r.top+d.height+20>m,g=r.top-20<0,_=r.left+d.width+20>v,b=r.left-20<0;return y&&(r.top=n.top-d.height-s),g&&(r.top=n.height+n.top+s),_&&(r.left=n.right-d.width-f),b&&(r.left=n.left+f),r.top<0&&(r.top=20),r.left<0&&(r.left=20),r}),[p,o,c,d]),_=function(){"boolean"!==typeof r&&s(!0)},b=function(){s(!1)};return ne((function(){"boolean"===typeof r&&s(r)}),[r]),ne((function(){var e,t=null===p||void 0===p||null===(e=p.current)||void 0===e?void 0:e.base;if(t)return t.addEventListener("mouseenter",_),t.addEventListener("mouseleave",b),function(){t.removeEventListener("mouseenter",_),t.removeEventListener("mouseleave",b)}}),[p]),xr(y,{children:[xr(y,{ref:p,children:t}),c&&yt.createPortal(xr("div",{className:"vm-tooltip",ref:v,style:g,children:n}),document.body)]})},Lo=[{seconds:0,title:"Off"},{seconds:1,title:"1s"},{seconds:2,title:"2s"},{seconds:5,title:"5s"},{seconds:10,title:"10s"},{seconds:30,title:"30s"},{seconds:60,title:"1m"},{seconds:300,title:"5m"},{seconds:900,title:"15m"},{seconds:1800,title:"30m"},{seconds:3600,title:"1h"},{seconds:7200,title:"2h"}],Po=function(){var e=si(),t=fr(),n=At(ee(!1),2),r=n[0],i=n[1],o=At(ee(Lo[0]),2),a=o[0],u=o[1];ne((function(){var t,n=a.seconds;return r?t=setInterval((function(){e({type:"RUN_QUERY"})}),1e3*n):u(Lo[0]),function(){t&&clearInterval(t)}}),[a,r]);var l=At(ee(!1),2),c=l[0],s=l[1],f=ie(null),d=function(e){return function(){!function(e){(r&&!e.seconds||!r&&e.seconds)&&i((function(e){return!e})),u(e),s(!1)}(e)}};return xr(y,{children:[xr("div",{className:"vm-execution-controls",children:xr("div",{className:Gi()({"vm-execution-controls-buttons":!0,"vm-header-button":!t}),children:[xr(Io,{title:"Refresh dashboard",children:xr(To,{variant:"contained",color:"primary",onClick:function(){e({type:"RUN_QUERY"})},startIcon:xr(Ei,{})})}),xr(Io,{title:"Auto-refresh control",children:xr("div",{ref:f,children:xr(To,{variant:"contained",color:"primary",fullWidth:!0,endIcon:xr("div",{className:Gi()({"vm-execution-controls-buttons__arrow":!0,"vm-execution-controls-buttons__arrow_open":c}),children:xr(Si,{})}),onClick:function(){s((function(e){return!e}))},children:a.title})})})]})}),xr(Bo,{open:c,placement:"bottom-right",onClose:function(){s(!1)},buttonRef:f,children:xr("div",{className:"vm-execution-controls-list",children:Lo.map((function(e){return xr("div",{className:Gi()({"vm-list-item":!0,"vm-list-item_active":e.seconds===a.seconds}),onClick:d(e),children:e.title},e.seconds)}))})})]})},zo=function(e){var t=e.relativeTime,n=e.setDuration;return xr("div",{className:"vm-time-duration",children:Vr.map((function(e){var r,i=e.id,o=e.duration,a=e.until,u=e.title;return xr("div",{className:Gi()({"vm-list-item":!0,"vm-list-item_active":i===t}),onClick:(r={duration:o,until:a(),id:i},function(){n(r)}),children:u||o},i)}))})},jo=function(e){var t=e.viewDate,n=e.displayYears,r=e.onChangeViewDate;return xr("div",{className:"vm-calendar-header",children:[xr("div",{className:"vm-calendar-header-left",onClick:e.toggleDisplayYears,children:[xr("span",{className:"vm-calendar-header-left__date",children:t.format("MMMM YYYY")}),xr("div",{className:"vm-calendar-header-left__select-year",children:xr(Ai,{})})]}),!n&&xr("div",{className:"vm-calendar-header-right",children:[xr("div",{className:"vm-calendar-header-right__prev",onClick:function(){r(t.subtract(1,"month"))},children:xr(Si,{})}),xr("div",{className:"vm-calendar-header-right__next",onClick:function(){r(t.add(1,"month"))},children:xr(Si,{})})]})]})},Ro=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],$o=function(e){var t=e.viewDate,n=e.selectDate,r=e.onChangeSelectDate,i=_t()().tz().startOf("day"),o=ae((function(){var e=new Array(42).fill(null),n=t.startOf("month"),r=t.endOf("month").diff(n,"day")+1,i=new Array(r).fill(n).map((function(e,t){return e.add(t,"day")})),o=n.day();return e.splice.apply(e,[o,r].concat(Ft(i))),e}),[t]),a=function(e){return function(){e&&r(e)}};return xr("div",{className:"vm-calendar-body",children:[Ro.map((function(e){return xr("div",{className:"vm-calendar-body-cell vm-calendar-body-cell_weekday",children:e[0]},e)})),o.map((function(e,t){return xr("div",{className:Gi()({"vm-calendar-body-cell":!0,"vm-calendar-body-cell_day":!0,"vm-calendar-body-cell_day_empty":!e,"vm-calendar-body-cell_day_active":(e&&e.toISOString())===n.startOf("day").toISOString(),"vm-calendar-body-cell_day_today":(e&&e.toISOString())===i.toISOString()}),onClick:a(e),children:e&&e.format("D")},e?e.toISOString():t)}))]})},Uo=function(e){var t=e.viewDate,n=e.onChangeViewDate,r=ae((function(){return t.format("YYYY")}),[t]),i=ae((function(){var e=_t()().subtract(103,"year");return new Array(206).fill(e).map((function(e,t){return e.add(t,"year")}))}),[t]);ne((function(){var e=document.getElementById("vm-calendar-year-".concat(r));e&&e.scrollIntoView({block:"center"})}),[]);return xr("div",{className:"vm-calendar-years",children:i.map((function(e){return xr("div",{className:Gi()({"vm-calendar-years__year":!0,"vm-calendar-years__year_selected":e.format("YYYY")===r}),id:"vm-calendar-year-".concat(e.format("YYYY")),onClick:(t=e,function(){n(t)}),children:e.format("YYYY")},e.format("YYYY"));var t}))})};!function(e){e[e.hour=0]="hour",e[e.minutes=1]="minutes",e[e.seconds=2]="seconds"}(ko||(ko={}));var Ho,Yo=function(e){var t=e.selectDate,n=e.onChangeTime,r=e.onClose,i=At(ee(ko.hour),2),o=i[0],a=i[1],u=At(ee(t.format("HH")),2),l=u[0],c=u[1],s=At(ee(t.format("mm")),2),f=s[0],d=s[1],h=At(ee(t.format("ss")),2),p=h[0],v=h[1],m=ae((function(){return o===ko.hour?new Array(24).fill("00").map((function(e,t){return{value:t,degrees:t/12*360,offset:0===t||t>12,title:t?"".concat(t):e}})):new Array(60).fill("00").map((function(e,t){return{value:t,degrees:t/60*360,offset:!1,title:t?"".concat(t):e}}))}),[o,l,f,p]),y=ae((function(){switch(o){case ko.hour:return+l/12*360;case ko.minutes:return+f/60*360;case ko.seconds:return+p/60*360}}),[o,l,f,p]),g=ie(null),_=ie(null),b=ie(null),D=function(e){return function(t){!function(e,t){t.target.select(),a(e)}(e,t)}};return ne((function(){n("".concat(l,":").concat(f,":").concat(p))}),[l,f,p]),ne((function(){c(t.format("HH")),d(t.format("mm")),v(t.format("ss"))}),[t]),ne((function(){g.current&&g.current.focus()}),[]),xr("div",{className:"vm-calendar-time-picker",children:[xr("div",{className:"vm-calendar-time-picker-clock",children:[xr("div",{className:Gi()({"vm-calendar-time-picker-clock__arrow":!0,"vm-calendar-time-picker-clock__arrow_offset":o===ko.hour&&("00"===l||+l>12)}),style:{transform:"rotate(".concat(y,"deg)")}}),m.map((function(e){return xr("div",{className:Gi()({"vm-calendar-time-picker-clock__time":!0,"vm-calendar-time-picker-clock__time_offset":e.offset,"vm-calendar-time-picker-clock__time_hide":m.length>24&&e.value%5}),style:{transform:"rotate(".concat(e.degrees,"deg)")},onClick:(t=e.value,function(){var e=String(t);switch(o){case ko.hour:c(e),_.current&&_.current.focus();break;case ko.minutes:d(e),b.current&&b.current.focus();break;case ko.seconds:v(e),r()}}),children:xr("span",{style:{transform:"rotate(-".concat(e.degrees,"deg)")},children:e.title})},e.value);var t}))]}),xr("div",{className:"vm-calendar-time-picker-fields",children:[xr("input",{className:"vm-calendar-time-picker-fields__input",value:l,onChange:function(e){var t=e.target,n=t.value,r=+n>23?"23":n;t.value=r,c(r),n.length>1&&_.current&&_.current.focus()},onFocus:D(ko.hour),ref:g,type:"number",min:0,max:24}),xr("span",{children:":"}),xr("input",{className:"vm-calendar-time-picker-fields__input",value:f,onChange:function(e){var t=e.target,n=t.value,r=+n>59?"59":n;t.value=r,d(r),n.length>1&&b.current&&b.current.focus()},onFocus:D(ko.minutes),ref:_,type:"number",min:0,max:60}),xr("span",{children:":"}),xr("input",{className:"vm-calendar-time-picker-fields__input",value:p,onChange:function(e){var t=e.target,n=t.value,i=+n>59?"59":n;t.value=i,v(i),n.length>1&&b.current&&r()},onFocus:D(ko.seconds),ref:b,type:"number",min:0,max:60})]})]})},Vo=[{value:"date",icon:xr(Oi,{})},{value:"time",icon:xr(Ni,{})}],qo=function(e){var t=e.date,n=e.timepicker,r=void 0!==n&&n,i=e.format,o=void 0===i?Fr:i,a=e.onChange,u=e.onClose,l=At(ee(!1),2),c=l[0],s=l[1],f=At(ee(_t().tz(t)),2),d=f[0],h=f[1],p=At(ee(_t().tz(t)),2),v=p[0],m=p[1],g=At(ee(Vo[0].value),2),_=g[0],b=g[1],D=function(e){h(e),s(!1)};return ne((function(){v.format()!==_t().tz(t).format()&&a(v.format(o))}),[v]),xr("div",{className:"vm-calendar",children:["date"===_&&xr(jo,{viewDate:d,onChangeViewDate:D,toggleDisplayYears:function(){s((function(e){return!e}))},displayYears:c}),"date"===_&&xr(y,{children:[!c&&xr($o,{viewDate:d,selectDate:v,onChangeSelectDate:function(e){m(e),r&&b("time")}}),c&&xr(Uo,{viewDate:d,onChangeViewDate:D})]}),"time"===_&&xr(Yo,{selectDate:v,onChangeTime:function(e){var t=At(e.split(":"),3),n=t[0],r=t[1],i=t[2];m((function(e){return e.set("hour",+n).set("minute",+r).set("second",+i)}))},onClose:function(){u&&u()}}),r&&xr("div",{className:"vm-calendar__tabs",children:xr(eo,{activeItem:_,items:Vo,onChange:function(e){b(e)},indicatorPlacement:"top"})})]})},Wo=Ee((function(e,t){var n=e.date,r=e.targetRef,i=e.format,o=void 0===i?Fr:i,a=e.timepicker,u=e.onChange,l=At(ee(!1),2),c=l[0],s=l[1],f=ae((function(){return n?_t().tz(n):_t()().tz()}),[n]),d=function(){s((function(e){return!e}))},h=function(){s(!1)},p=function(e){"Escape"!==e.key&&"Enter"!==e.key||h()};return ne((function(){var e;return null===(e=r.current)||void 0===e||e.addEventListener("click",d),function(){var e;null===(e=r.current)||void 0===e||e.removeEventListener("click",d)}}),[r]),ne((function(){return window.addEventListener("keyup",p),function(){window.removeEventListener("keyup",p)}}),[]),xr(y,{children:xr(Bo,{open:c,buttonRef:r,placement:"bottom-right",onClose:h,children:xr("div",{ref:t,children:xr(qo,{date:f,format:o,timepicker:a,onChange:function(e){a||h(),u(e)},onClose:h})})})})})),Qo=Wo,Jo=function(){var e=ie(null),t=Xi(document.body),n=ae((function(){return t.width>1120}),[t]),r=At(ee(),2),i=r[0],o=r[1],a=At(ee(),2),u=a[0],l=a[1],c=ae((function(){return _t().tz(u).format(Fr)}),[u]),s=ae((function(){return _t().tz(i).format(Fr)}),[i]),f=ci(),d=f.period,h=d.end,p=d.start,v=f.relativeTime,m=f.timezone,g=f.duration,_=si(),b=fr(),D=ae((function(){return{region:m,utc:Wr(m)}}),[m]);ne((function(){o(Ur(Yr(h)))}),[m,h]),ne((function(){l(Ur(Yr(p)))}),[m,p]);var w=function(e){var t=e.duration,n=e.until,r=e.id;_({type:"SET_RELATIVE_TIME",payload:{duration:t,until:n,id:r}}),O(!1)},x=ae((function(){return{start:_t().tz(Yr(p)).format(Fr),end:_t().tz(Yr(h)).format(Fr)}}),[p,h,m]),k=ae((function(){return v&&"none"!==v?v.replace(/_/g," "):"".concat(x.start," - ").concat(x.end)}),[v,x]),C=ie(null),E=ie(null),S=ie(null),A=ie(null),F=At(ee(!1),2),N=F[0],O=F[1],T=ie(null),M=function(){O(!1)};return ne((function(){var e=qr({relativeTimeId:v,defaultDuration:g,defaultEndInput:Yr(h)});w({id:e.relativeTimeId,duration:e.duration,until:e.endInput})}),[m]),Mo(e,(function(e){var t,n,r=e.target,i=(null===C||void 0===C?void 0:C.current)&&C.current.contains(r),o=(null===E||void 0===E?void 0:E.current)&&E.current.contains(r),a=(null===S||void 0===S?void 0:S.current)&&(null===S||void 0===S||null===(t=S.current)||void 0===t?void 0:t.contains(r)),u=(null===A||void 0===A?void 0:A.current)&&(null===A||void 0===A||null===(n=A.current)||void 0===n?void 0:n.contains(r));i||o||a||u||M()})),xr(y,{children:[xr("div",{ref:T,children:xr(Io,{title:"Time range controls",children:xr(To,{className:b?"":"vm-header-button",variant:"contained",color:"primary",startIcon:xr(Ni,{}),onClick:function(){O((function(e){return!e}))},children:n&&xr("span",{children:k})})})}),xr(Bo,{open:N,buttonRef:T,placement:"bottom-right",onClose:M,clickOutside:!1,children:xr("div",{className:"vm-time-selector",ref:e,children:[xr("div",{className:"vm-time-selector-left",children:[xr("div",{className:"vm-time-selector-left-inputs",children:[xr("div",{className:"vm-time-selector-left-inputs__date",ref:C,children:[xr("label",{children:"From:"}),xr("span",{children:c}),xr(Oi,{}),xr(Qo,{ref:S,date:u||"",onChange:function(e){return l(e)},targetRef:C,timepicker:!0})]}),xr("div",{className:"vm-time-selector-left-inputs__date",ref:E,children:[xr("label",{children:"To:"}),xr("span",{children:s}),xr(Oi,{}),xr(Qo,{ref:A,date:i||"",onChange:function(e){return o(e)},targetRef:E,timepicker:!0})]})]}),xr("div",{className:"vm-time-selector-left-timezone",children:[xr("div",{className:"vm-time-selector-left-timezone__title",children:D.region}),xr("div",{className:"vm-time-selector-left-timezone__utc",children:D.utc})]}),xr(To,{variant:"text",startIcon:xr(Ti,{}),onClick:function(){return _({type:"RUN_QUERY_TO_NOW"})},children:"switch to now"}),xr("div",{className:"vm-time-selector-left__controls",children:[xr(To,{color:"error",variant:"outlined",onClick:function(){o(Ur(Yr(h))),l(Ur(Yr(p))),O(!1)},children:"Cancel"}),xr(To,{color:"primary",onClick:function(){return u&&i&&_({type:"SET_PERIOD",payload:{from:_t().tz(u).toDate(),to:_t().tz(i).toDate()}}),void O(!1)},children:"Apply"})]})]}),xr(zo,{relativeTime:v||"",setDuration:w})]})})]})};!function(e){e.emptyServer="Please enter Server URL",e.validServer="Please provide a valid Server URL",e.validQuery="Please enter a valid Query and execute it",e.traceNotFound="Not found the tracing information",e.emptyTitle="Please enter title",e.positiveNumber="Please enter positive number",e.validStep="Please enter a valid step"}(Ho||(Ho={}));var Go=function(e){var t=e.label,n=e.value,r=e.type,i=void 0===r?"text":r,o=e.error,a=void 0===o?"":o,u=e.placeholder,l=e.endIcon,c=e.startIcon,s=e.disabled,f=void 0!==s&&s,d=e.autofocus,h=void 0!==d&&d,p=e.helperText,v=e.onChange,m=e.onEnter,y=e.onKeyDown,g=e.onFocus,_=e.onBlur,b=ie(null),D=ie(null),w=ae((function(){return"textarea"===i?D:b}),[i]),x=Gi()({"vm-text-field__input":!0,"vm-text-field__input_error":a,"vm-text-field__input_icon-start":c,"vm-text-field__input_disabled":f,"vm-text-field__input_textarea":"textarea"===i}),k=function(e){y&&y(e),"Enter"!==e.key||e.shiftKey||(e.preventDefault(),m&&m())},C=function(e){f||v&&v(e.target.value)};ne((function(){var e;h&&(null===w||void 0===w||null===(e=w.current)||void 0===e?void 0:e.focus)&&w.current.focus()}),[w,h]);var E=function(){g&&g()},S=function(){_&&_()};return xr("label",{className:Gi()({"vm-text-field":!0,"vm-text-field_textarea":"textarea"===i}),"data-replicated-value":n,children:[c&&xr("div",{className:"vm-text-field__icon-start",children:c}),l&&xr("div",{className:"vm-text-field__icon-end",children:l}),"textarea"===i?xr("textarea",{className:x,disabled:f,ref:D,value:n,rows:1,placeholder:u,onInput:C,onKeyDown:k,onFocus:E,onBlur:S}):xr("input",{className:x,disabled:f,ref:b,value:n,type:i,placeholder:u,onInput:C,onKeyDown:k,onFocus:E,onBlur:S}),t&&xr("span",{className:"vm-text-field__label",children:t}),xr("span",{className:"vm-text-field__error","data-show":!!a,children:a}),p&&!a&&xr("span",{className:"vm-text-field__helper-text",children:p})]})},Zo=function(e){var t;try{t=new URL(e)}catch(_){return!1}return"http:"===t.protocol||"https:"===t.protocol},Ko=function(e){var t=e.serverUrl,n=e.onChange,r=e.onEnter,i=At(ee(""),2),o=i[0],a=i[1];return xr("div",{children:[xr("div",{className:"vm-server-configurator__title",children:"Server URL"}),xr(Go,{autofocus:!0,value:t,error:o,onChange:function(e){var t=e||"";n(t),a(""),t||a(Ho.emptyServer),Zo(t)||a(Ho.validServer)},onEnter:r})]})},Xo=function(e){var t=e.title,n=e.children,r=e.onClose,i=function(e){"Escape"===e.key&&r()};return ne((function(){return window.addEventListener("keyup",i),function(){window.removeEventListener("keyup",i)}}),[]),yt.createPortal(xr("div",{className:"vm-modal",onMouseDown:r,children:xr("div",{className:"vm-modal-content",children:[xr("div",{className:"vm-modal-content-header",children:[t&&xr("div",{className:"vm-modal-content-header__title",children:t}),xr("div",{className:"vm-modal-header__close",children:xr(To,{variant:"text",size:"small",onClick:r,children:xr(bi,{})})})]}),xr("div",{className:"vm-modal-content-body",onMouseDown:function(e){e.stopPropagation()},children:n})]})}),document.body)},ea=[{label:"Graph",type:"chart"},{label:"JSON",type:"code"},{label:"Table",type:"table"}],ta=function(e){var t=e.limits,n=e.onChange,r=e.onEnter,i=At(ee({table:"",chart:"",code:""}),2),o=i[0],a=i[1],u=function(e){return function(r){!function(e,r){var i=e||"";a((function(e){return or(or({},e),{},rr({},r,+i<0?Ho.positiveNumber:""))})),n(or(or({},t),{},rr({},r,i||1/0)))}(r,e)}};return xr("div",{className:"vm-limits-configurator",children:[xr("div",{className:"vm-server-configurator__title",children:["Series limits by tabs",xr(Io,{title:"To disable limits set to 0",children:xr(To,{variant:"text",color:"primary",size:"small",startIcon:xr(wi,{})})}),xr("div",{className:"vm-limits-configurator-title__reset",children:xr(To,{variant:"text",color:"primary",size:"small",startIcon:xr(Di,{}),onClick:function(){n(mr)},children:"Reset"})})]}),xr("div",{className:"vm-limits-configurator__inputs",children:ea.map((function(e){return xr(Go,{label:e.label,value:t[e.type],error:o[e.type],onChange:u(e.type),onEnter:r,type:"number"},e.type)}))})]})},na=function(e){var t=e.defaultExpanded,n=void 0!==t&&t,r=e.onChange,i=e.title,o=e.children,a=At(ee(n),2),u=a[0],l=a[1];return ne((function(){r&&r(u)}),[u]),xr(y,{children:[xr("header",{className:"vm-accordion-header ".concat(u&&"vm-accordion-header_open"),onClick:function(){l((function(e){return!e}))},children:[i,xr("div",{className:"vm-accordion-header__arrow ".concat(u&&"vm-accordion-header__arrow_open"),children:xr(Si,{})})]}),u&&xr("section",{className:"vm-accordion-section",children:o},"content")]})},ra=function(e){var t=e.timezoneState,n=e.onChange,r=Qr(),i=At(ee(!1),2),o=i[0],a=i[1],u=At(ee(""),2),l=u[0],c=u[1],f=ie(null),d=ae((function(){if(!l)return r;try{return Qr(l)}catch(s){return{}}}),[l,r]),h=ae((function(){return Object.keys(d)}),[d]),p=ae((function(){return{region:_t().tz.guess(),utc:Wr(_t().tz.guess())}}),[]),v=ae((function(){return{region:t,utc:Wr(t)}}),[t]),m=function(){a(!1)},y=function(e){return function(){!function(e){n(e.region),c(""),m()}(e)}};return xr("div",{className:"vm-timezones",children:[xr("div",{className:"vm-server-configurator__title",children:"Time zone"}),xr("div",{className:"vm-timezones-item vm-timezones-item_selected",onClick:function(){a((function(e){return!e}))},ref:f,children:[xr("div",{className:"vm-timezones-item__title",children:v.region}),xr("div",{className:"vm-timezones-item__utc",children:v.utc}),xr("div",{className:Gi()({"vm-timezones-item__icon":!0,"vm-timezones-item__icon_open":o}),children:xr(Ai,{})})]}),xr(Bo,{open:o,buttonRef:f,placement:"bottom-left",onClose:m,children:xr("div",{className:"vm-timezones-list",children:[xr("div",{className:"vm-timezones-list-header",children:[xr("div",{className:"vm-timezones-list-header__search",children:xr(Go,{autofocus:!0,label:"Search",value:l,onChange:function(e){c(e)}})}),xr("div",{className:"vm-timezones-item vm-timezones-list-group-options__item",onClick:y(p),children:[xr("div",{className:"vm-timezones-item__title",children:["Browser Time (",p.region,")"]}),xr("div",{className:"vm-timezones-item__utc",children:p.utc})]})]}),h.map((function(e){return xr("div",{className:"vm-timezones-list-group",children:xr(na,{defaultExpanded:!0,title:xr("div",{className:"vm-timezones-list-group__title",children:e}),children:xr("div",{className:"vm-timezones-list-group-options",children:d[e]&&d[e].map((function(e){return xr("div",{className:"vm-timezones-item vm-timezones-list-group-options__item",onClick:y(e),children:[xr("div",{className:"vm-timezones-item__title",children:e.region}),xr("div",{className:"vm-timezones-item__utc",children:e.utc})]},e.search)}))})})},e)}))]})})]})},ia="Settings",oa=function(){var e=fr(),t=Cr().serverUrl,n=ci().timezone,r=co().seriesLimits,i=Er(),o=si(),a=so(),u=At(ee(t),2),l=u[0],c=u[1],s=At(ee(r),2),f=s[0],d=s[1],h=At(ee(n),2),p=h[0],v=h[1],m=At(ee(!1),2),g=m[0],_=m[1],b=function(){return _(!1)},D=function(){i({type:"SET_SERVER",payload:l}),o({type:"SET_TIMEZONE",payload:p}),a({type:"SET_SERIES_LIMITS",payload:f}),b()};return xr(y,{children:[xr(Io,{title:ia,children:xr(To,{className:Gi()({"vm-header-button":!e}),variant:"contained",color:"primary",startIcon:xr(_i,{}),onClick:function(){return _(!0)}})}),g&&xr(Xo,{title:ia,onClose:b,children:xr("div",{className:"vm-server-configurator",children:[!e&&xr("div",{className:"vm-server-configurator__input",children:xr(Ko,{serverUrl:l,onChange:c,onEnter:D})}),xr("div",{className:"vm-server-configurator__input",children:xr(ta,{limits:f,onChange:d,onEnter:D})}),xr("div",{className:"vm-server-configurator__input",children:xr(ra,{timezoneState:p,onChange:v})}),xr("div",{className:"vm-server-configurator__footer",children:[xr(To,{variant:"outlined",color:"error",onClick:b,children:"Cancel"}),xr(To,{variant:"contained",onClick:D,children:"apply"})]})]})})]})},aa={windows:"Windows",mac:"Mac OS",linux:"Linux"},ua=(Object.values(aa).find((function(e){return navigator.userAgent.indexOf(e)>=0}))||"unknown")===aa.mac?"Cmd":"Ctrl",la=[{title:"Query",list:[{keys:["Enter"],description:"Run"},{keys:["Shift","Enter"],description:"Multi-line queries"},{keys:[ua,"Arrow Up"],description:"Previous command from the Query history"},{keys:[ua,"Arrow Down"],description:"Next command from the Query history"},{keys:[ua,"Click by 'Eye'"],description:"Toggle multiple queries"}]},{title:"Graph",list:[{keys:[ua,"Scroll Up"],alt:["+"],description:"Zoom in"},{keys:[ua,"Scroll Down"],alt:["-"],description:"Zoom out"},{keys:[ua,"Click and Drag"],description:"Move the graph left/right"}]},{title:"Legend",list:[{keys:["Mouse Click"],description:"Select series"},{keys:[ua,"Mouse Click"],description:"Toggle multiple series"}]}],ca=function(){var e=At(ee(!1),2),t=e[0],n=e[1],r=fr();return xr(y,{children:[xr(Io,{title:"Shortcut keys",placement:"bottom-center",children:xr(To,{className:r?"":"vm-header-button",variant:"contained",color:"primary",startIcon:xr(Mi,{}),onClick:function(){n(!0)}})}),t&&xr(Xo,{title:"Shortcut keys",onClose:function(){n(!1)},children:xr("div",{className:"vm-shortcuts",children:la.map((function(e){return xr("div",{className:"vm-shortcuts-section",children:[xr("h3",{className:"vm-shortcuts-section__title",children:e.title}),xr("div",{className:"vm-shortcuts-section-list",children:e.list.map((function(e){return xr("div",{className:"vm-shortcuts-section-list-item",children:[xr("div",{className:"vm-shortcuts-section-list-item__key",children:[e.keys.map((function(t,n){return xr(y,{children:[xr("code",{children:t},t),n!==e.keys.length-1?"+":""]})})),e.alt&&e.alt.map((function(t,n){return xr(y,{children:["or",xr("code",{children:t},t),n!==e.alt.length-1?"+":""]})}))]}),xr("p",{className:"vm-shortcuts-section-list-item__description",children:e.description})]},e.keys.join("+"))}))})]},e.title)}))})})]})},sa=function(){var e=fr(),t=ie(null),n=bo().date,r=Do(),i=ae((function(){return _t().tz(n).format(Ar)}),[n]);return xr("div",{children:[xr("div",{ref:t,children:xr(Io,{title:"Date control",children:xr(To,{className:e?"":"vm-header-button",variant:"contained",color:"primary",startIcon:xr(Oi,{}),children:i})})}),xr(Qo,{date:n||"",format:Ar,onChange:function(e){r({type:"SET_DATE",payload:e})},targetRef:t})]})},fa=function(){var e=Zi("color-primary"),t=fr(),n=sr().headerStyles,r=(n=void 0===n?{}:n).background,i=void 0===r?t?"#FFF":e:r,o=n.color,a=void 0===o?t?e:"#FFF":o,u=zn(),l=Pn(),c=l.search,s=l.pathname,f=ae((function(){return[{label:lr[cr.home].title,value:cr.home},{label:lr[cr.metrics].title,value:cr.metrics},{label:lr[cr.cardinality].title,value:cr.cardinality},{label:lr[cr.topQueries].title,value:cr.topQueries},{label:lr[cr.trace].title,value:cr.trace},{label:lr[cr.dashboards].title,value:cr.dashboards,hide:t}]}),[t]),d=At(ee(s),2),h=d[0],p=d[1],v=ae((function(){return(lr[s]||{}).header||{}}),[s]),m=function(e){u({pathname:e,search:c})};return ne((function(){p(s)}),[s]),xr("header",{className:Gi()({"vm-header":!0,"vm-header_app":t}),style:{background:i,color:a},children:[!t&&xr("div",{className:"vm-header__logo",onClick:function(){m(cr.home),gr({}),window.location.reload()},style:{color:a},children:xr(yi,{})}),xr("div",{className:"vm-header-nav",children:xr(eo,{activeItem:h,items:f.filter((function(e){return!e.hide})),color:a,onChange:function(e){p(e),u(e)}})}),xr("div",{className:"vm-header__settings",children:[(null===v||void 0===v?void 0:v.timeSelector)&&xr(Jo,{}),(null===v||void 0===v?void 0:v.cardinalityDatePicker)&&xr(sa,{}),(null===v||void 0===v?void 0:v.executionControls)&&xr(Po,{}),xr(oa,{}),xr(ca,{})]})]})},da=function(){var e="2019-".concat(_t()().format("YYYY"));return xr("footer",{className:"vm-footer",children:[xr("a",{className:"vm__link vm-footer__website",target:"_blank",href:"https://victoriametrics.com/",rel:"noreferrer",children:[xr(gi,{}),"victoriametrics.com"]}),xr("a",{className:"vm__link",target:"_blank",href:"https://github.com/VictoriaMetrics/VictoriaMetrics/issues/new/choose",rel:"noreferrer",children:"create an issue"}),xr("div",{className:"vm-footer__copyright",children:["\xa9 ",e," VictoriaMetrics"]})]})},ha=function(){var e=fr(),t=Pn().pathname;return ne((function(){var e,n="VM UI",r=null===(e=lr[t])||void 0===e?void 0:e.title;document.title=r?"".concat(r," - ").concat(n):n}),[t]),xr("section",{className:"vm-container",children:[xr(fa,{}),xr("div",{className:Gi()({"vm-container-body":!0,"vm-container-body_app":e}),children:xr(Qn,{})}),!e&&xr(da,{})]})};function pa(e,t){var n="undefined"!==typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=St(e))||t&&e&&"number"===typeof e.length){n&&(e=n);var r=0,i=function(){};return{s:i,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a=!0,u=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return a=e.done,e},e:function(e){u=!0,o=e},f:function(){try{a||null==n.return||n.return()}finally{if(u)throw o}}}}var va,ma,ya="u-off",ga="u-label",_a="width",ba="height",Da="top",wa="bottom",xa="left",ka="right",Ca="#000",Ea=Ca+"0",Sa="mousemove",Aa="mousedown",Fa="mouseup",Na="mouseenter",Oa="mouseleave",Ta="dblclick",Ma="change",Ba="dppxchange",Ia="undefined"!=typeof window,La=Ia?document:null,Pa=Ia?window:null,za=Ia?navigator:null;function ja(e,t){if(null!=t){var n=e.classList;!n.contains(t)&&n.add(t)}}function Ra(e,t){var n=e.classList;n.contains(t)&&n.remove(t)}function $a(e,t,n){e.style[t]=n+"px"}function Ua(e,t,n,r){var i=La.createElement(e);return null!=t&&ja(i,t),null!=n&&n.insertBefore(i,r),i}function Ha(e,t){return Ua("div",e,t)}var Ya=new WeakMap;function Va(e,t,n,r,i){var o="translate("+t+"px,"+n+"px)";o!=Ya.get(e)&&(e.style.transform=o,Ya.set(e,o),t<0||n<0||t>r||n>i?ja(e,ya):Ra(e,ya))}var qa=new WeakMap;function Wa(e,t,n){var r=t+n;r!=qa.get(e)&&(qa.set(e,r),e.style.background=t,e.style.borderColor=n)}var Qa=new WeakMap;function Ja(e,t,n,r){var i=t+""+n;i!=Qa.get(e)&&(Qa.set(e,i),e.style.height=n+"px",e.style.width=t+"px",e.style.marginLeft=r?-t/2+"px":0,e.style.marginTop=r?-n/2+"px":0)}var Ga={passive:!0},Za=or(or({},Ga),{},{capture:!0});function Ka(e,t,n,r){t.addEventListener(e,n,r?Za:Ga)}function Xa(e,t,n,r){t.removeEventListener(e,n,r?Za:Ga)}function eu(e,t,n,r){var i;n=n||0;for(var o=(r=r||t.length-1)<=2147483647;r-n>1;)t[i=o?n+r>>1:yu((n+r)/2)]=t&&i<=n;i+=r)if(null!=e[i])return i;return-1}function nu(e,t,n,r){var i=Su,o=-Su;if(1==r)i=e[t],o=e[n];else if(-1==r)i=e[n],o=e[t];else for(var a=t;a<=n;a++)null!=e[a]&&(i=bu(i,e[a]),o=Du(o,e[a]));return[i,o]}function ru(e,t,n){for(var r=Su,i=-Su,o=t;o<=n;o++)e[o]>0&&(r=bu(r,e[o]),i=Du(i,e[o]));return[r==Su?1:r,i==-Su?10:i]}function iu(e,t,n,r){var i=xu(e),o=xu(t),a=10==n?ku:Cu;e==t&&(-1==i?(e*=n,t/=n):(e/=n,t*=n));var u=1==o?_u:yu,l=(1==i?yu:_u)(a(mu(e))),c=u(a(mu(t))),s=wu(n,l),f=wu(n,c);return l<0&&(s=ju(s,-l)),c<0&&(f=ju(f,-c)),r?(e=s*i,t=f*o):(e=zu(e,s),t=Pu(t,f)),[e,t]}function ou(e,t,n,r){var i=iu(e,t,n,r);return 0==e&&(i[0]=0),0==t&&(i[1]=0),i}Ia&&function e(){var t=devicePixelRatio;va!=t&&(va=t,ma&&Xa(Ma,ma,e),ma=matchMedia("(min-resolution: ".concat(va-.001,"dppx) and (max-resolution: ").concat(va+.001,"dppx)")),Ka(Ma,ma,e),Pa.dispatchEvent(new CustomEvent(Ba)))}();var au={mode:3,pad:.1},uu={pad:0,soft:null,mode:0},lu={min:uu,max:uu};function cu(e,t,n,r){return Ju(n)?fu(e,t,n):(uu.pad=n,uu.soft=r?0:null,uu.mode=r?3:0,fu(e,t,lu))}function su(e,t){return null==e?t:e}function fu(e,t,n){var r=n.min,i=n.max,o=su(r.pad,0),a=su(i.pad,0),u=su(r.hard,-Su),l=su(i.hard,Su),c=su(r.soft,Su),s=su(i.soft,-Su),f=su(r.mode,0),d=su(i.mode,0),h=t-e,p=ku(h),v=Du(mu(e),mu(t)),m=ku(v),y=mu(m-p);(h<1e-9||y>10)&&(h=0,0!=e&&0!=t||(h=1e-9,2==f&&c!=Su&&(o=0),2==d&&s!=-Su&&(a=0)));var g=h||v||1e3,_=ku(g),b=wu(10,yu(_)),D=ju(zu(e-g*(0==h?0==e?.1:1:o),b/10),9),w=e>=c&&(1==f||3==f&&D<=c||2==f&&D>=c)?c:Su,x=Du(u,D=w?w:bu(w,D)),k=ju(Pu(t+g*(0==h?0==t?.1:1:a),b/10),9),C=t<=s&&(1==d||3==d&&k>=s||2==d&&k<=s)?s:-Su,E=bu(l,k>C&&t<=C?C:Du(C,k));return x==E&&0==x&&(E=100),[x,E]}var du=new Intl.NumberFormat(Ia?za.language:"en-US"),hu=function(e){return du.format(e)},pu=Math,vu=pu.PI,mu=pu.abs,yu=pu.floor,gu=pu.round,_u=pu.ceil,bu=pu.min,Du=pu.max,wu=pu.pow,xu=pu.sign,ku=pu.log10,Cu=pu.log2,Eu=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return pu.asinh(e/t)},Su=1/0;function Au(e){return 1+(0|ku((e^e>>31)-(e>>31)))}function Fu(e,t){return gu(e/t)*t}function Nu(e,t,n){return bu(Du(e,t),n)}function Ou(e){return"function"==typeof e?e:function(){return e}}var Tu=function(e){return e},Mu=function(e,t){return t},Bu=function(e){return null},Iu=function(e){return!0},Lu=function(e,t){return e==t};function Pu(e,t){return _u(e/t)*t}function zu(e,t){return yu(e/t)*t}function ju(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(Wu(e))return e;var n=Math.pow(10,t),r=e*n*(1+Number.EPSILON);return gu(r)/n}var Ru=new Map;function $u(e){return((""+e).split(".")[1]||"").length}function Uu(e,t,n,r){for(var i=[],o=r.map($u),a=t;a=0&&a>=0?0:u)+(a>=o[c]?0:o[c]),d=ju(s,f);i.push(d),Ru.set(d,f)}return i}var Hu={},Yu=[],Vu=[null,null],qu=Array.isArray,Wu=Number.isInteger;function Qu(e){return"string"==typeof e}function Ju(e){var t=!1;if(null!=e){var n=e.constructor;t=null==n||n==Object}return t}function Gu(e){return null!=e&&"object"==typeof e}var Zu=Object.getPrototypeOf(Uint8Array);function Ku(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ju;if(qu(e)){var r=e.find((function(e){return null!=e}));if(qu(r)||n(r)){t=Array(e.length);for(var i=0;io){for(r=a-1;r>=0&&null==e[r];)e[r--]=null;for(r=a+1;r12?t-12:t},AA:function(e){return e.getHours()>=12?"PM":"AM"},aa:function(e){return e.getHours()>=12?"pm":"am"},a:function(e){return e.getHours()>=12?"p":"a"},mm:function(e){return ll(e.getMinutes())},m:function(e){return e.getMinutes()},ss:function(e){return ll(e.getSeconds())},s:function(e){return e.getSeconds()},fff:function(e){return((t=e.getMilliseconds())<10?"00":t<100?"0":"")+t;var t}};function sl(e,t){t=t||ul;for(var n,r=[],i=/\{([a-z]+)\}|[^{]+/gi;n=i.exec(e);)r.push("{"==n[0][0]?cl[n[1]]:n[0]);return function(e){for(var n="",i=0;i=a,v=f>=o&&f=i?i:f,N=_+(yu(c)-yu(y))+Pu(y-_,F);h.push(N);for(var O=t(N),T=O.getHours()+O.getMinutes()/n+O.getSeconds()/r,M=f/r,B=d/u.axes[l]._space;!((N=ju(N+f,1==e?0:3))>s);)if(M>1){var I=yu(ju(T+M,6))%24,L=t(N).getHours()-I;L>1&&(L=-1),T=(T+M)%24,ju(((N-=L*r)-h[h.length-1])/f,3)*B>=.7&&h.push(N)}else h.push(N)}return h}}]}var Fl=At(Al(1),3),Nl=Fl[0],Ol=Fl[1],Tl=Fl[2],Ml=At(Al(.001),3),Bl=Ml[0],Il=Ml[1],Ll=Ml[2];function Pl(e,t){return e.map((function(e){return e.map((function(n,r){return 0==r||8==r||null==n?n:t(1==r||0==e[8]?n:e[1]+n)}))}))}function zl(e,t){return function(n,r,i,o,a){var u,l,c,s,f,d,h=t.find((function(e){return a>=e[0]}))||t[t.length-1];return r.map((function(t){var n=e(t),r=n.getFullYear(),i=n.getMonth(),o=n.getDate(),a=n.getHours(),p=n.getMinutes(),v=n.getSeconds(),m=r!=u&&h[2]||i!=l&&h[3]||o!=c&&h[4]||a!=s&&h[5]||p!=f&&h[6]||v!=d&&h[7]||h[1];return u=r,l=i,c=o,s=a,f=p,d=v,m(n)}))}}function jl(e,t,n){return new Date(e,t,n)}function Rl(e,t){return t(e)}Uu(2,-53,53,[1]);function $l(e,t){return function(n,r){return t(e(r))}}var Ul={show:!0,live:!0,isolate:!1,mount:function(){},markers:{show:!0,width:2,stroke:function(e,t){var n=e.series[t];return n.width?n.stroke(e,t):n.points.width?n.points.stroke(e,t):null},fill:function(e,t){return e.series[t].fill(e,t)},dash:"solid"},idx:null,idxs:null,values:[]};var Hl=[0,0];function Yl(e,t,n){return function(e){0==e.button&&n(e)}}function Vl(e,t,n){return n}var ql={show:!0,x:!0,y:!0,lock:!1,move:function(e,t,n){return Hl[0]=t,Hl[1]=n,Hl},points:{show:function(e,t){var n=e.cursor.points,r=Ha(),i=n.size(e,t);$a(r,_a,i),$a(r,ba,i);var o=i/-2;$a(r,"marginLeft",o),$a(r,"marginTop",o);var a=n.width(e,t,i);return a&&$a(r,"borderWidth",a),r},size:function(e,t){return dc(e.series[t].points.width,1)},width:0,stroke:function(e,t){var n=e.series[t].points;return n._stroke||n._fill},fill:function(e,t){var n=e.series[t].points;return n._fill||n._stroke}},bind:{mousedown:Yl,mouseup:Yl,click:Yl,dblclick:Yl,mousemove:Vl,mouseleave:Vl,mouseenter:Vl},drag:{setScale:!0,x:!0,y:!1,dist:0,uni:null,_x:!1,_y:!1},focus:{prox:-1},left:-10,top:-10,idx:null,dataIdx:function(e,t,n){return n},idxs:null},Wl={show:!0,stroke:"rgba(0,0,0,0.07)",width:2},Ql=Xu({},Wl,{filter:Mu}),Jl=Xu({},Ql,{size:10}),Gl=Xu({},Wl,{show:!1}),Zl='12px system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',Kl="bold "+Zl,Xl={show:!0,scale:"x",stroke:Ca,space:50,gap:5,size:50,labelGap:0,labelSize:30,labelFont:Kl,side:2,grid:Ql,ticks:Jl,border:Gl,font:Zl,rotate:0},ec={show:!0,scale:"x",auto:!1,sorted:1,min:Su,max:-Su,idxs:[]};function tc(e,t,n,r,i){return t.map((function(e){return null==e?"":hu(e)}))}function nc(e,t,n,r,i,o,a){for(var u=[],l=Ru.get(i)||0,c=n=a?n:ju(Pu(n,i),l);c<=r;c=ju(c+i,l))u.push(Object.is(c,-0)?0:c);return u}function rc(e,t,n,r,i,o,a){var u=[],l=e.scales[e.axes[t].scale].log,c=yu((10==l?ku:Cu)(n));i=wu(l,c),c<0&&(i=ju(i,-c));var s=n;do{u.push(s),(s=ju(s+i,Ru.get(i)))>=i*l&&(i=s)}while(s<=r);return u}function ic(e,t,n,r,i,o,a){var u=e.scales[e.axes[t].scale].asinh,l=r>u?rc(e,t,Du(u,n),r,i):[u],c=r>=0&&n<=0?[0]:[];return(n<-u?rc(e,t,Du(u,-r),-n,i):[u]).reverse().map((function(e){return-e})).concat(c,l)}var oc=/./,ac=/[12357]/,uc=/[125]/,lc=/1/;function cc(e,t,n,r,i){var o=e.axes[n],a=o.scale,u=e.scales[a];if(3==u.distr&&2==u.log)return t;var l=e.valToPos,c=o._space,s=l(10,a),f=l(9,a)-s>=c?oc:l(7,a)-s>=c?ac:l(5,a)-s>=c?uc:lc;return t.map((function(e){return 4==u.distr&&0==e||f.test(e)?e:null}))}function sc(e,t){return null==t?"":hu(t)}var fc={show:!0,scale:"y",stroke:Ca,space:30,gap:5,size:50,labelGap:0,labelSize:30,labelFont:Kl,side:3,grid:Ql,ticks:Jl,border:Gl,font:Zl,rotate:0};function dc(e,t){return ju((3+2*(e||1))*t,3)}var hc={scale:null,auto:!0,sorted:0,min:Su,max:-Su},pc=function(e,t,n,r,i){return i},vc={show:!0,auto:!0,sorted:0,gaps:pc,alpha:1,facets:[Xu({},hc,{scale:"x"}),Xu({},hc,{scale:"y"})]},mc={scale:"y",auto:!0,sorted:0,show:!0,spanGaps:!1,gaps:pc,alpha:1,points:{show:function(e,t){var n=e.series[0],r=n.scale,i=n.idxs,o=e._data[0],a=e.valToPos(o[i[0]],r,!0),u=e.valToPos(o[i[1]],r,!0),l=mu(u-a)/(e.series[t].points.space*va);return i[1]-i[0]<=l},filter:null},values:null,min:Su,max:-Su,idxs:[],path:null,clip:null};function yc(e,t,n,r,i){return n/10}var gc={time:!0,auto:!0,distr:1,log:10,asinh:1,min:null,max:null,dir:1,ori:0},_c=Xu({},gc,{time:!1,ori:1}),bc={};function Dc(e,t){var n=bc[e];return n||(n={key:e,plots:[],sub:function(e){n.plots.push(e)},unsub:function(e){n.plots=n.plots.filter((function(t){return t!=e}))},pub:function(e,t,r,i,o,a,u){for(var l=0;l0){a=new Path2D;for(var u=0==t?Bc:Ic,l=n,c=0;cs[0]){var f=s[0]-l;f>0&&u(a,l,r,f,r+o),l=s[1]}}var d=n+i-l;d>0&&u(a,l,r,d,r+o)}return a}function Sc(e,t,n,r,i,o,a){for(var u=[],l=e.length,c=1==i?n:r;c>=n&&c<=r;c+=i){if(null===t[c]){var s=c,f=c;if(1==i)for(;++c<=r&&null===t[c];)f=c;else for(;--c>=n&&null===t[c];)f=c;var d=o(e[s]),h=f==s?d:o(e[f]),p=s-i;d=a<=0&&p>=0&&p=0&&v>=0&&v=d&&u.push([d,h])}}return u}function Ac(e){return 0==e?Tu:1==e?gu:function(t){return Fu(t,e)}}function Fc(e){var t=0==e?Nc:Oc,n=0==e?function(e,t,n,r,i,o){e.arcTo(t,n,r,i,o)}:function(e,t,n,r,i,o){e.arcTo(n,t,i,r,o)},r=0==e?function(e,t,n,r,i){e.rect(t,n,r,i)}:function(e,t,n,r,i){e.rect(n,t,i,r)};return function(e,i,o,a,u){var l=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;0==l?r(e,i,o,a,u):(l=bu(l,a/2,u/2),t(e,i+l,o),n(e,i+a,o,i+a,o+u,l),n(e,i+a,o+u,i,o+u,l),n(e,i,o+u,i,o,l),n(e,i,o,i+a,o,l),e.closePath())}}var Nc=function(e,t,n){e.moveTo(t,n)},Oc=function(e,t,n){e.moveTo(n,t)},Tc=function(e,t,n){e.lineTo(t,n)},Mc=function(e,t,n){e.lineTo(n,t)},Bc=Fc(0),Ic=Fc(1),Lc=function(e,t,n,r,i,o){e.arc(t,n,r,i,o)},Pc=function(e,t,n,r,i,o){e.arc(n,t,r,i,o)},zc=function(e,t,n,r,i,o,a){e.bezierCurveTo(t,n,r,i,o,a)},jc=function(e,t,n,r,i,o,a){e.bezierCurveTo(n,t,i,r,a,o)};function Rc(e){return function(e,t,n,r,i){return wc(e,t,(function(t,o,a,u,l,c,s,f,d,h,p){var v,m,y=t.pxRound,g=t.points;0==u.ori?(v=Nc,m=Lc):(v=Oc,m=Pc);var _=ju(g.width*va,3),b=(g.size-g.width)/2*va,D=ju(2*b,3),w=new Path2D,x=new Path2D,k=e.bbox,C=k.left,E=k.top,S=k.width,A=k.height;Bc(x,C-D,E-D,S+2*D,A+2*D);var F=function(e){if(null!=a[e]){var t=y(c(o[e],u,h,f)),n=y(s(a[e],l,p,d));v(w,t+b,n),m(w,t,n,b,0,2*vu)}};if(i)i.forEach(F);else for(var N=n;N<=r;N++)F(N);return{stroke:_>0?w:null,fill:w,clip:x,flags:3}}))}}function $c(e){return function(t,n,r,i,o,a){r!=i&&(o!=r&&a!=r&&e(t,n,r),o!=i&&a!=i&&e(t,n,i),e(t,n,a))}}var Uc=$c(Tc),Hc=$c(Mc);function Yc(e){var t=su(null===e||void 0===e?void 0:e.alignGaps,0);return function(e,n,r,i){return wc(e,n,(function(o,a,u,l,c,s,f,d,h,p,v){var m,y,g=o.pxRound,_=function(e){return g(s(e,l,p,d))},b=function(e){return g(f(e,c,v,h))};0==l.ori?(m=Tc,y=Uc):(m=Mc,y=Hc);for(var D,w,x,k=l.dir*(0==l.ori?1:-1),C={stroke:new Path2D,fill:null,clip:null,band:null,gaps:null,flags:1},E=C.stroke,S=Su,A=-Su,F=_(a[1==k?r:i]),N=tu(u,r,i,1*k),O=tu(u,r,i,-1*k),T=_(a[N]),M=_(a[O]),B=1==k?r:i;B>=r&&B<=i;B+=k){var I=_(a[B]);I==F?null!=u[B]&&(w=b(u[B]),S==Su&&(m(E,I,w),D=w),S=bu(w,S),A=Du(w,A)):(S!=Su&&(y(E,F,S,A,D,w),x=F),null!=u[B]?(m(E,I,w=b(u[B])),S=A=D=w):(S=Su,A=-Su),F=I)}S!=Su&&S!=A&&x!=F&&y(E,F,S,A,D,w);var L=At(xc(e,n),2),P=L[0],z=L[1];if(null!=o.fill||0!=P){var j=C.fill=new Path2D(E),R=b(o.fillTo(e,n,o.min,o.max,P));m(j,M,R),m(j,T,R)}if(!o.spanGaps){var $,U=[];($=U).push.apply($,Ft(Sc(a,u,r,i,k,_,t))),C.gaps=U=o.gaps(e,n,r,i,U),C.clip=Ec(U,l.ori,d,h,p,v)}return 0!=z&&(C.band=2==z?[Cc(e,n,r,i,E,-1),Cc(e,n,r,i,E,1)]:Cc(e,n,r,i,E,z)),C}))}}function Vc(e,t,n,r,i,o){var a=e.length;if(a<2)return null;var u=new Path2D;if(n(u,e[0],t[0]),2==a)r(u,e[1],t[1]);else{for(var l=Array(a),c=Array(a-1),s=Array(a-1),f=Array(a-1),d=0;d0!==c[h]>0?l[h]=0:(l[h]=3*(f[h-1]+f[h])/((2*f[h]+f[h-1])/c[h-1]+(f[h]+2*f[h-1])/c[h]),isFinite(l[h])||(l[h]=0));l[a-1]=c[a-2];for(var p=0;p=i&&o+(l<5?Ru.get(l):0)<=17)return[l,c]}while(++u0?e:t.clamp(r,e,t.min,t.max,t.key)):4==t.distr?Eu(e,t.asinh):e)-t._min)/(t._max-t._min)}function a(e,t,n,r){var i=o(e,t);return r+n*(-1==t.dir?1-i:i)}function u(e,t,n,r){var i=o(e,t);return r+n*(-1==t.dir?i:1-i)}function l(e,t,n,r){return 0==t.ori?a(e,t,n,r):u(e,t,n,r)}r.valToPosH=a,r.valToPosV=u;var c=!1;r.status=0;var s=r.root=Ha("uplot");(null!=e.id&&(s.id=e.id),ja(s,e.class),e.title)&&(Ha("u-title",s).textContent=e.title);var f=Ua("canvas"),d=r.ctx=f.getContext("2d"),h=Ha("u-wrap",s),p=r.under=Ha("u-under",h);h.appendChild(f);var v=r.over=Ha("u-over",h),m=+su((e=Ku(e)).pxAlign,1),y=Ac(m);(e.plugins||[]).forEach((function(t){t.opts&&(e=t.opts(r,e)||e)}));var g=e.ms||.001,_=r.series=1==i?Gc(e.series||[],ec,mc,!1):function(e,t){return e.map((function(e,n){return 0==n?null:Xu({},t,e)}))}(e.series||[null],vc),b=r.axes=Gc(e.axes||[],Xl,fc,!0),D=r.scales={},w=r.bands=e.bands||[];w.forEach((function(e){e.fill=Ou(e.fill||null),e.dir=su(e.dir,-1)}));var x=2==i?_[1].facets[0].scale:_[0].scale,k={axes:function(){for(var e=function(e){var t=b[e];if(!t.show||!t._show)return"continue";var n=t.side,i=n%2,o=void 0,a=void 0,u=t.stroke(r,e),c=0==n||3==n?-1:1;if(t.label){var s=t.labelGap*c,f=gu((t._lpos+s)*va);Ke(t.labelFont[0],u,"center",2==n?Da:wa),d.save(),1==i?(o=a=0,d.translate(f,gu(de+pe/2)),d.rotate((3==n?-vu:vu)/2)):(o=gu(fe+he/2),a=f),d.fillText(t.label,o,a),d.restore()}var h=At(t._found,2),p=h[0],v=h[1];if(0==v)return"continue";var m=D[t.scale],g=0==i?he:pe,_=0==i?fe:de,w=gu(t.gap*va),x=t._splits,k=2==m.distr?x.map((function(e){return We[e]})):x,C=2==m.distr?We[x[1]]-We[x[0]]:p,E=t.ticks,S=t.border,A=E.show?gu(E.size*va):0,F=t._rotate*-vu/180,N=y(t._pos*va),O=N+(A+w)*c;a=0==i?O:0,o=1==i?O:0,Ke(t.font[0],u,1==t.align?xa:2==t.align?ka:F>0?xa:F<0?ka:0==i?"center":3==n?ka:xa,F||1==i?"middle":2==n?Da:wa);for(var T=1.5*t.font[1],M=x.map((function(e){return y(l(e,m,g,_))})),B=t._values,I=0;I0&&(_.forEach((function(e,n){if(n>0&&e.show&&null==e._paths){var o=2==i?[0,t[n][0].length-1]:function(e){var t=Nu(Ye-1,0,Oe-1),n=Nu(Ve+1,0,Oe-1);for(;null==e[t]&&t>0;)t--;for(;null==e[n]&&n0&&e.show){$e!=e.alpha&&(d.globalAlpha=$e=e.alpha),et(t,!1),e._paths&&tt(t,!1),et(t,!0);var n=e._paths?e._paths.gaps:null,i=e.points.show(r,t,Ye,Ve,n),o=e.points.filter(r,t,i,n);(i||o)&&(e.points._paths=e.points.paths(r,t,Ye,Ve,o),tt(t,!0)),1!=$e&&(d.globalAlpha=$e=1),an("drawSeries",t)}})))}},C=(e.drawOrder||["axes","series"]).map((function(e){return k[e]}));function E(t){var n=D[t];if(null==n){var r=(e.scales||Hu)[t]||Hu;if(null!=r.from)E(r.from),D[t]=Xu({},D[r.from],r,{key:t});else{(n=D[t]=Xu({},t==x?gc:_c,r)).key=t;var o=n.time,a=n.range,u=qu(a);if((t!=x||2==i&&!o)&&(!u||null!=a[0]&&null!=a[1]||(a={min:null==a[0]?au:{mode:1,hard:a[0],soft:a[0]},max:null==a[1]?au:{mode:1,hard:a[1],soft:a[1]}},u=!1),!u&&Ju(a))){var l=a;a=function(e,t,n){return null==t?Vu:cu(t,n,l)}}n.range=Ou(a||(o?Xc:t==x?3==n.distr?ns:4==n.distr?is:Kc:3==n.distr?ts:4==n.distr?rs:es)),n.auto=Ou(!u&&n.auto),n.clamp=Ou(n.clamp||yc),n._min=n._max=null}}}for(var S in E("x"),E("y"),1==i&&_.forEach((function(e){E(e.scale)})),b.forEach((function(e){E(e.scale)})),e.scales)E(S);var A,F,N=D[x],O=N.distr;0==N.ori?(ja(s,"u-hz"),A=a,F=u):(ja(s,"u-vt"),A=u,F=a);var T={};for(var M in D){var B=D[M];null==B.min&&null==B.max||(T[M]={min:B.min,max:B.max},B.min=B.max=null)}var I,L=e.tzDate||function(e){return new Date(gu(e/g))},P=e.fmtDate||sl,z=1==g?Tl(L):Ll(L),j=zl(L,Pl(1==g?Ol:Il,P)),R=$l(L,Rl("{YYYY}-{MM}-{DD} {h}:{mm}{aa}",P)),$=[],U=r.legend=Xu({},Ul,e.legend),H=U.show,Y=U.markers;U.idxs=$,Y.width=Ou(Y.width),Y.dash=Ou(Y.dash),Y.stroke=Ou(Y.stroke),Y.fill=Ou(Y.fill);var V,q=[],W=[],Q=!1,J={};if(U.live){var G=_[1]?_[1].values:null;for(var Z in V=(Q=null!=G)?G(r,1,0):{_:0})J[Z]="--"}if(H)if(I=Ua("table","u-legend",s),U.mount(r,I),Q){var K=Ua("tr","u-thead",I);for(var X in Ua("th",null,K),V)Ua("th",ga,K).textContent=X}else ja(I,"u-inline"),U.live&&ja(I,"u-live");var ee={show:!0},te={show:!1};var ne=new Map;function re(e,t,n){var i=ne.get(t)||{},o=xe.bind[e](r,t,n);o&&(Ka(e,t,i[e]=o),ne.set(t,i))}function ie(e,t,n){var r=ne.get(t)||{};for(var i in r)null!=e&&i!=e||(Xa(i,t,r[i]),delete r[i]);null==e&&ne.delete(t)}var oe=0,ae=0,ue=0,le=0,ce=0,se=0,fe=0,de=0,he=0,pe=0;r.bbox={};var ve=!1,me=!1,ye=!1,ge=!1,_e=!1,be=!1;function De(e,t,n){(n||e!=r.width||t!=r.height)&&we(e,t),lt(!1),ye=!0,me=!0,xe.left>=0&&(ge=be=!0),wt()}function we(e,t){r.width=oe=ue=e,r.height=ae=le=t,ce=se=0,function(){var e=!1,t=!1,n=!1,r=!1;b.forEach((function(i,o){if(i.show&&i._show){var a=i.side,u=a%2,l=i._size+(null!=i.label?i.labelSize:0);l>0&&(u?(ue-=l,3==a?(ce+=l,r=!0):n=!0):(le-=l,0==a?(se+=l,e=!0):t=!0))}})),Fe[0]=e,Fe[1]=n,Fe[2]=t,Fe[3]=r,ue-=He[1]+He[3],ce+=He[3],le-=He[2]+He[0],se+=He[0]}(),function(){var e=ce+ue,t=se+le,n=ce,r=se;function i(i,o){switch(i){case 1:return(e+=o)-o;case 2:return(t+=o)-o;case 3:return(n-=o)+o;case 0:return(r-=o)+o}}b.forEach((function(e,t){if(e.show&&e._show){var n=e.side;e._pos=i(n,e._size),null!=e.label&&(e._lpos=i(n,e.labelSize))}}))}();var n=r.bbox;fe=n.left=Fu(ce*va,.5),de=n.top=Fu(se*va,.5),he=n.width=Fu(ue*va,.5),pe=n.height=Fu(le*va,.5)}r.setSize=function(e){De(e.width,e.height)};var xe=r.cursor=Xu({},ql,{drag:{y:2==i}},e.cursor);xe.idxs=$,xe._lock=!1;var ke=xe.points;ke.show=Ou(ke.show),ke.size=Ou(ke.size),ke.stroke=Ou(ke.stroke),ke.width=Ou(ke.width),ke.fill=Ou(ke.fill);var Ce=r.focus=Xu({},e.focus||{alpha:.3},xe.focus),Ee=Ce.prox>=0,Se=[null];function Ae(e,t){if(1==i||t>0){var n=1==i&&D[e.scale].time,o=e.value;e.value=n?Qu(o)?$l(L,Rl(o,P)):o||R:o||sc,e.label=e.label||(n?"Time":"Value")}if(t>0){e.width=null==e.width?1:e.width,e.paths=e.paths||Qc||Bu,e.fillTo=Ou(e.fillTo||kc),e.pxAlign=+su(e.pxAlign,m),e.pxRound=Ac(e.pxAlign),e.stroke=Ou(e.stroke||null),e.fill=Ou(e.fill||null),e._stroke=e._fill=e._paths=e._focus=null;var a=dc(e.width,1),u=e.points=Xu({},{size:a,width:Du(1,.2*a),stroke:e.stroke,space:2*a,paths:Jc,_stroke:null,_fill:null},e.points);u.show=Ou(u.show),u.filter=Ou(u.filter),u.fill=Ou(u.fill),u.stroke=Ou(u.stroke),u.paths=Ou(u.paths),u.pxAlign=e.pxAlign}if(H){var l=function(e,t){if(0==t&&(Q||!U.live||2==i))return Vu;var n=[],o=Ua("tr","u-series",I,I.childNodes[t]);ja(o,e.class),e.show||ja(o,ya);var a=Ua("th",null,o);if(Y.show){var u=Ha("u-marker",a);if(t>0){var l=Y.width(r,t);l&&(u.style.border=l+"px "+Y.dash(r,t)+" "+Y.stroke(r,t)),u.style.background=Y.fill(r,t)}}var c=Ha(ga,a);for(var s in c.textContent=e.label,t>0&&(Y.show||(c.style.color=e.width>0?Y.stroke(r,t):Y.fill(r,t)),re("click",a,(function(t){if(!xe._lock){var n=_.indexOf(e);if((t.ctrlKey||t.metaKey)!=U.isolate){var r=_.some((function(e,t){return t>0&&t!=n&&e.show}));_.forEach((function(e,t){t>0&&Pt(t,r?t==n?ee:te:ee,!0,un.setSeries)}))}else Pt(n,{show:!e.show},!0,un.setSeries)}})),Ee&&re(Na,a,(function(t){xe._lock||Pt(_.indexOf(e),zt,!0,un.setSeries)}))),V){var f=Ua("td","u-value",o);f.textContent="--",n.push(f)}return[o,n]}(e,t);q.splice(t,0,l[0]),W.splice(t,0,l[1]),U.values.push(null)}if(xe.show){$.splice(t,0,null);var c=function(e,t){if(t>0){var n=xe.points.show(r,t);if(n)return ja(n,"u-cursor-pt"),ja(n,e.class),Va(n,-10,-10,ue,le),v.insertBefore(n,Se[t]),n}}(e,t);c&&Se.splice(t,0,c)}an("addSeries",t)}r.addSeries=function(e,t){t=null==t?_.length:t,e=1==i?Zc(e,t,ec,mc):Zc(e,t,null,vc),_.splice(t,0,e),Ae(_[t],t)},r.delSeries=function(e){if(_.splice(e,1),H){U.values.splice(e,1),W.splice(e,1);var t=q.splice(e,1)[0];ie(null,t.firstChild),t.remove()}xe.show&&($.splice(e,1),Se.length>1&&Se.splice(e,1)[0].remove()),an("delSeries",e)};var Fe=[!1,!1,!1,!1];function Ne(e,t,n,r){var i=At(n,4),o=i[0],a=i[1],u=i[2],l=i[3],c=t%2,s=0;return 0==c&&(l||a)&&(s=0==t&&!o||2==t&&!u?gu(Xl.size/3):0),1==c&&(o||u)&&(s=1==t&&!a||3==t&&!l?gu(fc.size/2):0),s}var Oe,Te,Me,Be,Ie,Le,Pe,ze,je,Re,$e,Ue=r.padding=(e.padding||[Ne,Ne,Ne,Ne]).map((function(e){return Ou(su(e,Ne))})),He=r._padding=Ue.map((function(e,t){return e(r,t,Fe,0)})),Ye=null,Ve=null,qe=1==i?_[0].idxs:null,We=null,Qe=!1;function Je(e,n){if(t=null==e?[]:Ku(e,Gu),2==i){Oe=0;for(var o=1;o<_.length;o++)Oe+=t[o][0].length;r.data=t=e}else if(null==t[0]&&(t[0]=[]),r.data=t.slice(),We=t[0],Oe=We.length,2==O){t[0]=Array(Oe);for(var a=0;a=0,be=!0,wt()}}function Ge(){var e,n;if(Qe=!0,1==i)if(Oe>0){if(Ye=qe[0]=0,Ve=qe[1]=Oe-1,e=t[0][Ye],n=t[0][Ve],2==O)e=Ye,n=Ve;else if(1==Oe)if(3==O){var r=At(iu(e,e,N.log,!1),2);e=r[0],n=r[1]}else if(4==O){var o=At(ou(e,e,N.log,!1),2);e=o[0],n=o[1]}else if(N.time)n=e+gu(86400/g);else{var a=At(cu(e,n,.1,!0),2);e=a[0],n=a[1]}}else Ye=qe[0]=e=null,Ve=qe[1]=n=null;Lt(x,e,n)}function Ze(e,t,n,r,i,o){var a,u,l,c,s;null!==(a=e)&&void 0!==a||(e=Ea),null!==(u=n)&&void 0!==u||(n=Yu),null!==(l=r)&&void 0!==l||(r="butt"),null!==(c=i)&&void 0!==c||(i=Ea),null!==(s=o)&&void 0!==s||(o="round"),e!=Te&&(d.strokeStyle=Te=e),i!=Me&&(d.fillStyle=Me=i),t!=Be&&(d.lineWidth=Be=t),o!=Le&&(d.lineJoin=Le=o),r!=Pe&&(d.lineCap=Pe=r),n!=Ie&&d.setLineDash(Ie=n)}function Ke(e,t,n,r){t!=Me&&(d.fillStyle=Me=t),e!=ze&&(d.font=ze=e),n!=je&&(d.textAlign=je=n),r!=Re&&(d.textBaseline=Re=r)}function Xe(e,t,n,i){var o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0;if(i.length>0&&e.auto(r,Qe)&&(null==t||null==t.min)){var a=su(Ye,0),u=su(Ve,i.length-1),l=null==n.min?3==e.distr?ru(i,a,u):nu(i,a,u,o):[n.min,n.max];e.min=bu(e.min,n.min=l[0]),e.max=Du(e.max,n.max=l[1])}}function et(e,t){var n=t?_[e].points:_[e];n._stroke=n.stroke(r,e),n._fill=n.fill(r,e)}function tt(e,n){var i=n?_[e].points:_[e],o=i._stroke,a=i._fill,u=i._paths,l=u.stroke,c=u.fill,s=u.clip,f=u.flags,h=null,p=ju(i.width*va,3),v=p%2/2;n&&null==a&&(a=p>0?"#fff":o);var m=1==i.pxAlign;if(m&&d.translate(v,v),!n){var y=fe,g=de,b=he,D=pe,x=p*va/2;0==i.min&&(D+=x),0==i.max&&(g-=x,D+=x),(h=new Path2D).rect(y,g,b,D)}n?nt(o,p,i.dash,i.cap,a,l,c,f,s):function(e,n,i,o,a,u,l,c,s,f,d){var h=!1;w.forEach((function(p,v){if(p.series[0]==e){var m,y=_[p.series[1]],g=t[p.series[1]],b=(y._paths||Hu).band;qu(b)&&(b=1==p.dir?b[0]:b[1]);var D=null;y.show&&b&&function(e,t,n){for(t=su(t,0),n=su(n,e.length-1);t<=n;){if(null!=e[t])return!0;t++}return!1}(g,Ye,Ve)?(D=p.fill(r,v)||u,m=y._paths.clip):b=null,nt(n,i,o,a,D,l,c,s,f,d,m,b),h=!0}})),h||nt(n,i,o,a,u,l,c,s,f,d)}(e,o,p,i.dash,i.cap,a,l,c,f,h,s),m&&d.translate(-v,-v)}r.setData=Je;function nt(e,t,n,r,i,o,a,u,l,c,s,f){Ze(e,t,n,r,i),(l||c||f)&&(d.save(),l&&d.clip(l),c&&d.clip(c)),f?3==(3&u)?(d.clip(f),s&&d.clip(s),it(i,a),rt(e,o,t)):2&u?(it(i,a),d.clip(f),rt(e,o,t)):1&u&&(d.save(),d.clip(f),s&&d.clip(s),it(i,a),d.restore(),rt(e,o,t)):(it(i,a),rt(e,o,t)),(l||c||f)&&d.restore()}function rt(e,t,n){n>0&&(t instanceof Map?t.forEach((function(e,t){d.strokeStyle=Te=t,d.stroke(e)})):null!=t&&e&&d.stroke(t))}function it(e,t){t instanceof Map?t.forEach((function(e,t){d.fillStyle=Me=t,d.fill(e)})):null!=t&&e&&d.fill(t)}function ot(e,t,n,r,i,o,a,u,l,c){var s=a%2/2;1==m&&d.translate(s,s),Ze(u,a,l,c,u),d.beginPath();var f,h,p,v,y=i+(0==r||3==r?-o:o);0==n?(h=i,v=y):(f=i,p=y);for(var g=0;g0&&(t._paths=null,e&&(1==i?(t.min=null,t.max=null):t.facets.forEach((function(e){e.min=null,e.max=null}))))}))}var ct,st,ft,dt,ht,pt,vt,mt,yt,gt,_t,bt,Dt=!1;function wt(){Dt||(tl(xt),Dt=!0)}function xt(){ve&&(!function(){var e=Ku(D,Gu);for(var n in e){var o=e[n],a=T[n];if(null!=a&&null!=a.min)Xu(o,a),n==x&<(!0);else if(n!=x||2==i)if(0==Oe&&null==o.from){var u=o.range(r,null,null,n);o.min=u[0],o.max=u[1]}else o.min=Su,o.max=-Su}if(Oe>0)for(var l in _.forEach((function(n,o){if(1==i){var a=n.scale,u=e[a],l=T[a];if(0==o){var c=u.range(r,u.min,u.max,a);u.min=c[0],u.max=c[1],Ye=eu(u.min,t[0]),(Ve=eu(u.max,t[0]))-Ye>1&&(t[0][Ye]u.max&&Ve--),n.min=We[Ye],n.max=We[Ve]}else n.show&&n.auto&&Xe(u,l,n,t[o],n.sorted);n.idxs[0]=Ye,n.idxs[1]=Ve}else if(o>0&&n.show&&n.auto){var s=At(n.facets,2),f=s[0],d=s[1],h=f.scale,p=d.scale,v=At(t[o],2),m=v[0],y=v[1];Xe(e[h],T[h],f,m,f.sorted),Xe(e[p],T[p],d,y,d.sorted),n.min=d.min,n.max=d.max}})),e){var c=e[l],s=T[l];if(null==c.from&&(null==s||null==s.min)){var f=c.range(r,c.min==Su?null:c.min,c.max==-Su?null:c.max,l);c.min=f[0],c.max=f[1]}}for(var d in e){var h=e[d];if(null!=h.from){var p=e[h.from];if(null==p.min)h.min=h.max=null;else{var v=h.range(r,p.min,p.max,d);h.min=v[0],h.max=v[1]}}}var m={},y=!1;for(var g in e){var b=e[g],w=D[g];if(w.min!=b.min||w.max!=b.max){w.min=b.min,w.max=b.max;var k=w.distr;w._min=3==k?ku(w.min):4==k?Eu(w.min,w.asinh):w.min,w._max=3==k?ku(w.max):4==k?Eu(w.max,w.asinh):w.max,m[g]=y=!0}}if(y){for(var C in _.forEach((function(e,t){2==i?t>0&&m.y&&(e._paths=null):m[e.scale]&&(e._paths=null)})),m)ye=!0,an("setScale",C);xe.show&&xe.left>=0&&(ge=be=!0)}for(var E in T)T[E]=null}(),ve=!1),ye&&(!function(){for(var e=!1,t=0;!e;){var n=at(++t),i=ut(t);(e=3==t||n&&i)||(we(r.width,r.height),me=!0)}}(),ye=!1),me&&($a(p,xa,ce),$a(p,Da,se),$a(p,_a,ue),$a(p,ba,le),$a(v,xa,ce),$a(v,Da,se),$a(v,_a,ue),$a(v,ba,le),$a(h,_a,oe),$a(h,ba,ae),f.width=gu(oe*va),f.height=gu(ae*va),b.forEach((function(e){var t=e._el,n=e._show,r=e._size,i=e._pos,o=e.side;if(null!=t)if(n){var a=o%2==1;$a(t,a?"left":"top",i-(3===o||0===o?r:0)),$a(t,a?"width":"height",r),$a(t,a?"top":"left",a?se:ce),$a(t,a?"height":"width",a?le:ue),Ra(t,ya)}else ja(t,ya)})),Te=Me=Be=Le=Pe=ze=je=Re=Ie=null,$e=1,Qt(!0),an("setSize"),me=!1),oe>0&&ae>0&&(d.clearRect(0,0,f.width,f.height),an("drawClear"),C.forEach((function(e){return e()})),an("draw")),Mt.show&&_e&&(It(Mt),_e=!1),xe.show&&ge&&(qt(null,!0,!1),ge=!1),c||(c=!0,r.status=1,an("ready")),Qe=!1,Dt=!1}function kt(e,n){var i=D[e];if(null==i.from){if(0==Oe){var o=i.range(r,n.min,n.max,e);n.min=o[0],n.max=o[1]}if(n.min>n.max){var a=n.min;n.min=n.max,n.max=a}if(Oe>1&&null!=n.min&&null!=n.max&&n.max-n.min<1e-16)return;e==x&&2==i.distr&&Oe>0&&(n.min=eu(n.min,t[0]),n.max=eu(n.max,t[0]),n.min==n.max&&n.max++),T[e]=n,ve=!0,wt()}}r.redraw=function(e,t){ye=t||!1,!1!==e?Lt(x,N.min,N.max):wt()},r.setScale=kt;var Ct=!1,Et=xe.drag,St=Et.x,Ft=Et.y;xe.show&&(xe.x&&(ct=Ha("u-cursor-x",v)),xe.y&&(st=Ha("u-cursor-y",v)),0==N.ori?(ft=ct,dt=st):(ft=st,dt=ct),_t=xe.left,bt=xe.top);var Nt,Ot,Tt,Mt=r.select=Xu({show:!0,over:!0,left:0,width:0,top:0,height:0},e.select),Bt=Mt.show?Ha("u-select",Mt.over?v:p):null;function It(e,t){if(Mt.show){for(var n in e)Mt[n]=e[n],n in Zt&&$a(Bt,n,e[n]);!1!==t&&an("setSelect")}}function Lt(e,t,n){kt(e,{min:t,max:n})}function Pt(e,t,n,o){null!=t.focus&&function(e){if(e!=Tt){var t=null==e,n=1!=Ce.alpha;_.forEach((function(r,i){var o=t||0==i||i==e;r._focus=t?null:o,n&&function(e,t){_[e].alpha=t,xe.show&&Se[e]&&(Se[e].style.opacity=t);H&&q[e]&&(q[e].style.opacity=t)}(i,o?1:Ce.alpha)})),Tt=e,n&&wt()}}(e),null!=t.show&&_.forEach((function(n,r){r>0&&(e==r||null==e)&&(n.show=t.show,function(e,t){var n=_[e],r=H?q[e]:null;n.show?r&&Ra(r,ya):(r&&ja(r,ya),Se.length>1&&Va(Se[e],-10,-10,ue,le))}(r,t.show),Lt(2==i?n.facets[1].scale:n.scale,null,null),wt())})),!1!==n&&an("setSeries",e,t),o&&sn("setSeries",r,e,t)}r.setSelect=It,r.setSeries=Pt,r.addBand=function(e,t){e.fill=Ou(e.fill||null),e.dir=su(e.dir,-1),t=null==t?w.length:t,w.splice(t,0,e)},r.setBand=function(e,t){Xu(w[e],t)},r.delBand=function(e){null==e?w.length=0:w.splice(e,1)};var zt={focus:!0};function jt(e,t,n){var r=D[t];n&&(e=e/va-(1==r.ori?se:ce));var i=ue;1==r.ori&&(e=(i=le)-e),-1==r.dir&&(e=i-e);var o=r._min,a=o+(r._max-o)*(e/i),u=r.distr;return 3==u?wu(10,a):4==u?function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return pu.sinh(e)*t}(a,r.asinh):a}function Rt(e,t){$a(Bt,xa,Mt.left=e),$a(Bt,_a,Mt.width=t)}function $t(e,t){$a(Bt,Da,Mt.top=e),$a(Bt,ba,Mt.height=t)}H&&Ee&&Ka(Oa,I,(function(e){xe._lock||null!=Tt&&Pt(null,zt,!0,un.setSeries)})),r.valToIdx=function(e){return eu(e,t[0])},r.posToIdx=function(e,n){return eu(jt(e,x,n),t[0],Ye,Ve)},r.posToVal=jt,r.valToPos=function(e,t,n){return 0==D[t].ori?a(e,D[t],n?he:ue,n?fe:0):u(e,D[t],n?pe:le,n?de:0)},r.batch=function(e){e(r),wt()},r.setCursor=function(e,t,n){_t=e.left,bt=e.top,qt(null,t,n)};var Ut=0==N.ori?Rt:$t,Ht=1==N.ori?Rt:$t;function Yt(e,t){if(null!=e){var n=e.idx;U.idx=n,_.forEach((function(e,t){(t>0||!Q)&&Vt(t,n)}))}H&&U.live&&function(){if(H&&U.live)for(var e=2==i?1:0;e<_.length;e++)if(0!=e||!Q){var t=U.values[e],n=0;for(var r in t)W[e][n++].firstChild.nodeValue=t[r]}}(),be=!1,!1!==t&&an("setLegend")}function Vt(e,n){var i;if(null==n)i=J;else{var o=_[e],a=0==e&&2==O?We:t[e];i=Q?o.values(r,e,n):{_:o.value(r,a[n],e,n)}}U.values[e]=i}function qt(e,n,o){yt=_t,gt=bt;var a,u=At(xe.move(r,_t,bt),2);_t=u[0],bt=u[1],xe.show&&(ft&&Va(ft,gu(_t),0,ue,le),dt&&Va(dt,0,gu(bt),ue,le));var l=Ye>Ve;Nt=Su;var c=0==N.ori?ue:le,s=1==N.ori?ue:le;if(_t<0||0==Oe||l){a=null;for(var f=0;f<_.length;f++)f>0&&Se.length>1&&Va(Se[f],-10,-10,ue,le);if(Ee&&Pt(null,zt,!0,null==e&&un.setSeries),U.live){$.fill(null),be=!0;for(var d=0;d<_.length;d++)U.values[d]=J}}else{var h,p;1==i&&(a=eu(h=jt(0==N.ori?_t:bt,x),t[0],Ye,Ve),p=Pu(A(t[0][a],N,c,0),.5));for(var v=2==i?1:0;v<_.length;v++){var m=_[v],y=$[v],g=1==i?t[v][y]:t[v][1][y],b=xe.dataIdx(r,v,a,h),w=1==i?t[v][b]:t[v][1][b];be=be||w!=g||b!=y,$[v]=b;var k=b==a?p:Pu(A(1==i?t[0][b]:t[v][0][b],N,c,0),.5);if(v>0&&m.show){var C=null==w?-10:Pu(F(w,1==i?D[m.scale]:D[m.facets[1].scale],s,0),.5);if(C>0&&1==i){var E=mu(C-bt);E<=Nt&&(Nt=E,Ot=v)}var S=void 0,O=void 0;if(0==N.ori?(S=k,O=C):(S=C,O=k),be&&Se.length>1){Wa(Se[v],xe.points.fill(r,v),xe.points.stroke(r,v));var T=void 0,M=void 0,B=void 0,I=void 0,L=!0,P=xe.points.bbox;if(null!=P){L=!1;var z=P(r,v);B=z.left,I=z.top,T=z.width,M=z.height}else B=S,I=O,T=M=xe.points.size(r,v);Ja(Se[v],T,M,L),Va(Se[v],B,I,ue,le)}}if(U.live){if(!be||0==v&&Q)continue;Vt(v,b)}}}if(xe.idx=a,xe.left=_t,xe.top=bt,be&&(U.idx=a,Yt()),Mt.show&&Ct)if(null!=e){var j=At(un.scales,2),R=j[0],H=j[1],Y=At(un.match,2),V=Y[0],q=Y[1],W=At(e.cursor.sync.scales,2),G=W[0],Z=W[1],K=e.cursor.drag;if(St=K._x,Ft=K._y,St||Ft){var X,ee,te,ne,re,ie=e.select,oe=ie.left,ae=ie.top,ce=ie.width,se=ie.height,fe=e.scales[R].ori,de=e.posToVal,he=null!=R&&V(R,G),pe=null!=H&&q(H,Z);he&&St?(0==fe?(X=oe,ee=ce):(X=ae,ee=se),te=D[R],ne=A(de(X,G),te,c,0),re=A(de(X+ee,G),te,c,0),Ut(bu(ne,re),mu(re-ne))):Ut(0,c),pe&&Ft?(1==fe?(X=oe,ee=ce):(X=ae,ee=se),te=D[H],ne=F(de(X,Z),te,s,0),re=F(de(X+ee,Z),te,s,0),Ht(bu(ne,re),mu(re-ne))):Ht(0,s)}else Kt()}else{var ve=mu(yt-ht),me=mu(gt-pt);if(1==N.ori){var ye=ve;ve=me,me=ye}St=Et.x&&ve>=Et.dist,Ft=Et.y&&me>=Et.dist;var ge,_e,De=Et.uni;null!=De?St&&Ft&&(Ft=me>=De,(St=ve>=De)||Ft||(me>ve?Ft=!0:St=!0)):Et.x&&Et.y&&(St||Ft)&&(St=Ft=!0),St&&(0==N.ori?(ge=vt,_e=_t):(ge=mt,_e=bt),Ut(bu(ge,_e),mu(_e-ge)),Ft||Ht(0,s)),Ft&&(1==N.ori?(ge=vt,_e=_t):(ge=mt,_e=bt),Ht(bu(ge,_e),mu(_e-ge)),St||Ut(0,c)),St||Ft||(Ut(0,0),Ht(0,0))}if(Et._x=St,Et._y=Ft,null==e){if(o){if(null!=ln){var we=At(un.scales,2),ke=we[0],Ae=we[1];un.values[0]=null!=ke?jt(0==N.ori?_t:bt,ke):null,un.values[1]=null!=Ae?jt(1==N.ori?_t:bt,Ae):null}sn(Sa,r,_t,bt,ue,le,a)}if(Ee){var Fe=o&&un.setSeries,Ne=Ce.prox;null==Tt?Nt<=Ne&&Pt(Ot,zt,!0,Fe):Nt>Ne?Pt(null,zt,!0,Fe):Ot!=Tt&&Pt(Ot,zt,!0,Fe)}}!1!==n&&an("setCursor")}r.setLegend=Yt;var Wt=null;function Qt(e){!0===e?Wt=null:an("syncRect",Wt=v.getBoundingClientRect())}function Jt(e,t,n,r,i,o,a){xe._lock||Ct&&null!=e&&0==e.movementX&&0==e.movementY||(Gt(e,t,n,r,i,o,a,!1,null!=e),null!=e?qt(null,!0,!0):qt(t,!0,!1))}function Gt(e,t,n,i,o,a,u,c,s){if(null==Wt&&Qt(!1),null!=e)n=e.clientX-Wt.left,i=e.clientY-Wt.top;else{if(n<0||i<0)return _t=-10,void(bt=-10);var f=At(un.scales,2),d=f[0],h=f[1],p=t.cursor.sync,v=At(p.values,2),m=v[0],y=v[1],g=At(p.scales,2),_=g[0],b=g[1],w=At(un.match,2),x=w[0],k=w[1],C=t.axes[0].side%2==1,E=0==N.ori?ue:le,S=1==N.ori?ue:le,A=C?a:o,F=C?o:a,O=C?i:n,T=C?n:i;if(n=null!=_?x(d,_)?l(m,D[d],E,0):-10:E*(O/A),i=null!=b?k(h,b)?l(y,D[h],S,0):-10:S*(T/F),1==N.ori){var M=n;n=i,i=M}}if(s&&((n<=1||n>=ue-1)&&(n=Fu(n,ue)),(i<=1||i>=le-1)&&(i=Fu(i,le))),c){ht=n,pt=i;var B=At(xe.move(r,n,i),2);vt=B[0],mt=B[1]}else _t=n,bt=i}var Zt={width:0,height:0,left:0,top:0};function Kt(){It(Zt,!1)}function Xt(e,t,n,i,o,a,u){Ct=!0,St=Ft=Et._x=Et._y=!1,Gt(e,t,n,i,o,a,0,!0,!1),null!=e&&(re(Fa,La,en),sn(Aa,r,vt,mt,ue,le,null))}function en(e,t,n,i,o,a,u){Ct=Et._x=Et._y=!1,Gt(e,t,n,i,o,a,0,!1,!0);var l=Mt.left,c=Mt.top,s=Mt.width,f=Mt.height,d=s>0||f>0;if(d&&It(Mt),Et.setScale&&d){var h=l,p=s,v=c,m=f;if(1==N.ori&&(h=c,p=f,v=l,m=s),St&&Lt(x,jt(h,x),jt(h+p,x)),Ft)for(var y in D){var g=D[y];y!=x&&null==g.from&&g.min!=Su&&Lt(y,jt(v+m,y),jt(v,y))}Kt()}else xe.lock&&(xe._lock=!xe._lock,xe._lock||qt(null,!0,!1));null!=e&&(ie(Fa,La),sn(Fa,r,_t,bt,ue,le,null))}function tn(e,t,n,i,o,a,u){Ge(),Kt(),null!=e&&sn(Ta,r,_t,bt,ue,le,null)}function nn(){b.forEach(us),De(r.width,r.height,!0)}Ka(Ba,Pa,nn);var rn={};rn.mousedown=Xt,rn.mousemove=Jt,rn.mouseup=en,rn.dblclick=tn,rn.setSeries=function(e,t,n,r){Pt(n,r,!0,!1)},xe.show&&(re(Aa,v,Xt),re(Sa,v,Jt),re(Na,v,Qt),re(Oa,v,(function(e,t,n,r,i,o,a){if(!xe._lock){var u=Ct;if(Ct){var l,c,s=!0,f=!0;0==N.ori?(l=St,c=Ft):(l=Ft,c=St),l&&c&&(s=_t<=10||_t>=ue-10,f=bt<=10||bt>=le-10),l&&s&&(_t=_t=3&&10==i.log?cc:Mu)),e.font=as(e.font),e.labelFont=as(e.labelFont),e._size=e.size(r,null,t,0),e._space=e._rotate=e._incrs=e._found=e._splits=e._values=null,e._size>0&&(Fe[t]=!0,e._el=Ha("u-axis",h))}})),n?n instanceof HTMLElement?(n.appendChild(s),fn()):n(r,fn):fn(),r}ls.assign=Xu,ls.fmtNum=hu,ls.rangeNum=cu,ls.rangeLog=iu,ls.rangeAsinh=ou,ls.orient=wc,ls.pxRatio=va,ls.join=function(e,t){for(var n=new Set,r=0;r=a&&M<=u;M+=A){var B=s[M];if(null!=B){var I=x(c[M]),L=k(B);1==t?C(S,I,F):C(S,O,L),C(S,I,L),F=L,O=I}}var P=O;i&&1==t&&C(S,P=D+w,F);var z=At(xc(e,o),2),j=z[0],R=z[1];if(null!=l.fill||0!=j){var $=E.fill=new Path2D(S),U=k(l.fillTo(e,o,l.min,l.max,j));C($,P,U),C($,T,U)}if(!l.spanGaps){var H,Y=[];(H=Y).push.apply(H,Ft(Sc(c,s,a,u,A,x,r)));var V=l.width*va/2,q=n||1==t?V:-V,W=n||-1==t?-V:V;Y.forEach((function(e){e[0]+=q,e[1]+=W})),E.gaps=Y=l.gaps(e,o,a,u,Y),E.clip=Ec(Y,f.ori,v,m,y,g)}return 0!=R&&(E.band=2==R?[Cc(e,o,a,u,S,-1),Cc(e,o,a,u,S,1)]:Cc(e,o,a,u,S,R)),E}))}},cs.bars=function(e){var t=su((e=e||Hu).size,[.6,Su,1]),n=e.align||0,r=(e.gap||0)*va,i=su(e.radius,0),o=1-t[0],a=su(t[1],Su)*va,u=su(t[2],1)*va,l=su(e.disp,Hu),c=su(e.each,(function(e){})),s=l.fill,f=l.stroke;return function(e,t,d,h){return wc(e,t,(function(p,v,m,y,g,_,b,D,w,x,k){var C,E,S=p.pxRound,A=y.dir*(0==y.ori?1:-1),F=g.dir*(1==g.ori?1:-1),N=0==y.ori?Bc:Ic,O=0==y.ori?c:function(e,t,n,r,i,o,a){c(e,t,n,i,r,a,o)},T=At(xc(e,t),2),M=T[0],B=T[1],I=3==g.distr?1==M?g.max:g.min:0,L=b(I,g,k,w),P=S(p.width*va),z=!1,j=null,R=null,$=null,U=null;null==s||0!=P&&null==f||(z=!0,j=s.values(e,t,d,h),R=new Map,new Set(j).forEach((function(e){null!=e&&R.set(e,new Path2D)})),P>0&&($=f.values(e,t,d,h),U=new Map,new Set($).forEach((function(e){null!=e&&U.set(e,new Path2D)}))));var H=l.x0,Y=l.size;if(null!=H&&null!=Y){v=H.values(e,t,d,h),2==H.unit&&(v=v.map((function(t){return e.posToVal(D+t*x,y.key,!0)})));var V=Y.values(e,t,d,h);E=S((E=2==Y.unit?V[0]*x:_(V[0],y,x,D)-_(0,y,x,D))-P),C=1==A?-P/2:E+P/2}else{var q=x;if(v.length>1)for(var W=null,Q=0,J=1/0;Q=d&&Q<=h;Q+=A){var ie=m[Q];if(void 0!==ie){var oe=_(2!=y.distr||null!=l?v[Q]:Q,y,x,D),ae=b(su(ie,I),g,k,w);null!=re&&null!=ie&&(L=b(re[Q],g,k,w));var ue=S(oe-C),le=S(Du(ae,L)),ce=S(bu(ae,L)),se=le-ce,fe=i*E;null!=ie&&(z?(P>0&&null!=$[Q]&&N(U.get($[Q]),ue,ce+yu(P/2),E,Du(0,se-P),fe),null!=j[Q]&&N(R.get(j[Q]),ue,ce+yu(P/2),E,Du(0,se-P),fe)):N(X,ue,ce+yu(P/2),E,Du(0,se-P),fe),O(e,t,Q,ue-P/2,ce,E+P,se)),0!=B&&(F*B==1?(le=ce,ce=Z):(ce=le,le=Z),N(ee,ue-P/2,ce,E+P,Du(0,se=le-ce),0))}}return P>0&&(K.stroke=z?U:X),K.fill=z?R:X,K}))}},cs.spline=function(e){return function(e,t){var n=su(null===t||void 0===t?void 0:t.alignGaps,0);return function(t,r,i,o){return wc(t,r,(function(a,u,l,c,s,f,d,h,p,v,m){var y,g,_,b=a.pxRound,D=function(e){return b(f(e,c,v,h))},w=function(e){return b(d(e,s,m,p))};0==c.ori?(y=Nc,_=Tc,g=zc):(y=Oc,_=Mc,g=jc);var x=c.dir*(0==c.ori?1:-1);i=tu(l,i,o,1),o=tu(l,i,o,-1);for(var k=D(u[1==x?i:o]),C=k,E=[],S=[],A=1==x?i:o;A>=i&&A<=o;A+=x)if(null!=l[A]){var F=D(u[A]);E.push(C=F),S.push(w(l[A]))}var N={stroke:e(E,S,y,_,g,b),fill:null,clip:null,band:null,gaps:null,flags:1},O=N.stroke,T=At(xc(t,r),2),M=T[0],B=T[1];if(null!=a.fill||0!=M){var I=N.fill=new Path2D(O),L=w(a.fillTo(t,r,a.min,a.max,M));_(I,C,L),_(I,k,L)}if(!a.spanGaps){var P,z=[];(P=z).push.apply(P,Ft(Sc(u,l,i,o,x,D,n))),N.gaps=z=a.gaps(t,r,i,o,z),N.clip=Ec(z,c.ori,h,p,v,m)}return 0!=B&&(N.band=2==B?[Cc(t,r,i,o,O,-1),Cc(t,r,i,o,O,1)]:Cc(t,r,i,o,O,B)),N}))}}(Vc,e)};var ss,fs={legend:{show:!1},cursor:{drag:{x:!0,y:!1},focus:{prox:30},points:{size:5.6,width:1.4},bind:{click:function(){return null},dblclick:function(){return null}}}},ds=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(void 0===e||null===e)return"";var r=3+Math.floor(1+Math.log10(Math.max(Math.abs(t),Math.abs(n)))-Math.log10(Math.abs(t-n)));return(isNaN(r)||r>20)&&(r=20),e.toLocaleString("en-US",{minimumSignificantDigits:r,maximumSignificantDigits:r})},hs=function(e,t,n,r){var i,o=e.axes[n];if(r>1)return o._size||60;var a=6+((null===o||void 0===o||null===(i=o.ticks)||void 0===i?void 0:i.size)||0)+(o.gap||0),u=(null!==t&&void 0!==t?t:[]).reduce((function(e,t){return t.length>e.length?t:e}),"");return""!=u&&(a+=function(e,t){var n=document.createElement("span");n.innerText=e,n.style.cssText="position: absolute; z-index: -1; pointer-events: none; opacity: 0; font: ".concat(t),document.body.appendChild(n);var r=n.offsetWidth;return n.remove(),r}(u,e.ctx.font)),Math.ceil(a)},ps=function(e){return function(e){for(var t=0,n=0;n>8*i&255).toString(16)).substr(-2);return r}(e)},vs=function(e){for(var t=e.length,n=-1/0;t--;){var r=e[t];Number.isFinite(r)&&r>n&&(n=r)}return Number.isFinite(n)?n:null},ms=function(e){for(var t=e.length,n=1/0;t--;){var r=e[t];Number.isFinite(r)&&r2&&void 0!==arguments[2]?arguments[2]:"",r=t[0],i=t[t.length-1];return n?t.map((function(e){return"".concat(ds(e,r,i)," ").concat(n)})):t.map((function(e){return ds(e,r,i)}))}(e,n,t)}};return e?Number(e)%2?n:or(or({},n),{},{side:1}):{space:80,values:ys}}))},_s=function(e,t){if(null==e||null==t)return[-1,1];var n=.02*(Math.abs(t-e)||Math.abs(e)||1);return[e-n,t+n]},bs=n(61),Ds=n.n(bs),ws=function(e){var t,n,r,i=e.u,o=e.id,a=e.unit,u=void 0===a?"":a,l=e.metrics,c=e.series,s=e.yRange,f=e.tooltipIdx,d=e.tooltipOffset,h=e.isSticky,p=e.onClose,v=ie(null),m=At(ee({top:-999,left:-999}),2),g=m[0],_=m[1],b=At(ee(!1),2),D=b[0],w=b[1],x=At(ee(!1),2),k=x[0],C=x[1],E=At(ee(f.seriesIdx),2),S=E[0],A=E[1],F=At(ee(f.dataIdx),2),N=F[0],O=F[1],T=ae((function(){return i.root.querySelector(".u-wrap")}),[i]),M=vr()(i,["data",S,N],0),B=ds(M,vr()(s,[0]),vr()(s,[1])),I=i.data[0][N],L=_t()(1e3*I).tz().format("YYYY-MM-DD HH:mm:ss:SSS (Z)"),P=(null===(t=c[S])||void 0===t?void 0:t.stroke)+"",z=new Set;l.forEach((function(e){return z.add(e.group)}));var j=z.size,R=(null===(n=l[S-1])||void 0===n?void 0:n.group)||0,$=(null===(r=l[S-1])||void 0===r?void 0:r.metric)||{},U=Object.keys($).filter((function(e){return"__name__"!=e})),H=$.__name__||"value",Y=ae((function(){return U.map((function(e){return"".concat(e,"=").concat(JSON.stringify($[e]))}))}),[l,S]),V=function(e){if(D){var t=e.clientX,n=e.clientY;_({top:n,left:t})}},q=function(){w(!1)};return ne((function(){var e;if(v.current){var t=i.valToPos(M||0,(null===(e=c[S])||void 0===e?void 0:e.scale)||"1"),n=i.valToPos(I,"x"),r=v.current.getBoundingClientRect(),o=r.width,a=r.height,u=i.over.getBoundingClientRect(),l=n+o>=u.width?o+20:0,s=t+a>=u.height?a+20:0;_({top:t+d.top+10-s,left:n+d.left+10-l})}}),[i,M,I,S,d,v]),ne((function(){A(f.seriesIdx),O(f.dataIdx)}),[f]),ne((function(){return D&&(document.addEventListener("mousemove",V),document.addEventListener("mouseup",q)),function(){document.removeEventListener("mousemove",V),document.removeEventListener("mouseup",q)}}),[D]),!T||f.seriesIdx<0||f.dataIdx<0?null:yt.createPortal(xr("div",{className:Gi()({"vm-chart-tooltip":!0,"vm-chart-tooltip_sticky":h,"vm-chart-tooltip_moved":k}),ref:v,style:g,children:[xr("div",{className:"vm-chart-tooltip-header",children:[xr("div",{className:"vm-chart-tooltip-header__date",children:[j>1&&xr("div",{children:["Query ",R]}),L]}),h&&xr(y,{children:[xr(To,{className:"vm-chart-tooltip-header__drag",variant:"text",size:"small",startIcon:xr(qi,{}),onMouseDown:function(e){C(!0),w(!0);var t=e.clientX,n=e.clientY;_({top:n,left:t})}}),xr(To,{className:"vm-chart-tooltip-header__close",variant:"text",size:"small",startIcon:xr(bi,{}),onClick:function(){p&&p(o)}})]})]}),xr("div",{className:"vm-chart-tooltip-data",children:[xr("div",{className:"vm-chart-tooltip-data__marker",style:{background:P}}),xr("p",{children:[H,":",xr("b",{className:"vm-chart-tooltip-data__value",children:B}),u]})]}),!!Y.length&&xr("div",{className:"vm-chart-tooltip-info",children:Y.map((function(e,t){return xr("div",{children:e},"".concat(e,"_").concat(t))}))})]}),T)};!function(e){e.xRange="xRange",e.yRange="yRange",e.data="data"}(ss||(ss={}));var xs=function(e){var t=e.data,n=e.series,r=e.metrics,i=void 0===r?[]:r,o=e.period,a=e.yaxis,u=e.unit,l=e.setPeriod,c=e.container,s=e.height,f=ie(null),d=At(ee(!1),2),h=d[0],v=d[1],m=At(ee({min:o.start,max:o.end}),2),y=m[0],g=m[1],_=At(ee([0,1]),2),b=_[0],D=_[1],w=At(ee(),2),x=w[0],k=w[1],C=Xi(c),E=At(ee(!1),2),S=E[0],A=E[1],F=At(ee({seriesIdx:-1,dataIdx:-1}),2),N=F[0],O=F[1],T=At(ee({left:0,top:0}),2),M=T[0],B=T[1],I=At(ee([]),2),L=I[0],P=I[1],z=ae((function(){return"".concat(N.seriesIdx,"_").concat(N.dataIdx)}),[N]),j=ue(Ds()((function(e){var t=e.min,n=e.max;l({from:_t()(1e3*t).toDate(),to:_t()(1e3*n).toDate()})}),500),[]),R=function(e){var t=e.u,n=e.min,r=e.max,i=1e3*(r-n);iMr||(t.setScale("x",{min:n,max:r}),g({min:n,max:r}),j({min:n,max:r}))},$=function(e){var t=e.target,n=e.ctrlKey,r=e.metaKey,i=e.key,o=t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement;if(x&&!o){var a="+"===i||"="===i;if(("-"===i||a)&&!n&&!r){e.preventDefault();var u=(y.max-y.min)/10*(a?1:-1);R({u:x,min:y.min+u,max:y.max-u})}}},U=function(){var e="".concat(N.seriesIdx,"_").concat(N.dataIdx),t={id:e,unit:u,series:n,metrics:i,yRange:b,tooltipIdx:N,tooltipOffset:M};if(!L.find((function(t){return t.id===e}))){var r=JSON.parse(JSON.stringify(t));P((function(e){return[].concat(Ft(e),[r])}))}},H=function(e){P((function(t){return t.filter((function(t){return t.id!==e}))}))},Y=function(){return[y.min,y.max]},V=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,r=arguments.length>3?arguments[3]:void 0;return"1"==r&&D([t,n]),a.limits.enable?a.limits.range[r]:_s(t,n)},q=or(or({},fs),{},{tzDate:function(e){return _t()(Ur(Yr(e))).local().toDate()},series:n,axes:gs([{},{scale:"1"}],u),scales:or({},function(){var e={x:{range:Y}},t=Object.keys(a.limits.range);return(t.length?t:["1"]).forEach((function(t){e[t]={range:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;return V(e,n,r,t)}}})),e}()),width:C.width||400,height:s||500,plugins:[{hooks:{ready:function(e){B({left:parseFloat(e.over.style.left),top:parseFloat(e.over.style.top)}),e.over.addEventListener("mousedown",(function(t){var n=t.ctrlKey,r=t.metaKey;0===t.button&&(n||r)&&function(e){var t=e.e,n=e.factor,r=void 0===n?.85:n,i=e.u,o=e.setPanning,a=e.setPlotScale;t.preventDefault(),o(!0);var u=t.clientX,l=i.posToVal(1,"x")-i.posToVal(0,"x"),c=i.scales.x.min||0,s=i.scales.x.max||0,f=function(e){e.preventDefault();var t=l*((e.clientX-u)*r);a({u:i,min:c-t,max:s-t})};document.addEventListener("mousemove",f),document.addEventListener("mouseup",(function e(){o(!1),document.removeEventListener("mousemove",f),document.removeEventListener("mouseup",e)}))}({u:e,e:t,setPanning:v,setPlotScale:R,factor:.9})})),e.over.addEventListener("wheel",(function(t){if(t.ctrlKey||t.metaKey){t.preventDefault();var n=e.over.getBoundingClientRect().width,r=e.cursor.left&&e.cursor.left>0?e.cursor.left:0,i=e.posToVal(r,"x"),o=(e.scales.x.max||0)-(e.scales.x.min||0),a=t.deltaY<0?.9*o:o/.9,u=i-r/n*a,l=u+a;e.batch((function(){return R({u:e,min:u,max:l})}))}}))},setCursor:function(e){var t,n=null!==(t=e.cursor.idx)&&void 0!==t?t:-1;O((function(e){return or(or({},e),{},{dataIdx:n})}))},setSeries:function(e,t){var n=null!==t&&void 0!==t?t:-1;O((function(e){return or(or({},e),{},{seriesIdx:n})}))}}}],hooks:{setSelect:[function(e){var t=e.posToVal(e.select.left,"x"),n=e.posToVal(e.select.left+e.select.width,"x");R({u:e,min:t,max:n})}]}}),W=function(e){if(x){switch(e){case ss.xRange:x.scales.x.range=Y;break;case ss.yRange:Object.keys(a.limits.range).forEach((function(e){x.scales[e]&&(x.scales[e].range=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1;return V(t,n,r,e)})}));break;case ss.data:x.setData(t)}h||x.redraw()}};return ne((function(){return g({min:o.start,max:o.end})}),[o]),ne((function(){if(P([]),O({seriesIdx:-1,dataIdx:-1}),f.current){var e=new ls(q,t,f.current);return k(e),g({min:o.start,max:o.end}),e.destroy}}),[f.current,n,C,s]),ne((function(){return window.addEventListener("keydown",$),function(){window.removeEventListener("keydown",$)}}),[y]),ne((function(){return W(ss.data)}),[t]),ne((function(){return W(ss.xRange)}),[y]),ne((function(){return W(ss.yRange)}),[a]),ne((function(){var e=-1!==N.dataIdx&&-1!==N.seriesIdx;return A(e),e&&window.addEventListener("click",U),function(){window.removeEventListener("click",U)}}),[N,L]),xr("div",{className:Gi()({"vm-line-chart":!0,"vm-line-chart_panning":h}),children:[xr("div",{className:"vm-line-chart__u-plot",ref:f}),x&&S&&xr(ws,{unit:u,u:x,series:n,metrics:i,yRange:b,tooltipIdx:N,tooltipOffset:M,id:z}),x&&L.map((function(e){return p(ws,or(or({},e),{},{isSticky:!0,u:x,key:e.id,onClose:H}))}))]})};function ks(){ks=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,r=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},o=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(A){l=function(e,t,n){return e[t]=n}}function c(e,t,n,i){var o=t&&t.prototype instanceof d?t:d,a=Object.create(o.prototype),u=new C(i||[]);return r(a,"_invoke",{value:D(e,n,u)}),a}function s(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(A){return{type:"throw",arg:A}}}e.wrap=c;var f={};function d(){}function h(){}function p(){}var v={};l(v,o,(function(){return this}));var m=Object.getPrototypeOf,y=m&&m(m(E([])));y&&y!==t&&n.call(y,o)&&(v=y);var g=p.prototype=d.prototype=Object.create(v);function _(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){function i(r,o,a,u){var l=s(e[r],e,o);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==Ot(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){i("next",e,a,u)}),(function(e){i("throw",e,a,u)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return i("throw",e,a,u)}))}u(l.arg)}var o;r(this,"_invoke",{value:function(e,n){function r(){return new t((function(t,r){i(e,n,t,r)}))}return o=o?o.then(r,r):r()}})}function D(e,t,n){var r="suspendedStart";return function(i,o){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===i)throw o;return S()}for(n.method=i,n.arg=o;;){var a=n.delegate;if(a){var u=w(a,n);if(u){if(u===f)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=s(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===f)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}function w(e,t){var n=t.method,r=e.iterator[n];if(void 0===r)return t.delegate=null,"throw"===n&&e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method)||"return"!==n&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+n+"' method")),f;var i=s(r,e.iterator,t.arg);if("throw"===i.type)return t.method="throw",t.arg=i.arg,t.delegate=null,f;var o=i.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,f):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,f)}function x(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function k(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(x,this),this.reset(!0)}function E(e){if(e){var t=e[o];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,i=function t(){for(;++r=0;--i){var o=this.tryEntries[i],a=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var u=n.call(o,"catchLoc"),l=n.call(o,"finallyLoc");if(u&&l){if(this.prev=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),k(n),f}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var i=r.arg;k(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:E(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),f}},e}function Cs(e,t,n,r,i,o,a){try{var u=e[o](a),l=u.value}catch(c){return void n(c)}u.done?t(l):Promise.resolve(l).then(r,i)}function Es(e){return function(){var t=this,n=arguments;return new Promise((function(r,i){var o=e.apply(t,n);function a(e){Cs(o,r,i,a,u,"next",e)}function u(e){Cs(o,r,i,a,u,"throw",e)}a(void 0)}))}}var Ss=function(e){var t=e.legend,n=e.onChange,r=At(ee(""),2),i=r[0],o=r[1],a=ae((function(){return function(e){var t=Object.keys(e.freeFormFields).filter((function(e){return"__name__"!==e}));return t.map((function(t){var n="".concat(t,"=").concat(JSON.stringify(e.freeFormFields[t]));return{id:"".concat(e.label,".").concat(n),freeField:n,key:t}}))}(t)}),[t]),u=function(){var e=Es(ks().mark((function e(t,n){return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,navigator.clipboard.writeText(t);case 2:o(n),setTimeout((function(){return o("")}),2e3);case 4:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();return xr("div",{className:Gi()({"vm-legend-item":!0,"vm-legend-item_hide":!t.checked}),onClick:function(e){return function(t){n(e,t.ctrlKey||t.metaKey)}}(t),children:[xr("div",{className:"vm-legend-item__marker",style:{backgroundColor:t.color}}),xr("div",{className:"vm-legend-item-info",children:[xr("span",{className:"vm-legend-item-info__label",children:t.freeFormFields.__name__||(0==a.length?"{}":"")}),a.length>0&&xr("span",{children:["{",a.map((function(e){return xr(Io,{open:i===e.id,title:"Copied!",placement:"top-center",children:xr("span",{className:"vm-legend-item-info__free-fields",onClick:(t=e.freeField,n=e.id,function(e){e.stopPropagation(),u(t,n)}),children:e.freeField},e.key)},e.id);var t,n})),"}"]})]})]})},As=function(e){var t=e.labels,n=e.query,r=e.onChange,i=ae((function(){return Array.from(new Set(t.map((function(e){return e.group}))))}),[t]);return xr(y,{children:xr("div",{className:"vm-legend",children:i.map((function(e){return xr("div",{className:"vm-legend-group",children:[xr("div",{className:"vm-legend-group-title",children:[xr("span",{className:"vm-legend-group-title__count",children:["Query ",e,": "]}),xr("span",{className:"vm-legend-group-title__query",children:n[e-1]})]}),xr("div",{children:t.filter((function(t){return t.group===e})).map((function(e){return xr(Ss,{legend:e,onChange:r},e.label)}))})]},e)}))})})};function Fs(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}var Ns=["__name__"],Os=function(e,t){var n=e.metric,r=n.__name__,i=Fs(n,Ns),o=t||"[Query ".concat(e.group,"] ").concat(r||"");return 0==Object.keys(i).length?o:"".concat(o,"{").concat(Object.entries(i).map((function(e){return"".concat(e[0],"=").concat(JSON.stringify(e[1]))})).join(", "),"}")},Ts=function(e,t,n){var r=Os(e,n[e.group-1]);return{label:r,freeFormFields:e.metric,width:1.4,stroke:ps(r),show:!Bs(r,t),scale:"1",points:{size:4.2,width:1.4}}},Ms=function(e,t){return{group:t,label:e.label||"",color:e.stroke,checked:e.show||!1,freeFormFields:e.freeFormFields}},Bs=function(e,t){return t.includes("".concat(e))},Is=function(e){switch(e){case"NaN":return NaN;case"Inf":case"+Inf":return 1/0;case"-Inf":return-1/0;default:return parseFloat(e)}},Ls=function(e){var t=e.data,n=void 0===t?[]:t,r=e.period,i=e.customStep,o=e.query,a=e.yaxis,u=e.unit,l=e.showLegend,c=void 0===l||l,s=e.setYaxisLimits,f=e.setPeriod,d=e.alias,h=void 0===d?[]:d,p=e.fullWidth,v=void 0===p||p,m=e.height,y=ci().timezone,g=ae((function(){return i||r.step||"1s"}),[r.step,i]),_=At(ee([[]]),2),b=_[0],D=_[1],w=At(ee([]),2),x=w[0],k=w[1],C=At(ee([]),2),E=C[0],S=C[1],A=At(ee([]),2),F=A[0],N=A[1],O=function(e){var t=function(e){var t={},n=Object.values(e).flat(),r=ms(n),i=vs(n);return t[1]=_s(r,i),t}(e);s(t)};ne((function(){var e=[],t={},i=[],o=[{}];null===n||void 0===n||n.forEach((function(n){var r=Ts(n,F,h);o.push(r),i.push(Ms(r,n.group));var a,u=t[n.group]||[],l=pa(n.values);try{for(l.s();!(a=l.n()).done;){var c=a.value;e.push(c[0]),u.push(Is(c[1]))}}catch(s){l.e(s)}finally{l.f()}t[n.group]=u}));var a=function(e,t,n){for(var r=jr(t)||1,i=Array.from(new Set(e)).sort((function(e,t){return e-t})),o=n.start,a=Pr(n.end+r),u=0,l=[];o<=a;){for(;u=i.length||i[u]>o)&&l.push(o)}for(;l.length<2;)l.push(o),o=Pr(o+r);return l}(e,g,r),u=n.map((function(e){var t,n=[],r=e.values,i=r.length,o=0,u=pa(a);try{for(u.s();!(t=u.n()).done;){for(var l=t.value;o1e10*h?n.map((function(){return f})):n}));u.unshift(a),O(t),D(u),k(o),S(i)}),[n,y]),ne((function(){var e=[],t=[{}];null===n||void 0===n||n.forEach((function(n){var r=Ts(n,F,h);t.push(r),e.push(Ms(r,n.group))})),k(t),S(e)}),[F]);var T=ie(null);return xr("div",{className:Gi()({"vm-graph-view":!0,"vm-graph-view_full-width":v}),ref:T,children:[(null===T||void 0===T?void 0:T.current)&&xr(xs,{data:b,series:x,metrics:n,period:r,yaxis:a,unit:u,setPeriod:f,container:null===T||void 0===T?void 0:T.current,height:m}),c&&xr(As,{labels:E,query:o,onChange:function(e,t){N(function(e){var t=e.hideSeries,n=e.legend,r=e.metaKey,i=e.series,o=n.label,a=Bs(o,t),u=i.map((function(e){return e.label||""}));return r?a?t.filter((function(e){return e!==o})):[].concat(Ft(t),[o]):t.length?a?Ft(u.filter((function(e){return e!==o}))):[]:Ft(u.filter((function(e){return e!==o})))}({hideSeries:F,legend:e,metaKey:t,series:x}))}})]})},Ps=function(e){var t=e.value,n=e.options,r=e.anchor,i=e.disabled,o=e.maxWords,a=void 0===o?1:o,u=e.minLength,l=void 0===u?2:u,c=e.fullWidth,f=e.selected,d=e.noOptionsText,h=e.onSelect,p=e.onOpenAutocomplete,v=ie(null),m=At(ee(!1),2),y=m[0],g=m[1],_=At(ee(-1),2),b=_[0],D=_[1],w=ae((function(){if(!y)return[];try{var e=new RegExp(String(t),"i");return n.filter((function(n){return e.test(n)&&n!==t})).sort((function(t,n){var r,i;return((null===(r=t.match(e))||void 0===r?void 0:r.index)||0)-((null===(i=n.match(e))||void 0===i?void 0:i.index)||0)}))}catch(s){return[]}}),[y,n,t]),x=ae((function(){return d&&!w.length}),[d,w]),k=function(){g(!1)},C=function(e){var t=e.key,n=e.ctrlKey,r=e.metaKey,i=e.shiftKey,o=n||r||i,a=w.length;if("ArrowUp"===t&&!o&&a&&(e.preventDefault(),D((function(e){return e<=0?0:e-1}))),"ArrowDown"===t&&!o&&a){e.preventDefault();var u=w.length-1;D((function(e){return e>=u?u:e+1}))}if("Enter"===t){var l=w[b];l&&h(l),f||k()}"Escape"===t&&k()};return ne((function(){var e=(t.match(/[a-zA-Z_:.][a-zA-Z0-9_:.]*/gm)||[]).length;g(t.length>l&&e<=a)}),[t]),ne((function(){return function(){if(v.current){var e=v.current.childNodes[b];null!==e&&void 0!==e&&e.scrollIntoView&&e.scrollIntoView({block:"center"})}}(),window.addEventListener("keydown",C),function(){window.removeEventListener("keydown",C)}}),[b,w]),ne((function(){D(-1)}),[w]),ne((function(){p&&p(y)}),[y]),Mo(v,k,r),xr(Bo,{open:y,buttonRef:r,placement:"bottom-left",onClose:k,fullWidth:c,children:xr("div",{className:"vm-autocomplete",ref:v,children:[x&&xr("div",{className:"vm-autocomplete__no-options",children:d}),w.map((function(e,t){return xr("div",{className:Gi()({"vm-list-item":!0,"vm-list-item_active":t===b,"vm-list-item_multiselect":f,"vm-list-item_multiselect_selected":null===f||void 0===f?void 0:f.includes(e)}),id:"$autocomplete$".concat(e),onClick:(n=e,function(){i||(h(n),f||k())}),children:[(null===f||void 0===f?void 0:f.includes(e))&&xr(Ui,{}),xr("span",{children:e})]},e);var n}))]})})},zs=function(e){var t=e.value,n=e.onChange,r=e.onEnter,i=e.onArrowUp,o=e.onArrowDown,a=e.autocomplete,u=e.error,l=e.options,c=e.label,s=e.disabled,f=void 0!==s&&s,d=At(ee(!1),2),h=d[0],p=d[1],v=ie(null);return xr("div",{className:"vm-query-editor",ref:v,children:[xr(Go,{value:t,label:c,type:"textarea",autofocus:!!t,error:u,onKeyDown:function(e){var t=e.key,n=e.ctrlKey,a=e.metaKey,u=e.shiftKey,l=n||a,c="ArrowDown"===t,s="Enter"===t;"ArrowUp"===t&&l&&(e.preventDefault(),i()),c&&l&&(e.preventDefault(),o()),!s||u||h||r()},onChange:n,disabled:f}),a&&xr(Ps,{value:t,options:l,anchor:v,onSelect:function(e){n(e)},onOpenAutocomplete:p})]})},js=function(e){var t=e.value,n=e.defaultStep,r=e.setStep,i=At(ee(t||n),2),o=i[0],a=i[1],u=At(ee(""),2),l=u[0],c=u[1],s=function(e){var t=e||o||n||"1s",i=t.match(/[a-zA-Z]+/g)||[];r(i.length?t:"".concat(t,"s"))},f=function(e){var t=e.match(/[-+]?([0-9]*\.[0-9]+|[0-9]+)/g)||[],n=e.match(/[a-zA-Z]+/g)||[],r=t.length&&t.every((function(e){return parseFloat(e)>0})),i=n.every((function(e){return Ir.find((function(t){return t.short===e}))})),o=r&&i;a(e),c(o?"":Ho.validStep)};return ne((function(){t&&f(t)}),[t]),xr(Go,{label:"Step value",value:o,error:l,onChange:f,onEnter:s,onBlur:s,endIcon:xr(Io,{title:"Reset step to default",children:xr(To,{variant:"text",size:"small",startIcon:xr(Di,{}),onClick:function(){var e=n||"1s";f(e),s(e)}})})})},Rs=n(936),$s=n.n(Rs),Us=function(){var e=sr().serverURL,t=Cr().tenantId,n=Er(),r=si(),i=At(ee(t||0),2),o=i[0],a=i[1],u=ue($s()((function(t){var i=Number(t);if(n({type:"SET_TENANT_ID",payload:i}),e){var o=e.replace(/(\/select\/)([\d]+)(\/prometheus)/,"$1".concat(i,"$3"));n({type:"SET_SERVER",payload:o}),r({type:"RUN_QUERY"})}}),700),[]);return ne((function(){o!==t&&a(t)}),[t]),xr(Go,{label:"Tenant ID",type:"number",value:o,onChange:function(e){a(e),u(e)},endIcon:xr(Io,{title:"Define tenant id if you need request to another storage",children:xr(To,{variant:"text",size:"small",startIcon:xr(wi,{})})})})},Hs=function(e){var t,n=e.value,r=void 0!==n&&n,i=e.disabled,o=void 0!==i&&i,a=e.label,u=e.color,l=void 0===u?"secondary":u,c=e.onChange;return xr("div",{className:Gi()((rr(t={"vm-switch":!0,"vm-switch_disabled":o,"vm-switch_active":r},"vm-switch_".concat(l,"_active"),r),rr(t,"vm-switch_".concat(l),l),t)),onClick:function(){o||c(!r)},children:[xr("div",{className:"vm-switch-track",children:xr("div",{className:"vm-switch-track__thumb"})}),a&&xr("span",{className:"vm-switch__label",children:a})]})};var Ys=function(e){var t=ie();return ne((function(){t.current=e}),[e]),t.current},Vs=function(){var e=vo().customStep,t=mo(),n=sr().inputTenantID,r=vi().autocomplete,i=mi(),o=co(),a=o.nocache,u=o.isTracingEnabled,l=so(),c=ci(),s=c.period.step,f=c.duration,d=Ys(f),h=function(e){t({type:"SET_CUSTOM_STEP",payload:e})};return ne((function(){!e&&s&&h(s)}),[s]),ne((function(){f!==d&&d&&s&&h(s)}),[f,d]),xr("div",{className:"vm-additional-settings",children:[xr(Hs,{label:"Autocomplete",value:r,onChange:function(){i({type:"TOGGLE_AUTOCOMPLETE"})}}),xr(Hs,{label:"Disable cache",value:a,onChange:function(){l({type:"TOGGLE_NO_CACHE"})}}),xr(Hs,{label:"Trace query",value:u,onChange:function(){l({type:"TOGGLE_QUERY_TRACING"})}}),xr("div",{className:"vm-additional-settings__input",children:xr(js,{defaultStep:s,setStep:h,value:e})}),!!n&&xr("div",{className:"vm-additional-settings__input",children:xr(Us,{})})]})},qs=function(e,t){return e.length===t.length&&e.every((function(e,n){return e===t[n]}))},Ws=function(e){var t=e.error,n=e.queryOptions,r=e.onHideQuery,i=vi(),o=i.query,a=i.queryHistory,u=i.autocomplete,l=mi(),c=si(),s=At(ee(o||[]),2),f=s[0],d=s[1],h=At(ee([]),2),p=h[0],v=h[1],m=Ys(f),y=function(){l({type:"SET_QUERY_HISTORY",payload:f.map((function(e,t){var n=a[t]||{values:[]},r=e===n.values[n.values.length-1];return{index:n.values.length-Number(r),values:!r&&e?[].concat(Ft(n.values),[e]):n.values}}))}),l({type:"SET_QUERY",payload:f}),c({type:"RUN_QUERY"})},g=function(e,t){d((function(n){return n.map((function(n,r){return r===t?e:n}))}))},_=function(e,t){return function(){!function(e,t){var n=a[t],r=n.index,i=n.values,o=r+e;o<0||o>=i.length||(g(i[o]||"",t),l({type:"SET_QUERY_HISTORY_BY_INDEX",payload:{value:{values:i,index:o},queryNumber:t}}))}(e,t)}},b=function(e){return function(t){g(t,e)}},D=function(e){return function(){var t;t=e,d((function(e){return e.filter((function(e,n){return n!==t}))})),v((function(t){return t.includes(e)?t.filter((function(t){return t!==e})):t.map((function(t){return t>e?t-1:t}))}))}},w=function(e){return function(t){!function(e,t){var n=e.ctrlKey,r=e.metaKey;if(n||r){var i=f.map((function(e,t){return t})).filter((function(e){return e!==t}));v((function(e){return qs(i,e)?[]:i}))}else v((function(e){return e.includes(t)?e.filter((function(e){return e!==t})):[].concat(Ft(e),[t])}))}(t,e)}};return ne((function(){m&&f.length1&&xr(Io,{title:"Remove Query",children:xr("div",{className:"vm-query-configurator-list-row__button",children:xr(To,{variant:"text",color:"error",startIcon:xr(Ri,{}),onClick:D(r)})})})]},r)}))}),xr("div",{className:"vm-query-configurator-settings",children:[xr(Vs,{}),xr("div",{className:"vm-query-configurator-settings__buttons",children:[f.length<4&&xr(To,{variant:"outlined",onClick:function(){d((function(e){return[].concat(Ft(e),[""])}))},startIcon:xr($i,{}),children:"Add Query"}),xr(To,{variant:"contained",onClick:y,startIcon:xr(Ii,{}),children:"Execute Query"})]})]})]})};function Qs(e){var t,n,r,i=2;for("undefined"!=typeof Symbol&&(n=Symbol.asyncIterator,r=Symbol.iterator);i--;){if(n&&null!=(t=e[n]))return t.call(e);if(r&&null!=(t=e[r]))return new Js(t.call(e));n="@@asyncIterator",r="@@iterator"}throw new TypeError("Object is not async iterable")}function Js(e){function t(e){if(Object(e)!==e)return Promise.reject(new TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then((function(e){return{value:e,done:t}}))}return Js=function(e){this.s=e,this.n=e.next},Js.prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var n=this.s.return;return void 0===n?Promise.resolve({value:e,done:!0}):t(n.apply(this.s,arguments))},throw:function(e){var n=this.s.return;return void 0===n?Promise.reject(e):t(n.apply(this.s,arguments))}},new Js(e)}var Gs=0,Zs=function(){function e(t,n){Nt(this,e),this.tracing=void 0,this.query=void 0,this.tracingChildren=void 0,this.originalTracing=void 0,this.id=void 0,this.tracing=t,this.originalTracing=JSON.parse(JSON.stringify(t)),this.query=n,this.id=Gs++;var r=t.children||[];this.tracingChildren=r.map((function(t){return new e(t,n)}))}return Bt(e,[{key:"queryValue",get:function(){return this.query}},{key:"idValue",get:function(){return this.id}},{key:"children",get:function(){return this.tracingChildren}},{key:"message",get:function(){return this.tracing.message}},{key:"duration",get:function(){return this.tracing.duration_msec}},{key:"JSON",get:function(){return JSON.stringify(this.tracing,null,2)}},{key:"originalJSON",get:function(){return JSON.stringify(this.originalTracing,null,2)}},{key:"setTracing",value:function(t){var n=this;this.tracing=t;var r=t.children||[];this.tracingChildren=r.map((function(t){return new e(t,n.query)}))}},{key:"setQuery",value:function(e){this.query=e}},{key:"resetTracing",value:function(){this.tracing=this.originalTracing}}]),e}(),Ks=function(e){var t=e.predefinedQuery,n=e.visible,r=e.display,i=e.customStep,o=e.hideQuery,a=e.showAllSeries,u=vi().query,l=ci().period,c=co(),s=c.displayType,f=c.nocache,d=c.isTracingEnabled,h=c.seriesLimits,p=Cr().serverUrl,v=At(ee(!1),2),m=v[0],y=v[1],g=At(ee(),2),_=g[0],b=g[1],D=At(ee(),2),w=D[0],x=D[1],k=At(ee(),2),C=k[0],E=k[1],S=At(ee(),2),A=S[0],F=S[1],N=At(ee(),2),O=N[0],T=N[1],M=At(ee([]),2),B=M[0],I=M[1];ne((function(){A&&(b(void 0),x(void 0),E(void 0))}),[A]);var L=function(){var e=Es(ks().mark((function e(t){var n,r,i,o,a,u,l,c,s,f,d,h,p;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.fetchUrl,r=t.fetchQueue,i=t.displayType,o=t.query,a=t.stateSeriesLimits,u=t.showAllSeries,l=t.hideQuery,c=new AbortController,I([].concat(Ft(r),[c])),e.prev=3,e.delegateYield(ks().mark((function e(){var t,r,v,m,y,g,_,D,w,k,C,S;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:t="chart"===i,r=u?1/0:a[i],v=[],m=[],y=1,g=0,s=!1,f=!1,e.prev=8,h=Qs(n);case 10:return e.next=12,h.next();case 12:if(!(s=!(p=e.sent).done)){e.next=28;break}if(_=p.value,!(null===l||void 0===l?void 0:l.includes(y-1))){e.next=18;break}return y++,e.abrupt("continue",25);case 18:return e.next=20,fetch(_,{signal:c.signal});case 20:return D=e.sent,e.next=23,D.json();case 23:w=e.sent,D.ok?(F(void 0),w.trace&&(k=new Zs(w.trace,o[y-1]),m.push(k)),C=r-v.length,w.data.result.slice(0,C).forEach((function(e){e.group=y,v.push(e)})),g+=w.data.result.length,y++):F("".concat(w.errorType,"\r\n").concat(null===w||void 0===w?void 0:w.error));case 25:s=!1,e.next=10;break;case 28:e.next=34;break;case 30:e.prev=30,e.t0=e.catch(8),f=!0,d=e.t0;case 34:if(e.prev=34,e.prev=35,!s||null==h.return){e.next=39;break}return e.next=39,h.return();case 39:if(e.prev=39,!f){e.next=42;break}throw d;case 42:return e.finish(39);case 43:return e.finish(34);case 44:S="Showing ".concat(r," series out of ").concat(g," series due to performance reasons. Please narrow down the query, so it returns less series"),T(g>r?S:""),t?b(v):x(v),E(m);case 48:case"end":return e.stop()}}),e,null,[[8,30,34,44],[35,,39,43]])}))(),"t0",5);case 5:e.next=10;break;case 7:e.prev=7,e.t1=e.catch(3),e.t1 instanceof Error&&"AbortError"!==e.t1.name&&F("".concat(e.t1.name,": ").concat(e.t1.message));case 10:y(!1);case 11:case"end":return e.stop()}}),e,null,[[3,7]])})));return function(t){return e.apply(this,arguments)}}(),P=ue($s()(L,800),[]),z=ae((function(){var e=null!==t&&void 0!==t?t:u,n="chart"===(r||s);if(l)if(p)if(e.every((function(e){return!e.trim()})))F(Ho.validQuery);else{if(Zo(p)){var o=or({},l);return o.step=i,e.map((function(e){return n?function(e,t,n,r,i){return"".concat(e,"/api/v1/query_range?query=").concat(encodeURIComponent(t),"&start=").concat(n.start,"&end=").concat(n.end,"&step=").concat(n.step).concat(r?"&nocache=1":"").concat(i?"&trace=1":"")}(p,e,o,f,d):function(e,t,n,r){return"".concat(e,"/api/v1/query?query=").concat(encodeURIComponent(t),"&time=").concat(n.end,"&step=").concat(n.step).concat(r?"&trace=1":"")}(p,e,o,d)}))}F(Ho.validServer)}else F(Ho.emptyServer)}),[p,l,s,i,o]);return ne((function(){n&&null!==z&&void 0!==z&&z.length&&(y(!0),P({fetchUrl:z,fetchQueue:B,displayType:r||s,query:null!==t&&void 0!==t?t:u,stateSeriesLimits:h,showAllSeries:a,hideQuery:o}))}),[z,n,h,a]),ne((function(){var e=B.slice(0,-1);e.length&&(e.map((function(e){return e.abort()})),I(B.filter((function(e){return!e.signal.aborted}))))}),[B]),{fetchUrl:z,isLoading:m,graphData:_,liveData:w,error:A,warning:O,traces:C}},Xs=function(e){var t=e.data,n=No().showInfoMessage,r=ae((function(){return JSON.stringify(t,null,2)}),[t]);return xr("div",{className:"vm-json-view",children:[xr("div",{className:"vm-json-view__copy",children:xr(To,{variant:"outlined",onClick:function(){navigator.clipboard.writeText(r),n({text:"Formatted JSON has been copied",type:"success"})},children:"Copy JSON"})}),xr("pre",{className:"vm-json-view__code",children:xr("code",{children:r})})]})},ef=function(e){var t=e.yaxis,n=e.setYaxisLimits,r=e.toggleEnableLimits,i=ae((function(){return Object.keys(t.limits.range)}),[t.limits.range]),o=ue($s()((function(e,r,i){var o=t.limits.range;o[r][i]=+e,o[r][0]===o[r][1]||o[r][0]>o[r][1]||n(o)}),500),[t.limits.range]),a=function(e,t){return function(n){o(n,e,t)}};return xr("div",{className:"vm-axes-limits",children:[xr(Hs,{value:t.limits.enable,onChange:r,label:"Fix the limits for y-axis"}),xr("div",{className:"vm-axes-limits-list",children:i.map((function(e){return xr("div",{className:"vm-axes-limits-list__inputs",children:[xr(Go,{label:"Min ".concat(e),type:"number",disabled:!t.limits.enable,value:t.limits.range[e][0],onChange:a(e,0)}),xr(Go,{label:"Max ".concat(e),type:"number",disabled:!t.limits.enable,value:t.limits.range[e][1],onChange:a(e,1)})]},e)}))})]})},tf="Axes settings",nf=function(e){var t=e.yaxis,n=e.setYaxisLimits,r=e.toggleEnableLimits,i=ie(null),o=At(ee(!1),2),a=o[0],u=o[1],l=ie(null);Mo(i,(function(){return u(!1)}),l);var c=function(){u(!1)};return xr("div",{className:"vm-graph-settings",children:[xr(Io,{title:tf,children:xr("div",{ref:l,children:xr(To,{variant:"text",startIcon:xr(_i,{}),onClick:function(){u((function(e){return!e}))}})})}),xr(Bo,{open:a,buttonRef:l,placement:"bottom-right",onClose:c,children:xr("div",{className:"vm-graph-settings-popper",ref:i,children:[xr("div",{className:"vm-popper-header",children:[xr("h3",{className:"vm-popper-header__title",children:tf}),xr(To,{size:"small",startIcon:xr(bi,{}),onClick:c})]}),xr("div",{className:"vm-graph-settings-popper__body",children:xr(ef,{yaxis:t,setYaxisLimits:n,toggleEnableLimits:r})})]})})]})},rf=function(e){var t=e.containerStyles,n=void 0===t?{}:t,r=e.message;return xr("div",{className:"vm-spinner",style:n&&{},children:[xr("div",{className:"half-circle-spinner",children:[xr("div",{className:"circle circle-1"}),xr("div",{className:"circle circle-2"})]}),r&&xr("div",{className:"vm-spinner__message",children:r})]})},of=function(){var e=Cr().serverUrl,t=At(ee([]),2),n=t[0],r=t[1],i=function(){var t=Es(ks().mark((function t(){var n,i,o;return ks().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e){t.next=2;break}return t.abrupt("return");case 2:return n="".concat(e,"/api/v1/label/__name__/values"),t.prev=3,t.next=6,fetch(n);case 6:return i=t.sent,t.next=9,i.json();case 9:o=t.sent,i.ok&&r(o.data),t.next=16;break;case 13:t.prev=13,t.t0=t.catch(3),console.error(t.t0);case 16:case"end":return t.stop()}}),t,null,[[3,13]])})));return function(){return t.apply(this,arguments)}}();return ne((function(){i()}),[e]),{queryOptions:n}},af=function(e){var t=e.value;return xr("div",{className:"vm-line-progress",children:[xr("div",{className:"vm-line-progress-track",children:xr("div",{className:"vm-line-progress-track__thumb",style:{width:"".concat(t,"%")}})}),xr("span",{children:[t.toFixed(2),"%"]})]})},uf=function e(t){var n,r=t.trace,i=t.totalMsec,o=At(ee({}),2),a=o[0],u=o[1],l=r.children&&!!r.children.length,c=r.duration/i*100;return xr("div",{className:"vm-nested-nav",children:[xr("div",{className:"vm-nested-nav-header",onClick:(n=r.idValue,function(){u((function(e){return or(or({},e),{},rr({},n,!e[n]))}))}),children:[l&&xr("div",{className:Gi()({"vm-nested-nav-header__icon":!0,"vm-nested-nav-header__icon_open":a[r.idValue]}),children:xr(Si,{})}),xr("div",{className:"vm-nested-nav-header__progress",children:xr(af,{value:c})}),xr("div",{className:"vm-nested-nav-header__message",children:r.message}),xr("div",{className:"vm-nested-nav-header__duration",children:"duration: ".concat(r.duration," ms")})]}),a[r.idValue]&&xr("div",{children:l&&r.children.map((function(t){return xr(e,{trace:t,totalMsec:i},t.duration)}))})]})},lf=function(e){var t=e.editable,n=void 0!==t&&t,r=e.defaultTile,i=void 0===r?"JSON":r,o=e.displayTitle,a=void 0===o||o,u=e.defaultJson,l=void 0===u?"":u,c=e.resetValue,f=void 0===c?"":c,d=e.onClose,h=e.onUpload,p=No().showInfoMessage,v=At(ee(l),2),m=v[0],y=v[1],g=At(ee(i),2),_=g[0],b=g[1],D=At(ee(""),2),w=D[0],x=D[1],k=At(ee(""),2),C=k[0],E=k[1],S=ae((function(){try{var e=JSON.parse(m),t=e.trace||e;return t.duration_msec?(new Zs(t,""),""):Ho.traceNotFound}catch(s){return s instanceof Error?s.message:"Unknown error"}}),[m]),A=function(){var e=Es(ks().mark((function e(){return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,navigator.clipboard.writeText(m);case 2:p({text:"Formatted JSON has been copied",type:"success"});case 3:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),F=function(){E(S),_.trim()||x(Ho.emptyTitle),S||w||(h(m,_),d())};return xr("div",{className:Gi()({"vm-json-form":!0,"vm-json-form_one-field":!a}),children:[a&&xr(Go,{value:_,label:"Title",error:w,onEnter:F,onChange:function(e){b(e)}}),xr(Go,{value:m,label:"JSON",type:"textarea",error:C,autofocus:!0,onChange:function(e){E(""),y(e)},disabled:!n}),xr("div",{className:"vm-json-form-footer",children:[xr("div",{className:"vm-json-form-footer__controls",children:[xr(To,{variant:"outlined",startIcon:xr(Vi,{}),onClick:A,children:"Copy JSON"}),f&&xr(To,{variant:"text",startIcon:xr(Di,{}),onClick:function(){y(f)},children:"Reset JSON"})]}),xr("div",{className:"vm-json-form-footer__controls vm-json-form-footer__controls_right",children:[xr(To,{variant:"outlined",color:"error",onClick:d,children:"Cancel"}),xr(To,{variant:"contained",onClick:F,children:"apply"})]})]})]})},cf=function(e){var t=e.traces,n=e.jsonEditor,r=void 0!==n&&n,i=e.onDeleteClick,o=At(ee(null),2),a=o[0],u=o[1],l=function(){u(null)};if(!t.length)return xr(Ao,{variant:"info",children:"Please re-run the query to see results of the tracing"});var c=function(e){return function(){i(e)}};return xr(y,{children:[xr("div",{className:"vm-tracings-view",children:t.map((function(e){return xr("div",{className:"vm-tracings-view-trace vm-block vm-block_empty-padding",children:[xr("div",{className:"vm-tracings-view-trace-header",children:[xr("h3",{className:"vm-tracings-view-trace-header-title",children:["Trace for ",xr("b",{className:"vm-tracings-view-trace-header-title__query",children:e.queryValue})]}),xr(Io,{title:"Open JSON",children:xr(To,{variant:"text",startIcon:xr(ji,{}),onClick:(t=e,function(){u(t)})})}),xr(Io,{title:"Remove trace",children:xr(To,{variant:"text",color:"error",startIcon:xr(Ri,{}),onClick:c(e)})})]}),xr("nav",{className:"vm-tracings-view-trace__nav",children:xr(uf,{trace:e,totalMsec:e.duration})})]},e.idValue);var t}))}),a&&xr(Xo,{title:a.queryValue,onClose:l,children:xr(lf,{editable:r,displayTitle:r,defaultTile:a.queryValue,defaultJson:a.JSON,resetValue:a.originalJSON,onClose:l,onUpload:function(e,t){if(r&&a)try{a.setTracing(JSON.parse(e)),a.setQuery(t),u(null)}catch(s){console.error(s)}}})})]})},sf=function(e,t){return ae((function(){var n={};e.forEach((function(e){return Object.entries(e.metric).forEach((function(e){return n[e[0]]?n[e[0]].options.add(e[1]):n[e[0]]={options:new Set([e[1]])}}))}));var r=Object.entries(n).map((function(e){return{key:e[0],variations:e[1].options.size}})).sort((function(e,t){return e.variations-t.variations}));return t?r.filter((function(e){return t.includes(e.key)})):r}),[e,t])},ff=function(e){var t,n=e.checked,r=void 0!==n&&n,i=e.disabled,o=void 0!==i&&i,a=e.label,u=e.color,l=void 0===u?"secondary":u,c=e.onChange;return xr("div",{className:Gi()((rr(t={"vm-checkbox":!0,"vm-checkbox_disabled":o,"vm-checkbox_active":r},"vm-checkbox_".concat(l,"_active"),r),rr(t,"vm-checkbox_".concat(l),l),t)),onClick:function(){o||c(!r)},children:[xr("div",{className:"vm-checkbox-track",children:xr("div",{className:"vm-checkbox-track__thumb",children:xr(Ui,{})})}),a&&xr("span",{className:"vm-checkbox__label",children:a})]})},df="Table settings",hf=function(e){var t=e.data,n=e.defaultColumns,r=void 0===n?[]:n,i=e.onChange,o=co().tableCompact,a=so(),u=sf(t),l=ie(null),c=At(ee(!1),2),s=c[0],f=c[1],d=ae((function(){return!u.length}),[u]),h=function(){f(!1)},p=function(e){return function(){!function(e){i(r.includes(e)?r.filter((function(t){return t!==e})):[].concat(Ft(r),[e]))}(e)}};return ne((function(){var e=u.map((function(e){return e.key}));qs(e,r)||i(e)}),[u]),xr("div",{className:"vm-table-settings",children:[xr(Io,{title:df,children:xr("div",{ref:l,children:xr(To,{variant:"text",startIcon:xr(_i,{}),onClick:function(){f((function(e){return!e}))},disabled:d})})}),xr(Bo,{open:s,onClose:h,placement:"bottom-right",buttonRef:l,children:xr("div",{className:"vm-table-settings-popper",children:[xr("div",{className:"vm-popper-header",children:[xr("h3",{className:"vm-popper-header__title",children:df}),xr(To,{onClick:h,startIcon:xr(bi,{}),size:"small"})]}),xr("div",{className:"vm-table-settings-popper-list",children:xr(Hs,{label:"Compact view",value:o,onChange:function(){a({type:"TOGGLE_TABLE_COMPACT"})}})}),xr("div",{className:"vm-table-settings-popper-list",children:[xr("div",{className:"vm-table-settings-popper-list-header",children:[xr("h3",{className:"vm-table-settings-popper-list-header__title",children:"Display columns"}),xr(Io,{title:"Reset to default",children:xr(To,{color:"primary",variant:"text",size:"small",onClick:function(){f(!1),i(u.map((function(e){return e.key})))},startIcon:xr(Di,{})})})]}),u.map((function(e){return xr("div",{className:"vm-table-settings-popper-list__item",children:xr(ff,{checked:r.includes(e.key),onChange:p(e.key),label:e.key,disabled:o})},e.key)}))]})]})})]})};function pf(e){return function(e,t){return Object.fromEntries(Object.entries(e).filter(t))}(e,(function(e){return!!e[1]}))}var vf=["__name__"],mf=function(e){var t=e.data,n=e.displayColumns,r=No().showInfoMessage,i=co().tableCompact,o=Xi(document.body),a=ie(null),u=At(ee(0),2),l=u[0],c=u[1],s=At(ee(0),2),f=s[0],d=s[1],h=At(ee(""),2),p=h[0],v=h[1],m=At(ee("asc"),2),y=m[0],g=m[1],_=i?sf([{group:0,metric:{Data:"Data"}}],["Data"]):sf(t,n),b=function(e){var t=e.__name__,n=Fs(e,vf);return t||Object.keys(n).length?"".concat(t," ").concat(JSON.stringify(n)):""},D=ae((function(){var e=null===t||void 0===t?void 0:t.map((function(e){return{metadata:_.map((function(t){return i?Os(e):e.metric[t.key]||"-"})),value:e.value?e.value[1]:"-",copyValue:b(e.metric)}})),n="Value"===p,r=_.findIndex((function(e){return e.key===p}));return n||-1!==r?e.sort((function(e,t){var i=n?Number(e.value):e.metadata[r],o=n?Number(t.value):t.metadata[r];return("asc"===y?io)?-1:1})):e}),[_,t,p,y,i]),w=ae((function(){return D.some((function(e){return e.copyValue}))}),[D]),x=function(){var e=Es(ks().mark((function e(t){return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,navigator.clipboard.writeText(t);case 2:r({text:"Row has been copied",type:"success"});case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),k=function(e){return function(){!function(e){g((function(t){return"asc"===t&&p===e?"desc":"asc"})),v(e)}(e)}},C=function(){if(a.current){var e=a.current.getBoundingClientRect().top;d(e<0?window.scrollY-l:0)}};return ne((function(){return window.addEventListener("scroll",C),function(){window.removeEventListener("scroll",C)}}),[a,l,o]),ne((function(){if(a.current){var e=a.current.getBoundingClientRect().top;c(e+window.scrollY)}}),[a,o]),D.length?xr("div",{className:"vm-table-view",children:xr("table",{className:"vm-table",ref:a,children:[xr("thead",{className:"vm-table-header",children:xr("tr",{className:"vm-table__row vm-table__row_header",style:{transform:"translateY(".concat(f,"px)")},children:[_.map((function(e,t){return xr("td",{className:"vm-table-cell vm-table-cell_header vm-table-cell_sort",onClick:k(e.key),children:xr("div",{className:"vm-table-cell__content",children:[e.key,xr("div",{className:Gi()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":p===e.key,"vm-table__sort-icon_desc":"desc"===y&&p===e.key}),children:xr(Ai,{})})]})},t)})),xr("td",{className:"vm-table-cell vm-table-cell_header vm-table-cell_right vm-table-cell_sort",onClick:k("Value"),children:xr("div",{className:"vm-table-cell__content",children:[xr("div",{className:Gi()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":"Value"===p,"vm-table__sort-icon_desc":"desc"===y}),children:xr(Ai,{})}),"Value"]})}),w&&xr("td",{className:"vm-table-cell vm-table-cell_header"})]})}),xr("tbody",{className:"vm-table-body",children:D.map((function(e,t){return xr("tr",{className:"vm-table__row",children:[e.metadata.map((function(e,n){return xr("td",{className:Gi()({"vm-table-cell vm-table-cell_no-wrap":!0,"vm-table-cell_gray":D[t-1]&&D[t-1].metadata[n]===e}),children:e},n)})),xr("td",{className:"vm-table-cell vm-table-cell_right",children:e.value}),w&&xr("td",{className:"vm-table-cell vm-table-cell_right",children:e.copyValue&&xr("div",{className:"vm-table-cell__content",children:xr(Io,{title:"Copy row",children:xr(To,{variant:"text",color:"gray",size:"small",startIcon:xr(Vi,{}),onClick:(n=e.copyValue,function(){x(n)})})})})})]},t);var n}))})]})}):xr(Ao,{variant:"warning",children:"No data to show"})},yf=function(){var e=co(),t=e.displayType,n=e.isTracingEnabled,r=vi().query,i=ci().period,o=si();!function(){var e=Cr().tenantId,t=co().displayType,n=vi().query,r=ci(),i=r.duration,o=r.relativeTime,a=r.period,u=a.date,l=a.step,c=vo().customStep,s=function(){var r={};n.forEach((function(n,a){var s,f="g".concat(a);r["".concat(f,".expr")]=n,r["".concat(f,".range_input")]=i,r["".concat(f,".end_input")]=u,r["".concat(f,".tab")]=(null===(s=to.find((function(e){return e.value===t})))||void 0===s?void 0:s.prometheusCode)||0,r["".concat(f,".relative_time")]=o,r["".concat(f,".tenantID")]=e,l!==c&&c&&(r["".concat(f,".step_input")]=c)})),gr(pf(r))};ne(s,[e,t,n,i,o,u,l,c]),ne(s,[])}();var a=At(ee(),2),u=a[0],l=a[1],c=At(ee([]),2),s=c[0],f=c[1],d=At(ee([]),2),h=d[0],p=d[1],v=At(ee(!1),2),m=v[0],y=v[1],g=vo(),_=g.customStep,b=g.yaxis,D=mo(),w=of().queryOptions,x=Ks({visible:!0,customStep:_,hideQuery:h,showAllSeries:m}),k=x.isLoading,C=x.liveData,E=x.graphData,S=x.error,A=x.warning,F=x.traces,N=function(e){D({type:"SET_YAXIS_LIMITS",payload:e})};return ne((function(){F&&f([].concat(Ft(s),Ft(F)))}),[F]),ne((function(){f([])}),[t]),ne((function(){y(!1)}),[r]),xr("div",{className:"vm-custom-panel",children:[xr(Ws,{error:S,queryOptions:w,onHideQuery:function(e){p(e)}}),n&&xr("div",{className:"vm-custom-panel__trace",children:xr(cf,{traces:s,onDeleteClick:function(e){var t=s.filter((function(t){return t.idValue!==e.idValue}));f(Ft(t))}})}),k&&xr(rf,{}),S&&xr(Ao,{variant:"error",children:S}),A&&xr(Ao,{variant:"warning",children:xr("div",{className:"vm-custom-panel__warning",children:[xr("p",{children:A}),xr(To,{color:"warning",variant:"outlined",onClick:function(){y(!0)},children:"Show all"})]})}),xr("div",{className:"vm-custom-panel-body vm-block",children:[xr("div",{className:"vm-custom-panel-body-header",children:[xr(no,{}),"chart"===t&&xr(nf,{yaxis:b,setYaxisLimits:N,toggleEnableLimits:function(){D({type:"TOGGLE_ENABLE_YAXIS_LIMITS"})}}),"table"===t&&xr(hf,{data:C||[],defaultColumns:u,onChange:l})]}),E&&i&&"chart"===t&&xr(Ls,{data:E,period:i,customStep:_,query:r,yaxis:b,setYaxisLimits:N,setPeriod:function(e){var t=e.from,n=e.to;o({type:"SET_PERIOD",payload:{from:t,to:n}})}}),C&&"code"===t&&xr(Xs,{data:C}),C&&"table"===t&&xr(mf,{data:C,displayColumns:u})]})]})},gf=function(){var e=Es(ks().mark((function e(t){var n,r;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("./dashboards/".concat(t));case 2:return n=e.sent,e.next=5,n.json();case 5:return r=e.sent,e.abrupt("return",r);case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),_f=Es(ks().mark((function e(){var t;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=window.__VMUI_PREDEFINED_DASHBOARDS__,e.next=3,Promise.all(t.map(function(){var e=Es(ks().mark((function e(t){return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",gf(t));case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()));case 3:return e.abrupt("return",e.sent);case 4:case"end":return e.stop()}}),e)})));function bf(){return{async:!1,baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1}}var Df={async:!1,baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1};var wf=/[&<>"']/,xf=new RegExp(wf.source,"g"),kf=/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,Cf=new RegExp(kf.source,"g"),Ef={"&":"&","<":"<",">":">",'"':""","'":"'"},Sf=function(e){return Ef[e]};function Af(e,t){if(t){if(wf.test(e))return e.replace(xf,Sf)}else if(kf.test(e))return e.replace(Cf,Sf);return e}var Ff=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/gi;function Nf(e){return e.replace(Ff,(function(e,t){return"colon"===(t=t.toLowerCase())?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""}))}var Of=/(^|[^\[])\^/g;function Tf(e,t){e="string"===typeof e?e:e.source,t=t||"";var n={replace:function(t,r){return r=(r=r.source||r).replace(Of,"$1"),e=e.replace(t,r),n},getRegex:function(){return new RegExp(e,t)}};return n}var Mf=/[^\w:]/g,Bf=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function If(e,t,n){if(e){var r;try{r=decodeURIComponent(Nf(n)).replace(Mf,"").toLowerCase()}catch(s){return null}if(0===r.indexOf("javascript:")||0===r.indexOf("vbscript:")||0===r.indexOf("data:"))return null}t&&!Bf.test(n)&&(n=function(e,t){Lf[" "+e]||(Pf.test(e)?Lf[" "+e]=e+"/":Lf[" "+e]=Hf(e,"/",!0));e=Lf[" "+e];var n=-1===e.indexOf(":");return"//"===t.substring(0,2)?n?t:e.replace(zf,"$1")+t:"/"===t.charAt(0)?n?t:e.replace(jf,"$1")+t:e+t}(t,n));try{n=encodeURI(n).replace(/%25/g,"%")}catch(s){return null}return n}var Lf={},Pf=/^[^:]+:\/*[^/]*$/,zf=/^([^:]+:)[\s\S]*$/,jf=/^([^:]+:\/*[^/]*)[\s\S]*$/;var Rf={exec:function(){}};function $f(e){for(var t,n,r=1;r=0&&"\\"===n[i];)r=!r;return r?"|":" |"})).split(/ \|/),r=0;if(n[0].trim()||n.shift(),n.length>0&&!n[n.length-1].trim()&&n.pop(),n.length>t)n.splice(t);else for(;n.length1;)1&t&&(n+=e),t>>=1,e+=e;return n+e}function qf(e,t,n,r){var i=t.href,o=t.title?Af(t.title):null,a=e[1].replace(/\\([\[\]])/g,"$1");if("!"!==e[0].charAt(0)){r.state.inLink=!0;var u={type:"link",raw:n,href:i,title:o,text:a,tokens:r.inlineTokens(a)};return r.state.inLink=!1,u}return{type:"image",raw:n,href:i,title:o,text:Af(a)}}var Wf=function(){function e(t){Nt(this,e),this.options=t||Df}return Bt(e,[{key:"space",value:function(e){var t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}},{key:"code",value:function(e){var t=this.rules.block.code.exec(e);if(t){var n=t[0].replace(/^ {1,4}/gm,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?n:Hf(n,"\n")}}}},{key:"fences",value:function(e){var t=this.rules.block.fences.exec(e);if(t){var n=t[0],r=function(e,t){var n=e.match(/^(\s+)(?:```)/);if(null===n)return t;var r=n[1];return t.split("\n").map((function(e){var t=e.match(/^\s+/);return null===t?e:At(t,1)[0].length>=r.length?e.slice(r.length):e})).join("\n")}(n,t[3]||"");return{type:"code",raw:n,lang:t[2]?t[2].trim().replace(this.rules.inline._escapes,"$1"):t[2],text:r}}}},{key:"heading",value:function(e){var t=this.rules.block.heading.exec(e);if(t){var n=t[2].trim();if(/#$/.test(n)){var r=Hf(n,"#");this.options.pedantic?n=r.trim():r&&!/ $/.test(r)||(n=r.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:n,tokens:this.lexer.inline(n)}}}},{key:"hr",value:function(e){var t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:t[0]}}},{key:"blockquote",value:function(e){var t=this.rules.block.blockquote.exec(e);if(t){var n=t[0].replace(/^ *>[ \t]?/gm,""),r=this.lexer.state.top;this.lexer.state.top=!0;var i=this.lexer.blockTokens(n);return this.lexer.state.top=r,{type:"blockquote",raw:t[0],tokens:i,text:n}}}},{key:"list",value:function(e){var t=this.rules.block.list.exec(e);if(t){var n,r,i,o,a,u,l,c,s,f,d,h,p=t[1].trim(),v=p.length>1,m={type:"list",raw:"",ordered:v,start:v?+p.slice(0,-1):"",loose:!1,items:[]};p=v?"\\d{1,9}\\".concat(p.slice(-1)):"\\".concat(p),this.options.pedantic&&(p=v?p:"[*+-]");for(var y=new RegExp("^( {0,3}".concat(p,")((?:[\t ][^\\n]*)?(?:\\n|$))"));e&&(h=!1,t=y.exec(e))&&!this.rules.block.hr.test(e);){if(n=t[0],e=e.substring(n.length),c=t[2].split("\n",1)[0],s=e.split("\n",1)[0],this.options.pedantic?(o=2,d=c.trimLeft()):(o=(o=t[2].search(/[^ ]/))>4?1:o,d=c.slice(o),o+=t[1].length),u=!1,!c&&/^ *$/.test(s)&&(n+=s+"\n",e=e.substring(s.length+1),h=!0),!h)for(var g=new RegExp("^ {0,".concat(Math.min(3,o-1),"}(?:[*+-]|\\d{1,9}[.)])((?: [^\\n]*)?(?:\\n|$))")),_=new RegExp("^ {0,".concat(Math.min(3,o-1),"}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)")),b=new RegExp("^ {0,".concat(Math.min(3,o-1),"}(?:```|~~~)")),D=new RegExp("^ {0,".concat(Math.min(3,o-1),"}#"));e&&(c=f=e.split("\n",1)[0],this.options.pedantic&&(c=c.replace(/^ {1,4}(?=( {4})*[^ ])/g," ")),!b.test(c))&&!D.test(c)&&!g.test(c)&&!_.test(e);){if(c.search(/[^ ]/)>=o||!c.trim())d+="\n"+c.slice(o);else{if(u)break;d+="\n"+c}u||c.trim()||(u=!0),n+=f+"\n",e=e.substring(f.length+1)}m.loose||(l?m.loose=!0:/\n *\n *$/.test(n)&&(l=!0)),this.options.gfm&&(r=/^\[[ xX]\] /.exec(d))&&(i="[ ] "!==r[0],d=d.replace(/^\[[ xX]\] +/,"")),m.items.push({type:"list_item",raw:n,task:!!r,checked:i,loose:!1,text:d}),m.raw+=n}m.items[m.items.length-1].raw=n.trimRight(),m.items[m.items.length-1].text=d.trimRight(),m.raw=m.raw.trimRight();var w=m.items.length;for(a=0;a0&&x.some((function(e){return/\n.*\n/.test(e.raw)}));m.loose=k}if(m.loose)for(a=0;a$/,"$1").replace(this.rules.inline._escapes,"$1"):"",i=t[3]?t[3].substring(1,t[3].length-1).replace(this.rules.inline._escapes,"$1"):t[3];return{type:"def",tag:n,raw:t[0],href:r,title:i}}}},{key:"table",value:function(e){var t=this.rules.block.table.exec(e);if(t){var n={type:"table",header:Uf(t[1]).map((function(e){return{text:e}})),align:t[2].replace(/^ *|\| *$/g,"").split(/ *\| */),rows:t[3]&&t[3].trim()?t[3].replace(/\n[ \t]*$/,"").split("\n"):[]};if(n.header.length===n.align.length){n.raw=t[0];var r,i,o,a,u=n.align.length;for(r=0;r/i.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:this.options.sanitize?"text":"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(t[0]):Af(t[0]):t[0]}}},{key:"link",value:function(e){var t=this.rules.inline.link.exec(e);if(t){var n=t[2].trim();if(!this.options.pedantic&&/^$/.test(n))return;var r=Hf(n.slice(0,-1),"\\");if((n.length-r.length)%2===0)return}else{var i=function(e,t){if(-1===e.indexOf(t[1]))return-1;for(var n=e.length,r=0,i=0;i-1){var o=(0===t[0].indexOf("!")?5:4)+t[1].length+i;t[2]=t[2].substring(0,i),t[0]=t[0].substring(0,o).trim(),t[3]=""}}var a=t[2],u="";if(this.options.pedantic){var l=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(a);l&&(a=l[1],u=l[3])}else u=t[3]?t[3].slice(1,-1):"";return a=a.trim(),/^$/.test(n)?a.slice(1):a.slice(1,-1)),qf(t,{href:a?a.replace(this.rules.inline._escapes,"$1"):a,title:u?u.replace(this.rules.inline._escapes,"$1"):u},t[0],this.lexer)}}},{key:"reflink",value:function(e,t){var n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){var r=(n[2]||n[1]).replace(/\s+/g," ");if(!(r=t[r.toLowerCase()])){var i=n[0].charAt(0);return{type:"text",raw:i,text:i}}return qf(n,r,n[0],this.lexer)}}},{key:"emStrong",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=this.rules.inline.emStrong.lDelim.exec(e);if(r&&(!r[3]||!n.match(/(?:[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xBC-\xBE\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u0660-\u0669\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0966-\u096F\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09F9\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AE6-\u0AEF\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B6F\u0B71-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0BE6-\u0BF2\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C78-\u0C7E\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D58-\u0D61\u0D66-\u0D78\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DE6-\u0DEF\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F20-\u0F33\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F-\u1049\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1090-\u1099\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1369-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A20-\u1A54\u1A80-\u1A89\u1A90-\u1A99\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B50-\u1B59\u1B83-\u1BA0\u1BAE-\u1BE5\u1C00-\u1C23\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2150-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2CFD\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3192-\u3195\u31A0-\u31BF\u31F0-\u31FF\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA830-\uA835\uA840-\uA873\uA882-\uA8B3\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uA9E0-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDE80-\uDE9C\uDEA0-\uDED0\uDEE1-\uDEFB\uDF00-\uDF23\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC58-\uDC76\uDC79-\uDC9E\uDCA7-\uDCAF\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDD1B\uDD20-\uDD39\uDD80-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE40-\uDE48\uDE60-\uDE7E\uDE80-\uDE9F\uDEC0-\uDEC7\uDEC9-\uDEE4\uDEEB-\uDEEF\uDF00-\uDF35\uDF40-\uDF55\uDF58-\uDF72\uDF78-\uDF91\uDFA9-\uDFAF]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDD23\uDD30-\uDD39\uDE60-\uDE7E\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF27\uDF30-\uDF45\uDF51-\uDF54\uDF70-\uDF81\uDFB0-\uDFCB\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC52-\uDC6F\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD03-\uDD26\uDD36-\uDD3F\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDD0-\uDDDA\uDDDC\uDDE1-\uDDF4\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDEF0-\uDEF9\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC50-\uDC59\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE50-\uDE59\uDE80-\uDEAA\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF30-\uDF3B\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCF2\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC50-\uDC6C\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDF50-\uDF59\uDFB0\uDFC0-\uDFD4]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDE70-\uDEBE\uDEC0-\uDEC9\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE96\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD834[\uDEC0-\uDED3\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD40-\uDD49\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB\uDEF0-\uDEF9]|\uD839[\uDCD0-\uDCEB\uDCF0-\uDCF9\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDCC7-\uDCCF\uDD00-\uDD43\uDD4B\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])/))){var i=r[1]||r[2]||"";if(!i||i&&(""===n||this.rules.inline.punctuation.exec(n))){var o,a,u=r[0].length-1,l=u,c=0,s="*"===r[0][0]?this.rules.inline.emStrong.rDelimAst:this.rules.inline.emStrong.rDelimUnd;for(s.lastIndex=0,t=t.slice(-1*e.length+u);null!=(r=s.exec(t));)if(o=r[1]||r[2]||r[3]||r[4]||r[5]||r[6])if(a=o.length,r[3]||r[4])l+=a;else if(!((r[5]||r[6])&&u%3)||(u+a)%3){if(!((l-=a)>0)){a=Math.min(a,a+l+c);var f=e.slice(0,u+r.index+(r[0].length-o.length)+a);if(Math.min(u,a)%2){var d=f.slice(1,-1);return{type:"em",raw:f,text:d,tokens:this.lexer.inlineTokens(d)}}var h=f.slice(2,-2);return{type:"strong",raw:f,text:h,tokens:this.lexer.inlineTokens(h)}}}else c+=a}}}},{key:"codespan",value:function(e){var t=this.rules.inline.code.exec(e);if(t){var n=t[2].replace(/\n/g," "),r=/[^ ]/.test(n),i=/^ /.test(n)&&/ $/.test(n);return r&&i&&(n=n.substring(1,n.length-1)),n=Af(n,!0),{type:"codespan",raw:t[0],text:n}}}},{key:"br",value:function(e){var t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}},{key:"del",value:function(e){var t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}},{key:"autolink",value:function(e,t){var n,r,i=this.rules.inline.autolink.exec(e);if(i)return r="@"===i[2]?"mailto:"+(n=Af(this.options.mangle?t(i[1]):i[1])):n=Af(i[1]),{type:"link",raw:i[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}},{key:"url",value:function(e,t){var n;if(n=this.rules.inline.url.exec(e)){var r,i;if("@"===n[2])i="mailto:"+(r=Af(this.options.mangle?t(n[0]):n[0]));else{var o;do{o=n[0],n[0]=this.rules.inline._backpedal.exec(n[0])[0]}while(o!==n[0]);r=Af(n[0]),i="www."===n[1]?"http://"+n[0]:n[0]}return{type:"link",raw:n[0],text:r,href:i,tokens:[{type:"text",raw:r,text:r}]}}}},{key:"inlineText",value:function(e,t){var n,r=this.rules.inline.text.exec(e);if(r)return n=this.lexer.state.inRawBlock?this.options.sanitize?this.options.sanitizer?this.options.sanitizer(r[0]):Af(r[0]):r[0]:Af(this.options.smartypants?t(r[0]):r[0]),{type:"text",raw:r[0],text:n}}}]),e}(),Qf={newline:/^(?: *(?:\n|$))+/,code:/^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/,fences:/^ {0,3}(`{3,}(?=[^`\n]*\n)|~{3,})([^\n]*)\n(?:|([\s\S]*?)\n)(?: {0,3}\1[~`]* *(?=\n|$)|$)/,hr:/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/,html:"^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n *)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$))",def:/^ {0,3}\[(label)\]: *(?:\n *)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n *)?| *\n *)(title))? *(?:\n+|$)/,table:Rf,lheading:/^((?:.|\n(?!\n))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,text:/^[^\n]+/,_label:/(?!\s*\])(?:\\.|[^\[\]\\])+/,_title:/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/};Qf.def=Tf(Qf.def).replace("label",Qf._label).replace("title",Qf._title).getRegex(),Qf.bullet=/(?:[*+-]|\d{1,9}[.)])/,Qf.listItemStart=Tf(/^( *)(bull) */).replace("bull",Qf.bullet).getRegex(),Qf.list=Tf(Qf.list).replace(/bull/g,Qf.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+Qf.def.source+")").getRegex(),Qf._tag="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|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",Qf._comment=/|$)/,Qf.html=Tf(Qf.html,"i").replace("comment",Qf._comment).replace("tag",Qf._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),Qf.paragraph=Tf(Qf._paragraph).replace("hr",Qf.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Qf._tag).getRegex(),Qf.blockquote=Tf(Qf.blockquote).replace("paragraph",Qf.paragraph).getRegex(),Qf.normal=$f({},Qf),Qf.gfm=$f({},Qf.normal,{table:"^ *([^\\n ].*\\|.*)\\n {0,3}(?:\\| *)?(:?-+:? *(?:\\| *:?-+:? *)*)(?:\\| *)?(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)"}),Qf.gfm.table=Tf(Qf.gfm.table).replace("hr",Qf.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Qf._tag).getRegex(),Qf.gfm.paragraph=Tf(Qf._paragraph).replace("hr",Qf.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("table",Qf.gfm.table).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",Qf._tag).getRegex(),Qf.pedantic=$f({},Qf.normal,{html:Tf("^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))").replace("comment",Qf._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:Rf,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:Tf(Qf.normal._paragraph).replace("hr",Qf.hr).replace("heading"," *#{1,6} *[^\n]").replace("lheading",Qf.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()});var Jf={escape:/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:Rf,tag:"^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(ref)\]/,nolink:/^!?\[(ref)\](?:\[\])?/,reflinkSearch:"reflink|nolink(?!\\()",emStrong:{lDelim:/^(?:\*+(?:([punct_])|[^\s*]))|^_+(?:([punct*])|([^\s_]))/,rDelimAst:/^(?:[^_*\\]|\\.)*?\_\_(?:[^_*\\]|\\.)*?\*(?:[^_*\\]|\\.)*?(?=\_\_)|(?:[^*\\]|\\.)+(?=[^*])|[punct_](\*+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\*+)(?=[punct_\s]|$)|[punct_\s](\*+)(?=[^punct*_\s])|[\s](\*+)(?=[punct_])|[punct_](\*+)(?=[punct_])|(?:[^punct*_\s\\]|\\.)(\*+)(?=[^punct*_\s])/,rDelimUnd:/^(?:[^_*\\]|\\.)*?\*\*(?:[^_*\\]|\\.)*?\_(?:[^_*\\]|\\.)*?(?=\*\*)|(?:[^_\\]|\\.)+(?=[^_])|[punct*](\_+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\_+)(?=[punct*\s]|$)|[punct*\s](\_+)(?=[^punct*_\s])|[\s](\_+)(?=[punct*])|[punct*](\_+)(?=[punct*])/},code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:Rf,text:/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\.5&&(n="x"+n.toString(16)),r+="&#"+n+";";return r}Jf._punctuation="!\"#$%&'()+\\-.,/:;<=>?@\\[\\]`^{|}~",Jf.punctuation=Tf(Jf.punctuation).replace(/punctuation/g,Jf._punctuation).getRegex(),Jf.blockSkip=/\[[^\]]*?\]\([^\)]*?\)|`[^`]*?`|<[^>]*?>/g,Jf.escapedEmSt=/(?:^|[^\\])(?:\\\\)*\\[*_]/g,Jf._comment=Tf(Qf._comment).replace("(?:--\x3e|$)","--\x3e").getRegex(),Jf.emStrong.lDelim=Tf(Jf.emStrong.lDelim).replace(/punct/g,Jf._punctuation).getRegex(),Jf.emStrong.rDelimAst=Tf(Jf.emStrong.rDelimAst,"g").replace(/punct/g,Jf._punctuation).getRegex(),Jf.emStrong.rDelimUnd=Tf(Jf.emStrong.rDelimUnd,"g").replace(/punct/g,Jf._punctuation).getRegex(),Jf._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g,Jf._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,Jf._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/,Jf.autolink=Tf(Jf.autolink).replace("scheme",Jf._scheme).replace("email",Jf._email).getRegex(),Jf._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/,Jf.tag=Tf(Jf.tag).replace("comment",Jf._comment).replace("attribute",Jf._attribute).getRegex(),Jf._label=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,Jf._href=/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/,Jf._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/,Jf.link=Tf(Jf.link).replace("label",Jf._label).replace("href",Jf._href).replace("title",Jf._title).getRegex(),Jf.reflink=Tf(Jf.reflink).replace("label",Jf._label).replace("ref",Qf._label).getRegex(),Jf.nolink=Tf(Jf.nolink).replace("ref",Qf._label).getRegex(),Jf.reflinkSearch=Tf(Jf.reflinkSearch,"g").replace("reflink",Jf.reflink).replace("nolink",Jf.nolink).getRegex(),Jf.normal=$f({},Jf),Jf.pedantic=$f({},Jf.normal,{strong:{start:/^__|\*\*/,middle:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,endAst:/\*\*(?!\*)/g,endUnd:/__(?!_)/g},em:{start:/^_|\*/,middle:/^()\*(?=\S)([\s\S]*?\S)\*(?!\*)|^_(?=\S)([\s\S]*?\S)_(?!_)/,endAst:/\*(?!\*)/g,endUnd:/_(?!_)/g},link:Tf(/^!?\[(label)\]\((.*?)\)/).replace("label",Jf._label).getRegex(),reflink:Tf(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",Jf._label).getRegex()}),Jf.gfm=$f({},Jf.normal,{escape:Tf(Jf.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])([\s\S]*?[^\s~])\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\1&&void 0!==arguments[1]?arguments[1]:[];for(e=this.options.pedantic?e.replace(/\t/g," ").replace(/^ +$/gm,""):e.replace(/^( *)(\t+)/gm,(function(e,t,n){return t+" ".repeat(n.length)}));e;)if(!(this.options.extensions&&this.options.extensions.block&&this.options.extensions.block.some((function(n){return!!(t=n.call({lexer:o},e,a))&&(e=e.substring(t.raw.length),a.push(t),!0)}))))if(t=this.tokenizer.space(e))e=e.substring(t.raw.length),1===t.raw.length&&a.length>0?a[a.length-1].raw+="\n":a.push(t);else if(t=this.tokenizer.code(e))e=e.substring(t.raw.length),!(n=a[a.length-1])||"paragraph"!==n.type&&"text"!==n.type?a.push(t):(n.raw+="\n"+t.raw,n.text+="\n"+t.text,this.inlineQueue[this.inlineQueue.length-1].src=n.text);else if(t=this.tokenizer.fences(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.heading(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.hr(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.blockquote(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.list(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.html(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.def(e))e=e.substring(t.raw.length),!(n=a[a.length-1])||"paragraph"!==n.type&&"text"!==n.type?this.tokens.links[t.tag]||(this.tokens.links[t.tag]={href:t.href,title:t.title}):(n.raw+="\n"+t.raw,n.text+="\n"+t.raw,this.inlineQueue[this.inlineQueue.length-1].src=n.text);else if(t=this.tokenizer.table(e))e=e.substring(t.raw.length),a.push(t);else if(t=this.tokenizer.lheading(e))e=e.substring(t.raw.length),a.push(t);else if(r=e,this.options.extensions&&this.options.extensions.startBlock&&function(){var t=1/0,n=e.slice(1),i=void 0;o.options.extensions.startBlock.forEach((function(e){"number"===typeof(i=e.call({lexer:this},n))&&i>=0&&(t=Math.min(t,i))})),t<1/0&&t>=0&&(r=e.substring(0,t+1))}(),this.state.top&&(t=this.tokenizer.paragraph(r)))n=a[a.length-1],i&&"paragraph"===n.type?(n.raw+="\n"+t.raw,n.text+="\n"+t.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=n.text):a.push(t),i=r.length!==e.length,e=e.substring(t.raw.length);else if(t=this.tokenizer.text(e))e=e.substring(t.raw.length),(n=a[a.length-1])&&"text"===n.type?(n.raw+="\n"+t.raw,n.text+="\n"+t.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=n.text):a.push(t);else if(e){var u="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(u);break}throw new Error(u)}return this.state.top=!0,a}},{key:"inline",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return this.inlineQueue.push({src:e,tokens:t}),t}},{key:"inlineTokens",value:function(e){var t,n,r,i,o,a,u=this,l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],c=e;if(this.tokens.links){var s=Object.keys(this.tokens.links);if(s.length>0)for(;null!=(i=this.tokenizer.rules.inline.reflinkSearch.exec(c));)s.includes(i[0].slice(i[0].lastIndexOf("[")+1,-1))&&(c=c.slice(0,i.index)+"["+Vf("a",i[0].length-2)+"]"+c.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;null!=(i=this.tokenizer.rules.inline.blockSkip.exec(c));)c=c.slice(0,i.index)+"["+Vf("a",i[0].length-2)+"]"+c.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;null!=(i=this.tokenizer.rules.inline.escapedEmSt.exec(c));)c=c.slice(0,i.index+i[0].length-2)+"++"+c.slice(this.tokenizer.rules.inline.escapedEmSt.lastIndex),this.tokenizer.rules.inline.escapedEmSt.lastIndex--;for(;e;)if(o||(a=""),o=!1,!(this.options.extensions&&this.options.extensions.inline&&this.options.extensions.inline.some((function(n){return!!(t=n.call({lexer:u},e,l))&&(e=e.substring(t.raw.length),l.push(t),!0)}))))if(t=this.tokenizer.escape(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.tag(e))e=e.substring(t.raw.length),(n=l[l.length-1])&&"text"===t.type&&"text"===n.type?(n.raw+=t.raw,n.text+=t.text):l.push(t);else if(t=this.tokenizer.link(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.reflink(e,this.tokens.links))e=e.substring(t.raw.length),(n=l[l.length-1])&&"text"===t.type&&"text"===n.type?(n.raw+=t.raw,n.text+=t.text):l.push(t);else if(t=this.tokenizer.emStrong(e,c,a))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.codespan(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.br(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.del(e))e=e.substring(t.raw.length),l.push(t);else if(t=this.tokenizer.autolink(e,Zf))e=e.substring(t.raw.length),l.push(t);else if(this.state.inLink||!(t=this.tokenizer.url(e,Zf))){if(r=e,this.options.extensions&&this.options.extensions.startInline&&function(){var t=1/0,n=e.slice(1),i=void 0;u.options.extensions.startInline.forEach((function(e){"number"===typeof(i=e.call({lexer:this},n))&&i>=0&&(t=Math.min(t,i))})),t<1/0&&t>=0&&(r=e.substring(0,t+1))}(),t=this.tokenizer.inlineText(r,Gf))e=e.substring(t.raw.length),"_"!==t.raw.slice(-1)&&(a=t.raw.slice(-1)),o=!0,(n=l[l.length-1])&&"text"===n.type?(n.raw+=t.raw,n.text+=t.text):l.push(t);else if(e){var f="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(f);break}throw new Error(f)}}else e=e.substring(t.raw.length),l.push(t);return l}}],[{key:"rules",get:function(){return{block:Qf,inline:Jf}}},{key:"lex",value:function(t,n){return new e(n).lex(t)}},{key:"lexInline",value:function(t,n){return new e(n).inlineTokens(t)}}]),e}(),Xf=function(){function e(t){Nt(this,e),this.options=t||Df}return Bt(e,[{key:"code",value:function(e,t,n){var r=(t||"").match(/\S*/)[0];if(this.options.highlight){var i=this.options.highlight(e,r);null!=i&&i!==e&&(n=!0,e=i)}return e=e.replace(/\n$/,"")+"\n",r?'
    '+(n?e:Af(e,!0))+"
    \n":"
    "+(n?e:Af(e,!0))+"
    \n"}},{key:"blockquote",value:function(e){return"
    \n".concat(e,"
    \n")}},{key:"html",value:function(e){return e}},{key:"heading",value:function(e,t,n,r){if(this.options.headerIds){var i=this.options.headerPrefix+r.slug(n);return"').concat(e,"\n")}return"").concat(e,"\n")}},{key:"hr",value:function(){return this.options.xhtml?"
    \n":"
    \n"}},{key:"list",value:function(e,t,n){var r=t?"ol":"ul";return"<"+r+(t&&1!==n?' start="'+n+'"':"")+">\n"+e+"\n"}},{key:"listitem",value:function(e){return"
  • ".concat(e,"
  • \n")}},{key:"checkbox",value:function(e){return" "}},{key:"paragraph",value:function(e){return"

    ".concat(e,"

    \n")}},{key:"table",value:function(e,t){return t&&(t="".concat(t,"")),"\n\n"+e+"\n"+t+"
    \n"}},{key:"tablerow",value:function(e){return"\n".concat(e,"\n")}},{key:"tablecell",value:function(e,t){var n=t.header?"th":"td";return(t.align?"<".concat(n,' align="').concat(t.align,'">'):"<".concat(n,">"))+e+"\n")}},{key:"strong",value:function(e){return"".concat(e,"")}},{key:"em",value:function(e){return"".concat(e,"")}},{key:"codespan",value:function(e){return"".concat(e,"")}},{key:"br",value:function(){return this.options.xhtml?"
    ":"
    "}},{key:"del",value:function(e){return"".concat(e,"")}},{key:"link",value:function(e,t,n){if(null===(e=If(this.options.sanitize,this.options.baseUrl,e)))return n;var r='
    "}},{key:"image",value:function(e,t,n){if(null===(e=If(this.options.sanitize,this.options.baseUrl,e)))return n;var r='').concat(n,'":">"}},{key:"text",value:function(e){return e}}]),e}(),ed=function(){function e(){Nt(this,e)}return Bt(e,[{key:"strong",value:function(e){return e}},{key:"em",value:function(e){return e}},{key:"codespan",value:function(e){return e}},{key:"del",value:function(e){return e}},{key:"html",value:function(e){return e}},{key:"text",value:function(e){return e}},{key:"link",value:function(e,t,n){return""+n}},{key:"image",value:function(e,t,n){return""+n}},{key:"br",value:function(){return""}}]),e}(),td=function(){function e(){Nt(this,e),this.seen={}}return Bt(e,[{key:"serialize",value:function(e){return e.toLowerCase().trim().replace(/<[!\/a-z].*?>/gi,"").replace(/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,./:;<=>?@[\]^`{|}~]/g,"").replace(/\s/g,"-")}},{key:"getNextSafeSlug",value:function(e,t){var n=e,r=0;if(this.seen.hasOwnProperty(n)){r=this.seen[e];do{n=e+"-"+ ++r}while(this.seen.hasOwnProperty(n))}return t||(this.seen[e]=r,this.seen[n]=0),n}},{key:"slug",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=this.serialize(e);return this.getNextSafeSlug(n,t.dryrun)}}]),e}(),nd=function(){function e(t){Nt(this,e),this.options=t||Df,this.options.renderer=this.options.renderer||new Xf,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new ed,this.slugger=new td}return Bt(e,[{key:"parse",value:function(e){var t,n,r,i,o,a,u,l,c,s,f,d,h,p,v,m,y,g,_,b=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],D="",w=e.length;for(t=0;t0&&"paragraph"===v.tokens[0].type?(v.tokens[0].text=g+" "+v.tokens[0].text,v.tokens[0].tokens&&v.tokens[0].tokens.length>0&&"text"===v.tokens[0].tokens[0].type&&(v.tokens[0].tokens[0].text=g+" "+v.tokens[0].tokens[0].text)):v.tokens.unshift({type:"text",text:g}):p+=g),p+=this.parse(v.tokens,h),c+=this.renderer.listitem(p,y,m);D+=this.renderer.list(c,f,d);continue;case"html":D+=this.renderer.html(s.text);continue;case"paragraph":D+=this.renderer.paragraph(this.parseInline(s.tokens));continue;case"text":for(c=s.tokens?this.parseInline(s.tokens):s.text;t+1An error occurred:

    "+Af(e.message+"",!0)+"
    ";throw e}try{var l=Kf.lex(e,t);if(t.walkTokens){if(t.async)return Promise.all(rd.walkTokens(l,t.walkTokens)).then((function(){return nd.parse(l,t)})).catch(u);rd.walkTokens(l,t.walkTokens)}return nd.parse(l,t)}catch(s){u(s)}}rd.options=rd.setOptions=function(e){var t;return $f(rd.defaults,e),t=rd.defaults,Df=t,rd},rd.getDefaults=bf,rd.defaults=Df,rd.use=function(){for(var e=rd.defaults.extensions||{renderers:{},childTokens:{}},t=arguments.length,n=new Array(t),r=0;rAn error occurred:

    "+Af(s.message+"",!0)+"
    ";throw s}},rd.Parser=nd,rd.parser=nd.parse,rd.Renderer=Xf,rd.TextRenderer=ed,rd.Lexer=Kf,rd.lexer=Kf.lex,rd.Tokenizer=Wf,rd.Slugger=td,rd.parse=rd;rd.options,rd.setOptions,rd.use,rd.walkTokens,rd.parseInline,nd.parse,Kf.lex;var id=function(e){var t=e.title,n=e.description,r=e.unit,i=e.expr,o=e.showLegend,a=e.filename,u=e.alias,l=ci(),c=l.period,s=l.duration,f=si(),d=Ys(s),h=ie(null),p=At(ee(!0),2),v=p[0],m=p[1],g=At(ee(c.step||"1s"),2),_=g[0],b=g[1],D=At(ee({limits:{enable:!1,range:{1:[0,0]}}}),2),w=D[0],x=D[1],k=ae((function(){return Array.isArray(i)&&i.every((function(e){return e}))}),[i]),C=Ks({predefinedQuery:k?i:[],display:"chart",visible:v,customStep:_}),E=C.isLoading,S=C.graphData,A=C.error,F=C.warning,N=function(e){var t=or({},w);t.limits.range=e,x(t)};if(ne((function(){var e=new IntersectionObserver((function(e){e.forEach((function(e){return m(e.isIntersecting)}))}),{threshold:.1});return h.current&&e.observe(h.current),function(){h.current&&e.unobserve(h.current)}}),[]),ne((function(){s!==d&&d&&_&&b(c.step||"1s")}),[s,d]),!k)return xr(Ao,{variant:"error",children:[xr("code",{children:'"expr"'})," not found. Check the configuration file ",xr("b",{children:a}),"."]});var O=function(){return xr("div",{className:"vm-predefined-panel-header__description vm-default-styles",children:[n&&xr(y,{children:[xr("div",{children:[xr("span",{children:"Description:"}),xr("div",{dangerouslySetInnerHTML:{__html:rd.parse(n)}})]}),xr("hr",{})]}),xr("div",{children:[xr("span",{children:"Queries:"}),xr("div",{children:i.map((function(e,t){return xr("div",{children:e},"".concat(t,"_").concat(e))}))})]})]})};return xr("div",{className:"vm-predefined-panel",ref:h,children:[xr("div",{className:"vm-predefined-panel-header",children:[xr(Io,{title:xr(O,{}),children:xr("div",{className:"vm-predefined-panel-header__info",children:xr(wi,{})})}),xr("h3",{className:"vm-predefined-panel-header__title",children:t||""}),xr("div",{className:"vm-predefined-panel-header__step",children:xr(js,{defaultStep:c.step,value:_,setStep:b})}),xr(nf,{yaxis:w,setYaxisLimits:N,toggleEnableLimits:function(){var e=or({},w);e.limits.enable=!e.limits.enable,x(e)}})]}),xr("div",{className:"vm-predefined-panel-body",children:[E&&xr(rf,{}),A&&xr(Ao,{variant:"error",children:A}),F&&xr(Ao,{variant:"warning",children:F}),S&&xr(Ls,{data:S,period:c,customStep:_,query:i,yaxis:w,unit:r,alias:u,showLegend:o,setYaxisLimits:N,setPeriod:function(e){var t=e.from,n=e.to;f({type:"SET_PERIOD",payload:{from:t,to:n}})},fullWidth:!1})]})]})},od=function(e){var t=e.index,n=e.title,r=e.panels,i=e.filename,o=Xi(document.body),a=ae((function(){return o.width/12}),[o]),u=At(ee(!t),2),l=u[0],c=u[1],s=At(ee([]),2),f=s[0],d=s[1];ne((function(){d(r&&r.map((function(e){return e.width||12})))}),[r]);var h=At(ee({start:0,target:0,enable:!1}),2),p=h[0],v=h[1],m=function(e){if(p.enable){var t=p.start,n=Math.ceil((t-e.clientX)/a);if(!(Math.abs(n)>=12)){var r=f.map((function(e,t){return e-(t===p.target?n:0)}));d(r)}}},y=function(){v(or(or({},p),{},{enable:!1}))},g=function(e){return function(t){!function(e,t){v({start:e.clientX,target:t,enable:!0})}(t,e)}};return ne((function(){return window.addEventListener("mousemove",m),window.addEventListener("mouseup",y),function(){window.removeEventListener("mousemove",m),window.removeEventListener("mouseup",y)}}),[p]),xr("div",{className:"vm-predefined-dashboard",children:xr(na,{defaultExpanded:l,onChange:function(e){return c(e)},title:xr((function(){return xr("div",{className:Gi()({"vm-predefined-dashboard-header":!0,"vm-predefined-dashboard-header_open":l}),children:[(n||i)&&xr("span",{className:"vm-predefined-dashboard-header__title",children:n||"".concat(t+1,". ").concat(i)}),r&&xr("span",{className:"vm-predefined-dashboard-header__count",children:["(",r.length," panels)"]})]})}),{}),children:xr("div",{className:"vm-predefined-dashboard-panels",children:Array.isArray(r)&&r.length?r.map((function(e,t){return xr("div",{className:"vm-predefined-dashboard-panels-panel vm-block vm-block_empty-padding",style:{gridColumn:"span ".concat(f[t])},children:[xr(id,{title:e.title,description:e.description,unit:e.unit,expr:e.expr,alias:e.alias,filename:i,showLegend:e.showLegend}),xr("button",{className:"vm-predefined-dashboard-panels-panel__resizer",onMouseDown:g(t)})]},t)})):xr("div",{className:"vm-predefined-dashboard-panels-panel__alert",children:xr(Ao,{variant:"error",children:[xr("code",{children:'"panels"'})," not found. Check the configuration file ",xr("b",{children:i}),"."]})})})})})},ad=function(){!function(){var e=ci(),t=e.duration,n=e.relativeTime,r=e.period,i=r.date,o=r.step,a=function(){var e,r=pf((rr(e={},"g0.range_input",t),rr(e,"g0.end_input",i),rr(e,"g0.step_input",o),rr(e,"g0.relative_time",n),e));gr(r)};ne(a,[t,n,i,o]),ne(a,[])}();var e=At(ee([]),2),t=e[0],n=e[1],r=At(ee("0"),2),i=r[0],o=r[1],a=ae((function(){return t.map((function(e,t){return{label:e.title||"",value:"".concat(t),className:"vm-predefined-panels-tabs__tab"}}))}),[t]),u=ae((function(){return t[+i]||{}}),[t,i]),l=ae((function(){return null===u||void 0===u?void 0:u.rows}),[u]),c=ae((function(){return u.title||u.filename||""}),[u]),s=ae((function(){return Array.isArray(l)&&!!l.length}),[l]);return ne((function(){_f().then((function(e){return e.length&&n(e)}))}),[]),xr("div",{className:"vm-predefined-panels",children:[!t.length&&xr(Ao,{variant:"info",children:"Dashboards not found"}),a.length>1&&xr("div",{className:"vm-predefined-panels-tabs vm-block vm-block_empty-padding",children:xr(eo,{activeItem:i,items:a,onChange:function(e){o(e)}})}),xr("div",{className:"vm-predefined-panels__dashboards",children:[s&&l.map((function(e,t){return xr(od,{index:t,filename:c,title:e.title,panels:e.panels},"".concat(i,"_").concat(t))})),!!t.length&&!s&&xr(Ao,{variant:"error",children:[xr("code",{children:'"rows"'})," not found. Check the configuration file ",xr("b",{children:c}),"."]})]})]})},ud=function(e,t){var n=t.match?"&match[]="+encodeURIComponent(t.match):"",r=t.focusLabel?"&focusLabel="+encodeURIComponent(t.focusLabel):"";return"".concat(e,"/api/v1/status/tsdb?topN=").concat(t.topN,"&date=").concat(t.date).concat(n).concat(r)},ld=function(){function e(){Nt(this,e),this.tsdbStatus=void 0,this.tabsNames=void 0,this.tsdbStatus=this.defaultTSDBStatus,this.tabsNames=["table","graph"]}return Bt(e,[{key:"tsdbStatusData",get:function(){return this.tsdbStatus},set:function(e){this.tsdbStatus=e}},{key:"defaultTSDBStatus",get:function(){return{totalSeries:0,totalLabelValuePairs:0,seriesCountByMetricName:[],seriesCountByLabelName:[],seriesCountByFocusLabelValue:[],seriesCountByLabelValuePair:[],labelValueCountByLabelName:[]}}},{key:"keys",value:function(e){var t=[];return e&&(t=t.concat("seriesCountByFocusLabelValue")),t=t.concat("seriesCountByMetricName","seriesCountByLabelName","seriesCountByLabelValuePair","labelValueCountByLabelName"),t}},{key:"defaultState",get:function(){var e=this;return this.keys("job").reduce((function(t,n){return or(or({},t),{},{tabs:or(or({},t.tabs),{},rr({},n,e.tabsNames)),containerRefs:or(or({},t.containerRefs),{},rr({},n,ie(null))),defaultActiveTab:or(or({},t.defaultActiveTab),{},rr({},n,0))})}),{tabs:{},containerRefs:{},defaultActiveTab:{}})}},{key:"sectionsTitles",value:function(e){return{seriesCountByMetricName:"Metric names with the highest number of series",seriesCountByLabelName:"Labels with the highest number of series",seriesCountByFocusLabelValue:'Values for "'.concat(e,'" label with the highest number of series'),seriesCountByLabelValuePair:"Label=value pairs with the highest number of series",labelValueCountByLabelName:"Labels with the highest number of unique values"}}},{key:"tablesHeaders",get:function(){return{seriesCountByMetricName:cd,seriesCountByLabelName:sd,seriesCountByFocusLabelValue:fd,seriesCountByLabelValuePair:dd,labelValueCountByLabelName:hd}}},{key:"totalSeries",value:function(e){return"labelValueCountByLabelName"===e?-1:this.tsdbStatus.totalSeries}}]),e}(),cd=[{id:"name",label:"Metric name"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{id:"action",label:"Action"}],sd=[{id:"name",label:"Label name"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{id:"action",label:"Action"}],fd=[{id:"name",label:"Label value"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{disablePadding:!1,id:"action",label:"Action",numeric:!1}],dd=[{id:"name",label:"Label=value pair"},{id:"value",label:"Number of series"},{id:"percentage",label:"Percent of series"},{id:"action",label:"Action"}],hd=[{id:"name",label:"Label name"},{id:"value",label:"Number of unique values"},{id:"action",label:"Action"}],pd={seriesCountByMetricName:function(e,t){return vd("__name__",t)},seriesCountByLabelName:function(e,t){return"{".concat(t,'!=""}')},seriesCountByFocusLabelValue:function(e,t){return vd(e,t)},seriesCountByLabelValuePair:function(e,t){var n=t.split("="),r=n[0],i=n.slice(1).join("=");return vd(r,i)},labelValueCountByLabelName:function(e,t){return"{".concat(t,'!=""}')}},vd=function(e,t){return e?"{"+e+"="+JSON.stringify(t)+"}":""},md=function(e){var t=e.topN,n=e.error,r=e.query,i=e.onSetHistory,o=e.onRunQuery,a=e.onSetQuery,u=e.onTopNChange,l=e.onFocusLabelChange,c=e.totalSeries,s=e.totalLabelValuePairs,f=e.date,d=e.match,h=e.focusLabel,p=vi().autocomplete,v=mi(),m=of().queryOptions,y=ae((function(){return t<1?"Number must be bigger than zero":""}),[t]);return xr("div",{className:"vm-cardinality-configurator vm-block",children:[xr("div",{className:"vm-cardinality-configurator-controls",children:[xr("div",{className:"vm-cardinality-configurator-controls__query",children:xr(zs,{value:r||d||"",autocomplete:p,options:m,error:n,onArrowUp:function(){i(-1)},onArrowDown:function(){i(1)},onEnter:o,onChange:a,label:"Time series selector"})}),xr("div",{className:"vm-cardinality-configurator-controls__item",children:xr(Go,{label:"Number of entries per table",type:"number",value:t,error:y,onChange:u})}),xr("div",{className:"vm-cardinality-configurator-controls__item",children:xr(Go,{label:"Focus label",type:"text",value:h||"",onChange:l})}),xr("div",{className:"vm-cardinality-configurator-controls__item",children:xr(Hs,{label:"Autocomplete",value:p,onChange:function(){v({type:"TOGGLE_AUTOCOMPLETE"})}})})]}),xr("div",{className:"vm-cardinality-configurator-bottom",children:[xr("div",{className:"vm-cardinality-configurator-bottom__info",children:["Analyzed ",xr("b",{children:c})," series with ",xr("b",{children:s}),' "label=value" pairs at ',xr("b",{children:f}),d&&xr("span",{children:[" for series selector ",xr("b",{children:d})]}),". Show top ",t," entries per table."]}),xr(To,{startIcon:xr(Ii,{}),onClick:o,children:"Execute Query"})]})]})};function yd(e){var t=e.order,n=e.orderBy,r=e.onRequestSort,i=e.headerCells;return xr("thead",{className:"vm-table-header",children:xr("tr",{className:"vm-table__row vm-table__row_header",children:i.map((function(e){return xr("th",{className:Gi()({"vm-table-cell vm-table-cell_header":!0,"vm-table-cell_sort":"action"!==e.id&&"percentage"!==e.id,"vm-table-cell_right":"action"===e.id}),onClick:(i=e.id,function(e){r(e,i)}),children:xr("div",{className:"vm-table-cell__content",children:[e.label,"action"!==e.id&&"percentage"!==e.id&&xr("div",{className:Gi()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":n===e.id,"vm-table__sort-icon_desc":"desc"===t&&n===e.id}),children:xr(Ai,{})})]})},e.id);var i}))})})}function gd(e,t,n){return t[n]e[n]?1:0}function _d(e,t){return"desc"===e?function(e,n){return gd(e,n,t)}:function(e,n){return-gd(e,n,t)}}function bd(e,t){var n=e.map((function(e,t){return[e,t]}));return n.sort((function(e,n){var r=t(e[0],n[0]);return 0!==r?r:e[1]-n[1]})),n.map((function(e){return e[0]}))}var Dd=function(e){var t=e.rows,n=e.headerCells,r=e.defaultSortColumn,i=e.tableCells,o=At(ee("desc"),2),a=o[0],u=o[1],l=At(ee(r),2),c=l[0],s=l[1],f=At(ee([]),2),d=f[0],h=f[1],p=function(e){return function(){var t=d.indexOf(e),n=[];-1===t?n=n.concat(d,e):0===t?n=n.concat(d.slice(1)):t===d.length-1?n=n.concat(d.slice(0,-1)):t>0&&(n=n.concat(d.slice(0,t),d.slice(t+1))),h(n)}},v=bd(t,_d(a,c));return xr("table",{className:"vm-table",children:[xr(yd,{numSelected:d.length,order:a,orderBy:c,onSelectAllClick:function(e){if(e.target.checked){var n=t.map((function(e){return e.name}));h(n)}else h([])},onRequestSort:function(e,t){u(c===t&&"asc"===a?"desc":"asc"),s(t)},rowCount:t.length,headerCells:n}),xr("tbody",{className:"vm-table-header",children:v.map((function(e){return xr("tr",{className:Gi()({"vm-table__row":!0,"vm-table__row_selected":(t=e.name,-1!==d.indexOf(t))}),onClick:p(e.name),children:i(e)},e.name);var t}))})]})},wd=function(e){var t=e.row,n=e.totalSeries,r=e.onActionClick,i=n>0?t.value/n*100:-1;return xr(y,{children:[xr("td",{className:"vm-table-cell",children:t.name},t.name),xr("td",{className:"vm-table-cell",children:t.value},t.value),i>0&&xr("td",{className:"vm-table-cell",children:xr(af,{value:i})},t.progressValue),xr("td",{className:"vm-table-cell vm-table-cell_right",children:xr("div",{className:"vm-table-cell__content",children:xr(Io,{title:"Filter by ".concat(t.name),children:xr(To,{variant:"text",size:"small",onClick:function(){r(t.name)},children:xr(Li,{})})})})},"action")]})},xd=function(e){var t=e.data,n=e.container,r=e.configs,i=ie(null),o=At(ee(),2),a=o[0],u=o[1],l=Xi(n),c=or(or({},r),{},{width:l.width||400});return ne((function(){if(i.current){var e=new ls(c,t,i.current);return u(e),e.destroy}}),[i.current,l]),ne((function(){a&&a.setData(t)}),[t]),xr("div",{style:{height:"100%"},children:xr("div",{ref:i})})},kd=function(e,t){return Math.round(e*(t=Math.pow(10,t)))/t},Cd=1,Ed=function(e,t,n,r){return kd(t+e*(n+r),6)},Sd=function(e,t,n,r,i){var o=1-t,a=n===Cd?o/(e-1):2===n?o/e:3===n?o/(e+1):0;(isNaN(a)||a===1/0)&&(a=0);var u=n===Cd?0:2===n?a/2:3===n?a:0,l=t/e,c=kd(l,6);if(null==r)for(var s=0;s=n&&e<=i&&t>=r&&t<=o};function Fd(e,t,n,r,i){var o=this;o.x=e,o.y=t,o.w=n,o.h=r,o.l=i||0,o.o=[],o.q=null}var Nd={split:function(){var e=this,t=e.x,n=e.y,r=e.w/2,i=e.h/2,o=e.l+1;e.q=[new Fd(t+r,n,r,i,o),new Fd(t,n,r,i,o),new Fd(t,n+i,r,i,o),new Fd(t+r,n+i,r,i,o)]},quads:function(e,t,n,r,i){var o=this,a=o.q,u=o.x+o.w/2,l=o.y+o.h/2,c=tu,d=t+r>l;c&&f&&i(a[0]),s&&c&&i(a[1]),s&&d&&i(a[2]),f&&d&&i(a[3])},add:function(e){var t=this;if(null!=t.q)t.quads(e.x,e.y,e.w,e.h,(function(t){t.add(e)}));else{var n=t.o;if(n.push(e),n.length>10&&t.l<4){t.split();for(var r=function(e){var r=n[e];t.quads(r.x,r.y,r.w,r.h,(function(e){e.add(r)}))},i=0;i=0?"left":"right",e.ctx.textBaseline=1===s?"middle":i[n]>=0?"bottom":"top",e.ctx.fillText(i[n],f,g)}}))})),e.ctx.restore()}function b(e,t,n){return[0,ls.rangeNum(0,n,.05,!0)[1]]}return{hooks:{drawClear:function(t){var n;if((y=y||new Fd(0,0,t.bbox.width,t.bbox.height)).clear(),t.series.forEach((function(e){e._paths=null})),l=d?[null].concat(m(t.data.length-1-o.length,t.data[0].length)):2===t.series.length?[null].concat(m(t.data[0].length,1)):[null].concat(function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:h,r=Array.from({length:t},(function(){return{offs:Array(e).fill(0),size:Array(e).fill(0)}}));return Sd(e,n,p,null,(function(e,n,i){Sd(t,1,v,null,(function(t,o,a){r[t].offs[e]=n+i*o,r[t].size[e]=i*a}))})),r}(t.data[0].length,t.data.length-1-o.length,1===t.data[0].length?1:h)),null!=(null===(n=e.disp)||void 0===n?void 0:n.fill)){c=[null];for(var r=1;r0&&!o.includes(t)&&ls.assign(e,{paths:g,points:{show:_}})}))}}}((Od=[1],Td=0,Md=1,Bd=0,Id=function(e,t){return{stroke:e,fill:t}}({unit:3,values:function(e){return e.data[1].map((function(e,t){return 0!==t?"#33BB55":"#F79420"}))}},{unit:3,values:function(e){return e.data[1].map((function(e,t){return 0!==t?"#33BB55":"#F79420"}))}}),{which:Od,ori:Td,dir:Md,radius:Bd,disp:Id}))]},Pd=function(e){var t=e.rows,n=e.activeTab,r=e.onChange,i=e.tabs,o=e.chartContainer,a=e.totalSeries,u=e.tabId,l=e.onActionClick,c=e.sectionTitle,s=e.tableHeaderCells,f=ae((function(){return i.map((function(e,t){return{value:String(t),label:e,icon:xr(0===t?zi:Pi,{})}}))}),[i]);return xr("div",{className:"vm-metrics-content vm-block",children:[xr("div",{className:"vm-metrics-content-header vm-section-header",children:[xr("h5",{className:"vm-section-header__title",children:c}),xr("div",{className:"vm-section-header__tabs",children:xr(eo,{activeItem:String(n),items:f,onChange:function(e){r(e,u)}})})]}),xr("div",{ref:o,children:[0===n&&xr(Dd,{rows:t,headerCells:s,defaultSortColumn:"value",tableCells:function(e){return xr(wd,{row:e,totalSeries:a,onActionClick:l})}}),1===n&&xr(xd,{data:[t.map((function(e){return e.name})),t.map((function(e){return e.value})),t.map((function(e,t){return t%12==0?1:t%10==0?2:0}))],container:(null===o||void 0===o?void 0:o.current)||null,configs:Ld})]})]})},zd=function(){var e=bo(),t=e.topN,n=e.match,r=e.date,i=e.focusLabel,o=Do();!function(){var e=bo(),t=e.topN,n=e.match,r=e.date,i=e.focusLabel,o=e.extraLabel,a=function(){var e=pf({topN:t,date:r,match:n,extraLabel:o,focusLabel:i});gr(e)};ne(a,[t,n,r,i,o]),ne(a,[])}();var a=At(ee(n||""),2),u=a[0],l=a[1],c=At(ee(0),2),s=c[0],f=c[1],d=At(ee([]),2),h=d[0],p=d[1],v=function(){var e=new ld,t=bo(),n=t.topN,r=t.extraLabel,i=t.match,o=t.date,a=t.runQuery,u=t.focusLabel,l=Cr().serverUrl,c=At(ee(!1),2),s=c[0],f=c[1],d=At(ee(),2),h=d[0],p=d[1],v=At(ee(e.defaultTSDBStatus),2),m=v[0],y=v[1];ne((function(){h&&(y(e.defaultTSDBStatus),f(!1))}),[h]);var g=function(){var t=Es(ks().mark((function t(n){var r,i,o,a;return ks().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(l){t.next=2;break}return t.abrupt("return");case 2:return p(""),f(!0),y(e.defaultTSDBStatus),r=ud(l,n),t.prev=6,t.next=9,fetch(r);case 9:return i=t.sent,t.next=12,i.json();case 12:o=t.sent,i.ok?(a=o.data,y(or({},a)),f(!1)):(p(o.error),y(e.defaultTSDBStatus),f(!1)),t.next=20;break;case 16:t.prev=16,t.t0=t.catch(6),f(!1),t.t0 instanceof Error&&p("".concat(t.t0.name,": ").concat(t.t0.message));case 20:case"end":return t.stop()}}),t,null,[[6,16]])})));return function(e){return t.apply(this,arguments)}}();return ne((function(){g({topN:n,extraLabel:r,match:i,date:o,focusLabel:u})}),[l,a,o]),e.tsdbStatusData=m,{isLoading:s,appConfigurator:e,error:h}}(),m=v.isLoading,y=v.appConfigurator,g=v.error,_=At(ee(y.defaultState.defaultActiveTab),2),b=_[0],D=_[1],w=y.tsdbStatusData,x=y.defaultState,k=y.tablesHeaders,C=function(e,t){D(or(or({},b),{},rr({},t,+e)))};return xr("div",{className:"vm-cardinality-panel",children:[m&&xr(rf,{message:"Please wait while cardinality stats is calculated. \n This may take some time if the db contains big number of time series."}),xr(md,{error:"",query:u,topN:t,date:r,match:n,totalSeries:w.totalSeries,totalLabelValuePairs:w.totalLabelValuePairs,focusLabel:i,onRunQuery:function(){p((function(e){return[].concat(Ft(e),[u])})),f((function(e){return e+1})),o({type:"SET_MATCH",payload:u}),o({type:"RUN_QUERY"})},onSetQuery:function(e){l(e)},onSetHistory:function(e){var t=s+e;t<0||t>=h.length||(f(t),l(h[t]))},onTopNChange:function(e){o({type:"SET_TOP_N",payload:+e})},onFocusLabelChange:function(e){o({type:"SET_FOCUS_LABEL",payload:e})}}),g&&xr(Ao,{variant:"error",children:g}),y.keys(i).map((function(e){return xr(Pd,{sectionTitle:y.sectionsTitles(i)[e],activeTab:b[e],rows:w[e],onChange:C,onActionClick:(t=e,function(e){var n=pd[t](i,e);l(n),p((function(e){return[].concat(Ft(e),[n])})),f((function(e){return e+1})),o({type:"SET_MATCH",payload:n});var r="";"labelValueCountByLabelName"!==t&&"seriesCountByLabelName"!=t||(r=e),o({type:"SET_FOCUS_LABEL",payload:r}),o({type:"RUN_QUERY"})}),tabs:x.tabs[e],chartContainer:x.containerRefs[e],totalSeries:y.totalSeries(e),tabId:e,tableHeaderCells:k[e]},e);var t}))]})},jd=function(e){var t=e.rows,n=e.columns,r=At(ee(e.defaultOrderBy||"count"),2),i=r[0],o=r[1],a=At(ee("desc"),2),u=a[0],l=a[1],c=ae((function(){return bd(t,_d(u,i))}),[t,i,u]),s=function(e){return function(){var t;t=e,l((function(e){return"asc"===e&&i===t?"desc":"asc"})),o(t)}};return xr("table",{className:"vm-table",children:[xr("thead",{className:"vm-table-header",children:xr("tr",{className:"vm-table__row vm-table__row_header",children:n.map((function(e){return xr("th",{className:"vm-table-cell vm-table-cell_header vm-table-cell_sort",onClick:s(e.key),children:xr("div",{className:"vm-table-cell__content",children:[e.title||e.key,xr("div",{className:Gi()({"vm-table__sort-icon":!0,"vm-table__sort-icon_active":i===e.key,"vm-table__sort-icon_desc":"desc"===u&&i===e.key}),children:xr(Ai,{})})]})},e.key)}))})}),xr("tbody",{className:"vm-table-body",children:c.map((function(e,t){return xr("tr",{className:"vm-table__row",children:n.map((function(t){return xr("td",{className:"vm-table-cell",children:e[t.key]||"-"},t.key)}))},t)}))})]})},Rd=["table","JSON"].map((function(e,t){return{value:String(t),label:e,icon:xr(0===t?zi:ji,{})}})),$d=function(e){var t=e.rows,n=e.title,r=e.columns,i=e.defaultOrderBy,o=At(ee(0),2),a=o[0],u=o[1];return xr("div",{className:"vm-top-queries-panel vm-block",children:[xr("div",{className:"vm-top-queries-panel-header vm-section-header",children:[xr("h5",{className:"vm-section-header__title",children:n}),xr("div",{className:"vm-section-header__tabs",children:xr(eo,{activeItem:String(a),items:Rd,onChange:function(e){u(+e)}})})]}),xr("div",{children:[0===a&&xr(jd,{rows:t,columns:r,defaultOrderBy:i}),1===a&&xr(Xs,{data:t})]})]})},Ud=function(){var e=function(){var e=Cr().serverUrl,t=Eo(),n=t.topN,r=t.maxLifetime,i=t.runQuery,o=At(ee(null),2),a=o[0],u=o[1],l=At(ee(!1),2),c=l[0],s=l[1],f=At(ee(),2),d=f[0],h=f[1],p=ae((function(){return function(e,t,n){return"".concat(e,"/api/v1/status/top_queries?topN=").concat(t||"","&maxLifetime=").concat(n||"")}(e,n,r)}),[e,n,r]),v=function(){var e=Es(ks().mark((function e(){var t,n;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return s(!0),e.prev=1,e.next=4,fetch(p);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,t.ok&&["topByAvgDuration","topByCount","topBySumDuration"].forEach((function(e){var t=n[e];Array.isArray(t)&&t.forEach((function(e){return e.timeRangeHours=+(e.timeRangeSeconds/3600).toFixed(2)}))})),u(t.ok?n:null),h(String(n.error||"")),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&"AbortError"!==e.t0.name&&h("".concat(e.t0.name,": ").concat(e.t0.message));case 16:s(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();return ne((function(){v()}),[i]),{data:a,error:d,loading:c}}(),t=e.data,n=e.error,r=e.loading,i=Eo(),o=i.topN,a=i.maxLifetime,u=le(Co).dispatch;!function(){var e=Eo(),t=e.topN,n=e.maxLifetime,r=function(){var e=pf({topN:String(t),maxLifetime:n});gr(e)};ne(r,[t,n]),ne(r,[])}();var l=ae((function(){var e=a.trim().split(" ").reduce((function(e,t){var n=zr(t);return n?or(or({},e),n):or({},e)}),{});return!!_t().duration(e).asMilliseconds()}),[a]),c=ae((function(){return!!o&&o<1}),[o]),s=ae((function(){return c?"Number must be bigger than zero":""}),[c]),f=ae((function(){return l?"":"Invalid duration value"}),[l]),d=function(e){if(!t)return e;var n=t[e];return"number"===typeof n?ds(n):n||e},h=function(){u({type:"SET_RUN_QUERY"})},p=function(e){"Enter"===e.key&&h()};return ne((function(){t&&(o||u({type:"SET_TOP_N",payload:+t.topN}),a||u({type:"SET_MAX_LIFE_TIME",payload:t.maxLifetime}))}),[t]),xr("div",{className:"vm-top-queries",children:[r&&xr(rf,{containerStyles:{height:"500px"}}),xr("div",{className:"vm-top-queries-controls vm-block",children:[xr("div",{className:"vm-top-queries-controls__fields",children:[xr(Go,{label:"Max lifetime",value:a,error:f,helperText:"For example ".concat("30ms, 15s, 3d4h, 1y2w"),onChange:function(e){u({type:"SET_MAX_LIFE_TIME",payload:e})},onKeyDown:p}),xr(Go,{label:"Number of returned queries",type:"number",value:o||"",error:s,onChange:function(e){u({type:"SET_TOP_N",payload:+e})},onKeyDown:p})]}),xr("div",{className:"vm-top-queries-controls-bottom",children:[xr("div",{className:"vm-top-queries-controls-bottom__info",children:["VictoriaMetrics tracks the last\xa0",xr(Io,{title:"search.queryStats.lastQueriesCount",children:xr("b",{children:d("search.queryStats.lastQueriesCount")})}),"\xa0queries with durations at least\xa0",xr(Io,{title:"search.queryStats.minQueryDuration",children:xr("b",{children:d("search.queryStats.minQueryDuration")})})]}),xr("div",{className:"vm-top-queries-controls-bottom__button",children:xr(To,{startIcon:xr(Ii,{}),onClick:h,children:"Execute"})})]})]}),n&&xr(Ao,{variant:"error",children:n}),t&&xr(y,{children:xr("div",{className:"vm-top-queries-panels",children:[xr($d,{rows:t.topByCount,title:"Most frequently executed queries",columns:[{key:"query"},{key:"timeRangeHours",title:"time range, hours"},{key:"count"}]}),xr($d,{rows:t.topByAvgDuration,title:"Most heavy queries",columns:[{key:"query"},{key:"avgDurationSeconds",title:"avg duration, seconds"},{key:"timeRangeHours",title:"time range, hours"},{key:"count"}],defaultOrderBy:"avgDurationSeconds"}),xr($d,{rows:t.topBySumDuration,title:"Queries with most summary time to execute",columns:[{key:"query"},{key:"sumDurationSeconds",title:"sum duration, seconds"},{key:"timeRangeHours",title:"time range, hours"},{key:"count"}],defaultOrderBy:"sumDurationSeconds"})]})})]})},Hd=["primary","secondary","error","warning","info","success"],Yd=function(e){var t=e.setLoadingTheme,n=sr().palette,r=void 0===n?{}:n,i=function(){Hd.forEach((function(e){var t=function(e){var t=e.replace("#","").trim();if(3===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]),6!==t.length)throw new Error("Invalid HEX color.");return(299*parseInt(t.slice(0,2),16)+587*parseInt(t.slice(2,4),16)+114*parseInt(t.slice(4,6),16))/1e3>=128?"#000000":"#FFFFFF"}(Zi("color-".concat(e)));Ki("".concat(e,"-text"),t)}))};return ne((function(){Hd.forEach((function(e){var t=r[e];t&&Ki("color-".concat(e),t)})),function(){var e=window,t=e.innerWidth,n=e.innerHeight,r=document.documentElement,i=r.clientWidth,o=r.clientHeight;Ki("scrollbar-width","".concat(t-i,"px")),Ki("scrollbar-height","".concat(n-o,"px"))}(),i(),t(!1)}),[]),null},Vd=function(){var e=At(ee(!1),2),t=e[0],n=e[1],r=At(ee([]),2),i=r[0],o=r[1],a=At(ee([]),2),u=a[0],l=a[1],c=ae((function(){return!!i.length}),[i]),f=function(){n(!0)},d=function(){n(!1)},h=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";l((function(n){return[{filename:t,text:": ".concat(e.message)}].concat(Ft(n))}))},p=function(e,t){try{var n=JSON.parse(e),r=n.trace||n;if(!r.duration_msec)return void h(new Error(Ho.traceNotFound),t);var i=new Zs(r,t);o((function(e){return[i].concat(Ft(e))}))}catch(s){s instanceof Error&&h(s,t)}},v=function(e){l([]),Array.from(e.target.files||[]).map((function(e){var t=new FileReader,n=(null===e||void 0===e?void 0:e.name)||"";t.onload=function(e){var t,r=String(null===(t=e.target)||void 0===t?void 0:t.result);p(r,n)},t.readAsText(e)})),e.target.value=""},m=function(e){return function(){!function(e){l((function(t){return t.filter((function(t,n){return n!==e}))}))}(e)}};ne((function(){gr({})}),[]);var y=function(){return xr("div",{className:"vm-trace-page-controls",children:[xr(To,{variant:"outlined",onClick:f,children:"Paste JSON"}),xr(Io,{title:"The file must contain tracing information in JSON format",children:xr(To,{children:["Upload Files",xr("input",{id:"json",type:"file",accept:"application/json",multiple:!0,title:" ",onChange:v})]})})]})};return xr("div",{className:"vm-trace-page",children:[xr("div",{className:"vm-trace-page-header",children:[xr("div",{className:"vm-trace-page-header-errors",children:u.map((function(e,t){return xr("div",{className:"vm-trace-page-header-errors-item",children:[xr(Ao,{variant:"error",children:[xr("b",{className:"vm-trace-page-header-errors-item__filename",children:e.filename}),xr("span",{children:e.text})]}),xr(To,{className:"vm-trace-page-header-errors-item__close",startIcon:xr(bi,{}),variant:"text",color:"error",onClick:m(t)})]},"".concat(e,"_").concat(t))}))}),xr("div",{children:c&&xr(y,{})})]}),c&&xr("div",{children:xr(cf,{jsonEditor:!0,traces:i,onDeleteClick:function(e){var t=i.filter((function(t){return t.idValue!==e.idValue}));o(Ft(t))}})}),!c&&xr("div",{className:"vm-trace-page-preview",children:[xr("p",{className:"vm-trace-page-preview__text",children:["Please, upload file with JSON response content.","\n","The file must contain tracing information in JSON format.","\n","In order to use tracing please refer to the doc:\xa0",xr("a",{className:"vm__link vm__link_colored",href:"https://docs.victoriametrics.com/#query-tracing",target:"_blank",rel:"noreferrer",children:"https://docs.victoriametrics.com/#query-tracing"}),"\n","Tracing graph will be displayed after file upload."]}),xr(y,{})]}),t&&xr(Xo,{title:"Paste JSON",onClose:d,children:xr(lf,{editable:!0,displayTitle:!0,defaultTile:"JSON ".concat(i.length+1),onClose:d,onUpload:p})})]})},qd=function(e){var t=Cr().serverUrl,n=ci().period,r=At(ee([]),2),i=r[0],o=r[1],a=At(ee(!1),2),u=a[0],l=a[1],c=At(ee(),2),s=c[0],f=c[1],d=ae((function(){return function(e,t,n){var r="{job=".concat(JSON.stringify(n),"}");return"".concat(e,"/api/v1/label/instance/values?match[]=").concat(encodeURIComponent(r),"&start=").concat(t.start,"&end=").concat(t.end)}(t,n,e)}),[t,n,e]);return ne((function(){if(e){var t=function(){var e=Es(ks().mark((function e(){var t,n,r;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return l(!0),e.prev=1,e.next=4,fetch(d);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,r=n.data||[],o(r.sort((function(e,t){return e.localeCompare(t)}))),t.ok?f(void 0):f("".concat(n.errorType,"\r\n").concat(null===n||void 0===n?void 0:n.error)),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&f("".concat(e.t0.name,": ").concat(e.t0.message));case 16:l(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();t().catch(console.error)}}),[d]),{instances:i,isLoading:u,error:s}},Wd=function(e,t){var n=Cr().serverUrl,r=ci().period,i=At(ee([]),2),o=i[0],a=i[1],u=At(ee(!1),2),l=u[0],c=u[1],s=At(ee(),2),f=s[0],d=s[1],h=ae((function(){return function(e,t,n,r){var i=Object.entries({job:n,instance:r}).filter((function(e){return e[1]})).map((function(e){var t=At(e,2),n=t[0],r=t[1];return"".concat(n,"=").concat(JSON.stringify(r))})).join(","),o="{".concat(i,"}");return"".concat(e,"/api/v1/label/__name__/values?match[]=").concat(encodeURIComponent(o),"&start=").concat(t.start,"&end=").concat(t.end)}(n,r,e,t)}),[n,r,e,t]);return ne((function(){if(e){var t=function(){var e=Es(ks().mark((function e(){var t,n,r;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c(!0),e.prev=1,e.next=4,fetch(h);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,r=n.data||[],a(r.sort((function(e,t){return e.localeCompare(t)}))),t.ok?d(void 0):d("".concat(n.errorType,"\r\n").concat(null===n||void 0===n?void 0:n.error)),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&d("".concat(e.t0.name,": ").concat(e.t0.message));case 16:c(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();t().catch(console.error)}}),[h]),{names:o,isLoading:l,error:f}},Qd=function(e){var t=e.name,n=e.job,r=e.instance,i=e.rateEnabled,o=e.isBucket,a=e.height,u=vo(),l=u.customStep,c=u.yaxis,s=ci().period,f=mo(),d=si(),h=At(ee(!1),2),p=h[0],v=h[1],m=ae((function(){var e=Object.entries({job:n,instance:r}).filter((function(e){return e[1]})).map((function(e){var t=At(e,2),n=t[0],r=t[1];return"".concat(n,"=").concat(JSON.stringify(r))}));e.push("__name__=".concat(JSON.stringify(t))),"node_cpu_seconds_total"==t&&e.push('mode!="idle"');var a="{".concat(e.join(","),"}");if(o)return r?'\nlabel_map(\n histogram_quantiles("__name__", 0.5, 0.95, 0.99, sum(rate('.concat(a,')) by (vmrange, le)),\n "__name__",\n "0.5", "q50",\n "0.95", "q95",\n "0.99", "q99",\n)'):"\nwith (q = histogram_quantile(0.95, sum(rate(".concat(a,')) by (instance, vmrange, le))) (\n alias(min(q), "q95min"),\n alias(max(q), "q95max"),\n alias(avg(q), "q95avg"),\n)');var u=i?"rollup_rate(".concat(a,")"):"rollup(".concat(a,")");return"\nwith (q = ".concat(u,') (\n alias(min(label_match(q, "rollup", "min")), "min"),\n alias(max(label_match(q, "rollup", "max")), "max"),\n alias(avg(label_match(q, "rollup", "avg")), "avg"),\n)')}),[t,n,r,i,o]),y=Ks({predefinedQuery:[m],visible:!0,customStep:l,showAllSeries:p}),g=y.isLoading,_=y.graphData,b=y.error,D=y.warning;return xr("div",{className:"vm-explore-metrics-graph",children:[g&&xr(rf,{}),b&&xr(Ao,{variant:"error",children:b}),D&&xr(Ao,{variant:"warning",children:xr("div",{className:"vm-explore-metrics-graph__warning",children:[xr("p",{children:D}),xr(To,{color:"warning",variant:"outlined",onClick:function(){v(!0)},children:"Show all"})]})}),_&&s&&xr(Ls,{data:_,period:s,customStep:l,query:[m],yaxis:c,setYaxisLimits:function(e){f({type:"SET_YAXIS_LIMITS",payload:e})},setPeriod:function(e){var t=e.from,n=e.to;d({type:"SET_PERIOD",payload:{from:t,to:n}})},showLegend:!1,height:a})]})},Jd=function(e){var t=e.name,n=e.index,r=e.isBucket,i=e.rateEnabled,o=e.onChangeRate,a=e.onRemoveItem,u=e.onChangeOrder;return xr("div",{className:"vm-explore-metrics-item-header",children:[xr("div",{className:"vm-explore-metrics-item-header-order",children:[xr(Io,{title:"move graph up",children:xr(To,{className:"vm-explore-metrics-item-header-order__up",startIcon:xr(Si,{}),variant:"text",color:"gray",size:"small",onClick:function(){u(t,n,n-1)}})}),xr("div",{className:"vm-explore-metrics-item-header__index",children:["#",n+1]}),xr(Io,{title:"move graph down",children:xr(To,{className:"vm-explore-metrics-item-header-order__down",startIcon:xr(Si,{}),variant:"text",color:"gray",size:"small",onClick:function(){u(t,n,n+1)}})})]}),xr("div",{className:"vm-explore-metrics-item-header__name",children:t}),!r&&xr(Io,{title:"calculates the average per-second speed of metric's change",children:xr(Hs,{label:xr("span",{children:["enable ",xr("code",{children:"rate()"})]}),value:i,onChange:o})}),xr("div",{className:"vm-explore-metrics-item-header__layout",children:xr(Io,{title:"close graph",children:xr(To,{startIcon:xr(bi,{}),variant:"text",color:"gray",size:"small",onClick:function(){a(t)}})})})]})},Gd=function(e){var t=e.name,n=e.job,r=e.instance,i=e.index,o=e.size,a=e.onRemoveItem,u=e.onChangeOrder,l=ae((function(){return/_sum?|_total?|_count?/.test(t)}),[t]),c=ae((function(){return/_bucket?/.test(t)}),[t]),s=At(ee(l),2),f=s[0],d=s[1],h=Xi(document.body),p=ae(o.height,[o,h]);return ne((function(){d(l)}),[n]),xr("div",{className:"vm-explore-metrics-item vm-block vm-block_empty-padding",children:[xr(Jd,{name:t,index:i,isBucket:c,rateEnabled:f,size:o.id,onChangeRate:d,onRemoveItem:a,onChangeOrder:u}),xr(Qd,{name:t,job:n,instance:r,rateEnabled:f,isBucket:c,height:p},"".concat(t,"_").concat(n,"_").concat(r,"_").concat(f))]})},Zd=function(e){var t=e.value,n=e.list,r=e.label,i=e.placeholder,o=e.noOptionsText,a=e.clearable,u=void 0!==a&&a,l=e.autofocus,c=e.onChange,s=At(ee(""),2),f=s[0],d=s[1],h=ie(null),p=At(ee(!1),2),v=p[0],m=p[1],y=ie(null),g=ae((function(){return Array.isArray(t)}),[t]),_=ae((function(){return Array.isArray(t)?t:void 0}),[g,t]),b=ae((function(){return v?f:Array.isArray(t)?"":t}),[t,f,v,g]),D=ae((function(){return v?f||"(.+)":""}),[f,v]),w=function(){y.current&&y.current.blur()},x=function(e){c(e),g||(m(!1),w()),g&&y.current&&y.current.focus()},k=function(e){return function(t){x(e),t.stopPropagation()}},C=function(e){y.current!==e.target&&m(!1)};return ne((function(){d(""),v&&y.current&&y.current.focus(),v||w()}),[v,y]),ne((function(){l&&y.current&&y.current.focus()}),[l,y]),ne((function(){return window.addEventListener("keyup",C),function(){window.removeEventListener("keyup",C)}}),[]),xr("div",{className:"vm-select",children:[xr("div",{className:"vm-select-input",onClick:function(e){e.target instanceof HTMLInputElement||m((function(e){return!e}))},ref:h,children:[xr("div",{className:"vm-select-input-content",children:[_&&_.map((function(e){return xr("div",{className:"vm-select-input-content__selected",children:[e,xr("div",{onClick:k(e),children:xr(bi,{})})]},e)})),xr("input",{value:b,type:"text",placeholder:i,onInput:function(e){d(e.target.value)},onFocus:function(){m(!0)},ref:y})]}),r&&xr("span",{className:"vm-text-field__label",children:r}),u&&t&&xr("div",{className:"vm-select-input__icon",onClick:k(""),children:xr(bi,{})}),xr("div",{className:Gi()({"vm-select-input__icon":!0,"vm-select-input__icon_open":v}),children:xr(Ai,{})})]}),xr(Ps,{value:D,options:n,anchor:h,selected:_,maxWords:10,minLength:0,fullWidth:!0,noOptionsText:o,onSelect:x,onOpenAutocomplete:m})]})},Kd=yr.map((function(e){return e.id})),Xd=function(e){var t=e.jobs,n=e.instances,r=e.names,i=e.job,o=e.instance,a=e.size,u=e.selectedMetrics,l=e.onChangeJob,c=e.onChangeInstance,s=e.onToggleMetric,f=e.onChangeSize,d=ci(),h=d.period.step,p=d.duration,v=vo().customStep,m=mo(),y=Ys(p),g=ae((function(){return i?"":"No instances. Please select job"}),[i]),_=ae((function(){return i?"":"No metric names. Please select job"}),[i]),b=function(e){m({type:"SET_CUSTOM_STEP",payload:e})};return ne((function(){p!==y&&y&&v&&b(h||"1s")}),[p,y]),ne((function(){!v&&h&&b(h)}),[h]),xr("div",{className:"vm-explore-metrics-header vm-block",children:[xr("div",{className:"vm-explore-metrics-header__job",children:xr(Zd,{value:i,list:t,label:"Job",placeholder:"Please select job",onChange:l,autofocus:!i})}),xr("div",{className:"vm-explore-metrics-header__instance",children:xr(Zd,{value:o,list:n,label:"Instance",placeholder:"Please select instance",onChange:c,noOptionsText:g,clearable:!0})}),xr("div",{className:"vm-explore-metrics-header__step",children:xr(js,{defaultStep:h,setStep:b,value:v})}),xr("div",{className:"vm-explore-metrics-header__size",children:xr(Zd,{label:"Size graphs",value:a,list:Kd,onChange:f})}),xr("div",{className:"vm-explore-metrics-header-metrics",children:xr(Zd,{value:u,list:r,placeholder:"Search metric name",onChange:s,noOptionsText:_,clearable:!0})})]})},eh=_r("job",""),th=_r("instance",""),nh=_r("metrics",""),rh=_r("size",""),ih=yr.find((function(e){return rh?e.id===rh:e.isDefault}))||yr[0],oh=function(){var e=At(ee(eh),2),t=e[0],n=e[1],r=At(ee(th),2),i=r[0],o=r[1],a=At(ee(nh?nh.split("&"):[]),2),u=a[0],l=a[1],c=At(ee(ih),2),s=c[0],f=c[1];!function(e){var t=e.job,n=e.instance,r=e.metrics,i=e.size,o=ci(),a=o.duration,u=o.relativeTime,l=o.period,c=l.date,s=l.step,f=function(){var e,o=pf((rr(e={},"g0.range_input",a),rr(e,"g0.end_input",c),rr(e,"g0.step_input",s),rr(e,"g0.relative_time",u),rr(e,"size",i),rr(e,"job",t),rr(e,"instance",n),rr(e,"metrics",r),e));gr(o)};ne(f,[a,u,c,s,t,n,r,i]),ne(f,[])}({job:t,instance:i,metrics:u.join("&"),size:s.id});var d=function(){var e=Cr().serverUrl,t=ci().period,n=At(ee([]),2),r=n[0],i=n[1],o=At(ee(!1),2),a=o[0],u=o[1],l=At(ee(),2),c=l[0],s=l[1],f=ae((function(){return function(e,t){return"".concat(e,"/api/v1/label/job/values?start=").concat(t.start,"&end=").concat(t.end)}(e,t)}),[e,t]);return ne((function(){var e=function(){var e=Es(ks().mark((function e(){var t,n,r;return ks().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return u(!0),e.prev=1,e.next=4,fetch(f);case 4:return t=e.sent,e.next=7,t.json();case 7:n=e.sent,r=n.data||[],i(r.sort((function(e,t){return e.localeCompare(t)}))),t.ok?s(void 0):s("".concat(n.errorType,"\r\n").concat(null===n||void 0===n?void 0:n.error)),e.next=16;break;case 13:e.prev=13,e.t0=e.catch(1),e.t0 instanceof Error&&s("".concat(e.t0.name,": ").concat(e.t0.message));case 16:u(!1);case 17:case"end":return e.stop()}}),e,null,[[1,13]])})));return function(){return e.apply(this,arguments)}}();e().catch(console.error)}),[f]),{jobs:r,isLoading:a,error:c}}(),h=d.jobs,p=d.isLoading,v=d.error,m=qd(t),y=m.instances,g=m.isLoading,_=m.error,b=Wd(t,i),D=b.names,w=b.isLoading,x=b.error,k=ae((function(){return p||g||w}),[p,g,w]),C=ae((function(){return v||_||x}),[v,_,x]),E=function(e){l(e?function(t){return t.includes(e)?t.filter((function(t){return t!==e})):[].concat(Ft(t),[e])}:[])},S=function(e,t,n){var r=n>u.length-1;n<0||r||l((function(e){var r=Ft(e),i=At(r.splice(t,1),1)[0];return r.splice(n,0,i),r}))};return ne((function(){i&&y.length&&!y.includes(i)&&o("")}),[y,i]),xr("div",{className:"vm-explore-metrics",children:[xr(Xd,{jobs:h,instances:y,names:D,job:t,size:s.id,instance:i,selectedMetrics:u,onChangeJob:n,onChangeSize:function(e){var t=yr.find((function(t){return t.id===e}));t&&f(t)},onChangeInstance:o,onToggleMetric:E}),k&&xr(rf,{}),C&&xr(Ao,{variant:"error",children:C}),!t&&xr(Ao,{variant:"info",children:"Please select job to see list of metric names."}),t&&!u.length&&xr(Ao,{variant:"info",children:"Please select metric names to see the graphs."}),xr("div",{className:"vm-explore-metrics-body",children:u.map((function(e,n){return xr(Gd,{name:e,job:t,instance:i,index:n,size:s,onRemoveItem:E,onChangeOrder:S},e)}))})]})},ah=function(){var e=No().showInfoMessage,n=function(t){return function(){var n;n=t,navigator.clipboard.writeText("<".concat(n,"/>")),e({text:"<".concat(n,"/> has been copied"),type:"success"})}};return xr("div",{className:"vm-preview-icons",children:Object.entries(t).map((function(e){var t=At(e,2),r=t[0],i=t[1];return xr("div",{className:"vm-preview-icons-item",onClick:n(r),children:[xr("div",{className:"vm-preview-icons-item__svg",children:i()}),xr("div",{className:"vm-preview-icons-item__name",children:"<".concat(r,"/>")})]},r)}))})},uh=function(){var e=At(ee(!0),2),t=e[0],n=e[1];return xr(y,t?{children:[xr(rf,{}),xr(Yd,{setLoadingTheme:n}),";"]}:{children:xr(Xn,{children:xr(Oo,{children:xr(Zn,{children:xr(Jn,{path:"/",element:xr(ha,{}),children:[xr(Jn,{path:cr.home,element:xr(yf,{})}),xr(Jn,{path:cr.metrics,element:xr(oh,{})}),xr(Jn,{path:cr.cardinality,element:xr(zd,{})}),xr(Jn,{path:cr.topQueries,element:xr(Ud,{})}),xr(Jn,{path:cr.trace,element:xr(Vd,{})}),xr(Jn,{path:cr.dashboards,element:xr(ad,{})}),xr(Jn,{path:cr.icons,element:xr(ah,{})})]})})})})})},lh=function(e){e&&n.e(27).then(n.bind(n,27)).then((function(t){var n=t.getCLS,r=t.getFID,i=t.getFCP,o=t.getLCP,a=t.getTTFB;n(e),r(e),i(e),o(e),a(e)}))},ch=document.getElementById("root");ch&&Ve(xr(uh,{}),ch),lh()}()}(); \ No newline at end of file diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 1b4745401..662dfee08 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -15,6 +15,8 @@ The following tip changes can be tested by building VictoriaMetrics components f ## tip +* FEATURE: [vmui](https://docs.victoriametrics.com/#vmui): add ability to show custom dashboards at vmui by specifying a path to a directory with dashboard config files via `-vmui.customDashboardsPath` command-line flag. See [this feature request](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3322) and [these docs](https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards). + * BUGFIX: [vmagent](https://docs.victoriametrics.com/vmagent.html): [dockerswarm_sd_configs](https://docs.victoriametrics.com/sd_configs.html#dockerswarm_sd_configs): apply `filters` only to objects of the specified `role`. Previously filters were applied to all the objects, which could cause errors when different types of objects were used with filters that were not compatible with them. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3579). @@ -54,7 +56,6 @@ Released at 2023-01-10 - `vm_vmselect_concurrent_requests_current` - the current number of concurrently executed requests - `vm_vmselect_concurrent_requests_limit_reached_total` - the total number of requests, which were put in the wait queue when `-search.maxConcurrentRequests` concurrent requests are being executed - `vm_vmselect_concurrent_requests_limit_timeout_total` - the total number of canceled requests because they were sitting in the wait queue for more than `-search.maxQueueDuration` -* FEATURE: [vmui](https://docs.victoriametrics.com/#vmui): add ability to define path to custom dashboards via `vmui.customDashboardsPath` flag. See [this feature request](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3322). * BUGFIX: [vmui](https://docs.victoriametrics.com/#vmui): properly update the `step` value in url after the `step` input field has been manually changed. This allows preserving the proper `step` when copy-n-pasting the url to another instance of web browser. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3513). * BUGFIX: [vmui](https://docs.victoriametrics.com/#vmui): properly update tooltip when quickly hovering multiple lines on the graph. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3530). diff --git a/docs/README.md b/docs/README.md index b86483327..1756b16d9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2504,4 +2504,6 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li Show VictoriaMetrics version -vmalert.proxyURL string Optional URL for proxying requests to vmalert. For example, if -vmalert.proxyURL=http://vmalert:8880 , then alerting API requests such as /api/v1/rules from Grafana will be proxied to http://vmalert:8880/api/v1/rules + -vmui.customDashboardsPath string + Optional path to vmui dashboards. See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards ``` diff --git a/docs/Single-server-VictoriaMetrics.md b/docs/Single-server-VictoriaMetrics.md index b8f6d47d6..fcdf48a47 100644 --- a/docs/Single-server-VictoriaMetrics.md +++ b/docs/Single-server-VictoriaMetrics.md @@ -2507,4 +2507,6 @@ Pass `-help` to VictoriaMetrics in order to see the list of supported command-li Show VictoriaMetrics version -vmalert.proxyURL string Optional URL for proxying requests to vmalert. For example, if -vmalert.proxyURL=http://vmalert:8880 , then alerting API requests such as /api/v1/rules from Grafana will be proxied to http://vmalert:8880/api/v1/rules + -vmui.customDashboardsPath string + Optional path to vmui dashboards. See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmui/packages/vmui/public/dashboards ```