From 9eb73bf7590734255e7ae34ec455d62a05209d3f Mon Sep 17 00:00:00 2001 From: ianarawjo Date: Sat, 24 Feb 2024 08:06:50 -0800 Subject: [PATCH] Add Prettier and ESLint formatting (#227) * Add and run prettier * Add eslint and code fixes after formatting (#223) * chore(formatting): config files and packages * chore(formatting): package.json * chore(formatting): applying formatting changes obtained by applying the previous commit and running `npx prettier -w .` * chore(formatting): added formatting and linting to react app * chore(formatting): fixes * chore(eslint): apply fixes to utils.ts * rebuild --------- Co-authored-by: Massimiliano Angelino --- .gitignore | 1 + chainforge/react-server/.eslintrc.js | 53 + chainforge/react-server/.prettierignore | 4 + chainforge/react-server/.prettierrc.json | 6 + .../react-server/build/asset-manifest.json | 12 +- chainforge/react-server/build/index.html | 2 +- .../{main.c0f80104.css => main.213af966.css} | 4 +- .../build/static/css/main.213af966.css.map | 1 + .../build/static/css/main.c0f80104.css.map | 1 - .../build/static/js/main.b3a3faeb.js | 3 + .../static/js/main.b3a3faeb.js.LICENSE.txt | 241 +++ .../build/static/js/main.b3a3faeb.js.map | 1 + chainforge/react-server/craco.config.js | 44 +- chainforge/react-server/package-lock.json | 399 +++- chainforge/react-server/package.json | 13 +- chainforge/react-server/public/index.html | 15 +- chainforge/react-server/src/AiPopover.js | 315 ++- chainforge/react-server/src/AlertModal.js | 24 +- .../src/AnimatedConnectionLine.js | 25 +- chainforge/react-server/src/App.css | 2 +- chainforge/react-server/src/App.js | 1290 ++++++++---- .../react-server/src/AreYouSureModal.js | 66 +- chainforge/react-server/src/BaseNode.js | 83 +- .../react-server/src/ChatHistoryView.js | 19 +- .../react-server/src/CodeEvaluatorNode.js | 560 +++-- chainforge/react-server/src/CommentNode.js | 41 +- .../react-server/src/ControlledTextArea.js | 28 +- chainforge/react-server/src/EditableTable.js | 238 ++- .../react-server/src/ExampleFlowsModal.js | 590 ++++-- .../react-server/src/GlobalSettingsModal.js | 705 ++++--- chainforge/react-server/src/InspectFooter.js | 93 +- chainforge/react-server/src/InspectorNode.js | 76 +- chainforge/react-server/src/ItemsNode.js | 373 ++-- chainforge/react-server/src/JoinNode.js | 509 +++-- chainforge/react-server/src/LLMEvalNode.js | 345 +-- .../react-server/src/LLMItemButtonGroup.js | 77 +- .../react-server/src/LLMListComponent.js | 426 ++-- chainforge/react-server/src/LLMListItem.js | 124 +- .../react-server/src/LLMResponseInspector.js | 1049 ++++++---- .../src/LLMResponseInspectorDrawer.js | 22 +- .../src/LLMResponseInspectorModal.js | 76 +- .../react-server/src/ModelSettingSchemas.js | 1409 +++++++------ .../react-server/src/ModelSettingsModal.js | 268 ++- .../react-server/src/NodeLabelComponent.js | 241 ++- chainforge/react-server/src/PlotLegend.js | 29 +- chainforge/react-server/src/PromptNode.js | 1503 ++++++++------ chainforge/react-server/src/RemoveEdge.js | 46 +- .../react-server/src/RenameValueModal.js | 34 +- chainforge/react-server/src/ScriptNode.js | 172 +- chainforge/react-server/src/SettingsIcon.js | 0 chainforge/react-server/src/SimpleEvalNode.js | 483 +++-- chainforge/react-server/src/SplitNode.js | 379 ++-- .../src/StatusIndicatorComponent.js | 55 +- .../react-server/src/StrictModeDroppable.js | 8 +- .../react-server/src/TabularDataNode.js | 615 +++--- .../src/TemperatureSliderComponent.js | 9 +- .../src/TemplateHooksComponent.js | 259 ++- chainforge/react-server/src/TextFieldsNode.js | 465 +++-- chainforge/react-server/src/VisNode.js | 1699 ++++++++------- .../src/backend/__test__/ai.test.ts | 2 +- .../__test__/aiSuggestionsManager.test.ts | 20 +- .../src/backend/__test__/backend.test.ts | 270 ++- .../src/backend/__test__/cache.test.ts | 34 +- .../src/backend/__test__/defaultdict.test.ts | 25 +- .../src/backend/__test__/query.test.ts | 63 +- .../src/backend/__test__/setUtils.test.ts | 62 +- .../src/backend/__test__/template.test.ts | 201 +- .../src/backend/__test__/utils.test.ts | 139 +- chainforge/react-server/src/backend/ai.ts | 180 +- .../src/backend/aiSuggestionsManager.ts | 253 ++- .../react-server/src/backend/backend.ts | 1056 ++++++---- chainforge/react-server/src/backend/cache.ts | 53 +- .../react-server/src/backend/canceler.ts | 21 +- .../react-server/src/backend/defaultdict.ts | 16 +- chainforge/react-server/src/backend/errors.ts | 29 +- chainforge/react-server/src/backend/models.ts | 53 +- chainforge/react-server/src/backend/query.ts | 347 ++-- .../react-server/src/backend/setUtils.ts | 4 +- .../react-server/src/backend/template.ts | 687 +++--- chainforge/react-server/src/backend/typing.ts | 112 +- chainforge/react-server/src/backend/utils.ts | 1177 +++++++---- chainforge/react-server/src/example_flows.js | 1842 +++++++++-------- .../react-server/src/fetch_from_backend.js | 116 +- chainforge/react-server/src/index.css | 15 +- chainforge/react-server/src/index.js | 14 +- .../react-server/src/reportWebVitals.js | 4 +- chainforge/react-server/src/setupTests.js | 2 +- chainforge/react-server/src/store.js | 323 ++- .../react-server/src/text-fields-node.css | 1422 ++++++------- chainforge/react-server/tsconfig.json | 12 +- 90 files changed, 14585 insertions(+), 9599 deletions(-) create mode 100644 chainforge/react-server/.eslintrc.js create mode 100644 chainforge/react-server/.prettierignore create mode 100644 chainforge/react-server/.prettierrc.json rename chainforge/react-server/build/static/css/{main.c0f80104.css => main.213af966.css} (92%) create mode 100644 chainforge/react-server/build/static/css/main.213af966.css.map delete mode 100644 chainforge/react-server/build/static/css/main.c0f80104.css.map create mode 100644 chainforge/react-server/build/static/js/main.b3a3faeb.js create mode 100644 chainforge/react-server/build/static/js/main.b3a3faeb.js.LICENSE.txt create mode 100644 chainforge/react-server/build/static/js/main.b3a3faeb.js.map delete mode 100644 chainforge/react-server/src/SettingsIcon.js diff --git a/.gitignore b/.gitignore index 0d6b76e1..71aef548 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.DS_Store chainforge/cache chainforge/examples/oaievals/ +chainforge/react-server/node_modules # == Below was generated by https://www.toptal.com/developers/gitignore/api/python == # Edit at https://www.toptal.com/developers/gitignore?templates=python diff --git a/chainforge/react-server/.eslintrc.js b/chainforge/react-server/.eslintrc.js new file mode 100644 index 00000000..e5240c6a --- /dev/null +++ b/chainforge/react-server/.eslintrc.js @@ -0,0 +1,53 @@ +module.exports = { + ignorePatterns: ["node_modules/**", "build/**", "craco.config.js"], + extends: [ + "semistandard", + "plugin:react/recommended", + "plugin:prettier/recommended", + "plugin:@typescript-eslint/recommended", + ], + rules: { + semi: ["error", "always"], + camelcase: ["off"], + "react/prop-types": ["off"], + "@typescript-eslint/no-explicit-any": ["off"], + }, + + settings: { + react: { + createClass: "createReactClass", // Regex for Component Factory to use, + // default to "createReactClass" + pragma: "React", // Pragma to use, default to "React" + fragment: "Fragment", // Fragment to use (may be a property of ), default to "Fragment" + version: "detect", // React version. "detect" automatically picks the version you have installed. + // You can also use `16.0`, `16.3`, etc, if you want to override the detected value. + // It will default to "latest" and warn if missing, and to "detect" in the future + flowVersion: "0.53", // Flow version + }, + propWrapperFunctions: [ + // The names of any function used to wrap propTypes, e.g. `forbidExtraProps`. If this isn't set, any propTypes wrapped in a function will be skipped. + "forbidExtraProps", + { property: "freeze", object: "Object" }, + { property: "myFavoriteWrapper" }, + // for rules that check exact prop wrappers + { property: "forbidExtraProps", exact: true }, + ], + componentWrapperFunctions: [ + // The name of any function used to wrap components, e.g. Mobx `observer` function. If this isn't set, components wrapped by these functions will be skipped. + "observer", // `property` + { property: "styled" }, // `object` is optional + { property: "observer", object: "Mobx" }, + { property: "observer", object: "" }, // sets `object` to whatever value `settings.react.pragma` is set to + ], + formComponents: [ + // Components used as alternatives to
for forms, eg. + "CustomForm", + { name: "Form", formAttribute: "endpoint" }, + ], + linkComponents: [ + // Components used as alternatives to for linking, eg. + "Hyperlink", + { name: "Link", linkAttribute: "to" }, + ], + }, +}; diff --git a/chainforge/react-server/.prettierignore b/chainforge/react-server/.prettierignore new file mode 100644 index 00000000..1c541254 --- /dev/null +++ b/chainforge/react-server/.prettierignore @@ -0,0 +1,4 @@ +# Ignore artifacts: +build +public +**/*.html \ No newline at end of file diff --git a/chainforge/react-server/.prettierrc.json b/chainforge/react-server/.prettierrc.json new file mode 100644 index 00000000..c4664cb7 --- /dev/null +++ b/chainforge/react-server/.prettierrc.json @@ -0,0 +1,6 @@ +{ + "trailingComma": "all", + "tabWidth": 2, + "semi": true, + "singleQuote": false +} diff --git a/chainforge/react-server/build/asset-manifest.json b/chainforge/react-server/build/asset-manifest.json index 537c6677..7d236940 100644 --- a/chainforge/react-server/build/asset-manifest.json +++ b/chainforge/react-server/build/asset-manifest.json @@ -1,15 +1,15 @@ { "files": { - "main.css": "/static/css/main.c0f80104.css", - "main.js": "/static/js/main.1e37e2eb.js", + "main.css": "/static/css/main.213af966.css", + "main.js": "/static/js/main.b3a3faeb.js", "static/js/787.4c72bb55.chunk.js": "/static/js/787.4c72bb55.chunk.js", "index.html": "/index.html", - "main.c0f80104.css.map": "/static/css/main.c0f80104.css.map", - "main.1e37e2eb.js.map": "/static/js/main.1e37e2eb.js.map", + "main.213af966.css.map": "/static/css/main.213af966.css.map", + "main.b3a3faeb.js.map": "/static/js/main.b3a3faeb.js.map", "787.4c72bb55.chunk.js.map": "/static/js/787.4c72bb55.chunk.js.map" }, "entrypoints": [ - "static/css/main.c0f80104.css", - "static/js/main.1e37e2eb.js" + "static/css/main.213af966.css", + "static/js/main.b3a3faeb.js" ] } \ No newline at end of file diff --git a/chainforge/react-server/build/index.html b/chainforge/react-server/build/index.html index 38db4f5c..347d97b9 100644 --- a/chainforge/react-server/build/index.html +++ b/chainforge/react-server/build/index.html @@ -1 +1 @@ -ChainForge
\ No newline at end of file +ChainForge
diff --git a/chainforge/react-server/build/static/css/main.c0f80104.css b/chainforge/react-server/build/static/css/main.213af966.css similarity index 92% rename from chainforge/react-server/build/static/css/main.c0f80104.css rename to chainforge/react-server/build/static/css/main.213af966.css index 4426daab..f2830890 100644 --- a/chainforge/react-server/build/static/css/main.c0f80104.css +++ b/chainforge/react-server/build/static/css/main.213af966.css @@ -1,2 +1,2 @@ -body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:Menlo,Monaco,Consolas,Courier New,monospace}.script-node{background-color:#fff;border:1px solid #000;border-radius:5px;padding:10px}.script-node-input{min-width:300px}.csv-element{background-color:#ffe8cc;border:none;border-radius:10px;color:#8a3e07;cursor:pointer;display:inline-block;font-family:monospace;font-size:inherit;margin:4px 2px;padding:.2em .4em;position:relative;text-align:center;text-decoration:none}.csv-comma{color:#ffc107}.csv-div{max-height:250px;overflow-y:auto;width:290px}.csv-input{height:150px;width:290px}._4GdcU{min-height:28px;overflow:hidden;text-overflow:ellipsis;transition:background .2s ease;white-space:nowrap}._4GdcU:hover{background:hsla(0,0%,86%,.4);cursor:pointer}._G0k44{overflow-y:auto;transition:background .2s ease}._G0k44::-webkit-scrollbar{width:8px}._G0k44::-webkit-scrollbar-track{background:#f1f1f1}._G0k44::-webkit-scrollbar-thumb{background:#ccc}._G0k44::-webkit-scrollbar-thumb:hover{background:#aaa}._G0k44::-webkit-scrollbar-thumb:active{background:#666}._G0k44:hover{background:hsla(0,0%,86%,.4);cursor:pointer}._i5--j{display:block;margin:3px 0;padding:5px;scrollbar-width:thin;width:100%}._i5--j::-webkit-scrollbar{width:8px}._i5--j::-webkit-scrollbar-track{background:#f1f1f1}._i5--j::-webkit-scrollbar-thumb{background:#ccc}._i5--j::-webkit-scrollbar-thumb:hover{background:#aaa}._i5--j::-webkit-scrollbar-thumb:active{background:#666}._TDklp{color:#999}._gmkRL{display:inline!important}._-wzeg,._-wzeg:hover{cursor:auto!important}._IYz6Z{display:flex}._NGZSv{background-color:#fff;color:#000;min-width:28px}._NGZSv,._NGZSv:focus{border:0;outline:none}.react-flow__container{height:100%;left:0;position:absolute;top:0;width:100%}.react-flow__pane{cursor:grab;z-index:1}.react-flow__pane.selection{cursor:pointer}.react-flow__pane.dragging{cursor:grabbing}.react-flow__viewport{pointer-events:none;-webkit-transform-origin:0 0;transform-origin:0 0;z-index:2}.react-flow__renderer{z-index:4}.react-flow__selection{z-index:6}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible{outline:none}.react-flow .react-flow__edges{overflow:visible;pointer-events:none}.react-flow__connection-path,.react-flow__edge-path{stroke:#b1b1b7;stroke-width:1;fill:none}.react-flow__edge{cursor:pointer;pointer-events:visibleStroke}.react-flow__edge.animated path{stroke-dasharray:5;-webkit-animation:dashdraw .5s linear infinite;animation:dashdraw .5s linear infinite}.react-flow__edge.animated path.react-flow__edge-interaction{stroke-dasharray:none;-webkit-animation:none;animation:none}.react-flow__edge.inactive{pointer-events:none}.react-flow__edge.selected,.react-flow__edge:focus,.react-flow__edge:focus-visible{outline:none}.react-flow__edge.selected .react-flow__edge-path,.react-flow__edge:focus .react-flow__edge-path,.react-flow__edge:focus-visible .react-flow__edge-path{stroke:#555}.react-flow__edge-textwrapper{pointer-events:all}.react-flow__edge-textbg{fill:#fff}.react-flow__edge .react-flow__edge-text{pointer-events:none;-webkit-user-select:none;user-select:none}.react-flow__connection{pointer-events:none}.react-flow__connection .animated{stroke-dasharray:5;-webkit-animation:dashdraw .5s linear infinite;animation:dashdraw .5s linear infinite}.react-flow__connectionline{z-index:1001}.react-flow__nodes{pointer-events:none}.react-flow__node,.react-flow__nodes{-webkit-transform-origin:0 0;transform-origin:0 0}.react-flow__node{box-sizing:border-box;cursor:grab;pointer-events:all;position:absolute;-webkit-user-select:none;user-select:none}.react-flow__node.dragging{cursor:grabbing}.react-flow__nodesselection{pointer-events:none;-webkit-transform-origin:left top;transform-origin:left top;z-index:3}.react-flow__nodesselection-rect{cursor:grab;pointer-events:all;position:absolute}.react-flow__handle{background:#1a192b;border:1px solid #fff;border-radius:100%;height:6px;min-height:5px;min-width:5px;pointer-events:none;position:absolute;width:6px}.react-flow__handle.connectionindicator{cursor:crosshair;pointer-events:all}.react-flow__handle-bottom{bottom:-4px;top:auto}.react-flow__handle-bottom,.react-flow__handle-top{left:50%;-webkit-transform:translate(-50%);transform:translate(-50%)}.react-flow__handle-top{top:-4px}.react-flow__handle-left{left:-4px}.react-flow__handle-left,.react-flow__handle-right{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.react-flow__handle-right{right:-4px}.react-flow__edgeupdater{cursor:move;pointer-events:all}.react-flow__panel{margin:15px;position:absolute;z-index:5}.react-flow__panel.top{top:0}.react-flow__panel.bottom{bottom:0}.react-flow__panel.left{left:0}.react-flow__panel.right{right:0}.react-flow__panel.center{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.react-flow__attribution{background:hsla(0,0%,100%,.5);font-size:10px;margin:0;padding:2px 3px}.react-flow__attribution a{color:#999;text-decoration:none}@-webkit-keyframes dashdraw{0%{stroke-dashoffset:10}}@keyframes dashdraw{0%{stroke-dashoffset:10}}.react-flow__edgelabel-renderer{height:100%;pointer-events:none;position:absolute;-webkit-user-select:none;user-select:none;width:100%}.react-flow__edge.updating .react-flow__edge-path{stroke:#777}.react-flow__edge-text{font-size:10px}.react-flow__node.selectable:focus,.react-flow__node.selectable:focus-visible{outline:none}.react-flow__node-default,.react-flow__node-group,.react-flow__node-input,.react-flow__node-output{background-color:#fff;border:1px solid #1a192b;border-radius:3px;color:#222;font-size:12px;padding:10px;text-align:center;width:150px}.react-flow__node-default.selectable:hover,.react-flow__node-group.selectable:hover,.react-flow__node-input.selectable:hover,.react-flow__node-output.selectable:hover{box-shadow:0 1px 4px 1px rgba(0,0,0,.08)}.react-flow__node-default.selectable.selected,.react-flow__node-default.selectable:focus,.react-flow__node-default.selectable:focus-visible,.react-flow__node-group.selectable.selected,.react-flow__node-group.selectable:focus,.react-flow__node-group.selectable:focus-visible,.react-flow__node-input.selectable.selected,.react-flow__node-input.selectable:focus,.react-flow__node-input.selectable:focus-visible,.react-flow__node-output.selectable.selected,.react-flow__node-output.selectable:focus,.react-flow__node-output.selectable:focus-visible{box-shadow:0 0 0 .5px #1a192b}.react-flow__node-group{background-color:hsla(0,0%,94%,.25)}.react-flow__nodesselection-rect,.react-flow__selection{background:rgba(0,89,220,.08);border:1px dotted rgba(0,89,220,.8)}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible,.react-flow__selection:focus,.react-flow__selection:focus-visible{outline:none}.react-flow__controls{box-shadow:0 0 2px 1px rgba(0,0,0,.08)}.react-flow__controls-button{align-items:center;background:#fefefe;border:none;border-bottom:1px solid #eee;box-sizing:initial;cursor:pointer;display:flex;height:16px;justify-content:center;padding:5px;-webkit-user-select:none;user-select:none;width:16px}.react-flow__controls-button:hover{background:#f4f4f4}.react-flow__controls-button svg{max-height:12px;max-width:12px;width:100%}.react-flow__controls-button:disabled{pointer-events:none}.react-flow__controls-button:disabled svg{fill-opacity:.4}.react-flow__minimap{background-color:#fff}.react-flow__resize-control{position:absolute}.react-flow__resize-control.left,.react-flow__resize-control.right{cursor:ew-resize}.react-flow__resize-control.bottom,.react-flow__resize-control.top{cursor:ns-resize}.react-flow__resize-control.bottom.right,.react-flow__resize-control.top.left{cursor:nwse-resize}.react-flow__resize-control.bottom.left,.react-flow__resize-control.top.right{cursor:nesw-resize}.react-flow__resize-control.handle{background-color:#3367d9;border:1px solid #fff;border-radius:1px;height:4px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:4px}.react-flow__resize-control.handle.left{left:0;top:50%}.react-flow__resize-control.handle.right{left:100%;top:50%}.react-flow__resize-control.handle.top{left:50%;top:0}.react-flow__resize-control.handle.bottom{left:50%;top:100%}.react-flow__resize-control.handle.bottom.left,.react-flow__resize-control.handle.top.left{left:0}.react-flow__resize-control.handle.bottom.right,.react-flow__resize-control.handle.top.right{left:100%}.react-flow__resize-control.line{border:0 solid #3367d9}.react-flow__resize-control.line.left,.react-flow__resize-control.line.right{height:100%;top:0;-webkit-transform:translate(-50%);transform:translate(-50%);width:1px}.react-flow__resize-control.line.left{border-left-width:1px;left:0}.react-flow__resize-control.line.right{border-right-width:1px;left:100%}.react-flow__resize-control.line.bottom,.react-flow__resize-control.line.top{height:1px;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%}.react-flow__resize-control.line.top{border-top-width:1px;top:0}.react-flow__resize-control.line.bottom{border-bottom-width:1px;top:100%}.text-fields-node{background-color:#fff;border:1px solid #000;border-radius:5px;min-width:200px;padding:10px}hr{background-color:#bbb;border:none;height:1px}.grouped-handle{background:#555;height:15px!important}.small-standard-font{font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:10pt}.status-icon{display:inline-block;font-size:14pt;margin:0 0 0 4px;padding:0}.status-icon .status-tooltip{border-radius:6px;color:#fff;font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:10pt;padding:5px;pointer-events:none;position:absolute;text-align:left;visibility:hidden;width:150px;z-index:9000}.status-icon:hover .status-tooltip{visibility:visible}.warning-status{color:#c72}.warning-status .status-tooltip{background-color:#c72}.ready-status{color:#4cbb17}.ready-status .status-tooltip{background-color:#4cbb17}.error-status{color:#e52a2a}.error-status .status-tooltip{background-color:#e52a2a}.lds-ring{display:inline-block;height:16px;margin-left:4px;position:relative;width:16px}.lds-ring div{-webkit-animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;border:2px solid transparent;border-radius:50%;border-top-color:#0096ff;box-sizing:border-box;display:block;height:16px;margin:2px;position:absolute;width:16px}.lds-ring div:first-child{-webkit-animation-delay:-.45s;animation-delay:-.45s}.lds-ring div:nth-child(2){-webkit-animation-delay:-.3s;animation-delay:-.3s}.lds-ring div:nth-child(3){-webkit-animation-delay:-.15s;animation-delay:-.15s}@-webkit-keyframes lds-ring{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes lds-ring{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.llm-list-container{background-color:#eee;border-radius:4px;max-height:205px;overflow-y:auto;padding:8px}.llm-list-backdrop{color:#777;font-size:10pt;margin:6px 0 6px 6px;padding-bottom:4px;text-align:left}button.remove-edge-btn{background-color:#ddd;border-color:#ddd;border-radius:50%;border-style:solid;cursor:pointer}button.remove-edge-btn:hover{background-color:#fff;border-color:#fff}button.remove-edge-btn:active{background-color:#777;border-color:#777;color:#fff}.input-field{align-items:center;display:flex;margin-bottom:5px}.input-field textarea{font-family:monospace}.remove-text-field-btn{background-color:inherit;border-style:none;color:#bbb;cursor:pointer;font-weight:700;margin-left:3px;padding:2px 4px}.remove-text-field-btn:hover{background-color:#eee;color:#666}.input-field input{margin-left:5px}.node-header{border:0;border-bottom:1px;border-style:dashed;margin-bottom:12px;padding-bottom:4px}.node-header:hover{border-bottom-color:#888}.prompt-node{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px;width:290px}.prompt-node textarea{box-sizing:border-box;resize:none;width:100%}.evaluator-node{background-color:#fff;border:1px solid #999;border-radius:5px;min-width:280px;padding:10px}.eval-output-footer{margin:10px -9px -9px;max-height:100px;min-height:100px}.eval-output-footer p{font-family:Monaco,Courier,monospace;font-size:9pt;margin:6px 8px;max-height:90px;max-width:100%;overflow:scroll;padding-bottom:0;padding-top:2px;position:absolute;white-space:pre-wrap}.eval-inspect-response-footer{background-color:#ceeaf5b1;cursor:zoom-in;margin:10px -9px -9px;max-height:100px;overflow-y:auto}.eval-inspect-response-footer button{cursor:zoom-in}.ace-editor-container{resize:vertical}.vis-node{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px}.plotly-vis{height:100%;overflow:auto;resize:both;width:100%}.plot-legend{font-family:monospace;font-size:11px}.plot-legend-item{cursor:pointer}.plot-legend-item:hover{opacity:.6}.plot-legend-item:active{opacity:.8}g.ytick text{line-height:2px}.response-var-inline>.response-var-name{font-size:8pt;font-weight:400}.response-var-inline>.response-var-value{font-size:8pt}.settings-var-inline{background:#eee;border-radius:0 0 12px 12px!important;margin:-3px 0 0!important;padding:4px 4px 8px 8px!important}.wrap-line{white-space:pre-wrap}.inspector-node{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px}.inspect-response-container{height:200px;max-height:750px;max-width:1150px;min-height:270px;min-width:150px;overflow-y:scroll;resize:both;width:280px}.inspect-modal-response-container .response-var-header{line-height:1.2;margin-top:8px;padding:10px}.inspect-modal-response-container .response-var-name{font-size:10pt;font-weight:700}.inspect-modal-response-container .response-var-value{font-size:10pt;letter-spacing:-.5px}.inspect-modal-response-container .response-llm-header{font-size:10pt}.inspect-modal-response-container .small-response{font-size:10pt;margin:6px -1px 8px;padding:8px}.inspect-modal-response-container .small-response-metrics{font-size:12pt}.inspect-modal-response-container .num-same-responses{font-size:10pt}.inspect-table-var{background-color:#e0f4fa}.inspect-table-metavar,.inspect-table-var{border-right:1px solid #cde;font-weight:500;padding-top:10px;white-space:pre-wrap}.inspect-table-metavar{background-color:#e0e8fa}.inspect-table-llm-resp{border-right:1px solid #eee;min-width:160px;padding-bottom:20px;padding-left:8px!important;padding-right:0!important;padding-top:8px}.inspect-responses-drawer{background-color:#fff;border:1px solid #999;border-bottom-left-radius:2px;border-bottom-right-radius:5px;border-top-right-radius:5px;box-shadow:inset 4px 0 4px 0 rgba(0,0,0,.1);left:100%;position:absolute;top:12px}.response-group-component-header:hover{color:#05e;cursor:pointer;text-decoration:underline}.response-group-component-header:active{color:#00c}.response-var-header{background-color:#e0f4fa;border-radius:1px;line-height:.9;padding:2px 8px 4px}.response-var-inline-container{align-items:start;display:flex;flex-wrap:wrap;justify-content:left;padding-bottom:1px}.response-llm-header{border-top-left-radius:5px;border-top-right-radius:15px;font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:9pt;font-weight:500;padding:4px 4px 4px 7px}.response-var-inline{border-radius:4px;color:#00000088;margin:0 4px;padding:0 4px;text-rendering:optimizeSpeed}.response-var-name{font-size:9pt;font-weight:700}.response-var-value{font-family:monospace;font-size:8pt}.inspect-modal-prompt-box{background-color:#eee;border-bottom-color:#aaa;border-bottom-style:solid;box-shadow:1px 1px 8px #ccc;margin:0 0 10px;max-height:200px;overflow-y:auto;padding:10px}.inspect-modal-prompt-text{font-family:monospace;font-size:11pt;white-space:pre-line}.inspect-modal-prompt-prefix{font-size:10pt;font-weight:700}.prompt-preview{background-color:#ddd;border-radius:6px;color:#444;font-family:monospace;font-size:10pt;margin:10px 0 0;padding:8px;white-space:pre-wrap}.join-text-preview{margin:0 0 10px}.small-response{background-color:hsla(0,0%,100%,.4);border-bottom:.0625rem dashed #fff;border-left-color:#fff;border-right-color:#fff;border-top:.0625rem dashed #fff;cursor:text;font-family:monospace;font-size:8pt;margin:4px 3px;padding:2px;-webkit-user-select:text;user-select:text;white-space:pre-wrap}.small-response-metrics{background-color:hsla(0,0%,100%,.3);border-top-left-radius:20px;border-top-right-radius:20px;color:#333;font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:10pt;font-weight:500;margin:8px 20% -6px;padding:0 2px 1px 0;text-align:center}.num-same-responses{background-color:#00000033;border-radius:5px;color:#fff;display:block;float:right;font-size:9pt;font-weight:500;height:12pt;overflow:hidden;padding:1px 4px;position:relative;right:3px;text-align:center;top:2pt}.llm-response-container{max-width:100%}.llm-response-container h1{margin:6px 8px 0}.llm-group-header,.llm-response-container h1{color:#222;font-size:10pt;font-weight:400;padding-bottom:0;padding-top:2px}.llm-group-header{margin:6px 8px 4px}.response-group{margin:2px 0 8px;padding:2px}.response-boxes-wrapper{border-left:2px solid #bbb;margin-top:4px;padding-left:10px}.response-box{border-radius:5px;margin:0 2px 4px;min-width:120px;padding:2px 0 1px}.response-item-llm-name-wrapper{padding-bottom:0}.response-item-llm-name-wrapper h1{color:#000000bb;font-size:8pt;font-style:italic;font-weight:700;margin:0;opacity:.7;padding-right:8px;text-align:right}.response-preview-container{background-color:#ceeaf5b1;cursor:zoom-in;margin:10px -9px -9px;max-height:100px;overflow-y:auto}.response-tag{color:#555;font-size:9pt;margin:0 0 0 2px}.cfnode{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px}.cfnode:hover{border-color:#222}.join-node{min-width:200px}.tabular-data-node{min-width:280px}.tabular-data-container{border-bottom:1px solid #ccc;border-left-color:#ccc;border-right:1px solid #ccc;border-top-color:#ccc;display:block;height:300px;min-width:inherit;overflow:auto;resize:both;width:400px}.tabular-data-container td,.tabular-data-container th{white-space:nowrap}.editable-table{table-layout:auto}.table-col-edit-btn{color:#888;cursor:pointer;height:"12px";margin:0;padding:2px;position:relative;top:1px;width:"12px"}.table-col-edit-btn:hover{background-color:#eee}.table-col-edit-btn:active{background-color:#ddd}.content-editable-div{cursor:text;font-family:monospace;font-size:10pt;line-height:1;margin:6px 0;max-height:150px;overflow-y:scroll;white-space:pre-wrap}th .content-editable-div{font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}[contenteditable=true]:empty:not(:focus):before{color:grey;content:attr(placeholder);font-style:italic}.add-table-row-btn{align-items:center;display:flex;justify-content:center;margin-top:2px;position:absolute;width:100%}.add-table-row-btn button{margin-right:10px}.var-select-toolbar{margin:0 0 -30px;padding:0;position:relative;text-align:right}.var-select-toolbar label{font-size:12px}.var-select-toolbar select{font-size:12px;width:100px}.code-style{background-color:#ddd;font-family:Courier New,Courier,monospace}.hook-tag{padding-bottom:3px;padding-top:5px}.code-mirror-field-header{color:#333;font-size:10pt;margin-bottom:4px}.text-field-fixed .mantine-Textarea-wrapper textarea{width:260px}.prompt-field-fixed .mantine-Textarea-wrapper textarea,.text-field-fixed .mantine-Textarea-wrapper textarea{border-color:#999;font-family:monospace;font-size:10pt;line-height:1.2;overflow-y:auto;padding:.16667rem;resize:vertical}.add-text-field-btn{align-items:center;display:flex;justify-content:center}.add-llm-model-btn{align-items:right;display:flex;float:right;height:20px;justify-content:right}.add-llm-model-btn button{border:1pt solid #777;border-radius:3px;color:#777;margin-right:2px}.add-llm-model-btn:hover button{background-color:#fff}.add-llm-model-btn:active button{background-color:#000;color:#fff}.play-button{background:transparent;border:0;border-color:transparent transparent transparent #202020;border-style:solid;border-width:5px 0 5px 10px;box-sizing:border-box;height:10px;margin:2px;pointer-events:none;width:0}.AmitSahoo45-button-3{background:rgba(63,204,106,.2);border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#333;cursor:pointer;font-size:12px;height:20px;margin-right:3px;margin-top:-5px;overflow:hidden;padding:2px 10px;position:relative;transition:all .2s ease-in}.AmitSahoo45-button-3:hover{background:#1ac845;box-shadow:0 0 30px 5px rgba(63,234,106,.815);color:#fff;transition:all .2s ease-out}.AmitSahoo45-button-3:active{background:#40a829;color:#ff0}.AmitSahoo45-button-3:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.AmitSahoo45-button-3:before{background:#fff;box-shadow:0 0 50px 30px #fff;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.script-node-input{width:100%}.node-header-btns-container{float:right;margin-left:10px;margin-right:0;margin-top:-3px}.close-button{background:transparent;border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#333;cursor:pointer;font-size:12px;margin-top:-7px;overflow:hidden;padding:2px 6px;position:relative;transition:all .2s ease-in}.close-button:hover{background:#c81a45;box-shadow:0 0 30px 5px rgba(234,63,106,.815);color:#fff;transition:all .2s ease-out}.close-button:active{background:#600;color:#ff0}.close-button:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.close-button:before{background:#fff;box-shadow:0 0 50px 30px #fff;color:#000;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.custom-button{background:transparent;border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#333;cursor:pointer;font-size:12px;margin-right:3px;margin-top:-7px;overflow:hidden;padding:2px 6px;position:relative;text-decoration:none;transition:all .2s ease-in}.custom-button:hover{background:#f1d02c;box-shadow:0 0 30px 5px rgba(255,222,35,.815);color:#fff;transition:all .2s ease-out}.custom-button:active{background:#a36a07;color:#330a06}.custom-button:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.custom-button:before{background:#fff;box-shadow:0 0 50px 30px #fff;color:#000;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.ai-button{background:#f2d2f3;border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#666;cursor:pointer;font-size:12px;margin-right:3px;margin-top:-7px;overflow:hidden;padding:2px 6px;position:relative;transition:all .2s ease-in}.ai-button:hover{background:#b13fcc;box-shadow:0 0 30px 5px #b13fcc;color:#fff;transition:all .2s ease-out}.ai-button:active{background:#812897}.ai-button:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.ai-button:before{background:#fff;box-shadow:0 0 50px 30px #fff;color:#000;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.text-blink{-webkit-animation:blinker .75s linear infinite;animation:blinker .75s linear infinite;font-family:sans-serif}@-webkit-keyframes blinker{50%{opacity:0}}@keyframes blinker{50%{opacity:0}}.chat-bubble{--r:15px;--t:25px;background:#333 border-box;color:#fff;-webkit-mask:radial-gradient(var(--t) at var(--_d) 0,#0000 98%,#000 102%) var(--_d) 100%/calc(100% - var(--r)) var(--t) no-repeat,conic-gradient(at var(--r) var(--r),#000 75%,#0000 0) calc(var(--r)/-2) calc(var(--r)/-2) padding-box,radial-gradient(50% 50%,#000 98%,#0000 101%) 0 0/var(--r) var(--r) space padding-box;mask:radial-gradient(var(--t) at var(--_d) 0,#0000 98%,#000 102%) var(--_d) 100%/calc(100% - var(--r)) var(--t) no-repeat,conic-gradient(at var(--r) var(--r),#000 75%,#0000 0) calc(var(--r)/-2) calc(var(--r)/-2) padding-box,radial-gradient(50% 50%,#000 98%,#0000 101%) 0 0/var(--r) var(--r) space padding-box;max-width:80%;padding:calc(var(--r)*2/3)}.chat-msg-left{--_d:0%;border-left:var(--t) solid #0000;margin-right:var(--t);place-self:start}.chat-msg-right{--_d:100%;border-right:var(--t) solid #0000;margin-left:var(--t);place-self:end}.chat-history{grid-gap:10px;display:grid;font-family:system-ui,sans-serif;font-size:14px;gap:10px;margin:0;min-height:10vh;place-content:left;width:100%}.something-changed-circle{background-color:red;border:0 solid;border-radius:50%;height:6px;margin-bottom:10px;margin-left:2px;opacity:.7;width:6px}.rjsf fieldset{border-style:none;margin-left:30px;margin-right:30px;margin-top:20px}.rjsf fieldset .field-array{margin:0;padding:0}.rjsf .field-array legend,.rjsf label.control-label{font-size:11pt;font-weight:700}.rjsf input{resize:none;width:100%}.rjsf select{width:100%}.rjsf textarea{resize:vertical;width:100%}.rjsf .field-description{color:#444;margin-top:8px}.rjsf fieldset .form-group{border-top-color:#ddd;border-top-style:solid;font-size:9pt;margin-bottom:30px;padding-top:6px}.rjsf button.btn{float:right;margin-right:30px}.rjsf button.btn-add{background:#40a829;height:20px;width:20px}.rjsf button.btn-danger{background:#600}.rjsf .help-block{color:#999;margin:0} -/*# sourceMappingURL=main.c0f80104.css.map*/ \ No newline at end of file +body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:Menlo,Monaco,Consolas,Courier New,monospace}.script-node{background-color:#fff;border:1px solid #000;border-radius:5px;padding:10px}.script-node-input{min-width:300px}.csv-element{background-color:#ffe8cc;border:none;border-radius:10px;color:#8a3e07;cursor:pointer;display:inline-block;font-family:monospace;font-size:inherit;margin:4px 2px;padding:.2em .4em;position:relative;text-align:center;text-decoration:none}.csv-comma{color:#ffc107}.csv-div{max-height:250px;overflow-y:auto;width:290px}.csv-input{height:150px;width:290px}._4GdcU{min-height:28px;overflow:hidden;text-overflow:ellipsis;transition:background .2s ease;white-space:nowrap}._4GdcU:hover{background:hsla(0,0%,86%,.4);cursor:pointer}._G0k44{overflow-y:auto;transition:background .2s ease}._G0k44::-webkit-scrollbar{width:8px}._G0k44::-webkit-scrollbar-track{background:#f1f1f1}._G0k44::-webkit-scrollbar-thumb{background:#ccc}._G0k44::-webkit-scrollbar-thumb:hover{background:#aaa}._G0k44::-webkit-scrollbar-thumb:active{background:#666}._G0k44:hover{background:hsla(0,0%,86%,.4);cursor:pointer}._i5--j{display:block;margin:3px 0;padding:5px;scrollbar-width:thin;width:100%}._i5--j::-webkit-scrollbar{width:8px}._i5--j::-webkit-scrollbar-track{background:#f1f1f1}._i5--j::-webkit-scrollbar-thumb{background:#ccc}._i5--j::-webkit-scrollbar-thumb:hover{background:#aaa}._i5--j::-webkit-scrollbar-thumb:active{background:#666}._TDklp{color:#999}._gmkRL{display:inline!important}._-wzeg,._-wzeg:hover{cursor:auto!important}._IYz6Z{display:flex}._NGZSv{background-color:#fff;color:#000;min-width:28px}._NGZSv,._NGZSv:focus{border:0;outline:none}.react-flow__container{height:100%;left:0;position:absolute;top:0;width:100%}.react-flow__pane{cursor:grab;z-index:1}.react-flow__pane.selection{cursor:pointer}.react-flow__pane.dragging{cursor:grabbing}.react-flow__viewport{pointer-events:none;-webkit-transform-origin:0 0;transform-origin:0 0;z-index:2}.react-flow__renderer{z-index:4}.react-flow__selection{z-index:6}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible{outline:none}.react-flow .react-flow__edges{overflow:visible;pointer-events:none}.react-flow__connection-path,.react-flow__edge-path{stroke:#b1b1b7;stroke-width:1;fill:none}.react-flow__edge{cursor:pointer;pointer-events:visibleStroke}.react-flow__edge.animated path{stroke-dasharray:5;-webkit-animation:dashdraw .5s linear infinite;animation:dashdraw .5s linear infinite}.react-flow__edge.animated path.react-flow__edge-interaction{stroke-dasharray:none;-webkit-animation:none;animation:none}.react-flow__edge.inactive{pointer-events:none}.react-flow__edge.selected,.react-flow__edge:focus,.react-flow__edge:focus-visible{outline:none}.react-flow__edge.selected .react-flow__edge-path,.react-flow__edge:focus .react-flow__edge-path,.react-flow__edge:focus-visible .react-flow__edge-path{stroke:#555}.react-flow__edge-textwrapper{pointer-events:all}.react-flow__edge-textbg{fill:#fff}.react-flow__edge .react-flow__edge-text{pointer-events:none;-webkit-user-select:none;user-select:none}.react-flow__connection{pointer-events:none}.react-flow__connection .animated{stroke-dasharray:5;-webkit-animation:dashdraw .5s linear infinite;animation:dashdraw .5s linear infinite}.react-flow__connectionline{z-index:1001}.react-flow__nodes{pointer-events:none}.react-flow__node,.react-flow__nodes{-webkit-transform-origin:0 0;transform-origin:0 0}.react-flow__node{box-sizing:border-box;cursor:grab;pointer-events:all;position:absolute;-webkit-user-select:none;user-select:none}.react-flow__node.dragging{cursor:grabbing}.react-flow__nodesselection{pointer-events:none;-webkit-transform-origin:left top;transform-origin:left top;z-index:3}.react-flow__nodesselection-rect{cursor:grab;pointer-events:all;position:absolute}.react-flow__handle{background:#1a192b;border:1px solid #fff;border-radius:100%;height:6px;min-height:5px;min-width:5px;pointer-events:none;position:absolute;width:6px}.react-flow__handle.connectionindicator{cursor:crosshair;pointer-events:all}.react-flow__handle-bottom{bottom:-4px;top:auto}.react-flow__handle-bottom,.react-flow__handle-top{left:50%;-webkit-transform:translate(-50%);transform:translate(-50%)}.react-flow__handle-top{top:-4px}.react-flow__handle-left{left:-4px}.react-flow__handle-left,.react-flow__handle-right{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.react-flow__handle-right{right:-4px}.react-flow__edgeupdater{cursor:move;pointer-events:all}.react-flow__panel{margin:15px;position:absolute;z-index:5}.react-flow__panel.top{top:0}.react-flow__panel.bottom{bottom:0}.react-flow__panel.left{left:0}.react-flow__panel.right{right:0}.react-flow__panel.center{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.react-flow__attribution{background:hsla(0,0%,100%,.5);font-size:10px;margin:0;padding:2px 3px}.react-flow__attribution a{color:#999;text-decoration:none}@-webkit-keyframes dashdraw{0%{stroke-dashoffset:10}}@keyframes dashdraw{0%{stroke-dashoffset:10}}.react-flow__edgelabel-renderer{height:100%;pointer-events:none;position:absolute;-webkit-user-select:none;user-select:none;width:100%}.react-flow__edge.updating .react-flow__edge-path{stroke:#777}.react-flow__edge-text{font-size:10px}.react-flow__node.selectable:focus,.react-flow__node.selectable:focus-visible{outline:none}.react-flow__node-default,.react-flow__node-group,.react-flow__node-input,.react-flow__node-output{background-color:#fff;border:1px solid #1a192b;border-radius:3px;color:#222;font-size:12px;padding:10px;text-align:center;width:150px}.react-flow__node-default.selectable:hover,.react-flow__node-group.selectable:hover,.react-flow__node-input.selectable:hover,.react-flow__node-output.selectable:hover{box-shadow:0 1px 4px 1px rgba(0,0,0,.08)}.react-flow__node-default.selectable.selected,.react-flow__node-default.selectable:focus,.react-flow__node-default.selectable:focus-visible,.react-flow__node-group.selectable.selected,.react-flow__node-group.selectable:focus,.react-flow__node-group.selectable:focus-visible,.react-flow__node-input.selectable.selected,.react-flow__node-input.selectable:focus,.react-flow__node-input.selectable:focus-visible,.react-flow__node-output.selectable.selected,.react-flow__node-output.selectable:focus,.react-flow__node-output.selectable:focus-visible{box-shadow:0 0 0 .5px #1a192b}.react-flow__node-group{background-color:hsla(0,0%,94%,.25)}.react-flow__nodesselection-rect,.react-flow__selection{background:rgba(0,89,220,.08);border:1px dotted rgba(0,89,220,.8)}.react-flow__nodesselection-rect:focus,.react-flow__nodesselection-rect:focus-visible,.react-flow__selection:focus,.react-flow__selection:focus-visible{outline:none}.react-flow__controls{box-shadow:0 0 2px 1px rgba(0,0,0,.08)}.react-flow__controls-button{align-items:center;background:#fefefe;border:none;border-bottom:1px solid #eee;box-sizing:initial;cursor:pointer;display:flex;height:16px;justify-content:center;padding:5px;-webkit-user-select:none;user-select:none;width:16px}.react-flow__controls-button:hover{background:#f4f4f4}.react-flow__controls-button svg{max-height:12px;max-width:12px;width:100%}.react-flow__controls-button:disabled{pointer-events:none}.react-flow__controls-button:disabled svg{fill-opacity:.4}.react-flow__minimap{background-color:#fff}.react-flow__resize-control{position:absolute}.react-flow__resize-control.left,.react-flow__resize-control.right{cursor:ew-resize}.react-flow__resize-control.bottom,.react-flow__resize-control.top{cursor:ns-resize}.react-flow__resize-control.bottom.right,.react-flow__resize-control.top.left{cursor:nwse-resize}.react-flow__resize-control.bottom.left,.react-flow__resize-control.top.right{cursor:nesw-resize}.react-flow__resize-control.handle{background-color:#3367d9;border:1px solid #fff;border-radius:1px;height:4px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:4px}.react-flow__resize-control.handle.left{left:0;top:50%}.react-flow__resize-control.handle.right{left:100%;top:50%}.react-flow__resize-control.handle.top{left:50%;top:0}.react-flow__resize-control.handle.bottom{left:50%;top:100%}.react-flow__resize-control.handle.bottom.left,.react-flow__resize-control.handle.top.left{left:0}.react-flow__resize-control.handle.bottom.right,.react-flow__resize-control.handle.top.right{left:100%}.react-flow__resize-control.line{border:0 solid #3367d9}.react-flow__resize-control.line.left,.react-flow__resize-control.line.right{height:100%;top:0;-webkit-transform:translate(-50%);transform:translate(-50%);width:1px}.react-flow__resize-control.line.left{border-left-width:1px;left:0}.react-flow__resize-control.line.right{border-right-width:1px;left:100%}.react-flow__resize-control.line.bottom,.react-flow__resize-control.line.top{height:1px;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%}.react-flow__resize-control.line.top{border-top-width:1px;top:0}.react-flow__resize-control.line.bottom{border-bottom-width:1px;top:100%}.text-fields-node{background-color:#fff;border:1px solid #000;border-radius:5px;min-width:200px;padding:10px}hr{background-color:#bbb;border:none;height:1px}.grouped-handle{background:#555;height:15px!important}.small-standard-font{font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:10pt}.status-icon{display:inline-block;font-size:14pt;margin:0 0 0 4px;padding:0}.status-icon .status-tooltip{border-radius:6px;color:#fff;font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:10pt;padding:5px;pointer-events:none;position:absolute;text-align:left;visibility:hidden;width:150px;z-index:9000}.status-icon:hover .status-tooltip{visibility:visible}.warning-status{color:#c72}.warning-status .status-tooltip{background-color:#c72}.ready-status{color:#4cbb17}.ready-status .status-tooltip{background-color:#4cbb17}.error-status{color:#e52a2a}.error-status .status-tooltip{background-color:#e52a2a}.lds-ring{display:inline-block;height:16px;margin-left:4px;position:relative;width:16px}.lds-ring div{-webkit-animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;animation:lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;border:2px solid transparent;border-radius:50%;border-top-color:#0096ff;box-sizing:border-box;display:block;height:16px;margin:2px;position:absolute;width:16px}.lds-ring div:first-child{-webkit-animation-delay:-.45s;animation-delay:-.45s}.lds-ring div:nth-child(2){-webkit-animation-delay:-.3s;animation-delay:-.3s}.lds-ring div:nth-child(3){-webkit-animation-delay:-.15s;animation-delay:-.15s}@-webkit-keyframes lds-ring{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes lds-ring{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.llm-list-container{background-color:#eee;border-radius:4px;max-height:205px;overflow-y:auto;padding:8px}.llm-list-backdrop{color:#777;font-size:10pt;margin:6px 0 6px 6px;padding-bottom:4px;text-align:left}button.remove-edge-btn{background-color:#ddd;border-color:#ddd;border-radius:50%;border-style:solid;cursor:pointer}button.remove-edge-btn:hover{background-color:#fff;border-color:#fff}button.remove-edge-btn:active{background-color:#777;border-color:#777;color:#fff}.input-field{align-items:center;display:flex;margin-bottom:5px}.input-field textarea{font-family:monospace}.remove-text-field-btn{background-color:inherit;border-style:none;color:#bbb;cursor:pointer;font-weight:700;margin-left:3px;padding:2px 4px}.remove-text-field-btn:hover{background-color:#eee;color:#666}.input-field input{margin-left:5px}.node-header{border:0;border-bottom:1px;border-style:dashed;margin-bottom:12px;padding-bottom:4px}.node-header:hover{border-bottom-color:#888}.prompt-node{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px;width:290px}.prompt-node textarea{box-sizing:border-box;resize:none;width:100%}.evaluator-node{background-color:#fff;border:1px solid #999;border-radius:5px;min-width:280px;padding:10px}.eval-output-footer{margin:10px -9px -9px;max-height:100px;min-height:100px}.eval-output-footer p{font-family:Monaco,Courier,monospace;font-size:9pt;margin:6px 8px;max-height:90px;max-width:100%;overflow:scroll;padding-bottom:0;padding-top:2px;position:absolute;white-space:pre-wrap}.eval-inspect-response-footer{background-color:#ceeaf5b1;cursor:zoom-in;margin:10px -9px -9px;max-height:100px;overflow-y:auto}.eval-inspect-response-footer button{cursor:zoom-in}.ace-editor-container{resize:vertical}.vis-node{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px}.plotly-vis{height:100%;overflow:auto;resize:both;width:100%}.plot-legend{font-family:monospace;font-size:11px}.plot-legend-item{cursor:pointer}.plot-legend-item:hover{opacity:.6}.plot-legend-item:active{opacity:.8}g.ytick text{line-height:2px}.response-var-inline>.response-var-name{font-size:8pt;font-weight:400}.response-var-inline>.response-var-value{font-size:8pt}.settings-var-inline{background:#eee;border-radius:0 0 12px 12px!important;margin:-3px 0 0!important;padding:4px 4px 8px 8px!important}.wrap-line{white-space:pre-wrap}.inspector-node{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px}.inspect-response-container{height:200px;max-height:750px;max-width:1150px;min-height:270px;min-width:150px;overflow-y:scroll;resize:both;width:280px}.inspect-modal-response-container .response-var-header{line-height:1.2;margin-top:8px;padding:10px}.inspect-modal-response-container .response-var-name{font-size:10pt;font-weight:700}.inspect-modal-response-container .response-var-value{font-size:10pt;letter-spacing:-.5px}.inspect-modal-response-container .response-llm-header{font-size:10pt}.inspect-modal-response-container .small-response{font-size:10pt;margin:6px -1px 8px;padding:8px}.inspect-modal-response-container .small-response-metrics{font-size:12pt}.inspect-modal-response-container .num-same-responses{font-size:10pt}.inspect-table-var{background-color:#e0f4fa}.inspect-table-metavar,.inspect-table-var{border-right:1px solid #cde;font-weight:500;padding-top:10px;white-space:pre-wrap}.inspect-table-metavar{background-color:#e0e8fa}.inspect-table-llm-resp{border-right:1px solid #eee;min-width:160px;padding-bottom:20px;padding-left:8px!important;padding-right:0!important;padding-top:8px}.inspect-responses-drawer{background-color:#fff;border:1px solid #999;border-bottom-left-radius:2px;border-bottom-right-radius:5px;border-top-right-radius:5px;box-shadow:inset 4px 0 4px 0 rgba(0,0,0,.1);left:100%;position:absolute;top:12px}.response-group-component-header:hover{color:#05e;cursor:pointer;text-decoration:underline}.response-group-component-header:active{color:#00c}.response-var-header{background-color:#e0f4fa;border-radius:1px;line-height:.9;padding:2px 8px 4px}.response-var-inline-container{align-items:start;display:flex;flex-wrap:wrap;justify-content:left;padding-bottom:1px}.response-llm-header{border-top-left-radius:5px;border-top-right-radius:15px;font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:9pt;font-weight:500;padding:4px 4px 4px 7px}.response-var-inline{border-radius:4px;color:#00000088;margin:0 4px;padding:0 4px;text-rendering:optimizeSpeed}.response-var-name{font-size:9pt;font-weight:700}.response-var-value{font-family:monospace;font-size:8pt}.inspect-modal-prompt-box{background-color:#eee;border-bottom-color:#aaa;border-bottom-style:solid;box-shadow:1px 1px 8px #ccc;margin:0 0 10px;max-height:200px;overflow-y:auto;padding:10px}.inspect-modal-prompt-text{font-family:monospace;font-size:11pt;white-space:pre-line}.inspect-modal-prompt-prefix{font-size:10pt;font-weight:700}.prompt-preview{background-color:#ddd;border-radius:6px;color:#444;font-family:monospace;font-size:10pt;margin:10px 0 0;padding:8px;white-space:pre-wrap}.join-text-preview{margin:0 0 10px}.small-response{background-color:hsla(0,0%,100%,.4);border-bottom:.0625rem dashed #fff;border-left-color:#fff;border-right-color:#fff;border-top:.0625rem dashed #fff;cursor:text;font-family:monospace;font-size:8pt;margin:4px 3px;padding:2px;-webkit-user-select:text;user-select:text;white-space:pre-wrap}.small-response-metrics{background-color:hsla(0,0%,100%,.3);border-top-left-radius:20px;border-top-right-radius:20px;color:#333;font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:10pt;font-weight:500;margin:8px 20% -6px;padding:0 2px 1px 0;text-align:center}.num-same-responses{background-color:#00000033;border-radius:5px;color:#fff;display:block;float:right;font-size:9pt;font-weight:500;height:12pt;overflow:hidden;padding:1px 4px;position:relative;right:3px;text-align:center;top:2pt}.llm-response-container{max-width:100%}.llm-response-container h1{margin:6px 8px 0}.llm-group-header,.llm-response-container h1{color:#222;font-size:10pt;font-weight:400;padding-bottom:0;padding-top:2px}.llm-group-header{margin:6px 8px 4px}.response-group{margin:2px 0 8px;padding:2px}.response-boxes-wrapper{border-left:2px solid #bbb;margin-top:4px;padding-left:10px}.response-box{border-radius:5px;margin:0 2px 4px;min-width:120px;padding:2px 0 1px}.response-item-llm-name-wrapper{padding-bottom:0}.response-item-llm-name-wrapper h1{color:#000000bb;font-size:8pt;font-style:italic;font-weight:700;margin:0;opacity:.7;padding-right:8px;text-align:right}.response-preview-container{background-color:#ceeaf5b1;cursor:zoom-in;margin:10px -9px -9px;max-height:100px;overflow-y:auto}.response-tag{color:#555;font-size:9pt;margin:0 0 0 2px}.cfnode{background-color:#fff;border:1px solid #999;border-radius:5px;padding:10px}.cfnode:hover{border-color:#222}.join-node{min-width:200px}.tabular-data-node{min-width:280px}.tabular-data-container{border-bottom:1px solid #ccc;border-left-color:#ccc;border-right:1px solid #ccc;border-top-color:#ccc;display:block;height:300px;min-width:inherit;overflow:auto;resize:both;width:400px}.tabular-data-container td,.tabular-data-container th{white-space:nowrap}.editable-table{table-layout:auto}.table-col-edit-btn{color:#888;cursor:pointer;height:"12px";margin:0;padding:2px;position:relative;top:1px;width:"12px"}.table-col-edit-btn:hover{background-color:#eee}.table-col-edit-btn:active{background-color:#ddd}.content-editable-div{cursor:text;font-family:monospace;font-size:10pt;line-height:1;margin:6px 0;max-height:150px;overflow-y:scroll;white-space:pre-wrap}th .content-editable-div{font-family:-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}[contenteditable=true]:empty:not(:focus):before{color:grey;content:attr(placeholder);font-style:italic}.add-table-row-btn{align-items:center;display:flex;justify-content:center;margin-top:2px;position:absolute;width:100%}.add-table-row-btn button{margin-right:10px}.var-select-toolbar{margin:0 0 -30px;padding:0;position:relative;text-align:right}.var-select-toolbar label{font-size:12px}.var-select-toolbar select{font-size:12px;width:100px}.code-style{background-color:#ddd;font-family:Courier New,Courier,monospace}.hook-tag{padding-bottom:3px;padding-top:5px}.code-mirror-field-header{color:#333;font-size:10pt;margin-bottom:4px}.text-field-fixed .mantine-Textarea-wrapper textarea{width:260px}.prompt-field-fixed .mantine-Textarea-wrapper textarea,.text-field-fixed .mantine-Textarea-wrapper textarea{border-color:#999;font-family:monospace;font-size:10pt;line-height:1.2;overflow-y:auto;padding:.16667rem;resize:vertical}.add-text-field-btn{align-items:center;display:flex;justify-content:center}.add-llm-model-btn{align-items:right;display:flex;float:right;height:20px;justify-content:right}.add-llm-model-btn button{border:1pt solid #777;border-radius:3px;color:#777;margin-right:2px}.add-llm-model-btn:hover button{background-color:#fff}.add-llm-model-btn:active button{background-color:#000;color:#fff}.play-button{background:transparent;border:0;border-color:transparent transparent transparent #202020;border-style:solid;border-width:5px 0 5px 10px;box-sizing:border-box;height:10px;margin:2px;pointer-events:none;width:0}.AmitSahoo45-button-3{background:rgba(63,204,106,.2);border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#333;cursor:pointer;font-size:12px;height:20px;margin-right:3px;margin-top:-5px;overflow:hidden;padding:2px 10px;position:relative;transition:all .2s ease-in}.AmitSahoo45-button-3:hover{background:#1ac845;box-shadow:0 0 30px 5px rgba(63,234,106,.815);color:#fff;transition:all .2s ease-out}.AmitSahoo45-button-3:active{background:#40a829;color:#ff0}.AmitSahoo45-button-3:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.AmitSahoo45-button-3:before{background:#fff;box-shadow:0 0 50px 30px #fff;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.script-node-input{width:100%}.node-header-btns-container{float:right;margin-left:10px;margin-right:0;margin-top:-3px}.close-button{background:transparent;border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#333;cursor:pointer;font-size:12px;margin-top:-7px;overflow:hidden;padding:2px 6px;position:relative;transition:all .2s ease-in}.close-button:hover{background:#c81a45;box-shadow:0 0 30px 5px rgba(234,63,106,.815);color:#fff;transition:all .2s ease-out}.close-button:active{background:#600;color:#ff0}.close-button:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.close-button:before{background:#fff;box-shadow:0 0 50px 30px #fff;color:#000;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.custom-button{background:transparent;border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#333;cursor:pointer;font-size:12px;margin-right:3px;margin-top:-7px;overflow:hidden;padding:2px 6px;position:relative;text-decoration:none;transition:all .2s ease-in}.custom-button:hover{background:#f1d02c;box-shadow:0 0 30px 5px rgba(255,222,35,.815);color:#fff;transition:all .2s ease-out}.custom-button:active{background:#a36a07;color:#330a06}.custom-button:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.custom-button:before{background:#fff;box-shadow:0 0 50px 30px #fff;color:#000;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.ai-button{background:#f2d2f3;border:1px solid #999;border-radius:5px;box-shadow:0 0 0 0 transparent;color:#666;cursor:pointer;font-size:12px;margin-right:3px;margin-top:-7px;overflow:hidden;padding:2px 6px;position:relative;transition:all .2s ease-in}.ai-button:hover{background:#b13fcc;box-shadow:0 0 30px 5px #b13fcc;color:#fff;transition:all .2s ease-out}.ai-button:active{background:#812897}.ai-button:hover:before{-webkit-animation:sh02 .5s linear 0s;animation:sh02 .5s linear 0s}.ai-button:before{background:#fff;box-shadow:0 0 50px 30px #fff;color:#000;content:"";display:block;height:86%;left:0;opacity:0;position:absolute;top:7%;-webkit-transform:skewX(-20deg);transform:skewX(-20deg);width:0}.text-blink{-webkit-animation:blinker .75s linear infinite;animation:blinker .75s linear infinite;font-family:sans-serif}@-webkit-keyframes blinker{50%{opacity:0}}@keyframes blinker{50%{opacity:0}}.chat-bubble{--r:15px;--t:25px;background:#333 border-box;color:#fff;-webkit-mask:radial-gradient(var(--t) at var(--_d) 0,#0000 98%,#000 102%) var(--_d) 100% /calc(100% - var(--r)) var(--t) no-repeat,conic-gradient(at var(--r) var(--r),#000 75%,#0000 0) calc(var(--r)/-2) calc(var(--r)/-2) padding-box,radial-gradient(50% 50%,#000 98%,#0000 101%) 0 0 /var(--r) var(--r) space padding-box;mask:radial-gradient(var(--t) at var(--_d) 0,#0000 98%,#000 102%) var(--_d) 100% /calc(100% - var(--r)) var(--t) no-repeat,conic-gradient(at var(--r) var(--r),#000 75%,#0000 0) calc(var(--r)/-2) calc(var(--r)/-2) padding-box,radial-gradient(50% 50%,#000 98%,#0000 101%) 0 0 /var(--r) var(--r) space padding-box;max-width:80%;padding:calc(var(--r)*2/3)}.chat-msg-left{--_d:0%;border-left:var(--t) solid #0000;margin-right:var(--t);place-self:start}.chat-msg-right{--_d:100%;border-right:var(--t) solid #0000;margin-left:var(--t);place-self:end}.chat-history{grid-gap:10px;display:grid;font-family:system-ui,sans-serif;font-size:14px;gap:10px;margin:0;min-height:10vh;place-content:left;width:100%}.something-changed-circle{background-color:red;border:0 solid;border-radius:50%;height:6px;margin-bottom:10px;margin-left:2px;opacity:.7;width:6px}.rjsf fieldset{border-style:none;margin-left:30px;margin-right:30px;margin-top:20px}.rjsf fieldset .field-array{margin:0;padding:0}.rjsf .field-array legend,.rjsf label.control-label{font-size:11pt;font-weight:700}.rjsf input{resize:none;width:100%}.rjsf select{width:100%}.rjsf textarea{resize:vertical;width:100%}.rjsf .field-description{color:#444;margin-top:8px}.rjsf fieldset .form-group{border-top-color:#ddd;border-top-style:solid;font-size:9pt;margin-bottom:30px;padding-top:6px}.rjsf button.btn{float:right;margin-right:30px}.rjsf button.btn-add{background:#40a829;height:20px;width:20px}.rjsf button.btn-danger{background:#600}.rjsf .help-block{color:#999;margin:0} +/*# sourceMappingURL=main.213af966.css.map*/ \ No newline at end of file diff --git a/chainforge/react-server/build/static/css/main.213af966.css.map b/chainforge/react-server/build/static/css/main.213af966.css.map new file mode 100644 index 00000000..3e4a8db4 --- /dev/null +++ b/chainforge/react-server/build/static/css/main.213af966.css.map @@ -0,0 +1 @@ +{"version":3,"file":"static/css/main.213af966.css","mappings":"AAAA,KAKE,kCAAmC,CACnC,iCAAkC,CAJlC,mIAEY,CAHZ,QAMF,CAEA,KACE,uDACF,CAEA,aACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAGF,CAEA,mBACE,eACF,CAEA,aAGE,wBAAyB,CAIzB,WAAY,CAMZ,kBAAmB,CAXnB,aAAc,CAUd,cAAe,CAFf,oBAAqB,CALrB,qBAAsB,CADtB,iBAAkB,CAOlB,cAAe,CALf,iBAAoB,CALpB,iBAAkB,CAOlB,iBAAkB,CAClB,oBAKF,CAGA,WACE,aACF,CAEA,SAEE,gBAAiB,CACjB,eAAgB,CAFhB,WAGF,CAEA,WAEE,YAAa,CADb,WAEF,CCtDA,QAKE,eAAgB,CAJhB,eAAgB,CAChB,sBAAuB,CAEvB,8BAAgC,CADhC,kBAGF,CAEA,cAEE,4BAAoC,CADpC,cAEF,CAEA,QACE,eAAgB,CAChB,8BACF,CAGA,2BACE,SACF,CAEA,iCACE,kBACF,CAEA,iCACE,eACF,CAEA,uCACE,eACF,CAEA,wCACE,eACF,CAEA,cAEE,4BAAoC,CADpC,cAEF,CAEA,QAGE,aAAc,CACd,YAAa,CAFb,WAAY,CAGZ,oBAAqB,CAJrB,UAKF,CAGA,2BACE,SACF,CAEA,iCACE,kBACF,CAEA,iCACE,eACF,CAEA,uCACE,eACF,CAEA,wCACE,eACF,CAEA,QACE,UACF,CAEA,QACE,wBACF,CAMA,sBACE,qBACF,CAEA,QACE,YACF,CAEA,QACE,qBAAsB,CACtB,UAAY,CAGZ,cACF,CAEA,sBALE,QAAS,CACT,YAOF,CCtGA,uBAGE,WAAY,CAEZ,MAAO,CAJP,iBAAkB,CAGlB,KAAM,CAFN,UAIF,CACA,kBAGE,WAAY,CAFZ,SAGF,CACA,4BACI,cACF,CACF,2BAEI,eACF,CACF,sBAGE,mBAAoB,CAFpB,4BAAqB,CAArB,oBAAqB,CACrB,SAEF,CACA,sBACE,SACF,CACA,uBACE,SACF,CACA,sFAEE,YACF,CACA,+BAEE,gBAAiB,CADjB,mBAEF,CACA,oDAEE,cAAe,CACf,cAAe,CACf,SACF,CACA,kBAEE,cAAe,CADf,4BAEF,CACA,gCACI,kBAAmB,CACnB,8CAAgD,CACxC,sCACV,CACF,6DACI,qBAAsB,CACtB,sBAAuB,CACf,cACV,CACF,2BACI,mBACF,CACF,mFAGI,YACF,CACF,wJAGI,WACF,CACF,8BACI,kBACF,CACF,yBACI,SACF,CACF,yCACI,mBAAoB,CACpB,wBAAyB,CAEjB,gBACV,CACF,wBACE,mBACF,CACA,kCACI,kBAAmB,CACnB,8CAAgD,CACxC,sCACV,CACF,4BACE,YACF,CACA,mBACE,mBAEF,CACA,qCAFE,4BAAqB,CAArB,oBAYF,CAVA,kBAOE,qBAAsB,CAEtB,WAAY,CAJZ,kBAAmB,CAJnB,iBAAkB,CAClB,wBAAyB,CAEjB,gBAMV,CACA,2BAEI,eACF,CACF,4BAGE,mBAAoB,CADpB,iCAA0B,CAA1B,yBAA0B,CAD1B,SAGF,CACA,iCAII,WAAY,CAFZ,kBAAmB,CADnB,iBAIF,CACF,oBAOE,kBAAmB,CACnB,qBAAuB,CACvB,kBAAmB,CAHnB,UAAW,CAFX,cAAe,CADf,aAAc,CADd,mBAAoB,CADpB,iBAAkB,CAIlB,SAKF,CACA,wCAEI,gBAAiB,CADjB,kBAEF,CACF,2BAGI,WAAY,CAFZ,QAIF,CACF,mDAJI,QAAS,CAET,iCAA6B,CAA7B,yBAMF,CAJF,wBAEI,QAEF,CACF,yBAEI,SAEF,CACF,mDAJI,OAAQ,CAER,kCAA6B,CAA7B,0BAMF,CAJF,0BACI,UAGF,CACF,yBACE,WAAY,CACZ,kBACF,CACA,mBAGE,WAAY,CAFZ,iBAAkB,CAClB,SAEF,CACA,uBACI,KACF,CACF,0BACI,QACF,CACF,wBACI,MACF,CACF,yBACI,OACF,CACF,0BACI,QAAS,CACT,kCAA2B,CAA3B,0BACF,CACF,yBAEE,6BAAoC,CADpC,cAAe,CAGf,QAAS,CADT,eAEF,CACA,2BAEI,UAAW,CADX,oBAEF,CACF,4BACE,GACE,oBACF,CACF,CACA,oBACE,GACE,oBACF,CACF,CACA,gCAGE,WAAY,CACZ,mBAAoB,CAHpB,iBAAkB,CAIlB,wBAAyB,CAEjB,gBAAiB,CALzB,UAMF,CACA,kDACM,WACF,CACJ,uBACI,cACF,CACF,8EAEI,YACF,CACF,mGAaE,qBAAuB,CADvB,wBAAqB,CAPrB,iBAAkB,CAGlB,UAAW,CADX,cAAe,CAHf,YAAa,CAKb,iBAAkB,CAHlB,WAQF,CACA,uKACM,wCACF,CACJ,iiBAYM,6BACF,CACJ,wBACE,mCACF,CACA,wDAEE,6BAAkC,CAClC,mCACF,CACA,wJAII,YACF,CACF,sBACE,sCACF,CACA,6BAOI,kBAAmB,CALnB,kBAAmB,CACnB,WAA6B,CAA7B,4BAA6B,CAC7B,kBAAuB,CAMvB,cAAe,CALf,YAAa,CAIb,WAAY,CAHZ,sBAAuB,CAQvB,WAAY,CAHZ,wBAAyB,CAEjB,gBAAiB,CALzB,UAOF,CACF,mCACM,kBACF,CACJ,iCAGM,eAAgB,CADhB,cAAe,CADf,UAGF,CACJ,sCACM,mBACF,CACJ,0CACQ,eACF,CACN,qBACE,qBACF,CACA,4BACE,iBACF,CACA,mEAEE,gBACF,CACA,mEAEE,gBACF,CACA,8EAEE,kBACF,CACA,8EAEE,kBACF,CAEA,mCAKE,wBAAyB,CAFzB,qBAAsB,CACtB,iBAAkB,CAFlB,UAAW,CAIX,sCAAgC,CAAhC,8BAAgC,CALhC,SAMF,CACA,wCACE,MAAO,CACP,OACF,CACA,yCACE,SAAU,CACV,OACF,CACA,uCACE,QAAS,CACT,KACF,CACA,0CACE,QAAS,CACT,QACF,CAIA,2FACE,MACF,CAIA,6FACE,SACF,CAEA,iCAGE,sBACF,CACA,6EAKE,WAAY,CADZ,KAAM,CADN,iCAA6B,CAA7B,yBAA6B,CAD7B,SAIF,CACA,sCAEE,qBAAsB,CADtB,MAEF,CACA,uCAEE,sBAAuB,CADvB,SAEF,CACA,6EAEE,UAAW,CAEX,MAAO,CADP,kCAA6B,CAA7B,0BAA6B,CAE7B,UACF,CACA,qCAEE,oBAAqB,CADrB,KAEF,CACA,wCACE,uBAAwB,CACxB,QACF,CC/YA,kBACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAClB,eAAgB,CAHhB,YAIF,CAEA,GAEE,qBAAsB,CADtB,WAAY,CAEZ,UACF,CAEA,gBACE,eAAgB,CAChB,qBACF,CAEA,qBAEE,gHACsE,CAFtE,cAGF,CAEA,aACE,oBAAqB,CACrB,cAAe,CACf,gBAAuB,CACvB,SACF,CACA,6BAQE,iBAAkB,CAFlB,UAAW,CAHX,gHACsE,CAFtE,cAAe,CAOf,WAAY,CACZ,mBAAoB,CAGpB,iBAAkB,CANlB,eAAgB,CANhB,iBAAkB,CAIlB,WAAY,CASZ,YACF,CACA,mCACE,kBACF,CACA,gBACE,UACF,CACA,gCACE,qBACF,CACA,cACE,aACF,CACA,8BACE,wBACF,CACA,cACE,aACF,CACA,8BACE,wBACF,CAGA,UACE,oBAAqB,CAIrB,WAAY,CAFZ,eAAgB,CADhB,iBAAkB,CAElB,UAEF,CACA,cASE,gEAA8D,CAA9D,wDAA8D,CAC9D,4BAAyD,CAFzD,iBAAkB,CAElB,wBAAyD,CATzD,qBAAsB,CACtB,aAAc,CAGd,WAAY,CACZ,UAAW,CAHX,iBAAkB,CAClB,UAOF,CACA,0BACE,6BAAuB,CAAvB,qBACF,CACA,2BACE,4BAAsB,CAAtB,oBACF,CACA,2BACE,6BAAuB,CAAvB,qBACF,CACA,4BACE,GACE,8BAAuB,CAAvB,sBACF,CACA,GACE,+BAAyB,CAAzB,uBACF,CACF,CAPA,oBACE,GACE,8BAAuB,CAAvB,sBACF,CACA,GACE,+BAAyB,CAAzB,uBACF,CACF,CAEA,oBACE,qBAAsB,CACtB,iBAAkB,CAGlB,gBAAiB,CADjB,eAAgB,CADhB,WAGF,CACA,mBAKE,UAAW,CADX,cAAe,CAHf,oBAAuB,CACvB,kBAAmB,CACnB,eAGF,CAEA,uBAIE,qBAAsB,CAFtB,iBAAkB,CADlB,iBAAkB,CAElB,kBAAmB,CAEnB,cACF,CACA,6BACE,qBAAuB,CACvB,iBACF,CACA,8BACE,qBAAsB,CAEtB,iBAAkB,CADlB,UAEF,CAEA,aAEE,kBAAmB,CADnB,YAAa,CAEb,iBACF,CACA,sBACE,qBACF,CAEA,uBAIE,wBAAyB,CADzB,iBAAkB,CAElB,UAAW,CAEX,cAAe,CADf,eAAiB,CALjB,eAAgB,CAChB,eAMF,CACA,6BAEE,qBAAsB,CADtB,UAEF,CAEA,mBACE,eACF,CAEA,aAIE,QAAiB,CAAjB,iBAAiB,CACjB,mBAAoB,CACpB,kBAAmB,CACnB,kBACF,CACA,mBACE,wBACF,CAEA,aACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAAa,CAGb,WACF,CAEA,sBAGE,qBAAsB,CADtB,WAAY,CADZ,UAGF,CAEA,gBACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAClB,eAAgB,CAHhB,YAIF,CACA,oBACE,qBAA2B,CAE3B,gBAAiB,CADjB,gBAGF,CACA,sBAIE,oCAAyC,CACzC,aAAc,CACd,cAAuB,CAGvB,eAAgB,CAChB,cAAe,CARf,eAAgB,CAMhB,gBAAmB,CADnB,eAAgB,CANhB,iBAAkB,CAElB,oBAQF,CACA,8BAIE,0BAA2B,CAE3B,cAAe,CALf,qBAA2B,CAC3B,gBAAiB,CACjB,eAIF,CACA,qCACE,cACF,CAUA,sBACE,eACF,CAEA,UACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAGF,CACA,YAEE,WAAY,CAEZ,aAAc,CADd,WAAY,CAFZ,UAIF,CACA,aAEE,qBAAsB,CADtB,cAEF,CACA,kBACE,cACF,CACA,wBACE,UACF,CACA,yBACE,UACF,CAEA,aACE,eACF,CAEA,wCACE,aAAc,CACd,eACF,CACA,yCACE,aACF,CAEA,qBACE,eAAgB,CAGhB,qCAA2C,CAF3C,yBAAmC,CACnC,iCAEF,CACA,WACE,oBACF,CAEA,gBACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAGF,CACA,4BAKE,YAAa,CAEb,gBAAiB,CADjB,gBAAiB,CAFjB,gBAAiB,CAFjB,eAAgB,CADhB,iBAAkB,CAOlB,WAAY,CALZ,WAMF,CACA,uDAGE,eAAgB,CADhB,cAAe,CADf,YAGF,CACA,qDACE,cAAe,CACf,eACF,CACA,sDACE,cAAe,CACf,oBACF,CACA,uDACE,cACF,CACA,kDACE,cAAe,CACf,mBAAyB,CACzB,WACF,CACA,0DACE,cACF,CACA,sDACE,cACF,CACA,mBACE,wBAKF,CACA,0CAJE,2BAA4B,CAC5B,eAAgB,CAFhB,gBAAiB,CAGjB,oBAQF,CANA,uBACE,wBAKF,CACA,wBAIE,2BAA4B,CAD5B,eAAgB,CADhB,mBAAoB,CAGpB,0BAA4B,CAC5B,yBAA6B,CAL7B,eAMF,CACA,0BAIE,qBAAuB,CACvB,qBAAsB,CAGtB,6BAA8B,CAD9B,8BAA+B,CAD/B,2BAA4B,CAG5B,2CAAoD,CAPpD,SAAU,CADV,iBAAkB,CAElB,QAOF,CACA,uCACE,UAAW,CACX,cAAe,CACf,yBACF,CACA,wCACE,UACF,CACA,qBACE,wBAAyB,CACzB,iBAAkB,CAElB,cAAgB,CADhB,mBAEF,CACA,+BAEE,iBAAkB,CADlB,YAAa,CAEb,cAAe,CACf,oBAAqB,CAErB,kBACF,CACA,qBAME,0BAA2B,CAC3B,4BAA6B,CAN7B,gHACsE,CACtE,aAAc,CACd,eAAgB,CAChB,uBAGF,CACA,qBAIE,iBAAkB,CADlB,eAAgB,CAFhB,YAAe,CAMf,aAAgB,CAFhB,4BAGF,CACA,mBACE,aAAc,CACd,eACF,CACA,oBACE,qBAAsB,CACtB,aACF,CACA,0BACE,qBAAsB,CAItB,wBAAyB,CADzB,yBAA0B,CAE1B,2BAA4B,CAH5B,eAAwB,CAIxB,gBAAiB,CACjB,eAAgB,CANhB,YAOF,CACA,2BACE,qBAAsB,CACtB,cAAe,CACf,oBACF,CACA,6BACE,cAAe,CACf,eACF,CAEA,gBAME,qBAAsB,CAHtB,iBAAkB,CAIlB,UAAW,CALX,qBAAsB,CADtB,cAAe,CAIf,eAAwB,CADxB,WAAY,CAIZ,oBACF,CACA,mBACE,eACF,CAEA,gBAUE,mCAA0C,CAH1C,kCAAkB,CAAlB,sBAAkB,CAAlB,uBAAkB,CAAlB,+BAAkB,CAMlB,WAAY,CAXZ,qBAAsB,CADtB,aAAc,CAQd,cAAe,CADf,WAAY,CAIZ,wBAAiB,CAAjB,gBAAiB,CADjB,oBAGF,CACA,wBAUE,mCAA0C,CAJ1C,2BAA4B,CAC5B,4BAA6B,CAI7B,UAAW,CATX,gHACsE,CAFtE,cAAe,CAGf,eAAgB,CAKhB,mBAAwB,CADxB,mBAAwB,CAHxB,iBAOF,CACA,oBAUE,0BAA2B,CAC3B,iBAAkB,CAGlB,UAAY,CAZZ,aAAc,CACd,WAAY,CASZ,aAAc,CACd,eAAgB,CAJhB,WAAY,CAMZ,eAAgB,CAPhB,eAAgB,CAPhB,iBAAkB,CAKlB,SAAU,CAFV,iBAAkB,CAClB,OAWF,CAEA,wBACE,cACF,CACA,2BAGE,gBAIF,CAEA,6CAHE,UAAW,CAJX,cAAe,CADf,eAAgB,CAIhB,gBAAmB,CADnB,eAYF,CAPA,kBAGE,kBAIF,CAEA,gBACE,gBAAuB,CACvB,WAEF,CACA,wBAKE,0BAAuB,CAJvB,cAAe,CACf,iBAIF,CACA,cAGE,iBAAkB,CADlB,gBAAuB,CAEvB,eAAgB,CAHhB,iBAKF,CAEA,gCACE,gBACF,CACA,mCAKE,eAAgB,CAJhB,aAAc,CAEd,iBAAkB,CADlB,eAAiB,CAOjB,QAAW,CAHX,UAAY,CAEZ,iBAAkB,CADlB,gBAGF,CAEA,4BAIE,0BAA2B,CAC3B,cAAe,CAJf,qBAA2B,CAC3B,gBAAiB,CACjB,eAGF,CAEA,cAEE,UAAW,CADX,aAAc,CAEd,gBACF,CAEA,QACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAIF,CACA,cACE,iBACF,CAEA,WACE,eACF,CAEA,mBACE,eACF,CACA,wBAYE,4BAAkB,CAAlB,sBAAkB,CAAlB,2BAAkB,CAAlB,qBAAkB,CAClB,aAAc,CAPd,YAAa,CADb,iBAAkB,CAHlB,aAAc,CADd,WAAY,CAGZ,WAUF,CAIA,sDACE,kBACF,CACA,gBACE,iBACF,CACA,oBAKE,UAAW,CAGX,cAAe,CADf,aAAc,CAJd,QAAW,CACX,WAAY,CAHZ,iBAAkB,CAClB,OAAQ,CAIR,YAGF,CACA,0BACE,qBACF,CACA,2BACE,qBACF,CACA,sBAQE,WAAY,CAHZ,qBAAsB,CACtB,cAAe,CACf,aAAc,CAHd,YAAe,CADf,gBAAiB,CADjB,iBAAkB,CADlB,oBAQF,CACA,yBACE,gHAEF,CACA,gDAEE,UAAW,CADX,yBAA0B,CAE1B,iBACF,CACA,mBAIE,kBAAmB,CADnB,YAAa,CAEb,sBAAuB,CACvB,cAAe,CALf,iBAAkB,CAClB,UAKF,CACA,0BACE,iBACF,CAeA,oBAKE,gBAAoB,CAFpB,SAAY,CACZ,iBAAkB,CAHlB,gBAKF,CACA,0BACE,cACF,CACA,2BAEE,cAAe,CADf,WAEF,CAEA,YACE,qBAAsB,CACtB,yCACF,CAEA,UAEE,kBAAmB,CADnB,eAEF,CAEA,0BAEE,UAAW,CADX,cAAe,CAEf,iBACF,CAGA,qDAGE,WAMF,CACA,4GAFE,iBAAkB,CAFlB,qBAAsB,CADtB,cAAe,CAEf,eAAgB,CALhB,eAAgB,CAEhB,iBAAyB,CAHzB,eAiBF,CAEA,oBAEE,kBAAmB,CADnB,YAAa,CAEb,sBACF,CAEA,mBAEE,iBAAkB,CADlB,YAAa,CAGb,WAAY,CACZ,WAAY,CAFZ,qBAGF,CACA,0BAGE,qBAAiB,CACjB,iBAAkB,CAClB,UAAW,CACX,gBACF,CACA,gCACE,qBACF,CACA,iCACE,qBAAuB,CACvB,UACF,CAGA,aAEE,sBAAuB,CADvB,QAAS,CAST,wDAA4B,CAA5B,kBAA4B,CAA5B,2BAA4B,CAP5B,qBAAsB,CAEtB,WAAY,CACZ,UAAW,CACX,mBAAoB,CAHpB,OAOF,CAGA,sBASE,8BAAkC,CAFlC,qBAAsB,CADtB,iBAAkB,CAMlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CARf,cAAe,CALf,WAAY,CAEZ,gBAAiB,CADjB,eAAgB,CAOhB,eAAgB,CAThB,gBAAiB,CADjB,iBAAkB,CAclB,0BAEF,CAEA,4BACE,kBAA4B,CAE5B,6CAAiD,CADjD,UAAY,CAIZ,2BACF,CACA,6BACE,kBAAmB,CACnB,UACF,CAEA,mCAEE,oCAA8B,CAA9B,4BACF,CAEA,6BASE,eAAgB,CAChB,6BAA8B,CAT9B,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAKP,+BAAgC,CAIhC,uBAAwB,CAZxB,OAaF,CAEA,mBACE,UACF,CAEA,4BACE,WAAY,CAEZ,gBAAiB,CADjB,cAAiB,CAEjB,eACF,CAGA,cAOE,sBAAuB,CAFvB,qBAAsB,CADtB,iBAAkB,CAMlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CARf,cAAe,CAHf,eAAgB,CAMhB,eAAgB,CAPhB,eAAgB,CADhB,iBAAkB,CAYlB,0BAEF,CACA,oBACE,kBAA4B,CAE5B,6CAAiD,CADjD,UAAY,CAIZ,2BACF,CACA,qBACE,eAAmB,CACnB,UACF,CACA,2BAEE,oCAA8B,CAA9B,4BACF,CACA,qBAUE,eAAgB,CAChB,6BAA8B,CAF9B,UAAY,CARZ,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAMP,+BAAgC,CAIhC,uBAAwB,CAbxB,OAcF,CAGA,eASE,sBAAuB,CAFvB,qBAAsB,CADtB,iBAAkB,CAMlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CARf,cAAe,CAHf,gBAAiB,CADjB,eAAgB,CAOhB,eAAgB,CARhB,eAAgB,CAFhB,iBAAkB,CAClB,oBAAqB,CAarB,0BAEF,CACA,qBACE,kBAA6B,CAE7B,6CAAkD,CADlD,UAAY,CAIZ,2BACF,CACA,sBACE,kBAAmB,CACnB,aACF,CACA,4BAEE,oCAA8B,CAA9B,4BACF,CACA,sBAUE,eAAgB,CAChB,6BAA8B,CAF9B,UAAY,CARZ,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAMP,+BAAgC,CAIhC,uBAAwB,CAbxB,OAcF,CAGA,WAeE,kBAAmB,CATnB,qBAAsB,CADtB,iBAAkB,CAKlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CAPf,cAAe,CAHf,gBAAiB,CADjB,eAAgB,CAMhB,eAAgB,CAPhB,eAAgB,CADhB,iBAAkB,CAYlB,0BAGF,CACA,iBACE,kBAA6B,CAE7B,+BAA0C,CAD1C,UAAY,CAIZ,2BACF,CACA,kBACE,kBACF,CACA,wBAEE,oCAA8B,CAA9B,4BACF,CACA,kBAUE,eAAgB,CAChB,6BAA8B,CAF9B,UAAY,CARZ,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAMP,+BAAgC,CAIhC,uBAAwB,CAbxB,OAcF,CAGA,YACE,8CAAwC,CAAxC,sCAAwC,CACxC,sBACF,CACA,2BACE,IACE,SACF,CACF,CAJA,mBACE,IACE,SACF,CACF,CAGA,aACE,QAAS,CACT,QAAS,CAWT,0BAA2B,CAC3B,UAAW,CARX,8TAMe,CANf,sTAMe,CARf,aAAc,CACd,0BAUF,CACA,eACE,OAAQ,CACR,gCAAiC,CACjC,qBAAsB,CACtB,gBACF,CACA,gBACE,SAAU,CACV,iCAAkC,CAClC,oBAAqB,CACrB,cACF,CACA,cAME,aAAS,CAHT,YAAa,CAIb,gCAAkC,CAClC,cAAe,CAFf,QAAS,CALT,QAAS,CACT,eAAgB,CAEhB,kBAAmB,CACnB,UAIF,CAEA,0BAKE,oBAAyB,CADzB,cAAiB,CADjB,iBAAkB,CADlB,UAAW,CAKX,kBAAmB,CACnB,eAAgB,CAFhB,UAAY,CALZ,SAQF,CAGA,eACE,iBAAkB,CAElB,gBAAiB,CACjB,iBAAkB,CAFlB,eAGF,CACA,4BACE,QAAS,CACT,SACF,CAKA,oDAEE,cAAe,CADf,eAEF,CAEA,YAEE,WAAY,CADZ,UAEF,CACA,aACE,UACF,CACA,eAEE,eAAgB,CADhB,UAEF,CAEA,yBACE,UAAW,CACX,cACF,CAEA,2BAKE,qBAAsB,CADtB,sBAAuB,CADvB,aAAc,CAFd,kBAAmB,CACnB,eAIF,CAEA,iBACE,WAAY,CACZ,iBACF,CACA,qBAGE,kBAAmB,CADnB,WAAY,CADZ,UAGF,CACA,wBACE,eACF,CAEA,kBACE,UAAW,CACX,QACF","sources":["index.css","../node_modules/react-edit-text/dist/styles.module.css","../node_modules/reactflow/dist/style.css","text-fields-node.css"],"sourcesContent":["body {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\",\n \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\n\n.script-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #000;\n border-radius: 5px;\n}\n\n.script-node-input {\n min-width: 300px;\n}\n\n.csv-element {\n position: relative;\n color: #8a3e07;\n background-color: #ffe8cc;\n font-size: inherit;\n font-family: monospace;\n padding: 0.2em 0.4em;\n border: none;\n text-align: center;\n text-decoration: none;\n display: inline-block;\n margin: 4px 2px;\n cursor: pointer;\n border-radius: 10px;\n}\n\n/* set a muted text */\n.csv-comma {\n color: #ffc107;\n}\n\n.csv-div {\n width: 290px;\n max-height: 250px;\n overflow-y: auto;\n}\n\n.csv-input {\n width: 290px;\n height: 150px;\n}\n",".label {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n transition: background 0.2s ease;\n min-height: 28px;\n}\n\n.label:hover {\n cursor: pointer;\n background: rgba(220, 220, 220, 0.4);\n}\n\n.textareaView {\n overflow-y: auto;\n transition: background 0.2s ease;\n}\n\n/* Width */\n.textareaView::-webkit-scrollbar {\n width: 8px;\n}\n/* Track */\n.textareaView::-webkit-scrollbar-track {\n background: #f1f1f1;\n}\n/* Handle */\n.textareaView::-webkit-scrollbar-thumb {\n background: #ccc;\n}\n/* Handle on hover */\n.textareaView::-webkit-scrollbar-thumb:hover {\n background: #aaa;\n}\n/* Handle on drag */\n.textareaView::-webkit-scrollbar-thumb:active {\n background: #666;\n}\n\n.textareaView:hover {\n cursor: pointer;\n background: rgba(220, 220, 220, 0.4);\n}\n\n.shared {\n width: 100%;\n padding: 5px;\n display: block;\n margin: 3px 0;\n scrollbar-width: thin;\n}\n\n/* Width */\n.shared::-webkit-scrollbar {\n width: 8px;\n}\n/* Track */\n.shared::-webkit-scrollbar-track {\n background: #f1f1f1;\n}\n/* Handle */\n.shared::-webkit-scrollbar-thumb {\n background: #ccc;\n}\n/* Handle on hover */\n.shared::-webkit-scrollbar-thumb:hover {\n background: #aaa;\n}\n/* Handle on drag */\n.shared::-webkit-scrollbar-thumb:active {\n background: #666;\n}\n\n.placeholder {\n color: #999;\n}\n\n.inline {\n display: inline !important;\n}\n\n.readonly {\n cursor: auto !important;\n}\n\n.readonly:hover {\n cursor: auto !important;\n}\n\n.displayContainer {\n display: flex;\n}\n\n.editButton {\n background-color: #fff;\n color: black;\n border: 0;\n outline: none;\n min-width: 28px;\n}\n\n.editButton:focus {\n border: 0;\n outline: none;\n}\n","/* this gets exported as style.css and can be used for the default theming */\n/* these are the necessary styles for React Flow, they get used by base.css and style.css */\n.react-flow__container {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n}\n.react-flow__pane {\n z-index: 1;\n cursor: -webkit-grab;\n cursor: grab;\n}\n.react-flow__pane.selection {\n cursor: pointer;\n }\n.react-flow__pane.dragging {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n }\n.react-flow__viewport {\n transform-origin: 0 0;\n z-index: 2;\n pointer-events: none;\n}\n.react-flow__renderer {\n z-index: 4;\n}\n.react-flow__selection {\n z-index: 6;\n}\n.react-flow__nodesselection-rect:focus,\n.react-flow__nodesselection-rect:focus-visible {\n outline: none;\n}\n.react-flow .react-flow__edges {\n pointer-events: none;\n overflow: visible;\n}\n.react-flow__edge-path,\n.react-flow__connection-path {\n stroke: #b1b1b7;\n stroke-width: 1;\n fill: none;\n}\n.react-flow__edge {\n pointer-events: visibleStroke;\n cursor: pointer;\n}\n.react-flow__edge.animated path {\n stroke-dasharray: 5;\n -webkit-animation: dashdraw 0.5s linear infinite;\n animation: dashdraw 0.5s linear infinite;\n }\n.react-flow__edge.animated path.react-flow__edge-interaction {\n stroke-dasharray: none;\n -webkit-animation: none;\n animation: none;\n }\n.react-flow__edge.inactive {\n pointer-events: none;\n }\n.react-flow__edge.selected,\n .react-flow__edge:focus,\n .react-flow__edge:focus-visible {\n outline: none;\n }\n.react-flow__edge.selected .react-flow__edge-path,\n .react-flow__edge:focus .react-flow__edge-path,\n .react-flow__edge:focus-visible .react-flow__edge-path {\n stroke: #555;\n }\n.react-flow__edge-textwrapper {\n pointer-events: all;\n }\n.react-flow__edge-textbg {\n fill: white;\n }\n.react-flow__edge .react-flow__edge-text {\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n }\n.react-flow__connection {\n pointer-events: none;\n}\n.react-flow__connection .animated {\n stroke-dasharray: 5;\n -webkit-animation: dashdraw 0.5s linear infinite;\n animation: dashdraw 0.5s linear infinite;\n }\n.react-flow__connectionline {\n z-index: 1001;\n}\n.react-flow__nodes {\n pointer-events: none;\n transform-origin: 0 0;\n}\n.react-flow__node {\n position: absolute;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n pointer-events: all;\n transform-origin: 0 0;\n box-sizing: border-box;\n cursor: -webkit-grab;\n cursor: grab;\n}\n.react-flow__node.dragging {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n }\n.react-flow__nodesselection {\n z-index: 3;\n transform-origin: left top;\n pointer-events: none;\n}\n.react-flow__nodesselection-rect {\n position: absolute;\n pointer-events: all;\n cursor: -webkit-grab;\n cursor: grab;\n }\n.react-flow__handle {\n position: absolute;\n pointer-events: none;\n min-width: 5px;\n min-height: 5px;\n width: 6px;\n height: 6px;\n background: #1a192b;\n border: 1px solid white;\n border-radius: 100%;\n}\n.react-flow__handle.connectionindicator {\n pointer-events: all;\n cursor: crosshair;\n }\n.react-flow__handle-bottom {\n top: auto;\n left: 50%;\n bottom: -4px;\n transform: translate(-50%, 0);\n }\n.react-flow__handle-top {\n left: 50%;\n top: -4px;\n transform: translate(-50%, 0);\n }\n.react-flow__handle-left {\n top: 50%;\n left: -4px;\n transform: translate(0, -50%);\n }\n.react-flow__handle-right {\n right: -4px;\n top: 50%;\n transform: translate(0, -50%);\n }\n.react-flow__edgeupdater {\n cursor: move;\n pointer-events: all;\n}\n.react-flow__panel {\n position: absolute;\n z-index: 5;\n margin: 15px;\n}\n.react-flow__panel.top {\n top: 0;\n }\n.react-flow__panel.bottom {\n bottom: 0;\n }\n.react-flow__panel.left {\n left: 0;\n }\n.react-flow__panel.right {\n right: 0;\n }\n.react-flow__panel.center {\n left: 50%;\n transform: translateX(-50%);\n }\n.react-flow__attribution {\n font-size: 10px;\n background: rgba(255, 255, 255, 0.5);\n padding: 2px 3px;\n margin: 0;\n}\n.react-flow__attribution a {\n text-decoration: none;\n color: #999;\n }\n@-webkit-keyframes dashdraw {\n from {\n stroke-dashoffset: 10;\n }\n}\n@keyframes dashdraw {\n from {\n stroke-dashoffset: 10;\n }\n}\n.react-flow__edgelabel-renderer {\n position: absolute;\n width: 100%;\n height: 100%;\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.react-flow__edge.updating .react-flow__edge-path {\n stroke: #777;\n }\n.react-flow__edge-text {\n font-size: 10px;\n }\n.react-flow__node.selectable:focus,\n .react-flow__node.selectable:focus-visible {\n outline: none;\n }\n.react-flow__node-default,\n.react-flow__node-input,\n.react-flow__node-output,\n.react-flow__node-group {\n padding: 10px;\n border-radius: 3px;\n width: 150px;\n font-size: 12px;\n color: #222;\n text-align: center;\n border-width: 1px;\n border-style: solid;\n border-color: #1a192b;\n background-color: white;\n}\n.react-flow__node-default.selectable:hover, .react-flow__node-input.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {\n box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);\n }\n.react-flow__node-default.selectable.selected,\n .react-flow__node-default.selectable:focus,\n .react-flow__node-default.selectable:focus-visible,\n .react-flow__node-input.selectable.selected,\n .react-flow__node-input.selectable:focus,\n .react-flow__node-input.selectable:focus-visible,\n .react-flow__node-output.selectable.selected,\n .react-flow__node-output.selectable:focus,\n .react-flow__node-output.selectable:focus-visible,\n .react-flow__node-group.selectable.selected,\n .react-flow__node-group.selectable:focus,\n .react-flow__node-group.selectable:focus-visible {\n box-shadow: 0 0 0 0.5px #1a192b;\n }\n.react-flow__node-group {\n background-color: rgba(240, 240, 240, 0.25);\n}\n.react-flow__nodesselection-rect,\n.react-flow__selection {\n background: rgba(0, 89, 220, 0.08);\n border: 1px dotted rgba(0, 89, 220, 0.8);\n}\n.react-flow__nodesselection-rect:focus,\n .react-flow__nodesselection-rect:focus-visible,\n .react-flow__selection:focus,\n .react-flow__selection:focus-visible {\n outline: none;\n }\n.react-flow__controls {\n box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);\n}\n.react-flow__controls-button {\n border: none;\n background: #fefefe;\n border-bottom: 1px solid #eee;\n box-sizing: content-box;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 16px;\n height: 16px;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n padding: 5px;\n }\n.react-flow__controls-button:hover {\n background: #f4f4f4;\n }\n.react-flow__controls-button svg {\n width: 100%;\n max-width: 12px;\n max-height: 12px;\n }\n.react-flow__controls-button:disabled {\n pointer-events: none;\n }\n.react-flow__controls-button:disabled svg {\n fill-opacity: 0.4;\n }\n.react-flow__minimap {\n background-color: #fff;\n}\n.react-flow__resize-control {\n position: absolute;\n}\n.react-flow__resize-control.left,\n.react-flow__resize-control.right {\n cursor: ew-resize;\n}\n.react-flow__resize-control.top,\n.react-flow__resize-control.bottom {\n cursor: ns-resize;\n}\n.react-flow__resize-control.top.left,\n.react-flow__resize-control.bottom.right {\n cursor: nwse-resize;\n}\n.react-flow__resize-control.bottom.left,\n.react-flow__resize-control.top.right {\n cursor: nesw-resize;\n}\n/* handle styles */\n.react-flow__resize-control.handle {\n width: 4px;\n height: 4px;\n border: 1px solid #fff;\n border-radius: 1px;\n background-color: #3367d9;\n transform: translate(-50%, -50%);\n}\n.react-flow__resize-control.handle.left {\n left: 0;\n top: 50%;\n}\n.react-flow__resize-control.handle.right {\n left: 100%;\n top: 50%;\n}\n.react-flow__resize-control.handle.top {\n left: 50%;\n top: 0;\n}\n.react-flow__resize-control.handle.bottom {\n left: 50%;\n top: 100%;\n}\n.react-flow__resize-control.handle.top.left {\n left: 0;\n}\n.react-flow__resize-control.handle.bottom.left {\n left: 0;\n}\n.react-flow__resize-control.handle.top.right {\n left: 100%;\n}\n.react-flow__resize-control.handle.bottom.right {\n left: 100%;\n}\n/* line styles */\n.react-flow__resize-control.line {\n border-color: #3367d9;\n border-width: 0;\n border-style: solid;\n}\n.react-flow__resize-control.line.left,\n.react-flow__resize-control.line.right {\n width: 1px;\n transform: translate(-50%, 0);\n top: 0;\n height: 100%;\n}\n.react-flow__resize-control.line.left {\n left: 0;\n border-left-width: 1px;\n}\n.react-flow__resize-control.line.right {\n left: 100%;\n border-right-width: 1px;\n}\n.react-flow__resize-control.line.top,\n.react-flow__resize-control.line.bottom {\n height: 1px;\n transform: translate(0, -50%);\n left: 0;\n width: 100%;\n}\n.react-flow__resize-control.line.top {\n top: 0;\n border-top-width: 1px;\n}\n.react-flow__resize-control.line.bottom {\n border-bottom-width: 1px;\n top: 100%;\n}\n",".text-fields-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #000;\n border-radius: 5px;\n min-width: 200px;\n}\n\nhr {\n border: none;\n background-color: #bbb;\n height: 1px;\n}\n\n.grouped-handle {\n background: #555;\n height: 15px !important;\n}\n\n.small-standard-font {\n font-size: 10pt;\n font-family: -apple-system, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\",\n \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n}\n\n.status-icon {\n display: inline-block;\n font-size: 14pt;\n margin: 0px 0px 0px 4px;\n padding: 0px;\n}\n.status-icon .status-tooltip {\n visibility: hidden;\n font-size: 10pt;\n font-family: -apple-system, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\",\n \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n width: 150px;\n color: #fff;\n text-align: left;\n border-radius: 6px;\n padding: 5px;\n pointer-events: none;\n\n /* Position the tooltip */\n position: absolute;\n z-index: 9000;\n}\n.status-icon:hover .status-tooltip {\n visibility: visible;\n}\n.warning-status {\n color: #cc7722;\n}\n.warning-status .status-tooltip {\n background-color: #cc7722;\n}\n.ready-status {\n color: #4cbb17;\n}\n.ready-status .status-tooltip {\n background-color: #4cbb17;\n}\n.error-status {\n color: #e52a2a;\n}\n.error-status .status-tooltip {\n background-color: #e52a2a;\n}\n\n/* Loading icon */\n.lds-ring {\n display: inline-block;\n position: relative;\n margin-left: 4px;\n width: 16px;\n height: 16px;\n}\n.lds-ring div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 16px;\n height: 16px;\n margin: 2px;\n border: 2px solid #0096ff;\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: #0096ff transparent transparent transparent;\n}\n.lds-ring div:nth-child(1) {\n animation-delay: -0.45s;\n}\n.lds-ring div:nth-child(2) {\n animation-delay: -0.3s;\n}\n.lds-ring div:nth-child(3) {\n animation-delay: -0.15s;\n}\n@keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.llm-list-container {\n background-color: #eee;\n border-radius: 4px;\n padding: 8px;\n overflow-y: auto;\n max-height: 205px;\n}\n.llm-list-backdrop {\n margin: 6px 0px 6px 6px;\n padding-bottom: 4px;\n text-align: left;\n font-size: 10pt;\n color: #777;\n}\n\nbutton.remove-edge-btn {\n border-radius: 50%;\n border-color: #ddd;\n border-style: solid;\n background-color: #ddd;\n cursor: pointer;\n}\nbutton.remove-edge-btn:hover {\n background-color: white;\n border-color: #fff;\n}\nbutton.remove-edge-btn:active {\n background-color: #777;\n color: #fff;\n border-color: #777;\n}\n\n.input-field {\n display: flex;\n align-items: center;\n margin-bottom: 5px;\n}\n.input-field textarea {\n font-family: monospace;\n}\n\n.remove-text-field-btn {\n margin-left: 3px;\n padding: 2px 4px;\n border-style: none;\n background-color: inherit;\n color: #bbb;\n font-weight: bold;\n cursor: pointer;\n}\n.remove-text-field-btn:hover {\n color: #666;\n background-color: #eee;\n}\n\n.input-field input {\n margin-left: 5px;\n}\n\n.node-header {\n border-bottom: 1px;\n border-top: 0px;\n border-left: 0px;\n border-right: 0px;\n border-style: dashed;\n margin-bottom: 12px;\n padding-bottom: 4px;\n}\n.node-header:hover {\n border-bottom-color: #888;\n}\n\n.prompt-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n width: 290px;\n}\n\n.prompt-node textarea {\n width: 100%;\n resize: none;\n box-sizing: border-box;\n}\n\n.evaluator-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n min-width: 280px;\n}\n.eval-output-footer {\n margin: 10px -9px -9px -9px;\n min-height: 100px;\n max-height: 100px;\n /* cursor: zoom-in; */\n}\n.eval-output-footer p {\n position: absolute;\n overflow: scroll;\n white-space: pre-wrap;\n font-family: \"Monaco\", Courier, monospace;\n font-size: 9pt;\n margin: 6px 8px 6px 8px;\n padding-top: 2px;\n padding-bottom: 0px;\n max-height: 90px;\n max-width: 100%;\n}\n.eval-inspect-response-footer {\n margin: 10px -9px -9px -9px;\n max-height: 100px;\n overflow-y: auto;\n background-color: #ceeaf5b1;\n /* #cef5dab1; */\n cursor: zoom-in;\n}\n.eval-inspect-response-footer button {\n cursor: zoom-in;\n}\n/* .blink-inspect-response-footer {\n animation: blink-footer 0.7s ease-in 1;\n }\n @keyframes blink-footer {\n 50% {\n background-color: #eff6fbb1; \n }\n } */\n\n.ace-editor-container {\n resize: vertical;\n}\n\n.vis-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n}\n.plotly-vis {\n width: 100%;\n height: 100%;\n resize: both;\n overflow: auto;\n}\n.plot-legend {\n font-size: 11px;\n font-family: monospace;\n}\n.plot-legend-item {\n cursor: pointer;\n}\n.plot-legend-item:hover {\n opacity: 0.6;\n}\n.plot-legend-item:active {\n opacity: 0.8;\n}\n\ng.ytick text {\n line-height: 2px;\n}\n\n.response-var-inline > .response-var-name {\n font-size: 8pt;\n font-weight: normal;\n}\n.response-var-inline > .response-var-value {\n font-size: 8pt;\n}\n\n.settings-var-inline {\n background: #eee;\n margin: -3px 0px 0px 0px !important;\n padding: 4px 4px 8px 8px !important;\n border-radius: 0px 0px 12px 12px !important;\n}\n.wrap-line {\n white-space: pre-wrap;\n}\n\n.inspector-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n}\n.inspect-response-container {\n overflow-y: scroll;\n min-width: 150px;\n width: 280px;\n min-height: 270px;\n height: 200px;\n max-width: 1150px;\n max-height: 750px;\n resize: both;\n}\n.inspect-modal-response-container .response-var-header {\n padding: 10px;\n margin-top: 8px;\n line-height: 1.2;\n}\n.inspect-modal-response-container .response-var-name {\n font-size: 10pt;\n font-weight: bold;\n}\n.inspect-modal-response-container .response-var-value {\n font-size: 10pt;\n letter-spacing: -0.5px;\n}\n.inspect-modal-response-container .response-llm-header {\n font-size: 10pt;\n}\n.inspect-modal-response-container .small-response {\n font-size: 10pt;\n margin: 6px -1px 8px -1px;\n padding: 8px;\n}\n.inspect-modal-response-container .small-response-metrics {\n font-size: 12pt;\n}\n.inspect-modal-response-container .num-same-responses {\n font-size: 10pt;\n}\n.inspect-table-var {\n background-color: rgb(224, 244, 250);\n padding-top: 10px;\n border-right: 1px solid #cde;\n font-weight: 500;\n white-space: pre-wrap;\n}\n.inspect-table-metavar {\n background-color: rgb(224, 232, 250);\n padding-top: 10px;\n border-right: 1px solid #cde;\n font-weight: 500;\n white-space: pre-wrap;\n}\n.inspect-table-llm-resp {\n padding-top: 8px;\n padding-bottom: 20px;\n min-width: 160px;\n border-right: 1px solid #eee;\n padding-left: 8px !important;\n padding-right: 0px !important;\n}\n.inspect-responses-drawer {\n position: absolute;\n left: 100%;\n top: 12px;\n background-color: white;\n border: 1px solid #999;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 2px;\n box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.1) inset;\n}\n.response-group-component-header:hover {\n color: #05e;\n cursor: pointer;\n text-decoration: underline;\n}\n.response-group-component-header:active {\n color: #00c;\n}\n.response-var-header {\n background-color: #e0f4fa;\n border-radius: 1px;\n padding: 2px 8px 4px 8px;\n line-height: 0.9;\n}\n.response-var-inline-container {\n display: flex;\n align-items: start;\n flex-wrap: wrap;\n justify-content: left;\n /* font-style: italic; */\n padding-bottom: 1px;\n}\n.response-llm-header {\n font-family: -apple-system, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\",\n \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n font-size: 9pt;\n font-weight: 500;\n padding: 4px 4px 4px 7px;\n border-top-left-radius: 5px;\n border-top-right-radius: 15px;\n}\n.response-var-inline {\n margin: 0px 4px;\n /* background-color: #ffffff33; */\n color: #00000088;\n border-radius: 4px;\n text-rendering: optimizeSpeed;\n /* mix-blend-mode: color-burn; */\n padding: 0px 4px;\n}\n.response-var-name {\n font-size: 9pt;\n font-weight: bold;\n}\n.response-var-value {\n font-family: monospace;\n font-size: 8pt;\n}\n.inspect-modal-prompt-box {\n background-color: #eee;\n padding: 10px;\n margin: 0px 0px 10px 0px;\n border-bottom-style: solid;\n border-bottom-color: #aaa;\n box-shadow: 1px 1px 8px #ccc;\n max-height: 200px;\n overflow-y: auto;\n}\n.inspect-modal-prompt-text {\n font-family: monospace;\n font-size: 11pt;\n white-space: pre-line;\n}\n.inspect-modal-prompt-prefix {\n font-size: 10pt;\n font-weight: bold;\n}\n\n.prompt-preview {\n font-size: 10pt;\n font-family: monospace;\n border-radius: 6px;\n padding: 8px;\n margin: 10px 0px 0px 0px;\n background-color: #ddd;\n color: #444;\n white-space: pre-wrap;\n}\n.join-text-preview {\n margin: 0px 0px 10px 0px;\n}\n\n.small-response {\n font-size: 8pt;\n font-family: monospace;\n border-top-style: dashed;\n border-top-width: 0.0625rem;\n border-bottom-style: dashed;\n border-bottom-width: 0.0625rem;\n border-color: #fff;\n padding: 2px;\n margin: 4px 3px;\n background-color: rgba(255, 255, 255, 0.4);\n white-space: pre-wrap;\n user-select: text;\n cursor: text;\n}\n.small-response-metrics {\n font-size: 10pt;\n font-family: -apple-system, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\",\n \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n font-weight: 500;\n text-align: center;\n border-top-left-radius: 20px;\n border-top-right-radius: 20px;\n padding: 0px 2px 1px 0px;\n margin: 8px 20% -6px 20%;\n background-color: rgba(255, 255, 255, 0.3);\n color: #333;\n}\n.num-same-responses {\n position: relative;\n display: block;\n float: right;\n text-align: center;\n top: 2pt;\n right: 3px;\n /* width: 12pt; */\n padding: 1px 4px;\n height: 12pt;\n background-color: #00000033;\n border-radius: 5px;\n font-size: 9pt;\n font-weight: 500;\n color: white;\n overflow: hidden;\n}\n\n.llm-response-container {\n max-width: 100%;\n}\n.llm-response-container h1 {\n font-weight: 400;\n font-size: 10pt;\n margin: 6px 8px 0px 8px;\n padding-top: 2px;\n padding-bottom: 0px;\n color: #222;\n}\n\n.llm-group-header {\n font-weight: 400;\n font-size: 10pt;\n margin: 6px 8px 4px 8px;\n padding-top: 2px;\n padding-bottom: 0px;\n color: #222;\n}\n\n.response-group {\n margin: 2px 0px 8px 0px;\n padding: 2px 2px 2px 2px;\n /* border-radius: 7px; */\n}\n.response-boxes-wrapper {\n margin-top: 4px;\n padding-left: 10px;\n border-left-width: 2px;\n border-left-style: solid;\n border-left-color: #bbb;\n}\n.response-box {\n padding: 2px 0px 1px 0px;\n margin: 0px 2px 4px 2px;\n border-radius: 5px;\n min-width: 120px;\n /* max-width: 30%; */\n}\n\n.response-item-llm-name-wrapper {\n padding-bottom: 0px;\n}\n.response-item-llm-name-wrapper h1 {\n font-size: 8pt;\n font-weight: bold;\n font-style: italic;\n /* mix-blend-mode: color-burn; */\n color: #000000bb;\n opacity: 0.7;\n text-align: right;\n padding-right: 8px;\n margin: 0px;\n}\n\n.response-preview-container {\n margin: 10px -9px -9px -9px;\n max-height: 100px;\n overflow-y: auto;\n background-color: #ceeaf5b1;\n cursor: zoom-in;\n}\n\n.response-tag {\n font-size: 9pt;\n color: #555;\n margin: 0px 0px 0px 2px;\n}\n\n.cfnode {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n /* box-shadow: 1px 1px 8px #ccc; Slows it down */\n}\n.cfnode:hover {\n border-color: #222;\n}\n\n.join-node {\n min-width: 200px;\n}\n\n.tabular-data-node {\n min-width: 280px;\n}\n.tabular-data-container {\n resize: both;\n overflow: auto;\n /* max-width: 800px; */\n width: 400px;\n min-width: inherit;\n height: 300px;\n /* max-height: 700px; */\n border-bottom-style: solid;\n border-right-style: solid;\n border-bottom-width: 1px;\n border-right-width: 1px;\n border-color: #ccc;\n display: block;\n}\n.tabular-data-container td {\n white-space: nowrap;\n}\n.tabular-data-container th {\n white-space: nowrap;\n}\n.editable-table {\n table-layout: auto;\n}\n.table-col-edit-btn {\n position: relative;\n top: 1px;\n margin: 0px;\n padding: 2px;\n color: #888;\n width: \"12px\";\n height: \"12px\";\n cursor: pointer;\n}\n.table-col-edit-btn:hover {\n background-color: #eee;\n}\n.table-col-edit-btn:active {\n background-color: #ddd;\n}\n.content-editable-div {\n white-space: pre-wrap;\n overflow-y: scroll;\n max-height: 150px;\n margin: 6px 0px;\n font-family: monospace;\n font-size: 10pt;\n line-height: 1;\n cursor: text;\n}\nth .content-editable-div {\n font-family: -apple-system, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\",\n \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n}\n[contenteditable=\"true\"]:empty:not(:focus):before {\n content: attr(placeholder);\n color: grey;\n font-style: italic;\n}\n.add-table-row-btn {\n position: absolute;\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 2px;\n}\n.add-table-row-btn button {\n margin-right: 10px;\n}\n/* .add-column-btn {\n position: relative;\n float: right;\n margin-top: 6px;\n height: 80px; \n width: 20px;\n }\n .add-column-btn span {\n position: absolute;\n top: 60%;\n transform-origin: top left;\n transform: translate(-50%) rotate(-90deg);\n } */\n\n.var-select-toolbar {\n text-align: right;\n margin: 0px;\n padding: 0px;\n position: relative;\n margin-bottom: -30px;\n}\n.var-select-toolbar label {\n font-size: 12px;\n}\n.var-select-toolbar select {\n width: 100px;\n font-size: 12px;\n}\n\n.code-style {\n background-color: #ddd;\n font-family: \"Courier New\", Courier, monospace;\n}\n\n.hook-tag {\n padding-top: 5px;\n padding-bottom: 3px;\n}\n\n.code-mirror-field-header {\n font-size: 10pt;\n color: #333;\n margin-bottom: 4px;\n}\n\n/* Allows resizing the Mantine Textarea component */\n.text-field-fixed .mantine-Textarea-wrapper textarea {\n resize: vertical;\n overflow-y: auto;\n width: 260px;\n padding: calc(0.5rem / 3);\n font-size: 10pt;\n font-family: monospace;\n line-height: 1.2;\n border-color: #999;\n}\n.prompt-field-fixed .mantine-Textarea-wrapper textarea {\n resize: vertical;\n overflow-y: auto;\n padding: calc(0.5rem / 3);\n font-size: 10pt;\n font-family: monospace;\n line-height: 1.2;\n border-color: #999;\n}\n\n.add-text-field-btn {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.add-llm-model-btn {\n display: flex;\n align-items: right;\n justify-content: right;\n float: right;\n height: 20px;\n}\n.add-llm-model-btn button {\n border-style: solid;\n border-color: #777;\n border-width: 1pt;\n border-radius: 3px;\n color: #777;\n margin-right: 2px;\n}\n.add-llm-model-btn:hover button {\n background-color: white;\n}\n.add-llm-model-btn:active button {\n background-color: black;\n color: white;\n}\n\n/* Play button triangle |> */\n.play-button {\n border: 0;\n background: transparent;\n box-sizing: border-box;\n width: 0;\n height: 10px;\n margin: 2px;\n pointer-events: none;\n border-color: transparent transparent transparent #202020;\n border-style: solid;\n border-width: 5px 0 5px 10px;\n}\n\n/** CSS Button style from https://css-buttons-hover.netlify.app/ */\n.AmitSahoo45-button-3 {\n position: relative;\n padding: 2px 10px;\n height: 20px;\n margin-top: -5px;\n margin-right: 3px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n background: rgb(63, 204, 106, 0.2);\n color: #333;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n}\n\n.AmitSahoo45-button-3:hover {\n background: rgb(26, 200, 69);\n color: white;\n box-shadow: 0 0 30px 5px rgb(63, 234, 106, 0.815);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.AmitSahoo45-button-3:active {\n background: #40a829;\n color: yellow;\n}\n\n.AmitSahoo45-button-3:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n\n.AmitSahoo45-button-3::before {\n content: \"\";\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n.script-node-input {\n width: 100%;\n}\n\n.node-header-btns-container {\n float: right;\n margin-right: 0px;\n margin-left: 10px;\n margin-top: -3px;\n}\n\n/* Close button */\n.close-button {\n position: relative;\n padding: 2px 6px;\n margin-top: -7px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n background: transparent;\n color: #333;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n}\n.close-button:hover {\n background: rgb(200, 26, 69);\n color: white;\n box-shadow: 0 0 30px 5px rgb(234, 63, 106, 0.815);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.close-button:active {\n background: #660000;\n color: yellow;\n}\n.close-button:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n.close-button::before {\n content: \"\";\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n color: black;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n/* Custom button styling */\n.custom-button {\n position: relative;\n text-decoration: none;\n padding: 2px 6px;\n margin-top: -7px;\n margin-right: 3px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n background: transparent;\n color: #333;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n}\n.custom-button:hover {\n background: rgb(241, 208, 44);\n color: white;\n box-shadow: 0 0 30px 5px rgba(255, 222, 35, 0.815);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.custom-button:active {\n background: #a36a07;\n color: rgb(51, 10, 6);\n}\n.custom-button:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n.custom-button::before {\n content: \"\";\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n color: black;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n/* AI button */\n.ai-button {\n position: relative;\n padding: 2px 6px;\n margin-top: -7px;\n margin-right: 3px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n color: #666;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n background: #f2d2f3;\n}\n.ai-button:hover {\n background: rgb(177, 63, 204);\n color: white;\n box-shadow: 0 0 30px 5px rgb(177, 63, 204);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.ai-button:active {\n background: rgb(129, 40, 151);\n}\n.ai-button:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n.ai-button::before {\n content: \"\";\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n color: black;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n/* Make text blink */\n.text-blink {\n animation: blinker 0.75s linear infinite;\n font-family: sans-serif;\n}\n@keyframes blinker {\n 50% {\n opacity: 0;\n }\n}\n\n/* Chat history bubbles */\n.chat-bubble {\n --r: 15px; /* the radius */\n --t: 25px; /* the size of the tail */\n\n max-width: 80%;\n padding: calc(2 * var(--r) / 3);\n mask:\n radial-gradient(var(--t) at var(--_d) 0, #0000 98%, #000 102%) var(--_d)\n 100% / calc(100% - var(--r)) var(--t) no-repeat,\n conic-gradient(at var(--r) var(--r), #000 75%, #0000 0) calc(var(--r) / -2)\n calc(var(--r) / -2) padding-box,\n radial-gradient(50% 50%, #000 98%, #0000 101%) 0 0 / var(--r) var(--r) space\n padding-box;\n background: #333 border-box;\n color: #fff;\n}\n.chat-msg-left {\n --_d: 0%;\n border-left: var(--t) solid #0000;\n margin-right: var(--t);\n place-self: start;\n}\n.chat-msg-right {\n --_d: 100%;\n border-right: var(--t) solid #0000;\n margin-left: var(--t);\n place-self: end;\n}\n.chat-history {\n margin: 0;\n min-height: 10vh;\n display: grid;\n place-content: left;\n width: 100%;\n gap: 10px;\n font-family: system-ui, sans-serif;\n font-size: 14px;\n}\n\n.something-changed-circle {\n width: 6px;\n height: 6px;\n border-radius: 50%;\n border: 0px solid;\n background-color: #ff0000;\n opacity: 0.7;\n margin-bottom: 10px;\n margin-left: 2px;\n}\n\n/* Model settings form styling */\n.rjsf fieldset {\n border-style: none;\n margin-top: 20px;\n margin-left: 30px;\n margin-right: 30px;\n}\n.rjsf fieldset .field-array {\n margin: 0;\n padding: 0;\n}\n.rjsf label.control-label {\n font-weight: bold;\n font-size: 11pt;\n}\n.rjsf .field-array legend {\n font-weight: bold;\n font-size: 11pt;\n}\n\n.rjsf input {\n width: 100%;\n resize: none;\n}\n.rjsf select {\n width: 100%;\n}\n.rjsf textarea {\n width: 100%;\n resize: vertical;\n}\n\n.rjsf .field-description {\n color: #444;\n margin-top: 8px;\n}\n\n.rjsf fieldset .form-group {\n margin-bottom: 30px;\n padding-top: 6px;\n font-size: 9pt;\n border-top-style: solid;\n border-top-color: #ddd;\n}\n\n.rjsf button.btn {\n float: right;\n margin-right: 30px;\n}\n.rjsf button.btn-add {\n width: 20px;\n height: 20px;\n background: #40a829;\n}\n.rjsf button.btn-danger {\n background: #660000;\n}\n\n.rjsf .help-block {\n color: #999;\n margin: 0;\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/chainforge/react-server/build/static/css/main.c0f80104.css.map b/chainforge/react-server/build/static/css/main.c0f80104.css.map deleted file mode 100644 index 4e7742ff..00000000 --- a/chainforge/react-server/build/static/css/main.c0f80104.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"static/css/main.c0f80104.css","mappings":"AAAA,KAKE,kCAAmC,CACnC,iCAAkC,CAJlC,mIAEY,CAHZ,QAMF,CAEA,KACE,uDAEF,CAEA,aACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAGF,CAEA,mBACE,eACF,CAEA,aAGE,wBAAyB,CAIzB,WAAY,CAMZ,kBAAmB,CAXnB,aAAc,CAUd,cAAe,CAFf,oBAAqB,CALrB,qBAAsB,CADtB,iBAAkB,CAOlB,cAAe,CALf,iBAAkB,CALlB,iBAAkB,CAOlB,iBAAkB,CAClB,oBAKF,CAGA,WACE,aACF,CAEA,SAEE,gBAAiB,CACjB,eAAgB,CAFhB,WAGF,CAEA,WAEE,YAAa,CADb,WAEF,CCvDA,QAKE,eAAgB,CAJhB,eAAgB,CAChB,sBAAuB,CAEvB,8BAAgC,CADhC,kBAGF,CAEA,cAEE,4BAAoC,CADpC,cAEF,CAEA,QACE,eAAgB,CAChB,8BACF,CAGA,2BACE,SACF,CAEA,iCACE,kBACF,CAEA,iCACE,eACF,CAEA,uCACE,eACF,CAEA,wCACE,eACF,CAEA,cAEE,4BAAoC,CADpC,cAEF,CAEA,QAGE,aAAc,CACd,YAAa,CAFb,WAAY,CAGZ,oBAAqB,CAJrB,UAKF,CAGA,2BACE,SACF,CAEA,iCACE,kBACF,CAEA,iCACE,eACF,CAEA,uCACE,eACF,CAEA,wCACE,eACF,CAEA,QACE,UACF,CAEA,QACE,wBACF,CAMA,sBACE,qBACF,CAEA,QACE,YACF,CAEA,QACE,qBAAsB,CACtB,UAAY,CAGZ,cACF,CAEA,sBALE,QAAS,CACT,YAOF,CCtGA,uBAGE,WAAY,CAEZ,MAAO,CAJP,iBAAkB,CAGlB,KAAM,CAFN,UAIF,CACA,kBAGE,WAAY,CAFZ,SAGF,CACA,4BACI,cACF,CACF,2BAEI,eACF,CACF,sBAGE,mBAAoB,CAFpB,4BAAqB,CAArB,oBAAqB,CACrB,SAEF,CACA,sBACE,SACF,CACA,uBACE,SACF,CACA,sFAEE,YACF,CACA,+BAEE,gBAAiB,CADjB,mBAEF,CACA,oDAEE,cAAe,CACf,cAAe,CACf,SACF,CACA,kBAEE,cAAe,CADf,4BAEF,CACA,gCACI,kBAAmB,CACnB,8CAAgD,CACxC,sCACV,CACF,6DACI,qBAAsB,CACtB,sBAAuB,CACf,cACV,CACF,2BACI,mBACF,CACF,mFAGI,YACF,CACF,wJAGI,WACF,CACF,8BACI,kBACF,CACF,yBACI,SACF,CACF,yCACI,mBAAoB,CACpB,wBAAyB,CAEjB,gBACV,CACF,wBACE,mBACF,CACA,kCACI,kBAAmB,CACnB,8CAAgD,CACxC,sCACV,CACF,4BACE,YACF,CACA,mBACE,mBAEF,CACA,qCAFE,4BAAqB,CAArB,oBAYF,CAVA,kBAOE,qBAAsB,CAEtB,WAAY,CAJZ,kBAAmB,CAJnB,iBAAkB,CAClB,wBAAyB,CAEjB,gBAMV,CACA,2BAEI,eACF,CACF,4BAGE,mBAAoB,CADpB,iCAA0B,CAA1B,yBAA0B,CAD1B,SAGF,CACA,iCAII,WAAY,CAFZ,kBAAmB,CADnB,iBAIF,CACF,oBAOE,kBAAmB,CACnB,qBAAuB,CACvB,kBAAmB,CAHnB,UAAW,CAFX,cAAe,CADf,aAAc,CADd,mBAAoB,CADpB,iBAAkB,CAIlB,SAKF,CACA,wCAEI,gBAAiB,CADjB,kBAEF,CACF,2BAGI,WAAY,CAFZ,QAIF,CACF,mDAJI,QAAS,CAET,iCAA6B,CAA7B,yBAMF,CAJF,wBAEI,QAEF,CACF,yBAEI,SAEF,CACF,mDAJI,OAAQ,CAER,kCAA6B,CAA7B,0BAMF,CAJF,0BACI,UAGF,CACF,yBACE,WAAY,CACZ,kBACF,CACA,mBAGE,WAAY,CAFZ,iBAAkB,CAClB,SAEF,CACA,uBACI,KACF,CACF,0BACI,QACF,CACF,wBACI,MACF,CACF,yBACI,OACF,CACF,0BACI,QAAS,CACT,kCAA2B,CAA3B,0BACF,CACF,yBAEE,6BAAoC,CADpC,cAAe,CAGf,QAAS,CADT,eAEF,CACA,2BAEI,UAAW,CADX,oBAEF,CACF,4BACE,GACE,oBACF,CACF,CACA,oBACE,GACE,oBACF,CACF,CACA,gCAGE,WAAY,CACZ,mBAAoB,CAHpB,iBAAkB,CAIlB,wBAAyB,CAEjB,gBAAiB,CALzB,UAMF,CACA,kDACM,WACF,CACJ,uBACI,cACF,CACF,8EAEI,YACF,CACF,mGAaE,qBAAuB,CADvB,wBAAqB,CAPrB,iBAAkB,CAGlB,UAAW,CADX,cAAe,CAHf,YAAa,CAKb,iBAAkB,CAHlB,WAQF,CACA,uKACM,wCACF,CACJ,iiBAYM,6BACF,CACJ,wBACE,mCACF,CACA,wDAEE,6BAAkC,CAClC,mCACF,CACA,wJAII,YACF,CACF,sBACE,sCACF,CACA,6BAOI,kBAAmB,CALnB,kBAAmB,CACnB,WAA6B,CAA7B,4BAA6B,CAC7B,kBAAuB,CAMvB,cAAe,CALf,YAAa,CAIb,WAAY,CAHZ,sBAAuB,CAQvB,WAAY,CAHZ,wBAAyB,CAEjB,gBAAiB,CALzB,UAOF,CACF,mCACM,kBACF,CACJ,iCAGM,eAAgB,CADhB,cAAe,CADf,UAGF,CACJ,sCACM,mBACF,CACJ,0CACQ,eACF,CACN,qBACE,qBACF,CACA,4BACE,iBACF,CACA,mEAEE,gBACF,CACA,mEAEE,gBACF,CACA,8EAEE,kBACF,CACA,8EAEE,kBACF,CAEA,mCAKE,wBAAyB,CAFzB,qBAAsB,CACtB,iBAAkB,CAFlB,UAAW,CAIX,sCAAgC,CAAhC,8BAAgC,CALhC,SAMF,CACA,wCACE,MAAO,CACP,OACF,CACA,yCACE,SAAU,CACV,OACF,CACA,uCACE,QAAS,CACT,KACF,CACA,0CACE,QAAS,CACT,QACF,CAIA,2FACE,MACF,CAIA,6FACE,SACF,CAEA,iCAGE,sBACF,CACA,6EAKE,WAAY,CADZ,KAAM,CADN,iCAA6B,CAA7B,yBAA6B,CAD7B,SAIF,CACA,sCAEE,qBAAsB,CADtB,MAEF,CACA,uCAEE,sBAAuB,CADvB,SAEF,CACA,6EAEE,UAAW,CAEX,MAAO,CADP,kCAA6B,CAA7B,0BAA6B,CAE7B,UACF,CACA,qCAEE,oBAAqB,CADrB,KAEF,CACA,wCACE,uBAAwB,CACxB,QACF,CC/YA,kBACI,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAClB,eAAgB,CAHhB,YAIF,CAEA,GAEE,qBAAsB,CADtB,WAAY,CAEZ,UACF,CAEA,gBACE,eAAgB,CAChB,qBACF,CAEA,qBAEE,gHAA0I,CAD1I,cAEF,CAEA,aACE,oBAAqB,CACrB,cAAe,CACf,gBAAuB,CACvB,SACF,CACA,6BAOE,iBAAkB,CAFlB,UAAW,CAFX,gHAA0I,CAD1I,cAAe,CAMf,WAAY,CACZ,mBAAoB,CAGpB,iBAAkB,CANlB,eAAgB,CALhB,iBAAkB,CAGlB,WAAY,CASZ,YACF,CACA,mCACE,kBACF,CACA,gBACE,UACF,CACA,gCACE,qBACF,CACA,cACE,aACF,CACA,8BACE,wBACF,CACA,cACE,aACF,CACA,8BACE,wBACF,CAGA,UACE,oBAAqB,CAIrB,WAAY,CAFZ,eAAgB,CADhB,iBAAkB,CAElB,UAEF,CACA,cASE,gEAA8D,CAA9D,wDAA8D,CAC9D,4BAAyD,CAFzD,iBAAkB,CAElB,wBAAyD,CATzD,qBAAsB,CACtB,aAAc,CAGd,WAAY,CACZ,UAAW,CAHX,iBAAkB,CAClB,UAOF,CACA,0BACE,6BAAuB,CAAvB,qBACF,CACA,2BACE,4BAAsB,CAAtB,oBACF,CACA,2BACE,6BAAuB,CAAvB,qBACF,CACA,4BACE,GACE,8BAAuB,CAAvB,sBACF,CACA,GACE,+BAAyB,CAAzB,uBACF,CACF,CAPA,oBACE,GACE,8BAAuB,CAAvB,sBACF,CACA,GACE,+BAAyB,CAAzB,uBACF,CACF,CAEA,oBACE,qBAAsB,CACtB,iBAAkB,CAGlB,gBAAiB,CADjB,eAAgB,CADhB,WAGF,CACA,mBAKE,UAAW,CADX,cAAe,CAHf,oBAAuB,CACvB,kBAAmB,CACnB,eAGF,CAEA,uBAIE,qBAAsB,CAFtB,iBAAkB,CADlB,iBAAkB,CAElB,kBAAmB,CAEnB,cACF,CACA,6BACE,qBAAuB,CACvB,iBACF,CACA,8BACE,qBAAsB,CAEtB,iBAAkB,CADlB,UAEF,CAEA,aAEE,kBAAmB,CADnB,YAAa,CAEb,iBACF,CACA,sBACE,qBACF,CAEA,uBAIE,wBAAyB,CADzB,iBAAkB,CAElB,UAAW,CAEX,cAAe,CADf,eAAiB,CALjB,eAAgB,CAChB,eAMF,CACA,6BAEE,qBAAsB,CADtB,UAEF,CAEA,mBACE,eACF,CAEA,aAIE,QAAiB,CAAjB,iBAAiB,CACjB,mBAAoB,CACpB,kBAAmB,CACnB,kBACF,CACA,mBACE,wBACF,CAEA,aACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAAa,CAGb,WACF,CAEA,sBAGE,qBAAsB,CADtB,WAAY,CADZ,UAGF,CAEA,gBACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAClB,eAAgB,CAHhB,YAIF,CACA,oBACE,qBAA2B,CAE3B,gBAAiB,CADjB,gBAGF,CACA,sBAIE,oCAAyC,CACzC,aAAc,CACd,cAAuB,CAGvB,eAAgB,CAChB,cAAe,CARf,eAAgB,CAMhB,gBAAmB,CADnB,eAAgB,CANhB,iBAAkB,CAElB,oBAQF,CACA,8BAIE,0BAA2B,CAE3B,cAAe,CALf,qBAA2B,CAC3B,gBAAiB,CACjB,eAIF,CACA,qCACE,cACF,CAUA,sBACE,eACF,CAEA,UACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAGF,CACA,YAEE,WAAY,CAEZ,aAAc,CADd,WAAY,CAFZ,UAIF,CACA,aAEE,qBAAsB,CADtB,cAEF,CACA,kBACE,cACF,CACA,wBACE,UACF,CACA,yBACE,UACF,CAEA,aACE,eACF,CAEA,wCACE,aAAc,CACd,eACF,CACA,yCACE,aACF,CAEA,qBACE,eAAgB,CAGhB,qCAA2C,CAF3C,yBAAmC,CACnC,iCAEF,CACA,WACE,oBACF,CAEA,gBACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAGF,CACA,4BAKE,YAAa,CAEb,gBAAiB,CADjB,gBAAiB,CAFjB,gBAAiB,CAFjB,eAAgB,CADhB,iBAAkB,CAOlB,WAAY,CALZ,WAMF,CACA,uDAGE,eAAgB,CADhB,cAAe,CADf,YAGF,CACA,qDACE,cAAe,CACf,eACF,CACA,sDACE,cAAe,CACf,oBACF,CACA,uDACE,cACF,CACA,kDACE,cAAe,CACf,mBAAyB,CACzB,WACF,CACA,0DACE,cACF,CACA,sDACE,cACF,CACA,mBACE,wBAKF,CACA,0CAJE,2BAA4B,CAC5B,eAAgB,CAFhB,gBAAiB,CAGjB,oBAQF,CANA,uBACE,wBAKF,CACA,wBAIE,2BAA4B,CAD5B,eAAgB,CADhB,mBAAoB,CAGpB,0BAA4B,CAC5B,yBAA6B,CAL7B,eAMF,CACA,0BAIE,qBAAuB,CACvB,qBAAsB,CAGtB,6BAA8B,CAD9B,8BAA+B,CAD/B,2BAA4B,CAG5B,2CAAoD,CAPpD,SAAU,CADV,iBAAkB,CAElB,QAOF,CACA,uCACE,UAAW,CACX,cAAe,CACf,yBACF,CACA,wCACE,UACF,CACA,qBACE,wBAAyB,CACzB,iBAAkB,CAElB,cAAgB,CADhB,mBAEF,CACA,+BAEE,iBAAkB,CADlB,YAAa,CAEb,cAAe,CACf,oBAAqB,CAErB,kBACF,CACA,qBAKE,0BAA2B,CAC3B,4BAA6B,CAL7B,gHAA0I,CAC1I,aAAc,CACd,eAAgB,CAChB,uBAGF,CACA,qBAIE,iBAAkB,CADlB,eAAgB,CAFhB,YAAe,CAMf,aAAgB,CAFhB,4BAGF,CACA,mBACE,aAAc,CACd,eACF,CACA,oBACE,qBAAsB,CACtB,aACF,CACA,0BACE,qBAAsB,CAItB,wBAAyB,CADzB,yBAA0B,CAE1B,2BAA4B,CAH5B,eAAwB,CAIxB,gBAAiB,CACjB,eAAgB,CANhB,YAOF,CACA,2BACE,qBAAsB,CACtB,cAAe,CACf,oBACF,CACA,6BACE,cAAe,CACf,eACF,CAEA,gBAME,qBAAsB,CAHtB,iBAAkB,CAIlB,UAAW,CALX,qBAAsB,CADtB,cAAe,CAIf,eAAwB,CADxB,WAAY,CAIZ,oBACF,CACA,mBACE,eACF,CAEA,gBAUE,mCAA0C,CAH1C,kCAAkB,CAAlB,sBAAkB,CAAlB,uBAAkB,CAAlB,+BAAkB,CAMlB,WAAY,CAXZ,qBAAsB,CADtB,aAAc,CAQd,cAAe,CADf,WAAY,CAIZ,wBAAiB,CAAjB,gBAAiB,CADjB,oBAGF,CACA,wBASE,mCAA0C,CAJ1C,2BAA4B,CAC5B,4BAA6B,CAI7B,UAAW,CARX,gHAA0I,CAD1I,cAAe,CAEf,eAAgB,CAKhB,mBAAwB,CADxB,mBAAwB,CAHxB,iBAOF,CACA,oBAUE,0BAA2B,CAC3B,iBAAkB,CAGlB,UAAY,CAZZ,aAAc,CACd,WAAY,CASZ,aAAc,CACd,eAAgB,CAJhB,WAAY,CAMZ,eAAgB,CAPhB,eAAgB,CAPhB,iBAAkB,CAKlB,SAAU,CAFV,iBAAkB,CAClB,OAWF,CAEA,wBACE,cACF,CACA,2BAGE,gBAIF,CAEA,6CAHE,UAAW,CAJX,cAAe,CADf,eAAgB,CAIhB,gBAAmB,CADnB,eAYF,CAPA,kBAGE,kBAIF,CAEA,gBACE,gBAAuB,CACvB,WAEF,CACA,wBAKE,0BAAuB,CAJvB,cAAe,CACf,iBAIF,CACA,cAGE,iBAAkB,CADlB,gBAAuB,CAEvB,eAAgB,CAHhB,iBAKF,CAEA,gCACE,gBACF,CACA,mCAKE,eAAgB,CAJhB,aAAc,CAEd,iBAAkB,CADlB,eAAiB,CAOjB,QAAW,CAHX,UAAY,CAEZ,iBAAkB,CADlB,gBAGF,CAEA,4BAIE,0BAA2B,CAC3B,cAAe,CAJf,qBAA2B,CAC3B,gBAAiB,CACjB,eAGF,CAEA,cAEE,UAAW,CADX,aAAc,CAEd,gBACF,CAEA,QACE,qBAAsB,CAEtB,qBAAsB,CACtB,iBAAkB,CAFlB,YAIF,CACA,cACE,iBACF,CAEA,WACE,eACF,CAEA,mBACE,eACF,CACA,wBAYE,4BAAkB,CAAlB,sBAAkB,CAAlB,2BAAkB,CAAlB,qBAAkB,CAClB,aAAc,CAPd,YAAa,CADb,iBAAkB,CAHlB,aAAc,CADd,WAAY,CAGZ,WAUF,CAIA,sDACE,kBACF,CACA,gBACE,iBACF,CACA,oBAKE,UAAW,CAGX,cAAe,CADf,aAAc,CAJd,QAAW,CACX,WAAY,CAHZ,iBAAkB,CAClB,OAAQ,CAIR,YAGF,CACA,0BACE,qBACF,CACA,2BACE,qBACF,CACA,sBAQE,WAAY,CAHZ,qBAAsB,CACtB,cAAe,CACf,aAAgB,CAHhB,YAAe,CADf,gBAAiB,CADjB,iBAAkB,CADlB,oBAQF,CACA,yBACE,gHACF,CACA,gDAEE,UAAU,CADV,yBAAyB,CAEzB,iBACF,CACA,mBAIE,kBAAmB,CADnB,YAAa,CAEb,sBAAuB,CACvB,cAAe,CALf,iBAAkB,CAClB,UAKF,CACA,0BACE,iBACF,CAeA,oBAKE,gBAAoB,CAFpB,SAAY,CACZ,iBAAkB,CAHlB,gBAKF,CACA,0BACE,cACF,CACA,2BAEE,cAAe,CADf,WAEF,CAEA,YACE,qBAAsB,CACtB,yCACF,CAEA,UAEE,kBAAmB,CADnB,eAEF,CAEA,0BAEE,UAAW,CADX,cAAe,CAEf,iBACF,CAGA,qDAGE,WAMF,CACA,4GAFE,iBAAkB,CAFlB,qBAAsB,CADtB,cAAe,CAEf,eAAgB,CALhB,eAAgB,CAEhB,iBAAyB,CAHzB,eAiBF,CAEA,oBAEE,kBAAmB,CADnB,YAAa,CAEb,sBACF,CAEA,mBAEE,iBAAkB,CADlB,YAAa,CAGb,WAAY,CACZ,WAAY,CAFZ,qBAGF,CACA,0BAGE,qBAAiB,CACjB,iBAAkB,CAClB,UAAW,CACX,gBACF,CACA,gCACE,qBACF,CACA,iCACE,qBAAuB,CACvB,UACF,CAGF,aAEE,sBAAuB,CADvB,QAAS,CAST,wDAA4B,CAA5B,kBAA4B,CAA5B,2BAA4B,CAP5B,qBAAsB,CAEtB,WAAY,CACZ,UAAW,CACX,mBAAoB,CAHpB,OAOF,CAGA,sBASE,8BAAkC,CAFlC,qBAAsB,CADtB,iBAAkB,CAMlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CARf,cAAe,CALf,WAAY,CAEZ,gBAAiB,CADjB,eAAgB,CAOhB,eAAgB,CAThB,gBAAiB,CADjB,iBAAkB,CAclB,0BAEF,CAEA,4BACE,kBAA4B,CAE5B,6CAAiD,CADjD,UAAY,CAIZ,2BACF,CACA,6BACE,kBAAmB,CACnB,UACF,CAEA,mCAEE,oCAA8B,CAA9B,4BACF,CAEA,6BASE,eAAgB,CAChB,6BAA8B,CAT9B,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAKP,+BAAgC,CAIhC,uBAAwB,CAZxB,OAaF,CAEA,mBACE,UACF,CAEA,4BACE,WAAY,CAEZ,gBAAiB,CADjB,cAAiB,CAEjB,eACF,CAGA,cAOE,sBAAuB,CAFvB,qBAAsB,CADtB,iBAAkB,CAMlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CARf,cAAe,CAHf,eAAgB,CAMhB,eAAgB,CAPhB,eAAgB,CADhB,iBAAkB,CAYlB,0BAEF,CACA,oBACE,kBAA6B,CAE7B,6CAAiD,CADjD,UAAY,CAIZ,2BACF,CACA,qBACE,eAAmB,CACnB,UACF,CACA,2BAEE,oCAA8B,CAA9B,4BACF,CACA,qBAUE,eAAgB,CAChB,6BAA8B,CAF9B,UAAY,CARZ,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAMP,+BAAgC,CAIhC,uBAAwB,CAbxB,OAcF,CAGA,eASE,sBAAuB,CAFvB,qBAAsB,CADtB,iBAAkB,CAMlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CARf,cAAe,CAHf,gBAAiB,CADjB,eAAgB,CAOhB,eAAgB,CARhB,eAAgB,CAFhB,iBAAkB,CAClB,oBAAqB,CAarB,0BAEF,CACA,qBACE,kBAA6B,CAE7B,6CAAkD,CADlD,UAAY,CAIZ,2BACF,CACA,sBACE,kBAAmB,CACnB,aACF,CACA,4BAEE,oCAA8B,CAA9B,4BACF,CACA,sBAUE,eAAgB,CAChB,6BAA8B,CAF9B,UAAY,CARZ,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAMP,+BAAgC,CAIhC,uBAAwB,CAbxB,OAcF,CAGA,WAeE,kBAAmB,CATnB,qBAAsB,CADtB,iBAAkB,CAKlB,8BAA+B,CAF/B,UAAW,CAMX,cAAe,CAPf,cAAe,CAHf,gBAAiB,CADjB,eAAgB,CAMhB,eAAgB,CAPhB,eAAgB,CADhB,iBAAkB,CAYlB,0BAGF,CACA,iBACE,kBAA2B,CAE3B,+BAAwC,CADxC,UAAY,CAIZ,2BACF,CACA,kBACE,kBACF,CACA,wBAEE,oCAA8B,CAA9B,4BACF,CACA,kBAUE,eAAgB,CAChB,6BAA8B,CAF9B,UAAY,CARZ,UAAW,CACX,aAAc,CAEd,UAAW,CAGX,MAAQ,CACR,SAAU,CAHV,iBAAkB,CAClB,MAAO,CAMP,+BAAgC,CAIhC,uBAAwB,CAbxB,OAcF,CAGA,YACI,8CAAuC,CAAvC,sCAAuC,CACvC,sBACJ,CACA,2BACI,IACI,SACJ,CACJ,CAJA,mBACI,IACI,SACJ,CACJ,CAGA,aACE,QAAS,CACT,QAAS,CAWT,0BAA2B,CAC3B,UAAW,CARX,4TAM2C,CAN3C,oTAM2C,CAR3C,aAAc,CACd,0BAUF,CACA,eACE,OAAQ,CACR,gCAAiC,CACjC,qBAAsB,CACtB,gBACF,CACA,gBACE,SAAU,CACV,iCAAkC,CAClC,oBAAqB,CACrB,cACF,CACA,cAME,aAAS,CAHT,YAAa,CAIb,gCAAkC,CAClC,cAAe,CAFf,QAAS,CALT,QAAS,CACT,eAAgB,CAEhB,kBAAmB,CACnB,UAIF,CAEA,0BAKE,oBAAyB,CADzB,cAAiB,CADjB,iBAAkB,CADlB,UAAW,CAKX,kBAAmB,CACnB,eAAgB,CAFhB,UAAY,CALZ,SAQF,CAGA,eACE,iBAAkB,CAElB,gBAAiB,CACjB,iBAAkB,CAFlB,eAGF,CACA,4BACE,QAAS,CACT,SACF,CAKA,oDAEE,cAAe,CADf,eAEF,CAGA,YAEE,WAAY,CADZ,UAEF,CACA,aACE,UACF,CACA,eAEE,eAAgB,CADhB,UAEF,CAEA,yBACE,UAAW,CACX,cACF,CAEA,2BAKE,qBAAsB,CADtB,sBAAuB,CADvB,aAAc,CAFd,kBAAmB,CACnB,eAIF,CAEA,iBACE,WAAY,CACZ,iBACF,CACA,qBAGE,kBAAmB,CADnB,WAAY,CADZ,UAGF,CACA,wBACE,eACF,CAEA,kBACE,UAAW,CACX,QACF","sources":["index.css","../node_modules/react-edit-text/dist/styles.module.css","../node_modules/reactflow/dist/style.css","text-fields-node.css"],"sourcesContent":["body {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',\n 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\ncode {\n font-family: Menlo, Monaco, Consolas, 'Courier New',\n monospace;\n}\n\n.script-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #000;\n border-radius: 5px;\n}\n\n.script-node-input {\n min-width: 300px;\n}\n\n.csv-element {\n position: relative;\n color: #8a3e07;\n background-color: #FFE8CC;\n font-size: inherit;\n font-family: monospace;\n padding: .2em .4em;\n border: none;\n text-align: center;\n text-decoration: none;\n display: inline-block;\n margin: 4px 2px;\n cursor: pointer;\n border-radius: 10px;\n}\n\n/* set a muted text */\n.csv-comma {\n color: #FFC107;\n}\n\n.csv-div {\n width: 290px;\n max-height: 250px;\n overflow-y: auto;\n}\n\n.csv-input {\n width: 290px;\n height: 150px;\n}",".label {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n transition: background 0.2s ease;\n min-height: 28px;\n}\n\n.label:hover {\n cursor: pointer;\n background: rgba(220, 220, 220, 0.4);\n}\n\n.textareaView {\n overflow-y: auto;\n transition: background 0.2s ease;\n}\n\n/* Width */\n.textareaView::-webkit-scrollbar {\n width: 8px;\n}\n/* Track */\n.textareaView::-webkit-scrollbar-track {\n background: #f1f1f1;\n}\n/* Handle */\n.textareaView::-webkit-scrollbar-thumb {\n background: #ccc;\n}\n/* Handle on hover */\n.textareaView::-webkit-scrollbar-thumb:hover {\n background: #aaa;\n}\n/* Handle on drag */\n.textareaView::-webkit-scrollbar-thumb:active {\n background: #666;\n}\n\n.textareaView:hover {\n cursor: pointer;\n background: rgba(220, 220, 220, 0.4);\n}\n\n.shared {\n width: 100%;\n padding: 5px;\n display: block;\n margin: 3px 0;\n scrollbar-width: thin;\n}\n\n/* Width */\n.shared::-webkit-scrollbar {\n width: 8px;\n}\n/* Track */\n.shared::-webkit-scrollbar-track {\n background: #f1f1f1;\n}\n/* Handle */\n.shared::-webkit-scrollbar-thumb {\n background: #ccc;\n}\n/* Handle on hover */\n.shared::-webkit-scrollbar-thumb:hover {\n background: #aaa;\n}\n/* Handle on drag */\n.shared::-webkit-scrollbar-thumb:active {\n background: #666;\n}\n\n.placeholder {\n color: #999;\n}\n\n.inline {\n display: inline !important;\n}\n\n.readonly {\n cursor: auto !important;\n}\n\n.readonly:hover {\n cursor: auto !important;\n}\n\n.displayContainer {\n display: flex;\n}\n\n.editButton {\n background-color: #fff;\n color: black;\n border: 0;\n outline: none;\n min-width: 28px;\n}\n\n.editButton:focus {\n border: 0;\n outline: none;\n}\n","/* this gets exported as style.css and can be used for the default theming */\n/* these are the necessary styles for React Flow, they get used by base.css and style.css */\n.react-flow__container {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n}\n.react-flow__pane {\n z-index: 1;\n cursor: -webkit-grab;\n cursor: grab;\n}\n.react-flow__pane.selection {\n cursor: pointer;\n }\n.react-flow__pane.dragging {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n }\n.react-flow__viewport {\n transform-origin: 0 0;\n z-index: 2;\n pointer-events: none;\n}\n.react-flow__renderer {\n z-index: 4;\n}\n.react-flow__selection {\n z-index: 6;\n}\n.react-flow__nodesselection-rect:focus,\n.react-flow__nodesselection-rect:focus-visible {\n outline: none;\n}\n.react-flow .react-flow__edges {\n pointer-events: none;\n overflow: visible;\n}\n.react-flow__edge-path,\n.react-flow__connection-path {\n stroke: #b1b1b7;\n stroke-width: 1;\n fill: none;\n}\n.react-flow__edge {\n pointer-events: visibleStroke;\n cursor: pointer;\n}\n.react-flow__edge.animated path {\n stroke-dasharray: 5;\n -webkit-animation: dashdraw 0.5s linear infinite;\n animation: dashdraw 0.5s linear infinite;\n }\n.react-flow__edge.animated path.react-flow__edge-interaction {\n stroke-dasharray: none;\n -webkit-animation: none;\n animation: none;\n }\n.react-flow__edge.inactive {\n pointer-events: none;\n }\n.react-flow__edge.selected,\n .react-flow__edge:focus,\n .react-flow__edge:focus-visible {\n outline: none;\n }\n.react-flow__edge.selected .react-flow__edge-path,\n .react-flow__edge:focus .react-flow__edge-path,\n .react-flow__edge:focus-visible .react-flow__edge-path {\n stroke: #555;\n }\n.react-flow__edge-textwrapper {\n pointer-events: all;\n }\n.react-flow__edge-textbg {\n fill: white;\n }\n.react-flow__edge .react-flow__edge-text {\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n }\n.react-flow__connection {\n pointer-events: none;\n}\n.react-flow__connection .animated {\n stroke-dasharray: 5;\n -webkit-animation: dashdraw 0.5s linear infinite;\n animation: dashdraw 0.5s linear infinite;\n }\n.react-flow__connectionline {\n z-index: 1001;\n}\n.react-flow__nodes {\n pointer-events: none;\n transform-origin: 0 0;\n}\n.react-flow__node {\n position: absolute;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n pointer-events: all;\n transform-origin: 0 0;\n box-sizing: border-box;\n cursor: -webkit-grab;\n cursor: grab;\n}\n.react-flow__node.dragging {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n }\n.react-flow__nodesselection {\n z-index: 3;\n transform-origin: left top;\n pointer-events: none;\n}\n.react-flow__nodesselection-rect {\n position: absolute;\n pointer-events: all;\n cursor: -webkit-grab;\n cursor: grab;\n }\n.react-flow__handle {\n position: absolute;\n pointer-events: none;\n min-width: 5px;\n min-height: 5px;\n width: 6px;\n height: 6px;\n background: #1a192b;\n border: 1px solid white;\n border-radius: 100%;\n}\n.react-flow__handle.connectionindicator {\n pointer-events: all;\n cursor: crosshair;\n }\n.react-flow__handle-bottom {\n top: auto;\n left: 50%;\n bottom: -4px;\n transform: translate(-50%, 0);\n }\n.react-flow__handle-top {\n left: 50%;\n top: -4px;\n transform: translate(-50%, 0);\n }\n.react-flow__handle-left {\n top: 50%;\n left: -4px;\n transform: translate(0, -50%);\n }\n.react-flow__handle-right {\n right: -4px;\n top: 50%;\n transform: translate(0, -50%);\n }\n.react-flow__edgeupdater {\n cursor: move;\n pointer-events: all;\n}\n.react-flow__panel {\n position: absolute;\n z-index: 5;\n margin: 15px;\n}\n.react-flow__panel.top {\n top: 0;\n }\n.react-flow__panel.bottom {\n bottom: 0;\n }\n.react-flow__panel.left {\n left: 0;\n }\n.react-flow__panel.right {\n right: 0;\n }\n.react-flow__panel.center {\n left: 50%;\n transform: translateX(-50%);\n }\n.react-flow__attribution {\n font-size: 10px;\n background: rgba(255, 255, 255, 0.5);\n padding: 2px 3px;\n margin: 0;\n}\n.react-flow__attribution a {\n text-decoration: none;\n color: #999;\n }\n@-webkit-keyframes dashdraw {\n from {\n stroke-dashoffset: 10;\n }\n}\n@keyframes dashdraw {\n from {\n stroke-dashoffset: 10;\n }\n}\n.react-flow__edgelabel-renderer {\n position: absolute;\n width: 100%;\n height: 100%;\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.react-flow__edge.updating .react-flow__edge-path {\n stroke: #777;\n }\n.react-flow__edge-text {\n font-size: 10px;\n }\n.react-flow__node.selectable:focus,\n .react-flow__node.selectable:focus-visible {\n outline: none;\n }\n.react-flow__node-default,\n.react-flow__node-input,\n.react-flow__node-output,\n.react-flow__node-group {\n padding: 10px;\n border-radius: 3px;\n width: 150px;\n font-size: 12px;\n color: #222;\n text-align: center;\n border-width: 1px;\n border-style: solid;\n border-color: #1a192b;\n background-color: white;\n}\n.react-flow__node-default.selectable:hover, .react-flow__node-input.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {\n box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);\n }\n.react-flow__node-default.selectable.selected,\n .react-flow__node-default.selectable:focus,\n .react-flow__node-default.selectable:focus-visible,\n .react-flow__node-input.selectable.selected,\n .react-flow__node-input.selectable:focus,\n .react-flow__node-input.selectable:focus-visible,\n .react-flow__node-output.selectable.selected,\n .react-flow__node-output.selectable:focus,\n .react-flow__node-output.selectable:focus-visible,\n .react-flow__node-group.selectable.selected,\n .react-flow__node-group.selectable:focus,\n .react-flow__node-group.selectable:focus-visible {\n box-shadow: 0 0 0 0.5px #1a192b;\n }\n.react-flow__node-group {\n background-color: rgba(240, 240, 240, 0.25);\n}\n.react-flow__nodesselection-rect,\n.react-flow__selection {\n background: rgba(0, 89, 220, 0.08);\n border: 1px dotted rgba(0, 89, 220, 0.8);\n}\n.react-flow__nodesselection-rect:focus,\n .react-flow__nodesselection-rect:focus-visible,\n .react-flow__selection:focus,\n .react-flow__selection:focus-visible {\n outline: none;\n }\n.react-flow__controls {\n box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);\n}\n.react-flow__controls-button {\n border: none;\n background: #fefefe;\n border-bottom: 1px solid #eee;\n box-sizing: content-box;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 16px;\n height: 16px;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n padding: 5px;\n }\n.react-flow__controls-button:hover {\n background: #f4f4f4;\n }\n.react-flow__controls-button svg {\n width: 100%;\n max-width: 12px;\n max-height: 12px;\n }\n.react-flow__controls-button:disabled {\n pointer-events: none;\n }\n.react-flow__controls-button:disabled svg {\n fill-opacity: 0.4;\n }\n.react-flow__minimap {\n background-color: #fff;\n}\n.react-flow__resize-control {\n position: absolute;\n}\n.react-flow__resize-control.left,\n.react-flow__resize-control.right {\n cursor: ew-resize;\n}\n.react-flow__resize-control.top,\n.react-flow__resize-control.bottom {\n cursor: ns-resize;\n}\n.react-flow__resize-control.top.left,\n.react-flow__resize-control.bottom.right {\n cursor: nwse-resize;\n}\n.react-flow__resize-control.bottom.left,\n.react-flow__resize-control.top.right {\n cursor: nesw-resize;\n}\n/* handle styles */\n.react-flow__resize-control.handle {\n width: 4px;\n height: 4px;\n border: 1px solid #fff;\n border-radius: 1px;\n background-color: #3367d9;\n transform: translate(-50%, -50%);\n}\n.react-flow__resize-control.handle.left {\n left: 0;\n top: 50%;\n}\n.react-flow__resize-control.handle.right {\n left: 100%;\n top: 50%;\n}\n.react-flow__resize-control.handle.top {\n left: 50%;\n top: 0;\n}\n.react-flow__resize-control.handle.bottom {\n left: 50%;\n top: 100%;\n}\n.react-flow__resize-control.handle.top.left {\n left: 0;\n}\n.react-flow__resize-control.handle.bottom.left {\n left: 0;\n}\n.react-flow__resize-control.handle.top.right {\n left: 100%;\n}\n.react-flow__resize-control.handle.bottom.right {\n left: 100%;\n}\n/* line styles */\n.react-flow__resize-control.line {\n border-color: #3367d9;\n border-width: 0;\n border-style: solid;\n}\n.react-flow__resize-control.line.left,\n.react-flow__resize-control.line.right {\n width: 1px;\n transform: translate(-50%, 0);\n top: 0;\n height: 100%;\n}\n.react-flow__resize-control.line.left {\n left: 0;\n border-left-width: 1px;\n}\n.react-flow__resize-control.line.right {\n left: 100%;\n border-right-width: 1px;\n}\n.react-flow__resize-control.line.top,\n.react-flow__resize-control.line.bottom {\n height: 1px;\n transform: translate(0, -50%);\n left: 0;\n width: 100%;\n}\n.react-flow__resize-control.line.top {\n top: 0;\n border-top-width: 1px;\n}\n.react-flow__resize-control.line.bottom {\n border-bottom-width: 1px;\n top: 100%;\n}\n",".text-fields-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #000;\n border-radius: 5px;\n min-width: 200px;\n }\n\n hr {\n border: none;\n background-color: #bbb;\n height: 1px;\n }\n\n .grouped-handle {\n background: #555; \n height: 15px !important;\n }\n\n .small-standard-font {\n font-size: 10pt;\n font-family: -apple-system, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;\n }\n\n .status-icon {\n display: inline-block;\n font-size: 14pt;\n margin: 0px 0px 0px 4px;\n padding: 0px;\n }\n .status-icon .status-tooltip {\n visibility: hidden;\n font-size: 10pt;\n font-family: -apple-system, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;\n width: 150px;\n color: #fff;\n text-align: left;\n border-radius: 6px;\n padding: 5px;\n pointer-events: none;\n\n /* Position the tooltip */\n position: absolute;\n z-index: 9000;\n }\n .status-icon:hover .status-tooltip {\n visibility: visible;\n }\n .warning-status {\n color: #CC7722;\n }\n .warning-status .status-tooltip {\n background-color: #CC7722;\n }\n .ready-status {\n color: #4CBB17;\n }\n .ready-status .status-tooltip {\n background-color: #4CBB17;\n }\n .error-status {\n color: #E52A2A;\n }\n .error-status .status-tooltip {\n background-color: #E52A2A;\n }\n\n /* Loading icon */ \n .lds-ring {\n display: inline-block;\n position: relative;\n margin-left: 4px;\n width: 16px;\n height: 16px;\n }\n .lds-ring div {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 16px;\n height: 16px;\n margin: 2px;\n border: 2px solid #0096FF;\n border-radius: 50%;\n animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: #0096FF transparent transparent transparent;\n }\n .lds-ring div:nth-child(1) {\n animation-delay: -0.45s;\n }\n .lds-ring div:nth-child(2) {\n animation-delay: -0.3s;\n }\n .lds-ring div:nth-child(3) {\n animation-delay: -0.15s;\n }\n @keyframes lds-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n\n .llm-list-container {\n background-color: #eee; \n border-radius: 4px;\n padding: 8px;\n overflow-y: auto;\n max-height: 205px;\n }\n .llm-list-backdrop {\n margin: 6px 0px 6px 6px;\n padding-bottom: 4px;\n text-align: left; \n font-size: 10pt;\n color: #777;\n }\n\n button.remove-edge-btn {\n border-radius: 50%;\n border-color: #ddd;\n border-style: solid;\n background-color: #ddd;\n cursor:pointer;\n }\n button.remove-edge-btn:hover {\n background-color: white;\n border-color: #fff;\n }\n button.remove-edge-btn:active {\n background-color: #777;\n color: #fff;\n border-color: #777;\n }\n\n .input-field {\n display: flex;\n align-items: center;\n margin-bottom: 5px;\n }\n .input-field textarea {\n font-family: monospace;\n }\n\n .remove-text-field-btn {\n margin-left: 3px;\n padding: 2px 4px;\n border-style: none;\n background-color: inherit;\n color: #bbb;\n font-weight: bold;\n cursor: pointer;\n }\n .remove-text-field-btn:hover {\n color: #666;\n background-color: #eee;\n }\n \n .input-field input {\n margin-left: 5px;\n }\n \n .node-header {\n border-bottom: 1px;\n border-top: 0px;\n border-left: 0px;\n border-right: 0px;\n border-style: dashed;\n margin-bottom: 12px;\n padding-bottom: 4px;\n }\n .node-header:hover {\n border-bottom-color: #888;\n }\n\n .prompt-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n width: 290px;\n }\n \n .prompt-node textarea {\n width: 100%;\n resize: none;\n box-sizing: border-box;\n }\n\n .evaluator-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n min-width: 280px;\n }\n .eval-output-footer {\n margin: 10px -9px -9px -9px;\n min-height: 100px;\n max-height: 100px;\n /* cursor: zoom-in; */\n }\n .eval-output-footer p {\n position: absolute;\n overflow: scroll;\n white-space: pre-wrap;\n font-family: 'Monaco', Courier, monospace;\n font-size: 9pt;\n margin: 6px 8px 6px 8px;\n padding-top: 2px;\n padding-bottom: 0px;\n max-height: 90px;\n max-width: 100%;\n }\n .eval-inspect-response-footer {\n margin: 10px -9px -9px -9px;\n max-height: 100px;\n overflow-y: auto;\n background-color: #ceeaf5b1; \n /* #cef5dab1; */\n cursor: zoom-in;\n }\n .eval-inspect-response-footer button {\n cursor: zoom-in;\n }\n /* .blink-inspect-response-footer {\n animation: blink-footer 0.7s ease-in 1;\n }\n @keyframes blink-footer {\n 50% {\n background-color: #eff6fbb1; \n }\n } */\n\n .ace-editor-container {\n resize:vertical;\n }\n\n .vis-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n }\n .plotly-vis {\n width: 100%;\n height: 100%;\n resize: both;\n overflow: auto;\n }\n .plot-legend {\n font-size: 11px;\n font-family: monospace;\n }\n .plot-legend-item {\n cursor: pointer;\n }\n .plot-legend-item:hover {\n opacity: 0.6;\n }\n .plot-legend-item:active {\n opacity: 0.8;\n }\n\n g.ytick text {\n line-height: 2px;\n }\n\n .response-var-inline > .response-var-name {\n font-size: 8pt;\n font-weight: normal;\n }\n .response-var-inline > .response-var-value {\n font-size: 8pt;\n }\n\n .settings-var-inline {\n background: #eee;\n margin: -3px 0px 0px 0px !important;\n padding: 4px 4px 8px 8px !important;\n border-radius: 0px 0px 12px 12px !important;\n }\n .wrap-line {\n white-space: pre-wrap;\n }\n\n .inspector-node {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n }\n .inspect-response-container {\n overflow-y: scroll;\n min-width: 150px;\n width: 280px;\n min-height: 270px;\n height: 200px;\n max-width: 1150px;\n max-height: 750px;\n resize: both;\n }\n .inspect-modal-response-container .response-var-header {\n padding: 10px;\n margin-top: 8px;\n line-height: 1.2;\n }\n .inspect-modal-response-container .response-var-name {\n font-size: 10pt;\n font-weight: bold;\n }\n .inspect-modal-response-container .response-var-value {\n font-size: 10pt;\n letter-spacing: -0.5px;\n }\n .inspect-modal-response-container .response-llm-header {\n font-size: 10pt;\n }\n .inspect-modal-response-container .small-response {\n font-size: 10pt;\n margin: 6px -1px 8px -1px;\n padding: 8px;\n }\n .inspect-modal-response-container .small-response-metrics {\n font-size: 12pt;\n }\n .inspect-modal-response-container .num-same-responses {\n font-size: 10pt;\n }\n .inspect-table-var {\n background-color: rgb(224, 244, 250);\n padding-top: 10px;\n border-right: 1px solid #cde; \n font-weight: 500;\n white-space: pre-wrap;\n }\n .inspect-table-metavar {\n background-color: rgb(224, 232, 250);\n padding-top: 10px;\n border-right: 1px solid #cde; \n font-weight: 500;\n white-space: pre-wrap;\n }\n .inspect-table-llm-resp {\n padding-top: 8px;\n padding-bottom: 20px;\n min-width: 160px;\n border-right: 1px solid #eee;\n padding-left: 8px !important;\n padding-right: 0px !important;\n }\n .inspect-responses-drawer {\n position: absolute;\n left: 100%;\n top: 12px;\n background-color: white;\n border: 1px solid #999;\n border-top-right-radius: 5px; \n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 2px;\n box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.1) inset;\n }\n .response-group-component-header:hover {\n color: #05e;\n cursor: pointer;\n text-decoration:underline;\n }\n .response-group-component-header:active {\n color: #00c;\n }\n .response-var-header {\n background-color: #e0f4fa;\n border-radius: 1px;\n padding: 2px 8px 4px 8px;\n line-height: 0.9;\n }\n .response-var-inline-container {\n display: flex;\n align-items: start;\n flex-wrap: wrap;\n justify-content: left;\n /* font-style: italic; */\n padding-bottom: 1px;\n }\n .response-llm-header {\n font-family: -apple-system, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;\n font-size: 9pt;\n font-weight: 500;\n padding: 4px 4px 4px 7px;\n border-top-left-radius: 5px;\n border-top-right-radius: 15px;\n }\n .response-var-inline {\n margin: 0px 4px;\n /* background-color: #ffffff33; */\n color: #00000088;\n border-radius: 4px;\n text-rendering: optimizeSpeed;\n /* mix-blend-mode: color-burn; */\n padding: 0px 4px;\n }\n .response-var-name {\n font-size: 9pt;\n font-weight: bold;\n }\n .response-var-value {\n font-family: monospace;\n font-size: 8pt;\n }\n .inspect-modal-prompt-box {\n background-color: #eee;\n padding: 10px;\n margin: 0px 0px 10px 0px;\n border-bottom-style: solid;\n border-bottom-color: #aaa;\n box-shadow: 1px 1px 8px #ccc;\n max-height: 200px;\n overflow-y: auto;\n }\n .inspect-modal-prompt-text {\n font-family: monospace;\n font-size: 11pt;\n white-space: pre-line;\n }\n .inspect-modal-prompt-prefix {\n font-size: 10pt;\n font-weight: bold;\n }\n\n .prompt-preview {\n font-size: 10pt;\n font-family: monospace;\n border-radius: 6px;\n padding: 8px;\n margin: 10px 0px 0px 0px;\n background-color: #ddd;\n color: #444;\n white-space: pre-wrap;\n }\n .join-text-preview {\n margin: 0px 0px 10px 0px;\n }\n\n .small-response {\n font-size: 8pt;\n font-family: monospace;\n border-top-style: dashed;\n border-top-width: 0.0625rem;\n border-bottom-style: dashed;\n border-bottom-width: 0.0625rem;\n border-color: #fff;\n padding: 2px;\n margin: 4px 3px;\n background-color: rgba(255, 255, 255, 0.4);\n white-space: pre-wrap;\n user-select: text;\n cursor: text;\n }\n .small-response-metrics {\n font-size: 10pt;\n font-family: -apple-system, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;\n font-weight: 500;\n text-align: center;\n border-top-left-radius: 20px;\n border-top-right-radius: 20px;\n padding: 0px 2px 1px 0px;\n margin: 8px 20% -6px 20%;\n background-color: rgba(255, 255, 255, 0.3);\n color: #333;\n }\n .num-same-responses {\n position: relative;\n display: block;\n float: right;\n text-align: center;\n top: 2pt;\n right: 3px;\n /* width: 12pt; */\n padding: 1px 4px;\n height: 12pt;\n background-color: #00000033;\n border-radius: 5px;\n font-size: 9pt;\n font-weight: 500;\n color: white;\n overflow: hidden;\n }\n\n .llm-response-container {\n max-width: 100%;\n }\n .llm-response-container h1 {\n font-weight: 400;\n font-size: 10pt;\n margin: 6px 8px 0px 8px;\n padding-top: 2px;\n padding-bottom: 0px;\n color: #222;\n }\n\n .llm-group-header {\n font-weight: 400;\n font-size: 10pt;\n margin: 6px 8px 4px 8px;\n padding-top: 2px;\n padding-bottom: 0px;\n color: #222;\n }\n\n .response-group {\n margin: 2px 0px 8px 0px;\n padding: 2px 2px 2px 2px;\n /* border-radius: 7px; */\n }\n .response-boxes-wrapper {\n margin-top: 4px;\n padding-left: 10px;\n border-left-width: 2px;\n border-left-style: solid;\n border-left-color: #bbb;\n }\n .response-box {\n padding: 2px 0px 1px 0px;\n margin: 0px 2px 4px 2px;\n border-radius: 5px;\n min-width: 120px;\n /* max-width: 30%; */\n }\n\n .response-item-llm-name-wrapper {\n padding-bottom: 0px;\n }\n .response-item-llm-name-wrapper h1 {\n font-size: 8pt;\n font-weight: bold;\n font-style: italic;\n /* mix-blend-mode: color-burn; */\n color: #000000bb;\n opacity: 0.7;\n text-align: right;\n padding-right: 8px;\n margin: 0px;\n }\n\n .response-preview-container {\n margin: 10px -9px -9px -9px;\n max-height: 100px;\n overflow-y: auto;\n background-color: #ceeaf5b1;\n cursor: zoom-in;\n }\n \n .response-tag {\n font-size: 9pt;\n color: #555;\n margin: 0px 0px 0px 2px;\n }\n\n .cfnode {\n background-color: #fff;\n padding: 10px;\n border: 1px solid #999;\n border-radius: 5px;\n /* box-shadow: 1px 1px 8px #ccc; Slows it down */\n }\n .cfnode:hover {\n border-color: #222;\n }\n\n .join-node {\n min-width: 200px;\n }\n\n .tabular-data-node {\n min-width: 280px;\n }\n .tabular-data-container {\n resize: both;\n overflow: auto;\n /* max-width: 800px; */\n width: 400px;\n min-width: inherit;\n height: 300px;\n /* max-height: 700px; */\n border-bottom-style: solid;\n border-right-style: solid;\n border-bottom-width: 1px;\n border-right-width: 1px;\n border-color: #ccc;\n display: block;\n }\n .tabular-data-container td {\n white-space: nowrap;\n }\n .tabular-data-container th {\n white-space: nowrap;\n }\n .editable-table {\n table-layout: auto;\n }\n .table-col-edit-btn {\n position: relative;\n top: 1px;\n margin: 0px;\n padding: 2px;\n color: #888;\n width: '12px';\n height: '12px';\n cursor: pointer;\n }\n .table-col-edit-btn:hover {\n background-color: #eee;\n }\n .table-col-edit-btn:active {\n background-color: #ddd;\n }\n .content-editable-div {\n white-space: pre-wrap; \n overflow-y: scroll;\n max-height: 150px;\n margin: 6px 0px;\n font-family: monospace;\n font-size: 10pt;\n line-height: 1.0; \n cursor: text;\n }\n th .content-editable-div {\n font-family: -apple-system, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;\n }\n [contenteditable=true]:empty:not(:focus):before{\n content:attr(placeholder);\n color:grey;\n font-style:italic;\n }\n .add-table-row-btn {\n position: absolute;\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 2px;\n }\n .add-table-row-btn button {\n margin-right: 10px;\n }\n /* .add-column-btn {\n position: relative;\n float: right;\n margin-top: 6px;\n height: 80px; \n width: 20px;\n }\n .add-column-btn span {\n position: absolute;\n top: 60%;\n transform-origin: top left;\n transform: translate(-50%) rotate(-90deg);\n } */\n \n .var-select-toolbar {\n text-align: right;\n margin: 0px;\n padding: 0px;\n position: relative;\n margin-bottom: -30px;\n }\n .var-select-toolbar label {\n font-size: 12px;\n }\n .var-select-toolbar select {\n width:100px;\n font-size: 12px;\n }\n\n .code-style {\n background-color: #ddd;\n font-family: 'Courier New', Courier, monospace;\n }\n\n .hook-tag {\n padding-top: 5px;;\n padding-bottom: 3px;\n }\n\n .code-mirror-field-header {\n font-size: 10pt;\n color: #333;\n margin-bottom: 4px;\n }\n\n /* Allows resizing the Mantine Textarea component */\n .text-field-fixed .mantine-Textarea-wrapper textarea {\n resize: vertical;\n overflow-y: auto;\n width: 260px;\n padding: calc(0.5rem / 3);\n font-size: 10pt;\n font-family: monospace;\n line-height: 1.2;\n border-color: #999;\n }\n .prompt-field-fixed .mantine-Textarea-wrapper textarea {\n resize: vertical;\n overflow-y: auto;\n padding: calc(0.5rem / 3);\n font-size: 10pt;\n font-family: monospace;\n line-height: 1.2;\n border-color: #999;\n }\n\n .add-text-field-btn {\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .add-llm-model-btn {\n display: flex;\n align-items: right;\n justify-content: right;\n float: right;\n height: 20px;\n }\n .add-llm-model-btn button {\n border-style: solid;\n border-color: #777;\n border-width: 1pt;\n border-radius: 3px;\n color: #777;\n margin-right: 2px;\n }\n .add-llm-model-btn:hover button {\n background-color: white;\n }\n .add-llm-model-btn:active button {\n background-color: black;\n color: white;\n }\n\n/* Play button triangle |> */\n.play-button {\n border: 0;\n background: transparent;\n box-sizing: border-box;\n width: 0;\n height: 10px;\n margin: 2px;\n pointer-events: none;\n border-color: transparent transparent transparent #202020;\n border-style: solid;\n border-width: 5px 0 5px 10px;\n}\n\n/** CSS Button style from https://css-buttons-hover.netlify.app/ */\n.AmitSahoo45-button-3 {\n position: relative;\n padding: 2px 10px;\n height: 20px;\n margin-top: -5px;\n margin-right: 3px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n background: rgb(63, 204, 106, 0.2);\n color: #333;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n}\n\n.AmitSahoo45-button-3:hover {\n background: rgb(26, 200, 69);\n color: white;\n box-shadow: 0 0 30px 5px rgb(63, 234, 106, 0.815);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.AmitSahoo45-button-3:active {\n background: #40a829;\n color: yellow;\n}\n\n.AmitSahoo45-button-3:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n\n.AmitSahoo45-button-3::before {\n content: '';\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n.script-node-input {\n width: 100%;\n}\n\n.node-header-btns-container {\n float: right;\n margin-right: 0px;\n margin-left: 10px;\n margin-top: -3px;\n}\n\n/* Close button */\n.close-button {\n position: relative;\n padding: 2px 6px;\n margin-top: -7px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n background: transparent;\n color: #333;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n}\n.close-button:hover {\n background: rgb(200 , 26, 69);\n color: white;\n box-shadow: 0 0 30px 5px rgb(234, 63, 106, 0.815);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.close-button:active {\n background: #660000;\n color: yellow;\n}\n.close-button:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n.close-button::before {\n content: '';\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n color: black;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n/* Custom button styling */\n.custom-button {\n position: relative;\n text-decoration: none;\n padding: 2px 6px;\n margin-top: -7px;\n margin-right: 3px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n background: transparent;\n color: #333;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n}\n.custom-button:hover {\n background: rgb(241, 208, 44);\n color: white;\n box-shadow: 0 0 30px 5px rgba(255, 222, 35, 0.815);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.custom-button:active {\n background: #a36a07;\n color: rgb(51, 10, 6);\n}\n.custom-button:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n.custom-button::before {\n content: '';\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n color: black;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n/* AI button */\n.ai-button {\n position: relative;\n padding: 2px 6px;\n margin-top: -7px;\n margin-right: 3px;\n border-radius: 5px;\n border: 1px solid #999;\n font-size: 12px;\n color: #666;\n overflow: hidden;\n box-shadow: 0 0 0 0 transparent;\n -webkit-transition: all 0.2s ease-in;\n -moz-transition: all 0.2s ease-in;\n transition: all 0.2s ease-in;\n cursor: pointer;\n background: #f2d2f3;\n}\n.ai-button:hover {\n background: rgb(177,63,204);\n color: white;\n box-shadow: 0 0 30px 5px rgb(177,63,204);\n -webkit-transition: all 0.2s ease-out;\n -moz-transition: all 0.2s ease-out;\n transition: all 0.2s ease-out;\n}\n.ai-button:active {\n background: rgb(129,40,151);\n}\n.ai-button:hover::before {\n -moz-animation: sh02 0.5s 0s linear;\n animation: sh02 0.5s 0s linear;\n}\n.ai-button::before {\n content: '';\n display: block;\n width: 0px;\n height: 86%;\n position: absolute;\n top: 7%;\n left: 0%;\n opacity: 0;\n color: black;\n background: #fff;\n box-shadow: 0 0 50px 30px #fff;\n -webkit-transform: skewX(-20deg);\n -moz-transform: skewX(-20deg);\n -ms-transform: skewX(-20deg);\n -o-transform: skewX(-20deg);\n transform: skewX(-20deg);\n}\n\n/* Make text blink */\n.text-blink {\n animation: blinker .75s linear infinite;\n font-family: sans-serif;\n}\n@keyframes blinker {\n 50% {\n opacity: 0;\n }\n}\n\n/* Chat history bubbles */\n.chat-bubble {\n --r: 15px; /* the radius */\n --t: 25px; /* the size of the tail */\n \n max-width: 80%;\n padding: calc(2*var(--r)/3);\n mask: \n radial-gradient(var(--t) at var(--_d) 0,#0000 98%,#000 102%) \n var(--_d) 100%/calc(100% - var(--r)) var(--t) no-repeat,\n conic-gradient(at var(--r) var(--r),#000 75%,#0000 0) \n calc(var(--r)/-2) calc(var(--r)/-2) padding-box, \n radial-gradient(50% 50%,#000 98%,#0000 101%) \n 0 0/var(--r) var(--r) space padding-box;\n background: #333 border-box;\n color: #fff;\n}\n.chat-msg-left {\n --_d: 0%;\n border-left: var(--t) solid #0000;\n margin-right: var(--t);\n place-self: start;\n}\n.chat-msg-right {\n --_d: 100%;\n border-right: var(--t) solid #0000;\n margin-left: var(--t);\n place-self: end;\n}\n.chat-history {\n margin: 0;\n min-height: 10vh;\n display: grid;\n place-content: left;\n width: 100%;\n gap: 10px;\n font-family: system-ui, sans-serif;\n font-size: 14px;\n}\n\n.something-changed-circle {\n width: 6px;\n height: 6px;\n border-radius: 50%;\n border: 0px solid;\n background-color: #ff0000;\n opacity: 0.7;\n margin-bottom: 10px;\n margin-left: 2px;\n}\n\n/* Model settings form styling */\n.rjsf fieldset {\n border-style: none;\n margin-top: 20px;\n margin-left: 30px;\n margin-right: 30px;\n}\n.rjsf fieldset .field-array {\n margin: 0;\n padding: 0;\n}\n.rjsf label.control-label {\n font-weight: bold;\n font-size: 11pt;\n}\n.rjsf .field-array legend {\n font-weight: bold;\n font-size: 11pt;\n}\n\n\n.rjsf input {\n width: 100%;\n resize: none;\n}\n.rjsf select {\n width: 100%;\n}\n.rjsf textarea {\n width: 100%;\n resize: vertical;\n}\n\n.rjsf .field-description {\n color: #444;\n margin-top: 8px;\n}\n\n.rjsf fieldset .form-group {\n margin-bottom: 30px;\n padding-top: 6px;\n font-size: 9pt;\n border-top-style: solid;\n border-top-color: #ddd;\n}\n\n.rjsf button.btn {\n float: right;\n margin-right: 30px;\n}\n.rjsf button.btn-add {\n width: 20px;\n height: 20px;\n background: #40a829;\n}\n.rjsf button.btn-danger {\n background: #660000;\n}\n\n.rjsf .help-block {\n color: #999;\n margin: 0;\n}"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/chainforge/react-server/build/static/js/main.b3a3faeb.js b/chainforge/react-server/build/static/js/main.b3a3faeb.js new file mode 100644 index 00000000..11a7639e --- /dev/null +++ b/chainforge/react-server/build/static/js/main.b3a3faeb.js @@ -0,0 +1,3 @@ +/*! For license information please see main.b3a3faeb.js.LICENSE.txt */ +!function(){var e={65675:function(e,t,n){e=n.nmd(e),function(){var e=function(){return this}();e||"undefined"==typeof window||(e=window);var t=function e(t,n,r){"string"===typeof t?(2==arguments.length&&(r=n),e.modules[t]||(e.payloads[t]=r,e.modules[t]=null)):e.original?e.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace())};t.modules={},t.payloads={};var n=function(e,t,n){if("string"===typeof t){var i=a(e,t);if(void 0!=i)return n&&n(),i}else if("[object Array]"===Object.prototype.toString.call(t)){for(var o=[],s=0,l=t.length;sn.length)&&(t=n.length),t-=e.length;var r=n.indexOf(e,t);return-1!==r&&r===t})),String.prototype.repeat||r(String.prototype,"repeat",(function(e){for(var t="",n=this;e>0;)1&e&&(t+=n),(e>>=1)&&(n+=n);return t})),String.prototype.includes||r(String.prototype,"includes",(function(e,t){return-1!=this.indexOf(e,t)})),Object.assign||(Object.assign=function(e){if(void 0===e||null===e)throw new TypeError("Cannot convert undefined or null to object");for(var t=Object(e),n=1;n>>0,r=arguments[1]>>0,i=r<0?Math.max(n+r,0):Math.min(r,n),a=arguments[2],o=void 0===a?n:a>>0,s=o<0?Math.max(n+o,0):Math.min(o,n);i0;)1&t&&(n+=e),(t>>=1)&&(e+=e);return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){for(var t=[],n=0,r=e.length;n=0?parseFloat((a.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((a.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=a.match(/ Gecko\/\d+/),t.isOpera="object"==typeof opera&&"[object Opera]"==Object.prototype.toString.call(window.opera),t.isWebKit=parseFloat(a.split("WebKit/")[1])||void 0,t.isChrome=parseFloat(a.split(" Chrome/")[1])||void 0,t.isEdge=parseFloat(a.split(" Edge/")[1])||void 0,t.isAIR=a.indexOf("AdobeAIR")>=0,t.isAndroid=a.indexOf("Android")>=0,t.isChromeOS=a.indexOf(" CrOS ")>=0,t.isIOS=/iPad|iPhone|iPod/.test(a)&&!window.MSStream,t.isIOS&&(t.isMac=!0),t.isMobile=t.isIOS||t.isAndroid})),ace.define("ace/lib/dom",["require","exports","module","ace/lib/useragent"],(function(e,t,n){"use strict";var r,i=e("./useragent");t.buildDom=function e(t,n,r){if("string"==typeof t&&t){var i=document.createTextNode(t);return n&&n.appendChild(i),i}if(!Array.isArray(t))return t&&t.appendChild&&n&&n.appendChild(t),t;if("string"!=typeof t[0]||!t[0]){for(var a=[],o=0;o=1.5,i.isChromeOS&&(t.HI_DPI=!1),"undefined"!==typeof document){var l=document.createElement("div");t.HI_DPI&&void 0!==l.style.transform&&(t.HAS_CSS_TRANSFORMS=!0),i.isEdge||"undefined"===typeof l.style.animationName||(t.HAS_CSS_ANIMATION=!0),l=null}t.HAS_CSS_TRANSFORMS?t.translate=function(e,t,n){e.style.transform="translate("+Math.round(t)+"px, "+Math.round(n)+"px)"}:t.translate=function(e,t,n){e.style.top=Math.round(n)+"px",e.style.left=Math.round(t)+"px"}})),ace.define("ace/lib/net",["require","exports","module","ace/lib/dom"],(function(e,t,n){"use strict";var r=e("./dom");t.get=function(e,t){var n=new XMLHttpRequest;n.open("GET",e,!0),n.onreadystatechange=function(){4===n.readyState&&t(n.responseText)},n.send(null)},t.loadScript=function(e,t){var n=r.getDocumentHead(),i=document.createElement("script");i.src=e,n.appendChild(i),i.onload=i.onreadystatechange=function(e,n){!n&&i.readyState&&"loaded"!=i.readyState&&"complete"!=i.readyState||(i=i.onload=i.onreadystatechange=null,n||t())}},t.qualifyURL=function(e){var t=document.createElement("a");return t.href=e,t.href}})),ace.define("ace/lib/oop",["require","exports","module"],(function(e,t,n){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var n in t)e[n]=t[n];return e},t.implement=function(e,n){t.mixin(e,n)}})),ace.define("ace/lib/event_emitter",["require","exports","module"],(function(e,t,n){"use strict";var r={},i=function(){this.propagationStopped=!0},a=function(){this.defaultPrevented=!0};r._emit=r._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var n=this._eventRegistry[e]||[],r=this._defaultHandlers[e];if(n.length||r){"object"==typeof t&&t||(t={}),t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=i),t.preventDefault||(t.preventDefault=a),n=n.slice();for(var o=0;o1&&(i=n[n.length-2]);var o=s[t+"Path"];return null==o?o=s.basePath:"/"==r&&(t=r=""),o&&"/"!=o.slice(-1)&&(o+="/"),o+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return s.$moduleUrls[e]=t};var l;t.setLoader=function(e){l=e},t.dynamicModules=Object.create(null),t.$loading={},t.$loaded={},t.loadModule=function(n,r){var a,o;Array.isArray(n)&&(o=n[0],n=n[1]);var s=function(a){if(a&&!t.$loading[n])return r&&r(a);if(t.$loading[n]||(t.$loading[n]=[]),t.$loading[n].push(r),!(t.$loading[n].length>1)){var s=function(){!function(t,n){"ace/theme/textmate"===t||"./theme/textmate"===t?n(null,e("./theme/textmate")):l?l(t,n):console.error("loader is not configured")}(n,(function(e,r){r&&(t.$loaded[n]=r),t._emit("load.module",{name:n,module:r});var i=t.$loading[n];t.$loading[n]=null,i.forEach((function(e){e&&e(r)}))}))};if(!t.get("packaged"))return s();i.loadScript(t.moduleUrl(n,o),s),c()}};if(t.dynamicModules[n])t.dynamicModules[n]().then((function(e){e.default?s(e.default):s(e)}));else{try{a=this.$require(n)}catch(u){}s(a||t.$loaded[n])}},t.$require=function(e){if("function"==typeof n.require){return n.require(e)}},t.setModuleLoader=function(e,n){t.dynamicModules[e]=n};var c=function(){s.basePath||s.workerPath||s.modePath||s.themePath||Object.keys(s.$moduleUrls).length||(console.error("Unable to infer path to ace from script src,","use ace.config.set('basePath', 'path') to enable dynamic loading of modes and themes","or with webpack use ace/webpack-resolver"),c=function(){})};t.version="1.28.0"})),ace.define("ace/loader_build",["require","exports","module","ace/lib/fixoldbrowsers","ace/config"],(function(e,t,r){"use strict";e("./lib/fixoldbrowsers");var i=e("./config");i.setLoader((function(t,n){e([t],(function(e){n(null,e)}))}));var a=function(){return this||"undefined"!=typeof window&&window}();function o(t){if(a&&a.document){i.set("packaged",t||e.packaged||r.packaged||a.define&&n.amdD.packaged);var o={},s="",l=document.currentScript||document._currentScript,c=l&&l.ownerDocument||document;l&&l.src&&(s=l.src.split(/[?#]/)[0].split("/").slice(0,-1).join("/")||"");for(var u,f=c.getElementsByTagName("script"),d=0;d ["+this.end.row+"/"+this.end.column+"]"},e.prototype.contains=function(e,t){return 0==this.compare(e,t)},e.prototype.compareRange=function(e){var t,n=e.end,r=e.start;return 1==(t=this.compare(n.row,n.column))?1==(t=this.compare(r.row,r.column))?2:0==t?1:0:-1==t?-2:-1==(t=this.compare(r.row,r.column))?-1:1==t?42:0},e.prototype.comparePoint=function(e){return this.compare(e.row,e.column)},e.prototype.containsRange=function(e){return 0==this.comparePoint(e.start)&&0==this.comparePoint(e.end)},e.prototype.intersects=function(e){var t=this.compareRange(e);return-1==t||0==t||1==t},e.prototype.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},e.prototype.isStart=function(e,t){return this.start.row==e&&this.start.column==t},e.prototype.setStart=function(e,t){"object"==typeof e?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},e.prototype.setEnd=function(e,t){"object"==typeof e?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},e.prototype.inside=function(e,t){return 0==this.compare(e,t)&&(!this.isEnd(e,t)&&!this.isStart(e,t))},e.prototype.insideStart=function(e,t){return 0==this.compare(e,t)&&!this.isEnd(e,t)},e.prototype.insideEnd=function(e,t){return 0==this.compare(e,t)&&!this.isStart(e,t)},e.prototype.compare=function(e,t){return this.isMultiLine()||e!==this.start.row?ethis.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0:tthis.end.column?1:0},e.prototype.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},e.prototype.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},e.prototype.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},e.prototype.clipRows=function(t,n){if(this.end.row>n)var r={row:n+1,column:0};else if(this.end.rown)var i={row:n+1,column:0};else if(this.start.row1?++f>4&&(f=1):f=1,a.isIE){var o=Math.abs(e.clientX-s)>5||Math.abs(e.clientY-l)>5;c&&!o||(f=1),c&&clearTimeout(c),c=setTimeout((function(){c=null}),n[f-1]||600),1==f&&(s=e.clientX,l=e.clientY)}if(e._clicks=f,r[i]("mousedown",e),f>4)f=0;else if(f>1)return r[i](d[f],e)}Array.isArray(e)||(e=[e]),e.forEach((function(e){u(e,"mousedown",h,o)}))};var d=function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)};function h(e,t,n){var r=d(t);if(!a.isMac&&o){if(t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(r|=8),o.altGr){if(3==(3&r))return;o.altGr=0}if(18===n||17===n){var l="location"in t?t.location:t.keyLocation;if(17===n&&1===l)1==o[n]&&(s=t.timeStamp);else if(18===n&&3===r&&2===l){t.timeStamp-s<50&&(o.altGr=!0)}}}if((n in i.MODIFIER_KEYS&&(n=-1),!r&&13===n)&&(3===(l="location"in t?t.location:t.keyLocation)&&(e(t,r,-n),t.defaultPrevented)))return;if(a.isChromeOS&&8&r){if(e(t,r,n),t.defaultPrevented)return;r&=-9}return!!(r||n in i.FUNCTION_KEYS||n in i.PRINTABLE_KEYS)&&e(t,r,n)}function p(){o=Object.create(null)}if(t.getModifierString=function(e){return i.KEY_MODS[d(e)]},t.addCommandKeyListener=function(e,n,r){if(a.isOldGecko||a.isOpera&&!("KeyboardEvent"in window)){var i=null;u(e,"keydown",(function(e){i=e.keyCode}),r),u(e,"keypress",(function(e){return h(n,e,i)}),r)}else{var s=null;u(e,"keydown",(function(e){o[e.keyCode]=(o[e.keyCode]||0)+1;var t=h(n,e,e.keyCode);return s=e.defaultPrevented,t}),r),u(e,"keypress",(function(e){s&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),s=null)}),r),u(e,"keyup",(function(e){o[e.keyCode]=null}),r),o||(p(),u(window,"focus",p))}},"object"==typeof window&&window.postMessage&&!a.isOldIE){var v=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+v++;u(n,"message",(function i(a){a.data==r&&(t.stopPropagation(a),f(n,"message",i),e())})),n.postMessage(r,"*")}}t.$idleBlocked=!1,t.onIdle=function(e,n){return setTimeout((function n(){t.$idleBlocked?setTimeout(n,100):e()}),n)},t.$idleBlockId=null,t.blockIdle=function(e){t.$idleBlockId&&clearTimeout(t.$idleBlockId),t.$idleBlocked=!0,t.$idleBlockId=setTimeout((function(){t.$idleBlocked=!1}),e||100)},t.nextFrame="object"==typeof window&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}})),ace.define("ace/clipboard",["require","exports","module"],(function(e,t,n){"use strict";var r;n.exports={lineMode:!1,pasteCancelled:function(){return!!(r&&r>Date.now()-50)||(r=!1)},cancel:function(){r=Date.now()}}})),ace.define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/config","ace/lib/useragent","ace/lib/dom","ace/lib/lang","ace/clipboard","ace/lib/keys"],(function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../config").nls,a=e("../lib/useragent"),o=e("../lib/dom"),s=e("../lib/lang"),l=e("../clipboard"),c=a.isChrome<18,u=a.isIE,f=a.isChrome>63,d=400,h=e("../lib/keys"),p=h.KEY_MODS,v=a.isIOS,m=v?/\s/:/\n/,g=a.isMobile;t.TextInput=function(e,t){var n=o.createElement("textarea");n.className="ace_text-input",n.setAttribute("wrap","off"),n.setAttribute("autocorrect","off"),n.setAttribute("autocapitalize","off"),n.setAttribute("spellcheck",!1),n.style.opacity="0",e.insertBefore(n,e.firstChild);var y=!1,b=!1,x=!1,w=!1,_="";g||(n.style.fontSize="1px");var k=!1,S=!1,T="",A=0,E=0,C=0,M=Number.MAX_SAFE_INTEGER,O=Number.MIN_SAFE_INTEGER,P=0;try{var L=document.activeElement===n}catch(X){}this.setNumberOfExtraLines=function(e){M=Number.MAX_SAFE_INTEGER,O=Number.MIN_SAFE_INTEGER,P=e<0?0:e},this.setAriaOptions=function(e){if(e.activeDescendant?(n.setAttribute("aria-haspopup","true"),n.setAttribute("aria-autocomplete",e.inline?"both":"list"),n.setAttribute("aria-activedescendant",e.activeDescendant)):(n.setAttribute("aria-haspopup","false"),n.setAttribute("aria-autocomplete","both"),n.removeAttribute("aria-activedescendant")),e.role&&n.setAttribute("role",e.role),e.setLabel&&(n.setAttribute("aria-roledescription",i("editor")),t.session)){var r=t.session.selection.cursor.row;n.setAttribute("aria-label",i("Cursor at row $0",[r+1]))}},this.setAriaOptions({role:"textbox"}),r.addListener(n,"blur",(function(e){S||(t.onBlur(e),L=!1)}),t),r.addListener(n,"focus",(function(e){if(!S){if(L=!0,a.isEdge)try{if(!document.hasFocus())return}catch(e){}t.onFocus(e),a.isEdge?setTimeout(R):R()}}),t),this.$focusScroll=!1,this.focus=function(){if(this.setAriaOptions({setLabel:t.renderer.enableKeyboardAccessibility}),_||f||"browser"==this.$focusScroll)return n.focus({preventScroll:!0});var e=n.style.top;n.style.position="fixed",n.style.top="0px";try{var r=0!=n.getBoundingClientRect().top}catch(X){return}var i=[];if(r)for(var a=n.parentElement;a&&1==a.nodeType;)i.push(a),a.setAttribute("ace_nocontext",!0),a=!a.parentElement&&a.getRootNode?a.getRootNode().host:a.parentElement;n.focus({preventScroll:!0}),r&&i.forEach((function(e){e.removeAttribute("ace_nocontext")})),setTimeout((function(){n.style.position="","0px"==n.style.top&&(n.style.top=e)}),0)},this.blur=function(){n.blur()},this.isFocused=function(){return L},t.on("beforeEndOperation",(function(){var e=t.curOp,r=e&&e.command&&e.command.name;if("insertstring"!=r){var i=r&&(e.docChanged||e.selectionChanged);x&&i&&(T=n.value="",W()),R()}}));var I=function(e,n){for(var r=n,i=1;i<=e-M&&i<2*P+1;i++)r+=t.session.getLine(e-i).length+1;return r},R=v?function(e){if(L&&(!y||e)&&!w){e||(e="");var r="\n ab"+e+"cde fg\n";r!=n.value&&(n.value=T=r);var i=4+(e.length||(t.selection.isEmpty()?0:1));4==A&&E==i||n.setSelectionRange(4,i),A=4,E=i}}:function(){if(!x&&!w&&(L||F)){x=!0;var e=0,r=0,i="";if(t.session){var a=t.selection,o=a.getRange(),s=a.cursor.row;s===O+1?O=(M=O+1)+2*P:s===M-1?M=(O=M-1)-2*P:(sO+1)&&(M=s>P?s-P:0,O=s>P?s+P:2*P);for(var l=[],c=M;c<=O;c++)l.push(t.session.getLine(c));if(i=l.join("\n"),e=I(o.start.row,o.start.column),r=I(o.end.row,o.end.column),o.start.rowO){var f=t.session.getLine(O+1);r=o.end.row>O+1?f.length:o.end.column,r+=i.length+1,i=i+"\n"+f}else g&&s>0&&(i="\n"+i,r+=1,e+=1);i.length>d&&(e0&&T[d]==e[d];)d++,s--;for(c=c.slice(d),d=1;l>0&&T.length-d>A-1&&T[T.length-d]==e[e.length-d];)d++,l--;u-=d-1,f-=d-1;var h=c.length-d+1;if(h<0&&(s=-h,h=0),c=c.slice(0,h),!r&&!c&&!u&&!s&&!l&&!f)return"";w=!0;var p=!1;return a.isAndroid&&". "==c&&(c=" ",p=!0),c&&!s&&!l&&!u&&!f||k?t.onTextInput(c):t.onTextInput(c,{extendLeft:s,extendRight:l,restoreStart:u,restoreEnd:f}),w=!1,T=e,A=i,E=o,C=f,p?"\n":c},z=function(e){if(x)return V();if(e&&e.inputType){if("historyUndo"==e.inputType)return t.execCommand("undo");if("historyRedo"==e.inputType)return t.execCommand("redo")}var r=n.value,i=N(r,!0);(r.length>500||m.test(i)||g&&A<1&&A==E)&&R()},j=function e(t,n,r){var i=t.clipboardData||window.clipboardData;if(i&&!c){var a=u||r?"Text":"text/plain";try{return n?!1!==i.setData(a,n):i.getData(a)}catch(t){if(!r)return e(t,n,!0)}}},B=function(e,i){var a=t.getCopyText();if(!a)return r.preventDefault(e);j(e,a)?(v&&(R(a),y=a,setTimeout((function(){y=!1}),10)),i?t.onCut():t.onCopy(),r.preventDefault(e)):(y=!0,n.value=a,n.select(),setTimeout((function(){y=!1,R(),i?t.onCut():t.onCopy()})))},U=function(e){B(e,!0)},H=function(e){B(e,!1)},$=function(e){var i=j(e);l.pasteCancelled()||("string"==typeof i?(i&&t.onPaste(i,e),a.isIE&&setTimeout(R),r.preventDefault(e)):(n.value="",b=!0))};r.addCommandKeyListener(n,t.onCommandKey.bind(t),t),r.addListener(n,"select",(function(e){x||(y?y=!1:!function(e){return 0===e.selectionStart&&e.selectionEnd>=T.length&&e.value===T&&T&&e.selectionEnd!==E}(n)?g&&n.selectionStart!=A&&R():(t.selectAll(),R()))}),t),r.addListener(n,"input",z,t),r.addListener(n,"cut",U,t),r.addListener(n,"copy",H,t),r.addListener(n,"paste",$,t),"oncut"in n&&"oncopy"in n&&"onpaste"in n||r.addListener(e,"keydown",(function(e){if((!a.isMac||e.metaKey)&&e.ctrlKey)switch(e.keyCode){case 67:H(e);break;case 86:$(e);break;case 88:U(e)}}),t);var V=function(){if(x&&t.onCompositionUpdate&&!t.$readOnly){if(k)return q();if(x.useTextareaForIME)t.onCompositionUpdate(n.value);else{var e=n.value;N(e),x.markerRange&&(x.context&&(x.markerRange.start.column=x.selectionStart=x.context.compositionStartOffset),x.markerRange.end.column=x.markerRange.start.column+E-x.selectionStart+C)}}},W=function(e){t.onCompositionEnd&&!t.$readOnly&&(x=!1,t.onCompositionEnd(),t.off("mousedown",q),e&&z())};function q(){S=!0,n.blur(),n.focus(),S=!1}var G,Z=s.delayedCall(V,50).schedule.bind(null,null);function Y(){clearTimeout(G),G=setTimeout((function(){_&&(n.style.cssText=_,_=""),t.renderer.$isMousePressed=!1,t.renderer.$keepTextAreaAtCursor&&t.renderer.$moveTextAreaToCursor()}),0)}r.addListener(n,"compositionstart",(function(e){if(!x&&t.onCompositionStart&&!t.$readOnly&&(x={},!k)){e.data&&(x.useTextareaForIME=!1),setTimeout(V,0),t._signal("compositionStart"),t.on("mousedown",q);var r=t.getSelectionRange();r.end.row=r.start.row,r.end.column=r.start.column,x.markerRange=r,x.selectionStart=A,t.onCompositionStart(x),x.useTextareaForIME?(T=n.value="",A=0,E=0):(n.msGetInputContext&&(x.context=n.msGetInputContext()),n.getInputContext&&(x.context=n.getInputContext()))}}),t),r.addListener(n,"compositionupdate",V,t),r.addListener(n,"keyup",(function(e){27==e.keyCode&&n.value.lengthE&&"\n"==T[a]?o=h.end:rE&&T.slice(0,a).split("\n").length>2?o=h.down:a>E&&" "==T[a-1]?(o=h.right,s=p.option):(a>E||a==E&&E!=A&&r==a)&&(o=h.right),r!==a&&(s|=p.shift),o){if(!t.onCommandKey({},s,o)&&t.commands){o=h.keyCodeToString(o);var l=t.commands.findKeyCommand(s,o);l&&t.execCommand(l)}A=r,E=a,R("")}}};document.addEventListener("selectionchange",a),t.on("destroy",(function(){document.removeEventListener("selectionchange",a)}))}(0,t,n),this.destroy=function(){n.parentElement&&n.parentElement.removeChild(n)}},t.$setUserAgentForTests=function(e,t){g=e,v=t}})),ace.define("ace/mouse/default_handlers",["require","exports","module","ace/lib/useragent"],(function(e,t,n){"use strict";var r=e("../lib/useragent"),i=function(){function e(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e));["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"].forEach((function(t){e[t]=this[t]}),this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}return e.prototype.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var i=this.editor,a=e.getButton();return 0!==a?((i.getSelectionRange().isEmpty()||1==a)&&i.selection.moveToPosition(n),void(2==a&&(i.textInput.onContextMenu(e.domEvent),r.isMozilla||e.preventDefault()))):(this.mousedownEvent.time=Date.now(),!t||i.isFocused()||(i.focus(),!this.$focusTimeout||this.$clickSelection||i.inMultiSelectMode)?(this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()):(this.setState("focusWait"),void this.captureMouse(e)))},e.prototype.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;this.mousedownEvent&&(this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.setStyle("ace_selecting"),this.setState("select"))},e.prototype.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(-1==r)e=this.$clickSelection.end;else if(1==r)e=this.$clickSelection.start;else{var i=a(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.renderer.scrollCursorIntoView()},e.prototype.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);if(this.$clickSelection){var o=this.$clickSelection.comparePoint(i.start),s=this.$clickSelection.comparePoint(i.end);if(-1==o&&s<=0)t=this.$clickSelection.end,i.end.row==r.row&&i.end.column==r.column||(r=i.start);else if(1==s&&o>=0)t=this.$clickSelection.start,i.start.row==r.row&&i.start.column==r.column||(r=i.end);else if(-1==o&&1==s)r=i.end,t=i.start;else{var l=a(this.$clickSelection,r);r=l.cursor,t=l.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.renderer.scrollCursorIntoView()},e.prototype.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting")},e.prototype.focusWait=function(){var e,t,n,r,i=(e=this.mousedownEvent.x,t=this.mousedownEvent.y,n=this.x,r=this.y,Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))),a=Date.now();(i>0||a-this.mousedownEvent.time>this.$focusTimeout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},e.prototype.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session.getBracketRange(t);r?(r.isEmpty()&&(r.start.column--,r.end.column++),this.setState("select")):(r=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=r,this.select()},e.prototype.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},e.prototype.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},e.prototype.onMouseWheel=function(e){if(!e.getAccelKey()){e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=this.editor;this.$lastScroll||(this.$lastScroll={t:0,vx:0,vy:0,allowed:0});var n=this.$lastScroll,r=e.domEvent.timeStamp,i=r-n.t,a=i?e.wheelX/i:n.vx,o=i?e.wheelY/i:n.vy;i<550&&(a=(a+n.vx)/2,o=(o+n.vy)/2);var s=Math.abs(a/o),l=!1;if(s>=1&&t.renderer.isScrollableBy(e.wheelX*e.speed,0)&&(l=!0),s<=1&&t.renderer.isScrollableBy(0,e.wheelY*e.speed)&&(l=!0),l)n.allowed=r;else if(r-n.allowed<550){Math.abs(a)<=1.5*Math.abs(n.vx)&&Math.abs(o)<=1.5*Math.abs(n.vy)?(l=!0,n.allowed=r):n.allowed=0}return n.t=r,n.vx=a,n.vy=o,l?(t.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()):void 0}},e}();function a(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row!=e.end.row-1||e.start.column||e.end.column)n=2*t.row-e.start.row-e.end.row;else var n=t.column-4;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}i.prototype.selectEnd=i.prototype.selectByLinesEnd,i.prototype.selectAllEnd=i.prototype.selectByLinesEnd,i.prototype.selectByWordsEnd=i.prototype.selectByLinesEnd,t.DefaultHandlers=i})),ace.define("ace/tooltip",["require","exports","module","ace/lib/dom","ace/range"],(function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!==typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=this&&this.__values||function(e){var t="function"===typeof Symbol&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&"number"===typeof e.length)return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},a=e("./lib/dom"),o=e("./range").Range,s="ace_tooltip",l=function(){function e(e){this.isOpen=!1,this.$element=null,this.$parentNode=e}return e.prototype.$init=function(){return this.$element=a.createElement("div"),this.$element.className=s,this.$element.style.display="none",this.$parentNode.appendChild(this.$element),this.$element},e.prototype.getElement=function(){return this.$element||this.$init()},e.prototype.setText=function(e){this.getElement().textContent=e},e.prototype.setHtml=function(e){this.getElement().innerHTML=e},e.prototype.setPosition=function(e,t){this.getElement().style.left=e+"px",this.getElement().style.top=t+"px"},e.prototype.setClassName=function(e){a.addCssClass(this.getElement(),e)},e.prototype.setTheme=function(e){this.$element.className=s+" "+(e.isDark?"ace_dark ":"")+(e.cssClass||"")},e.prototype.show=function(e,t,n){null!=e&&this.setText(e),null!=t&&null!=n&&this.setPosition(t,n),this.isOpen||(this.getElement().style.display="block",this.isOpen=!0)},e.prototype.hide=function(){this.isOpen&&(this.getElement().style.display="none",this.getElement().className=s,this.isOpen=!1)},e.prototype.getHeight=function(){return this.getElement().offsetHeight},e.prototype.getWidth=function(){return this.getElement().offsetWidth},e.prototype.destroy=function(){this.isOpen=!1,this.$element&&this.$element.parentNode&&this.$element.parentNode.removeChild(this.$element)},e}(),c=new(function(){function e(){this.popups=[]}return e.prototype.addPopup=function(e){this.popups.push(e),this.updatePopups()},e.prototype.removePopup=function(e){var t=this.popups.indexOf(e);-1!==t&&(this.popups.splice(t,1),this.updatePopups())},e.prototype.updatePopups=function(){var e,t,n,r;this.popups.sort((function(e,t){return t.priority-e.priority}));var a=[];try{for(var o=i(this.popups),s=o.next();!s.done;s=o.next()){var l=s.value,c=!0;try{for(var u=(n=void 0,i(a)),f=u.next();!f.done;f=u.next()){var d=f.value;if(this.doPopupsOverlap(d,l)){c=!1;break}}}catch(h){n={error:h}}finally{try{f&&!f.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}c?a.push(l):l.hide()}}catch(p){e={error:p}}finally{try{s&&!s.done&&(t=o.return)&&t.call(o)}finally{if(e)throw e.error}}},e.prototype.doPopupsOverlap=function(e,t){var n=e.getElement().getBoundingClientRect(),r=t.getElement().getBoundingClientRect();return n.leftr.left&&n.topr.top},e}());t.popupManager=c,t.Tooltip=l;var u=function(e){function t(t){void 0===t&&(t=document.body);var n=e.call(this,t)||this;n.timeout=void 0,n.lastT=0,n.idleTime=350,n.lastEvent=void 0,n.onMouseOut=n.onMouseOut.bind(n),n.onMouseMove=n.onMouseMove.bind(n),n.waitForHover=n.waitForHover.bind(n),n.hide=n.hide.bind(n);var r=n.getElement();return r.style.whiteSpace="pre-wrap",r.style.pointerEvents="auto",r.addEventListener("mouseout",n.onMouseOut),r.tabIndex=-1,r.addEventListener("blur",function(){r.contains(document.activeElement)||this.hide()}.bind(n)),n}return r(t,e),t.prototype.addToEditor=function(e){e.on("mousemove",this.onMouseMove),e.on("mousedown",this.hide),e.renderer.getMouseEventTarget().addEventListener("mouseout",this.onMouseOut,!0)},t.prototype.removeFromEditor=function(e){e.off("mousemove",this.onMouseMove),e.off("mousedown",this.hide),e.renderer.getMouseEventTarget().removeEventListener("mouseout",this.onMouseOut,!0),this.timeout&&(clearTimeout(this.timeout),this.timeout=null)},t.prototype.onMouseMove=function(e,t){this.lastEvent=e,this.lastT=Date.now();var n=t.$mouseHandler.isMousePressed;if(this.isOpen){var r=this.lastEvent&&this.lastEvent.getDocumentPosition();this.range&&this.range.contains(r.row,r.column)&&!n&&!this.isOutsideOfText(this.lastEvent)||this.hide()}this.timeout||n||(this.lastEvent=e,this.timeout=setTimeout(this.waitForHover,this.idleTime))},t.prototype.waitForHover=function(){this.timeout&&clearTimeout(this.timeout);var e=Date.now()-this.lastT;this.idleTime-e>10?this.timeout=setTimeout(this.waitForHover,this.idleTime-e):(this.timeout=null,this.lastEvent&&!this.isOutsideOfText(this.lastEvent)&&this.$gatherData(this.lastEvent,this.lastEvent.editor))},t.prototype.isOutsideOfText=function(e){var t=e.editor,n=e.getDocumentPosition(),r=t.session.getLine(n.row);if(n.column==r.length){var i=t.renderer.pixelToScreenCoordinates(e.clientX,e.clientY),a=t.session.documentToScreenPosition(n.row,n.column);if(a.column!=i.column||a.row!=i.row)return!0}return!1},t.prototype.setDataProvider=function(e){this.$gatherData=e},t.prototype.showForRange=function(e,t,n,r){if((!r||r==this.lastEvent)&&(!this.isOpen||document.activeElement!=this.getElement())){var i=e.renderer;this.isOpen||(c.addPopup(this),this.$registerCloseEvents(),this.setTheme(i.theme)),this.isOpen=!0,this.addMarker(t,e.session),this.range=o.fromPoints(t.start,t.end);var a=this.getElement();a.innerHTML="",a.appendChild(n),a.style.display="block";var s=i.textToScreenCoordinates(t.start.row,t.start.column),l=a.clientHeight,u=i.scroller.getBoundingClientRect(),f=!0;s.pageY-l<0&&(f=!1),f?s.pageY-=l:s.pageY+=i.lineHeight,a.style.maxWidth=u.width-(s.pageX-u.left)+"px",this.setPosition(s.pageX,s.pageY)}},t.prototype.addMarker=function(e,t){this.marker&&this.$markerSession.removeMarker(this.marker),this.$markerSession=t,this.marker=t&&t.addMarker(e,"ace_highlight-marker","text")},t.prototype.hide=function(e){(e||document.activeElement!=this.getElement())&&(e&&e.target&&("keydown"!=e.type||e.ctrlKey||e.metaKey)&&this.$element.contains(e.target)||(this.lastEvent=null,this.timeout&&clearTimeout(this.timeout),this.timeout=null,this.addMarker(null),this.isOpen&&(this.$removeCloseEvents(),this.getElement().style.display="none",this.isOpen=!1,c.removePopup(this))))},t.prototype.$registerCloseEvents=function(){window.addEventListener("keydown",this.hide,!0),window.addEventListener("mousewheel",this.hide,!0),window.addEventListener("mousedown",this.hide,!0)},t.prototype.$removeCloseEvents=function(){window.removeEventListener("keydown",this.hide,!0),window.removeEventListener("mousewheel",this.hide,!0),window.removeEventListener("mousedown",this.hide,!0)},t.prototype.onMouseOut=function(e){this.timeout&&(clearTimeout(this.timeout),this.timeout=null),this.lastEvent=null,this.isOpen&&e.relatedTarget&&e.relatedTarget!=this.getElement()&&(e&&e.currentTarget.contains(e.relatedTarget)||e.relatedTarget.classList.contains("ace_content")||this.hide())},t}(l);t.HoverTooltip=u})),ace.define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/tooltip","ace/config"],(function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!==typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=this&&this.__values||function(e){var t="function"===typeof Symbol&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&"number"===typeof e.length)return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},a=e("../lib/dom"),o=e("../lib/event"),s=e("../tooltip").Tooltip,l=e("../config").nls;t.GutterHandler=function(e){var t,n,r=e.editor,i=r.renderer.$gutterLayer,s=new c(r);function l(){t&&(t=clearTimeout(t)),s.isOpen&&(s.hideTooltip(),r.off("mousewheel",l))}function u(e){s.setPosition(e.x,e.y)}e.editor.setDefaultHandler("guttermousedown",(function(t){if(r.isFocused()&&0==t.getButton()&&"foldWidgets"!=i.getRegion(t)){var n=t.getDocumentPosition().row,a=r.session.selection;if(t.getShiftKey())a.selectTo(n,0);else{if(2==t.domEvent.detail)return r.selectAll(),t.preventDefault();e.$clickSelection=r.selection.getLineRange(n)}return e.setState("selectByLines"),e.captureMouse(t),t.preventDefault()}})),e.editor.setDefaultHandler("guttermousemove",(function(o){var c=o.domEvent.target||o.domEvent.srcElement;if(a.hasCssClass(c,"ace_fold-widget"))return l();s.isOpen&&e.$tooltipFollowsMouse&&u(o),n=o,t||(t=setTimeout((function(){t=null,n&&!e.isMousePressed?function(){var t=n.getDocumentPosition().row;if(t==r.session.getLength()){var a=r.renderer.pixelToScreenCoordinates(0,n.y).row,o=n.$pos;if(a>r.session.documentToScreenRow(o.row,o.column))return l()}if(s.showTooltip(t),s.isOpen)if(r.on("mousewheel",l),e.$tooltipFollowsMouse)u(n);else{var c=n.getGutterRow(),f=i.$lines.get(c);if(f){var d=f.element.querySelector(".ace_gutter_annotation").getBoundingClientRect(),h=s.getElement().style;h.left=d.right+"px",h.top=d.bottom+"px"}else u(n)}}():l()}),50))})),o.addListener(r.renderer.$gutter,"mouseout",(function(e){n=null,s.isOpen&&!t&&(t=setTimeout((function(){t=null,l()}),50))}),r),r.on("changeSession",l),r.on("input",l)};var c=function(e){function t(t){var n=e.call(this,t.container)||this;return n.editor=t,n}return r(t,e),t.prototype.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),a=this.getHeight();(e+=15)+i>n&&(e-=e+i-n),(t+=15)+a>r&&(t-=20+a),s.prototype.setPosition.call(this,e,t)},Object.defineProperty(t,"annotationLabels",{get:function(){return{error:{singular:l("error"),plural:l("errors")},warning:{singular:l("warning"),plural:l("warnings")},info:{singular:l("information message"),plural:l("information messages")}}},enumerable:!1,configurable:!0}),t.prototype.showTooltip=function(e){var n,r=this.editor.renderer.$gutterLayer,i=r.$annotations[e];n=i?{text:Array.from(i.text),type:Array.from(i.type)}:{text:[],type:[]};var a=r.session.getFoldLine(e);if(a&&r.$showFoldedAnnotations){for(var o,s={error:[],warning:[],info:[]},l=e+1;l<=a.end.row;l++)if(r.$annotations[l])for(var c=0;c ").concat(n.text[l]);d[n.type[l].replace("_fold","")].push(p)}var v=[].concat(d.error,d.warning,d.info).join("
");this.setHtml(v),this.$element.setAttribute("aria-live","polite"),this.isOpen||(this.setTheme(this.editor.renderer.theme),this.setClassName("ace_gutter-tooltip")),this.show(),this.editor._signal("showGutterTooltip",this)},t.prototype.hideTooltip=function(){this.$element.removeAttribute("aria-live"),this.hide(),this.editor._signal("hideGutterTooltip",this)},t.annotationsToSummaryString=function(e){var n,r,a=[];try{for(var o=i(["error","warning","info"]),s=o.next();!s.done;s=o.next()){var l=s.value;if(e[l].length){var c=1===e[l].length?t.annotationLabels[l].singular:t.annotationLabels[l].plural;a.push("".concat(e[l].length," ").concat(c))}}}catch(u){n={error:u}}finally{try{s&&!s.done&&(r=o.return)&&r.call(o)}finally{if(n)throw n.error}}return a.join(", ")},t}(s);t.GutterTooltip=c})),ace.define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],(function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),a=function(){function e(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1}return e.prototype.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},e.prototype.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},e.prototype.stop=function(){this.stopPropagation(),this.preventDefault()},e.prototype.getDocumentPosition=function(){return this.$pos||(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY)),this.$pos},e.prototype.getGutterRow=function(){var e=this.getDocumentPosition().row;return this.editor.session.documentToScreenRow(e,0)-this.editor.session.documentToScreenRow(this.editor.renderer.$gutterLayer.$lines.get(0).row,0)},e.prototype.inSelection=function(){if(null!==this.$inSelection)return this.$inSelection;var e=this.editor.getSelectionRange();if(e.isEmpty())this.$inSelection=!1;else{var t=this.getDocumentPosition();this.$inSelection=e.contains(t.row,t.column)}return this.$inSelection},e.prototype.getButton=function(){return r.getButton(this.domEvent)},e.prototype.getShiftKey=function(){return this.domEvent.shiftKey},e.prototype.getAccelKey=function(){return i.isMac?this.domEvent.metaKey:this.domEvent.ctrlKey},e}();t.MouseEvent=a})),ace.define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],(function(e,t,n){"use strict";var r=e("../lib/dom"),i=e("../lib/event"),a=e("../lib/useragent");function o(e){var t=e.editor,n=r.createElement("div");n.style.cssText="top:-100px;position:absolute;z-index:2147483647;opacity:0.5",n.textContent="\xa0";["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"].forEach((function(t){e[t]=this[t]}),this),t.on("mousedown",this.onMouseDown.bind(e));var o,l,c,u,f,d,h,p,v,m,g,y=t.container,b=0;function x(){var e=d;(function(e,n){var r=Date.now(),i=!n||e.row!=n.row,a=!n||e.column!=n.column;!m||i||a?(t.moveCursorToPosition(e),m=r,g={x:l,y:c}):s(g.x,g.y,l,c)>5?m=null:r-m>=200&&(t.renderer.scrollCursorIntoView(),m=null)})(d=t.renderer.screenToTextCoordinates(l,c),e),function(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,a=t.renderer.layerConfig.characterWidth,o=t.renderer.scroller.getBoundingClientRect(),s={x:{left:l-o.left,right:o.right-l},y:{top:c-o.top,bottom:o.bottom-c}},u=Math.min(s.x.left,s.x.right),f=Math.min(s.y.top,s.y.bottom),d={row:e.row,column:e.column};u/a<=2&&(d.column+=s.x.left=200&&t.renderer.scrollCursorIntoView(d):v=r:v=null}(d,e)}function w(){f=t.selection.toOrientedRange(),o=t.session.addMarker(f,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(u),x(),u=setInterval(x,20),b=0,i.addListener(document,"mousemove",S)}function _(){clearInterval(u),t.session.removeMarker(o),o=null,t.selection.fromOrientedRange(f),t.isFocused()&&!p&&t.$resetCursorStyle(),f=null,d=null,b=0,v=null,m=null,i.removeListener(document,"mousemove",S)}this.onDragStart=function(e){if(this.cancelDrag||!y.draggable){var r=this;return setTimeout((function(){r.startSelect(),r.captureMouse(e)}),0),e.preventDefault()}f=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",t.container.appendChild(n),i.setDragImage&&i.setDragImage(n,0,0),setTimeout((function(){t.container.removeChild(n)})),i.clearData(),i.setData("Text",t.session.getTextRange()),p=!0,this.setState("drag")},this.onDragEnd=function(e){if(y.draggable=!1,p=!1,this.setState(null),!t.getReadOnly()){var n=e.dataTransfer.dropEffect;h||"move"!=n||t.session.remove(t.getSelectionRange()),t.$resetCursorStyle()}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(!t.getReadOnly()&&T(e.dataTransfer))return l=e.clientX,c=e.clientY,o||w(),b++,e.dataTransfer.dropEffect=h=A(e),i.preventDefault(e)},this.onDragOver=function(e){if(!t.getReadOnly()&&T(e.dataTransfer))return l=e.clientX,c=e.clientY,o||(w(),b++),null!==k&&(k=null),e.dataTransfer.dropEffect=h=A(e),i.preventDefault(e)},this.onDragLeave=function(e){if(--b<=0&&o)return _(),h=null,i.preventDefault(e)},this.onDrop=function(e){if(d){var n=e.dataTransfer;if(p)switch(h){case"move":f=f.contains(d.row,d.column)?{start:d,end:d}:t.moveText(f,d);break;case"copy":f=t.moveText(f,d,!0)}else{var r=n.getData("Text");f={start:d,end:t.session.insert(d,r)},t.focus(),h=null}return _(),i.preventDefault(e)}},i.addListener(y,"dragstart",this.onDragStart.bind(e),t),i.addListener(y,"dragend",this.onDragEnd.bind(e),t),i.addListener(y,"dragenter",this.onDragEnter.bind(e),t),i.addListener(y,"dragover",this.onDragOver.bind(e),t),i.addListener(y,"dragleave",this.onDragLeave.bind(e),t),i.addListener(y,"drop",this.onDrop.bind(e),t);var k=null;function S(){null==k&&(k=setTimeout((function(){null!=k&&o&&_()}),20))}function T(e){var t=e.types;return!t||Array.prototype.some.call(t,(function(e){return"text/plain"==e||"Text"==e}))}function A(e){var t=["copy","copymove","all","uninitialized"],n=a.isMac?e.altKey:e.ctrlKey,r="uninitialized";try{r=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var i="none";return n&&t.indexOf(r)>=0?i="copy":["move","copymove","linkmove","all","uninitialized"].indexOf(r)>=0?i="move":t.indexOf(r)>=0&&(i="copy"),i}}function s(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}(function(){this.dragWait=function(){Date.now()-this.mousedownEvent.time>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){this.editor.container.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.$resetCursorStyle(),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor;e.container.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var t=a.isWin?"default":"move";e.renderer.setCursorStyle(t),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;a.isIE&&"dragReady"==this.state&&(s(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y)>3&&t.dragDrop());"dragWait"===this.state&&(s(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y)>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition())))},this.onMouseDown=function(e){if(this.$dragEnabled){this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton();if(1===(e.domEvent.detail||1)&&0===r&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var i=e.domEvent.target||e.domEvent.srcElement;if("unselectable"in i&&(i.unselectable="on"),t.getDragDelay()){if(a.isWebKit)this.cancelDrag=!0,t.container.draggable=!0;this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}}).call(o.prototype),t.DragdropHandler=o})),ace.define("ace/mouse/touch_handler",["require","exports","module","ace/mouse/mouse_event","ace/lib/event","ace/lib/dom"],(function(e,t,n){"use strict";var r=e("./mouse_event").MouseEvent,i=e("../lib/event"),a=e("../lib/dom");t.addTouchListeners=function(e,t){var n,o,s,l,c,u,f,d,h,p="scroll",v=0,m=0,g=0,y=0;function b(){var e=window.navigator&&window.navigator.clipboard,n=!1,r=function(r){var i=r.target.getAttribute("action");if("more"==i||!n)return n=!n,function(){var r=t.getCopyText(),i=t.session.getUndoManager().hasUndo();h.replaceChild(a.buildDom(n?["span",!r&&["span",{class:"ace_mobile-button",action:"selectall"},"Select All"],r&&["span",{class:"ace_mobile-button",action:"copy"},"Copy"],r&&["span",{class:"ace_mobile-button",action:"cut"},"Cut"],e&&["span",{class:"ace_mobile-button",action:"paste"},"Paste"],i&&["span",{class:"ace_mobile-button",action:"undo"},"Undo"],["span",{class:"ace_mobile-button",action:"find"},"Find"],["span",{class:"ace_mobile-button",action:"openCommandPallete"},"Palette"]]:["span"]),h.firstChild)}();"paste"==i?e.readText().then((function(e){t.execCommand(i,e)})):i&&("cut"!=i&&"copy"!=i||(e?e.writeText(t.getCopyText()):document.execCommand("copy")),t.execCommand(i)),h.firstChild.style.display="none",n=!1,"openCommandPallete"!=i&&t.focus()};h=a.buildDom(["div",{class:"ace_mobile-menu",ontouchstart:function(e){p="menu",e.stopPropagation(),e.preventDefault(),t.textInput.focus()},ontouchend:function(e){e.stopPropagation(),e.preventDefault(),r(e)},onclick:r},["span"],["span",{class:"ace_mobile-button",action:"more"},"..."]],t.container)}function x(){h||b();var e=t.selection.cursor,n=t.renderer.textToScreenCoordinates(e.row,e.column),r=t.renderer.textToScreenCoordinates(0,0).pageX,i=t.renderer.scrollLeft,a=t.container.getBoundingClientRect();h.style.top=n.pageY-a.top-3+"px",n.pageX-a.left1)return clearTimeout(c),c=null,s=-1,void(p="zoom");d=t.$mouseHandler.isMousePressed=!0;var a=t.renderer.layerConfig.lineHeight,u=t.renderer.layerConfig.lineHeight,h=e.timeStamp;l=h;var b=i[0],x=b.clientX,w=b.clientY;Math.abs(n-x)+Math.abs(o-w)>a&&(s=-1),n=e.clientX=x,o=e.clientY=w,g=y=0;var k=new r(e,t);if(f=k.getDocumentPosition(),h-s<500&&1==i.length&&!v)m++,e.preventDefault(),e.button=0,function(){c=null,clearTimeout(c),t.selection.moveToPosition(f);var e=m>=2?t.selection.getLineRange(f.row):t.session.getBracketRange(f);e&&!e.isEmpty()?t.selection.setRange(e):t.selection.selectWord(),p="wait"}();else{m=0;var S=t.selection.cursor,T=t.selection.isEmpty()?S:t.selection.anchor,A=t.renderer.$cursorLayer.getPixelPosition(S,!0),E=t.renderer.$cursorLayer.getPixelPosition(T,!0),C=t.renderer.scroller.getBoundingClientRect(),M=t.renderer.layerConfig.offset,O=t.renderer.scrollLeft,P=function(e,t){return(e/=u)*e+(t=t/a-.75)*t};if(e.clientXI?"cursor":"anchor"),p=I<3.5?"anchor":L<3.5?"cursor":"scroll",c=setTimeout(_,450)}s=h}),t),i.addListener(e,"touchend",(function(e){d=t.$mouseHandler.isMousePressed=!1,u&&clearInterval(u),"zoom"==p?(p="",v=0):c?(t.selection.moveToPosition(f),v=0,x()):"scroll"==p?(v+=60,u=setInterval((function(){v--<=0&&(clearInterval(u),u=null),Math.abs(g)<.01&&(g=0),Math.abs(y)<.01&&(y=0),v<20&&(g*=.9),v<20&&(y*=.9);var e=t.session.getScrollTop();t.renderer.scrollBy(10*g,10*y),e==t.session.getScrollTop()&&(v=0)}),10),w()):x(),clearTimeout(c),c=null}),t),i.addListener(e,"touchmove",(function(e){c&&(clearTimeout(c),c=null);var i=e.touches;if(!(i.length>1||"zoom"==p)){var a=i[0],s=n-a.clientX,u=o-a.clientY;if("wait"==p){if(!(s*s+u*u>4))return e.preventDefault();p="cursor"}n=a.clientX,o=a.clientY,e.clientX=a.clientX,e.clientY=a.clientY;var f=e.timeStamp,d=f-l;if(l=f,"scroll"==p){var h=new r(e,t);h.speed=1,h.wheelX=s,h.wheelY=u,10*Math.abs(s)=e){for(a=f+1;a=e;)a++;for(s=f,l=a-1;s=t.length||(l=n[i-1])!=d&&l!=h||(c=t[i+1])!=d&&c!=h?p:(a&&(c=h),c==l?c:p);case x:return(l=i>0?n[i-1]:v)==d&&i+10&&n[i-1]==d)return d;if(a)return p;for(O=i+1,M=t.length;O=1425&&L<=2303||64286==L;if(l=t[O],I&&(l==f||l==g))return f}return i<1||(l=t[i-1])==v?p:n[i-1];case v:return a=!1,o=!0,r;case m:return s=!0,p;case k:case S:case A:case E:case T:a=!1;case C:return p}}function I(e){var t=e.charCodeAt(0),n=t>>8;return 0==n?t>191?u:M[t]:5==n?/[\u0591-\u05f4]/.test(e)?f:u:6==n?/[\u0610-\u061a\u064b-\u065f\u06d6-\u06e4\u06e7-\u06ed]/.test(e)?_:/[\u0660-\u0669\u066b-\u066c]/.test(e)?h:1642==t?w:/[\u06f0-\u06f9]/.test(e)?d:g:32==n&&t<=8287?O[255&t]:254==n&&t>=65136?g:p}t.L=u,t.R=f,t.EN=d,t.ON_R=3,t.AN=4,t.R_H=5,t.B=6,t.RLE=7,t.DOT="\xb7",t.doBidiReorder=function(e,n,u){if(e.length<2)return{};var d=e.split(""),b=new Array(d.length),x=new Array(d.length),w=[];r=u?1:0,function(e,t,n,u){var f=r?c:l,d=null,h=null,p=null,g=0,b=null,x=-1,w=null,_=null,k=[];if(!u)for(w=0,u=[];w0)if(16==b){for(w=x;w<_;w++)t[w]=1;x=-1}else x=-1;if(f[g][6])-1==x&&(x=_);else if(x>-1){for(w=x;w<_;w++)t[w]=p;x=-1}u[_]==v&&(t[_]=0),i|=p}if(s)for(w=0;w=0&&u[S]==y;S--)t[S]=r}}(d,w,d.length,n);for(var _=0;_g&&n[_]0&&"\u0644"===d[_-1]&&/\u0622|\u0623|\u0625|\u0627/.test(d[_])&&(w[_-1]=w[_]=t.R_H,_++);d[d.length-1]===t.DOT&&(w[d.length-1]=t.B),"\u202b"===d[0]&&(w[0]=t.RLE);for(_=0;_=0&&(e=this.session.$docRowCache[n])}return e},e.prototype.getSplitIndex=function(){var e=0,t=this.session.$screenRowCache;if(t.length)for(var n,r=this.session.$getRowCacheIndex(t,this.currentRow);this.currentRow-e>0&&(n=this.session.$getRowCacheIndex(t,this.currentRow-e-1))===r;)r=n,e++;else e=this.currentRow;return e},e.prototype.updateRowLine=function(e,t){void 0===e&&(e=this.getDocumentRow());var n=e===this.session.getLength()-1?this.EOF:this.EOL;if(this.wrapIndent=0,this.line=this.session.getLine(e),this.isRtlDir=this.$isRtl||this.line.charAt(0)===this.RLE,this.session.$useWrapMode){var a=this.session.$wrapData[e];a&&(void 0===t&&(t=this.getSplitIndex()),t>0&&a.length?(this.wrapIndent=a.indent,this.wrapOffset=this.wrapIndent*this.charWidths[r.L],this.line=tt?this.session.getOverwrite()?e:e-1:t,i=r.getVisualFromLogicalIdx(n,this.bidiMap),a=this.bidiMap.bidiLevels,o=0;!this.session.getOverwrite()&&e<=t&&a[i]%2!==0&&i++;for(var s=0;st&&a[i]%2===0&&(o+=this.charWidths[a[i]]),this.wrapIndent&&(o+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset),this.isRtlDir&&(o+=this.rtlLineOffset),o},e.prototype.getSelections=function(e,t){var n,r=this.bidiMap,i=r.bidiLevels,a=[],o=0,s=Math.min(e,t)-this.wrapIndent,l=Math.max(e,t)-this.wrapIndent,c=!1,u=!1,f=0;this.wrapIndent&&(o+=this.isRtlDir?-1*this.wrapOffset:this.wrapOffset);for(var d,h=0;h=s&&dn+a/2;){if(n+=a,r===i.length-1){a=0;break}a=this.charWidths[i[++r]]}return r>0&&i[r-1]%2!==0&&i[r]%2===0?(e0&&i[r-1]%2===0&&i[r]%2!==0?t=1+(e>n?this.bidiMap.logicalFromVisual[r]:this.bidiMap.logicalFromVisual[r-1]):this.isRtlDir&&r===i.length-1&&0===a&&i[r-1]%2===0||!this.isRtlDir&&0===r&&i[r]%2!==0?t=1+this.bidiMap.logicalFromVisual[r]:(r>0&&i[r-1]%2!==0&&0!==a&&r--,t=this.bidiMap.logicalFromVisual[r]),0===t&&this.isRtlDir&&t++,t+this.wrapIndent},e}();t.BidiHandler=o})),ace.define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"],(function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/lang"),a=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,s=function(){function e(e){this.session=e,this.doc=e.getDocument(),this.clearSelection(),this.cursor=this.lead=this.doc.createAnchor(0,0),this.anchor=this.doc.createAnchor(0,0),this.$silent=!1;var t=this;this.cursor.on("change",(function(e){t.$cursorChanged=!0,t.$silent||t._emit("changeCursor"),t.$isEmpty||t.$silent||t._emit("changeSelection"),t.$keepDesiredColumnOnChange||e.old.column==e.value.column||(t.$desiredColumn=null)})),this.anchor.on("change",(function(){t.$anchorChanged=!0,t.$isEmpty||t.$silent||t._emit("changeSelection")}))}return e.prototype.isEmpty=function(){return this.$isEmpty||this.anchor.row==this.lead.row&&this.anchor.column==this.lead.column},e.prototype.isMultiLine=function(){return!this.$isEmpty&&this.anchor.row!=this.cursor.row},e.prototype.getCursor=function(){return this.lead.getPosition()},e.prototype.setAnchor=function(e,t){this.$isEmpty=!1,this.anchor.setPosition(e,t)},e.prototype.getAnchor=function(){return this.$isEmpty?this.getSelectionLead():this.anchor.getPosition()},e.prototype.getSelectionLead=function(){return this.lead.getPosition()},e.prototype.isBackwards=function(){var e=this.anchor,t=this.lead;return e.row>t.row||e.row==t.row&&e.column>t.column},e.prototype.getRange=function(){var e=this.anchor,t=this.lead;return this.$isEmpty?o.fromPoints(t,t):this.isBackwards()?o.fromPoints(t,e):o.fromPoints(e,t)},e.prototype.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},e.prototype.selectAll=function(){this.$setSelection(0,0,Number.MAX_VALUE,Number.MAX_VALUE)},e.prototype.setRange=function(e,t){var n=t?e.end:e.start,r=t?e.start:e.end;this.$setSelection(n.row,n.column,r.row,r.column)},e.prototype.$setSelection=function(e,t,n,r){if(!this.$silent){var i=this.$isEmpty,a=this.inMultiSelectMode;this.$silent=!0,this.$cursorChanged=this.$anchorChanged=!1,this.anchor.setPosition(e,t),this.cursor.setPosition(n,r),this.$isEmpty=!o.comparePoints(this.anchor,this.cursor),this.$silent=!1,this.$cursorChanged&&this._emit("changeCursor"),(this.$cursorChanged||this.$anchorChanged||i!=this.$isEmpty||a)&&this._emit("changeSelection")}},e.prototype.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},e.prototype.selectTo=function(e,t){this.$moveSelection((function(){this.moveCursorTo(e,t)}))},e.prototype.selectToPosition=function(e){this.$moveSelection((function(){this.moveCursorToPosition(e)}))},e.prototype.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},e.prototype.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},e.prototype.selectUp=function(){this.$moveSelection(this.moveCursorUp)},e.prototype.selectDown=function(){this.$moveSelection(this.moveCursorDown)},e.prototype.selectRight=function(){this.$moveSelection(this.moveCursorRight)},e.prototype.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},e.prototype.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},e.prototype.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},e.prototype.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},e.prototype.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},e.prototype.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},e.prototype.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},e.prototype.getWordRange=function(e,t){if("undefined"==typeof t){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},e.prototype.selectWord=function(){this.setSelectionRange(this.getWordRange())},e.prototype.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},e.prototype.getLineRange=function(e,t){var n,r="number"==typeof e?e:this.lead.row,i=this.session.getFoldLine(r);return i?(r=i.start.row,n=i.end.row):n=r,!0===t?new o(r,0,n,this.session.getLine(n).length):new o(r,0,n+1,0)},e.prototype.selectLine=function(){this.setSelectionRange(this.getLineRange())},e.prototype.moveCursorUp=function(){this.moveCursorBy(-1,0)},e.prototype.moveCursorDown=function(){this.moveCursorBy(1,0)},e.prototype.wouldMoveIntoSoftTab=function(e,t,n){var r=e.column,i=e.column+t;return n<0&&(r=e.column-t,i=e.column),this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(r,i).split(" ").length-1==t},e.prototype.moveCursorLeft=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,-1))this.moveCursorTo(e.start.row,e.start.column);else if(0===t.column)t.row>0&&this.moveCursorTo(t.row-1,this.doc.getLine(t.row-1).length);else{var n=this.session.getTabSize();this.wouldMoveIntoSoftTab(t,n,-1)&&!this.session.getNavigateWithinSoftTabs()?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},e.prototype.moveCursorRight=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,1))this.moveCursorTo(e.end.row,e.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},e.prototype.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},e.prototype.moveCursorFileStart=function(){this.moveCursorTo(0,0)},e.prototype.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t);this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var i=this.session.getFoldAt(e,t,1);if(i)this.moveCursorTo(i.end.row,i.end.column);else{if(this.session.nonTokenRe.exec(r)&&(t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t)),t>=n.length)return this.moveCursorTo(e,n.length),this.moveCursorRight(),void(e0&&this.moveCursorWordLeft());this.session.tokenRe.exec(a)&&(n-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0),this.moveCursorTo(t,n)}},e.prototype.$shortWordEndIndex=function(e){var t,n=0,r=/\s/,i=this.session.tokenRe;if(i.lastIndex=0,this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{for(;(t=e[n])&&r.test(t);)n++;if(n<1)for(i.lastIndex=0;(t=e[n])&&!i.test(t);)if(i.lastIndex=0,n++,r.test(t)){if(n>2){n--;break}for(;(t=e[n])&&r.test(t);)n++;if(n>2)break}}return i.lastIndex=0,n},e.prototype.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var a=this.doc.getLength();do{e++,r=this.doc.getLine(e)}while(e0&&/^\s*$/.test(r));n=r.length,/\s+$/.test(r)||(r="")}var a=i.stringReverse(r),o=this.$shortWordEndIndex(a);return this.moveCursorTo(t,n-o)},e.prototype.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},e.prototype.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},e.prototype.moveCursorBy=function(e,t){var n,r=this.session.documentToScreenPosition(this.lead.row,this.lead.column);if(0===t&&(0!==e&&(this.session.$bidiHandler.isBidiRow(r.row,this.lead.row)?(n=this.session.$bidiHandler.getPosLeft(r.column),r.column=Math.round(n/this.session.$bidiHandler.charWidths[0])):n=r.column*this.session.$bidiHandler.charWidths[0]),this.$desiredColumn?r.column=this.$desiredColumn:this.$desiredColumn=r.column),0!=e&&this.session.lineWidgets&&this.session.lineWidgets[this.lead.row]){var i=this.session.lineWidgets[this.lead.row];e<0?e-=i.rowsAbove||0:e>0&&(e+=i.rowCount-(i.rowsAbove||0))}var a=this.session.screenToDocumentPosition(r.row+e,r.column,n);0!==e&&0===t&&a.row===this.lead.row&&(a.column,this.lead.column),this.moveCursorTo(a.row,a.column+t,0===t)},e.prototype.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},e.prototype.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0;var i=this.session.getLine(e);/[\uDC00-\uDFFF]/.test(i.charAt(t))&&i.charAt(t-1)&&(this.lead.row==e&&this.lead.column==t+1?t-=1:t+=1),this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},e.prototype.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},e.prototype.detach=function(){this.lead.detach(),this.anchor.detach()},e.prototype.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},e.prototype.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},e.prototype.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return o.fromPoints(t,n)}catch(r){return o.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},e.prototype.toJSON=function(){if(this.rangeCount)var e=this.ranges.map((function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t}));else(e=this.getRange()).isBackwards=this.isBackwards();return e},e.prototype.fromJSON=function(e){if(void 0==e.start){if(this.rangeList&&e.length>1){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=o.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},e.prototype.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0},e}();s.prototype.setSelectionAnchor=s.prototype.setAnchor,s.prototype.getSelectionAnchor=s.prototype.getAnchor,s.prototype.setSelectionRange=s.prototype.setRange,r.implement(s.prototype,a),t.Selection=s})),ace.define("ace/tokenizer",["require","exports","module","ace/lib/report_error"],(function(e,t,n){"use strict";var r=e("./lib/report_error").reportError,i=2e3,a=function(){function e(e){for(var t in this.states=e,this.regExps={},this.matchMappings={},this.states){for(var n=this.states[t],r=[],i=0,a=this.matchMappings[t]={defaultToken:"text"},o="g",s=[],l=0;l1?this.$applyToken:c.token),f>1&&(/\\\d/.test(c.regex)?u=c.regex.replace(/\\([0-9]+)/g,(function(e,t){return"\\"+(parseInt(t,10)+i+1)})):(f=1,u=this.removeCapturingGroups(c.regex)),c.splitRegex||"string"==typeof c.token||s.push(c)),a[i]=l,i+=f,r.push(u),c.onMatch||(c.onMatch=null)}}r.length||(a[0]=0,r.push("$")),s.forEach((function(e){e.splitRegex=this.createSplitterRegexp(e.regex,o)}),this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",o)}}return e.prototype.$setMaxTokenCount=function(e){i=0|e},e.prototype.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if("string"===typeof n)return[{type:n,value:e}];for(var r=[],i=0,a=n.length;iu){var g=e.substring(u,m-v.length);d.type==h?d.value+=g:(d.type&&c.push(d),d={type:h,value:g})}for(var y=0;yi){for(f>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});u1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:c,state:n.length?n:r}},e}();a.prototype.reportError=r,t.Tokenizer=a})),ace.define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/deep_copy"],(function(e,t,n){"use strict";var r=e("../lib/deep_copy").deepCopy,i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(t)for(var n in e){for(var r=e[n],i=0;i=this.$rowTokens.length;){if(this.$row+=1,e||(e=this.$session.getLength()),this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},e.prototype.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},e.prototype.getCurrentTokenRow=function(){return this.$row},e.prototype.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(void 0!==n)return n;for(n=0;t>0;)n+=e[t-=1].value.length;return n},e.prototype.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}},e.prototype.getCurrentTokenRange=function(){var e=this.$rowTokens[this.$tokenIndex],t=this.getCurrentTokenColumn();return new r(this.$row,t,this.$row,t+e.value.length)},e}();t.TokenIterator=i})),ace.define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],(function(e,t,n){"use strict";var r,i=e("../../lib/oop"),a=e("../behaviour").Behaviour,o=e("../../token_iterator").TokenIterator,s=e("../../lib/lang"),l=["text","paren.rparen","rparen","paren","punctuation.operator"],c=["text","paren.rparen","rparen","paren","punctuation.operator","comment"],u={},f={'"':'"',"'":"'"},d=function(e){var t=-1;if(e.multiSelect&&(t=e.selection.index,u.rangeCount!=e.multiSelect.rangeCount&&(u={rangeCount:e.multiSelect.rangeCount})),u[t])return r=u[t];r=u[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},h=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},p=function e(t){t=t||{},this.add("braces","insertion",(function(n,i,a,o,l){var c=a.getCursorPosition(),u=o.doc.getLine(c.row);if("{"==l){d(a);var f=a.getSelectionRange(),p=o.doc.getTextRange(f);if(""!==p&&"{"!==p&&a.getWrapBehavioursEnabled())return h(f,p,"{","}");if(e.isSaneInsertion(a,o))return/[\]\}\)]/.test(u[c.column])||a.inMultiSelectMode||t.braces?(e.recordAutoInsert(a,o,"}"),{text:"{}",selection:[1,1]}):(e.recordMaybeInsert(a,o,"{"),{text:"{",selection:[1,1]})}else if("}"==l){if(d(a),"}"==u.substring(c.column,c.column+1))if(null!==o.$findOpeningBracket("}",{column:c.column+1,row:c.row})&&e.isAutoInsertedClosing(c,u,l))return e.popAutoInsertedClosing(),{text:"",selection:[1,1]}}else{if("\n"==l||"\r\n"==l){d(a);var v="";if(e.isMaybeInsertedClosing(c,u)&&(v=s.stringRepeat("}",r.maybeInsertedBrackets),e.clearMaybeInsertedClosing()),"}"===u.substring(c.column,c.column+1)){var m=o.findMatchingBracket({row:c.row,column:c.column+1},"}");if(!m)return null;var g=this.$getIndent(o.getLine(m.row))}else{if(!v)return void e.clearMaybeInsertedClosing();g=this.$getIndent(u)}var y=g+o.getTabString();return{text:"\n"+y+"\n"+g+v,selection:[1,y.length,1,y.length]}}e.clearMaybeInsertedClosing()}})),this.add("braces","deletion",(function(e,t,n,i,a){var o=i.doc.getTextRange(a);if(!a.isMultiLine()&&"{"==o){if(d(n),"}"==i.doc.getLine(a.start.row).substring(a.end.column,a.end.column+1))return a.end.column++,a;r.maybeInsertedBrackets--}})),this.add("parens","insertion",(function(t,n,r,i,a){if("("==a){d(r);var o=r.getSelectionRange(),s=i.doc.getTextRange(o);if(""!==s&&r.getWrapBehavioursEnabled())return h(o,s,"(",")");if(e.isSaneInsertion(r,i))return e.recordAutoInsert(r,i,")"),{text:"()",selection:[1,1]}}else if(")"==a){d(r);var l=r.getCursorPosition(),c=i.doc.getLine(l.row);if(")"==c.substring(l.column,l.column+1))if(null!==i.$findOpeningBracket(")",{column:l.column+1,row:l.row})&&e.isAutoInsertedClosing(l,c,a))return e.popAutoInsertedClosing(),{text:"",selection:[1,1]}}})),this.add("parens","deletion",(function(e,t,n,r,i){var a=r.doc.getTextRange(i);if(!i.isMultiLine()&&"("==a&&(d(n),")"==r.doc.getLine(i.start.row).substring(i.start.column+1,i.start.column+2)))return i.end.column++,i})),this.add("brackets","insertion",(function(t,n,r,i,a){if("["==a){d(r);var o=r.getSelectionRange(),s=i.doc.getTextRange(o);if(""!==s&&r.getWrapBehavioursEnabled())return h(o,s,"[","]");if(e.isSaneInsertion(r,i))return e.recordAutoInsert(r,i,"]"),{text:"[]",selection:[1,1]}}else if("]"==a){d(r);var l=r.getCursorPosition(),c=i.doc.getLine(l.row);if("]"==c.substring(l.column,l.column+1))if(null!==i.$findOpeningBracket("]",{column:l.column+1,row:l.row})&&e.isAutoInsertedClosing(l,c,a))return e.popAutoInsertedClosing(),{text:"",selection:[1,1]}}})),this.add("brackets","deletion",(function(e,t,n,r,i){var a=r.doc.getTextRange(i);if(!i.isMultiLine()&&"["==a&&(d(n),"]"==r.doc.getLine(i.start.row).substring(i.start.column+1,i.start.column+2)))return i.end.column++,i})),this.add("string_dquotes","insertion",(function(e,t,n,r,i){var a=r.$mode.$quotes||f;if(1==i.length&&a[i]){if(this.lineCommentStart&&-1!=this.lineCommentStart.indexOf(i))return;d(n);var o=i,s=n.getSelectionRange(),l=r.doc.getTextRange(s);if(!(""===l||1==l.length&&a[l])&&n.getWrapBehavioursEnabled())return h(s,l,o,o);if(!l){var c=n.getCursorPosition(),u=r.doc.getLine(c.row),p=u.substring(c.column-1,c.column),v=u.substring(c.column,c.column+1),m=r.getTokenAt(c.row,c.column),g=r.getTokenAt(c.row,c.column+1);if("\\"==p&&m&&/escape/.test(m.type))return null;var y,b=m&&/string|escape/.test(m.type),x=!g||/string|escape/.test(g.type);if(v==o)(y=b!==x)&&/string\.end/.test(g.type)&&(y=!1);else{if(b&&!x)return null;if(b&&x)return null;var w=r.$mode.tokenRe;w.lastIndex=0;var _=w.test(p);w.lastIndex=0;var k=w.test(v),S=r.$mode.$pairQuotesAfter;if(!(S&&S[o]&&S[o].test(p))&&_||k)return null;if(v&&!/[\s;,.})\]\\]/.test(v))return null;var T=u[c.column-2];if(p==o&&(T==o||w.test(T)))return null;y=!0}return{text:y?o+o:"",selection:[1,1]}}}})),this.add("string_dquotes","deletion",(function(e,t,n,r,i){var a=r.$mode.$quotes||f,o=r.doc.getTextRange(i);if(!i.isMultiLine()&&a.hasOwnProperty(o)&&(d(n),r.doc.getLine(i.start.row).substring(i.start.column+1,i.start.column+2)==o))return i.end.column++,i})),!1!==t.closeDocComment&&this.add("doc comment end","insertion",(function(e,t,n,r,i){if("doc-start"===e&&("\n"===i||"\r\n"===i)&&n.selection.isEmpty()){var a=n.getCursorPosition(),o=r.doc.getLine(a.row),s=r.doc.getLine(a.row+1),l=this.$getIndent(o);if(/\s*\*/.test(s))return/^\s*\*/.test(o)?{text:i+l+"* ",selection:[1,3+l.length,1,3+l.length]}:{text:i+l+" * ",selection:[1,3+l.length,1,3+l.length]};if(/\/\*\*/.test(o.substring(0,a.column)))return{text:i+l+" * "+i+" "+l+"*/",selection:[1,4+l.length,1,4+l.length]}}}))};p.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new o(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",l)){if(/[)}\]]/.test(e.session.getLine(n.row)[n.column]))return!0;var i=new o(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",l))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",c)},p.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},p.recordAutoInsert=function(e,t,n){var i=e.getCursorPosition(),a=t.doc.getLine(i.row);this.isAutoInsertedClosing(i,a,r.autoInsertedLineEnd[0])||(r.autoInsertedBrackets=0),r.autoInsertedRow=i.row,r.autoInsertedLineEnd=n+a.substr(i.column),r.autoInsertedBrackets++},p.recordMaybeInsert=function(e,t,n){var i=e.getCursorPosition(),a=t.doc.getLine(i.row);this.isMaybeInsertedClosing(i,a)||(r.maybeInsertedBrackets=0),r.maybeInsertedRow=i.row,r.maybeInsertedLineStart=a.substr(0,i.column)+n,r.maybeInsertedLineEnd=a.substr(i.column),r.maybeInsertedBrackets++},p.isAutoInsertedClosing=function(e,t,n){return r.autoInsertedBrackets>0&&e.row===r.autoInsertedRow&&n===r.autoInsertedLineEnd[0]&&t.substr(e.column)===r.autoInsertedLineEnd},p.isMaybeInsertedClosing=function(e,t){return r.maybeInsertedBrackets>0&&e.row===r.maybeInsertedRow&&t.substr(e.column)===r.maybeInsertedLineEnd&&t.substr(0,e.column)==r.maybeInsertedLineStart},p.popAutoInsertedClosing=function(){r.autoInsertedLineEnd=r.autoInsertedLineEnd.substr(1),r.autoInsertedBrackets--},p.clearMaybeInsertedClosing=function(){r&&(r.maybeInsertedBrackets=0,r.maybeInsertedRow=-1)},i.inherits(p,a),t.CstyleBehaviour=p})),ace.define("ace/unicode",["require","exports","module"],(function(e,t,n){"use strict";for(var r=[48,9,8,25,5,0,2,25,48,0,11,0,5,0,6,22,2,30,2,457,5,11,15,4,8,0,2,0,18,116,2,1,3,3,9,0,2,2,2,0,2,19,2,82,2,138,2,4,3,155,12,37,3,0,8,38,10,44,2,0,2,1,2,1,2,0,9,26,6,2,30,10,7,61,2,9,5,101,2,7,3,9,2,18,3,0,17,58,3,100,15,53,5,0,6,45,211,57,3,18,2,5,3,11,3,9,2,1,7,6,2,2,2,7,3,1,3,21,2,6,2,0,4,3,3,8,3,1,3,3,9,0,5,1,2,4,3,11,16,2,2,5,5,1,3,21,2,6,2,1,2,1,2,1,3,0,2,4,5,1,3,2,4,0,8,3,2,0,8,15,12,2,2,8,2,2,2,21,2,6,2,1,2,4,3,9,2,2,2,2,3,0,16,3,3,9,18,2,2,7,3,1,3,21,2,6,2,1,2,4,3,8,3,1,3,2,9,1,5,1,2,4,3,9,2,0,17,1,2,5,4,2,2,3,4,1,2,0,2,1,4,1,4,2,4,11,5,4,4,2,2,3,3,0,7,0,15,9,18,2,2,7,2,2,2,22,2,9,2,4,4,7,2,2,2,3,8,1,2,1,7,3,3,9,19,1,2,7,2,2,2,22,2,9,2,4,3,8,2,2,2,3,8,1,8,0,2,3,3,9,19,1,2,7,2,2,2,22,2,15,4,7,2,2,2,3,10,0,9,3,3,9,11,5,3,1,2,17,4,23,2,8,2,0,3,6,4,0,5,5,2,0,2,7,19,1,14,57,6,14,2,9,40,1,2,0,3,1,2,0,3,0,7,3,2,6,2,2,2,0,2,0,3,1,2,12,2,2,3,4,2,0,2,5,3,9,3,1,35,0,24,1,7,9,12,0,2,0,2,0,5,9,2,35,5,19,2,5,5,7,2,35,10,0,58,73,7,77,3,37,11,42,2,0,4,328,2,3,3,6,2,0,2,3,3,40,2,3,3,32,2,3,3,6,2,0,2,3,3,14,2,56,2,3,3,66,5,0,33,15,17,84,13,619,3,16,2,25,6,74,22,12,2,6,12,20,12,19,13,12,2,2,2,1,13,51,3,29,4,0,5,1,3,9,34,2,3,9,7,87,9,42,6,69,11,28,4,11,5,11,11,39,3,4,12,43,5,25,7,10,38,27,5,62,2,28,3,10,7,9,14,0,89,75,5,9,18,8,13,42,4,11,71,55,9,9,4,48,83,2,2,30,14,230,23,280,3,5,3,37,3,5,3,7,2,0,2,0,2,0,2,30,3,52,2,6,2,0,4,2,2,6,4,3,3,5,5,12,6,2,2,6,67,1,20,0,29,0,14,0,17,4,60,12,5,0,4,11,18,0,5,0,3,9,2,0,4,4,7,0,2,0,2,0,2,3,2,10,3,3,6,4,5,0,53,1,2684,46,2,46,2,132,7,6,15,37,11,53,10,0,17,22,10,6,2,6,2,6,2,6,2,6,2,6,2,6,2,6,2,31,48,0,470,1,36,5,2,4,6,1,5,85,3,1,3,2,2,89,2,3,6,40,4,93,18,23,57,15,513,6581,75,20939,53,1164,68,45,3,268,4,27,21,31,3,13,13,1,2,24,9,69,11,1,38,8,3,102,3,1,111,44,25,51,13,68,12,9,7,23,4,0,5,45,3,35,13,28,4,64,15,10,39,54,10,13,3,9,7,22,4,1,5,66,25,2,227,42,2,1,3,9,7,11171,13,22,5,48,8453,301,3,61,3,105,39,6,13,4,6,11,2,12,2,4,2,0,2,1,2,1,2,107,34,362,19,63,3,53,41,11,5,15,17,6,13,1,25,2,33,4,2,134,20,9,8,25,5,0,2,25,12,88,4,5,3,5,3,5,3,2],i=0,a=[],o=0;o2?r%c!=c-1:r%c==0})}else{if(!this.blockComment)return!1;var h=this.blockComment.start,p=this.blockComment.end,v=new RegExp("^(\\s*)(?:"+l.escapeRegExp(h)+")"),m=new RegExp("(?:"+l.escapeRegExp(p)+")\\s*$"),g=function(e,t){b(e,t)||a&&!/\S/.test(e)||(i.insertInLine({row:t,column:e.length},p),i.insertInLine({row:t,column:s},h))},y=function(e,t){var n;(n=e.match(m))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(v))&&i.removeInLine(t,n[1].length,n[0].length)},b=function(e,n){if(v.test(e))return!0;for(var r=t.getTokens(n),i=0;ie.length&&(w=e.length)})),s==1/0&&(s=w,a=!1,o=!1),u&&s%c!=0&&(s=Math.floor(s/c)*c),x(o?y:g)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(i){!i.start&&i[0]&&(i=i[0]);var a,o,s=(v=new c(t,r.row,r.column)).getCurrentToken(),l=(t.selection,t.selection.toOrientedRange());if(s&&/comment/.test(s.type)){for(var f,d;s&&/comment/.test(s.type);){if(-1!=(m=s.value.indexOf(i.start))){var h=v.getCurrentTokenRow(),p=v.getCurrentTokenColumn()+m;f=new u(h,p,h,p+i.start.length);break}s=v.stepBackward()}var v;for(s=(v=new c(t,r.row,r.column)).getCurrentToken();s&&/comment/.test(s.type);){var m;if(-1!=(m=s.value.indexOf(i.end))){h=v.getCurrentTokenRow(),p=v.getCurrentTokenColumn()+m;d=new u(h,p,h,p+i.end.length);break}s=v.stepForward()}d&&t.remove(d),f&&(t.remove(f),a=f.start.row,o=-i.start.length)}else o=i.start.length,a=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);l.start.row==a&&(l.start.column+=o),l.end.row==a&&(l.end.column+=o),t.selection.fromOrientedRange(l)}},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){for(var t in this.$embeds=[],this.$modes={},e)if(e[t]){var n=e[t],i=n.prototype.$id,a=r.$modes[i];a||(r.$modes[i]=a=new n),r.$modes[t]||(r.$modes[t]=a),this.$embeds.push(t),this.$modes[t]=a}var o=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"];for(t=0;tthis.row)){var t=function(e,t,n){var r="insert"==e.action,i=(r?1:-1)*(e.end.row-e.start.row),a=(r?1:-1)*(e.end.column-e.start.column),s=e.start,l=r?s:e.end;if(o(t,s,n))return{row:t.row,column:t.column};if(o(l,t,!n))return{row:t.row+i,column:t.column+(t.row==l.row?a:0)};return{row:s.row,column:s.column}}(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(t.row,t.column,!0)}},e.prototype.setPosition=function(e,t,n){var r;if(r=n?{row:e,column:t}:this.$clipPositionToDocument(e,t),this.row!=r.row||this.column!=r.column){var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})}},e.prototype.detach=function(){this.document.off("change",this.$onChange)},e.prototype.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},e.prototype.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n},e}();function o(e,t,n){var r=n?e.column<=t.column:e.column=n&&(e=n-1,t=void 0);var r=this.getLine(e);return void 0==t&&(t=r.length),{row:e,column:t=Math.min(Math.max(t,0),r.length)}},e.prototype.clonePos=function(e){return{row:e.row,column:e.column}},e.prototype.pos=function(e,t){return{row:e,column:t}},e.prototype.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},e.prototype.insertFullLines=function(e,t){var n=0;(e=Math.min(Math.max(e,0),this.getLength()))0,r=t=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},e.prototype.replace=function(e,t){return e instanceof o||(e=o.fromPoints(e.start,e.end)),0===t.length&&e.isEmpty()?e.start:t==this.getTextRange(e)?e.end:(this.remove(e),t?this.insert(e.start,t):e.start)},e.prototype.applyDeltas=function(e){for(var t=0;t=0;t--)this.revertDelta(e[t])},e.prototype.applyDelta=function(e,t){var n="insert"==e.action;(n?e.lines.length<=1&&!e.lines[0]:!o.comparePoints(e.start,e.end))||(n&&e.lines.length>2e4?this.$splitAndapplyLargeDelta(e,2e4):(i(this.$lines,e,t),this._signal("change",e)))},e.prototype.$safeApplyDelta=function(e){var t=this.$lines.length;("remove"==e.action&&e.start.row20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,-1==r&&(r=t),a<=r&&n.fireUpdateEvent(a,r)}}}return e.prototype.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},e.prototype.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},e.prototype.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},e.prototype.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},e.prototype.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},e.prototype.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(0===n)this.lines[t]=null;else if("remove"==e.action)this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},e.prototype.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},e.prototype.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},e.prototype.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},e.prototype.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!==r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens},e.prototype.cleanup=function(){this.running=!1,this.lines=[],this.states=[],this.currentLine=0,this.removeAllListeners()},e}();r.implement(a.prototype,i),t.BackgroundTokenizer=a})),ace.define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/range"],(function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./range").Range,a=function(){function e(e,t,n){void 0===n&&(n="text"),this.setRegexp(e),this.clazz=t,this.type=n}return e.prototype.setRegexp=function(e){this.regExp+""!=e+""&&(this.regExp=e,this.cache=[])},e.prototype.update=function(e,t,n,a){if(this.regExp)for(var o=a.firstRow,s=a.lastRow,l={},c=o;c<=s;c++){var u=this.cache[c];null==u&&((u=r.getMatchOffsets(n.getLine(c),this.regExp)).length>this.MAX_RANGES&&(u=u.slice(0,this.MAX_RANGES)),u=u.map((function(e){return new i(c,e.offset,c,e.offset+e.length)})),this.cache[c]=u.length?u:"");for(var f=u.length;f--;){var d=u[f].toScreenRange(n),h=d.toString();l[h]||(l[h]=!0,t.drawSingleLineMarker(e,d,this.clazz,a))}}},e}();a.prototype.MAX_RANGES=500,t.SearchHighlight=a})),ace.define("ace/edit_session/fold_line",["require","exports","module","ace/range"],(function(e,t,n){"use strict";var r=e("../range").Range,i=function(){function e(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach((function(e){e.setFoldLine(this)}),this)}return e.prototype.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach((function(t){t.start.row+=e,t.end.row+=e}))},e.prototype.addFold=function(e){if(e.sameRow){if(e.start.rowthis.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort((function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)})),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},e.prototype.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},e.prototype.walk=function(e,t,n){var r,i,a=0,o=this.folds,s=!0;null==t&&(t=this.end.row,n=this.end.column);for(var l=0;l0)){var l=r(e,o.start);return 0===s?t&&0!==l?-a-2:a:l>0||0===l&&!t?a:-a-1}}return-a-1},e.prototype.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},e.prototype.addList=function(e){for(var t=[],n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},e.prototype.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},e.prototype.merge=function(){for(var e,t=[],n=this.ranges,i=(n=n.sort((function(e,t){return r(e.start,t.start)})))[0],a=1;a=0},e.prototype.containsPoint=function(e){return this.pointIndex(e)>=0},e.prototype.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},e.prototype.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.row=r)break}if("insert"==e.action)for(var l=i-r,c=-t.column+n.column;or)break;if(u.start.row==r&&u.start.column>=t.column&&(u.start.column==t.column&&this.$bias<=0||(u.start.column+=c,u.start.row+=l)),u.end.row==r&&u.end.column>=t.column){if(u.end.column==t.column&&this.$bias<0)continue;u.end.column==t.column&&c>0&&ou.start.column&&u.end.column==a[o+1].start.column&&(u.end.column-=c),u.end.column+=c,u.end.row+=l}}else for(l=r-i,c=t.column-n.column;oi)break;u.end.rowt.column)&&(u.end.column=t.column,u.end.row=t.row):(u.end.column+=c,u.end.row+=l):u.end.row>i&&(u.end.row+=l),u.start.rowt.column)&&(u.start.column=t.column,u.start.row=t.row):(u.start.column+=c,u.start.row+=l):u.start.row>i&&(u.start.row+=l)}if(0!=l&&o=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;for(t&&(r=n.indexOf(t)),-1==r&&(r=0);r=e)return i}return null},this.getFoldedRowCount=function(e,t){for(var n=this.$foldData,r=t-e+1,i=0;i=t){s=e?r-=t-s:r=0);break}o>=e&&(r-=s>=e?o-s:o-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort((function(e,t){return e.start.row-t.start.row})),e},this.addFold=function(e,t){var n,r=this.$foldData,o=!1;e instanceof a?n=e:(n=new a(t,e)).collapseChildren=t.collapseChildren,this.$clipRangeToDocument(n.range);var s=n.start.row,l=n.start.column,c=n.end.row,u=n.end.column,f=this.getFoldAt(s,l,1),d=this.getFoldAt(c,u,-1);if(f&&d==f)return f.addSubFold(n);f&&!f.range.isStart(s,l)&&this.removeFold(f),d&&!d.range.isEnd(c,u)&&this.removeFold(d);var h=this.getFoldsInRange(n.range);h.length>0&&(this.removeFolds(h),n.collapseChildren||h.forEach((function(e){n.addSubFold(e)})));for(var p=0;p0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach((function(e){this.expandFold(e)}),this)},this.unfold=function(e,t){var n,i;if(null==e)n=new r(0,0,this.getLength(),0),null==t&&(t=!0);else if("number"==typeof e)n=new r(e,0,e,this.getLine(e).length);else if("row"in e)n=r.fromPoints(e,e);else{if(Array.isArray(e))return i=[],e.forEach((function(e){i=i.concat(this.unfold(e))}),this),i;n=e}for(var a=i=this.getFoldsInRangeList(n);1==i.length&&r.comparePoints(i[0].start,n.start)<0&&r.comparePoints(i[0].end,n.end)>0;)this.expandFolds(i),i=this.getFoldsInRangeList(n);if(0!=t?this.removeFolds(i):this.expandFolds(i),a.length)return a},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){null==r&&(r=e.start.row),null==i&&(i=0),null==t&&(t=e.end.row),null==n&&(n=this.getLine(t).length);var a=this.doc,o="";return e.walk((function(e,t,n,s){if(!(tu)break}while(a&&l.test(a.type)&&!/^comment.start/.test(a.type));a=i.stepBackward()}else a=i.getCurrentToken();return c.end.row=i.getCurrentTokenRow(),c.end.column=i.getCurrentTokenColumn(),/^comment.end/.test(a.type)||(c.end.column+=a.value.length-2),c}},this.foldAll=function(e,t,n,r){void 0==n&&(n=1e5);var i=this.foldWidgets;if(i){t=t||this.getLength();for(var a=e=e||0;a=e&&(a=o.end.row,o.collapseChildren=n,this.addFold("...",o))}}},this.foldToLevel=function(e){for(this.foldAll();e-- >0;)this.unfold(null,!1)},this.foldAllComments=function(){var e=this;this.foldAll(null,null,null,(function(t){for(var n=e.getTokens(t),r=0;r=0;){var a=n[i];if(null==a&&(a=n[i]=this.getFoldWidget(i)),"start"==a){var o=this.getFoldWidgetRange(i);if(r||(r=o),o&&o.end.row>=e)break}i--}return{range:-1!==i&&o,firstRange:r}},this.onFoldWidgetClick=function(e,t){t instanceof s&&(t=t.domEvent);var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey};if(!this.$toggleFoldWidget(e,n)){var r=t.target||t.srcElement;r&&/ace_fold-widget/.test(r.className)&&(r.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(this.getFoldWidget){var n=this.getFoldWidget(e),r=this.getLine(e),i="end"===n?-1:1,a=this.getFoldAt(e,-1===i?0:r.length,i);if(a)return t.children||t.all?this.removeFold(a):this.expandFold(a),a;var o=this.getFoldWidgetRange(e,!0);if(o&&!o.isMultiLine()&&(a=this.getFoldAt(o.start.row,o.start.column,1))&&o.isEqual(a.range))return this.removeFold(a),a;if(t.siblings){var s=this.getParentFoldRangeData(e);if(s.range)var l=s.range.start.row+1,c=s.range.end.row;this.foldAll(l,c,t.all?1e4:0)}else t.children?(c=o?o.end.row:this.getLength(),this.foldAll(e+1,c,t.all?1e4:0)):o&&(t.all&&(o.collapseChildren=1e4),this.addFold("...",o));return o}},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(!n){var r=this.getParentFoldRangeData(t,!0);if(n=r.range||r.firstRange){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(0===n)this.foldWidgets[t]=null;else if("remove"==e.action)this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}})),ace.define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],(function(e,t,n){"use strict";var r=e("../token_iterator").TokenIterator,i=e("../range").Range;t.BracketMatch=function(){this.findMatchingBracket=function(e,t){if(0==e.column)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(""==n)return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t,n=this.getLine(e.row),r=!0,a=n.charAt(e.column-1),o=a&&a.match(/([\(\[\{])|([\)\]\}])/);if(o||(a=n.charAt(e.column),e={row:e.row,column:e.column+1},o=a&&a.match(/([\(\[\{])|([\)\]\}])/),r=!1),!o)return null;if(o[1]){if(!(s=this.$findClosingBracket(o[1],e)))return null;t=i.fromPoints(e,s),r||(t.end.column++,t.start.column--),t.cursor=t.end}else{var s;if(!(s=this.$findOpeningBracket(o[2],e)))return null;t=i.fromPoints(s,e),r||(t.start.column++,t.end.column--),t.cursor=t.start}return t},this.getMatchingBracketRanges=function(e,t){var n=this.getLine(e.row),r=/([\(\[\{])|([\)\]\}])/,a=!t&&n.charAt(e.column-1),o=a&&a.match(r);if(o||(a=(void 0===t||t)&&n.charAt(e.column),e={row:e.row,column:e.column+1},o=a&&a.match(r)),!o)return null;var s=new i(e.row,e.column-1,e.row,e.column),l=o[1]?this.$findClosingBracket(o[1],e):this.$findOpeningBracket(o[2],e);return l?[s,new i(l.row,l.column,l.row,l.column+1)]:[s]},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{","<":">",">":"<"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],a=1,o=new r(this,t.row,t.column),s=o.getCurrentToken();if(s||(s=o.stepForward()),s){n||(n=new RegExp("(\\.?"+s.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)").replace(/-close\b/,"-(close|open)")+")+"));for(var l=t.column-o.getCurrentTokenColumn()-2,c=s.value;;){for(;l>=0;){var u=c.charAt(l);if(u==i){if(0==(a-=1))return{row:o.getCurrentTokenRow(),column:l+o.getCurrentTokenColumn()}}else u==e&&(a+=1);l-=1}do{s=o.stepBackward()}while(s&&!n.test(s.type));if(null==s)break;l=(c=s.value).length-1}return null}},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],a=1,o=new r(this,t.row,t.column),s=o.getCurrentToken();if(s||(s=o.stepForward()),s){n||(n=new RegExp("(\\.?"+s.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)").replace(/-open\b/,"-(close|open)")+")+"));for(var l=t.column-o.getCurrentTokenColumn();;){for(var c=s.value,u=c.length;l"===t.value?r=!0:-1!==t.type.indexOf("tag-name")&&(n=!0))}while(t&&!n);return t},this.$findClosingTag=function(e,t){var n,r=t.value,a=t.value,o=0,s=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);t=e.stepForward();var l=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+t.value.length),c=!1;do{if(n=t,t=e.stepForward()){if(">"===t.value&&!c){var u=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);c=!0}if(-1!==t.type.indexOf("tag-name")){if(a===(r=t.value))if("<"===n.value)o++;else if(""!==t.value)return;var h=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1)}}else if(a===r&&"/>"===t.value&&--o<0)h=d=f=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+2),u=new i(l.end.row,l.end.column,l.end.row,l.end.column+1)}}while(t&&o>=0);if(s&&u&&f&&h&&l&&d)return{openTag:new i(s.start.row,s.start.column,u.end.row,u.end.column),closeTag:new i(f.start.row,f.start.column,h.end.row,h.end.column),openTagName:l,closeTagName:d}},this.$findOpeningTag=function(e,t){var n=e.getCurrentToken(),r=t.value,a=0,o=e.getCurrentTokenRow(),s=e.getCurrentTokenColumn(),l=s+2,c=new i(o,s,o,l);e.stepForward();var u=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+t.value.length);if((t=e.stepForward())&&">"===t.value){var f=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);e.stepBackward(),e.stepBackward();do{if(t=n,o=e.getCurrentTokenRow(),l=(s=e.getCurrentTokenColumn())+t.value.length,n=e.stepBackward(),t)if(-1!==t.type.indexOf("tag-name")){if(r===t.value)if("<"===n.value){if(++a>0){var d=new i(o,s,o,l),h=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1);do{t=e.stepForward()}while(t&&">"!==t.value);var p=new i(e.getCurrentTokenRow(),e.getCurrentTokenColumn(),e.getCurrentTokenRow(),e.getCurrentTokenColumn()+1)}}else""===t.value){for(var v=0,m=n;m;){if(-1!==m.type.indexOf("tag-name")&&m.value===r){a--;break}if("<"===m.value)break;m=e.stepBackward(),v++}for(var g=0;gn&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},e.prototype.$getRowCacheIndex=function(e,t){for(var n=0,r=e.length-1;n<=r;){var i=n+r>>1,a=e[i];if(t>a)n=i+1;else{if(!(t=t);a++);return(n=r[a])?(n.index=a,n.start=i-n.value.length,n):null},e.prototype.setUndoManager=function(e){if(this.$undoManager=e,this.$informUndoManager&&this.$informUndoManager.cancel(),e){var t=this;e.addSession(this),this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.mergeUndoDeltas=!1},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}else this.$syncInformUndoManager=function(){}},e.prototype.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},e.prototype.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},e.prototype.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):"\t"},e.prototype.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},e.prototype.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},e.prototype.setTabSize=function(e){this.setOption("tabSize",e)},e.prototype.getTabSize=function(){return this.$tabSize},e.prototype.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},e.prototype.setNavigateWithinSoftTabs=function(e){this.setOption("navigateWithinSoftTabs",e)},e.prototype.getNavigateWithinSoftTabs=function(){return this.$navigateWithinSoftTabs},e.prototype.setOverwrite=function(e){this.setOption("overwrite",e)},e.prototype.getOverwrite=function(){return this.$overwrite},e.prototype.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},e.prototype.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},e.prototype.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},e.prototype.getBreakpoints=function(){return this.$breakpoints},e.prototype.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe)),r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))i=/\s/;else i=this.nonTokenRe;var a=t;if(a>0){do{a--}while(a>=0&&n.charAt(a).match(i));a++}for(var o=t;oe&&(e=t.screenWidth)})),this.lineWidgetWidth=e},e.prototype.$computeWidth=function(e){if(this.$modified||e){if(this.$modified=!1,this.$useWrapMode)return this.screenWidth=this.$wrapLimit;for(var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,a=this.$foldData[i],o=a?a.start.row:1/0,s=t.length,l=0;lo){if((l=a.end.row+1)>=s)break;o=(a=this.$foldData[i++])?a.start.row:1/0}null==n[l]&&(n[l]=this.$getStringScreenWidth(t[l])[0]),n[l]>r&&(r=n[l])}this.screenWidth=r}},e.prototype.getLine=function(e){return this.doc.getLine(e)},e.prototype.getLines=function(e,t){return this.doc.getLines(e,t)},e.prototype.getLength=function(){return this.doc.getLength()},e.prototype.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},e.prototype.insert=function(e,t){return this.doc.insert(e,t)},e.prototype.remove=function(e){return this.doc.remove(e)},e.prototype.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},e.prototype.undoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var n=e.length-1;-1!=n;n--){var r=e[n];"insert"==r.action||"remove"==r.action?this.doc.revertDelta(r):r.folds&&this.addFolds(r.folds)}!t&&this.$undoSelect&&(e.selectionBefore?this.selection.fromJSON(e.selectionBefore):this.selection.setRange(this.$getUndoSelection(e,!0))),this.$fromUndo=!1}},e.prototype.redoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var n=0;ne.end.column&&(a.start.column+=c),a.end.row==e.end.row&&a.end.column>e.end.column&&(a.end.column+=c)),o&&a.start.row>=e.end.row&&(a.start.row+=o,a.end.row+=o)}if(a.end=this.insert(a.start,r),i.length){var s=e.start,l=a.start,c=(o=l.row-s.row,l.column-s.column);this.addFolds(i.map((function(e){return(e=e.clone()).start.row==s.row&&(e.start.column+=c),e.end.row==s.row&&(e.end.column+=c),e.start.row+=o,e.end.row+=o,e})))}return a},e.prototype.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},e.prototype.outdentRows=function(e){for(var t=e.collapseRows(),n=new u(0,0,0,0),r=this.getTabSize(),i=t.start.row;i<=t.end.row;++i){var a=this.getLine(i);n.start.row=i,n.end.row=i;for(var o=0;o0){var i;if((i=this.getRowFoldEnd(t+n))>this.doc.getLength()-1)return 0;r=i-t}else{e=this.$clipRowToDocument(e);r=(t=this.$clipRowToDocument(t))-e+1}var a=new u(e,0,t,Number.MAX_VALUE),o=this.getFoldsInRange(a).map((function(e){return(e=e.clone()).start.row+=r,e.end.row+=r,e})),s=0==n?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+r,s),o.length&&this.addFolds(o),r},e.prototype.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},e.prototype.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},e.prototype.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},e.prototype.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},e.prototype.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},e.prototype.$clipPositionToDocument=function(e,t){if(t=Math.max(0,t),e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},e.prototype.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},e.prototype.setUseWrapMode=function(e){if(e!=this.$useWrapMode){if(this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0),e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},e.prototype.getUseWrapMode=function(){return this.$useWrapMode},e.prototype.setWrapLimitRange=function(e,t){this.$wrapLimitRange.min===e&&this.$wrapLimitRange.max===t||(this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$bidiHandler.markAsDirty(),this.$useWrapMode&&this._signal("changeWrapMode"))},e.prototype.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1&&(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0)},e.prototype.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},e.prototype.getWrapLimit=function(){return this.$wrapLimit},e.prototype.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},e.prototype.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},e.prototype.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,a=r.row,o=i.row,s=o-a,l=null;if(this.$updating=!0,0!=s)if("remove"===n){this[t?"$wrapData":"$rowLengthCache"].splice(a,s);var c=this.$foldData;l=this.getFoldsInRange(e),this.removeFolds(l);var u=0;if(v=this.getFoldLine(i.row)){v.addRemoveChars(i.row,i.column,r.column-i.column),v.shiftRow(-s);var f=this.getFoldLine(a);f&&f!==v&&(f.merge(v),v=f),u=c.indexOf(v)+1}for(;u=i.row&&v.shiftRow(-s)}o=a}else{var d=Array(s);d.unshift(a,0);var h=t?this.$wrapData:this.$rowLengthCache;h.splice.apply(h,d);c=this.$foldData,u=0;if(v=this.getFoldLine(a)){var p=v.range.compareInside(r.row,r.column);0==p?(v=v.split(r.row,r.column))&&(v.shiftRow(s),v.addRemoveChars(o,0,i.column-r.column)):-1==p&&(v.addRemoveChars(a,0,i.column-r.column),v.shiftRow(s)),u=c.indexOf(v)+1}for(;u=a&&v.shiftRow(s)}}else s=Math.abs(e.start.column-e.end.column),"remove"===n&&(l=this.getFoldsInRange(e),this.removeFolds(l),s=-s),(v=this.getFoldLine(a))&&v.addRemoveChars(a,r.column,s);return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(a,o):this.$updateRowLengthCache(a,o),l},e.prototype.$updateRowLengthCache=function(e,t,n){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},e.prototype.$updateWrapData=function(e,t){var n,r,i=this.doc.getAllLines(),a=this.getTabSize(),o=this.$wrapData,s=this.$wrapLimit,l=e;for(t=Math.min(t,i.length-1);l<=t;)(r=this.getFoldLine(l,r))?(n=[],r.walk(function(e,t,r,a){var o;if(null!=e){(o=this.$getDisplayTokens(e,n.length))[0]=g;for(var s=1;st-f;){var d=a+t-f;if(e[d-1]>=x&&e[d]>=x)u(d);else if(e[d]!=g&&e[d]!=y){for(var h=Math.max(d-(t-(t>>2)),a-1);d>h&&e[d]h&&e[d]h&&e[d]==b;)d--}else for(;d>h&&e[d]h?u(++d):(e[d=a+t]==m&&d--,u(d-f))}else{for(;d!=a-1&&e[d]!=g;d--);if(d>a){u(d);continue}for(d=a+t;d39&&a<48||a>57&&a<64?r.push(b):a>=4352&&k(a)?r.push(v,m):r.push(v)}return r},e.prototype.$getStringScreenWidth=function(e,t,n){if(0==t)return[0,0];var r,i;for(null==t&&(t=1/0),n=n||0,i=0;i=4352&&k(r)?n+=2:n+=1,!(n>t));i++);return[n,i]},e.prototype.getRowLength=function(e){var t=1;return this.lineWidgets&&(t+=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0),this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+t:t},e.prototype.getRowLineCount=function(e){return this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1:1},e.prototype.getRowWrapIndent=function(e){if(this.$useWrapMode){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE),n=this.$wrapData[t.row];return n.length&&n[0]=0){s=c[u],a=this.$docRowCache[u];var d=e>c[f-1]}else d=!f;for(var h=this.getLength()-1,p=this.getNextFoldLine(a),v=p?p.start.row:1/0;s<=e&&!(s+(l=this.getRowLength(a))>e||a>=h);)s+=l,++a>v&&(a=p.end.row+1,v=(p=this.getNextFoldLine(a,p))?p.start.row:1/0),d&&(this.$docRowCache.push(a),this.$screenRowCache.push(s));if(p&&p.start.row<=a)r=this.getFoldDisplayLine(p),a=p.start.row;else{if(s+l<=e||a>h)return{row:h,column:this.getLine(h).length};r=this.getLine(a),p=null}var m=0,g=Math.floor(e-s);if(this.$useWrapMode){var y=this.$wrapData[a];y&&(i=y[g],g>0&&y.length&&(m=y.indent,o=y[g-1]||y[y.length-1],r=r.substring(o)))}return void 0!==n&&this.$bidiHandler.isBidiRow(s+g,a,g)&&(t=this.$bidiHandler.offsetToCol(n)),o+=this.$getStringScreenWidth(r,t-m)[1],this.$useWrapMode&&o>=i&&(o=i-1),p?p.idxToPosition(o):{row:a,column:o}},e.prototype.documentToScreenPosition=function(e,t){if("undefined"===typeof t)var n=this.$clipPositionToDocument(e.row,e.column);else n=this.$clipPositionToDocument(e,t);e=n.row,t=n.column;var r,i=0,a=null;(r=this.getFoldAt(e,t,1))&&(e=r.start.row,t=r.start.column);var o,s=0,l=this.$docRowCache,c=this.$getRowCacheIndex(l,e),u=l.length;if(u&&c>=0){s=l[c],i=this.$screenRowCache[c];var f=e>l[u-1]}else f=!u;for(var d=this.getNextFoldLine(s),h=d?d.start.row:1/0;s=h){if((o=d.end.row+1)>e)break;h=(d=this.getNextFoldLine(o,d))?d.start.row:1/0}else o=s+1;i+=this.getRowLength(s),s=o,f&&(this.$docRowCache.push(s),this.$screenRowCache.push(i))}var p="";d&&s>=h?(p=this.getFoldDisplayLine(d,e,t),a=d.start.row):(p=this.getLine(e).substring(0,t),a=e);var v=0;if(this.$useWrapMode){var m=this.$wrapData[a];if(m){for(var g=0;p.length>=m[g];)i++,g++;p=p.substring(m[g-1]||0,p.length),v=g>0?m.indent:0}}return this.lineWidgets&&this.lineWidgets[s]&&this.lineWidgets[s].rowsAbove&&(i+=this.lineWidgets[s].rowsAbove),{row:i,column:v+this.$getStringScreenWidth(p)[0]}},e.prototype.documentToScreenColumn=function(e,t){return this.documentToScreenPosition(e,t).column},e.prototype.documentToScreenRow=function(e,t){return this.documentToScreenPosition(e,t).row},e.prototype.getScreenLength=function(){var e=0,t=null;if(this.$useWrapMode)for(var n=this.$wrapData.length,r=0,i=(s=0,(t=this.$foldData[s++])?t.start.row:1/0);ri&&(r=t.end.row+1,i=(t=this.$foldData[s++])?t.start.row:1/0)}else{e=this.getLength();for(var o=this.$foldData,s=0;sn);a++);return[r,a]})},e.prototype.destroy=function(){this.destroyed||(this.bgTokenizer.setDocument(null),this.bgTokenizer.cleanup(),this.destroyed=!0),this.$stopWorker(),this.removeAllListeners(),this.doc&&this.doc.off("change",this.$onChange),this.selection.detach()},e}();p.$uid=0,p.prototype.$modes=o.$modes,p.prototype.getValue=p.prototype.toString,p.prototype.$defaultUndoManager={undo:function(){},redo:function(){},hasUndo:function(){},hasRedo:function(){},reset:function(){},add:function(){},addSelection:function(){},startNewGroup:function(){},addSession:function(){}},p.prototype.$overwrite=!1,p.prototype.$mode=null,p.prototype.$modeId=null,p.prototype.$scrollTop=0,p.prototype.$scrollLeft=0,p.prototype.$wrapLimit=80,p.prototype.$useWrapMode=!1,p.prototype.$wrapLimitRange={min:null,max:null},p.prototype.lineWidgets=null,p.prototype.isFullWidth=k,r.implement(p.prototype,s);var v=1,m=2,g=3,y=4,b=9,x=10,w=11,_=12;function k(e){return!(e<4352)&&(e>=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510)}e("./edit_session/folding").Folding.call(p.prototype),e("./edit_session/bracket_match").BracketMatch.call(p.prototype),o.defineOptions(p.prototype,"session",{wrap:{set:function(e){if(e&&"off"!=e?"free"==e?e=!0:"printMargin"==e?e=-1:"string"==typeof e&&(e=parseInt(e,10)||!1):e=!1,this.$wrap!=e)if(this.$wrap=e,e){var t="number"==typeof e?e:null;this.setWrapLimitRange(t,t),this.setUseWrapMode(!0)}else this.setUseWrapMode(!1)},get:function(){return this.getUseWrapMode()?-1==this.$wrap?"printMargin":this.getWrapLimitRange().min?this.$wrap:"free":"off"},handlesSet:!0},wrapMethod:{set:function(e){(e="auto"==e?"text"!=this.$mode.type:"text"!=e)!=this.$wrapAsCode&&(this.$wrapAsCode=e,this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0)))},initialValue:"auto"},indentedSoftWrap:{set:function(){this.$useWrapMode&&(this.$useWrapMode=!1,this.setUseWrapMode(!0))},initialValue:!0},firstLineNumber:{set:function(){this._signal("changeBreakpoint")},initialValue:1},useWorker:{set:function(e){this.$useWorker=e,this.$stopWorker(),e&&this.$startWorker()},initialValue:!0},useSoftTabs:{initialValue:!0},tabSize:{set:function(e){(e=parseInt(e))>0&&this.$tabSize!==e&&(this.$modified=!0,this.$rowLengthCache=[],this.$tabSize=e,this._signal("changeTabSize"))},initialValue:4,handlesSet:!0},navigateWithinSoftTabs:{initialValue:!1},foldStyle:{set:function(e){this.setFoldStyle(e)},handlesSet:!0},overwrite:{set:function(e){this._signal("changeOverwrite")},initialValue:!1},newLineMode:{set:function(e){this.doc.setNewLineMode(e)},get:function(){return this.doc.getNewLineMode()},handlesSet:!0},mode:{set:function(e){this.setMode(e)},get:function(){return this.$modeId},handlesSet:!0}}),t.EditSession=p})),ace.define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],(function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./lib/oop"),a=e("./range").Range,o=function(){function e(){this.$options={}}return e.prototype.set=function(e){return i.mixin(this.$options,e),this},e.prototype.getOptions=function(){return r.copyObject(this.$options)},e.prototype.setOptions=function(e){this.$options=e},e.prototype.find=function(e){var t=this.$options,n=this.$matchIterator(e,t);if(!n)return!1;var r=null;return n.forEach((function(e,n,i,o){return r=new a(e,n,i,o),!(n==o&&t.start&&t.start.start&&0!=t.skipCurrent&&r.isEqual(t.start))||(r=null,!1)})),r},e.prototype.findAll=function(e){var t=this.$options;if(!t.needle)return[];this.$assembleRegExp(t);var n=t.range,i=n?e.getLines(n.start.row,n.end.row):e.doc.getAllLines(),o=[],s=t.re;if(t.$isMultiLine){var l,c=s.length,u=i.length-c;e:for(var f=s.offset||0;f<=u;f++){for(var d=0;dv||(o.push(l=new a(f,v,f+c-1,m)),c>2&&(f=f+c-2))}}else for(var g=0;gw&&o[d].end.row==_;)d--;for(o=o.slice(g,d+1),g=0,d=o.length;g=s;n--)if(f(n,Number.MAX_VALUE,e))return;if(0!=t.wrap)for(n=l,s=o.row;n>=s;n--)if(f(n,Number.MAX_VALUE,e))return}};else c=function(e){var n=o.row;if(!f(n,o.column,e)){for(n+=1;n<=l;n++)if(f(n,0,e))return;if(0!=t.wrap)for(n=s,l=o.row;n<=l;n++)if(f(n,0,e))return}};if(t.$isMultiLine)var u=n.length,f=function(t,i,a){var o=r?t-u+1:t;if(!(o<0||o+u>e.getLength())){var s=e.getLine(o),l=s.search(n[0]);if(!(!r&&li))return!!a(o,l,o+u-1,f)||void 0}}};else if(r)f=function(t,r,i){var a,o=e.getLine(t),s=[],l=0;for(n.lastIndex=0;a=n.exec(o);){var c=a[0].length;if(l=a.index,!c){if(l>=o.length)break;n.lastIndex=l+=1}if(a.index+c>r)break;s.push(a.index,c)}for(var u=s.length-1;u>=0;u-=2){var f=s[u-1];if(i(t,f,t,f+(c=s[u])))return!0}};else f=function(t,r,i){var a,o,s=e.getLine(t);for(n.lastIndex=r;o=n.exec(s);){var l=o[0].length;if(i(t,a=o.index,t,a+l))return!0;if(!l&&(n.lastIndex=a+=1,a>=s.length))return!1}};return{forEach:c}},e}();t.Search=o})),ace.define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"],(function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!==typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("../lib/keys"),a=e("../lib/useragent"),o=i.KEY_MODS,s=function(){function e(e,t){this.$init(e,t,!1)}return e.prototype.$init=function(e,t,n){this.platform=t||(a.isMac?"mac":"win"),this.commands={},this.commandKeyBinding={},this.addCommands(e),this.$singleCommand=n},e.prototype.addCommand=function(e){this.commands[e.name]&&this.removeCommand(e),this.commands[e.name]=e,e.bindKey&&this._buildKeyHash(e)},e.prototype.removeCommand=function(e,t){var n=e&&("string"===typeof e?e:e.name);e=this.commands[n],t||delete this.commands[n];var r=this.commandKeyBinding;for(var i in r){var a=r[i];if(a==e)delete r[i];else if(Array.isArray(a)){var o=a.indexOf(e);-1!=o&&(a.splice(o,1),1==a.length&&(r[i]=a[0]))}}},e.prototype.bindKey=function(e,t,n){if("object"==typeof e&&e&&(void 0==n&&(n=e.position),e=e[this.platform]),e)return"function"==typeof t?this.addCommand({exec:t,bindKey:e,name:t.name||e}):void e.split("|").forEach((function(e){var r="";if(-1!=e.indexOf(" ")){var i=e.split(/\s+/);e=i.pop(),i.forEach((function(e){var t=this.parseKeys(e),n=o[t.hashId]+t.key;r+=(r?" ":"")+n,this._addCommandToBinding(r,"chainKeys")}),this),r+=" "}var a=this.parseKeys(e),s=o[a.hashId]+a.key;this._addCommandToBinding(r+s,t,n)}),this)},e.prototype._addCommandToBinding=function(e,t,n){var r,i=this.commandKeyBinding;if(t)if(!i[e]||this.$singleCommand)i[e]=t;else{Array.isArray(i[e])?-1!=(r=i[e].indexOf(t))&&i[e].splice(r,1):i[e]=[i[e]],"number"!=typeof n&&(n=l(t));var a=i[e];for(r=0;rn)break}a.splice(r,0,t)}else delete i[e]},e.prototype.addCommands=function(e){e&&Object.keys(e).forEach((function(t){var n=e[t];if(n){if("string"===typeof n)return this.bindKey(n,t);"function"===typeof n&&(n={exec:n}),"object"===typeof n&&(n.name||(n.name=t),this.addCommand(n))}}),this)},e.prototype.removeCommands=function(e){Object.keys(e).forEach((function(t){this.removeCommand(e[t])}),this)},e.prototype.bindKeys=function(e){Object.keys(e).forEach((function(t){this.bindKey(t,e[t])}),this)},e.prototype._buildKeyHash=function(e){this.bindKey(e.bindKey,e)},e.prototype.parseKeys=function(e){var t=e.toLowerCase().split(/[\-\+]([\-\+])?/).filter((function(e){return e})),n=t.pop(),r=i[n];if(i.FUNCTION_KEYS[r])n=i.FUNCTION_KEYS[r].toLowerCase();else{if(!t.length)return{key:n,hashId:-1};if(1==t.length&&"shift"==t[0])return{key:n.toUpperCase(),hashId:-1}}for(var a=0,o=t.length;o--;){var s=i.KEY_MODS[t[o]];if(null==s)return"undefined"!=typeof console&&console.error("invalid modifier "+t[o]+" in "+e),!1;a|=s}return{key:n,hashId:a}},e.prototype.findKeyCommand=function(e,t){var n=o[e]+t;return this.commandKeyBinding[n]},e.prototype.handleKeyboard=function(e,t,n,r){if(!(r<0)){var i=o[t]+n,a=this.commandKeyBinding[i];return e.$keyChain&&(e.$keyChain+=" "+i,a=this.commandKeyBinding[e.$keyChain]||a),!a||"chainKeys"!=a&&"chainKeys"!=a[a.length-1]?(e.$keyChain&&(t&&4!=t||1!=n.length?(-1==t||r>0)&&(e.$keyChain=""):e.$keyChain=e.$keyChain.slice(0,-i.length-1)),{command:a}):(e.$keyChain=e.$keyChain||i,{command:"null"})}},e.prototype.getStatusText=function(e,t){return t.$keyChain||""},e}();function l(e){return"object"==typeof e&&e.bindKey&&e.bindKey.position||(e.isDefault?-100:0)}var c=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.$singleCommand=!0,r}return r(t,e),t}(s);c.call=function(e,t,n){s.prototype.$init.call(e,t,n,!0)},s.call=function(e,t,n){s.prototype.$init.call(e,t,n,!1)},t.HashHandler=c,t.MultiHashHandler=s})),ace.define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"],(function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!==typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("../lib/oop"),a=e("../keyboard/hash_handler").MultiHashHandler,o=e("../lib/event_emitter").EventEmitter,s=function(e){function t(t,n){var r=e.call(this,n,t)||this;return r.byName=r.commands,r.setDefaultHandler("exec",(function(e){return e.args?e.command.exec(e.editor,e.args,e.event,!1):e.command.exec(e.editor,{},e.event,!0)})),r}return r(t,e),t.prototype.exec=function(e,t,n){if(Array.isArray(e)){for(var r=e.length;r--;)if(this.exec(e[r],t,n))return!0;return!1}if("string"===typeof e&&(e=this.commands[e]),!e)return!1;if(t&&t.$readOnly&&!e.readOnly)return!1;if(0!=this.$checkCommandState&&e.isAvailable&&!e.isAvailable(t))return!1;var i={editor:t,command:e,args:n};return i.returnValue=this._emit("exec",i),this._signal("afterExec",i),!1!==i.returnValue},t.prototype.toggleRecording=function(e){if(!this.$inReplay)return e&&e._emit("changeStatus"),this.recording?(this.macro.pop(),this.off("exec",this.$addCommandToMacro),this.macro.length||(this.macro=this.oldMacro),this.recording=!1):(this.$addCommandToMacro||(this.$addCommandToMacro=function(e){this.macro.push([e.command,e.args])}.bind(this)),this.oldMacro=this.macro,this.macro=[],this.on("exec",this.$addCommandToMacro),this.recording=!0)},t.prototype.replay=function(e){if(!this.$inReplay&&this.macro){if(this.recording)return this.toggleRecording(e);try{this.$inReplay=!0,this.macro.forEach((function(t){"string"==typeof t?this.exec(t,e):this.exec(t[0],e,t[1])}),this)}finally{this.$inReplay=!1}}},t.prototype.trimMacro=function(e){return e.map((function(e){return"string"!=typeof e[0]&&(e[0]=e[0].name),e[1]||(e=e[0]),e}))},t}(a);i.implement(s.prototype,o),t.CommandManager=s})),ace.define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"],(function(e,t,n){"use strict";var r=e("../lib/lang"),i=e("../config"),a=e("../range").Range;function o(e,t){return{win:e,mac:t}}t.commands=[{name:"showSettingsMenu",description:"Show settings menu",bindKey:o("Ctrl-,","Command-,"),exec:function(e){i.loadModule("ace/ext/settings_menu",(function(t){t.init(e),e.showSettingsMenu()}))},readOnly:!0},{name:"goToNextError",description:"Go to next error",bindKey:o("Alt-E","F4"),exec:function(e){i.loadModule("ace/ext/error_marker",(function(t){t.showErrorMarker(e,1)}))},scrollIntoView:"animate",readOnly:!0},{name:"goToPreviousError",description:"Go to previous error",bindKey:o("Alt-Shift-E","Shift-F4"),exec:function(e){i.loadModule("ace/ext/error_marker",(function(t){t.showErrorMarker(e,-1)}))},scrollIntoView:"animate",readOnly:!0},{name:"selectall",description:"Select all",bindKey:o("Ctrl-A","Command-A"),exec:function(e){e.selectAll()},readOnly:!0},{name:"centerselection",description:"Center selection",bindKey:o(null,"Ctrl-L"),exec:function(e){e.centerSelection()},readOnly:!0},{name:"gotoline",description:"Go to line...",bindKey:o("Ctrl-L","Command-L"),exec:function(e,t){"number"!==typeof t||isNaN(t)||e.gotoLine(t),e.prompt({$type:"gotoLine"})},readOnly:!0},{name:"fold",bindKey:o("Alt-L|Ctrl-F1","Command-Alt-L|Command-F1"),exec:function(e){e.session.toggleFold(!1)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"unfold",bindKey:o("Alt-Shift-L|Ctrl-Shift-F1","Command-Alt-Shift-L|Command-Shift-F1"),exec:function(e){e.session.toggleFold(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleFoldWidget",description:"Toggle fold widget",bindKey:o("F2","F2"),exec:function(e){e.session.toggleFoldWidget()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleParentFoldWidget",description:"Toggle parent fold widget",bindKey:o("Alt-F2","Alt-F2"),exec:function(e){e.session.toggleFoldWidget(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"foldall",description:"Fold all",bindKey:o(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAll()},scrollIntoView:"center",readOnly:!0},{name:"foldAllComments",description:"Fold all comments",bindKey:o(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAllComments()},scrollIntoView:"center",readOnly:!0},{name:"foldOther",description:"Fold other",bindKey:o("Alt-0","Command-Option-0"),exec:function(e){e.session.foldAll(),e.session.unfold(e.selection.getAllRanges())},scrollIntoView:"center",readOnly:!0},{name:"unfoldall",description:"Unfold all",bindKey:o("Alt-Shift-0","Command-Option-Shift-0"),exec:function(e){e.session.unfold()},scrollIntoView:"center",readOnly:!0},{name:"findnext",description:"Find next",bindKey:o("Ctrl-K","Command-G"),exec:function(e){e.findNext()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"findprevious",description:"Find previous",bindKey:o("Ctrl-Shift-K","Command-Shift-G"),exec:function(e){e.findPrevious()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"selectOrFindNext",description:"Select or find next",bindKey:o("Alt-K","Ctrl-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findNext()},readOnly:!0},{name:"selectOrFindPrevious",description:"Select or find previous",bindKey:o("Alt-Shift-K","Ctrl-Shift-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findPrevious()},readOnly:!0},{name:"find",description:"Find",bindKey:o("Ctrl-F","Command-F"),exec:function(e){i.loadModule("ace/ext/searchbox",(function(t){t.Search(e)}))},readOnly:!0},{name:"overwrite",description:"Overwrite",bindKey:"Insert",exec:function(e){e.toggleOverwrite()},readOnly:!0},{name:"selecttostart",description:"Select to start",bindKey:o("Ctrl-Shift-Home","Command-Shift-Home|Command-Shift-Up"),exec:function(e){e.getSelection().selectFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotostart",description:"Go to start",bindKey:o("Ctrl-Home","Command-Home|Command-Up"),exec:function(e){e.navigateFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectup",description:"Select up",bindKey:o("Shift-Up","Shift-Up|Ctrl-Shift-P"),exec:function(e){e.getSelection().selectUp()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golineup",description:"Go line up",bindKey:o("Up","Up|Ctrl-P"),exec:function(e,t){e.navigateUp(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttoend",description:"Select to end",bindKey:o("Ctrl-Shift-End","Command-Shift-End|Command-Shift-Down"),exec:function(e){e.getSelection().selectFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotoend",description:"Go to end",bindKey:o("Ctrl-End","Command-End|Command-Down"),exec:function(e){e.navigateFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectdown",description:"Select down",bindKey:o("Shift-Down","Shift-Down|Ctrl-Shift-N"),exec:function(e){e.getSelection().selectDown()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golinedown",description:"Go line down",bindKey:o("Down","Down|Ctrl-N"),exec:function(e,t){e.navigateDown(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordleft",description:"Select word left",bindKey:o("Ctrl-Shift-Left","Option-Shift-Left"),exec:function(e){e.getSelection().selectWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordleft",description:"Go to word left",bindKey:o("Ctrl-Left","Option-Left"),exec:function(e){e.navigateWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolinestart",description:"Select to line start",bindKey:o("Alt-Shift-Left","Command-Shift-Left|Ctrl-Shift-A"),exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolinestart",description:"Go to line start",bindKey:o("Alt-Left|Home","Command-Left|Home|Ctrl-A"),exec:function(e){e.navigateLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectleft",description:"Select left",bindKey:o("Shift-Left","Shift-Left|Ctrl-Shift-B"),exec:function(e){e.getSelection().selectLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoleft",description:"Go to left",bindKey:o("Left","Left|Ctrl-B"),exec:function(e,t){e.navigateLeft(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordright",description:"Select word right",bindKey:o("Ctrl-Shift-Right","Option-Shift-Right"),exec:function(e){e.getSelection().selectWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordright",description:"Go to word right",bindKey:o("Ctrl-Right","Option-Right"),exec:function(e){e.navigateWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolineend",description:"Select to line end",bindKey:o("Alt-Shift-Right","Command-Shift-Right|Shift-End|Ctrl-Shift-E"),exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolineend",description:"Go to line end",bindKey:o("Alt-Right|End","Command-Right|End|Ctrl-E"),exec:function(e){e.navigateLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectright",description:"Select right",bindKey:o("Shift-Right","Shift-Right"),exec:function(e){e.getSelection().selectRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoright",description:"Go to right",bindKey:o("Right","Right|Ctrl-F"),exec:function(e,t){e.navigateRight(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectpagedown",description:"Select page down",bindKey:"Shift-PageDown",exec:function(e){e.selectPageDown()},readOnly:!0},{name:"pagedown",description:"Page down",bindKey:o(null,"Option-PageDown"),exec:function(e){e.scrollPageDown()},readOnly:!0},{name:"gotopagedown",description:"Go to page down",bindKey:o("PageDown","PageDown|Ctrl-V"),exec:function(e){e.gotoPageDown()},readOnly:!0},{name:"selectpageup",description:"Select page up",bindKey:"Shift-PageUp",exec:function(e){e.selectPageUp()},readOnly:!0},{name:"pageup",description:"Page up",bindKey:o(null,"Option-PageUp"),exec:function(e){e.scrollPageUp()},readOnly:!0},{name:"gotopageup",description:"Go to page up",bindKey:"PageUp",exec:function(e){e.gotoPageUp()},readOnly:!0},{name:"scrollup",description:"Scroll up",bindKey:o("Ctrl-Up",null),exec:function(e){e.renderer.scrollBy(0,-2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"scrolldown",description:"Scroll down",bindKey:o("Ctrl-Down",null),exec:function(e){e.renderer.scrollBy(0,2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"selectlinestart",description:"Select line start",bindKey:"Shift-Home",exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectlineend",description:"Select line end",bindKey:"Shift-End",exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"togglerecording",description:"Toggle recording",bindKey:o("Ctrl-Alt-E","Command-Option-E"),exec:function(e){e.commands.toggleRecording(e)},readOnly:!0},{name:"replaymacro",description:"Replay macro",bindKey:o("Ctrl-Shift-E","Command-Shift-E"),exec:function(e){e.commands.replay(e)},readOnly:!0},{name:"jumptomatching",description:"Jump to matching",bindKey:o("Ctrl-\\|Ctrl-P","Command-\\"),exec:function(e){e.jumpToMatching()},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"selecttomatching",description:"Select to matching",bindKey:o("Ctrl-Shift-\\|Ctrl-Shift-P","Command-Shift-\\"),exec:function(e){e.jumpToMatching(!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"expandToMatching",description:"Expand to matching",bindKey:o("Ctrl-Shift-M","Ctrl-Shift-M"),exec:function(e){e.jumpToMatching(!0,!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"passKeysToBrowser",description:"Pass keys to browser",bindKey:o(null,null),exec:function(){},passEvent:!0,readOnly:!0},{name:"copy",description:"Copy",exec:function(e){},readOnly:!0},{name:"cut",description:"Cut",exec:function(e){var t=e.$copyWithEmptySelection&&e.selection.isEmpty()?e.selection.getLineRange():e.selection.getRange();e._emit("cut",t),t.isEmpty()||e.session.remove(t),e.clearSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"paste",description:"Paste",exec:function(e,t){e.$handlePaste(t)},scrollIntoView:"cursor"},{name:"removeline",description:"Remove line",bindKey:o("Ctrl-D","Command-D"),exec:function(e){e.removeLines()},scrollIntoView:"cursor",multiSelectAction:"forEachLine"},{name:"duplicateSelection",description:"Duplicate selection",bindKey:o("Ctrl-Shift-D","Command-Shift-D"),exec:function(e){e.duplicateSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"sortlines",description:"Sort lines",bindKey:o("Ctrl-Alt-S","Command-Alt-S"),exec:function(e){e.sortLines()},scrollIntoView:"selection",multiSelectAction:"forEachLine"},{name:"togglecomment",description:"Toggle comment",bindKey:o("Ctrl-/","Command-/"),exec:function(e){e.toggleCommentLines()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"toggleBlockComment",description:"Toggle block comment",bindKey:o("Ctrl-Shift-/","Command-Shift-/"),exec:function(e){e.toggleBlockComment()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"modifyNumberUp",description:"Modify number up",bindKey:o("Ctrl-Shift-Up","Alt-Shift-Up"),exec:function(e){e.modifyNumber(1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"modifyNumberDown",description:"Modify number down",bindKey:o("Ctrl-Shift-Down","Alt-Shift-Down"),exec:function(e){e.modifyNumber(-1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"replace",description:"Replace",bindKey:o("Ctrl-H","Command-Option-F"),exec:function(e){i.loadModule("ace/ext/searchbox",(function(t){t.Search(e,!0)}))}},{name:"undo",description:"Undo",bindKey:o("Ctrl-Z","Command-Z"),exec:function(e){e.undo()}},{name:"redo",description:"Redo",bindKey:o("Ctrl-Shift-Z|Ctrl-Y","Command-Shift-Z|Command-Y"),exec:function(e){e.redo()}},{name:"copylinesup",description:"Copy lines up",bindKey:o("Alt-Shift-Up","Command-Option-Up"),exec:function(e){e.copyLinesUp()},scrollIntoView:"cursor"},{name:"movelinesup",description:"Move lines up",bindKey:o("Alt-Up","Option-Up"),exec:function(e){e.moveLinesUp()},scrollIntoView:"cursor"},{name:"copylinesdown",description:"Copy lines down",bindKey:o("Alt-Shift-Down","Command-Option-Down"),exec:function(e){e.copyLinesDown()},scrollIntoView:"cursor"},{name:"movelinesdown",description:"Move lines down",bindKey:o("Alt-Down","Option-Down"),exec:function(e){e.moveLinesDown()},scrollIntoView:"cursor"},{name:"del",description:"Delete",bindKey:o("Delete","Delete|Ctrl-D|Shift-Delete"),exec:function(e){e.remove("right")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"backspace",description:"Backspace",bindKey:o("Shift-Backspace|Backspace","Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"),exec:function(e){e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"cut_or_delete",description:"Cut or delete",bindKey:o("Shift-Delete",null),exec:function(e){if(!e.selection.isEmpty())return!1;e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestart",description:"Remove to line start",bindKey:o("Alt-Backspace","Command-Backspace"),exec:function(e){e.removeToLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineend",description:"Remove to line end",bindKey:o("Alt-Delete","Ctrl-K|Command-Delete"),exec:function(e){e.removeToLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestarthard",description:"Remove to line start hard",bindKey:o("Ctrl-Shift-Backspace",null),exec:function(e){var t=e.selection.getRange();t.start.column=0,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineendhard",description:"Remove to line end hard",bindKey:o("Ctrl-Shift-Delete",null),exec:function(e){var t=e.selection.getRange();t.end.column=Number.MAX_VALUE,e.session.remove(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordleft",description:"Remove word left",bindKey:o("Ctrl-Backspace","Alt-Backspace|Ctrl-Alt-Backspace"),exec:function(e){e.removeWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordright",description:"Remove word right",bindKey:o("Ctrl-Delete","Alt-Delete"),exec:function(e){e.removeWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"outdent",description:"Outdent",bindKey:o("Shift-Tab","Shift-Tab"),exec:function(e){e.blockOutdent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"indent",description:"Indent",bindKey:o("Tab","Tab"),exec:function(e){e.indent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"blockoutdent",description:"Block outdent",bindKey:o("Ctrl-[","Ctrl-["),exec:function(e){e.blockOutdent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"blockindent",description:"Block indent",bindKey:o("Ctrl-]","Ctrl-]"),exec:function(e){e.blockIndent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"insertstring",description:"Insert string",exec:function(e,t){e.insert(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"inserttext",description:"Insert text",exec:function(e,t){e.insert(r.stringRepeat(t.text||"",t.times||1))},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"splitline",description:"Split line",bindKey:o(null,"Ctrl-O"),exec:function(e){e.splitLine()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"transposeletters",description:"Transpose letters",bindKey:o("Alt-Shift-X","Ctrl-T"),exec:function(e){e.transposeLetters()},multiSelectAction:function(e){e.transposeSelections(1)},scrollIntoView:"cursor"},{name:"touppercase",description:"To uppercase",bindKey:o("Ctrl-U","Ctrl-U"),exec:function(e){e.toUpperCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"tolowercase",description:"To lowercase",bindKey:o("Ctrl-Shift-U","Ctrl-Shift-U"),exec:function(e){e.toLowerCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"autoindent",description:"Auto Indent",bindKey:o(null,null),exec:function(e){e.autoIndent()},multiSelectAction:"forEachLine",scrollIntoView:"animate"},{name:"expandtoline",description:"Expand to line",bindKey:o("Ctrl-Shift-L","Command-Shift-L"),exec:function(e){var t=e.selection.getRange();t.start.column=t.end.column=0,t.end.row++,e.selection.setRange(t,!1)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"openlink",bindKey:o("Ctrl+F3","F3"),exec:function(e){e.openLink()}},{name:"joinlines",description:"Join lines",bindKey:o(null,null),exec:function(e){for(var t=e.selection.isBackwards(),n=t?e.selection.getSelectionLead():e.selection.getSelectionAnchor(),i=t?e.selection.getSelectionAnchor():e.selection.getSelectionLead(),o=e.session.doc.getLine(n.row).length,s=e.session.doc.getTextRange(e.selection.getRange()).replace(/\n\s*/," ").length,l=e.session.doc.getLine(n.row),c=n.row+1;c<=i.row+1;c++){var u=r.stringTrimLeft(r.stringTrimRight(e.session.doc.getLine(c)));0!==u.length&&(u=" "+u),l+=u}i.row+10?(e.selection.moveCursorTo(n.row,n.column),e.selection.selectTo(n.row,n.column+s)):(o=e.session.doc.getLine(n.row).length>o?o+1:o,e.selection.moveCursorTo(n.row,o))},multiSelectAction:"forEach",readOnly:!0},{name:"invertSelection",description:"Invert selection",bindKey:o(null,null),exec:function(e){var t=e.session.doc.getLength()-1,n=e.session.doc.getLine(t).length,r=e.selection.rangeList.ranges,i=[];r.length<1&&(r=[e.selection.getRange()]);for(var o=0;ot[n].column&&n++,a.unshift(n,0),t.splice.apply(t,a),this.$updateRows()}}},e.prototype.$updateRows=function(){var e=this.session.lineWidgets;if(e){var t=!0;e.forEach((function(e,n){if(e)for(t=!1,e.row=n;e.$oldWidget;)e.$oldWidget.row=n,e=e.$oldWidget})),t&&(this.session.lineWidgets=null)}},e.prototype.$registerLineWidget=function(e){this.session.lineWidgets||(this.session.lineWidgets=new Array(this.session.getLength()));var t=this.session.lineWidgets[e.row];return t&&(e.$oldWidget=t,t.el&&t.el.parentNode&&(t.el.parentNode.removeChild(t.el),t._inDocument=!1)),this.session.lineWidgets[e.row]=e,e},e.prototype.addLineWidget=function(e){if(this.$registerLineWidget(e),e.session=this.session,!this.editor)return e;var t=this.editor.renderer;e.html&&!e.el&&(e.el=r.createElement("div"),e.el.innerHTML=e.html),e.text&&!e.el&&(e.el=r.createElement("div"),e.el.textContent=e.text),e.el&&(r.addCssClass(e.el,"ace_lineWidgetContainer"),e.className&&r.addCssClass(e.el,e.className),e.el.style.position="absolute",e.el.style.zIndex=5,t.container.appendChild(e.el),e._inDocument=!0,e.coverGutter||(e.el.style.zIndex=3),null==e.pixelHeight&&(e.pixelHeight=e.el.offsetHeight)),null==e.rowCount&&(e.rowCount=e.pixelHeight/t.layerConfig.lineHeight);var n=this.session.getFoldAt(e.row,0);if(e.$fold=n,n){var i=this.session.lineWidgets;e.row!=n.end.row||i[n.start.row]?e.hidden=!0:i[n.start.row]=e}return this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows(),this.renderWidgets(null,t),this.onWidgetChanged(e),e},e.prototype.removeLineWidget=function(e){if(e._inDocument=!1,e.session=null,e.el&&e.el.parentNode&&e.el.parentNode.removeChild(e.el),e.editor&&e.editor.destroy)try{e.editor.destroy()}catch(n){}if(this.session.lineWidgets){var t=this.session.lineWidgets[e.row];if(t==e)this.session.lineWidgets[e.row]=e.$oldWidget,e.$oldWidget&&this.onWidgetChanged(e.$oldWidget);else for(;t;){if(t.$oldWidget==e){t.$oldWidget=e.$oldWidget;break}t=t.$oldWidget}}this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows()},e.prototype.getWidgetsAtRow=function(e){for(var t=this.session.lineWidgets,n=t&&t[e],r=[];n;)r.push(n),n=n.$oldWidget;return r},e.prototype.onWidgetChanged=function(e){this.session._changedWidgets.push(e),this.editor&&this.editor.renderer.updateFull()},e.prototype.measureWidgets=function(e,t){var n=this.session._changedWidgets,r=t.layerConfig;if(n&&n.length){for(var i=1/0,a=0;a0&&!r[i];)i--;this.firstRow=n.firstRow,this.lastRow=n.lastRow,t.$cursorLayer.config=n;for(var o=i;o<=a;o++){var s=r[o];if(s&&s.el)if(s.hidden)s.el.style.top=-100-(s.pixelHeight||0)+"px";else{s._inDocument||(s._inDocument=!0,t.container.appendChild(s.el));var l=t.$cursorLayer.getPixelPosition({row:o,column:0},!0).top;s.coverLine||(l+=n.lineHeight*this.session.getRowLineCount(s.row)),s.el.style.top=l-n.offset+"px";var c=s.coverGutter?0:t.gutterWidth;s.fixedWidth||(c-=t.scrollLeft),s.el.style.left=c+"px",s.fullWidth&&s.screenWidth&&(s.el.style.minWidth=n.width+2*n.padding+"px"),s.fixedWidth?s.el.style.right=t.scrollBar.getWidth()+"px":s.el.style.right=""}}}},e}();t.LineWidgets=i})),ace.define("ace/keyboard/gutter_handler",["require","exports","module","ace/lib/keys","ace/mouse/default_gutter_handler"],(function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../mouse/default_gutter_handler").GutterTooltip,a=function(){function e(e){this.editor=e,this.gutterLayer=e.renderer.$gutterLayer,this.element=e.renderer.$gutter,this.lines=e.renderer.$gutterLayer.$lines,this.activeRowIndex=null,this.activeLane=null,this.annotationTooltip=new i(this.editor)}return e.prototype.addListener=function(){this.element.addEventListener("keydown",this.$onGutterKeyDown.bind(this)),this.element.addEventListener("focusout",this.$blurGutter.bind(this)),this.editor.on("mousewheel",this.$blurGutter.bind(this))},e.prototype.removeListener=function(){this.element.removeEventListener("keydown",this.$onGutterKeyDown.bind(this)),this.element.removeEventListener("focusout",this.$blurGutter.bind(this)),this.editor.off("mousewheel",this.$blurGutter.bind(this))},e.prototype.$onGutterKeyDown=function(e){if(this.annotationTooltip.isOpen)return e.preventDefault(),void(e.keyCode===r.escape&&this.annotationTooltip.hideTooltip());if(e.target===this.element){if(e.keyCode!=r.enter)return;e.preventDefault();var t=this.editor.getCursorPosition().row;return this.editor.isRowVisible(t)||this.editor.scrollToLine(t,!0,!0),void setTimeout(function(){var e=this.$rowToRowIndex(this.gutterLayer.$cursorCell.row),t=this.$findNearestFoldWidget(e),n=this.$findNearestAnnotation(e);if(null!==t||null!==n)return null===t&&null!==n?(this.activeRowIndex=n,this.activeLane="annotation",void this.$focusAnnotation(this.activeRowIndex)):null!==t&&null===n?(this.activeRowIndex=t,this.activeLane="fold",void this.$focusFoldWidget(this.activeRowIndex)):Math.abs(n-e)0||e+t=0&&this.$isFoldWidgetVisible(e-t))return e-t;if(e+t<=this.lines.getLength()-1&&this.$isFoldWidgetVisible(e+t))return e+t}return null},e.prototype.$findNearestAnnotation=function(e){if(this.$isAnnotationVisible(e))return e;for(var t=0;e-t>0||e+t=0&&this.$isAnnotationVisible(e-t))return e-t;if(e+t<=this.lines.getLength()-1&&this.$isAnnotationVisible(e+t))return e+t}return null},e.prototype.$focusFoldWidget=function(e){if(null!=e){var t=this.$getFoldWidget(e);t.classList.add(this.editor.renderer.keyboardFocusClassName),t.focus()}},e.prototype.$focusAnnotation=function(e){if(null!=e){var t=this.$getAnnotation(e);t.classList.add(this.editor.renderer.keyboardFocusClassName),t.focus()}},e.prototype.$blurFoldWidget=function(e){var t=this.$getFoldWidget(e);t.classList.remove(this.editor.renderer.keyboardFocusClassName),t.blur()},e.prototype.$blurAnnotation=function(e){var t=this.$getAnnotation(e);t.classList.remove(this.editor.renderer.keyboardFocusClassName),t.blur()},e.prototype.$moveFoldWidgetUp=function(){for(var e=this.activeRowIndex;e>0;)if(e--,this.$isFoldWidgetVisible(e))return this.$blurFoldWidget(this.activeRowIndex),this.activeRowIndex=e,void this.$focusFoldWidget(this.activeRowIndex)},e.prototype.$moveFoldWidgetDown=function(){for(var e=this.activeRowIndex;e0;)if(e--,this.$isAnnotationVisible(e))return this.$blurAnnotation(this.activeRowIndex),this.activeRowIndex=e,void this.$focusAnnotation(this.activeRowIndex)},e.prototype.$moveAnnotationDown=function(){for(var e=this.activeRowIndex;e=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},i=e("./lib/oop"),a=e("./lib/dom"),o=e("./lib/lang"),s=e("./lib/useragent"),l=e("./keyboard/textinput").TextInput,c=e("./mouse/mouse_handler").MouseHandler,u=e("./mouse/fold_handler").FoldHandler,f=e("./keyboard/keybinding").KeyBinding,d=e("./edit_session").EditSession,h=e("./search").Search,p=e("./range").Range,v=e("./lib/event_emitter").EventEmitter,m=e("./commands/command_manager").CommandManager,g=e("./commands/default_commands").commands,y=e("./config"),b=e("./token_iterator").TokenIterator,x=e("./line_widgets").LineWidgets,w=e("./keyboard/gutter_handler").GutterKeyboardHandler,_=e("./config").nls,k=e("./clipboard"),S=e("./lib/keys"),T=function(){function e(t,n,r){this.$toDestroy=[];var i=t.getContainerElement();this.container=i,this.renderer=t,this.id="editor"+ ++e.$uid,this.commands=new m(s.isMac?"mac":"win",g),"object"==typeof document&&(this.textInput=new l(t.getTextAreaContainer(),this),this.renderer.textarea=this.textInput.getElement(),this.$mouseHandler=new c(this),new u(this)),this.keyBinding=new f(this),this.$search=(new h).set({wrap:!0}),this.$historyTracker=this.$historyTracker.bind(this),this.commands.on("exec",this.$historyTracker),this.$initOperationListeners(),this._$emitInputEvent=o.delayedCall(function(){this._signal("input",{}),this.session&&!this.session.destroyed&&this.session.bgTokenizer.scheduleStart()}.bind(this)),this.on("change",(function(e,t){t._$emitInputEvent.schedule(31)})),this.setSession(n||r&&r.session||new d("")),y.resetOptions(this),r&&this.setOptions(r),y._signal("editor",this)}return e.prototype.$initOperationListeners=function(){this.commands.on("exec",this.startOperation.bind(this),!0),this.commands.on("afterExec",this.endOperation.bind(this),!0),this.$opResetTimer=o.delayedCall(this.endOperation.bind(this,!0)),this.on("change",function(){this.curOp||(this.startOperation(),this.curOp.selectionBefore=this.$lastSel),this.curOp.docChanged=!0}.bind(this),!0),this.on("changeSelection",function(){this.curOp||(this.startOperation(),this.curOp.selectionBefore=this.$lastSel),this.curOp.selectionChanged=!0}.bind(this),!0)},e.prototype.startOperation=function(e){if(this.curOp){if(!e||this.curOp.command)return;this.prevOp=this.curOp}e||(this.previousCommand=null,e={}),this.$opResetTimer.schedule(),this.curOp=this.session.curOp={command:e.command||{},args:e.args,scrollTop:this.renderer.scrollTop},this.curOp.selectionBefore=this.selection.toJSON()},e.prototype.endOperation=function(e){if(this.curOp&&this.session){if(e&&!1===e.returnValue||!this.session)return this.curOp=null;if(1==e&&this.curOp.command&&"mouse"==this.curOp.command.name)return;if(this._signal("beforeEndOperation"),!this.curOp)return;var t=this.curOp.command,n=t&&t.scrollIntoView;if(n){switch(n){case"center-animate":n="animate";case"center":this.renderer.scrollCursorIntoView(null,.5);break;case"animate":case"cursor":this.renderer.scrollCursorIntoView();break;case"selectionPart":var r=this.selection.getRange(),i=this.renderer.layerConfig;(r.start.row>=i.lastRow||r.end.row<=i.firstRow)&&this.renderer.scrollSelectionIntoView(this.selection.anchor,this.selection.lead)}"animate"==n&&this.renderer.animateScrolling(this.curOp.scrollTop)}var a=this.selection.toJSON();this.curOp.selectionAfter=a,this.$lastSel=this.selection.toJSON(),this.session.getUndoManager().addSelection(a),this.prevOp=this.curOp,this.curOp=null}},e.prototype.$historyTracker=function(e){if(this.$mergeUndoDeltas){var t=this.prevOp,n=this.$mergeableCommands,r=t.command&&e.command.name==t.command.name;if("insertstring"==e.command.name){var i=e.args;void 0===this.mergeNextCommand&&(this.mergeNextCommand=!0),r=r&&this.mergeNextCommand&&(!/\s/.test(i)||/\s/.test(t.args)),this.mergeNextCommand=!0}else r=r&&-1!==n.indexOf(e.command.name);"always"!=this.$mergeUndoDeltas&&Date.now()-this.sequenceStartTime>2e3&&(r=!1),r?this.session.mergeUndoDeltas=!0:-1!==n.indexOf(e.command.name)&&(this.sequenceStartTime=Date.now())}},e.prototype.setKeyboardHandler=function(e,t){if(e&&"string"===typeof e&&"ace"!=e){this.$keybindingId=e;var n=this;y.loadModule(["keybinding",e],(function(r){n.$keybindingId==e&&n.keyBinding.setKeyboardHandler(r&&r.handler),t&&t()}))}else this.$keybindingId=null,this.keyBinding.setKeyboardHandler(e),t&&t()},e.prototype.getKeyboardHandler=function(){return this.keyBinding.getKeyboardHandler()},e.prototype.setSession=function(e){if(this.session!=e){this.curOp&&this.endOperation(),this.curOp={};var t=this.session;if(t){this.session.off("change",this.$onDocumentChange),this.session.off("changeMode",this.$onChangeMode),this.session.off("tokenizerUpdate",this.$onTokenizerUpdate),this.session.off("changeTabSize",this.$onChangeTabSize),this.session.off("changeWrapLimit",this.$onChangeWrapLimit),this.session.off("changeWrapMode",this.$onChangeWrapMode),this.session.off("changeFold",this.$onChangeFold),this.session.off("changeFrontMarker",this.$onChangeFrontMarker),this.session.off("changeBackMarker",this.$onChangeBackMarker),this.session.off("changeBreakpoint",this.$onChangeBreakpoint),this.session.off("changeAnnotation",this.$onChangeAnnotation),this.session.off("changeOverwrite",this.$onCursorChange),this.session.off("changeScrollTop",this.$onScrollTopChange),this.session.off("changeScrollLeft",this.$onScrollLeftChange);var n=this.session.getSelection();n.off("changeCursor",this.$onCursorChange),n.off("changeSelection",this.$onSelectionChange)}this.session=e,e?(this.$onDocumentChange=this.onDocumentChange.bind(this),e.on("change",this.$onDocumentChange),this.renderer.setSession(e),this.$onChangeMode=this.onChangeMode.bind(this),e.on("changeMode",this.$onChangeMode),this.$onTokenizerUpdate=this.onTokenizerUpdate.bind(this),e.on("tokenizerUpdate",this.$onTokenizerUpdate),this.$onChangeTabSize=this.renderer.onChangeTabSize.bind(this.renderer),e.on("changeTabSize",this.$onChangeTabSize),this.$onChangeWrapLimit=this.onChangeWrapLimit.bind(this),e.on("changeWrapLimit",this.$onChangeWrapLimit),this.$onChangeWrapMode=this.onChangeWrapMode.bind(this),e.on("changeWrapMode",this.$onChangeWrapMode),this.$onChangeFold=this.onChangeFold.bind(this),e.on("changeFold",this.$onChangeFold),this.$onChangeFrontMarker=this.onChangeFrontMarker.bind(this),this.session.on("changeFrontMarker",this.$onChangeFrontMarker),this.$onChangeBackMarker=this.onChangeBackMarker.bind(this),this.session.on("changeBackMarker",this.$onChangeBackMarker),this.$onChangeBreakpoint=this.onChangeBreakpoint.bind(this),this.session.on("changeBreakpoint",this.$onChangeBreakpoint),this.$onChangeAnnotation=this.onChangeAnnotation.bind(this),this.session.on("changeAnnotation",this.$onChangeAnnotation),this.$onCursorChange=this.onCursorChange.bind(this),this.session.on("changeOverwrite",this.$onCursorChange),this.$onScrollTopChange=this.onScrollTopChange.bind(this),this.session.on("changeScrollTop",this.$onScrollTopChange),this.$onScrollLeftChange=this.onScrollLeftChange.bind(this),this.session.on("changeScrollLeft",this.$onScrollLeftChange),this.selection=e.getSelection(),this.selection.on("changeCursor",this.$onCursorChange),this.$onSelectionChange=this.onSelectionChange.bind(this),this.selection.on("changeSelection",this.$onSelectionChange),this.onChangeMode(),this.onCursorChange(),this.onScrollTopChange(),this.onScrollLeftChange(),this.onSelectionChange(),this.onChangeFrontMarker(),this.onChangeBackMarker(),this.onChangeBreakpoint(),this.onChangeAnnotation(),this.session.getUseWrapMode()&&this.renderer.adjustWrapLimit(),this.renderer.updateFull()):(this.selection=null,this.renderer.setSession(e)),this._signal("changeSession",{session:e,oldSession:t}),this.curOp=null,t&&t._signal("changeEditor",{oldEditor:this}),e&&e._signal("changeEditor",{editor:this}),e&&!e.destroyed&&e.bgTokenizer.scheduleStart()}},e.prototype.getSession=function(){return this.session},e.prototype.setValue=function(e,t){return this.session.doc.setValue(e),t?1==t?this.navigateFileEnd():-1==t&&this.navigateFileStart():this.selectAll(),e},e.prototype.getValue=function(){return this.session.getValue()},e.prototype.getSelection=function(){return this.selection},e.prototype.resize=function(e){this.renderer.onResize(e)},e.prototype.setTheme=function(e,t){this.renderer.setTheme(e,t)},e.prototype.getTheme=function(){return this.renderer.getTheme()},e.prototype.setStyle=function(e){this.renderer.setStyle(e)},e.prototype.unsetStyle=function(e){this.renderer.unsetStyle(e)},e.prototype.getFontSize=function(){return this.getOption("fontSize")||a.computedStyle(this.container).fontSize},e.prototype.setFontSize=function(e){this.setOption("fontSize",e)},e.prototype.$highlightBrackets=function(){if(!this.$highlightPending){var e=this;this.$highlightPending=!0,setTimeout((function(){e.$highlightPending=!1;var t=e.session;if(t&&!t.destroyed){t.$bracketHighlight&&(t.$bracketHighlight.markerIds.forEach((function(e){t.removeMarker(e)})),t.$bracketHighlight=null);var n=e.getCursorPosition(),r=e.getKeyboardHandler(),i=r&&r.$getDirectionForHighlight&&r.$getDirectionForHighlight(e),a=t.getMatchingBracketRanges(n,i);if(!a){var o=new b(t,n.row,n.column).getCurrentToken();if(o&&/\b(?:tag-open|tag-name)/.test(o.type)){var s=t.getMatchingTags(n);s&&(a=[s.openTagName,s.closeTagName])}}if(!a&&t.$mode.getMatching&&(a=t.$mode.getMatching(e.session)),a){var l="ace_bracket";Array.isArray(a)?1==a.length&&(l="ace_error_bracket"):a=[a],2==a.length&&(0==p.comparePoints(a[0].end,a[1].start)?a=[p.fromPoints(a[0].start,a[1].end)]:0==p.comparePoints(a[0].start,a[1].end)&&(a=[p.fromPoints(a[1].start,a[0].end)])),t.$bracketHighlight={ranges:a,markerIds:a.map((function(e){return t.addMarker(e,l,"text")}))},e.getHighlightIndentGuides()&&e.renderer.$textLayer.$highlightIndentGuide()}else e.getHighlightIndentGuides()&&e.renderer.$textLayer.$highlightIndentGuide()}}),50)}},e.prototype.focus=function(){this.textInput.focus()},e.prototype.isFocused=function(){return this.textInput.isFocused()},e.prototype.blur=function(){this.textInput.blur()},e.prototype.onFocus=function(e){this.$isFocused||(this.$isFocused=!0,this.renderer.showCursor(),this.renderer.visualizeFocus(),this._emit("focus",e))},e.prototype.onBlur=function(e){this.$isFocused&&(this.$isFocused=!1,this.renderer.hideCursor(),this.renderer.visualizeBlur(),this._emit("blur",e))},e.prototype.$cursorChange=function(){this.renderer.updateCursor(),this.$highlightBrackets(),this.$updateHighlightActiveLine()},e.prototype.onDocumentChange=function(e){var t=this.session.$useWrapMode,n=e.start.row==e.end.row?e.end.row:1/0;this.renderer.updateLines(e.start.row,n,t),this._signal("change",e),this.$cursorChange()},e.prototype.onTokenizerUpdate=function(e){var t=e.data;this.renderer.updateLines(t.first,t.last)},e.prototype.onScrollTopChange=function(){this.renderer.scrollToY(this.session.getScrollTop())},e.prototype.onScrollLeftChange=function(){this.renderer.scrollToX(this.session.getScrollLeft())},e.prototype.onCursorChange=function(){this.$cursorChange(),this._signal("changeSelection")},e.prototype.$updateHighlightActiveLine=function(){var e,t=this.getSession();if(this.$highlightActiveLine&&("line"==this.$selectionStyle&&this.selection.isMultiLine()||(e=this.getCursorPosition()),this.renderer.theme&&this.renderer.theme.$selectionColorConflict&&!this.selection.isEmpty()&&(e=!1),!this.renderer.$maxLines||1!==this.session.getLength()||this.renderer.$minLines>1||(e=!1)),t.$highlightLineMarker&&!e)t.removeMarker(t.$highlightLineMarker.id),t.$highlightLineMarker=null;else if(!t.$highlightLineMarker&&e){var n=new p(e.row,e.column,e.row,1/0);n.id=t.addMarker(n,"ace_active-line","screenLine"),t.$highlightLineMarker=n}else e&&(t.$highlightLineMarker.start.row=e.row,t.$highlightLineMarker.end.row=e.row,t.$highlightLineMarker.start.column=e.column,t._signal("changeBackMarker"))},e.prototype.onSelectionChange=function(e){var t=this.session;if(t.$selectionMarker&&t.removeMarker(t.$selectionMarker),t.$selectionMarker=null,this.selection.isEmpty())this.$updateHighlightActiveLine();else{var n=this.selection.getRange(),r=this.getSelectionStyle();t.$selectionMarker=t.addMarker(n,"ace_selection",r)}var i=this.$highlightSelectedWord&&this.$getSelectionHighLightRegexp();this.session.highlight(i),this._signal("changeSelection")},e.prototype.$getSelectionHighLightRegexp=function(){var e=this.session,t=this.getSelectionRange();if(!t.isEmpty()&&!t.isMultiLine()){var n=t.start.column,r=t.end.column,i=e.getLine(t.start.row),a=i.substring(n,r);if(!(a.length>5e3)&&/[\w\d]/.test(a)){var o=this.$search.$assembleRegExp({wholeWord:!0,caseSensitive:!0,needle:a}),s=i.substring(n-1,r+1);if(o.test(s))return o}}},e.prototype.onChangeFrontMarker=function(){this.renderer.updateFrontMarkers()},e.prototype.onChangeBackMarker=function(){this.renderer.updateBackMarkers()},e.prototype.onChangeBreakpoint=function(){this.renderer.updateBreakpoints()},e.prototype.onChangeAnnotation=function(){this.renderer.setAnnotations(this.session.getAnnotations())},e.prototype.onChangeMode=function(e){this.renderer.updateText(),this._emit("changeMode",e)},e.prototype.onChangeWrapLimit=function(){this.renderer.updateFull()},e.prototype.onChangeWrapMode=function(){this.renderer.onResize(!0)},e.prototype.onChangeFold=function(){this.$updateHighlightActiveLine(),this.renderer.updateFull()},e.prototype.getSelectedText=function(){return this.session.getTextRange(this.getSelectionRange())},e.prototype.getCopyText=function(){var e=this.getSelectedText(),t=this.session.doc.getNewLineCharacter(),n=!1;if(!e&&this.$copyWithEmptySelection){n=!0;for(var r=this.selection.getAllRanges(),i=0;is.search(/\S|$/)){var l=s.substr(i.column).search(/\S|$/);n.doc.removeInLine(i.row,i.column,i.column+l)}}this.clearSelection();var c=i.column,u=n.getState(i.row),f=(s=n.getLine(i.row),r.checkOutdent(u,s,e));if(n.insert(i,e),a&&a.selection&&(2==a.selection.length?this.selection.setSelectionRange(new p(i.row,c+a.selection[0],i.row,c+a.selection[1])):this.selection.setSelectionRange(new p(i.row+a.selection[0],a.selection[1],i.row+a.selection[2],a.selection[3]))),this.$enableAutoIndent){if(n.getDocument().isNewLine(e)){var d=r.getNextLineIndent(u,s.slice(0,i.column),n.getTabString());n.insert({row:i.row+1,column:0},d)}f&&r.autoOutdent(u,n,i.row)}},e.prototype.autoIndent=function(){var e,t,n=this.session,r=n.getMode();if(this.selection.isEmpty())e=0,t=n.doc.getLength()-1;else{var i=this.getSelectionRange();e=i.start.row,t=i.end.row}for(var a,o,s,l="",c="",u="",f=n.getTabString(),d=e;d<=t;d++)d>0&&(l=n.getState(d-1),c=n.getLine(d-1),u=r.getNextLineIndent(l,c,f)),a=n.getLine(d),u!==(o=r.$getIndent(a))&&(o.length>0&&(s=new p(d,0,d,o.length),n.remove(s)),u.length>0&&n.insert({row:d,column:0},u)),r.autoOutdent(l,n,d)},e.prototype.onTextInput=function(e,t){if(!t)return this.keyBinding.onTextInput(e);this.startOperation({command:{name:"insertstring"}});var n=this.applyComposition.bind(this,e,t);this.selection.rangeCount?this.forEachSelection(n):n(),this.endOperation()},e.prototype.applyComposition=function(e,t){var n;(t.extendLeft||t.extendRight)&&((n=this.selection.getRange()).start.column-=t.extendLeft,n.end.column+=t.extendRight,n.start.column<0&&(n.start.row--,n.start.column+=this.session.getLine(n.start.row).length+1),this.selection.setRange(n),e||n.isEmpty()||this.remove());(!e&&this.selection.isEmpty()||this.insert(e,!0),t.restoreStart||t.restoreEnd)&&((n=this.selection.getRange()).start.column-=t.restoreStart,n.end.column-=t.restoreEnd,this.selection.setRange(n))},e.prototype.onCommandKey=function(e,t,n){return this.keyBinding.onCommandKey(e,t,n)},e.prototype.setOverwrite=function(e){this.session.setOverwrite(e)},e.prototype.getOverwrite=function(){return this.session.getOverwrite()},e.prototype.toggleOverwrite=function(){this.session.toggleOverwrite()},e.prototype.setScrollSpeed=function(e){this.setOption("scrollSpeed",e)},e.prototype.getScrollSpeed=function(){return this.getOption("scrollSpeed")},e.prototype.setDragDelay=function(e){this.setOption("dragDelay",e)},e.prototype.getDragDelay=function(){return this.getOption("dragDelay")},e.prototype.setSelectionStyle=function(e){this.setOption("selectionStyle",e)},e.prototype.getSelectionStyle=function(){return this.getOption("selectionStyle")},e.prototype.setHighlightActiveLine=function(e){this.setOption("highlightActiveLine",e)},e.prototype.getHighlightActiveLine=function(){return this.getOption("highlightActiveLine")},e.prototype.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},e.prototype.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},e.prototype.setHighlightSelectedWord=function(e){this.setOption("highlightSelectedWord",e)},e.prototype.getHighlightSelectedWord=function(){return this.$highlightSelectedWord},e.prototype.setAnimatedScroll=function(e){this.renderer.setAnimatedScroll(e)},e.prototype.getAnimatedScroll=function(){return this.renderer.getAnimatedScroll()},e.prototype.setShowInvisibles=function(e){this.renderer.setShowInvisibles(e)},e.prototype.getShowInvisibles=function(){return this.renderer.getShowInvisibles()},e.prototype.setDisplayIndentGuides=function(e){this.renderer.setDisplayIndentGuides(e)},e.prototype.getDisplayIndentGuides=function(){return this.renderer.getDisplayIndentGuides()},e.prototype.setHighlightIndentGuides=function(e){this.renderer.setHighlightIndentGuides(e)},e.prototype.getHighlightIndentGuides=function(){return this.renderer.getHighlightIndentGuides()},e.prototype.setShowPrintMargin=function(e){this.renderer.setShowPrintMargin(e)},e.prototype.getShowPrintMargin=function(){return this.renderer.getShowPrintMargin()},e.prototype.setPrintMarginColumn=function(e){this.renderer.setPrintMarginColumn(e)},e.prototype.getPrintMarginColumn=function(){return this.renderer.getPrintMarginColumn()},e.prototype.setReadOnly=function(e){this.setOption("readOnly",e)},e.prototype.getReadOnly=function(){return this.getOption("readOnly")},e.prototype.setBehavioursEnabled=function(e){this.setOption("behavioursEnabled",e)},e.prototype.getBehavioursEnabled=function(){return this.getOption("behavioursEnabled")},e.prototype.setWrapBehavioursEnabled=function(e){this.setOption("wrapBehavioursEnabled",e)},e.prototype.getWrapBehavioursEnabled=function(){return this.getOption("wrapBehavioursEnabled")},e.prototype.setShowFoldWidgets=function(e){this.setOption("showFoldWidgets",e)},e.prototype.getShowFoldWidgets=function(){return this.getOption("showFoldWidgets")},e.prototype.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},e.prototype.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},e.prototype.remove=function(e){this.selection.isEmpty()&&("left"==e?this.selection.selectLeft():this.selection.selectRight());var t=this.getSelectionRange();if(this.getBehavioursEnabled()){var n=this.session,r=n.getState(t.start.row),i=n.getMode().transformAction(r,"deletion",this,n,t);if(0===t.end.column){var a=n.getTextRange(t);if("\n"==a[a.length-1]){var o=n.getLine(t.end.row);/^\s+$/.test(o)&&(t.end.column=o.length)}}i&&(t=i)}this.session.remove(t),this.clearSelection()},e.prototype.removeWordRight=function(){this.selection.isEmpty()&&this.selection.selectWordRight(),this.session.remove(this.getSelectionRange()),this.clearSelection()},e.prototype.removeWordLeft=function(){this.selection.isEmpty()&&this.selection.selectWordLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},e.prototype.removeToLineStart=function(){this.selection.isEmpty()&&this.selection.selectLineStart(),this.selection.isEmpty()&&this.selection.selectLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},e.prototype.removeToLineEnd=function(){this.selection.isEmpty()&&this.selection.selectLineEnd();var e=this.getSelectionRange();e.start.column==e.end.column&&e.start.row==e.end.row&&(e.end.column=0,e.end.row++),this.session.remove(e),this.clearSelection()},e.prototype.splitLine=function(){this.selection.isEmpty()||(this.session.remove(this.getSelectionRange()),this.clearSelection());var e=this.getCursorPosition();this.insert("\n"),this.moveCursorToPosition(e)},e.prototype.setGhostText=function(e,t){this.session.widgetManager||(this.session.widgetManager=new x(this.session),this.session.widgetManager.attach(this)),this.renderer.setGhostText(e,t)},e.prototype.removeGhostText=function(){this.session.widgetManager&&this.renderer.removeGhostText()},e.prototype.transposeLetters=function(){if(this.selection.isEmpty()){var e=this.getCursorPosition(),t=e.column;if(0!==t){var n,r,i=this.session.getLine(e.row);tt.toLowerCase()?1:0}));var i=new p(0,0,0,0);for(r=e.first;r<=e.last;r++){var a=t.getLine(r);i.start.row=r,i.end.row=r,i.end.column=a.length,t.replace(i,n[r-e.first])}},e.prototype.toggleCommentLines=function(){var e=this.session.getState(this.getCursorPosition().row),t=this.$getSelectedRows();this.session.getMode().toggleCommentLines(e,this.session,t.first,t.last)},e.prototype.toggleBlockComment=function(){var e=this.getCursorPosition(),t=this.session.getState(e.row),n=this.getSelectionRange();this.session.getMode().toggleBlockComment(t,this.session,n,e)},e.prototype.getNumberAt=function(e,t){var n=/[\-]?[0-9]+(?:\.[0-9]+)?/g;n.lastIndex=0;for(var r=this.session.getLine(e);n.lastIndex=t)return{value:i[0],start:i.index,end:i.index+i[0].length}}return null},e.prototype.modifyNumber=function(e){var t=this.selection.getCursor().row,n=this.selection.getCursor().column,r=new p(t,n-1,t,n),i=this.session.getTextRange(r);if(!isNaN(parseFloat(i))&&isFinite(i)){var a=this.getNumberAt(t,n);if(a){var o=a.value.indexOf(".")>=0?a.start+a.value.indexOf(".")+1:a.end,s=a.start+a.value.length-o,l=parseFloat(a.value);l*=Math.pow(10,s),o!==a.end&&n=s&&a<=l&&(n=t,c.selection.clearSelection(),c.moveCursorTo(e,s+r),c.selection.selectTo(e,l+r)),s=l}));for(var u,f=this.$toggleWordPairs,d=0;d=l&&o<=c&&d.match(/((?:https?|ftp):\/\/[\S]+)/)){s=d.replace(/[\s:.,'";}\]]+$/,"");break}l=c}}catch(h){n={error:h}}finally{try{f&&!f.done&&(i=u.return)&&i.call(u)}finally{if(n)throw n.error}}return s},e.prototype.openLink=function(){var e=this.selection.getCursor(),t=this.findLinkAt(e.row,e.column);return t&&window.open(t,"_blank"),null!=t},e.prototype.removeLines=function(){var e=this.$getSelectedRows();this.session.removeFullLines(e.first,e.last),this.clearSelection()},e.prototype.duplicateSelection=function(){var e=this.selection,t=this.session,n=e.getRange(),r=e.isBackwards();if(n.isEmpty()){var i=n.start.row;t.duplicateLines(i,i)}else{var a=r?n.start:n.end,o=t.insert(a,t.getTextRange(n),!1);n.start=a,n.end=o,e.setSelectionRange(n,r)}},e.prototype.moveLinesDown=function(){this.$moveLines(1,!1)},e.prototype.moveLinesUp=function(){this.$moveLines(-1,!1)},e.prototype.moveText=function(e,t,n){return this.session.moveText(e,t,n)},e.prototype.copyLinesUp=function(){this.$moveLines(-1,!0)},e.prototype.copyLinesDown=function(){this.$moveLines(1,!0)},e.prototype.$moveLines=function(e,t){var n,r,i=this.selection;if(!i.inMultiSelectMode||this.inVirtualSelectionMode){var a=i.toOrientedRange();n=this.$getSelectedRows(a),r=this.session.$moveLines(n.first,n.last,t?0:e),t&&-1==e&&(r=0),a.moveBy(r,0),i.fromOrientedRange(a)}else{var o=i.rangeList.ranges;i.rangeList.detach(this.session),this.inVirtualSelectionMode=!0;for(var s=0,l=0,c=o.length,u=0;uh+1)break;h=p.last}for(u--,s=this.session.$moveLines(d,h,t?0:e),t&&-1==e&&(f=u+1);f<=u;)o[f].moveBy(s,0),f++;t||(s=0),l+=s}i.fromOrientedRange(i.ranges[0]),i.rangeList.attach(this.session),this.inVirtualSelectionMode=!1}},e.prototype.$getSelectedRows=function(e){return e=(e||this.getSelectionRange()).collapseRows(),{first:this.session.getRowFoldStart(e.start.row),last:this.session.getRowFoldEnd(e.end.row)}},e.prototype.onCompositionStart=function(e){this.renderer.showComposition(e)},e.prototype.onCompositionUpdate=function(e){this.renderer.setCompositionText(e)},e.prototype.onCompositionEnd=function(){this.renderer.hideComposition()},e.prototype.getFirstVisibleRow=function(){return this.renderer.getFirstVisibleRow()},e.prototype.getLastVisibleRow=function(){return this.renderer.getLastVisibleRow()},e.prototype.isRowVisible=function(e){return e>=this.getFirstVisibleRow()&&e<=this.getLastVisibleRow()},e.prototype.isRowFullyVisible=function(e){return e>=this.renderer.getFirstFullyVisibleRow()&&e<=this.renderer.getLastFullyVisibleRow()},e.prototype.$getVisibleRowCount=function(){return this.renderer.getScrollBottomRow()-this.renderer.getScrollTopRow()+1},e.prototype.$moveByPage=function(e,t){var n=this.renderer,r=this.renderer.layerConfig,i=e*Math.floor(r.height/r.lineHeight);!0===t?this.selection.$moveSelection((function(){this.moveCursorBy(i,0)})):!1===t&&(this.selection.moveCursorBy(i,0),this.selection.clearSelection());var a=n.scrollTop;n.scrollBy(0,i*r.lineHeight),null!=t&&n.scrollCursorIntoView(null,.5),n.animateScrolling(a)},e.prototype.selectPageDown=function(){this.$moveByPage(1,!0)},e.prototype.selectPageUp=function(){this.$moveByPage(-1,!0)},e.prototype.gotoPageDown=function(){this.$moveByPage(1,!1)},e.prototype.gotoPageUp=function(){this.$moveByPage(-1,!1)},e.prototype.scrollPageDown=function(){this.$moveByPage(1)},e.prototype.scrollPageUp=function(){this.$moveByPage(-1)},e.prototype.scrollToRow=function(e){this.renderer.scrollToRow(e)},e.prototype.scrollToLine=function(e,t,n,r){this.renderer.scrollToLine(e,t,n,r)},e.prototype.centerSelection=function(){var e=this.getSelectionRange(),t={row:Math.floor(e.start.row+(e.end.row-e.start.row)/2),column:Math.floor(e.start.column+(e.end.column-e.start.column)/2)};this.renderer.alignCursor(t,.5)},e.prototype.getCursorPosition=function(){return this.selection.getCursor()},e.prototype.getCursorPositionScreen=function(){return this.session.documentToScreenPosition(this.getCursorPosition())},e.prototype.getSelectionRange=function(){return this.selection.getRange()},e.prototype.selectAll=function(){this.selection.selectAll()},e.prototype.clearSelection=function(){this.selection.clearSelection()},e.prototype.moveCursorTo=function(e,t){this.selection.moveCursorTo(e,t)},e.prototype.moveCursorToPosition=function(e){this.selection.moveCursorToPosition(e)},e.prototype.jumpToMatching=function(e,t){var n=this.getCursorPosition(),r=new b(this.session,n.row,n.column),i=r.getCurrentToken(),a=0;i&&-1!==i.type.indexOf("tag-name")&&(i=r.stepBackward());var o=i||r.stepForward();if(o){var s,l,c=!1,u={},f=n.column-o.start,d={")":"(","(":"(","]":"[","[":"[","{":"{","}":"{"};do{if(o.value.match(/[{}()\[\]]/g)){for(;f1?u[o.value]++:"=0;--a)this.$tryReplace(n[a],e)&&r++;return this.selection.setSelectionRange(i),r},e.prototype.$tryReplace=function(e,t){var n=this.session.getTextRange(e);return null!==(t=this.$search.replace(n,t))?(e.end=this.session.replace(e,t),e):null},e.prototype.getLastSearchOptions=function(){return this.$search.getOptions()},e.prototype.find=function(e,t,n){t||(t={}),"string"==typeof e||e instanceof RegExp?t.needle=e:"object"==typeof e&&i.mixin(t,e);var r=this.selection.getRange();null==t.needle&&((e=this.session.getTextRange(r)||this.$search.$options.needle)||(r=this.session.getWordRange(r.start.row,r.start.column),e=this.session.getTextRange(r)),this.$search.set({needle:e})),this.$search.set(t),t.start||this.$search.set({start:r});var a=this.$search.find(this.session);return t.preventScroll?a:a?(this.revealRange(a,n),a):(t.backwards?r.start=r.end:r.end=r.start,void this.selection.setRange(r))},e.prototype.findNext=function(e,t){this.find({skipCurrent:!0,backwards:!1},e,t)},e.prototype.findPrevious=function(e,t){this.find(e,{skipCurrent:!0,backwards:!0},t)},e.prototype.revealRange=function(e,t){this.session.unfold(e),this.selection.setSelectionRange(e);var n=this.renderer.scrollTop;this.renderer.scrollSelectionIntoView(e.start,e.end,.5),!1!==t&&this.renderer.animateScrolling(n)},e.prototype.undo=function(){this.session.getUndoManager().undo(this.session),this.renderer.scrollCursorIntoView(null,.5)},e.prototype.redo=function(){this.session.getUndoManager().redo(this.session),this.renderer.scrollCursorIntoView(null,.5)},e.prototype.destroy=function(){this.$toDestroy&&(this.$toDestroy.forEach((function(e){e.destroy()})),this.$toDestroy=null),this.$mouseHandler&&this.$mouseHandler.destroy(),this.renderer.destroy(),this._signal("destroy",this),this.session&&this.session.destroy(),this._$emitInputEvent&&this._$emitInputEvent.cancel(),this.removeAllListeners()},e.prototype.setAutoScrollEditorIntoView=function(e){if(e){var t,n=this,r=!1;this.$scrollAnchor||(this.$scrollAnchor=document.createElement("div"));var i=this.$scrollAnchor;i.style.cssText="position:absolute",this.container.insertBefore(i,this.container.firstChild);var a=this.on("changeSelection",(function(){r=!0})),o=this.renderer.on("beforeRender",(function(){r&&(t=n.renderer.container.getBoundingClientRect())})),s=this.renderer.on("afterRender",(function(){if(r&&t&&(n.isFocused()||n.searchBox&&n.searchBox.isFocused())){var e=n.renderer,a=e.$cursorLayer.$pixelPos,o=e.layerConfig,s=a.top-o.offset;null!=(r=a.top>=0&&s+t.top<0||!(a.topwindow.innerHeight)&&null)&&(i.style.top=s+"px",i.style.left=a.left+"px",i.style.height=o.lineHeight+"px",i.scrollIntoView(r)),r=t=null}}));this.setAutoScrollEditorIntoView=function(e){e||(delete this.setAutoScrollEditorIntoView,this.off("changeSelection",a),this.renderer.off("afterRender",s),this.renderer.off("beforeRender",o))}}},e.prototype.$resetCursorStyle=function(){var e=this.$cursorStyle||"ace",t=this.renderer.$cursorLayer;t&&(t.setSmoothBlinking(/smooth/.test(e)),t.isBlinking=!this.$readOnly&&"wide"!=e,a.setCssClass(t.element,"ace_slim-cursors",/slim/.test(e)))},e.prototype.prompt=function(e,t,n){var r=this;y.loadModule("ace/ext/prompt",(function(i){i.prompt(r,e,t,n)}))},e}();T.$uid=0,T.prototype.curOp=null,T.prototype.prevOp={},T.prototype.$mergeableCommands=["backspace","del","insertstring"],T.prototype.$toggleWordPairs=[["first","last"],["true","false"],["yes","no"],["width","height"],["top","bottom"],["right","left"],["on","off"],["x","y"],["get","set"],["max","min"],["horizontal","vertical"],["show","hide"],["add","remove"],["up","down"],["before","after"],["even","odd"],["in","out"],["inside","outside"],["next","previous"],["increase","decrease"],["attach","detach"],["&&","||"],["==","!="]],i.implement(T.prototype,v),y.defineOptions(T.prototype,"editor",{selectionStyle:{set:function(e){this.onSelectionChange(),this._signal("changeSelectionStyle",{data:e})},initialValue:"line"},highlightActiveLine:{set:function(){this.$updateHighlightActiveLine()},initialValue:!0},highlightSelectedWord:{set:function(e){this.$onSelectionChange()},initialValue:!0},readOnly:{set:function(e){this.textInput.setReadOnly(e),this.$resetCursorStyle()},initialValue:!1},copyWithEmptySelection:{set:function(e){this.textInput.setCopyWithEmptySelection(e)},initialValue:!1},cursorStyle:{set:function(e){this.$resetCursorStyle()},values:["ace","slim","smooth","wide"],initialValue:"ace"},mergeUndoDeltas:{values:[!1,!0,"always"],initialValue:!0},behavioursEnabled:{initialValue:!0},wrapBehavioursEnabled:{initialValue:!0},enableAutoIndent:{initialValue:!0},autoScrollEditorIntoView:{set:function(e){this.setAutoScrollEditorIntoView(e)}},keyboardHandler:{set:function(e){this.setKeyboardHandler(e)},get:function(){return this.$keybindingId},handlesSet:!0},value:{set:function(e){this.session.setValue(e)},get:function(){return this.getValue()},handlesSet:!0,hidden:!0},session:{set:function(e){this.setSession(e)},get:function(){return this.session},handlesSet:!0,hidden:!0},showLineNumbers:{set:function(e){this.renderer.$gutterLayer.setShowLineNumbers(e),this.renderer.$loop.schedule(this.renderer.CHANGE_GUTTER),e&&this.$relativeLineNumbers?A.attach(this):A.detach(this)},initialValue:!0},relativeLineNumbers:{set:function(e){this.$showLineNumbers&&e?A.attach(this):A.detach(this)}},placeholder:{set:function(e){this.$updatePlaceholder||(this.$updatePlaceholder=function(){var e=this.session&&(this.renderer.$composition||this.session.getLength()>1||this.session.getLine(0).length>0);if(e&&this.renderer.placeholderNode)this.renderer.off("afterRender",this.$updatePlaceholder),a.removeCssClass(this.container,"ace_hasPlaceholder"),this.renderer.placeholderNode.remove(),this.renderer.placeholderNode=null;else if(e||this.renderer.placeholderNode)!e&&this.renderer.placeholderNode&&(this.renderer.placeholderNode.textContent=this.$placeholder||"");else{this.renderer.on("afterRender",this.$updatePlaceholder),a.addCssClass(this.container,"ace_hasPlaceholder");var t=a.createElement("div");t.className="ace_placeholder",t.textContent=this.$placeholder||"",this.renderer.placeholderNode=t,this.renderer.content.appendChild(this.renderer.placeholderNode)}}.bind(this),this.on("input",this.$updatePlaceholder)),this.$updatePlaceholder()}},enableKeyboardAccessibility:{set:function(e){var t,n={name:"blurTextInput",description:"Set focus to the editor content div to allow tabbing through the page",bindKey:"Esc",exec:function(e){e.blur(),e.renderer.scroller.focus()},readOnly:!0},r=function(e){if(e.target==this.renderer.scroller&&e.keyCode===S.enter){e.preventDefault();var t=this.getCursorPosition().row;this.isRowVisible(t)||this.scrollToLine(t,!0,!0),this.focus()}};e?(this.renderer.enableKeyboardAccessibility=!0,this.renderer.keyboardFocusClassName="ace_keyboard-focus",this.textInput.getElement().setAttribute("tabindex",-1),this.textInput.setNumberOfExtraLines(s.isWin?3:0),this.renderer.scroller.setAttribute("tabindex",0),this.renderer.scroller.setAttribute("role","group"),this.renderer.scroller.setAttribute("aria-roledescription",_("editor")),this.renderer.scroller.classList.add(this.renderer.keyboardFocusClassName),this.renderer.scroller.setAttribute("aria-label",_("Editor content, press Enter to start editing, press Escape to exit")),this.renderer.scroller.addEventListener("keyup",r.bind(this)),this.commands.addCommand(n),this.renderer.$gutter.setAttribute("tabindex",0),this.renderer.$gutter.setAttribute("aria-hidden",!1),this.renderer.$gutter.setAttribute("role","group"),this.renderer.$gutter.setAttribute("aria-roledescription",_("editor")),this.renderer.$gutter.setAttribute("aria-label",_("Editor gutter, press Enter to interact with controls using arrow keys, press Escape to exit")),this.renderer.$gutter.classList.add(this.renderer.keyboardFocusClassName),this.renderer.content.setAttribute("aria-hidden",!0),t||(t=new w(this)),t.addListener()):(this.renderer.enableKeyboardAccessibility=!1,this.textInput.getElement().setAttribute("tabindex",0),this.textInput.setNumberOfExtraLines(0),this.renderer.scroller.setAttribute("tabindex",-1),this.renderer.scroller.removeAttribute("role"),this.renderer.scroller.removeAttribute("aria-roledescription"),this.renderer.scroller.classList.remove(this.renderer.keyboardFocusClassName),this.renderer.scroller.removeAttribute("aria-label"),this.renderer.scroller.removeEventListener("keyup",r.bind(this)),this.commands.removeCommand(n),this.renderer.content.removeAttribute("aria-hidden"),this.renderer.$gutter.setAttribute("tabindex",-1),this.renderer.$gutter.setAttribute("aria-hidden",!0),this.renderer.$gutter.removeAttribute("role"),this.renderer.$gutter.removeAttribute("aria-roledescription"),this.renderer.$gutter.removeAttribute("aria-label"),this.renderer.$gutter.classList.remove(this.renderer.keyboardFocusClassName),t&&t.removeListener())},initialValue:!1},customScrollbar:"renderer",hScrollBarAlwaysVisible:"renderer",vScrollBarAlwaysVisible:"renderer",highlightGutterLine:"renderer",animatedScroll:"renderer",showInvisibles:"renderer",showPrintMargin:"renderer",printMarginColumn:"renderer",printMargin:"renderer",fadeFoldWidgets:"renderer",showFoldWidgets:"renderer",displayIndentGuides:"renderer",highlightIndentGuides:"renderer",showGutter:"renderer",fontSize:"renderer",fontFamily:"renderer",maxLines:"renderer",minLines:"renderer",scrollPastEnd:"renderer",fixedWidthGutter:"renderer",theme:"renderer",hasCssTransforms:"renderer",maxPixelHeight:"renderer",useTextareaForIME:"renderer",useResizeObserver:"renderer",useSvgGutterIcons:"renderer",showFoldedAnnotations:"renderer",scrollSpeed:"$mouseHandler",dragDelay:"$mouseHandler",dragEnabled:"$mouseHandler",focusTimeout:"$mouseHandler",tooltipFollowsMouse:"$mouseHandler",firstLineNumber:"session",overwrite:"session",newLineMode:"session",useWorker:"session",useSoftTabs:"session",navigateWithinSoftTabs:"session",tabSize:"session",wrap:"session",indentedSoftWrap:"session",foldStyle:"session",mode:"session"});var A={getText:function(e,t){return(Math.abs(e.selection.lead.row-t)||t+1+(t<9?"\xb7":""))+""},getWidth:function(e,t,n){return Math.max(t.toString().length,(n.lastRow+1).toString().length,2)*n.characterWidth},update:function(e,t){t.renderer.$loop.schedule(t.renderer.CHANGE_GUTTER)},attach:function(e){e.renderer.$gutterLayer.$renderer=this,e.on("changeSelection",this.update),this.update(null,e)},detach:function(e){e.renderer.$gutterLayer.$renderer==this&&(e.renderer.$gutterLayer.$renderer=null),e.off("changeSelection",this.update),this.update(null,e)}};t.Editor=T})),ace.define("ace/undomanager",["require","exports","module","ace/range"],(function(e,t,n){"use strict";var r=function(){function e(){this.$maxRev=0,this.$fromUndo=!1,this.$undoDepth=1/0,this.reset()}return e.prototype.addSession=function(e){this.$session=e},e.prototype.add=function(e,t,n){if(!this.$fromUndo&&e!=this.$lastDelta){if(this.$keepRedoStack||(this.$redoStack.length=0),!1===t||!this.lastDeltas){this.lastDeltas=[];var r=this.$undoStack.length;r>this.$undoDepth-1&&this.$undoStack.splice(0,r-this.$undoDepth+1),this.$undoStack.push(this.lastDeltas),e.id=this.$rev=++this.$maxRev}"remove"!=e.action&&"insert"!=e.action||(this.$lastDelta=e),this.lastDeltas.push(e)}},e.prototype.addSelection=function(e,t){this.selections.push({value:e,rev:t||this.$rev})},e.prototype.startNewGroup=function(){return this.lastDeltas=null,this.$rev},e.prototype.markIgnored=function(e,t){null==t&&(t=this.$rev+1);for(var n=this.$undoStack,r=n.length;r--;){var i=n[r][0];if(i.id<=e)break;i.id0},e.prototype.canRedo=function(){return this.$redoStack.length>0},e.prototype.bookmark=function(e){void 0==e&&(e=this.$rev),this.mark=e},e.prototype.isAtBookmark=function(){return this.$rev===this.mark},e.prototype.toJSON=function(){},e.prototype.fromJSON=function(){},e.prototype.$prettyPrint=function(e){return e?s(e):s(this.$undoStack)+"\n---\n"+s(this.$redoStack)},e}();r.prototype.hasUndo=r.prototype.canUndo,r.prototype.hasRedo=r.prototype.canRedo,r.prototype.isClean=r.prototype.isAtBookmark,r.prototype.markClean=r.prototype.bookmark;var i=e("./range").Range,a=i.comparePoints;i.comparePoints;function o(e){return{row:e.row,column:e.column}}function s(e){if(e=e||this,Array.isArray(e))return e.map(s).join("\n");var t="";return e.action?(t="insert"==e.action?"+":"-",t+="["+e.lines+"]"):e.value&&(t=Array.isArray(e.value)?e.value.map(l).join("\n"):l(e.value)),e.start&&(t+=l(e)),(e.id||e.rev)&&(t+="\t("+(e.id||e.rev)+")"),t}function l(e){return e.start.row+":"+e.start.column+"=>"+e.end.row+":"+e.end.column}function c(e,t){var n="insert"==e.action,r="insert"==t.action;if(n&&r)if(a(t.start,e.end)>=0)d(t,e,-1);else{if(!(a(t.start,e.start)<=0))return null;d(e,t,1)}else if(n&&!r)if(a(t.start,e.end)>=0)d(t,e,-1);else{if(!(a(t.end,e.start)<=0))return null;d(e,t,-1)}else if(!n&&r)if(a(t.start,e.start)>=0)d(t,e,1);else{if(!(a(t.start,e.start)<=0))return null;d(e,t,1)}else if(!n&&!r)if(a(t.start,e.start)>=0)d(t,e,1);else{if(!(a(t.end,e.start)<=0))return null;d(e,t,-1)}return[t,e]}function u(e,t){for(var n=e.length;n--;)for(var r=0;r=0?d(e,t,-1):(a(e.start,t.start)<=0||d(e,i.fromPoints(t.start,e.start),-1),d(t,e,1));else if(!n&&r)a(t.start,e.end)>=0?d(t,e,-1):(a(t.start,e.start)<=0||d(t,i.fromPoints(e.start,t.start),-1),d(e,t,1));else if(!n&&!r)if(a(t.start,e.end)>=0)d(t,e,-1);else{var o,s;if(!(a(t.end,e.start)<=0))return a(e.start,t.start)<0&&(o=e,e=p(e,t.start)),a(e.end,t.end)>0&&(s=p(e,t.end)),h(t.end,e.start,e.end,-1),s&&!o&&(e.lines=s.lines,e.start=s.start,e.end=s.end,s=e),[t,o,s].filter(Boolean);d(e,t,-1)}return[t,e]}function d(e,t,n){h(e.start,t.start,t.end,n),h(e.end,t.start,t.end,n)}function h(e,t,n,r){e.row==(1==r?t:n).row&&(e.column+=r*(n.column-t.column)),e.row+=r*(n.row-t.row)}function p(e,t){var n=e.lines,r=e.end;e.end=o(t);var i=e.end.row-e.start.row,a=n.splice(i,n.length),s=i?t.column:t.column-e.start.column;return n.push(a[0].substring(0,s)),a[0]=a[0].substr(s),{start:o(t),end:r,lines:a,action:e.action}}function v(e,t){t=function(e){return{start:o(e.start),end:o(e.end),action:e.action,lines:e.lines.slice()}}(t);for(var n=e.length;n--;){for(var r=e[n],i=0;ia&&(l=i.end.row+1,a=(i=t.getNextFoldLine(l,i))?i.start.row:1/0),l>r){for(;this.$lines.getLength()>s+1;)this.$lines.pop();break}(o=this.$lines.get(++s))?o.row=l:(o=this.$lines.createCell(l,e,this.session,u),this.$lines.push(o)),this.$renderCell(o,e,i,l),l++}this._signal("afterRender"),this.$updateGutterWidth(e)},e.prototype.$updateGutterWidth=function(e){var t=this.session,n=t.gutterRenderer||this.$renderer,r=t.$firstLineNumber,i=this.$lines.last()?this.$lines.last().text:"";(this.$fixedWidth||t.$useWrapMode)&&(i=t.getLength()+r-1);var a=n?n.getWidth(t,i,e):i.toString().length*e.characterWidth,o=this.$padding||this.$computePadding();(a+=o.left+o.right)===this.gutterWidth||isNaN(a)||(this.gutterWidth=a,this.element.parentNode.style.width=this.element.style.width=Math.ceil(this.gutterWidth)+"px",this._signal("changeGutterWidth",a))},e.prototype.$updateCursorRow=function(){if(this.$highlightGutterLine){var e=this.session.selection.getCursor();this.$cursorRow!==e.row&&(this.$cursorRow=e.row)}},e.prototype.updateLineHighlight=function(){if(this.$highlightGutterLine){var e=this.session.selection.cursor.row;if(this.$cursorRow=e,!this.$cursorCell||this.$cursorCell.row!=e){this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ",""));var t=this.$lines.cells;this.$cursorCell=null;for(var n=0;n=this.$cursorRow){if(r.row>this.$cursorRow){var i=this.session.getFoldLine(this.$cursorRow);if(!(n>0&&i&&i.start.row==t[n-1].row))break;r=t[n-1]}r.element.className="ace_gutter-active-line "+r.element.className,this.$cursorCell=r;break}}}}},e.prototype.scrollLines=function(e){var t=this.config;if(this.config=e,this.$updateCursorRow(),this.$lines.pageChanged(t,e))return this.update(e);this.$lines.moveContainer(e);var n=Math.min(e.lastRow+e.gutterOffset,this.session.getLength()-1),r=this.oldLastRow;if(this.oldLastRow=n,!t||r0;i--)this.$lines.shift();if(r>n)for(i=this.session.getFoldedRowCount(n+1,r);i>0;i--)this.$lines.pop();e.firstRowr&&this.$lines.push(this.$renderLines(e,r+1,n)),this.updateLineHighlight(),this._signal("afterRender"),this.$updateGutterWidth(e)},e.prototype.$renderLines=function(e,t,n){for(var r=[],i=t,a=this.session.getNextFoldLine(i),o=a?a.start.row:1/0;i>o&&(i=a.end.row+1,o=(a=this.session.getNextFoldLine(i,a))?a.start.row:1/0),!(i>n);){var s=this.$lines.createCell(i,e,this.session,u);this.$renderCell(s,e,a,i),r.push(s),i++}return r},e.prototype.$renderCell=function(e,t,n,i){var a=e.element,o=this.session,s=a.childNodes[0],c=a.childNodes[1],u=a.childNodes[2],f=u.firstChild,d=o.$firstLineNumber,h=o.$breakpoints,p=o.$decorations,v=o.gutterRenderer||this.$renderer,m=this.$showFoldWidgets&&o.foldWidgets,g=n?n.start.row:Number.MAX_VALUE,y=t.lineHeight+"px",b=this.$useSvgGutterIcons?"ace_gutter-cell_svg-icons ":"ace_gutter-cell ",x=this.$useSvgGutterIcons?"ace_icon_svg":"ace_icon",w=(v?v.getText(o,i):i+d).toString();if(this.$highlightGutterLine&&(i==this.$cursorRow||n&&i=g&&this.$cursorRow<=n.end.row)&&(b+="ace_gutter-active-line ",this.$cursorCell!=e&&(this.$cursorCell&&(this.$cursorCell.element.className=this.$cursorCell.element.className.replace("ace_gutter-active-line ","")),this.$cursorCell=e)),h[i]&&(b+=h[i]),p[i]&&(b+=p[i]),this.$annotations[i]&&i!==g&&(b+=this.$annotations[i].className),m){var _=m[i];null==_&&(_=m[i]=o.getFoldWidget(i))}if(_){var k="ace_fold-widget ace_"+_,S="start"==_&&i==g&&in.right-t.right?"foldWidgets":void 0},e}();function u(e){var t=document.createTextNode("");e.appendChild(t);var n=r.createElement("span");e.appendChild(n);var i=r.createElement("span");e.appendChild(i);var a=r.createElement("span");return i.appendChild(a),e}c.prototype.$fixedWidth=!1,c.prototype.$highlightGutterLine=!0,c.prototype.$renderer="",c.prototype.$showLineNumbers=!0,c.prototype.$showFoldWidgets=!0,i.implement(c.prototype,o),t.Gutter=c})),ace.define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"],(function(e,t,n){"use strict";var r=e("../range").Range,i=e("../lib/dom"),a=function(){function e(e){this.element=i.createElement("div"),this.element.className="ace_layer ace_marker-layer",e.appendChild(this.element)}return e.prototype.setPadding=function(e){this.$padding=e},e.prototype.setSession=function(e){this.session=e},e.prototype.setMarkers=function(e){this.markers=e},e.prototype.elt=function(e,t){var n=-1!=this.i&&this.element.childNodes[this.i];n?this.i++:(n=document.createElement("div"),this.element.appendChild(n),this.i=-1),n.style.cssText=t,n.className=e},e.prototype.update=function(e){if(e){var t;for(var n in this.config=e,this.i=0,this.markers){var r=this.markers[n];if(r.range){var i=r.range.clipRows(e.firstRow,e.lastRow);if(!i.isEmpty())if(i=i.toScreenRange(this.session),r.renderer){var a=this.$getTop(i.start.row,e),o=this.$padding+i.start.column*e.characterWidth;r.renderer(t,i,o,a,e)}else"fullLine"==r.type?this.drawFullLineMarker(t,i,r.clazz,e):"screenLine"==r.type?this.drawScreenLineMarker(t,i,r.clazz,e):i.isMultiLine()?"text"==r.type?this.drawTextMarker(t,i,r.clazz,e):this.drawMultiLineMarker(t,i,r.clazz,e):this.drawSingleLineMarker(t,i,r.clazz+" ace_start ace_br15",e)}else r.update(t,this,this.session,e)}if(-1!=this.i)for(;this.id?4:0)|(c==l?8:0)),i,c==l?0:1,a)},e.prototype.drawMultiLineMarker=function(e,t,n,r,i){var a=this.$padding,o=r.lineHeight,s=this.$getTop(t.start.row,r),l=a+t.start.column*r.characterWidth;(i=i||"",this.session.$bidiHandler.isBidiRow(t.start.row))?((c=t.clone()).end.row=c.start.row,c.end.column=this.session.getLine(c.start.row).length,this.drawBidiSingleLineMarker(e,c,n+" ace_br1 ace_start",r,null,i)):this.elt(n+" ace_br1 ace_start","height:"+o+"px;right:0;top:"+s+"px;left:"+l+"px;"+(i||""));if(this.session.$bidiHandler.isBidiRow(t.end.row)){var c;(c=t.clone()).start.row=c.end.row,c.start.column=0,this.drawBidiSingleLineMarker(e,c,n+" ace_br12",r,null,i)}else{s=this.$getTop(t.end.row,r);var u=t.end.column*r.characterWidth;this.elt(n+" ace_br12","height:"+o+"px;width:"+u+"px;top:"+s+"px;left:"+a+"px;"+(i||""))}if(!((o=(t.end.row-t.start.row-1)*r.lineHeight)<=0)){s=this.$getTop(t.start.row+1,r);var f=(t.start.column?1:0)|(t.end.column?0:8);this.elt(n+(f?" ace_br"+f:""),"height:"+o+"px;right:0;top:"+s+"px;left:"+a+"px;"+(i||""))}},e.prototype.drawSingleLineMarker=function(e,t,n,r,i,a){if(this.session.$bidiHandler.isBidiRow(t.start.row))return this.drawBidiSingleLineMarker(e,t,n,r,i,a);var o=r.lineHeight,s=(t.end.column+(i||0)-t.start.column)*r.characterWidth,l=this.$getTop(t.start.row,r),c=this.$padding+t.start.column*r.characterWidth;this.elt(n,"height:"+o+"px;width:"+s+"px;top:"+l+"px;left:"+c+"px;"+(a||""))},e.prototype.drawBidiSingleLineMarker=function(e,t,n,r,i,a){var o=r.lineHeight,s=this.$getTop(t.start.row,r),l=this.$padding;this.session.$bidiHandler.getSelections(t.start.column,t.end.column).forEach((function(e){this.elt(n,"height:"+o+"px;width:"+(e.width+(i||0))+"px;top:"+s+"px;left:"+(l+e.left)+"px;"+(a||""))}),this)},e.prototype.drawFullLineMarker=function(e,t,n,r,i){var a=this.$getTop(t.start.row,r),o=r.lineHeight;t.start.row!=t.end.row&&(o+=this.$getTop(t.end.row,r)-a),this.elt(n,"height:"+o+"px;top:"+a+"px;left:0;right:0;"+(i||""))},e.prototype.drawScreenLineMarker=function(e,t,n,r,i){var a=this.$getTop(t.start.row,r),o=r.lineHeight;this.elt(n,"height:"+o+"px;top:"+a+"px;left:0;right:0;"+(i||""))},e}();a.prototype.$padding=0,t.Marker=a})),ace.define("ace/layer/text_util",["require","exports","module"],(function(e,t,n){var r=new Set(["text","rparen","lparen"]);t.isTextToken=function(e){return r.has(e)}})),ace.define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/layer/lines","ace/lib/event_emitter","ace/config","ace/layer/text_util"],(function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/dom"),a=e("../lib/lang"),o=e("./lines").Lines,s=e("../lib/event_emitter").EventEmitter,l=e("../config").nls,c=e("./text_util").isTextToken,u=function(){function e(e){this.dom=i,this.element=this.dom.createElement("div"),this.element.className="ace_layer ace_text-layer",e.appendChild(this.element),this.$updateEolChar=this.$updateEolChar.bind(this),this.$lines=new o(this.element)}return e.prototype.$updateEolChar=function(){var e=this.session.doc,t="\n"==e.getNewLineCharacter()&&"windows"!=e.getNewLineMode()?this.EOL_CHAR_LF:this.EOL_CHAR_CRLF;if(this.EOL_CHAR!=t)return this.EOL_CHAR=t,!0},e.prototype.setPadding=function(e){this.$padding=e,this.element.style.margin="0 "+e+"px"},e.prototype.getLineHeight=function(){return this.$fontMetrics.$characterSize.height||0},e.prototype.getCharacterWidth=function(){return this.$fontMetrics.$characterSize.width||0},e.prototype.$setFontMetrics=function(e){this.$fontMetrics=e,this.$fontMetrics.on("changeCharacterSize",function(e){this._signal("changeCharacterSize",e)}.bind(this)),this.$pollSizeChanges()},e.prototype.checkForSizeChanges=function(){this.$fontMetrics.checkForSizeChanges()},e.prototype.$pollSizeChanges=function(){return this.$pollSizeChangesTimer=this.$fontMetrics.$pollSizeChanges()},e.prototype.setSession=function(e){this.session=e,e&&this.$computeTabString()},e.prototype.setShowInvisibles=function(e){return this.showInvisibles!=e&&(this.showInvisibles=e,"string"==typeof e?(this.showSpaces=/tab/i.test(e),this.showTabs=/space/i.test(e),this.showEOL=/eol/i.test(e)):this.showSpaces=this.showTabs=this.showEOL=e,this.$computeTabString(),!0)},e.prototype.setDisplayIndentGuides=function(e){return this.displayIndentGuides!=e&&(this.displayIndentGuides=e,this.$computeTabString(),!0)},e.prototype.setHighlightIndentGuides=function(e){return this.$highlightIndentGuides!==e&&(this.$highlightIndentGuides=e,e)},e.prototype.$computeTabString=function(){var e=this.session.getTabSize();this.tabSize=e;for(var t=this.$tabStrings=[0],n=1;nu&&(s=l.end.row+1,u=(l=this.session.getNextFoldLine(s,l))?l.start.row:1/0),!(s>i);){var f=a[o++];if(f){this.dom.removeChildren(f),this.$renderLine(f,s,s==u&&l),c&&(f.style.top=this.$lines.computeLineTop(s,e,this.session)+"px");var d=e.lineHeight*this.session.getRowLength(s)+"px";f.style.height!=d&&(c=!0,f.style.height=d)}s++}if(c)for(;o0;i--)this.$lines.shift();if(t.lastRow>e.lastRow)for(i=this.session.getFoldedRowCount(e.lastRow+1,t.lastRow);i>0;i--)this.$lines.pop();e.firstRowt.lastRow&&this.$lines.push(this.$renderLinesFragment(e,t.lastRow+1,e.lastRow)),this.$highlightIndentGuide()},e.prototype.$renderLinesFragment=function(e,t,n){for(var r=[],a=t,o=this.session.getNextFoldLine(a),s=o?o.start.row:1/0;a>s&&(a=o.end.row+1,s=(o=this.session.getNextFoldLine(a,o))?o.start.row:1/0),!(a>n);){var l=this.$lines.createCell(a,e,this.session),c=l.element;this.dom.removeChildren(c),i.setStyle(c.style,"height",this.$lines.computeLineHeight(a,e,this.session)+"px"),i.setStyle(c.style,"top",this.$lines.computeLineTop(a,e,this.session)+"px"),this.$renderLine(c,a,a==s&&o),this.$useLineGroups()?c.className="ace_line_group":c.className="ace_line",r.push(l),a++}return r},e.prototype.update=function(e){this.$lines.moveContainer(e),this.config=e;for(var t=e.firstRow,n=e.lastRow,r=this.$lines;r.getLength();)r.pop();r.push(this.$renderLinesFragment(e,t,n))},e.prototype.$renderToken=function(e,t,n,r){for(var i,o=this,s=/(\t)|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\uFEFF\uFFF9-\uFFFC\u2066\u2067\u2068\u202A\u202B\u202D\u202E\u202C\u2069]+)|(\u3000)|([\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]|[\uD800-\uDBFF][\uDC00-\uDFFF])/g,u=this.dom.createFragment(this.element),f=0;i=s.exec(r);){var d=i[1],h=i[2],p=i[3],v=i[4],m=i[5];if(o.showSpaces||!h){var g=f!=i.index?r.slice(f,i.index):"";if(f=i.index+i[0].length,g&&u.appendChild(this.dom.createTextNode(g,this.element)),d){var y=o.session.getScreenTabSize(t+i.index);u.appendChild(o.$tabStrings[y].cloneNode(!0)),t+=y-1}else if(h){if(o.showSpaces)(x=this.dom.createElement("span")).className="ace_invisible ace_invisible_space",x.textContent=a.stringRepeat(o.SPACE_CHAR,h.length),u.appendChild(x);else u.appendChild(this.dom.createTextNode(h,this.element))}else if(p){(x=this.dom.createElement("span")).className="ace_invisible ace_invisible_space ace_invalid",x.textContent=a.stringRepeat(o.SPACE_CHAR,p.length),u.appendChild(x)}else if(v){t+=1,(x=this.dom.createElement("span")).style.width=2*o.config.characterWidth+"px",x.className=o.showSpaces?"ace_cjk ace_invisible ace_invisible_space":"ace_cjk",x.textContent=o.showSpaces?o.SPACE_CHAR:v,u.appendChild(x)}else if(m){t+=1,(x=this.dom.createElement("span")).style.width=2*o.config.characterWidth+"px",x.className="ace_cjk",x.textContent=m,u.appendChild(x)}}}if(u.appendChild(this.dom.createTextNode(f?r.slice(f):r,this.element)),c(n.type))e.appendChild(u);else{var b="ace_"+n.type.replace(/\./g," ace_"),x=this.dom.createElement("span");"fold"==n.type&&(x.style.width=n.value.length*this.config.characterWidth+"px",x.setAttribute("title",l("Unfold code"))),x.className=b,x.appendChild(u),e.appendChild(x)}return t+r.length},e.prototype.renderIndentGuide=function(e,t,n){var r=t.search(this.$indentGuideRe);if(r<=0||r>=n)return t;if(" "==t[0]){for(var i=(r-=r%this.tabSize)/this.tabSize,a=0;ai[a].start.row?this.$highlightIndentGuideMarker.dir=-1:this.$highlightIndentGuideMarker.dir=1;break}if(!this.$highlightIndentGuideMarker.end&&""!==e[t.row]&&t.column===e[t.row].length){this.$highlightIndentGuideMarker.dir=1;for(a=t.row+1;a0)for(var r=0;r=this.$highlightIndentGuideMarker.start+1){if(r.row>=this.$highlightIndentGuideMarker.end)break;this.$setIndentGuideActive(r,t)}}else for(n=e.length-1;n>=0;n--){r=e[n];if(this.$highlightIndentGuideMarker.end&&r.row=o;)s=this.$renderToken(l,s,u,f.substring(0,o-r)),f=f.substring(o-r),r=o,l=this.$createLineElement(),e.appendChild(l),l.appendChild(this.dom.createTextNode(a.stringRepeat("\xa0",n.indent),this.element)),s=0,o=n[++i]||Number.MAX_VALUE;0!=f.length&&(r+=f.length,s=this.$renderToken(l,s,u,f))}}n[n.length-1]>this.MAX_LINE_LENGTH&&this.$renderOverflowMessage(l,s,null,"",!0)},e.prototype.$renderSimpleLine=function(e,t){for(var n=0,r=0;rthis.MAX_LINE_LENGTH)return this.$renderOverflowMessage(e,n,i,a);n=this.$renderToken(e,n,i,a)}}},e.prototype.$renderOverflowMessage=function(e,t,n,r,i){n&&this.$renderToken(e,t,n,r.slice(0,this.MAX_LINE_LENGTH-t));var a=this.dom.createElement("span");a.className="ace_inline_button ace_keyword ace_toggle_wrap",a.textContent=i?"":"",e.appendChild(a)},e.prototype.$renderLine=function(e,t,n){if(n||0==n||(n=this.session.getFoldLine(t)),n)var r=this.$getFoldLineTokens(t,n);else r=this.session.getTokens(t);var i=e;if(r.length){var a=this.session.getRowSplitData(t);if(a&&a.length){this.$renderWrappedLine(e,r,a);i=e.lastChild}else{i=e;this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i)),this.$renderSimpleLine(i,r)}}else this.$useLineGroups()&&(i=this.$createLineElement(),e.appendChild(i));if(this.showEOL&&i){n&&(t=n.end.row);var o=this.dom.createElement("span");o.className="ace_invisible ace_invisible_eol",o.textContent=t==this.session.getLength()-1?this.EOF_CHAR:this.EOL_CHAR,i.appendChild(o)}},e.prototype.$getFoldLineTokens=function(e,t){var n=this.session,r=[];var i=n.getTokens(e);return t.walk((function(e,t,a,o,s){null!=e?r.push({type:"fold",value:e}):(s&&(i=n.getTokens(t)),i.length&&function(e,t,n){for(var i=0,a=0;a+e[i].value.lengthn-t&&(o=o.substring(0,n-t)),r.push({type:e[i].type,value:o}),a=t+o.length,i+=1);an?r.push({type:e[i].type,value:o.substring(0,n-a)}):r.push(e[i]),a+=o.length,i+=1}}(i,o,a))}),t.end.row,this.session.getLine(t.end.row).length),r},e.prototype.$useLineGroups=function(){return this.session.getUseWrapMode()},e}();u.prototype.EOF_CHAR="\xb6",u.prototype.EOL_CHAR_LF="\xac",u.prototype.EOL_CHAR_CRLF="\xa4",u.prototype.EOL_CHAR=u.prototype.EOL_CHAR_LF,u.prototype.TAB_CHAR="\u2014",u.prototype.SPACE_CHAR="\xb7",u.prototype.$padding=0,u.prototype.MAX_LINE_LENGTH=1e4,u.prototype.showInvisibles=!1,u.prototype.showSpaces=!1,u.prototype.showTabs=!1,u.prototype.showEOL=!1,u.prototype.displayIndentGuides=!0,u.prototype.$highlightIndentGuides=!0,u.prototype.$tabStrings=[],u.prototype.destroy={},u.prototype.onChangeTabSize=u.prototype.$computeTabString,r.implement(u.prototype,s),t.Text=u})),ace.define("ace/layer/cursor",["require","exports","module","ace/lib/dom"],(function(e,t,n){"use strict";var r=e("../lib/dom"),i=function(){function e(e){this.element=r.createElement("div"),this.element.className="ace_layer ace_cursor-layer",e.appendChild(this.element),this.isVisible=!1,this.isBlinking=!0,this.blinkInterval=1e3,this.smoothBlinking=!1,this.cursors=[],this.cursor=this.addCursor(),r.addCssClass(this.element,"ace_hidden-cursors"),this.$updateCursors=this.$updateOpacity.bind(this)}return e.prototype.$updateOpacity=function(e){for(var t=this.cursors,n=t.length;n--;)r.setStyle(t[n].style,"opacity",e?"":"0")},e.prototype.$startCssAnimation=function(){for(var e=this.cursors,t=e.length;t--;)e[t].style.animationDuration=this.blinkInterval+"ms";this.$isAnimating=!0,setTimeout(function(){this.$isAnimating&&r.addCssClass(this.element,"ace_animate-blinking")}.bind(this))},e.prototype.$stopCssAnimation=function(){this.$isAnimating=!1,r.removeCssClass(this.element,"ace_animate-blinking")},e.prototype.setPadding=function(e){this.$padding=e},e.prototype.setSession=function(e){this.session=e},e.prototype.setBlinking=function(e){e!=this.isBlinking&&(this.isBlinking=e,this.restartTimer())},e.prototype.setBlinkInterval=function(e){e!=this.blinkInterval&&(this.blinkInterval=e,this.restartTimer())},e.prototype.setSmoothBlinking=function(e){e!=this.smoothBlinking&&(this.smoothBlinking=e,r.setCssClass(this.element,"ace_smooth-blinking",e),this.$updateCursors(!0),this.restartTimer())},e.prototype.addCursor=function(){var e=r.createElement("div");return e.className="ace_cursor",this.element.appendChild(e),this.cursors.push(e),e},e.prototype.removeCursor=function(){if(this.cursors.length>1){var e=this.cursors.pop();return e.parentNode.removeChild(e),e}},e.prototype.hideCursor=function(){this.isVisible=!1,r.addCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},e.prototype.showCursor=function(){this.isVisible=!0,r.removeCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},e.prototype.restartTimer=function(){var e=this.$updateCursors;if(clearInterval(this.intervalId),clearTimeout(this.timeoutId),this.$stopCssAnimation(),this.smoothBlinking&&(this.$isSmoothBlinking=!1,r.removeCssClass(this.element,"ace_smooth-blinking")),e(!0),this.isBlinking&&this.blinkInterval&&this.isVisible)if(this.smoothBlinking&&(this.$isSmoothBlinking=!0,setTimeout(function(){this.$isSmoothBlinking&&r.addCssClass(this.element,"ace_smooth-blinking")}.bind(this))),r.HAS_CSS_ANIMATION)this.$startCssAnimation();else{var t=function(){this.timeoutId=setTimeout((function(){e(!1)}),.6*this.blinkInterval)}.bind(this);this.intervalId=setInterval((function(){e(!0),t()}),this.blinkInterval),t()}else this.$stopCssAnimation()},e.prototype.getPixelPosition=function(e,t){if(!this.config||!this.session)return{left:0,top:0};e||(e=this.session.selection.getCursor());var n=this.session.documentToScreenPosition(e);return{left:this.$padding+(this.session.$bidiHandler.isBidiRow(n.row,e.row)?this.session.$bidiHandler.getPosLeft(n.column):n.column*this.config.characterWidth),top:(n.row-(t?this.config.firstRowScreen:0))*this.config.lineHeight}},e.prototype.isCursorInView=function(e,t){return e.top>=0&&e.tope.height+e.offset||o.top<0)&&n>1)){var s=this.cursors[i++]||this.addCursor(),l=s.style;this.drawCursor?this.drawCursor(s,o,e,t[n],this.session):this.isCursorInView(o,e)?(r.setStyle(l,"display","block"),r.translate(s,o.left,o.top),r.setStyle(l,"width",Math.round(e.characterWidth)+"px"),r.setStyle(l,"height",e.lineHeight+"px")):r.setStyle(l,"display","none")}}for(;this.cursors.length>i;)this.removeCursor();var c=this.session.getOverwrite();this.$setOverwrite(c),this.$pixelPos=o,this.restartTimer()},e.prototype.$setOverwrite=function(e){e!=this.overwrite&&(this.overwrite=e,e?r.addCssClass(this.element,"ace_overwrite-cursors"):r.removeCssClass(this.element,"ace_overwrite-cursors"))},e.prototype.destroy=function(){clearInterval(this.intervalId),clearTimeout(this.timeoutId)},e}();i.prototype.$padding=0,i.prototype.drawCursor=null,t.Cursor=i})),ace.define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],(function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!==typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("./lib/oop"),a=e("./lib/dom"),o=e("./lib/event"),s=e("./lib/event_emitter").EventEmitter,l=32768,c=function(){function e(e,t){this.element=a.createElement("div"),this.element.className="ace_scrollbar ace_scrollbar"+t,this.inner=a.createElement("div"),this.inner.className="ace_scrollbar-inner",this.inner.textContent="\xa0",this.element.appendChild(this.inner),e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,o.addListener(this.element,"scroll",this.onScroll.bind(this)),o.addListener(this.element,"mousedown",o.preventDefault)}return e.prototype.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1},e}();i.implement(c.prototype,s);var u=function(e){function t(t,n){var r=e.call(this,t,"-v")||this;return r.scrollTop=0,r.scrollHeight=0,n.$scrollbarWidth=r.width=a.scrollbarWidth(t.ownerDocument),r.inner.style.width=r.element.style.width=(r.width||15)+5+"px",r.$minWidth=0,r}return r(t,e),t.prototype.onScroll=function(){if(!this.skipEvent){if(this.scrollTop=this.element.scrollTop,1!=this.coeff){var e=this.element.clientHeight/this.scrollHeight;this.scrollTop=this.scrollTop*(1-e)/(this.coeff-e)}this._emit("scroll",{data:this.scrollTop})}this.skipEvent=!1},t.prototype.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},t.prototype.setHeight=function(e){this.element.style.height=e+"px"},t.prototype.setScrollHeight=function(e){this.scrollHeight=e,e>l?(this.coeff=l/e,e=l):1!=this.coeff&&(this.coeff=1),this.inner.style.height=e+"px"},t.prototype.setScrollTop=function(e){this.scrollTop!=e&&(this.skipEvent=!0,this.scrollTop=e,this.element.scrollTop=e*this.coeff)},t}(c);u.prototype.setInnerHeight=u.prototype.setScrollHeight;var f=function(e){function t(t,n){var r=e.call(this,t,"-h")||this;return r.scrollLeft=0,r.height=n.$scrollbarWidth,r.inner.style.height=r.element.style.height=(r.height||15)+5+"px",r}return r(t,e),t.prototype.onScroll=function(){this.skipEvent||(this.scrollLeft=this.element.scrollLeft,this._emit("scroll",{data:this.scrollLeft})),this.skipEvent=!1},t.prototype.getHeight=function(){return this.isVisible?this.height:0},t.prototype.setWidth=function(e){this.element.style.width=e+"px"},t.prototype.setInnerWidth=function(e){this.inner.style.width=e+"px"},t.prototype.setScrollWidth=function(e){this.inner.style.width=e+"px"},t.prototype.setScrollLeft=function(e){this.scrollLeft!=e&&(this.skipEvent=!0,this.scrollLeft=this.element.scrollLeft=e)},t}(c);t.ScrollBar=u,t.ScrollBarV=u,t.ScrollBarH=f,t.VScrollBar=u,t.HScrollBar=f})),ace.define("ace/scrollbar_custom",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],(function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(t,n)};return function(t,n){if("function"!==typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),i=e("./lib/oop"),a=e("./lib/dom"),o=e("./lib/event"),s=e("./lib/event_emitter").EventEmitter;a.importCssString(".ace_editor>.ace_sb-v div, .ace_editor>.ace_sb-h div{\n position: absolute;\n background: rgba(128, 128, 128, 0.6);\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n border: 1px solid #bbb;\n border-radius: 2px;\n z-index: 8;\n}\n.ace_editor>.ace_sb-v, .ace_editor>.ace_sb-h {\n position: absolute;\n z-index: 6;\n background: none;\n overflow: hidden!important;\n}\n.ace_editor>.ace_sb-v {\n z-index: 6;\n right: 0;\n top: 0;\n width: 12px;\n}\n.ace_editor>.ace_sb-v div {\n z-index: 8;\n right: 0;\n width: 100%;\n}\n.ace_editor>.ace_sb-h {\n bottom: 0;\n left: 0;\n height: 12px;\n}\n.ace_editor>.ace_sb-h div {\n bottom: 0;\n height: 100%;\n}\n.ace_editor>.ace_sb_grabbed {\n z-index: 8;\n background: #000;\n}","ace_scrollbar.css",!1);var l=function(){function e(e,t){this.element=a.createElement("div"),this.element.className="ace_sb"+t,this.inner=a.createElement("div"),this.inner.className="",this.element.appendChild(this.inner),this.VScrollWidth=12,this.HScrollHeight=12,e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,o.addMultiMouseDownListener(this.element,[500,300,300],this,"onMouseDown")}return e.prototype.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e,this.coeff=1},e}();i.implement(l.prototype,s);var c=function(e){function t(t,n){var r=e.call(this,t,"-v")||this;return r.scrollTop=0,r.scrollHeight=0,r.parent=t,r.width=r.VScrollWidth,r.renderer=n,r.inner.style.width=r.element.style.width=(r.width||15)+"px",r.$minWidth=0,r}return r(t,e),t.prototype.onMouseDown=function(e,t){if("mousedown"===e&&0===o.getButton(t)&&2!==t.detail){if(t.target===this.inner){var n=this,r=t.clientY,i=t.clientY,a=this.thumbTop;o.capture(this.inner,(function(e){r=e.clientY}),(function(){clearInterval(s)}));var s=setInterval((function(){if(void 0!==r){var e=n.scrollTopFromThumbTop(a+r-i);e!==n.scrollTop&&n._emit("scroll",{data:e})}}),20);return o.preventDefault(t)}var l=t.clientY-this.element.getBoundingClientRect().top-this.thumbHeight/2;return this._emit("scroll",{data:this.scrollTopFromThumbTop(l)}),o.preventDefault(t)}},t.prototype.getHeight=function(){return this.height},t.prototype.scrollTopFromThumbTop=function(e){var t=e*(this.pageHeight-this.viewHeight)/(this.slideHeight-this.thumbHeight);return(t>>=0)<0?t=0:t>this.pageHeight-this.viewHeight&&(t=this.pageHeight-this.viewHeight),t},t.prototype.getWidth=function(){return Math.max(this.isVisible?this.width:0,this.$minWidth||0)},t.prototype.setHeight=function(e){this.height=Math.max(0,e),this.slideHeight=this.height,this.viewHeight=this.height,this.setScrollHeight(this.pageHeight,!0)},t.prototype.setScrollHeight=function(e,t){(this.pageHeight!==e||t)&&(this.pageHeight=e,this.thumbHeight=this.slideHeight*this.viewHeight/this.pageHeight,this.thumbHeight>this.slideHeight&&(this.thumbHeight=this.slideHeight),this.thumbHeight<15&&(this.thumbHeight=15),this.inner.style.height=this.thumbHeight+"px",this.scrollTop>this.pageHeight-this.viewHeight&&(this.scrollTop=this.pageHeight-this.viewHeight,this.scrollTop<0&&(this.scrollTop=0),this._emit("scroll",{data:this.scrollTop})))},t.prototype.setScrollTop=function(e){this.scrollTop=e,e<0&&(e=0),this.thumbTop=e*(this.slideHeight-this.thumbHeight)/(this.pageHeight-this.viewHeight),this.inner.style.top=this.thumbTop+"px"},t}(l);c.prototype.setInnerHeight=c.prototype.setScrollHeight;var u=function(e){function t(t,n){var r=e.call(this,t,"-h")||this;return r.scrollLeft=0,r.scrollWidth=0,r.height=r.HScrollHeight,r.inner.style.height=r.element.style.height=(r.height||12)+"px",r.renderer=n,r}return r(t,e),t.prototype.onMouseDown=function(e,t){if("mousedown"===e&&0===o.getButton(t)&&2!==t.detail){if(t.target===this.inner){var n=this,r=t.clientX,i=t.clientX,a=this.thumbLeft;o.capture(this.inner,(function(e){r=e.clientX}),(function(){clearInterval(s)}));var s=setInterval((function(){if(void 0!==r){var e=n.scrollLeftFromThumbLeft(a+r-i);e!==n.scrollLeft&&n._emit("scroll",{data:e})}}),20);return o.preventDefault(t)}var l=t.clientX-this.element.getBoundingClientRect().left-this.thumbWidth/2;return this._emit("scroll",{data:this.scrollLeftFromThumbLeft(l)}),o.preventDefault(t)}},t.prototype.getHeight=function(){return this.isVisible?this.height:0},t.prototype.scrollLeftFromThumbLeft=function(e){var t=e*(this.pageWidth-this.viewWidth)/(this.slideWidth-this.thumbWidth);return(t>>=0)<0?t=0:t>this.pageWidth-this.viewWidth&&(t=this.pageWidth-this.viewWidth),t},t.prototype.setWidth=function(e){this.width=Math.max(0,e),this.element.style.width=this.width+"px",this.slideWidth=this.width,this.viewWidth=this.width,this.setScrollWidth(this.pageWidth,!0)},t.prototype.setScrollWidth=function(e,t){(this.pageWidth!==e||t)&&(this.pageWidth=e,this.thumbWidth=this.slideWidth*this.viewWidth/this.pageWidth,this.thumbWidth>this.slideWidth&&(this.thumbWidth=this.slideWidth),this.thumbWidth<15&&(this.thumbWidth=15),this.inner.style.width=this.thumbWidth+"px",this.scrollLeft>this.pageWidth-this.viewWidth&&(this.scrollLeft=this.pageWidth-this.viewWidth,this.scrollLeft<0&&(this.scrollLeft=0),this._emit("scroll",{data:this.scrollLeft})))},t.prototype.setScrollLeft=function(e){this.scrollLeft=e,e<0&&(e=0),this.thumbLeft=e*(this.slideWidth-this.thumbWidth)/(this.pageWidth-this.viewWidth),this.inner.style.left=this.thumbLeft+"px"},t}(l);u.prototype.setInnerWidth=u.prototype.setScrollWidth,t.ScrollBar=c,t.ScrollBarV=c,t.ScrollBarH=u,t.VScrollBar=c,t.HScrollBar=u})),ace.define("ace/renderloop",["require","exports","module","ace/lib/event"],(function(e,t,n){"use strict";var r=e("./lib/event"),i=function(){function e(e,t){this.onRender=e,this.pending=!1,this.changes=0,this.$recursionLimit=2,this.window=t||window;var n=this;this._flush=function(e){n.pending=!1;var t=n.changes;if(t&&(r.blockIdle(100),n.changes=0,n.onRender(t)),n.changes){if(n.$recursionLimit--<0)return;n.schedule()}else n.$recursionLimit=2}}return e.prototype.schedule=function(e){this.changes=this.changes|e,this.changes&&!this.pending&&(r.nextFrame(this._flush),this.pending=!0)},e.prototype.clear=function(e){var t=this.changes;return this.changes=0,t},e}();t.RenderLoop=i})),ace.define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/event","ace/lib/useragent","ace/lib/event_emitter"],(function(e,t,n){var r=e("../lib/oop"),i=e("../lib/dom"),a=e("../lib/lang"),o=e("../lib/event"),s=e("../lib/useragent"),l=e("../lib/event_emitter").EventEmitter,c=512,u="function"==typeof ResizeObserver,f=200,d=function(){function e(e){this.el=i.createElement("div"),this.$setMeasureNodeStyles(this.el.style,!0),this.$main=i.createElement("div"),this.$setMeasureNodeStyles(this.$main.style),this.$measureNode=i.createElement("div"),this.$setMeasureNodeStyles(this.$measureNode.style),this.el.appendChild(this.$main),this.el.appendChild(this.$measureNode),e.appendChild(this.el),this.$measureNode.textContent=a.stringRepeat("X",c),this.$characterSize={width:0,height:0},u?this.$addObserver():this.checkForSizeChanges()}return e.prototype.$setMeasureNodeStyles=function(e,t){e.width=e.height="auto",e.left=e.top="0px",e.visibility="hidden",e.position="absolute",e.whiteSpace="pre",s.isIE<8?e["font-family"]="inherit":e.font="inherit",e.overflow=t?"hidden":"visible"},e.prototype.checkForSizeChanges=function(e){if(void 0===e&&(e=this.$measureSizes()),e&&(this.$characterSize.width!==e.width||this.$characterSize.height!==e.height)){this.$measureNode.style.fontWeight="bold";var t=this.$measureSizes();this.$measureNode.style.fontWeight="",this.$characterSize=e,this.charSizes=Object.create(null),this.allowBoldFonts=t&&t.width===e.width&&t.height===e.height,this._emit("changeCharacterSize",{data:e})}},e.prototype.$addObserver=function(){var e=this;this.$observer=new window.ResizeObserver((function(t){e.checkForSizeChanges()})),this.$observer.observe(this.$measureNode)},e.prototype.$pollSizeChanges=function(){if(this.$pollSizeChangesTimer||this.$observer)return this.$pollSizeChangesTimer;var e=this;return this.$pollSizeChangesTimer=o.onIdle((function t(){e.checkForSizeChanges(),o.onIdle(t,500)}),500)},e.prototype.setPolling=function(e){e?this.$pollSizeChanges():this.$pollSizeChangesTimer&&(clearInterval(this.$pollSizeChangesTimer),this.$pollSizeChangesTimer=0)},e.prototype.$measureSizes=function(e){var t={height:(e||this.$measureNode).clientHeight,width:(e||this.$measureNode).clientWidth/c};return 0===t.width||0===t.height?null:t},e.prototype.$measureCharWidth=function(e){return this.$main.textContent=a.stringRepeat(e,c),this.$main.getBoundingClientRect().width/c},e.prototype.getCharacterWidth=function(e){var t=this.charSizes[e];return void 0===t&&(t=this.charSizes[e]=this.$measureCharWidth(e)/this.$characterSize.width),t},e.prototype.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.$observer&&this.$observer.disconnect(),this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el)},e.prototype.$getZoom=function(e){return e&&e.parentElement?(window.getComputedStyle(e).zoom||1)*this.$getZoom(e.parentElement):1},e.prototype.$initTransformMeasureNodes=function(){var e=function(e,t){return["div",{style:"position: absolute;top:"+e+"px;left:"+t+"px;"}]};this.els=i.buildDom([e(0,0),e(f,0),e(0,f),e(f,f)],this.el)},e.prototype.transformCoordinates=function(e,t){e&&(e=a(1/this.$getZoom(this.el),e));function n(e,t,n){var r=e[1]*t[0]-e[0]*t[1];return[(-t[1]*n[0]+t[0]*n[1])/r,(+e[1]*n[0]-e[0]*n[1])/r]}function r(e,t){return[e[0]-t[0],e[1]-t[1]]}function i(e,t){return[e[0]+t[0],e[1]+t[1]]}function a(e,t){return[e*t[0],e*t[1]]}function o(e){var t=e.getBoundingClientRect();return[t.left,t.top]}this.els||this.$initTransformMeasureNodes();var s=o(this.els[0]),l=o(this.els[1]),c=o(this.els[2]),u=o(this.els[3]),d=n(r(u,l),r(u,c),r(i(l,c),i(u,s))),h=a(1+d[0],r(l,s)),p=a(1+d[1],r(c,s));if(t){var v=t,m=d[0]*v[0]/f+d[1]*v[1]/f+1,g=i(a(v[0],h),a(v[1],p));return i(a(1/m/f,g),s)}var y=r(e,s),b=n(r(h,a(d[0],y)),r(p,a(d[1],y)),y);return a(f,b)},e}();d.prototype.$characterSize={width:0,height:0},r.implement(d.prototype,l),t.FontMetrics=d})),ace.define("ace/css/editor-css",["require","exports","module"],(function(e,t,n){n.exports='\n.ace_br1 {border-top-left-radius : 3px;}\n.ace_br2 {border-top-right-radius : 3px;}\n.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}\n.ace_br4 {border-bottom-right-radius: 3px;}\n.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}\n.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}\n.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}\n.ace_br8 {border-bottom-left-radius : 3px;}\n.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}\n.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}\n.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\n\n\n.ace_editor {\n position: relative;\n overflow: hidden;\n padding: 0;\n font: 12px/normal \'Monaco\', \'Menlo\', \'Ubuntu Mono\', \'Consolas\', \'Source Code Pro\', \'source-code-pro\', monospace;\n direction: ltr;\n text-align: left;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\n.ace_scroller {\n position: absolute;\n overflow: hidden;\n top: 0;\n bottom: 0;\n background-color: inherit;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n cursor: text;\n}\n\n.ace_content {\n position: absolute;\n box-sizing: border-box;\n min-width: 100%;\n contain: style size layout;\n font-variant-ligatures: no-common-ligatures;\n}\n\n.ace_keyboard-focus:focus {\n box-shadow: inset 0 0 0 2px #5E9ED6;\n outline: none;\n}\n\n.ace_dragging .ace_scroller:before{\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n content: \'\';\n background: rgba(250, 250, 250, 0.01);\n z-index: 1000;\n}\n.ace_dragging.ace_dark .ace_scroller:before{\n background: rgba(0, 0, 0, 0.01);\n}\n\n.ace_gutter {\n position: absolute;\n overflow : hidden;\n width: auto;\n top: 0;\n bottom: 0;\n left: 0;\n cursor: default;\n z-index: 4;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n contain: style size layout;\n}\n\n.ace_gutter-active-line {\n position: absolute;\n left: 0;\n right: 0;\n}\n\n.ace_scroller.ace_scroll-left:after {\n content: "";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;\n pointer-events: none;\n}\n\n.ace_gutter-cell, .ace_gutter-cell_svg-icons {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n padding-left: 19px;\n padding-right: 6px;\n background-repeat: no-repeat;\n}\n\n.ace_gutter-cell_svg-icons .ace_gutter_annotation {\n margin-left: -14px;\n float: left;\n}\n\n.ace_gutter-cell .ace_gutter_annotation {\n margin-left: -19px;\n float: left;\n}\n\n.ace_gutter-cell.ace_error, .ace_icon.ace_error, .ace_icon.ace_error_fold {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==");\n background-repeat: no-repeat;\n background-position: 2px center;\n}\n\n.ace_gutter-cell.ace_warning, .ace_icon.ace_warning, .ace_icon.ace_warning_fold {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==");\n background-repeat: no-repeat;\n background-position: 2px center;\n}\n\n.ace_gutter-cell.ace_info, .ace_icon.ace_info {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=");\n background-repeat: no-repeat;\n background-position: 2px center;\n}\n.ace_dark .ace_gutter-cell.ace_info, .ace_dark .ace_icon.ace_info {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAJFBMVEUAAAChoaGAgIAqKiq+vr6tra1ZWVmUlJSbm5s8PDxubm56enrdgzg3AAAAAXRSTlMAQObYZgAAAClJREFUeNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC");\n}\n\n.ace_icon_svg.ace_error {\n -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAxNiI+CjxnIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJyZWQiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KPGNpcmNsZSBmaWxsPSJub25lIiBjeD0iOCIgY3k9IjgiIHI9IjciIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPGxpbmUgeDE9IjExIiB5MT0iNSIgeDI9IjUiIHkyPSIxMSIvPgo8bGluZSB4MT0iMTEiIHkxPSIxMSIgeDI9IjUiIHkyPSI1Ii8+CjwvZz4KPC9zdmc+");\n background-color: crimson;\n}\n.ace_icon_svg.ace_warning {\n -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAxNiI+CjxnIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJkYXJrb3JhbmdlIiBzaGFwZS1yZW5kZXJpbmc9Imdlb21ldHJpY1ByZWNpc2lvbiI+Cjxwb2x5Z29uIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIHBvaW50cz0iOCAxIDE1IDE1IDEgMTUgOCAxIi8+CjxyZWN0IHg9IjgiIHk9IjEyIiB3aWR0aD0iMC4wMSIgaGVpZ2h0PSIwLjAxIi8+CjxsaW5lIHgxPSI4IiB5MT0iNiIgeDI9IjgiIHkyPSIxMCIvPgo8L2c+Cjwvc3ZnPg==");\n background-color: darkorange;\n}\n.ace_icon_svg.ace_info {\n -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAxNiI+CjxnIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlPSJibHVlIiBzaGFwZS1yZW5kZXJpbmc9Imdlb21ldHJpY1ByZWNpc2lvbiI+CjxjaXJjbGUgZmlsbD0ibm9uZSIgY3g9IjgiIGN5PSI4IiByPSI3IiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjxwb2x5bGluZSBwb2ludHM9IjggMTEgOCA4Ii8+Cjxwb2x5bGluZSBwb2ludHM9IjkgOCA2IDgiLz4KPGxpbmUgeDE9IjEwIiB5MT0iMTEiIHgyPSI2IiB5Mj0iMTEiLz4KPHJlY3QgeD0iOCIgeT0iNSIgd2lkdGg9IjAuMDEiIGhlaWdodD0iMC4wMSIvPgo8L2c+Cjwvc3ZnPg==");\n background-color: royalblue;\n}\n\n.ace_icon_svg.ace_error_fold {\n -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAxNiIgZmlsbD0ibm9uZSI+CiAgPHBhdGggZD0ibSAxOC45Mjk4NTEsNy44Mjk4MDc2IGMgMC4xNDYzNTMsNi4zMzc0NjA0IC02LjMyMzE0Nyw3Ljc3Nzg0NDQgLTcuNDc3OTEyLDcuNzc3ODQ0NCAtMi4xMDcyNzI2LC0wLjEyODc1IDUuMTE3Njc4LDAuMzU2MjQ5IDUuMDUxNjk4LC03Ljg3MDA2MTggLTAuNjA0NjcyLC04LjAwMzk3MzQ5IC03LjA3NzI3MDYsLTcuNTYzMTE4OSAtNC44NTczLC03LjQzMDM5NTU2IDEuNjA2LC0wLjExNTE0MjI1IDYuODk3NDg1LDEuMjYyNTQ1OTYgNy4yODM1MTQsNy41MjI2MTI5NiB6IiBmaWxsPSJjcmltc29uIiBzdHJva2Utd2lkdGg9IjIiLz4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0ibSA4LjExNDc1NjIsMi4wNTI5ODI4IGMgMy4zNDkxNjk4LDAgNi4wNjQxMzI4LDIuNjc2ODYyNyA2LjA2NDEzMjgsNS45Nzg5NTMgMCwzLjMwMjExMjIgLTIuNzE0OTYzLDUuOTc4OTIwMiAtNi4wNjQxMzI4LDUuOTc4OTIwMiAtMy4zNDkxNDczLDAgLTYuMDY0MTc3MiwtMi42NzY4MDggLTYuMDY0MTc3MiwtNS45Nzg5MjAyIDAuMDA1MzksLTMuMjk5ODg2MSAyLjcxNzI2NTYsLTUuOTczNjQwOCA2LjA2NDE3NzIsLTUuOTc4OTUzIHogbSAwLC0xLjczNTgyNzE5IGMgLTQuMzIxNDgzNiwwIC03LjgyNDc0MDM4LDMuNDU0MDE4NDkgLTcuODI0NzQwMzgsNy43MTQ3ODAxOSAwLDQuMjYwNzI4MiAzLjUwMzI1Njc4LDcuNzE0NzQ1MiA3LjgyNDc0MDM4LDcuNzE0NzQ1MiA0LjMyMTQ0OTgsMCA3LjgyNDY5OTgsLTMuNDU0MDE3IDcuODI0Njk5OCwtNy43MTQ3NDUyIDAsLTIuMDQ2MDkxNCAtMC44MjQzOTIsLTQuMDA4MzY3MiAtMi4yOTE3NTYsLTUuNDU1MTc0NiBDIDEyLjE4MDIyNSwxLjEyOTk2NDggMTAuMTkwMDEzLDAuMzE3MTU1NjEgOC4xMTQ3NTYyLDAuMzE3MTU1NjEgWiBNIDYuOTM3NDU2Myw4LjI0MDU5ODUgNC42NzE4Njg1LDEwLjQ4NTg1MiA2LjAwODY4MTQsMTEuODc2NzI4IDguMzE3MDAzNSw5LjYwMDc5MTEgMTAuNjI1MzM3LDExLjg3NjcyOCAxMS45NjIxMzgsMTAuNDg1ODUyIDkuNjk2NTUwOCw4LjI0MDU5ODUgMTEuOTYyMTM4LDYuMDA2ODA2NiAxMC41NzMyNDYsNC42Mzc0MzM1IDguMzE3MDAzNSw2Ljg3MzQyOTcgNi4wNjA3NjA3LDQuNjM3NDMzNSA0LjY3MTg2ODUsNi4wMDY4MDY2IFoiIGZpbGw9ImNyaW1zb24iIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4=");\n background-color: crimson;\n}\n.ace_icon_svg.ace_warning_fold {\n -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAyMCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC43NzY5IDE0LjczMzdMOC42NTE5MiAyLjQ4MzY5QzguMzI5NDYgMS44Mzg3NyA3LjQwOTEzIDEuODM4NzcgNy4wODY2NyAyLjQ4MzY5TDAuOTYxNjY5IDE0LjczMzdDMC42NzA3NzUgMTUuMzE1NSAxLjA5MzgzIDE2IDEuNzQ0MjkgMTZIMTMuOTk0M0MxNC42NDQ4IDE2IDE1LjA2NzggMTUuMzE1NSAxNC43NzY5IDE0LjczMzdaTTMuMTYwMDcgMTQuMjVMNy44NjkyOSA0LjgzMTU2TDEyLjU3ODUgMTQuMjVIMy4xNjAwN1pNOC43NDQyOSAxMS42MjVWMTMuMzc1SDYuOTk0MjlWMTEuNjI1SDguNzQ0MjlaTTYuOTk0MjkgMTAuNzVWNy4yNUg4Ljc0NDI5VjEwLjc1SDYuOTk0MjlaIiBmaWxsPSIjRUM3MjExIi8+CjxwYXRoIGQ9Ik0xMS4xOTkxIDIuOTUyMzhDMTAuODgwOSAyLjMxNDY3IDEwLjM1MzcgMS44MDUyNiA5LjcwNTUgMS41MDlMMTEuMDQxIDEuMDY5NzhDMTEuNjg4MyAwLjk0OTgxNCAxMi4zMzcgMS4yNzI2MyAxMi42MzE3IDEuODYxNDFMMTcuNjEzNiAxMS44MTYxQzE4LjM1MjcgMTMuMjkyOSAxNy41OTM4IDE1LjA4MDQgMTYuMDE4IDE1LjU3NDVDMTYuNDA0NCAxNC40NTA3IDE2LjMyMzEgMTMuMjE4OCAxNS43OTI0IDEyLjE1NTVMMTEuMTk5MSAyLjk1MjM4WiIgZmlsbD0iI0VDNzIxMSIvPgo8L3N2Zz4=");\n background-color: darkorange;\n}\n\n.ace_scrollbar {\n contain: strict;\n position: absolute;\n right: 0;\n bottom: 0;\n z-index: 6;\n}\n\n.ace_scrollbar-inner {\n position: absolute;\n cursor: text;\n left: 0;\n top: 0;\n}\n\n.ace_scrollbar-v{\n overflow-x: hidden;\n overflow-y: scroll;\n top: 0;\n}\n\n.ace_scrollbar-h {\n overflow-x: scroll;\n overflow-y: hidden;\n left: 0;\n}\n\n.ace_print-margin {\n position: absolute;\n height: 100%;\n}\n\n.ace_text-input {\n position: absolute;\n z-index: 0;\n width: 0.5em;\n height: 1em;\n opacity: 0;\n background: transparent;\n -moz-appearance: none;\n appearance: none;\n border: none;\n resize: none;\n outline: none;\n overflow: hidden;\n font: inherit;\n padding: 0 1px;\n margin: 0 -1px;\n contain: strict;\n -ms-user-select: text;\n -moz-user-select: text;\n -webkit-user-select: text;\n user-select: text;\n /*with `pre-line` chrome inserts   instead of space*/\n white-space: pre!important;\n}\n.ace_text-input.ace_composition {\n background: transparent;\n color: inherit;\n z-index: 1000;\n opacity: 1;\n}\n.ace_composition_placeholder { color: transparent }\n.ace_composition_marker { \n border-bottom: 1px solid;\n position: absolute;\n border-radius: 0;\n margin-top: 1px;\n}\n\n[ace_nocontext=true] {\n transform: none!important;\n filter: none!important;\n clip-path: none!important;\n mask : none!important;\n contain: none!important;\n perspective: none!important;\n mix-blend-mode: initial!important;\n z-index: auto;\n}\n\n.ace_layer {\n z-index: 1;\n position: absolute;\n overflow: hidden;\n /* workaround for chrome bug https://github.com/ajaxorg/ace/issues/2312*/\n word-wrap: normal;\n white-space: pre;\n height: 100%;\n width: 100%;\n box-sizing: border-box;\n /* setting pointer-events: auto; on node under the mouse, which changes\n during scroll, will break mouse wheel scrolling in Safari */\n pointer-events: none;\n}\n\n.ace_gutter-layer {\n position: relative;\n width: auto;\n text-align: right;\n pointer-events: auto;\n height: 1000000px;\n contain: style size layout;\n}\n\n.ace_text-layer {\n font: inherit !important;\n position: absolute;\n height: 1000000px;\n width: 1000000px;\n contain: style size layout;\n}\n\n.ace_text-layer > .ace_line, .ace_text-layer > .ace_line_group {\n contain: style size layout;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n}\n\n.ace_hidpi .ace_text-layer,\n.ace_hidpi .ace_gutter-layer,\n.ace_hidpi .ace_content,\n.ace_hidpi .ace_gutter {\n contain: strict;\n}\n.ace_hidpi .ace_text-layer > .ace_line, \n.ace_hidpi .ace_text-layer > .ace_line_group {\n contain: strict;\n}\n\n.ace_cjk {\n display: inline-block;\n text-align: center;\n}\n\n.ace_cursor-layer {\n z-index: 4;\n}\n\n.ace_cursor {\n z-index: 4;\n position: absolute;\n box-sizing: border-box;\n border-left: 2px solid;\n /* workaround for smooth cursor repaintng whole screen in chrome */\n transform: translatez(0);\n}\n\n.ace_multiselect .ace_cursor {\n border-left-width: 1px;\n}\n\n.ace_slim-cursors .ace_cursor {\n border-left-width: 1px;\n}\n\n.ace_overwrite-cursors .ace_cursor {\n border-left-width: 0;\n border-bottom: 1px solid;\n}\n\n.ace_hidden-cursors .ace_cursor {\n opacity: 0.2;\n}\n\n.ace_hasPlaceholder .ace_hidden-cursors .ace_cursor {\n opacity: 0;\n}\n\n.ace_smooth-blinking .ace_cursor {\n transition: opacity 0.18s;\n}\n\n.ace_animate-blinking .ace_cursor {\n animation-duration: 1000ms;\n animation-timing-function: step-end;\n animation-name: blink-ace-animate;\n animation-iteration-count: infinite;\n}\n\n.ace_animate-blinking.ace_smooth-blinking .ace_cursor {\n animation-duration: 1000ms;\n animation-timing-function: ease-in-out;\n animation-name: blink-ace-animate-smooth;\n}\n \n@keyframes blink-ace-animate {\n from, to { opacity: 1; }\n 60% { opacity: 0; }\n}\n\n@keyframes blink-ace-animate-smooth {\n from, to { opacity: 1; }\n 45% { opacity: 1; }\n 60% { opacity: 0; }\n 85% { opacity: 0; }\n}\n\n.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {\n position: absolute;\n z-index: 3;\n}\n\n.ace_marker-layer .ace_selection {\n position: absolute;\n z-index: 5;\n}\n\n.ace_marker-layer .ace_bracket {\n position: absolute;\n z-index: 6;\n}\n\n.ace_marker-layer .ace_error_bracket {\n position: absolute;\n border-bottom: 1px solid #DE5555;\n border-radius: 0;\n}\n\n.ace_marker-layer .ace_active-line {\n position: absolute;\n z-index: 2;\n}\n\n.ace_marker-layer .ace_selected-word {\n position: absolute;\n z-index: 4;\n box-sizing: border-box;\n}\n\n.ace_line .ace_fold {\n box-sizing: border-box;\n\n display: inline-block;\n height: 11px;\n margin-top: -2px;\n vertical-align: middle;\n\n background-image:\n url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),\n url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=");\n background-repeat: no-repeat, repeat-x;\n background-position: center center, top left;\n color: transparent;\n\n border: 1px solid black;\n border-radius: 2px;\n\n cursor: pointer;\n pointer-events: auto;\n}\n\n.ace_dark .ace_fold {\n}\n\n.ace_fold:hover{\n background-image:\n url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),\n url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC");\n}\n\n.ace_tooltip {\n background-color: #f5f5f5;\n border: 1px solid gray;\n border-radius: 1px;\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\n color: black;\n max-width: 100%;\n padding: 3px 4px;\n position: fixed;\n z-index: 999999;\n box-sizing: border-box;\n cursor: default;\n white-space: pre;\n word-wrap: break-word;\n line-height: normal;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n pointer-events: none;\n}\n\n.ace_tooltip.ace_dark {\n background-color: #636363;\n color: #fff;\n}\n\n.ace_tooltip:focus {\n outline: 1px solid #5E9ED6;\n}\n\n.ace_icon {\n display: inline-block;\n width: 18px;\n vertical-align: top;\n}\n\n.ace_icon_svg {\n display: inline-block;\n width: 12px;\n vertical-align: top;\n -webkit-mask-repeat: no-repeat;\n -webkit-mask-size: 12px;\n -webkit-mask-position: center;\n}\n\n.ace_folding-enabled > .ace_gutter-cell, .ace_folding-enabled > .ace_gutter-cell_svg-icons {\n padding-right: 13px;\n}\n\n.ace_fold-widget {\n box-sizing: border-box;\n\n margin: 0 -12px 0 1px;\n display: none;\n width: 11px;\n vertical-align: top;\n\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42mWKsQ0AMAzC8ixLlrzQjzmBiEjp0A6WwBCSPgKAXoLkqSot7nN3yMwR7pZ32NzpKkVoDBUxKAAAAABJRU5ErkJggg==");\n background-repeat: no-repeat;\n background-position: center;\n\n border-radius: 3px;\n \n border: 1px solid transparent;\n cursor: pointer;\n}\n\n.ace_folding-enabled .ace_fold-widget {\n display: inline-block; \n}\n\n.ace_fold-widget.ace_end {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42m3HwQkAMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==");\n}\n\n.ace_fold-widget.ace_closed {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAOUlEQVR42jXKwQkAMAgDwKwqKD4EwQ26sSOkVWjgIIHAzPiCgaqiqnJHZnKICBERHN194O5b9vbLuAVRL+l0YWnZAAAAAElFTkSuQmCCXA==");\n}\n\n.ace_fold-widget:hover {\n border: 1px solid rgba(0, 0, 0, 0.3);\n background-color: rgba(255, 255, 255, 0.2);\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);\n}\n\n.ace_fold-widget:active {\n border: 1px solid rgba(0, 0, 0, 0.4);\n background-color: rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);\n}\n/**\n * Dark version for fold widgets\n */\n.ace_dark .ace_fold-widget {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC");\n}\n.ace_dark .ace_fold-widget.ace_end {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==");\n}\n.ace_dark .ace_fold-widget.ace_closed {\n background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==");\n}\n.ace_dark .ace_fold-widget:hover {\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);\n background-color: rgba(255, 255, 255, 0.1);\n}\n.ace_dark .ace_fold-widget:active {\n box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);\n}\n\n.ace_inline_button {\n border: 1px solid lightgray;\n display: inline-block;\n margin: -1px 8px;\n padding: 0 5px;\n pointer-events: auto;\n cursor: pointer;\n}\n.ace_inline_button:hover {\n border-color: gray;\n background: rgba(200,200,200,0.2);\n display: inline-block;\n pointer-events: auto;\n}\n\n.ace_fold-widget.ace_invalid {\n background-color: #FFB4B4;\n border-color: #DE5555;\n}\n\n.ace_fade-fold-widgets .ace_fold-widget {\n transition: opacity 0.4s ease 0.05s;\n opacity: 0;\n}\n\n.ace_fade-fold-widgets:hover .ace_fold-widget {\n transition: opacity 0.05s ease 0.05s;\n opacity:1;\n}\n\n.ace_underline {\n text-decoration: underline;\n}\n\n.ace_bold {\n font-weight: bold;\n}\n\n.ace_nobold .ace_bold {\n font-weight: normal;\n}\n\n.ace_italic {\n font-style: italic;\n}\n\n\n.ace_error-marker {\n background-color: rgba(255, 0, 0,0.2);\n position: absolute;\n z-index: 9;\n}\n\n.ace_highlight-marker {\n background-color: rgba(255, 255, 0,0.2);\n position: absolute;\n z-index: 8;\n}\n\n.ace_mobile-menu {\n position: absolute;\n line-height: 1.5;\n border-radius: 4px;\n -ms-user-select: none;\n -moz-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n background: white;\n box-shadow: 1px 3px 2px grey;\n border: 1px solid #dcdcdc;\n color: black;\n}\n.ace_dark > .ace_mobile-menu {\n background: #333;\n color: #ccc;\n box-shadow: 1px 3px 2px grey;\n border: 1px solid #444;\n\n}\n.ace_mobile-button {\n padding: 2px;\n cursor: pointer;\n overflow: hidden;\n}\n.ace_mobile-button:hover {\n background-color: #eee;\n opacity:1;\n}\n.ace_mobile-button:active {\n background-color: #ddd;\n}\n\n.ace_placeholder {\n font-family: arial;\n transform: scale(0.9);\n transform-origin: left;\n white-space: pre;\n opacity: 0.7;\n margin: 0 10px;\n}\n\n.ace_ghost_text {\n opacity: 0.5;\n font-style: italic;\n white-space: pre;\n}'})),ace.define("ace/layer/decorators",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event_emitter"],(function(e,t,n){"use strict";var r=e("../lib/dom"),i=e("../lib/oop"),a=e("../lib/event_emitter").EventEmitter,o=function(){function e(e,t){this.canvas=r.createElement("canvas"),this.renderer=t,this.pixelRatio=1,this.maxHeight=t.layerConfig.maxHeight,this.lineHeight=t.layerConfig.lineHeight,this.canvasHeight=e.parent.scrollHeight,this.heightRatio=this.canvasHeight/this.maxHeight,this.canvasWidth=e.width,this.minDecorationHeight=2*this.pixelRatio|0,this.halfMinDecorationHeight=this.minDecorationHeight/2|0,this.canvas.width=this.canvasWidth,this.canvas.height=this.canvasHeight,this.canvas.style.top="0px",this.canvas.style.right="0px",this.canvas.style.zIndex="7px",this.canvas.style.position="absolute",this.colors={},this.colors.dark={error:"rgba(255, 18, 18, 1)",warning:"rgba(18, 136, 18, 1)",info:"rgba(18, 18, 136, 1)"},this.colors.light={error:"rgb(255,51,51)",warning:"rgb(32,133,72)",info:"rgb(35,68,138)"},e.element.appendChild(this.canvas)}return e.prototype.$updateDecorators=function(e){var t=!0===this.renderer.theme.isDark?this.colors.dark:this.colors.light;e&&(this.maxHeight=e.maxHeight,this.lineHeight=e.lineHeight,this.canvasHeight=e.height,(e.lastRow+1)*this.lineHeightt.priority?1:0}));for(var a=this.renderer.session.$foldData,o=0;othis.canvasHeight&&(d=this.canvasHeight-this.halfMinDecorationHeight),u=Math.round(d-this.halfMinDecorationHeight),f=Math.round(d+this.halfMinDecorationHeight)}n.fillStyle=t[r[o].type]||null,n.fillRect(0,c,this.canvasWidth,f-u)}}var h=this.renderer.session.selection.getCursor();if(h){l=this.compensateFoldRows(h.row,a),c=Math.round((h.row-l)*this.lineHeight*this.heightRatio);n.fillStyle="rgba(0, 0, 0, 0.5)",n.fillRect(0,c,this.canvasWidth,2)}},e.prototype.compensateFoldRows=function(e,t){var n=0;if(t&&t.length>0)for(var r=0;rt[r].start.row&&e=t[r].end.row&&(n+=t[r].end.row-t[r].start.row);return n},e}();i.implement(o.prototype,a),t.Decorator=o})),ace.define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/config","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/scrollbar_custom","ace/scrollbar_custom","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter","ace/css/editor-css","ace/layer/decorators","ace/lib/useragent"],(function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/dom"),a=e("./lib/lang"),o=e("./config"),s=e("./layer/gutter").Gutter,l=e("./layer/marker").Marker,c=e("./layer/text").Text,u=e("./layer/cursor").Cursor,f=e("./scrollbar").HScrollBar,d=e("./scrollbar").VScrollBar,h=e("./scrollbar_custom").HScrollBar,p=e("./scrollbar_custom").VScrollBar,v=e("./renderloop").RenderLoop,m=e("./layer/font_metrics").FontMetrics,g=e("./lib/event_emitter").EventEmitter,y=e("./css/editor-css"),b=e("./layer/decorators").Decorator,x=e("./lib/useragent");i.importCssString(y,"ace_editor.css",!1);var w=function(){function e(e,t){var n=this;this.container=e||i.createElement("div"),i.addCssClass(this.container,"ace_editor"),i.HI_DPI&&i.addCssClass(this.container,"ace_hidpi"),this.setTheme(t),null==o.get("useStrictCSP")&&o.set("useStrictCSP",!1),this.$gutter=i.createElement("div"),this.$gutter.className="ace_gutter",this.container.appendChild(this.$gutter),this.$gutter.setAttribute("aria-hidden",!0),this.scroller=i.createElement("div"),this.scroller.className="ace_scroller",this.container.appendChild(this.scroller),this.content=i.createElement("div"),this.content.className="ace_content",this.scroller.appendChild(this.content),this.$gutterLayer=new s(this.$gutter),this.$gutterLayer.on("changeGutterWidth",this.onGutterResize.bind(this)),this.$markerBack=new l(this.content);var r=this.$textLayer=new c(this.content);this.canvas=r.element,this.$markerFront=new l(this.content),this.$cursorLayer=new u(this.content),this.$horizScroll=!1,this.$vScroll=!1,this.scrollBar=this.scrollBarV=new d(this.container,this),this.scrollBarH=new f(this.container,this),this.scrollBarV.on("scroll",(function(e){n.$scrollAnimation||n.session.setScrollTop(e.data-n.scrollMargin.top)})),this.scrollBarH.on("scroll",(function(e){n.$scrollAnimation||n.session.setScrollLeft(e.data-n.scrollMargin.left)})),this.scrollTop=0,this.scrollLeft=0,this.cursorPos={row:0,column:0},this.$fontMetrics=new m(this.container),this.$textLayer.$setFontMetrics(this.$fontMetrics),this.$textLayer.on("changeCharacterSize",(function(e){n.updateCharacterSize(),n.onResize(!0,n.gutterWidth,n.$size.width,n.$size.height),n._signal("changeCharacterSize",e)})),this.$size={width:0,height:0,scrollerHeight:0,scrollerWidth:0,$dirty:!0},this.layerConfig={width:1,padding:0,firstRow:0,firstRowScreen:0,lastRow:0,lineHeight:0,characterWidth:0,minHeight:1,maxHeight:1,offset:0,height:1,gutterOffset:1},this.scrollMargin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.margin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.$keepTextAreaAtCursor=!x.isIOS,this.$loop=new v(this.$renderChanges.bind(this),this.container.ownerDocument.defaultView),this.$loop.schedule(this.CHANGE_FULL),this.updateCharacterSize(),this.setPadding(4),this.$addResizeObserver(),o.resetOptions(this),o._signal("renderer",this)}return e.prototype.updateCharacterSize=function(){this.$textLayer.allowBoldFonts!=this.$allowBoldFonts&&(this.$allowBoldFonts=this.$textLayer.allowBoldFonts,this.setStyle("ace_nobold",!this.$allowBoldFonts)),this.layerConfig.characterWidth=this.characterWidth=this.$textLayer.getCharacterWidth(),this.layerConfig.lineHeight=this.lineHeight=this.$textLayer.getLineHeight(),this.$updatePrintMargin(),i.setStyle(this.scroller.style,"line-height",this.lineHeight+"px")},e.prototype.setSession=function(e){this.session&&this.session.doc.off("changeNewLineMode",this.onChangeNewLineMode),this.session=e,e&&this.scrollMargin.top&&e.getScrollTop()<=0&&e.setScrollTop(-this.scrollMargin.top),this.$cursorLayer.setSession(e),this.$markerBack.setSession(e),this.$markerFront.setSession(e),this.$gutterLayer.setSession(e),this.$textLayer.setSession(e),e&&(this.$loop.schedule(this.CHANGE_FULL),this.session.$setFontMetrics(this.$fontMetrics),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.onChangeNewLineMode=this.onChangeNewLineMode.bind(this),this.onChangeNewLineMode(),this.session.doc.on("changeNewLineMode",this.onChangeNewLineMode))},e.prototype.updateLines=function(e,t,n){if(void 0===t&&(t=1/0),this.$changedLines?(this.$changedLines.firstRow>e&&(this.$changedLines.firstRow=e),this.$changedLines.lastRowthis.layerConfig.lastRow||this.$loop.schedule(this.CHANGE_LINES)},e.prototype.onChangeNewLineMode=function(){this.$loop.schedule(this.CHANGE_TEXT),this.$textLayer.$updateEolChar(),this.session.$bidiHandler.setEolChar(this.$textLayer.EOL_CHAR)},e.prototype.onChangeTabSize=function(){this.$loop.schedule(this.CHANGE_TEXT|this.CHANGE_MARKER),this.$textLayer.onChangeTabSize()},e.prototype.updateText=function(){this.$loop.schedule(this.CHANGE_TEXT)},e.prototype.updateFull=function(e){e?this.$renderChanges(this.CHANGE_FULL,!0):this.$loop.schedule(this.CHANGE_FULL)},e.prototype.updateFontSize=function(){this.$textLayer.checkForSizeChanges()},e.prototype.$updateSizeAsync=function(){this.$loop.pending?this.$size.$dirty=!0:this.onResize()},e.prototype.onResize=function(e,t,n,r){if(!(this.resizing>2)){this.resizing>0?this.resizing++:this.resizing=e?1:0;var i=this.container;r||(r=i.clientHeight||i.scrollHeight),n||(n=i.clientWidth||i.scrollWidth);var a=this.$updateCachedSize(e,t,n,r);if(this.$resizeTimer&&this.$resizeTimer.cancel(),!this.$size.scrollerHeight||!n&&!r)return this.resizing=0;e&&(this.$gutterLayer.$padding=null),e?this.$renderChanges(a|this.$changes,!0):this.$loop.schedule(a|this.$changes),this.resizing&&(this.resizing=0),this.scrollBarH.scrollLeft=this.scrollBarV.scrollTop=null,this.$customScrollbar&&this.$updateCustomScrollbar(!0)}},e.prototype.$updateCachedSize=function(e,t,n,r){r-=this.$extraHeight||0;var a=0,o=this.$size,s={width:o.width,height:o.height,scrollerHeight:o.scrollerHeight,scrollerWidth:o.scrollerWidth};if(r&&(e||o.height!=r)&&(o.height=r,a|=this.CHANGE_SIZE,o.scrollerHeight=o.height,this.$horizScroll&&(o.scrollerHeight-=this.scrollBarH.getHeight()),this.scrollBarV.setHeight(o.scrollerHeight),this.scrollBarV.element.style.bottom=this.scrollBarH.getHeight()+"px",a|=this.CHANGE_SCROLL),n&&(e||o.width!=n)){a|=this.CHANGE_SIZE,o.width=n,null==t&&(t=this.$showGutter?this.$gutter.offsetWidth:0),this.gutterWidth=t,i.setStyle(this.scrollBarH.element.style,"left",t+"px"),i.setStyle(this.scroller.style,"left",t+this.margin.left+"px"),o.scrollerWidth=Math.max(0,n-t-this.scrollBarV.getWidth()-this.margin.h),i.setStyle(this.$gutter.style,"left",this.margin.left+"px");var l=this.scrollBarV.getWidth()+"px";i.setStyle(this.scrollBarH.element.style,"right",l),i.setStyle(this.scroller.style,"right",l),i.setStyle(this.scroller.style,"bottom",this.scrollBarH.getHeight()),this.scrollBarH.setWidth(o.scrollerWidth),(this.session&&this.session.getUseWrapMode()&&this.adjustWrapLimit()||e)&&(a|=this.CHANGE_FULL)}return o.$dirty=!n||!r,a&&this._signal("resize",s),a},e.prototype.onGutterResize=function(e){var t=this.$showGutter?e:0;t!=this.gutterWidth&&(this.$changes|=this.$updateCachedSize(!0,t,this.$size.width,this.$size.height)),this.session.getUseWrapMode()&&this.adjustWrapLimit()||this.$size.$dirty?this.$loop.schedule(this.CHANGE_FULL):this.$computeLayerConfig()},e.prototype.adjustWrapLimit=function(){var e=this.$size.scrollerWidth-2*this.$padding,t=Math.floor(e/this.characterWidth);return this.session.adjustWrapLimit(t,this.$showPrintMargin&&this.$printMarginColumn)},e.prototype.setAnimatedScroll=function(e){this.setOption("animatedScroll",e)},e.prototype.getAnimatedScroll=function(){return this.$animatedScroll},e.prototype.setShowInvisibles=function(e){this.setOption("showInvisibles",e),this.session.$bidiHandler.setShowInvisibles(e)},e.prototype.getShowInvisibles=function(){return this.getOption("showInvisibles")},e.prototype.getDisplayIndentGuides=function(){return this.getOption("displayIndentGuides")},e.prototype.setDisplayIndentGuides=function(e){this.setOption("displayIndentGuides",e)},e.prototype.getHighlightIndentGuides=function(){return this.getOption("highlightIndentGuides")},e.prototype.setHighlightIndentGuides=function(e){this.setOption("highlightIndentGuides",e)},e.prototype.setShowPrintMargin=function(e){this.setOption("showPrintMargin",e)},e.prototype.getShowPrintMargin=function(){return this.getOption("showPrintMargin")},e.prototype.setPrintMarginColumn=function(e){this.setOption("printMarginColumn",e)},e.prototype.getPrintMarginColumn=function(){return this.getOption("printMarginColumn")},e.prototype.getShowGutter=function(){return this.getOption("showGutter")},e.prototype.setShowGutter=function(e){return this.setOption("showGutter",e)},e.prototype.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},e.prototype.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},e.prototype.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},e.prototype.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},e.prototype.$updatePrintMargin=function(){if(this.$showPrintMargin||this.$printMarginEl){if(!this.$printMarginEl){var e=i.createElement("div");e.className="ace_layer ace_print-margin-layer",this.$printMarginEl=i.createElement("div"),this.$printMarginEl.className="ace_print-margin",e.appendChild(this.$printMarginEl),this.content.insertBefore(e,this.content.firstChild)}var t=this.$printMarginEl.style;t.left=Math.round(this.characterWidth*this.$printMarginColumn+this.$padding)+"px",t.visibility=this.$showPrintMargin?"visible":"hidden",this.session&&-1==this.session.$wrap&&this.adjustWrapLimit()}},e.prototype.getContainerElement=function(){return this.container},e.prototype.getMouseEventTarget=function(){return this.scroller},e.prototype.getTextAreaContainer=function(){return this.container},e.prototype.$moveTextAreaToCursor=function(){if(!this.$isMousePressed){var e=this.textarea.style,t=this.$composition;if(this.$keepTextAreaAtCursor||t){var n=this.$cursorLayer.$pixelPos;if(n){t&&t.markerRange&&(n=this.$cursorLayer.getPixelPosition(t.markerRange.start,!0));var r=this.layerConfig,a=n.top,o=n.left;a-=r.offset;var s=t&&t.useTextareaForIME||x.isMobile?this.lineHeight:1;if(a<0||a>r.height-s)i.translate(this.textarea,0,0);else{var l=1,c=this.$size.height-s;if(t)if(t.useTextareaForIME){var u=this.textarea.value;l=this.characterWidth*this.session.$getStringScreenWidth(u)[0]}else a+=this.lineHeight+2;else a+=this.lineHeight;(o-=this.scrollLeft)>this.$size.scrollerWidth-l&&(o=this.$size.scrollerWidth-l),o+=this.gutterWidth+this.margin.left,i.setStyle(e,"height",s+"px"),i.setStyle(e,"width",l+"px"),i.translate(this.textarea,Math.min(o,this.$size.scrollerWidth-l),Math.min(a,c))}}}else i.translate(this.textarea,-100,0)}},e.prototype.getFirstVisibleRow=function(){return this.layerConfig.firstRow},e.prototype.getFirstFullyVisibleRow=function(){return this.layerConfig.firstRow+(0===this.layerConfig.offset?0:1)},e.prototype.getLastFullyVisibleRow=function(){var e=this.layerConfig,t=e.lastRow;return this.session.documentToScreenRow(t,0)*e.lineHeight-this.session.getScrollTop()>e.height-e.lineHeight?t-1:t},e.prototype.getLastVisibleRow=function(){return this.layerConfig.lastRow},e.prototype.setPadding=function(e){this.$padding=e,this.$textLayer.setPadding(e),this.$cursorLayer.setPadding(e),this.$markerFront.setPadding(e),this.$markerBack.setPadding(e),this.$loop.schedule(this.CHANGE_FULL),this.$updatePrintMargin()},e.prototype.setScrollMargin=function(e,t,n,r){var i=this.scrollMargin;i.top=0|e,i.bottom=0|t,i.right=0|r,i.left=0|n,i.v=i.top+i.bottom,i.h=i.left+i.right,i.top&&this.scrollTop<=0&&this.session&&this.session.setScrollTop(-i.top),this.updateFull()},e.prototype.setMargin=function(e,t,n,r){var i=this.margin;i.top=0|e,i.bottom=0|t,i.right=0|r,i.left=0|n,i.v=i.top+i.bottom,i.h=i.left+i.right,this.$updateCachedSize(!0,this.gutterWidth,this.$size.width,this.$size.height),this.updateFull()},e.prototype.getHScrollBarAlwaysVisible=function(){return this.$hScrollBarAlwaysVisible},e.prototype.setHScrollBarAlwaysVisible=function(e){this.setOption("hScrollBarAlwaysVisible",e)},e.prototype.getVScrollBarAlwaysVisible=function(){return this.$vScrollBarAlwaysVisible},e.prototype.setVScrollBarAlwaysVisible=function(e){this.setOption("vScrollBarAlwaysVisible",e)},e.prototype.$updateScrollBarV=function(){var e=this.layerConfig.maxHeight,t=this.$size.scrollerHeight;!this.$maxLines&&this.$scrollPastEnd&&(e-=(t-this.lineHeight)*this.$scrollPastEnd,this.scrollTop>e-t&&(e=this.scrollTop+t,this.scrollBarV.scrollTop=null)),this.scrollBarV.setScrollHeight(e+this.scrollMargin.v),this.scrollBarV.setScrollTop(this.scrollTop+this.scrollMargin.top)},e.prototype.$updateScrollBarH=function(){this.scrollBarH.setScrollWidth(this.layerConfig.width+2*this.$padding+this.scrollMargin.h),this.scrollBarH.setScrollLeft(this.scrollLeft+this.scrollMargin.left)},e.prototype.freeze=function(){this.$frozen=!0},e.prototype.unfreeze=function(){this.$frozen=!1},e.prototype.$renderChanges=function(e,t){if(this.$changes&&(e|=this.$changes,this.$changes=0),this.session&&this.container.offsetWidth&&!this.$frozen&&(e||t)){if(this.$size.$dirty)return this.$changes|=e,this.onResize(!0);this.lineHeight||this.$textLayer.checkForSizeChanges(),this._signal("beforeRender",e),this.session&&this.session.$bidiHandler&&this.session.$bidiHandler.updateCharacterWidths(this.$fontMetrics);var n=this.layerConfig;if(e&this.CHANGE_FULL||e&this.CHANGE_SIZE||e&this.CHANGE_TEXT||e&this.CHANGE_LINES||e&this.CHANGE_SCROLL||e&this.CHANGE_H_SCROLL){if(e|=this.$computeLayerConfig()|this.$loop.clear(),n.firstRow!=this.layerConfig.firstRow&&n.firstRowScreen==this.layerConfig.firstRowScreen){var r=this.scrollTop+(n.firstRow-Math.max(this.layerConfig.firstRow,0))*this.lineHeight;r>0&&(this.scrollTop=r,e|=this.CHANGE_SCROLL,e|=this.$computeLayerConfig()|this.$loop.clear())}n=this.layerConfig,this.$updateScrollBarV(),e&this.CHANGE_H_SCROLL&&this.$updateScrollBarH(),i.translate(this.content,-this.scrollLeft,-n.offset);var a=n.width+2*this.$padding+"px",o=n.minHeight+"px";i.setStyle(this.content.style,"width",a),i.setStyle(this.content.style,"height",o)}if(e&this.CHANGE_H_SCROLL&&(i.translate(this.content,-this.scrollLeft,-n.offset),this.scroller.className=this.scrollLeft<=0?"ace_scroller ":"ace_scroller ace_scroll-left ",this.enableKeyboardAccessibility&&(this.scroller.className+=this.keyboardFocusClassName)),e&this.CHANGE_FULL)return this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),void this._signal("afterRender",e);if(e&this.CHANGE_SCROLL)return this.$changedLines=null,e&this.CHANGE_TEXT||e&this.CHANGE_LINES?this.$textLayer.update(n):this.$textLayer.scrollLines(n),this.$showGutter&&(e&this.CHANGE_GUTTER||e&this.CHANGE_LINES?this.$gutterLayer.update(n):this.$gutterLayer.scrollLines(n)),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n),this.$markerBack.update(n),this.$markerFront.update(n),this.$cursorLayer.update(n),this.$moveTextAreaToCursor(),void this._signal("afterRender",e);e&this.CHANGE_TEXT?(this.$changedLines=null,this.$textLayer.update(n),this.$showGutter&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)):e&this.CHANGE_LINES?((this.$updateLines()||e&this.CHANGE_GUTTER&&this.$showGutter)&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)):e&this.CHANGE_TEXT||e&this.CHANGE_GUTTER?(this.$showGutter&&this.$gutterLayer.update(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)):e&this.CHANGE_CURSOR&&(this.$highlightGutterLine&&this.$gutterLayer.updateLineHighlight(n),this.$customScrollbar&&this.$scrollDecorator.$updateDecorators(n)),e&this.CHANGE_CURSOR&&(this.$cursorLayer.update(n),this.$moveTextAreaToCursor()),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_FRONT)&&this.$markerFront.update(n),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_BACK)&&this.$markerBack.update(n),this._signal("afterRender",e)}else this.$changes|=e},e.prototype.$autosize=function(){var e=this.session.getScreenLength()*this.lineHeight,t=this.$maxLines*this.lineHeight,n=Math.min(t,Math.max((this.$minLines||1)*this.lineHeight,e))+this.scrollMargin.v+(this.$extraHeight||0);this.$horizScroll&&(n+=this.scrollBarH.getHeight()),this.$maxPixelHeight&&n>this.$maxPixelHeight&&(n=this.$maxPixelHeight);var r=!(n<=2*this.lineHeight)&&e>t;if(n!=this.desiredHeight||this.$size.height!=this.desiredHeight||r!=this.$vScroll){r!=this.$vScroll&&(this.$vScroll=r,this.scrollBarV.setVisible(r));var i=this.container.clientWidth;this.container.style.height=n+"px",this.$updateCachedSize(!0,this.$gutterWidth,i,n),this.desiredHeight=n,this._signal("autosize")}},e.prototype.$computeLayerConfig=function(){var e=this.session,t=this.$size,n=t.height<=2*this.lineHeight,r=this.session.getScreenLength()*this.lineHeight,i=this.$getLongestLine(),a=!n&&(this.$hScrollBarAlwaysVisible||t.scrollerWidth-i-2*this.$padding<0),o=this.$horizScroll!==a;o&&(this.$horizScroll=a,this.scrollBarH.setVisible(a));var s=this.$vScroll;this.$maxLines&&this.lineHeight>1&&this.$autosize();var l=t.scrollerHeight+this.lineHeight,c=!this.$maxLines&&this.$scrollPastEnd?(t.scrollerHeight-this.lineHeight)*this.$scrollPastEnd:0;r+=c;var u=this.scrollMargin;this.session.setScrollTop(Math.max(-u.top,Math.min(this.scrollTop,r-t.scrollerHeight+u.bottom))),this.session.setScrollLeft(Math.max(-u.left,Math.min(this.scrollLeft,i+2*this.$padding-t.scrollerWidth+u.right)));var f=!n&&(this.$vScrollBarAlwaysVisible||t.scrollerHeight-r+c<0||this.scrollTop>u.top),d=s!==f;d&&(this.$vScroll=f,this.scrollBarV.setVisible(f));var h,p,v=this.scrollTop%this.lineHeight,m=Math.ceil(l/this.lineHeight)-1,g=Math.max(0,Math.round((this.scrollTop-v)/this.lineHeight)),y=g+m,b=this.lineHeight;g=e.screenToDocumentRow(g,0);var x=e.getFoldLine(g);x&&(g=x.start.row),h=e.documentToScreenRow(g,0),p=e.getRowLength(g)*b,y=Math.min(e.screenToDocumentRow(y,0),e.getLength()-1),l=t.scrollerHeight+e.getRowLength(y)*b+p,v=this.scrollTop-h*b;var w=0;return(this.layerConfig.width!=i||o)&&(w=this.CHANGE_H_SCROLL),(o||d)&&(w|=this.$updateCachedSize(!0,this.gutterWidth,t.width,t.height),this._signal("scrollbarVisibilityChanged"),d&&(i=this.$getLongestLine())),this.layerConfig={width:i,padding:this.$padding,firstRow:g,firstRowScreen:h,lastRow:y,lineHeight:b,characterWidth:this.characterWidth,minHeight:l,maxHeight:r,offset:v,gutterOffset:b?Math.max(0,Math.ceil((v+t.height-t.scrollerHeight)/b)):0,height:this.$size.scrollerHeight},this.session.$bidiHandler&&this.session.$bidiHandler.setContentWidth(i-this.$padding),w},e.prototype.$updateLines=function(){if(this.$changedLines){var e=this.$changedLines.firstRow,t=this.$changedLines.lastRow;this.$changedLines=null;var n=this.layerConfig;if(!(e>n.lastRow+1)&&!(tthis.$textLayer.MAX_LINE_LENGTH&&(e=this.$textLayer.MAX_LINE_LENGTH+30),Math.max(this.$size.scrollerWidth-2*this.$padding,Math.round(e*this.characterWidth))},e.prototype.updateFrontMarkers=function(){this.$markerFront.setMarkers(this.session.getMarkers(!0)),this.$loop.schedule(this.CHANGE_MARKER_FRONT)},e.prototype.updateBackMarkers=function(){this.$markerBack.setMarkers(this.session.getMarkers()),this.$loop.schedule(this.CHANGE_MARKER_BACK)},e.prototype.addGutterDecoration=function(e,t){this.$gutterLayer.addGutterDecoration(e,t)},e.prototype.removeGutterDecoration=function(e,t){this.$gutterLayer.removeGutterDecoration(e,t)},e.prototype.updateBreakpoints=function(e){this.$loop.schedule(this.CHANGE_GUTTER)},e.prototype.setAnnotations=function(e){this.$gutterLayer.setAnnotations(e),this.$loop.schedule(this.CHANGE_GUTTER)},e.prototype.updateCursor=function(){this.$loop.schedule(this.CHANGE_CURSOR)},e.prototype.hideCursor=function(){this.$cursorLayer.hideCursor()},e.prototype.showCursor=function(){this.$cursorLayer.showCursor()},e.prototype.scrollSelectionIntoView=function(e,t,n){this.scrollCursorIntoView(e,n),this.scrollCursorIntoView(t,n)},e.prototype.scrollCursorIntoView=function(e,t,n){if(0!==this.$size.scrollerHeight){var r=this.$cursorLayer.getPixelPosition(e),i=r.left,a=r.top,o=n&&n.top||0,s=n&&n.bottom||0;this.$scrollAnimation&&(this.$stopAnimation=!0);var l=this.$scrollAnimation?this.session.getScrollTop():this.scrollTop;l+o>a?(t&&l+o>a+this.lineHeight&&(a-=t*this.$size.scrollerHeight),0===a&&(a=-this.scrollMargin.top),this.session.setScrollTop(a)):l+this.$size.scrollerHeight-s=1-this.scrollMargin.top||(t>0&&this.session.getScrollTop()+this.$size.scrollerHeight-this.layerConfig.maxHeight<-1+this.scrollMargin.bottom||(e<0&&this.session.getScrollLeft()>=1-this.scrollMargin.left||(e>0&&this.session.getScrollLeft()+this.$size.scrollerWidth-this.layerConfig.width<-1+this.scrollMargin.right||void 0)))},e.prototype.pixelToScreenCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,a=i/this.characterWidth,o=Math.floor((t+this.scrollTop-n.top)/this.lineHeight),s=this.$blockCursor?Math.floor(a):Math.round(a);return{row:o,column:s,side:a-s>0?1:-1,offsetX:i}},e.prototype.screenToTextCoordinates=function(e,t){var n;if(this.$hasCssTransforms){n={top:0,left:0};var r=this.$fontMetrics.transformCoordinates([e,t]);e=r[1]-this.gutterWidth-this.margin.left,t=r[0]}else n=this.scroller.getBoundingClientRect();var i=e+this.scrollLeft-n.left-this.$padding,a=i/this.characterWidth,o=this.$blockCursor?Math.floor(a):Math.round(a),s=Math.floor((t+this.scrollTop-n.top)/this.lineHeight);return this.session.screenToDocumentPosition(s,Math.max(o,0),i)},e.prototype.textToScreenCoordinates=function(e,t){var n=this.scroller.getBoundingClientRect(),r=this.session.documentToScreenPosition(e,t),i=this.$padding+(this.session.$bidiHandler.isBidiRow(r.row,e)?this.session.$bidiHandler.getPosLeft(r.column):Math.round(r.column*this.characterWidth)),a=r.row*this.lineHeight;return{pageX:n.left+i-this.scrollLeft,pageY:n.top+a-this.scrollTop}},e.prototype.visualizeFocus=function(){i.addCssClass(this.container,"ace_focus")},e.prototype.visualizeBlur=function(){i.removeCssClass(this.container,"ace_focus")},e.prototype.showComposition=function(e){this.$composition=e,e.cssText||(e.cssText=this.textarea.style.cssText),void 0==e.useTextareaForIME&&(e.useTextareaForIME=this.$useTextareaForIME),this.$useTextareaForIME?(i.addCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText="",this.$moveTextAreaToCursor(),this.$cursorLayer.element.style.display="none"):e.markerId=this.session.addMarker(e.markerRange,"ace_composition_marker","text")},e.prototype.setCompositionText=function(e){var t=this.session.selection.cursor;this.addToken(e,"composition_placeholder",t.row,t.column),this.$moveTextAreaToCursor()},e.prototype.hideComposition=function(){if(this.$composition){this.$composition.markerId&&this.session.removeMarker(this.$composition.markerId),i.removeCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText=this.$composition.cssText;var e=this.session.selection.cursor;this.removeExtraToken(e.row,e.column),this.$composition=null,this.$cursorLayer.element.style.display=""}},e.prototype.setGhostText=function(e,t){var n=this.session.selection.cursor,r=t||{row:n.row,column:n.column};this.removeGhostText();var i=e.split("\n");this.addToken(i[0],"ghost_text",r.row,r.column),this.$ghostText={text:e,position:{row:r.row,column:r.column}},i.length>1&&(this.$ghostTextWidget={text:i.slice(1).join("\n"),row:r.row,column:r.column,className:"ace_ghost_text"},this.session.widgetManager.addLineWidget(this.$ghostTextWidget))},e.prototype.removeGhostText=function(){if(this.$ghostText){var e=this.$ghostText.position;this.removeExtraToken(e.row,e.column),this.$ghostTextWidget&&(this.session.widgetManager.removeLineWidget(this.$ghostTextWidget),this.$ghostTextWidget=null),this.$ghostText=null}},e.prototype.addToken=function(e,t,n,r){var i=this.session;i.bgTokenizer.lines[n]=null;var a={type:t,value:e},o=i.getTokens(n);if(null!=r&&o.length)for(var s=0,l=0;l1||Math.abs(e.$size.height-r)>1?e.$resizeTimer.delay():e.$resizeTimer.cancel()})),this.$resizeObserver.observe(this.container)}},e}();w.prototype.CHANGE_CURSOR=1,w.prototype.CHANGE_MARKER=2,w.prototype.CHANGE_GUTTER=4,w.prototype.CHANGE_SCROLL=8,w.prototype.CHANGE_LINES=16,w.prototype.CHANGE_TEXT=32,w.prototype.CHANGE_SIZE=64,w.prototype.CHANGE_MARKER_BACK=128,w.prototype.CHANGE_MARKER_FRONT=256,w.prototype.CHANGE_FULL=512,w.prototype.CHANGE_H_SCROLL=1024,w.prototype.$changes=0,w.prototype.$padding=null,w.prototype.$frozen=!1,w.prototype.STEPS=8,r.implement(w.prototype,g),o.defineOptions(w.prototype,"renderer",{useResizeObserver:{set:function(e){!e&&this.$resizeObserver?(this.$resizeObserver.disconnect(),this.$resizeTimer.cancel(),this.$resizeTimer=this.$resizeObserver=null):e&&!this.$resizeObserver&&this.$addResizeObserver()}},animatedScroll:{initialValue:!1},showInvisibles:{set:function(e){this.$textLayer.setShowInvisibles(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!1},showPrintMargin:{set:function(){this.$updatePrintMargin()},initialValue:!0},printMarginColumn:{set:function(){this.$updatePrintMargin()},initialValue:80},printMargin:{set:function(e){"number"==typeof e&&(this.$printMarginColumn=e),this.$showPrintMargin=!!e,this.$updatePrintMargin()},get:function(){return this.$showPrintMargin&&this.$printMarginColumn}},showGutter:{set:function(e){this.$gutter.style.display=e?"block":"none",this.$loop.schedule(this.CHANGE_FULL),this.onGutterResize()},initialValue:!0},useSvgGutterIcons:{set:function(e){this.$gutterLayer.$useSvgGutterIcons=e},initialValue:!1},showFoldedAnnotations:{set:function(e){this.$gutterLayer.$showFoldedAnnotations=e},initialValue:!1},fadeFoldWidgets:{set:function(e){i.setCssClass(this.$gutter,"ace_fade-fold-widgets",e)},initialValue:!1},showFoldWidgets:{set:function(e){this.$gutterLayer.setShowFoldWidgets(e),this.$loop.schedule(this.CHANGE_GUTTER)},initialValue:!0},displayIndentGuides:{set:function(e){this.$textLayer.setDisplayIndentGuides(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!0},highlightIndentGuides:{set:function(e){1==this.$textLayer.setHighlightIndentGuides(e)?this.$textLayer.$highlightIndentGuide():this.$textLayer.$clearActiveIndentGuide(this.$textLayer.$lines.cells)},initialValue:!0},highlightGutterLine:{set:function(e){this.$gutterLayer.setHighlightGutterLine(e),this.$loop.schedule(this.CHANGE_GUTTER)},initialValue:!0},hScrollBarAlwaysVisible:{set:function(e){this.$hScrollBarAlwaysVisible&&this.$horizScroll||this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},vScrollBarAlwaysVisible:{set:function(e){this.$vScrollBarAlwaysVisible&&this.$vScroll||this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},fontSize:{set:function(e){"number"==typeof e&&(e+="px"),this.container.style.fontSize=e,this.updateFontSize()},initialValue:12},fontFamily:{set:function(e){this.container.style.fontFamily=e,this.updateFontSize()}},maxLines:{set:function(e){this.updateFull()}},minLines:{set:function(e){this.$minLines<562949953421311||(this.$minLines=0),this.updateFull()}},maxPixelHeight:{set:function(e){this.updateFull()},initialValue:0},scrollPastEnd:{set:function(e){e=+e||0,this.$scrollPastEnd!=e&&(this.$scrollPastEnd=e,this.$loop.schedule(this.CHANGE_SCROLL))},initialValue:0,handlesSet:!0},fixedWidthGutter:{set:function(e){this.$gutterLayer.$fixedWidth=!!e,this.$loop.schedule(this.CHANGE_GUTTER)}},customScrollbar:{set:function(e){this.$updateCustomScrollbar(e)},initialValue:!1},theme:{set:function(e){this.setTheme(e)},get:function(){return this.$themeId||this.theme},initialValue:"./theme/textmate",handlesSet:!0},hasCssTransforms:{},useTextareaForIME:{initialValue:!x.isMobile&&!x.isIE}}),t.VirtualRenderer=w})),ace.define("ace/worker/worker_client",["require","exports","module","ace/lib/oop","ace/lib/net","ace/lib/event_emitter","ace/config"],(function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/net"),a=e("../lib/event_emitter").EventEmitter,o=e("../config");function s(e){if("undefined"==typeof Worker)return{postMessage:function(){},terminate:function(){}};if(o.get("loadWorkerFromBlob")){var t=function(e){var t="importScripts('"+i.qualifyURL(e)+"');";try{return new Blob([t],{type:"application/javascript"})}catch(r){var n=new(window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder);return n.append(t),n.getBlob("application/javascript")}}(e),n=(window.URL||window.webkitURL).createObjectURL(t);return new Worker(n)}return new Worker(e)}var l=function(e){e.postMessage||(e=this.$createWorkerFromOldConfig.apply(this,arguments)),this.$worker=e,this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.onMessage=this.onMessage.bind(this),this.callbackId=1,this.callbacks={},this.$worker.onmessage=this.onMessage};(function(){r.implement(this,a),this.$createWorkerFromOldConfig=function(t,n,r,i,a){if(e.nameToUrl&&!e.toUrl&&(e.toUrl=e.nameToUrl),o.get("packaged")||!e.toUrl)i=i||o.moduleUrl(n,"worker");else{var l=this.$normalizePath;i=i||l(e.toUrl("ace/worker/worker.js",null,"_"));var c={};t.forEach((function(t){c[t]=l(e.toUrl(t,null,"_").replace(/(\.js)?(\?.*)?$/,""))}))}return this.$worker=s(i),a&&this.send("importScripts",a),this.$worker.postMessage({init:!0,tlns:c,module:n,classname:r}),this.$worker},this.onMessage=function(e){var t=e.data;switch(t.type){case"event":this._signal(t.name,{data:t.data});break;case"call":var n=this.callbacks[t.id];n&&(n(t.data),delete this.callbacks[t.id]);break;case"error":this.reportError(t.data);break;case"log":window.console&&console.log&&console.log.apply(console,t.data)}},this.reportError=function(e){window.console&&console.error&&console.error(e)},this.$normalizePath=function(e){return i.qualifyURL(e)},this.terminate=function(){this._signal("terminate",{}),this.deltaQueue=null,this.$worker.terminate(),this.$worker.onerror=function(e){e.preventDefault()},this.$worker=null,this.$doc&&this.$doc.off("change",this.changeListener),this.$doc=null},this.send=function(e,t){this.$worker.postMessage({command:e,args:t})},this.call=function(e,t,n){if(n){var r=this.callbackId++;this.callbacks[r]=n,t.push(r)}this.send(e,t)},this.emit=function(e,t){try{t.data&&t.data.err&&(t.data.err={message:t.data.err.message,stack:t.data.err.stack,code:t.data.err.code}),this.$worker&&this.$worker.postMessage({event:e,data:{data:t.data}})}catch(n){console.error(n.stack)}},this.attachToDocument=function(e){this.$doc&&this.terminate(),this.$doc=e,this.call("setValue",[e.getValue()]),e.on("change",this.changeListener,!0)},this.changeListener=function(e){this.deltaQueue||(this.deltaQueue=[],setTimeout(this.$sendDeltaQueue,0)),"insert"==e.action?this.deltaQueue.push(e.start,e.lines):this.deltaQueue.push(e.start,e.end)},this.$sendDeltaQueue=function(){var e=this.deltaQueue;e&&(this.deltaQueue=null,e.length>50&&e.length>this.$doc.getLength()>>1?this.call("setValue",[this.$doc.getValue()]):this.emit("change",{data:e}))}}).call(l.prototype);t.UIWorkerClient=function(e,t,n){var r=null,i=!1,s=Object.create(a),c=[],u=new l({messageBuffer:c,terminate:function(){},postMessage:function(e){c.push(e),r&&(i?setTimeout(f):f())}});u.setEmitSync=function(e){i=e};var f=function(){var e=c.shift();e.command?r[e.command].apply(r,e.args):e.event&&s._signal(e.event,e.data)};return s.postMessage=function(e){u.onMessage({data:e})},s.callback=function(e,t){this.postMessage({type:"call",id:t,data:e})},s.emit=function(e,t){this.postMessage({type:"event",name:e,data:t})},o.loadModule(["worker",t],(function(e){for(r=new e[n](s);c.length;)f()})),u},t.WorkerClient=l,t.createWorker=s})),ace.define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"],(function(e,t,n){"use strict";var r=e("./range").Range,i=e("./lib/event_emitter").EventEmitter,a=e("./lib/oop"),o=function(){function e(e,t,n,r,i,a){var o=this;this.length=t,this.session=e,this.doc=e.getDocument(),this.mainClass=i,this.othersClass=a,this.$onUpdate=this.onUpdate.bind(this),this.doc.on("change",this.$onUpdate,!0),this.$others=r,this.$onCursorChange=function(){setTimeout((function(){o.onCursorChange()}))},this.$pos=n;var s=e.getUndoManager().$undoStack||e.getUndoManager().$undostack||{length:-1};this.$undoStackDepth=s.length,this.setup(),e.selection.on("changeCursor",this.$onCursorChange)}return e.prototype.setup=function(){var e=this,t=this.doc,n=this.session;this.selectionBefore=n.selection.toJSON(),n.selection.inMultiSelectMode&&n.selection.toSingleRange(),this.pos=t.createAnchor(this.$pos.row,this.$pos.column);var i=this.pos;i.$insertRight=!0,i.detach(),i.markerId=n.addMarker(new r(i.row,i.column,i.row,i.column+this.length),this.mainClass,null,!1),this.others=[],this.$others.forEach((function(n){var r=t.createAnchor(n.row,n.column);r.$insertRight=!0,r.detach(),e.others.push(r)})),n.setUndoSelect(!1)},e.prototype.showOtherMarkers=function(){if(!this.othersActive){var e=this.session,t=this;this.othersActive=!0,this.others.forEach((function(n){n.markerId=e.addMarker(new r(n.row,n.column,n.row,n.column+t.length),t.othersClass,null,!1)}))}},e.prototype.hideOtherMarkers=function(){if(this.othersActive){this.othersActive=!1;for(var e=0;e=this.pos.column&&t.start.column<=this.pos.column+this.length+1,a=t.start.column-this.pos.column;if(this.updateAnchors(e),i&&(this.length+=n),i&&!this.session.$fromUndo)if("insert"===e.action)for(var o=this.others.length-1;o>=0;o--){var s={row:(l=this.others[o]).row,column:l.column+a};this.doc.insertMergedLines(s,e.lines)}else if("remove"===e.action)for(o=this.others.length-1;o>=0;o--){var l;s={row:(l=this.others[o]).row,column:l.column+a};this.doc.remove(new r(s.row,s.column,s.row,s.column-n))}this.$updating=!1,this.updateMarkers()}},e.prototype.updateAnchors=function(e){this.pos.onChange(e);for(var t=this.others.length;t--;)this.others[t].onChange(e);this.updateMarkers()},e.prototype.updateMarkers=function(){if(!this.$updating){var e=this,t=this.session,n=function(n,i){t.removeMarker(n.markerId),n.markerId=t.addMarker(new r(n.row,n.column,n.row,n.column+e.length),i,null,!1)};n(this.pos,this.mainClass);for(var i=this.others.length;i--;)n(this.others[i],this.othersClass)}},e.prototype.onCursorChange=function(e){if(!this.$updating&&this.session){var t=this.session.selection.getCursor();t.row===this.pos.row&&t.column>=this.pos.column&&t.column<=this.pos.column+this.length?(this.showOtherMarkers(),this._emit("cursorEnter",e)):(this.hideOtherMarkers(),this._emit("cursorLeave",e))}},e.prototype.detach=function(){this.session.removeMarker(this.pos&&this.pos.markerId),this.hideOtherMarkers(),this.doc.off("change",this.$onUpdate),this.session.selection.off("changeCursor",this.$onCursorChange),this.session.setUndoSelect(!0),this.session=null},e.prototype.cancel=function(){if(-1!==this.$undoStackDepth){for(var e=this.session.getUndoManager(),t=(e.$undoStack||e.$undostack).length-this.$undoStackDepth,n=0;n1?e.multiSelect.joinSelections():e.multiSelect.splitIntoLines()},bindKey:{win:"Ctrl-Alt-L",mac:"Ctrl-Alt-L"},readOnly:!0},{name:"splitSelectionIntoLines",description:"Split into lines",exec:function(e){e.multiSelect.splitIntoLines()},readOnly:!0},{name:"alignCursors",description:"Align cursors",exec:function(e){e.alignCursors()},bindKey:{win:"Ctrl-Alt-A",mac:"Ctrl-Alt-A"},scrollIntoView:"cursor"},{name:"findAll",description:"Find all",exec:function(e){e.findAll()},bindKey:{win:"Ctrl-Alt-K",mac:"Ctrl-Alt-G"},scrollIntoView:"cursor",readOnly:!0}],t.multiSelectCommands=[{name:"singleSelection",description:"Single selection",bindKey:"esc",exec:function(e){e.exitMultiSelectMode()},scrollIntoView:"cursor",readOnly:!0,isAvailable:function(e){return e&&e.inMultiSelectMode}}];var r=e("../keyboard/hash_handler").HashHandler;t.keyboardHandler=new r(t.multiSelectCommands)})),ace.define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"],(function(e,t,n){var r=e("./range_list").RangeList,i=e("./range").Range,a=e("./selection").Selection,o=e("./mouse/multi_select_handler").onMouseDown,s=e("./lib/event"),l=e("./lib/lang"),c=e("./commands/multi_select_commands");t.commands=c.defaultCommands.concat(c.multiSelectCommands);var u=new(0,e("./search").Search);var f=e("./edit_session").EditSession;(function(){this.getSelectionMarkers=function(){return this.$selectionMarkers}}).call(f.prototype),function(){this.ranges=null,this.rangeList=null,this.addRange=function(e,t){if(e){if(!this.inMultiSelectMode&&0===this.rangeCount){var n=this.toOrientedRange();if(this.rangeList.add(n),this.rangeList.add(e),2!=this.rangeList.ranges.length)return this.rangeList.removeAll(),t||this.fromOrientedRange(e);this.rangeList.removeAll(),this.rangeList.add(n),this.$onAddRange(n)}e.cursor||(e.cursor=e.end);var r=this.rangeList.add(e);return this.$onAddRange(e),r.length&&this.$onRemoveRange(r),this.rangeCount>1&&!this.inMultiSelectMode&&(this._signal("multiSelect"),this.inMultiSelectMode=!0,this.session.$undoSelect=!1,this.rangeList.attach(this.session)),t||this.fromOrientedRange(e)}},this.toSingleRange=function(e){e=e||this.ranges[0];var t=this.rangeList.removeAll();t.length&&this.$onRemoveRange(t),e&&this.fromOrientedRange(e)},this.substractPoint=function(e){var t=this.rangeList.substractPoint(e);if(t)return this.$onRemoveRange(t),t[0]},this.mergeOverlappingRanges=function(){var e=this.rangeList.merge();e.length&&this.$onRemoveRange(e)},this.$onAddRange=function(e){this.rangeCount=this.rangeList.ranges.length,this.ranges.unshift(e),this._signal("addRange",{range:e})},this.$onRemoveRange=function(e){if(this.rangeCount=this.rangeList.ranges.length,1==this.rangeCount&&this.inMultiSelectMode){var t=this.rangeList.ranges.pop();e.push(t),this.rangeCount=0}for(var n=e.length;n--;){var r=this.ranges.indexOf(e[n]);this.ranges.splice(r,1)}this._signal("removeRange",{ranges:e}),0===this.rangeCount&&this.inMultiSelectMode&&(this.inMultiSelectMode=!1,this._signal("singleSelect"),this.session.$undoSelect=!0,this.rangeList.detach(this.session)),(t=t||this.ranges[0])&&!t.isEqual(this.getRange())&&this.fromOrientedRange(t)},this.$initRangeList=function(){this.rangeList||(this.rangeList=new r,this.ranges=[],this.rangeCount=0)},this.getAllRanges=function(){return this.rangeCount?this.rangeList.ranges.concat():[this.getRange()]},this.splitIntoLines=function(){for(var e=this.ranges.length?this.ranges:[this.getRange()],t=[],n=0;n1){var e=this.rangeList.ranges,t=e[e.length-1],n=i.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(n,t.cursor==t.start)}else{var r=this.session.documentToScreenPosition(this.cursor),a=this.session.documentToScreenPosition(this.anchor);this.rectangularRangeBlock(r,a).forEach(this.addRange,this)}},this.rectangularRangeBlock=function(e,t,n){var r=[],a=e.column0;)y--;if(y>0)for(var b=0;r[b].isEmpty();)b++;for(var x=y;x>=b;x--)r[x].isEmpty()&&r.splice(x,1)}return r}}.call(a.prototype);var d=e("./editor").Editor;function h(e){e.$multiselectOnSessionChange||(e.$onAddRange=e.$onAddRange.bind(e),e.$onRemoveRange=e.$onRemoveRange.bind(e),e.$onMultiSelect=e.$onMultiSelect.bind(e),e.$onSingleSelect=e.$onSingleSelect.bind(e),e.$multiselectOnSessionChange=t.onSessionChange.bind(e),e.$checkMultiselectChange=e.$checkMultiselectChange.bind(e),e.$multiselectOnSessionChange(e),e.on("changeSession",e.$multiselectOnSessionChange),e.on("mousedown",o),e.commands.addCommands(c.defaultCommands),function(e){if(!e.textInput)return;var t=e.textInput.getElement(),n=!1;function r(t){n&&(e.renderer.setMouseCursor(""),n=!1)}s.addListener(t,"keydown",(function(t){var i=18==t.keyCode&&!(t.ctrlKey||t.shiftKey||t.metaKey);e.$blockSelectEnabled&&i?n||(e.renderer.setMouseCursor("crosshair"),n=!0):n&&r()}),e),s.addListener(t,"keyup",r,e),s.addListener(t,"blur",r,e)}(e))}(function(){this.updateSelectionMarkers=function(){this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.addSelectionMarker=function(e){e.cursor||(e.cursor=e.end);var t=this.getSelectionStyle();return e.marker=this.session.addMarker(e,"ace_selection",t),this.session.$selectionMarkers.push(e),this.session.selectionMarkerCount=this.session.$selectionMarkers.length,e},this.removeSelectionMarker=function(e){if(e.marker){this.session.removeMarker(e.marker);var t=this.session.$selectionMarkers.indexOf(e);-1!=t&&this.session.$selectionMarkers.splice(t,1),this.session.selectionMarkerCount=this.session.$selectionMarkers.length}},this.removeSelectionMarkers=function(e){for(var t=this.session.$selectionMarkers,n=e.length;n--;){var r=e[n];if(r.marker){this.session.removeMarker(r.marker);var i=t.indexOf(r);-1!=i&&t.splice(i,1)}}this.session.selectionMarkerCount=t.length},this.$onAddRange=function(e){this.addSelectionMarker(e.range),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onRemoveRange=function(e){this.removeSelectionMarkers(e.ranges),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onMultiSelect=function(e){this.inMultiSelectMode||(this.inMultiSelectMode=!0,this.setStyle("ace_multiselect"),this.keyBinding.addKeyboardHandler(c.keyboardHandler),this.commands.setDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers())},this.$onSingleSelect=function(e){this.session.multiSelect.inVirtualMode||(this.inMultiSelectMode=!1,this.unsetStyle("ace_multiselect"),this.keyBinding.removeKeyboardHandler(c.keyboardHandler),this.commands.removeDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers(),this._emit("changeSelection"))},this.$onMultiSelectExec=function(e){var t=e.command,n=e.editor;if(n.multiSelect){if(t.multiSelectAction)"forEach"==t.multiSelectAction?r=n.forEachSelection(t,e.args):"forEachLine"==t.multiSelectAction?r=n.forEachSelection(t,e.args,!0):"single"==t.multiSelectAction?(n.exitMultiSelectMode(),r=t.exec(n,e.args||{})):r=t.multiSelectAction(n,e.args||{});else{var r=t.exec(n,e.args||{});n.multiSelect.addRange(n.multiSelect.toOrientedRange()),n.multiSelect.mergeOverlappingRanges()}return r}},this.forEachSelection=function(e,t,n){if(!this.inVirtualSelectionMode){var r,i=n&&n.keepOrder,o=1==n||n&&n.$byLines,s=this.session,l=this.selection,c=l.rangeList,u=(i?l:c).ranges;if(!u.length)return e.exec?e.exec(this,t||{}):e(this,t||{});var f=l._eventRegistry;l._eventRegistry={};var d=new a(s);this.inVirtualSelectionMode=!0;for(var h=u.length;h--;){if(o)for(;h>0&&u[h].start.row==u[h-1].end.row;)h--;d.fromOrientedRange(u[h]),d.index=h,this.selection=s.selection=d;var p=e.exec?e.exec(this,t||{}):e(this,t||{});r||void 0===p||(r=p),d.toOrientedRange(u[h])}d.detach(),this.selection=s.selection=l,this.inVirtualSelectionMode=!1,l._eventRegistry=f,l.mergeOverlappingRanges(),l.ranges[0]&&l.fromOrientedRange(l.ranges[0]);var v=this.renderer.$scrollAnimation;return this.onCursorChange(),this.onSelectionChange(),v&&v.from==v.to&&this.renderer.animateScrolling(v.from),r}},this.exitMultiSelectMode=function(){this.inMultiSelectMode&&!this.inVirtualSelectionMode&&this.multiSelect.toSingleRange()},this.getSelectedText=function(){var e="";if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){for(var t=this.multiSelect.rangeList.ranges,n=[],r=0;ro&&(o=n.column),ru?e.insert(r,l.stringRepeat(" ",a-u)):e.remove(new i(r.row,r.column,r.row,r.column-a+u)),t.start.column=t.end.column=o,t.start.row=t.end.row=r.row,t.cursor=t.end})),t.fromOrientedRange(n[0]),this.renderer.updateCursor(),this.renderer.updateBackMarkers()}else{var u=this.selection.getRange(),f=u.start.row,d=u.end.row,h=f==d;if(h){var p,v=this.session.getLength();do{p=this.session.getLine(d)}while(/[=:]/.test(p)&&++d0);f<0&&(f=0),d>=v&&(d=v-1)}var m=this.session.removeFullLines(f,d);m=this.$reAlignText(m,h),this.session.insert({row:f,column:0},m.join("\n")+"\n"),h||(u.start.column=0,u.end.column=m[m.length-1].length),this.selection.setRange(u)}},this.$reAlignText=function(e,t){var n,r,i,a=!0,o=!0;return e.map((function(e){var t=e.match(/(\s*)(.*?)(\s*)([=:].*)/);return t?null==n?(n=t[1].length,r=t[2].length,i=t[3].length,t):(n+r+i!=t[1].length+t[2].length+t[3].length&&(o=!1),n!=t[1].length&&(a=!1),n>t[1].length&&(n=t[1].length),rt[3].length&&(i=t[3].length),t):[e]})).map(t?c:a?o?function(e){return e[2]?s(n+r-e[2].length)+e[2]+s(i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}:c:function(e){return e[2]?s(n)+e[2]+s(i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]});function s(e){return l.stringRepeat(" ",e)}function c(e){return e[2]?s(n)+e[2]+s(r-e[2].length+i)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}}}).call(d.prototype),t.onSessionChange=function(e){var t=e.session;t&&!t.multiSelect&&(t.$selectionMarkers=[],t.selection.$initRangeList(),t.multiSelect=t.selection),this.multiSelect=t&&t.multiSelect;var n=e.oldSession;n&&(n.multiSelect.off("addRange",this.$onAddRange),n.multiSelect.off("removeRange",this.$onRemoveRange),n.multiSelect.off("multiSelect",this.$onMultiSelect),n.multiSelect.off("singleSelect",this.$onSingleSelect),n.multiSelect.lead.off("change",this.$checkMultiselectChange),n.multiSelect.anchor.off("change",this.$checkMultiselectChange)),t&&(t.multiSelect.on("addRange",this.$onAddRange),t.multiSelect.on("removeRange",this.$onRemoveRange),t.multiSelect.on("multiSelect",this.$onMultiSelect),t.multiSelect.on("singleSelect",this.$onSingleSelect),t.multiSelect.lead.on("change",this.$checkMultiselectChange),t.multiSelect.anchor.on("change",this.$checkMultiselectChange)),t&&this.inMultiSelectMode!=t.selection.inMultiSelectMode&&(t.selection.inMultiSelectMode?this.$onMultiSelect():this.$onSingleSelect())},t.MultiSelect=h,e("./config").defineOptions(d.prototype,"editor",{enableMultiselect:{set:function(e){h(this),e?this.on("mousedown",o):this.off("mousedown",o)},value:!0},enableBlockSelect:{set:function(e){this.$blockSelectEnabled=e},value:!0}})})),ace.define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"],(function(e,t,n){"use strict";var r=e("../../range").Range,i=t.FoldMode=function(){};(function(){this.foldingStartMarker=null,this.foldingStopMarker=null,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);return this.foldingStartMarker.test(r)?"start":"markbeginend"==t&&this.foldingStopMarker&&this.foldingStopMarker.test(r)?"end":""},this.getFoldWidgetRange=function(e,t,n){return null},this.indentationBlock=function(e,t,n){var i=/\S/,a=e.getLine(t),o=a.search(i);if(-1!=o){for(var s=n||a.length,l=e.getLength(),c=t,u=t;++tc){var h=e.getLine(u).length;return new r(c,s,u,h)}}},this.openingBracketBlock=function(e,t,n,i,a){var o={row:n,column:i+1},s=e.$findClosingBracket(t,o,a);if(s){var l=e.foldWidgets[s.row];return null==l&&(l=e.getFoldWidget(s.row)),"start"==l&&s.row>o.row&&(s.row--,s.column=e.getLine(s.row).length),r.fromPoints(o,s)}},this.closingBracketBlock=function(e,t,n,i,a){var o={row:n,column:i},s=e.$findOpeningBracket(t,o);if(s)return s.column++,o.column--,r.fromPoints(s,o)}}).call(i.prototype)})),ace.define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range","ace/config"],(function(e,t,n){"use strict";var r=e("../line_widgets").LineWidgets,i=e("../lib/dom"),a=e("../range").Range,o=e("../config").nls;t.showErrorMarker=function(e,t){var n=e.session;n.widgetManager||(n.widgetManager=new r(n),n.widgetManager.attach(e));var s=e.getCursorPosition(),l=s.row,c=n.widgetManager.getWidgetsAtRow(l).filter((function(e){return"errorMarker"==e.type}))[0];c?c.destroy():l-=t;var u,f=function(e,t,n){var r=e.getAnnotations().sort(a.comparePoints);if(r.length){var i=function(e,t,n){for(var r=0,i=e.length-1;r<=i;){var a=r+i>>1,o=n(t,e[a]);if(o>0)r=a+1;else{if(!(o<0))return a;i=a-1}}return-(r+1)}(r,{row:t,column:-1},a.comparePoints);i<0&&(i=-i-1),i>=r.length?i=n>0?0:r.length-1:0===i&&n<0&&(i=r.length-1);var o=r[i];if(o&&n){if(o.row===t){do{o=r[i+=n]}while(o&&o.row===t);if(!o)return r.slice()}var s=[];t=o.row;do{s[n<0?"unshift":"push"](o),o=r[i+=n]}while(o&&o.row==t);return s.length&&s}}}(n,l,t);if(f){var d=f[0];s.column=(d.pos&&"number"!=typeof d.column?d.pos.sc:d.column)||0,s.row=d.row,u=e.renderer.$gutterLayer.$annotations[s.row]}else{if(c)return;u={text:[o("Looks good!")],className:"ace_ok"}}e.session.unfold(s.row),e.selection.moveToPosition(s);var h={row:s.row,fixedWidth:!0,coverGutter:!0,el:i.createElement("div"),type:"errorMarker"},p=h.el.appendChild(i.createElement("div")),v=h.el.appendChild(i.createElement("div"));v.className="error_widget_arrow "+u.className;var m=e.renderer.$cursorLayer.getPixelPosition(s).left;v.style.left=m+e.renderer.gutterWidth-5+"px",h.el.className="error_widget_wrapper",p.className="error_widget "+u.className,p.innerHTML=u.text.join("
"),p.appendChild(i.createElement("div"));var g=function(e,t,n){if(0===t&&("esc"===n||"return"===n))return h.destroy(),{command:"null"}};h.destroy=function(){e.$mouseHandler.isMousePressed||(e.keyBinding.removeKeyboardHandler(g),n.widgetManager.removeLineWidget(h),e.off("changeSelection",h.destroy),e.off("changeSession",h.destroy),e.off("mouseup",h.destroy),e.off("change",h.destroy))},e.keyBinding.addKeyboardHandler(g),e.on("changeSelection",h.destroy),e.on("changeSession",h.destroy),e.on("mouseup",h.destroy),e.on("change",h.destroy),e.session.widgetManager.addLineWidget(h),h.el.onmousedown=e.focus.bind(e),e.renderer.scrollCursorIntoView(null,.5,{bottom:h.el.offsetHeight})},i.importCssString("\n .error_widget_wrapper {\n background: inherit;\n color: inherit;\n border:none\n }\n .error_widget {\n border-top: solid 2px;\n border-bottom: solid 2px;\n margin: 5px 0;\n padding: 10px 40px;\n white-space: pre-wrap;\n }\n .error_widget.ace_error, .error_widget_arrow.ace_error{\n border-color: #ff5a5a\n }\n .error_widget.ace_warning, .error_widget_arrow.ace_warning{\n border-color: #F1D817\n }\n .error_widget.ace_info, .error_widget_arrow.ace_info{\n border-color: #5a5a5a\n }\n .error_widget.ace_ok, .error_widget_arrow.ace_ok{\n border-color: #5aaa5a\n }\n .error_widget_arrow {\n position: absolute;\n border: solid 5px;\n border-top-color: transparent!important;\n border-right-color: transparent!important;\n border-left-color: transparent!important;\n top: -5px;\n }\n","error_marker.css",!1)})),ace.define("ace/ace",["require","exports","module","ace/lib/dom","ace/range","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config","ace/loader_build"],(function(e,t,n){"use strict";e("./loader_build")(t);var r=e("./lib/dom"),i=e("./range").Range,a=e("./editor").Editor,o=e("./edit_session").EditSession,s=e("./undomanager").UndoManager,l=e("./virtual_renderer").VirtualRenderer;e("./worker/worker_client"),e("./keyboard/hash_handler"),e("./placeholder"),e("./multi_select"),e("./mode/folding/fold_mode"),e("./theme/textmate"),e("./ext/error_marker"),t.config=e("./config"),t.edit=function(e,n){if("string"==typeof e){var i=e;if(!(e=document.getElementById(i)))throw new Error("ace.edit can't find div #"+i)}if(e&&e.env&&e.env.editor instanceof a)return e.env.editor;var o="";if(e&&/input|textarea/i.test(e.tagName)){var s=e;o=s.value,e=r.createElement("pre"),s.parentNode.replaceChild(e,s)}else e&&(o=e.textContent,e.innerHTML="");var c=t.createEditSession(o),u=new a(new l(e),c,n),f={document:c,editor:u,onResize:u.resize.bind(u,null)};return s&&(f.textarea=s),u.on("destroy",(function(){f.editor.container.env=null})),u.container.env=u.env=f,u},t.createEditSession=function(e,t){var n=new o(e,t);return n.setUndoManager(new s),n},t.Range=i,t.Editor=a,t.EditSession=o,t.UndoManager=s,t.VirtualRenderer=l,t.version=t.config.version})),ace.require(["ace/ace"],(function(t){t&&(t.config.init(!0),t.define=ace.define);var n=function(){return this}();for(var r in n||"undefined"==typeof window||(n=window),n||"undefined"==typeof self||(n=self),n.ace||(n.ace=t),t)t.hasOwnProperty(r)&&(n.ace[r]=t[r]);n.ace.default=n.ace,e&&(e.exports=n.ace)}))},30027:function(e,t,n){e=n.nmd(e),ace.define("ace/snippets",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event_emitter","ace/lib/lang","ace/range","ace/range_list","ace/keyboard/hash_handler","ace/tokenizer","ace/clipboard","ace/editor"],(function(e,t,n){"use strict";var r=e("./lib/dom"),i=e("./lib/oop"),a=e("./lib/event_emitter").EventEmitter,o=e("./lib/lang"),s=e("./range").Range,l=e("./range_list").RangeList,c=e("./keyboard/hash_handler").HashHandler,u=e("./tokenizer").Tokenizer,f=e("./clipboard"),d={CURRENT_WORD:function(e){return e.session.getTextRange(e.session.getWordRange())},SELECTION:function(e,t,n){var r=e.session.getTextRange();return n?r.replace(/\n\r?([ \t]*\S)/g,"\n"+n+"$1"):r},CURRENT_LINE:function(e){return e.session.getLine(e.getCursorPosition().row)},PREV_LINE:function(e){return e.session.getLine(e.getCursorPosition().row-1)},LINE_INDEX:function(e){return e.getCursorPosition().row},LINE_NUMBER:function(e){return e.getCursorPosition().row+1},SOFT_TABS:function(e){return e.session.getUseSoftTabs()?"YES":"NO"},TAB_SIZE:function(e){return e.session.getTabSize()},CLIPBOARD:function(e){return f.getText&&f.getText()},FILENAME:function(e){return/[^/\\]*$/.exec(this.FILEPATH(e))[0]},FILENAME_BASE:function(e){return/[^/\\]*$/.exec(this.FILEPATH(e))[0].replace(/\.[^.]*$/,"")},DIRECTORY:function(e){return this.FILEPATH(e).replace(/[^/\\]*$/,"")},FILEPATH:function(e){return"/not implemented.txt"},WORKSPACE_NAME:function(){return"Unknown"},FULLNAME:function(){return"Unknown"},BLOCK_COMMENT_START:function(e){var t=e.session.$mode||{};return t.blockComment&&t.blockComment.start||""},BLOCK_COMMENT_END:function(e){var t=e.session.$mode||{};return t.blockComment&&t.blockComment.end||""},LINE_COMMENT:function(e){return(e.session.$mode||{}).lineCommentStart||""},CURRENT_YEAR:h.bind(null,{year:"numeric"}),CURRENT_YEAR_SHORT:h.bind(null,{year:"2-digit"}),CURRENT_MONTH:h.bind(null,{month:"numeric"}),CURRENT_MONTH_NAME:h.bind(null,{month:"long"}),CURRENT_MONTH_NAME_SHORT:h.bind(null,{month:"short"}),CURRENT_DATE:h.bind(null,{day:"2-digit"}),CURRENT_DAY_NAME:h.bind(null,{weekday:"long"}),CURRENT_DAY_NAME_SHORT:h.bind(null,{weekday:"short"}),CURRENT_HOUR:h.bind(null,{hour:"2-digit",hour12:!1}),CURRENT_MINUTE:h.bind(null,{minute:"2-digit"}),CURRENT_SECOND:h.bind(null,{second:"2-digit"})};function h(e){var t=(new Date).toLocaleString("en-us",e);return 1==t.length?"0"+t:t}d.SELECTED_TEXT=d.SELECTION;var p=function(){function e(){this.snippetMap={},this.snippetNameMap={},this.variables=d}return e.prototype.getTokenizer=function(){return e.$tokenizer||this.createTokenizer()},e.prototype.createTokenizer=function(){function t(e){return e=e.substr(1),/^\d+$/.test(e)?[{tabstopId:parseInt(e,10)}]:[{text:e}]}function n(e){return"(?:[^\\\\"+e+"]|\\\\.)"}var r={regex:"/("+n("/")+"+)/",onMatch:function(e,t,n){var r=n[0];return r.fmtString=!0,r.guard=e.slice(1,-1),r.flag="",""},next:"formatString"};return e.$tokenizer=new u({start:[{regex:/\\./,onMatch:function(e,t,n){var r=e[1];return("}"==r&&n.length||-1!="`$\\".indexOf(r))&&(e=r),[e]}},{regex:/}/,onMatch:function(e,t,n){return[n.length?n.shift():e]}},{regex:/\$(?:\d+|\w+)/,onMatch:t},{regex:/\$\{[\dA-Z_a-z]+/,onMatch:function(e,n,r){var i=t(e.substr(1));return r.unshift(i[0]),i},next:"snippetVar"},{regex:/\n/,token:"newline",merge:!1}],snippetVar:[{regex:"\\|"+n("\\|")+"*\\|",onMatch:function(e,t,n){var r=e.slice(1,-1).replace(/\\[,|\\]|,/g,(function(e){return 2==e.length?e[1]:"\0"})).split("\0").map((function(e){return{value:e}}));return n[0].choices=r,[r[0]]},next:"start"},r,{regex:"([^:}\\\\]|\\\\.)*:?",token:"",next:"start"}],formatString:[{regex:/:/,onMatch:function(e,t,n){return n.length&&n[0].expectElse?(n[0].expectElse=!1,n[0].ifEnd={elseEnd:n[0]},[n[0].ifEnd]):":"}},{regex:/\\./,onMatch:function(e,t,n){var r=e[1];return"}"==r&&n.length||-1!="`$\\".indexOf(r)?e=r:"n"==r?e="\n":"t"==r?e="\t":-1!="ulULE".indexOf(r)&&(e={changeCase:r,local:r>"a"}),[e]}},{regex:"/\\w*}",onMatch:function(e,t,n){var r=n.shift();return r&&(r.flag=e.slice(1,-1)),this.next=r&&r.tabstopId?"start":"",[r||e]},next:"start"},{regex:/\$(?:\d+|\w+)/,onMatch:function(e,t,n){return[{text:e.slice(1)}]}},{regex:/\${\w+/,onMatch:function(e,t,n){var r={text:e.slice(2)};return n.unshift(r),[r]},next:"formatStringVar"},{regex:/\n/,token:"newline",merge:!1},{regex:/}/,onMatch:function(e,t,n){var r=n.shift();return this.next=r&&r.tabstopId?"start":"",[r||e]},next:"start"}],formatStringVar:[{regex:/:\/\w+}/,onMatch:function(e,t,n){return n[0].formatFunction=e.slice(2,-1),[n.shift()]},next:"formatString"},r,{regex:/:[\?\-+]?/,onMatch:function(e,t,n){"+"==e[1]&&(n[0].ifEnd=n[0]),"?"==e[1]&&(n[0].expectElse=!0)},next:"formatString"},{regex:"([^:}\\\\]|\\\\.)*:?",token:"",next:"formatString"}]}),e.$tokenizer},e.prototype.tokenizeTmSnippet=function(e,t){return this.getTokenizer().getLineTokens(e,t).tokens.map((function(e){return e.value||e}))},e.prototype.getVariableValue=function(e,t,n){if(/^\d+$/.test(t))return(this.variables.__||{})[t]||"";if(/^[A-Z]\d+$/.test(t))return(this.variables[t[0]+"__"]||{})[t.substr(1)]||"";if(t=t.replace(/^TM_/,""),!this.variables.hasOwnProperty(t))return"";var r=this.variables[t];return"function"==typeof r&&(r=this.variables[t](e,t,n)),null==r?"":r},e.prototype.tmStrFormat=function(e,t,n){if(!t.fmt)return e;var r=t.flag||"",i=t.guard;i=new RegExp(i,r.replace(/[^gim]/g,""));var a="string"==typeof t.fmt?this.tokenizeTmSnippet(t.fmt,"formatString"):t.fmt,o=this,s=e.replace(i,(function(){var e=o.variables.__;o.variables.__=[].slice.call(arguments);for(var t=o.resolveVariables(a,n),r="E",i=0;i=0&&a.splice(o,1)}}e.content?i(e):Array.isArray(e)&&e.forEach(i)},e.prototype.parseSnippetFile=function(e){e=e.replace(/\r/g,"");for(var t,n=[],r={},i=/^#.*|^({[\s\S]*})\s*$|^(\S+) (.*)$|^((?:\n*\t.*)+)/gm;t=i.exec(e);){if(t[1])try{r=JSON.parse(t[1]),n.push(r)}catch(l){}if(t[4])r.content=t[4].replace(/^\t/gm,""),n.push(r),r={};else{var a=t[2],o=t[3];if("regex"==a){var s=/\/((?:[^\/\\]|\\.)*)|$/g;r.guard=s.exec(o)[1],r.trigger=s.exec(o)[1],r.endTrigger=s.exec(o)[1],r.endGuard=s.exec(o)[1]}else"snippet"==a?(r.tabTrigger=o.match(/^\S*/)[0],r.name||(r.name=o)):a&&(r[a]=o)}}return n},e.prototype.getSnippetByName=function(e,t){var n,r=this.snippetNameMap;return this.getActiveScopes(t).some((function(t){var i=r[t];return i&&(n=i[e]),!!n}),this),n},e}();i.implement(p.prototype,a);var v=function(e,t,n){void 0===n&&(n={});var r=e.getCursorPosition(),i=e.session.getLine(r.row),a=e.session.getTabString(),o=i.match(/^\s*/)[0];r.column1?(y=t[t.length-1].length,g+=t.length-1):y+=e.length,b+=e}else e&&(e.start?e.end={row:g,column:y}:e.start={row:g,column:y})})),{text:b,tabstops:l,tokens:s}},m=function(){function e(e){if(this.index=0,this.ranges=[],this.tabstops=[],e.tabstopManager)return e.tabstopManager;e.tabstopManager=this,this.$onChange=this.onChange.bind(this),this.$onChangeSelection=o.delayedCall(this.onChangeSelection.bind(this)).schedule,this.$onChangeSession=this.onChangeSession.bind(this),this.$onAfterExec=this.onAfterExec.bind(this),this.attach(e)}return e.prototype.attach=function(e){this.$openTabstops=null,this.selectedTabstop=null,this.editor=e,this.session=e.session,this.editor.on("change",this.$onChange),this.editor.on("changeSelection",this.$onChangeSelection),this.editor.on("changeSession",this.$onChangeSession),this.editor.commands.on("afterExec",this.$onAfterExec),this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler)},e.prototype.detach=function(){this.tabstops.forEach(this.removeTabstopMarkers,this),this.ranges.length=0,this.tabstops.length=0,this.selectedTabstop=null,this.editor.off("change",this.$onChange),this.editor.off("changeSelection",this.$onChangeSelection),this.editor.off("changeSession",this.$onChangeSession),this.editor.commands.off("afterExec",this.$onAfterExec),this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler),this.editor.tabstopManager=null,this.session=null,this.editor=null},e.prototype.onChange=function(e){for(var t="r"==e.action[0],n=this.selectedTabstop||{},r=n.parents||{},i=this.tabstops.slice(),a=0;a2&&(this.tabstops.length&&a.push(a.splice(2,1)[0]),this.tabstops.splice.apply(this.tabstops,a))},e.prototype.addTabstopMarkers=function(e){var t=this.session;e.forEach((function(e){e.markerId||(e.markerId=t.addMarker(e,"ace_snippet-marker","text"))}))},e.prototype.removeTabstopMarkers=function(e){var t=this.session;e.forEach((function(e){t.removeMarker(e.markerId),e.markerId=null}))},e.prototype.removeRange=function(e){var t=e.tabstop.indexOf(e);-1!=t&&e.tabstop.splice(t,1),-1!=(t=this.ranges.indexOf(e))&&this.ranges.splice(t,1),-1!=(t=e.tabstop.rangeList.ranges.indexOf(e))&&e.tabstop.splice(t,1),this.session.removeMarker(e.markerId),e.tabstop.length||(-1!=(t=this.tabstops.indexOf(e.tabstop))&&this.tabstops.splice(t,1),this.tabstops.length||this.detach())},e}();m.prototype.keyboardHandler=new c,m.prototype.keyboardHandler.bindKeys({Tab:function(e){t.snippetManager&&t.snippetManager.expandWithTab(e)||(e.tabstopManager.tabNext(1),e.renderer.scrollCursorIntoView())},"Shift-Tab":function(e){e.tabstopManager.tabNext(-1),e.renderer.scrollCursorIntoView()},Esc:function(e){e.tabstopManager.detach()}});var g=function(e,t){0==e.row&&(e.column+=t.column),e.row+=t.row},y=function(e,t){e.row==t.row&&(e.column-=t.column),e.row-=t.row};r.importCssString("\n.ace_snippet-marker {\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n background: rgba(194, 193, 208, 0.09);\n border: 1px dotted rgba(211, 208, 235, 0.62);\n position: absolute;\n}","snippets.css",!1),t.snippetManager=new p;var b=e("./editor").Editor;(function(){this.insertSnippet=function(e,n){return t.snippetManager.insertSnippet(this,e,n)},this.expandSnippet=function(e){return t.snippetManager.expandWithTab(this,e)}}).call(b.prototype)})),ace.define("ace/autocomplete/popup",["require","exports","module","ace/virtual_renderer","ace/editor","ace/range","ace/lib/event","ace/lib/lang","ace/lib/dom","ace/config"],(function(e,t,n){"use strict";var r=e("../virtual_renderer").VirtualRenderer,i=e("../editor").Editor,a=e("../range").Range,o=e("../lib/event"),s=e("../lib/lang"),l=e("../lib/dom"),c=e("../config").nls,u=function(e){return"suggest-aria-id:".concat(e)},f=function(e){var t=new r(e);t.$maxLines=4;var n=new i(t);return n.setHighlightActiveLine(!1),n.setShowPrintMargin(!1),n.renderer.setShowGutter(!1),n.renderer.setHighlightGutterLine(!1),n.$mouseHandler.$focusTimeout=0,n.$highlightTagPending=!0,n},d=function(e){var t=l.createElement("div"),n=new f(t);e&&e.appendChild(t),t.style.display="none",n.renderer.content.style.cursor="default",n.renderer.setStyle("ace_autocomplete"),n.renderer.$textLayer.element.setAttribute("role","listbox"),n.renderer.$textLayer.element.setAttribute("aria-label",c("Autocomplete suggestions")),n.renderer.textarea.setAttribute("aria-hidden","true"),n.setOption("displayIndentGuides",!1),n.setOption("dragDelay",150);var r,i=function(){};n.focus=i,n.$isFocused=!0,n.renderer.$cursorLayer.restartTimer=i,n.renderer.$cursorLayer.element.style.opacity=0,n.renderer.$maxLines=8,n.renderer.$keepTextAreaAtCursor=!1,n.setHighlightActiveLine(!1),n.session.highlight(""),n.session.$searchHighlight.clazz="ace_highlight-marker",n.on("mousedown",(function(e){var t=e.getDocumentPosition();n.selection.moveToPosition(t),h.start.row=h.end.row=t.row,e.stop()}));var d=new a(-1,0,-1,1/0),h=new a(-1,0,-1,1/0);h.id=n.session.addMarker(h,"ace_active-line","fullLine"),n.setSelectOnHover=function(e){e?d.id&&(n.session.removeMarker(d.id),d.id=null):d.id=n.session.addMarker(d,"ace_line-hover","fullLine")},n.setSelectOnHover(!1),n.on("mousemove",(function(e){if(r){if(r.x!=e.x||r.y!=e.y){(r=e).scrollTop=n.renderer.scrollTop;var t=r.getDocumentPosition().row;d.start.row!=t&&(d.id||n.setRow(t),v(t))}}else r=e})),n.renderer.on("beforeRender",(function(){if(r&&-1!=d.start.row){r.$pos=null;var e=r.getDocumentPosition().row;d.id||n.setRow(e),v(e,!0)}})),n.renderer.on("afterRender",(function(){var e=n.getRow(),t=n.renderer.$textLayer,r=t.element.childNodes[e-t.config.firstRow],i=document.activeElement;if(r!==t.selectedNode&&t.selectedNode&&(l.removeCssClass(t.selectedNode,"ace_selected"),i.removeAttribute("aria-activedescendant"),t.selectedNode.removeAttribute("id")),t.selectedNode=r,r){l.addCssClass(r,"ace_selected");var a=u(e);r.id=a,t.element.setAttribute("aria-activedescendant",a),i.setAttribute("aria-activedescendant",a),r.setAttribute("role","option"),r.setAttribute("aria-label",n.getData(e).value),r.setAttribute("aria-setsize",n.data.length),r.setAttribute("aria-posinset",e+1),r.setAttribute("aria-describedby","doc-tooltip")}}));var p=function(){v(-1)},v=function(e,t){e!==d.start.row&&(d.start.row=d.end.row=e,t||n.session._emit("changeBackMarker"),n._emit("changeHoverMarker"))};n.getHoveredRow=function(){return d.start.row},o.addListener(n.container,"mouseout",p),n.on("hide",p),n.on("changeSelection",p),n.session.doc.getLength=function(){return n.data.length},n.session.doc.getLine=function(e){var t=n.data[e];return"string"==typeof t?t:t&&t.value||""};var m=n.session.bgTokenizer;return m.$tokenizeRow=function(e){var t=n.data[e],r=[];if(!t)return r;"string"==typeof t&&(t={value:t});var i=t.caption||t.value||t.name;function a(e,n){e&&r.push({type:(t.className||"")+(n||""),value:e})}for(var o=i.toLowerCase(),s=(n.filterText||"").toLowerCase(),l=0,c=0,u=0;u<=s.length;u++)if(u!=c&&(t.matchMask&1<=u?"bottom":"top"),"top"===i?(f.bottom=e.top-this.$borderSize,f.top=f.bottom-u):"bottom"===i&&(f.top=e.top+t+this.$borderSize,f.bottom=f.top+u);var p=f.top>=0&&f.bottom<=s;if(!a&&!p)return!1;c.$maxPixelHeight=p?null:"top"===i?h:d,"top"===i?(o.style.top="",o.style.bottom=s-f.bottom+"px",n.isTopdown=!1):(o.style.top=f.top+"px",o.style.bottom="",n.isTopdown=!0),o.style.display="";var v=e.left;return v+o.offsetWidth>l&&(v=l-o.offsetWidth),o.style.left=v+"px",o.style.right="",n.isOpen||(n.isOpen=!0,this._signal("show"),r=null),n.anchorPos=e,n.anchor=i,!0},n.show=function(e,t,n){this.tryShow(e,t,n?"bottom":void 0,!0)},n.goTo=function(e){var t=this.getRow(),n=this.session.getLength()-1;switch(e){case"up":t=t<=0?n:t-1;break;case"down":t=t>=n?-1:t+1;break;case"start":t=0;break;case"end":t=n}this.setRow(t)},n.getTextLeftOffset=function(){return this.$borderSize+this.renderer.$padding+this.$imageSize},n.$imageSize=0,n.$borderSize=1,n};l.importCssString("\n.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {\n background-color: #CAD6FA;\n z-index: 1;\n}\n.ace_dark.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {\n background-color: #3a674e;\n}\n.ace_editor.ace_autocomplete .ace_line-hover {\n border: 1px solid #abbffe;\n margin-top: -1px;\n background: rgba(233,233,253,0.4);\n position: absolute;\n z-index: 2;\n}\n.ace_dark.ace_editor.ace_autocomplete .ace_line-hover {\n border: 1px solid rgba(109, 150, 13, 0.8);\n background: rgba(58, 103, 78, 0.62);\n}\n.ace_completion-meta {\n opacity: 0.5;\n margin-left: 0.9em;\n}\n.ace_completion-message {\n color: blue;\n}\n.ace_editor.ace_autocomplete .ace_completion-highlight{\n color: #2d69c7;\n}\n.ace_dark.ace_editor.ace_autocomplete .ace_completion-highlight{\n color: #93ca12;\n}\n.ace_editor.ace_autocomplete {\n width: 300px;\n z-index: 200000;\n border: 1px lightgray solid;\n position: fixed;\n box-shadow: 2px 3px 5px rgba(0,0,0,.2);\n line-height: 1.4;\n background: #fefefe;\n color: #111;\n}\n.ace_dark.ace_editor.ace_autocomplete {\n border: 1px #484747 solid;\n box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.51);\n line-height: 1.4;\n background: #25282c;\n color: #c1c1c1;\n}\n.ace_autocomplete .ace_text-layer {\n width: calc(100% - 8px);\n}\n.ace_autocomplete .ace_line {\n display: flex;\n align-items: center;\n}\n.ace_autocomplete .ace_line > * {\n min-width: 0;\n flex: 0 0 auto;\n}\n.ace_autocomplete .ace_line .ace_ {\n flex: 0 1 auto;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.ace_autocomplete .ace_completion-spacer {\n flex: 1;\n}\n","autocompletion.css",!1),t.AcePopup=d,t.$singleLineEditor=f,t.getAriaId=u})),ace.define("ace/autocomplete/inline",["require","exports","module","ace/snippets"],(function(e,t,n){"use strict";var r=e("../snippets").snippetManager,i=function(){function e(){this.editor=null}return e.prototype.show=function(e,t,n){if(n=n||"",e&&this.editor&&this.editor!==e&&(this.hide(),this.editor=null),!e||!t)return!1;var i=t.snippet?r.getDisplayTextForSnippet(e,t.snippet):t.value;return!(t.hideInlinePreview||!i||!i.startsWith(n))&&(this.editor=e,""===(i=i.slice(n.length))?e.removeGhostText():e.setGhostText(i),!0)},e.prototype.isOpen=function(){return!!this.editor&&!!this.editor.renderer.$ghostText},e.prototype.hide=function(){return!!this.editor&&(this.editor.removeGhostText(),!0)},e.prototype.destroy=function(){this.hide(),this.editor=null},e}();t.AceInline=i})),ace.define("ace/autocomplete/util",["require","exports","module"],(function(e,t,n){"use strict";t.parForEach=function(e,t,n){var r=0,i=e.length;0===i&&n();for(var a=0;a=0&&n.test(e[a]);a--)i.push(e[a]);return i.reverse().join("")},t.retrieveFollowingIdentifier=function(e,t,n){n=n||r;for(var i=[],a=t;a=0&&this.stickySelectionTimer.schedule(this.stickySelectionDelay)},e.prototype.observeLayoutChanges=function(){if(!this.$elements&&this.editor){window.addEventListener("resize",this.onLayoutChange,{passive:!0}),window.addEventListener("wheel",this.mousewheelListener);for(var e=this.editor.container.parentNode,t=[];e;)t.push(e),e.addEventListener("scroll",this.onLayoutChange,{passive:!0}),e=e.parentNode;this.$elements=t}},e.prototype.unObserveLayoutChanges=function(){var e=this;window.removeEventListener("resize",this.onLayoutChange,{passive:!0}),window.removeEventListener("wheel",this.mousewheelListener),this.$elements&&this.$elements.forEach((function(t){t.removeEventListener("scroll",e.onLayoutChange,{passive:!0})})),this.$elements=null},e.prototype.onLayoutChange=function(){if(!this.popup.isOpen)return this.unObserveLayoutChanges();this.$updatePopupPosition(),this.updateDocTooltip()},e.prototype.$updatePopupPosition=function(){var e=this.editor,t=e.renderer,n=t.layerConfig.lineHeight,r=t.$cursorLayer.getPixelPosition(this.base,!0);r.left-=this.popup.getTextLeftOffset();var i=e.container.getBoundingClientRect();r.top+=i.top-t.layerConfig.offset,r.left+=i.left-e.renderer.scrollLeft,r.left+=t.gutterWidth;var a={top:r.top,left:r.left};t.$ghostText&&t.$ghostTextWidget&&this.base.row===t.$ghostText.position.row&&(a.top+=t.$ghostTextWidget.el.offsetHeight),this.popup.tryShow(a,n,"bottom")||this.popup.tryShow(r,n,"top")||this.popup.show(r,n)},e.prototype.openPopup=function(e,t,n){this.popup||this.$init(),this.inlineEnabled&&!this.inlineRenderer&&this.$initInline(),this.popup.autoSelect=this.autoSelect,this.popup.setSelectOnHover(this.setSelectOnHover);var r=this.popup.data[this.popup.getRow()];this.popup.setData(this.completions.filtered,this.completions.filterText),this.editor.textInput.setAriaOptions&&this.editor.textInput.setAriaOptions({activeDescendant:o(this.popup.getRow()),inline:this.inlineEnabled}),e.keyBinding.addKeyboardHandler(this.keyboardHandler);var i=this.popup.data.indexOf(r);i&&this.stickySelection?this.popup.setRow(this.autoSelect?i:-1):this.popup.setRow(this.autoSelect?0:-1),n?n&&!t&&this.detach():(this.popup.setTheme(e.getTheme()),this.popup.setFontSize(e.getFontSize()),this.$updatePopupPosition(),this.tooltipNode&&this.updateDocTooltip()),this.changeTimer.cancel(),this.observeLayoutChanges()},e.prototype.detach=function(){this.editor&&(this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler),this.editor.off("changeSelection",this.changeListener),this.editor.off("blur",this.blurListener),this.editor.off("mousedown",this.mousedownListener),this.editor.off("mousewheel",this.mousewheelListener)),this.changeTimer.cancel(),this.hideDocTooltip(),this.completionProvider&&this.completionProvider.detach(),this.popup&&this.popup.isOpen&&this.popup.hide(),this.base&&this.base.detach(),this.activated=!1,this.completionProvider=this.completions=this.base=null,this.unObserveLayoutChanges()},e.prototype.changeListener=function(e){var t=this.editor.selection.lead;(t.row!=this.base.row||t.columnthis.filterText&&0===e.lastIndexOf(this.filterText,0))var t=this.filtered;else t=this.all;this.filterText=e,t=(t=this.filterCompletions(t,this.filterText)).sort((function(e,t){return t.exactMatch-e.exactMatch||t.$score-e.$score||(e.caption||e.value).localeCompare(t.caption||t.value)}));var n=null;t=t.filter((function(e){var t=e.snippet||e.caption||e.value;return t!==n&&(n=t,!0)})),this.filtered=t},e.prototype.filterCompletions=function(e,t){var n=[],r=t.toUpperCase(),i=t.toLowerCase();e:for(var a,o=0;a=e[o];o++){var s=!this.ignoreCaption&&a.caption||a.value||a.snippet;if(s){var l,c,u=-1,f=0,d=0;if(this.exactMatch){if(t!==s.substr(0,t.length))continue e}else{var h=s.toLowerCase().indexOf(i);if(h>-1)d=h;else for(var p=0;p=0&&(m<0||v0&&(-1===u&&(d+=10),d+=c,f|=1<",o.escapeHTML(e.caption),"","
",o.escapeHTML(u(e.snippet))].join(""))},id:"snippetCompleter"},d=[f,l,c];t.setCompleters=function(e){d.length=0,e&&d.push.apply(d,e)},t.addCompleter=function(e){d.push(e)},t.textCompleter=l,t.keyWordCompleter=c,t.snippetCompleter=f;var h,p={name:"expandSnippet",exec:function(e){return r.expandWithTab(e)},bindKey:"Tab"},v=function(e,t){m(t.session.$mode)},m=function e(t){"string"==typeof t&&(t=a.$modes[t]),t&&(r.files||(r.files={}),g(t.$id,t.snippetFileId),t.modes&&t.modes.forEach(e))},g=function(e,t){t&&e&&!r.files[e]&&(r.files[e]={},a.loadModule(t,(function(t){t&&(r.files[e]=t,!t.snippets&&t.snippetText&&(t.snippets=r.parseSnippetFile(t.snippetText)),r.register(t.snippets||[],t.scope),t.includeScopes&&(r.snippetMap[t.scope].includeScopes=t.includeScopes,t.includeScopes.forEach((function(e){m("ace/mode/"+e)}))))})))},y=function(e){var t=e.editor,n=t.completer&&t.completer.activated;if("backspace"===e.command.name)n&&!s.getCompletionPrefix(t)&&t.completer.detach();else if("insertstring"===e.command.name&&!n){h=e;var r=e.editor.$liveAutocompletionDelay;r?b.delay(r):x(e)}},b=o.delayedCall((function(){x(h)}),0),x=function(e){var t=e.editor,n=s.getCompletionPrefix(t),r=s.triggerAutocomplete(t);if(n&&n.length>=t.$liveAutocompletionThreshold||r){var a=i.for(t);a.autoShown=!0,a.showPopup(t)}},w=e("../editor").Editor;e("../config").defineOptions(w.prototype,"editor",{enableBasicAutocompletion:{set:function(e){e?(this.completers||(this.completers=Array.isArray(e)?e:d),this.commands.addCommand(i.startCommand)):this.commands.removeCommand(i.startCommand)},value:!1},enableLiveAutocompletion:{set:function(e){e?(this.completers||(this.completers=Array.isArray(e)?e:d),this.commands.on("afterExec",y)):this.commands.off("afterExec",y)},value:!1},liveAutocompletionDelay:{initialValue:0},liveAutocompletionThreshold:{initialValue:0},enableSnippets:{set:function(e){e?(this.commands.addCommand(p),this.on("changeMode",v),v(0,this)):(this.commands.removeCommand(p),this.off("changeMode",v))},value:!1}})})),ace.require(["ace/ext/language_tools"],(function(t){e&&(e.exports=t)}))},16866:function(e,t,n){e=n.nmd(e),ace.define("ace/split",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/editor","ace/virtual_renderer","ace/edit_session"],(function(e,t,n){"use strict";var r=e("./lib/oop"),i=(e("./lib/lang"),e("./lib/event_emitter").EventEmitter),a=e("./editor").Editor,o=e("./virtual_renderer").VirtualRenderer,s=e("./edit_session").EditSession,l=function(e,t,n){this.BELOW=1,this.BESIDE=0,this.$container=e,this.$theme=t,this.$splits=0,this.$editorCSS="",this.$editors=[],this.$orientation=this.BESIDE,this.setSplits(n||1),this.$cEditor=this.$editors[0],this.on("focus",function(e){this.$cEditor=e}.bind(this))};(function(){r.implement(this,i),this.$createEditor=function(){var e=document.createElement("div");e.className=this.$editorCSS,e.style.cssText="position: absolute; top:0px; bottom:0px",this.$container.appendChild(e);var t=new a(new o(e,this.$theme));return t.on("focus",function(){this._emit("focus",t)}.bind(this)),this.$editors.push(t),t.setFontSize(this.$fontSize),t},this.setSplits=function(e){var t;if(e<1)throw"The number of splits have to be > 0!";if(e!=this.$splits){if(e>this.$splits){for(;this.$splitse;)t=this.$editors[this.$splits-1],this.$container.removeChild(t.container),this.$splits--;this.resize()}},this.getSplits=function(){return this.$splits},this.getEditor=function(e){return this.$editors[e]},this.getCurrentEditor=function(){return this.$cEditor},this.focus=function(){this.$cEditor.focus()},this.blur=function(){this.$cEditor.blur()},this.setTheme=function(e){this.$editors.forEach((function(t){t.setTheme(e)}))},this.setKeyboardHandler=function(e){this.$editors.forEach((function(t){t.setKeyboardHandler(e)}))},this.forEach=function(e,t){this.$editors.forEach(e,t)},this.$fontSize="",this.setFontSize=function(e){this.$fontSize=e,this.forEach((function(t){t.setFontSize(e)}))},this.$cloneSession=function(e){var t=new s(e.getDocument(),e.getMode()),n=e.getUndoManager();return t.setUndoManager(n),t.setTabSize(e.getTabSize()),t.setUseSoftTabs(e.getUseSoftTabs()),t.setOverwrite(e.getOverwrite()),t.setBreakpoints(e.getBreakpoints()),t.setUseWrapMode(e.getUseWrapMode()),t.setUseWorker(e.getUseWorker()),t.setWrapLimitRange(e.$wrapLimitRange.min,e.$wrapLimitRange.max),t.$foldData=e.$cloneFoldData(),t},this.setSession=function(e,t){var n;n=null==t?this.$cEditor:this.$editors[t];var r=this.$editors.some((function(t){return t.session===e}));return r&&(e=this.$cloneSession(e)),n.setSession(e),e},this.getOrientation=function(){return this.$orientation},this.setOrientation=function(e){this.$orientation!=e&&(this.$orientation=e,this.resize())},this.resize=function(){var e,t=this.$container.clientWidth,n=this.$container.clientHeight;if(this.$orientation==this.BESIDE)for(var r=t/this.$splits,i=0;i/,next:"start"},{token:"keyword.operator",regex:/--|\+\+|\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\|\||\?:|[!$%&*+\-~\/^]=?/,next:"start"},{token:"punctuation.operator",regex:/[?:,;.]/,next:"start"},{token:"paren.lparen",regex:/[\[({]/,next:"start"},{token:"paren.rparen",regex:/[\])}]/},{token:"comment",regex:/^#!.*$/}],property:[{token:"text",regex:"\\s+"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","entity.name.function","text","paren.lparen"],regex:"("+o+")(\\.)("+o+")(\\s*)(=)(\\s*)(function\\*?)(?:(\\s+)(\\w+))?(\\s*)(\\()",next:"function_arguments"},{token:"punctuation.operator",regex:/[.](?![.])/},{token:"support.function",regex:/(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|lter|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward|rEach)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/},{token:"support.function.dom",regex:/(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/},{token:"support.constant",regex:/(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/},{token:"identifier",regex:o},{regex:"",token:"empty",next:"no_regex"}],start:[i.getStartRule("doc-start"),c("start"),{token:"string.regexp",regex:"\\/",next:"regex"},{token:"text",regex:"\\s+|^$",next:"start"},{token:"empty",regex:"",next:"no_regex"}],regex:[{token:"regexp.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"string.regexp",regex:"/[sxngimy]*",next:"no_regex"},{token:"invalid",regex:/\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/},{token:"constant.language.escape",regex:/\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/},{token:"constant.language.delimiter",regex:/\|/},{token:"constant.language.escape",regex:/\[\^?/,next:"regex_character_class"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp"}],regex_character_class:[{token:"regexp.charclass.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"constant.language.escape",regex:"]",next:"regex"},{token:"constant.language.escape",regex:"-"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp.charachterclass"}],default_parameter:[{token:"string",regex:"'(?=.)",push:[{token:"string",regex:"'|$",next:"pop"},{include:"qstring"}]},{token:"string",regex:'"(?=.)',push:[{token:"string",regex:'"|$',next:"pop"},{include:"qqstring"}]},{token:"constant.language",regex:"null|Infinity|NaN|undefined"},{token:"constant.numeric",regex:/0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\b/},{token:"constant.numeric",regex:/(?:\d\d*(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+\b)?/},{token:"punctuation.operator",regex:",",next:"function_arguments"},{token:"text",regex:"\\s+"},{token:"punctuation.operator",regex:"$"},{token:"empty",regex:"",next:"no_regex"}],function_arguments:[c("function_arguments"),{token:"variable.parameter",regex:o},{token:"punctuation.operator",regex:","},{token:"text",regex:"\\s+"},{token:"punctuation.operator",regex:"$"},{token:"empty",regex:"",next:"no_regex"}],qqstring:[{token:"constant.language.escape",regex:n},{token:"string",regex:"\\\\$",consumeLineEnd:!0},{token:"string",regex:'"|$',next:"no_regex"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:n},{token:"string",regex:"\\\\$",consumeLineEnd:!0},{token:"string",regex:"'|$",next:"no_regex"},{defaultToken:"string"}]},e&&e.noES6||(this.$rules.no_regex.unshift({regex:"[{}]",onMatch:function(e,t,n){if(this.next="{"==e?this.nextState:"","{"==e&&n.length)n.unshift("start",t);else if("}"==e&&n.length&&(n.shift(),this.next=n.shift(),-1!=this.next.indexOf("string")||-1!=this.next.indexOf("jsx")))return"paren.quasi.end";return"{"==e?"paren.lparen":"paren.rparen"},nextState:"start"},{token:"string.quasi.start",regex:/`/,push:[{token:"constant.language.escape",regex:n},{token:"paren.quasi.start",regex:/\${/,push:"start"},{token:"string.quasi.end",regex:/`/,next:"pop"},{defaultToken:"string.quasi"}]},{token:["variable.parameter","text"],regex:"("+o+")(\\s*)(?=\\=>)"},{token:"paren.lparen",regex:"(\\()(?=.+\\s*=>)",next:"function_arguments"},{token:"variable.language",regex:"(?:(?:(?:Weak)?(?:Set|Map))|Promise)\\b"}),this.$rules.function_arguments.unshift({token:"keyword.operator",regex:"=",next:"default_parameter"},{token:"keyword.operator",regex:"\\.{3}"}),this.$rules.property.unshift({token:"support.function",regex:"(findIndex|repeat|startsWith|endsWith|includes|isSafeInteger|trunc|cbrt|log2|log10|sign|then|catch|finally|resolve|reject|race|any|all|allSettled|keys|entries|isInteger)\\b(?=\\()"},{token:"constant.language",regex:"(?:MAX_SAFE_INTEGER|MIN_SAFE_INTEGER|EPSILON)\\b"}),e&&0==e.jsx||l.call(this)),this.embedRules(i,"doc-",[i.getEndRule("no_regex")]),this.normalizeRules()};function l(){var e=o.replace("\\d","\\d\\-"),t={onMatch:function(e,t,n){var r="/"==e.charAt(1)?2:1;return 1==r?(t!=this.nextState?n.unshift(this.next,this.nextState,0):n.unshift(this.next),n[2]++):2==r&&t==this.nextState&&(n[1]--,(!n[1]||n[1]<0)&&(n.shift(),n.shift())),[{type:"meta.tag.punctuation."+(1==r?"":"end-")+"tag-open.xml",value:e.slice(0,r)},{type:"meta.tag.tag-name.xml",value:e.substr(r)}]},regex:"",onMatch:function(e,t,n){return t==n[0]&&n.shift(),2==e.length&&(n[0]==this.nextState&&n[1]--,(!n[1]||n[1]<0)&&n.splice(0,2)),this.next=n[0]||"start",[{type:this.token,value:e}]},nextState:"jsx"},n,c("jsxAttributes"),{token:"entity.other.attribute-name.xml",regex:e},{token:"keyword.operator.attribute-equals.xml",regex:"="},{token:"text.tag-whitespace.xml",regex:"\\s+"},{token:"string.attribute-value.xml",regex:"'",stateName:"jsx_attr_q",push:[{token:"string.attribute-value.xml",regex:"'",next:"pop"},{include:"reference"},{defaultToken:"string.attribute-value.xml"}]},{token:"string.attribute-value.xml",regex:'"',stateName:"jsx_attr_qq",push:[{token:"string.attribute-value.xml",regex:'"',next:"pop"},{include:"reference"},{defaultToken:"string.attribute-value.xml"}]},t],this.$rules.reference=[{token:"constant.language.escape.reference.xml",regex:"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"}]}function c(e){return[{token:"comment",regex:/\/\*/,next:[i.getTagRule(),{token:"comment",regex:"\\*\\/",next:e||"pop"},{defaultToken:"comment",caseInsensitive:!0}]},{token:"comment",regex:"\\/\\/",next:[i.getTagRule(),{token:"comment",regex:"$|^",next:e||"pop"},{defaultToken:"comment",caseInsensitive:!0}]}]}r.inherits(s,a),t.JavaScriptHighlightRules=s})),ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],(function(e,t,n){"use strict";var r=e("../range").Range,i=function(){};(function(){this.checkOutdent=function(e,t){return!!/^\s+$/.test(e)&&/^\s*\}/.test(t)},this.autoOutdent=function(e,t){var n=e.getLine(t).match(/^(\s*\})/);if(!n)return 0;var i=n[1].length,a=e.findMatchingBracket({row:t,column:i});if(!a||a.row==t)return 0;var o=this.$getIndent(e.getLine(a.row));e.replace(new r(t,0,t,i-1),o)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(i.prototype),t.MatchingBraceOutdent=i})),ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],(function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../../range").Range,a=e("./fold_mode").FoldMode,o=t.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};r.inherits(o,a),function(){this.foldingStartMarker=/([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);if(this.singleLineBlockCommentRe.test(r)&&!this.startRegionRe.test(r)&&!this.tripleStarBlockCommentRe.test(r))return"";var i=this._getFoldWidgetBase(e,t,n);return!i&&this.startRegionRe.test(r)?"start":i},this.getFoldWidgetRange=function(e,t,n,r){var i,a=e.getLine(n);if(this.startRegionRe.test(a))return this.getCommentRegionBlock(e,a,n);if(i=a.match(this.foldingStartMarker)){var o=i.index;if(i[1])return this.openingBracketBlock(e,i[1],n,o);var s=e.getCommentFoldRange(n,o+i[0].length,1);return s&&!s.isMultiLine()&&(r?s=this.getSectionRange(e,n):"all"!=t&&(s=null)),s}if("markbegin"!==t&&(i=a.match(this.foldingStopMarker))){o=i.index+i[0].length;return i[1]?this.closingBracketBlock(e,i[1],n,o):e.getCommentFoldRange(n,o,-1)}},this.getSectionRange=function(e,t){for(var n=e.getLine(t),r=n.search(/\S/),a=t,o=n.length,s=t+=1,l=e.getLength();++tc)break;var u=this.getFoldWidgetRange(e,"all",t);if(u){if(u.start.row<=a)break;if(u.isMultiLine())t=u.end.row;else if(r==c)break}s=t}}return new i(a,o,s,e.getLine(s).length)},this.getCommentRegionBlock=function(e,t,n){for(var r=t.search(/\s*$/),a=e.getLength(),o=n,s=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,l=1;++no)return new i(o,r,n,t.length)}}.call(o.prototype)})),ace.define("ace/mode/javascript",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/javascript_highlight_rules","ace/mode/matching_brace_outdent","ace/worker/worker_client","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"],(function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,a=e("./javascript_highlight_rules").JavaScriptHighlightRules,o=e("./matching_brace_outdent").MatchingBraceOutdent,s=e("../worker/worker_client").WorkerClient,l=e("./behaviour/cstyle").CstyleBehaviour,c=e("./folding/cstyle").FoldMode,u=function(){this.HighlightRules=a,this.$outdent=new o,this.$behaviour=new l,this.foldingRules=new c};r.inherits(u,i),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.$quotes={'"':'"',"'":"'","`":"`"},this.$pairQuotesAfter={"`":/\w/},this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),i=this.getTokenizer().getLineTokens(t,e),a=i.tokens,o=i.state;if(a.length&&"comment"==a[a.length-1].type)return r;if("start"==e||"no_regex"==e)(s=t.match(/^.*(?:\bcase\b.*:|[\{\(\[])\s*$/))&&(r+=n);else if("doc-start"==e){if("start"==o||"no_regex"==o)return"";var s;(s=t.match(/^\s*(\/?)\*/))&&(s[1]&&(r+=" "),r+="* ")}return r},this.checkOutdent=function(e,t,n){return this.$outdent.checkOutdent(t,n)},this.autoOutdent=function(e,t,n){this.$outdent.autoOutdent(t,n)},this.createWorker=function(e){var t=new s(["ace"],"ace/mode/javascript_worker","JavaScriptWorker");return t.attachToDocument(e.getDocument()),t.on("annotate",(function(t){e.setAnnotations(t.data)})),t.on("terminate",(function(){e.clearAnnotations()})),t},this.$id="ace/mode/javascript",this.snippetFileId="ace/snippets/javascript"}.call(u.prototype),t.Mode=u})),ace.require(["ace/mode/javascript"],(function(t){e&&(e.exports=t)}))},73905:function(e,t,n){e=n.nmd(e),ace.define("ace/mode/python_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],(function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,a=function(){var e=this.createKeywordMapper({"invalid.deprecated":"debugger","support.function":"abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|binfile|bin|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|apply|delattr|help|next|setattr|set|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern|ascii|breakpoint|bytes","variable.language":"self|cls","constant.language":"True|False|None|NotImplemented|Ellipsis|__debug__",keyword:"and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield|async|await|nonlocal"},"identifier"),t="[uU]?",n="[rR]",r="[fF]",i="(?:[rR][fF]|[fF][rR])",a="(?:(?:(?:[1-9]\\d*)|(?:0))|(?:0[oO]?[0-7]+)|(?:0[xX][\\dA-Fa-f]+)|(?:0[bB][01]+))",o="(?:\\d+)",s="(?:(?:"+o+"?(?:\\.\\d+))|(?:"+o+"\\.))",l="(?:"+("(?:(?:"+s+"|"+o+")(?:[eE][+-]?\\d+))")+"|"+s+")",c="\\\\(x[0-9A-Fa-f]{2}|[0-7]{3}|[\\\\abfnrtv'\"]|U[0-9A-Fa-f]{8}|u[0-9A-Fa-f]{4})";this.$rules={start:[{token:"comment",regex:"#.*$"},{token:"string",regex:t+'"{3}',next:"qqstring3"},{token:"string",regex:t+'"(?=.)',next:"qqstring"},{token:"string",regex:t+"'{3}",next:"qstring3"},{token:"string",regex:t+"'(?=.)",next:"qstring"},{token:"string",regex:n+'"{3}',next:"rawqqstring3"},{token:"string",regex:n+'"(?=.)',next:"rawqqstring"},{token:"string",regex:n+"'{3}",next:"rawqstring3"},{token:"string",regex:n+"'(?=.)",next:"rawqstring"},{token:"string",regex:r+'"{3}',next:"fqqstring3"},{token:"string",regex:r+'"(?=.)',next:"fqqstring"},{token:"string",regex:r+"'{3}",next:"fqstring3"},{token:"string",regex:r+"'(?=.)",next:"fqstring"},{token:"string",regex:i+'"{3}',next:"rfqqstring3"},{token:"string",regex:i+'"(?=.)',next:"rfqqstring"},{token:"string",regex:i+"'{3}",next:"rfqstring3"},{token:"string",regex:i+"'(?=.)",next:"rfqstring"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|%|@|<<|>>|&|\\||\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"punctuation",regex:",|:|;|\\->|\\+=|\\-=|\\*=|\\/=|\\/\\/=|%=|@=|&=|\\|=|^=|>>=|<<=|\\*\\*="},{token:"paren.lparen",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]\\)\\}]"},{token:["keyword","text","entity.name.function"],regex:"(def|class)(\\s+)([\\u00BF-\\u1FFF\\u2C00-\\uD7FF\\w]+)"},{token:"text",regex:"\\s+"},{include:"constants"}],qqstring3:[{token:"constant.language.escape",regex:c},{token:"string",regex:'"{3}',next:"start"},{defaultToken:"string"}],qstring3:[{token:"constant.language.escape",regex:c},{token:"string",regex:"'{3}",next:"start"},{defaultToken:"string"}],qqstring:[{token:"constant.language.escape",regex:c},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:c},{token:"string",regex:"\\\\$",next:"qstring"},{token:"string",regex:"'|$",next:"start"},{defaultToken:"string"}],rawqqstring3:[{token:"string",regex:'"{3}',next:"start"},{defaultToken:"string"}],rawqstring3:[{token:"string",regex:"'{3}",next:"start"},{defaultToken:"string"}],rawqqstring:[{token:"string",regex:"\\\\$",next:"rawqqstring"},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],rawqstring:[{token:"string",regex:"\\\\$",next:"rawqstring"},{token:"string",regex:"'|$",next:"start"},{defaultToken:"string"}],fqqstring3:[{token:"constant.language.escape",regex:c},{token:"string",regex:'"{3}',next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],fqstring3:[{token:"constant.language.escape",regex:c},{token:"string",regex:"'{3}",next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],fqqstring:[{token:"constant.language.escape",regex:c},{token:"string",regex:"\\\\$",next:"fqqstring"},{token:"string",regex:'"|$',next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],fqstring:[{token:"constant.language.escape",regex:c},{token:"string",regex:"'|$",next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],rfqqstring3:[{token:"string",regex:'"{3}',next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],rfqstring3:[{token:"string",regex:"'{3}",next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],rfqqstring:[{token:"string",regex:"\\\\$",next:"rfqqstring"},{token:"string",regex:'"|$',next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],rfqstring:[{token:"string",regex:"'|$",next:"start"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"},{defaultToken:"string"}],fqstringParRules:[{token:"paren.lparen",regex:"[\\[\\(]"},{token:"paren.rparen",regex:"[\\]\\)]"},{token:"string",regex:"\\s+"},{token:"string",regex:"'[^']*'"},{token:"string",regex:'"[^"]*"'},{token:"function.support",regex:"(!s|!r|!a)"},{include:"constants"},{token:"paren.rparen",regex:"}",next:"pop"},{token:"paren.lparen",regex:"{",push:"fqstringParRules"}],constants:[{token:"constant.numeric",regex:"(?:"+l+"|\\d+)[jJ]\\b"},{token:"constant.numeric",regex:l},{token:"constant.numeric",regex:a+"[lL]\\b"},{token:"constant.numeric",regex:a+"\\b"},{token:["punctuation","function.support"],regex:"(\\.)([a-zA-Z_]+)\\b"},{token:e,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"}]},this.normalizeRules()};r.inherits(a,i),t.PythonHighlightRules=a})),ace.define("ace/mode/folding/pythonic",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode"],(function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("./fold_mode").FoldMode,a=t.FoldMode=function(e){this.foldingStartMarker=new RegExp("([\\[{])(?:\\s*)$|("+e+")(?:\\s*)(?:#.*)?$")};r.inherits(a,i),function(){this.getFoldWidgetRange=function(e,t,n){var r=e.getLine(n).match(this.foldingStartMarker);if(r)return r[1]?this.openingBracketBlock(e,r[1],n,r.index):r[2]?this.indentationBlock(e,n,r.index+r[2].length):this.indentationBlock(e,n)}}.call(a.prototype)})),ace.define("ace/mode/python",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/python_highlight_rules","ace/mode/folding/pythonic","ace/range"],(function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,a=e("./python_highlight_rules").PythonHighlightRules,o=e("./folding/pythonic").FoldMode,s=e("../range").Range,l=function(){this.HighlightRules=a,this.foldingRules=new o("\\:"),this.$behaviour=this.$defaultBehaviour};r.inherits(l,i),function(){this.lineCommentStart="#",this.$pairQuotesAfter={"'":/[ruf]/i,'"':/[ruf]/i},this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),i=this.getTokenizer().getLineTokens(t,e).tokens;if(i.length&&"comment"==i[i.length-1].type)return r;"start"==e&&(t.match(/^.*[\{\(\[:]\s*$/)&&(r+=n));return r};var e={pass:1,return:1,raise:1,break:1,continue:1};this.checkOutdent=function(t,n,r){if("\r\n"!==r&&"\r"!==r&&"\n"!==r)return!1;var i=this.getTokenizer().getLineTokens(n.trim(),t).tokens;if(!i)return!1;do{var a=i.pop()}while(a&&("comment"==a.type||"text"==a.type&&a.value.match(/^\s+$/)));return!!a&&("keyword"==a.type&&e[a.value])},this.autoOutdent=function(e,t,n){n+=1;var r=this.$getIndent(t.getLine(n)),i=t.getTabString();r.slice(-i.length)==i&&t.remove(new s(n,r.length-i.length,n,r.length))},this.$id="ace/mode/python",this.snippetFileId="ace/snippets/python"}.call(l.prototype),t.Mode=l})),ace.require(["ace/mode/python"],(function(t){e&&(e.exports=t)}))},33165:function(e,t,n){e=n.nmd(e),ace.define("ace/theme/xcode-css",["require","exports","module"],(function(e,t,n){n.exports='/* THIS THEME WAS AUTOGENERATED BY Theme.tmpl.css (UUID: EE3AD170-2B7F-4DE1-B724-C75F13FE0085) */\n\n.ace-xcode .ace_gutter {\n background: #e8e8e8;\n color: #333\n}\n\n.ace-xcode .ace_print-margin {\n width: 1px;\n background: #e8e8e8\n}\n\n.ace-xcode {\n background-color: #FFFFFF;\n color: #000000\n}\n\n.ace-xcode .ace_cursor {\n color: #000000\n}\n\n.ace-xcode .ace_marker-layer .ace_selection {\n background: #B5D5FF\n}\n\n.ace-xcode.ace_multiselect .ace_selection.ace_start {\n box-shadow: 0 0 3px 0px #FFFFFF;\n}\n\n.ace-xcode .ace_marker-layer .ace_step {\n background: rgb(198, 219, 174)\n}\n\n.ace-xcode .ace_marker-layer .ace_bracket {\n margin: -1px 0 0 -1px;\n border: 1px solid #BFBFBF\n}\n\n.ace-xcode .ace_marker-layer .ace_active-line {\n background: rgba(0, 0, 0, 0.071)\n}\n\n.ace-xcode .ace_gutter-active-line {\n background-color: rgba(0, 0, 0, 0.071)\n}\n\n.ace-xcode .ace_marker-layer .ace_selected-word {\n border: 1px solid #B5D5FF\n}\n\n.ace-xcode .ace_constant.ace_language,\n.ace-xcode .ace_keyword,\n.ace-xcode .ace_meta,\n.ace-xcode .ace_variable.ace_language {\n color: #C800A4\n}\n\n.ace-xcode .ace_invisible {\n color: #BFBFBF\n}\n\n.ace-xcode .ace_constant.ace_character,\n.ace-xcode .ace_constant.ace_other {\n color: #275A5E\n}\n\n.ace-xcode .ace_constant.ace_numeric {\n color: #3A00DC\n}\n\n.ace-xcode .ace_entity.ace_other.ace_attribute-name,\n.ace-xcode .ace_support.ace_constant,\n.ace-xcode .ace_support.ace_function {\n color: #450084\n}\n\n.ace-xcode .ace_fold {\n background-color: #C800A4;\n border-color: #000000\n}\n\n.ace-xcode .ace_entity.ace_name.ace_tag,\n.ace-xcode .ace_support.ace_class,\n.ace-xcode .ace_support.ace_type {\n color: #790EAD\n}\n\n.ace-xcode .ace_storage {\n color: #C900A4\n}\n\n.ace-xcode .ace_string {\n color: #DF0002\n}\n\n.ace-xcode .ace_comment {\n color: #008E00\n}\n\n.ace-xcode .ace_indent-guide {\n background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y\n}\n\n.ace-xcode .ace_indent-guide-active {\n background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAAZSURBVHjaYvj///9/hivKyv8BAAAA//8DACLqBhbvk+/eAAAAAElFTkSuQmCC") right repeat-y;\n} \n'})),ace.define("ace/theme/xcode",["require","exports","module","ace/theme/xcode-css","ace/lib/dom"],(function(e,t,n){t.isDark=!1,t.cssClass="ace-xcode",t.cssText=e("./xcode-css"),e("../lib/dom").importCssString(t.cssText,t.cssClass,!1)})),ace.require(["ace/theme/xcode"],(function(t){e&&(e.exports=t)}))},56683:function(e,t,n){"use strict";var r=n(27424).default,i=n(42122).default;function a(e,t){return{validate:e,compare:t}}Object.defineProperty(t,"__esModule",{value:!0}),t.formatNames=t.fastFormats=t.fullFormats=void 0,t.fullFormats={date:a(l,c),time:a(f,d),"date-time":a((function(e){var t=e.split(h);return 2===t.length&&l(t[0])&&f(t[1],!0)}),p),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:function(e){return v.test(e)&&m.test(e)},"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,url:/^(?:http[s\u017F]?|ftp):\/\/(?:(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+(?::(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?@)?(?:(?!(?:10|127)(?:\.[0-9]{1,3}){3})(?!(?:169\.254|192\.168)(?:\.[0-9]{1,3}){2})(?!172\.(?:1[6-9]|2[0-9]|3[01])(?:\.[0-9]{1,3}){2})(?:[1-9][0-9]?|1[0-9][0-9]|2[01][0-9]|22[0-3])(?:\.(?:1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])){2}(?:\.(?:[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|25[0-4]))|(?:(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+\x2D)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+\x2D)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]){2,})))(?::[0-9]{2,5})?(?:\/(?:(?![\t-\r \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uD800-\uDFFF\uFEFF])[\s\S]|[\uD800-\uDBFF][\uDC00-\uDFFF])*)?$/i,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i,regex:function(e){if(w.test(e))return!1;try{return new RegExp(e),!0}catch(t){return!1}},uuid:/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,"json-pointer":/^(?:\/(?:[^~/]|~0|~1)*)*$/,"json-pointer-uri-fragment":/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,"relative-json-pointer":/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,byte:function(e){return g.lastIndex=0,g.test(e)},int32:{type:"number",validate:function(e){return Number.isInteger(e)&&e<=b&&e>=y}},int64:{type:"number",validate:function(e){return Number.isInteger(e)}},float:{type:"number",validate:x},double:{type:"number",validate:x},password:!0,binary:!0},t.fastFormats=i(i({},t.fullFormats),{},{date:a(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,c),time:a(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,d),"date-time":a(/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,p),uri:/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i}),t.formatNames=Object.keys(t.fullFormats);var o=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,s=[0,31,28,31,30,31,30,31,31,30,31,30,31];function l(e){var t=o.exec(e);if(!t)return!1;var n=+t[1],r=+t[2],i=+t[3];return r>=1&&r<=12&&i>=1&&i<=(2===r&&function(e){return e%4===0&&(e%100!==0||e%400===0)}(n)?29:s[r])}function c(e,t){if(e&&t)return e>t?1:e(t=r[1]+r[2]+r[3]+(r[4]||""))?1:e1&&void 0!==arguments[1]?arguments[1]:{keywords:!0};if(Array.isArray(t))return h(e,t,s.fullFormats,u),e;var n="fast"===t.mode?[s.fastFormats,f]:[s.fullFormats,u],r=o(n,2),i=r[0],a=r[1];return h(e,t.formats||s.formatNames,i,a),t.keywords&&l.default(e),e};function h(e,t,n,o){var s,l;null!==(s=(l=e.opts.code).formats)&&void 0!==s||(l.formats=c._(r||(r=a(['require("ajv-formats/dist/formats").',""])),o));var u,f=i(t);try{for(f.s();!(u=f.n()).done;){var d=u.value;e.addFormat(d,n[d])}}catch(h){f.e(h)}finally{f.f()}}d.get=function(e){var t=("fast"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"full")?s.fastFormats:s.fullFormats)[e];if(!t)throw new Error('Unknown format "'.concat(e,'"'));return t},e.exports=t=d,Object.defineProperty(t,"__esModule",{value:!0}),t.default=d},39223:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.formatLimitDefinition=void 0;var d=n(72080),h=n(9091),p=h.operators,v={formatMaximum:{okStr:"<=",ok:p.LTE,fail:p.GT},formatMinimum:{okStr:">=",ok:p.GTE,fail:p.LT},formatExclusiveMaximum:{okStr:"<",ok:p.LT,fail:p.GTE},formatExclusiveMinimum:{okStr:">",ok:p.GT,fail:p.LTE}},m={message:function(e){var t=e.keyword,n=e.schemaCode;return h.str(r||(r=f(["should be "," ",""])),v[t].okStr,n)},params:function(e){var t=e.keyword,n=e.schemaCode;return h._(i||(i=f(["{comparison: ",", limit: ","}"])),v[t].okStr,n)}};t.formatLimitDefinition={keyword:Object.keys(v),type:"string",schemaType:"string",$data:!0,error:m,code:function(e){var t=e.gen,n=e.data,r=e.schemaCode,i=e.keyword,p=e.it,m=p.opts,g=p.self;if(m.validateFormats){var y=new d.KeywordCxt(p,g.RULES.all.format.definition,"format");y.$data?function(){var n=t.scopeValue("formats",{ref:g.formats,code:m.code.formats}),r=t.const("fmt",h._(a||(a=f(["","[","]"])),n,y.schemaCode));e.fail$data(h.or(h._(o||(o=f(["typeof ",' != "object"'])),r),h._(s||(s=f([""," instanceof RegExp"])),r),h._(l||(l=f(["typeof ",'.compare != "function"'])),r),b(r)))}():function(){var n=y.schema,r=g.formats[n];if(!r||!0===r)return;if("object"!=typeof r||r instanceof RegExp||"function"!=typeof r.compare)throw new Error('"'.concat(i,'": format "').concat(n,'" does not define "compare" function'));var a=t.scopeValue("formats",{key:n,ref:r,code:m.code.formats?h._(c||(c=f(["","",""])),m.code.formats,h.getProperty(n)):void 0});e.fail$data(b(a))}()}function b(e){return h._(u||(u=f(["",".compare(",", ",") "," 0"])),e,n,r,v[i].fail)}},dependencies:["format"]};t.default=function(e){return e.addKeyword(t.formatLimitDefinition),e}},72080:function(e,t,n){"use strict";var r=n(56690).default,i=n(89728).default,a=n(41588).default,o=n(73808).default,s=n(61655).default,l=n(26389).default;Object.defineProperty(t,"__esModule",{value:!0}),t.MissingRefError=t.ValidationError=t.CodeGen=t.Name=t.nil=t.stringify=t.str=t._=t.KeywordCxt=void 0;var c=n(66422),u=n(71783),f=n(85184),d=n(98),h=["/properties"],p="http://json-schema.org/draft-07/schema",v=function(e){s(n,e);var t=l(n);function n(){return r(this,n),t.apply(this,arguments)}return i(n,[{key:"_addVocabularies",value:function(){var e=this;a(o(n.prototype),"_addVocabularies",this).call(this),u.default.forEach((function(t){return e.addVocabulary(t)})),this.opts.discriminator&&this.addKeyword(f.default)}},{key:"_addDefaultMetaSchema",value:function(){if(a(o(n.prototype),"_addDefaultMetaSchema",this).call(this),this.opts.meta){var e=this.opts.$data?this.$dataMetaSchema(d,h):d;this.addMetaSchema(e,p,!1),this.refs["http://json-schema.org/schema"]=p}}},{key:"defaultMeta",value:function(){return this.opts.defaultMeta=a(o(n.prototype),"defaultMeta",this).call(this)||(this.getSchema(p)?p:void 0)}}]),n}(c.default);e.exports=t=v,Object.defineProperty(t,"__esModule",{value:!0}),t.default=v;var m=n(12262);Object.defineProperty(t,"KeywordCxt",{enumerable:!0,get:function(){return m.KeywordCxt}});var g=n(9091);Object.defineProperty(t,"_",{enumerable:!0,get:function(){return g._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return g.str}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return g.stringify}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return g.nil}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return g.Name}}),Object.defineProperty(t,"CodeGen",{enumerable:!0,get:function(){return g.CodeGen}});var y=n(8317);Object.defineProperty(t,"ValidationError",{enumerable:!0,get:function(){return y.default}});var b=n(41145);Object.defineProperty(t,"MissingRefError",{enumerable:!0,get:function(){return b.default}})},9716:function(e,t,n){"use strict";var r,i,a=n(59400).default,o=n(861).default,s=n(38416).default,l=n(61655).default,c=n(26389).default,u=n(89728).default,f=n(56690).default;Object.defineProperty(t,"__esModule",{value:!0}),t.regexpCode=t.getEsmExportName=t.getProperty=t.safeStringify=t.stringify=t.strConcat=t.addCodeArg=t.str=t._=t.nil=t._Code=t.Name=t.IDENTIFIER=t._CodeOrName=void 0;var d=u((function e(){f(this,e)}));t._CodeOrName=d,t.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;var h=function(e){l(r,e);var n=c(r);function r(e){var i;if(f(this,r),i=n.call(this),!t.IDENTIFIER.test(e))throw new Error("CodeGen: name must be a valid identifier");return i.str=e,i}return u(r,[{key:"toString",value:function(){return this.str}},{key:"emptyStr",value:function(){return!1}},{key:"names",get:function(){return s({},this.str,1)}}]),r}(d);t.Name=h;var p=function(e){l(n,e);var t=c(n);function n(e){var r;return f(this,n),(r=t.call(this))._items="string"===typeof e?[e]:e,r}return u(n,[{key:"toString",value:function(){return this.str}},{key:"emptyStr",value:function(){if(this._items.length>1)return!1;var e=this._items[0];return""===e||'""'===e}},{key:"str",get:function(){var e;return null!==(e=this._str)&&void 0!==e?e:this._str=this._items.reduce((function(e,t){return"".concat(e).concat(t)}),"")}},{key:"names",get:function(){var e;return null!==(e=this._names)&&void 0!==e?e:this._names=this._items.reduce((function(e,t){return t instanceof h&&(e[t.str]=(e[t.str]||0)+1),e}),{})}}]),n}(d);function v(e){for(var t=[e[0]],n=0,r=arguments.length,i=new Array(r>1?r-1:0),a=1;a1?r-1:0),a=1;a"),GTE:new b._Code(">="),LT:new b._Code("<"),LTE:new b._Code("<="),EQ:new b._Code("==="),NEQ:new b._Code("!=="),NOT:new b._Code("!"),OR:new b._Code("||"),AND:new b._Code("&&"),ADD:new b._Code("+")};var k=function(){function e(){g(this,e)}return y(e,[{key:"optimizeNodes",value:function(){return this}},{key:"optimizeNames",value:function(e,t){return this}}]),e}(),S=function(e){v(n,e);var t=m(n);function n(e,r,i){var a;return g(this,n),(a=t.call(this)).varKind=e,a.name=r,a.rhs=i,a}return y(n,[{key:"render",value:function(e){var t=e.es5,n=e._n,r=t?x.varKinds.var:this.varKind,i=void 0===this.rhs?"":" = ".concat(this.rhs);return"".concat(r," ").concat(this.name).concat(i,";")+n}},{key:"optimizeNames",value:function(e,t){if(e[this.name.str])return this.rhs&&(this.rhs=Z(this.rhs,e,t)),this}},{key:"names",get:function(){return this.rhs instanceof b._CodeOrName?this.rhs.names:{}}}]),n}(k),T=function(e){v(n,e);var t=m(n);function n(e,r,i){var a;return g(this,n),(a=t.call(this)).lhs=e,a.rhs=r,a.sideEffects=i,a}return y(n,[{key:"render",value:function(e){var t=e._n;return"".concat(this.lhs," = ").concat(this.rhs,";")+t}},{key:"optimizeNames",value:function(e,t){if(!(this.lhs instanceof b.Name)||e[this.lhs.str]||this.sideEffects)return this.rhs=Z(this.rhs,e,t),this}},{key:"names",get:function(){return G(this.lhs instanceof b.Name?{}:p({},this.lhs.names),this.rhs)}}]),n}(k),A=function(e){v(n,e);var t=m(n);function n(e,r,i,a){var o;return g(this,n),(o=t.call(this,e,i,a)).op=r,o}return y(n,[{key:"render",value:function(e){var t=e._n;return"".concat(this.lhs," ").concat(this.op,"= ").concat(this.rhs,";")+t}}]),n}(T),E=function(e){v(n,e);var t=m(n);function n(e){var r;return g(this,n),(r=t.call(this)).label=e,r.names={},r}return y(n,[{key:"render",value:function(e){var t=e._n;return"".concat(this.label,":")+t}}]),n}(k),C=function(e){v(n,e);var t=m(n);function n(e){var r;return g(this,n),(r=t.call(this)).label=e,r.names={},r}return y(n,[{key:"render",value:function(e){var t=e._n,n=this.label?" ".concat(this.label):"";return"break".concat(n,";")+t}}]),n}(k),M=function(e){v(n,e);var t=m(n);function n(e){var r;return g(this,n),(r=t.call(this)).error=e,r}return y(n,[{key:"render",value:function(e){var t=e._n;return"throw ".concat(this.error,";")+t}},{key:"names",get:function(){return this.error.names}}]),n}(k),O=function(e){v(n,e);var t=m(n);function n(e){var r;return g(this,n),(r=t.call(this)).code=e,r}return y(n,[{key:"render",value:function(e){var t=e._n;return"".concat(this.code,";")+t}},{key:"optimizeNodes",value:function(){return"".concat(this.code)?this:void 0}},{key:"optimizeNames",value:function(e,t){return this.code=Z(this.code,e,t),this}},{key:"names",get:function(){return this.code instanceof b._CodeOrName?this.code.names:{}}}]),n}(k),P=function(e){v(n,e);var t=m(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return g(this,n),(e=t.call(this)).nodes=r,e}return y(n,[{key:"render",value:function(e){return this.nodes.reduce((function(t,n){return t+n.render(e)}),"")}},{key:"optimizeNodes",value:function(){for(var e=this.nodes,t=e.length;t--;){var n=e[t].optimizeNodes();Array.isArray(n)?e.splice.apply(e,[t,1].concat(h(n))):n?e[t]=n:e.splice(t,1)}return e.length>0?this:void 0}},{key:"optimizeNames",value:function(e,t){for(var n=this.nodes,r=n.length;r--;){var i=n[r];i.optimizeNames(e,t)||(Y(e,i.names),n.splice(r,1))}return n.length>0?this:void 0}},{key:"names",get:function(){return this.nodes.reduce((function(e,t){return q(e,t.names)}),{})}}]),n}(k),L=function(e){v(n,e);var t=m(n);function n(){return g(this,n),t.apply(this,arguments)}return y(n,[{key:"render",value:function(e){return"{"+e._n+f(d(n.prototype),"render",this).call(this,e)+"}"+e._n}}]),n}(P),I=function(e){v(n,e);var t=m(n);function n(){return g(this,n),t.apply(this,arguments)}return y(n)}(P),R=function(e){v(n,e);var t=m(n);function n(){return g(this,n),t.apply(this,arguments)}return y(n)}(L);R.kind="else";var D=function(e){v(n,e);var t=m(n);function n(e,r){var i;return g(this,n),(i=t.call(this,r)).condition=e,i}return y(n,[{key:"render",value:function(e){var t="if(".concat(this.condition,")")+f(d(n.prototype),"render",this).call(this,e);return this.else&&(t+="else "+this.else.render(e)),t}},{key:"optimizeNodes",value:function(){f(d(n.prototype),"optimizeNodes",this).call(this);var e=this.condition;if(!0===e)return this.nodes;var t=this.else;if(t){var r=t.optimizeNodes();t=this.else=Array.isArray(r)?new R(r):r}return t?!1===e?t instanceof n?t:t.nodes:this.nodes.length?this:new n(K(e),t instanceof n?[t]:t.nodes):!1!==e&&this.nodes.length?this:void 0}},{key:"optimizeNames",value:function(e,t){var r;if(this.else=null===(r=this.else)||void 0===r?void 0:r.optimizeNames(e,t),f(d(n.prototype),"optimizeNames",this).call(this,e,t)||this.else)return this.condition=Z(this.condition,e,t),this}},{key:"names",get:function(){var e=f(d(n.prototype),"names",this);return G(e,this.condition),this.else&&q(e,this.else.names),e}}]),n}(L);D.kind="if";var F=function(e){v(n,e);var t=m(n);function n(){return g(this,n),t.apply(this,arguments)}return y(n)}(L);F.kind="for";var N=function(e){v(n,e);var t=m(n);function n(e){var r;return g(this,n),(r=t.call(this)).iteration=e,r}return y(n,[{key:"render",value:function(e){return"for(".concat(this.iteration,")")+f(d(n.prototype),"render",this).call(this,e)}},{key:"optimizeNames",value:function(e,t){if(f(d(n.prototype),"optimizeNames",this).call(this,e,t))return this.iteration=Z(this.iteration,e,t),this}},{key:"names",get:function(){return q(f(d(n.prototype),"names",this),this.iteration.names)}}]),n}(F),z=function(e){v(n,e);var t=m(n);function n(e,r,i,a){var o;return g(this,n),(o=t.call(this)).varKind=e,o.name=r,o.from=i,o.to=a,o}return y(n,[{key:"render",value:function(e){var t=e.es5?x.varKinds.var:this.varKind,r=this.name,i=this.from,a=this.to;return"for(".concat(t," ").concat(r,"=").concat(i,"; ").concat(r,"<").concat(a,"; ").concat(r,"++)")+f(d(n.prototype),"render",this).call(this,e)}},{key:"names",get:function(){var e=G(f(d(n.prototype),"names",this),this.from);return G(e,this.to)}}]),n}(F),j=function(e){v(n,e);var t=m(n);function n(e,r,i,a){var o;return g(this,n),(o=t.call(this)).loop=e,o.varKind=r,o.name=i,o.iterable=a,o}return y(n,[{key:"render",value:function(e){return"for(".concat(this.varKind," ").concat(this.name," ").concat(this.loop," ").concat(this.iterable,")")+f(d(n.prototype),"render",this).call(this,e)}},{key:"optimizeNames",value:function(e,t){if(f(d(n.prototype),"optimizeNames",this).call(this,e,t))return this.iterable=Z(this.iterable,e,t),this}},{key:"names",get:function(){return q(f(d(n.prototype),"names",this),this.iterable.names)}}]),n}(F),B=function(e){v(n,e);var t=m(n);function n(e,r,i){var a;return g(this,n),(a=t.call(this)).name=e,a.args=r,a.async=i,a}return y(n,[{key:"render",value:function(e){var t=this.async?"async ":"";return"".concat(t,"function ").concat(this.name,"(").concat(this.args,")")+f(d(n.prototype),"render",this).call(this,e)}}]),n}(L);B.kind="func";var U=function(e){v(n,e);var t=m(n);function n(){return g(this,n),t.apply(this,arguments)}return y(n,[{key:"render",value:function(e){return"return "+f(d(n.prototype),"render",this).call(this,e)}}]),n}(P);U.kind="return";var H=function(e){v(n,e);var t=m(n);function n(){return g(this,n),t.apply(this,arguments)}return y(n,[{key:"render",value:function(e){var t="try"+f(d(n.prototype),"render",this).call(this,e);return this.catch&&(t+=this.catch.render(e)),this.finally&&(t+=this.finally.render(e)),t}},{key:"optimizeNodes",value:function(){var e,t;return f(d(n.prototype),"optimizeNodes",this).call(this),null===(e=this.catch)||void 0===e||e.optimizeNodes(),null===(t=this.finally)||void 0===t||t.optimizeNodes(),this}},{key:"optimizeNames",value:function(e,t){var r,i;return f(d(n.prototype),"optimizeNames",this).call(this,e,t),null===(r=this.catch)||void 0===r||r.optimizeNames(e,t),null===(i=this.finally)||void 0===i||i.optimizeNames(e,t),this}},{key:"names",get:function(){var e=f(d(n.prototype),"names",this);return this.catch&&q(e,this.catch.names),this.finally&&q(e,this.finally.names),e}}]),n}(L),$=function(e){v(n,e);var t=m(n);function n(e){var r;return g(this,n),(r=t.call(this)).error=e,r}return y(n,[{key:"render",value:function(e){return"catch(".concat(this.error,")")+f(d(n.prototype),"render",this).call(this,e)}}]),n}(L);$.kind="catch";var V=function(e){v(n,e);var t=m(n);function n(){return g(this,n),t.apply(this,arguments)}return y(n,[{key:"render",value:function(e){return"finally"+f(d(n.prototype),"render",this).call(this,e)}}]),n}(L);V.kind="finally";var W=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};g(this,e),this._values={},this._blockStarts=[],this._constants={},this.opts=p(p({},n),{},{_n:n.lines?"\n":""}),this._extScope=t,this._scope=new x.Scope({parent:t}),this._nodes=[new I]}return y(e,[{key:"toString",value:function(){return this._root.render(this.opts)}},{key:"name",value:function(e){return this._scope.name(e)}},{key:"scopeName",value:function(e){return this._extScope.name(e)}},{key:"scopeValue",value:function(e,t){var n=this._extScope.value(e,t);return(this._values[n.prefix]||(this._values[n.prefix]=new Set)).add(n),n}},{key:"getScopeValue",value:function(e,t){return this._extScope.getValue(e,t)}},{key:"scopeRefs",value:function(e){return this._extScope.scopeRefs(e,this._values)}},{key:"scopeCode",value:function(){return this._extScope.scopeCode(this._values)}},{key:"_def",value:function(e,t,n,r){var i=this._scope.toName(t);return void 0!==n&&r&&(this._constants[i.str]=n),this._leafNode(new S(e,i,n)),i}},{key:"const",value:function(e,t,n){return this._def(x.varKinds.const,e,t,n)}},{key:"let",value:function(e,t,n){return this._def(x.varKinds.let,e,t,n)}},{key:"var",value:function(e,t,n){return this._def(x.varKinds.var,e,t,n)}},{key:"assign",value:function(e,t,n){return this._leafNode(new T(e,t,n))}},{key:"add",value:function(e,n){return this._leafNode(new A(e,t.operators.ADD,n))}},{key:"code",value:function(e){return"function"==typeof e?e():e!==b.nil&&this._leafNode(new O(e)),this}},{key:"object",value:function(){for(var e=["{"],t=arguments.length,n=new Array(t),r=0;r1&&e.push(","),e.push(s),(s!==l||this.opts.es5)&&(e.push(":"),(0,b.addCodeArg)(e,l))}return e.push("}"),new b._Code(e)}},{key:"if",value:function(e,t,n){if(this._blockNode(new D(e)),t&&n)this.code(t).else().code(n).endIf();else if(t)this.code(t).endIf();else if(n)throw new Error('CodeGen: "else" body without "then" body');return this}},{key:"elseIf",value:function(e){return this._elseNode(new D(e))}},{key:"else",value:function(){return this._elseNode(new R)}},{key:"endIf",value:function(){return this._endBlockNode(D,R)}},{key:"_for",value:function(e,t){return this._blockNode(e),t&&this.code(t).endFor(),this}},{key:"for",value:function(e,t){return this._for(new N(e),t)}},{key:"forRange",value:function(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:this.opts.es5?x.varKinds.var:x.varKinds.let,a=this._scope.toName(e);return this._for(new z(i,a,t,n),(function(){return r(a)}))}},{key:"forOf",value:function(e,t,n){var a=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:x.varKinds.const,s=this._scope.toName(e);if(this.opts.es5){var l=t instanceof b.Name?t:this.var("_arr",t);return this.forRange("_i",0,(0,b._)(r||(r=c(["",".length"])),l),(function(e){a.var(s,(0,b._)(i||(i=c(["","[","]"])),l,e)),n(s)}))}return this._for(new j("of",o,s,t),(function(){return n(s)}))}},{key:"forIn",value:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.opts.es5?x.varKinds.var:x.varKinds.const;if(this.opts.ownProperties)return this.forOf(e,(0,b._)(a||(a=c(["Object.keys(",")"])),t),n);var i=this._scope.toName(e);return this._for(new j("in",r,i,t),(function(){return n(i)}))}},{key:"endFor",value:function(){return this._endBlockNode(F)}},{key:"label",value:function(e){return this._leafNode(new E(e))}},{key:"break",value:function(e){return this._leafNode(new C(e))}},{key:"return",value:function(e){var t=new U;if(this._blockNode(t),this.code(e),1!==t.nodes.length)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(U)}},{key:"try",value:function(e,t,n){if(!t&&!n)throw new Error('CodeGen: "try" without "catch" and "finally"');var r=new H;if(this._blockNode(r),this.code(e),t){var i=this.name("e");this._currNode=r.catch=new $(i),t(i)}return n&&(this._currNode=r.finally=new V,this.code(n)),this._endBlockNode($,V)}},{key:"throw",value:function(e){return this._leafNode(new M(e))}},{key:"block",value:function(e,t){return this._blockStarts.push(this._nodes.length),e&&this.code(e).endBlock(t),this}},{key:"endBlock",value:function(e){var t=this._blockStarts.pop();if(void 0===t)throw new Error("CodeGen: not in self-balancing block");var n=this._nodes.length-t;if(n<0||void 0!==e&&n!==e)throw new Error("CodeGen: wrong number of nodes: ".concat(n," vs ").concat(e," expected"));return this._nodes.length=t,this}},{key:"func",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b.nil,n=arguments.length>2?arguments[2]:void 0,r=arguments.length>3?arguments[3]:void 0;return this._blockNode(new B(e,t,n)),r&&this.code(r).endFunc(),this}},{key:"endFunc",value:function(){return this._endBlockNode(B)}},{key:"optimize",value:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1;e-- >0;)this._root.optimizeNodes(),this._root.optimizeNames(this._root.names,this._constants)}},{key:"_leafNode",value:function(e){return this._currNode.nodes.push(e),this}},{key:"_blockNode",value:function(e){this._currNode.nodes.push(e),this._nodes.push(e)}},{key:"_endBlockNode",value:function(e,t){var n=this._currNode;if(n instanceof e||t&&n instanceof t)return this._nodes.pop(),this;throw new Error('CodeGen: not in block "'.concat(t?"".concat(e.kind,"/").concat(t.kind):e.kind,'"'))}},{key:"_elseNode",value:function(e){var t=this._currNode;if(!(t instanceof D))throw new Error('CodeGen: "else" without "if"');return this._currNode=t.else=e,this}},{key:"_root",get:function(){return this._nodes[0]}},{key:"_currNode",get:function(){var e=this._nodes;return e[e.length-1]},set:function(e){var t=this._nodes;t[t.length-1]=e}}]),e}();function q(e,t){for(var n in t)e[n]=(e[n]||0)+(t[n]||0);return e}function G(e,t){return t instanceof b._CodeOrName?q(e,t.names):e}function Z(e,t,n){return e instanceof b.Name?i(e):(r=e)instanceof b._Code&&r._items.some((function(e){return e instanceof b.Name&&1===t[e.str]&&void 0!==n[e.str]}))?new b._Code(e._items.reduce((function(e,t){return t instanceof b.Name&&(t=i(t)),t instanceof b._Code?e.push.apply(e,h(t._items)):e.push(t),e}),[])):e;var r;function i(e){var r=n[e.str];return void 0===r||1!==t[e.str]?e:(delete t[e.str],r)}}function Y(e,t){for(var n in t)e[n]=(e[n]||0)-(t[n]||0)}function K(e){return"boolean"==typeof e||"number"==typeof e||null===e?!e:(0,b._)(o||(o=c(["!",""])),ee(e))}t.CodeGen=W,t.not=K;var X=Q(t.operators.AND);t.and=function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&void 0!==arguments[0]?arguments[0]:{},n=t.prefixes,r=t.parent;f(this,e),this._names={},this._prefixes=n,this._parent=r}return u(e,[{key:"toName",value:function(e){return e instanceof m.Name?e:this.name(e)}},{key:"name",value:function(e){return new m.Name(this._newName(e))}},{key:"_newName",value:function(e){var t=this._names[e]||this._nameGroup(e);return"".concat(e).concat(t.index++)}},{key:"_nameGroup",value:function(e){var t,n;if((null===(n=null===(t=this._parent)||void 0===t?void 0:t._prefixes)||void 0===n?void 0:n.has(e))||this._prefixes&&!this._prefixes.has(e))throw new Error('CodeGen: prefix "'.concat(e,'" is not allowed in this scope'));return this._names[e]={prefix:e,index:0}}}]),e}();t.Scope=y;var b=function(e){d(n,e);var t=h(n);function n(e,r){var i;return f(this,n),(i=t.call(this,r)).prefix=e,i}return u(n,[{key:"setValue",value:function(e,t){var n=t.property,i=t.itemIndex;this.value=e,this.scopePath=(0,m._)(r||(r=c([".","[","]"])),new m.Name(n),i)}}]),n}(m.Name);t.ValueScopeName=b;var x=(0,m._)(i||(i=c(["\n"],["\\n"]))),w=function(e){d(r,e);var n=h(r);function r(e){var t;return f(this,r),(t=n.call(this,e))._values={},t._scope=e.scope,t.opts=l(l({},e),{},{_n:e.lines?x:m.nil}),t}return u(r,[{key:"get",value:function(){return this._scope}},{key:"name",value:function(e){return new b(e,this._newName(e))}},{key:"value",value:function(e,t){var n;if(void 0===t.ref)throw new Error("CodeGen: ref must be passed in value");var r=this.toName(e),i=r.prefix,a=null!==(n=t.key)&&void 0!==n?n:t.ref,o=this._values[i];if(o){var s=o.get(a);if(s)return s}else o=this._values[i]=new Map;o.set(a,r);var l=this._scope[i]||(this._scope[i]=[]),c=l.length;return l[c]=t.ref,r.setValue(t,{property:i,itemIndex:c}),r}},{key:"getValue",value:function(e,t){var n=this._values[e];if(n)return n.get(t)}},{key:"scopeRefs",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this._values;return this._reduceValues(t,(function(t){if(void 0===t.scopePath)throw new Error('CodeGen: name "'.concat(t,'" has no value'));return(0,m._)(a||(a=c(["","",""])),e,t.scopePath)}))}},{key:"scopeCode",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this._values,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;return this._reduceValues(e,(function(e){if(void 0===e.value)throw new Error('CodeGen: name "'.concat(e,'" has no value'));return e.value.code}),t,n)}},{key:"_reduceValues",value:function(e,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=arguments.length>3?arguments[3]:void 0,l=m.nil,u=function(){var u=e[f];if(!u)return 1;var d=i[f]=i[f]||new Map;u.forEach((function(e){if(!d.has(e)){d.set(e,v.Started);var i=n(e);if(i){var u=r.opts.es5?t.varKinds.var:t.varKinds.const;l=(0,m._)(o||(o=c(["",""," "," = ",";",""])),l,u,e,i,r.opts._n)}else{if(!(i=null===a||void 0===a?void 0:a(e)))throw new g(e);l=(0,m._)(s||(s=c(["","","",""])),l,i,r.opts._n)}d.set(e,v.Completed)}}))};for(var f in e)u();return l}}]),r}(y);t.ValueScope=w},80005:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E,C=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.extendErrors=t.resetErrorsCount=t.reportExtraError=t.reportError=t.keyword$DataError=t.keywordError=void 0;var M=n(9091),O=n(34648),P=n(58317);function L(e,t){var n=e.const("err",t);e.if((0,M._)(m||(m=C([""," === null"])),P.default.vErrors),(function(){return e.assign(P.default.vErrors,(0,M._)(g||(g=C(["[","]"])),n))}),(0,M._)(y||(y=C(["",".push(",")"])),P.default.vErrors,n)),e.code((0,M._)(b||(b=C(["","++"])),P.default.errors))}function I(e,t){var n=e.gen,r=e.validateName;e.schemaEnv.$async?n.throw((0,M._)(x||(x=C(["new ","(",")"])),e.ValidationError,t)):(n.assign((0,M._)(w||(w=C(["",".errors"])),r),t),n.return(!1))}t.keywordError={message:function(e){var t=e.keyword;return(0,M.str)(r||(r=C(['must pass "','" keyword validation'])),t)}},t.keyword$DataError={message:function(e){var t=e.keyword,n=e.schemaType;return n?(0,M.str)(i||(i=C(['"','" keyword must be '," ($data)"])),t,n):(0,M.str)(a||(a=C(['"','" keyword is invalid ($data)'])),t)}},t.reportError=function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.keywordError,r=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0,a=e.it,s=a.gen,l=a.compositeRule,c=a.allErrors,u=D(e,n,r);(null!==i&&void 0!==i?i:l||c)?L(s,u):I(a,(0,M._)(o||(o=C(["[","]"])),u))},t.reportExtraError=function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.keywordError,r=arguments.length>2?arguments[2]:void 0,i=e.it,a=i.gen,o=i.compositeRule,s=i.allErrors;L(a,D(e,n,r)),o||s||I(i,P.default.vErrors)},t.resetErrorsCount=function(e,t){e.assign(P.default.errors,t),e.if((0,M._)(s||(s=C([""," !== null"])),P.default.vErrors),(function(){return e.if(t,(function(){return e.assign((0,M._)(l||(l=C(["",".length"])),P.default.vErrors),t)}),(function(){return e.assign(P.default.vErrors,null)}))}))},t.extendErrors=function(e){var t=e.gen,n=e.keyword,r=e.schemaValue,i=e.data,a=e.errsCount,o=e.it;if(void 0===a)throw new Error("ajv implementation error");var s=t.name("err");t.forRange("i",a,P.default.errors,(function(e){t.const(s,(0,M._)(c||(c=C(["","[","]"])),P.default.vErrors,e)),t.if((0,M._)(u||(u=C(["",".instancePath === undefined"])),s),(function(){return t.assign((0,M._)(f||(f=C(["",".instancePath"])),s),(0,M.strConcat)(P.default.instancePath,o.errorPath))})),t.assign((0,M._)(d||(d=C(["",".schemaPath"])),s),(0,M.str)(h||(h=C(["","/",""])),o.errSchemaPath,n)),o.opts.verbose&&(t.assign((0,M._)(p||(p=C(["",".schema"])),s),r),t.assign((0,M._)(v||(v=C(["",".data"])),s),i))}))};var R={keyword:new M.Name("keyword"),schemaPath:new M.Name("schemaPath"),params:new M.Name("params"),propertyName:new M.Name("propertyName"),message:new M.Name("message"),schema:new M.Name("schema"),parentSchema:new M.Name("parentSchema")};function D(e,t,n){return!1===e.it.createErrors?(0,M._)(_||(_=C(["{}"]))):function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=e.gen,i=e.it,a=[F(i,n),N(e,n)];return function(e,t,n){var r=t.params,i=t.message,a=e.keyword,o=e.data,s=e.schemaValue,l=e.it,c=l.opts,u=l.propertyName,f=l.topSchemaRef,d=l.schemaPath;n.push([R.keyword,a],[R.params,"function"==typeof r?r(e):r||(0,M._)(A||(A=C(["{}"])))]),c.messages&&n.push([R.message,"function"==typeof i?i(e):i]);c.verbose&&n.push([R.schema,s],[R.parentSchema,(0,M._)(E||(E=C(["","",""])),f,d)],[P.default.data,o]);u&&n.push([R.propertyName,u])}(e,t,a),r.object.apply(r,a)}(e,t,n)}function F(e,t){var n=e.errorPath,r=t.instancePath,i=r?(0,M.str)(k||(k=C(["","",""])),n,(0,O.getErrorPath)(r,O.Type.Str)):n;return[P.default.instancePath,(0,M.strConcat)(P.default.instancePath,i)]}function N(e,t){var n=e.keyword,r=e.it.errSchemaPath,i=t.schemaPath,a=t.parentSchema?r:(0,M.str)(S||(S=C(["","/",""])),r,n);return i&&(a=(0,M.str)(T||(T=C(["","",""])),a,(0,O.getErrorPath)(i,O.Type.Str))),[R.schemaPath,a]}},28393:function(e,t,n){"use strict";var r,i,a=n(74704).default,o=n(59400).default,s=n(89728).default,l=n(56690).default;Object.defineProperty(t,"__esModule",{value:!0}),t.resolveSchema=t.getCompilingSchema=t.resolveRef=t.compileSchema=t.SchemaEnv=void 0;var c=n(9091),u=n(8317),f=n(58317),d=n(92225),h=n(34648),p=n(12262),v=s((function e(t){var n,r;l(this,e),this.refs={},this.dynamicAnchors={},"object"==typeof t.schema&&(r=t.schema),this.schema=t.schema,this.schemaId=t.schemaId,this.root=t.root||this,this.baseId=null!==(n=t.baseId)&&void 0!==n?n:(0,d.normalizeId)(null===r||void 0===r?void 0:r[t.schemaId||"$id"]),this.schemaPath=t.schemaPath,this.localRefs=t.localRefs,this.meta=t.meta,this.$async=null===r||void 0===r?void 0:r.$async,this.refs={}}));function m(e){var t=y.call(this,e);if(t)return t;var n,a=(0,d.getFullPath)(this.opts.uriResolver,e.root.baseId),s=this.opts.code,l=s.es5,h=s.lines,v=this.opts.ownProperties,m=new c.CodeGen(this.scope,{es5:l,lines:h,ownProperties:v});e.$async&&(n=m.scopeValue("Error",{ref:u.default,code:(0,c._)(r||(r=o(['require("ajv/dist/runtime/validation_error").default'])))}));var g=m.scopeName("validate");e.validateName=g;var b,x={gen:m,allErrors:this.opts.allErrors,data:f.default.data,parentData:f.default.parentData,parentDataProperty:f.default.parentDataProperty,dataNames:[f.default.data],dataPathArr:[c.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:m.scopeValue("schema",!0===this.opts.code.source?{ref:e.schema,code:(0,c.stringify)(e.schema)}:{ref:e.schema}),validateName:g,ValidationError:n,schema:e.schema,schemaEnv:e,rootId:a,baseId:e.baseId||a,schemaPath:c.nil,errSchemaPath:e.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,c._)(i||(i=o(['""']))),opts:this.opts,self:this};try{this._compilations.add(e),(0,p.validateFunctionCode)(x),m.optimize(this.opts.code.optimize);var w=m.toString();b="".concat(m.scopeRefs(f.default.scope),"return ").concat(w),this.opts.code.process&&(b=this.opts.code.process(b,e));var _=new Function("".concat(f.default.self),"".concat(f.default.scope),b)(this,this.scope.get());if(this.scope.value(g,{ref:_}),_.errors=null,_.schema=e.schema,_.schemaEnv=e,e.$async&&(_.$async=!0),!0===this.opts.code.source&&(_.source={validateName:g,validateCode:w,scopeValues:m._values}),this.opts.unevaluated){var k=x.props,S=x.items;_.evaluated={props:k instanceof c.Name?void 0:k,items:S instanceof c.Name?void 0:S,dynamicProps:k instanceof c.Name,dynamicItems:S instanceof c.Name},_.source&&(_.source.evaluated=(0,c.stringify)(_.evaluated))}return e.validate=_,e}catch(T){throw delete e.validate,delete e.validateName,b&&this.logger.error("Error compiling schema, function code:",b),T}finally{this._compilations.delete(e)}}function g(e){return(0,d.inlineRef)(e.schema,this.opts.inlineRefs)?e.schema:e.validate?e:m.call(this,e)}function y(e){var t,n,r,i=a(this._compilations);try{for(i.s();!(t=i.n()).done;){var o=t.value;if(r=e,(n=o).schema===r.schema&&n.root===r.root&&n.baseId===r.baseId)return o}}catch(s){i.e(s)}finally{i.f()}}function b(e,t){for(var n;"string"==typeof(n=this.refs[t]);)t=n;return n||this.schemas[t]||x.call(this,e,t)}function x(e,t){var n=this.opts.uriResolver.parse(t),r=(0,d._getFullPath)(this.opts.uriResolver,n),i=(0,d.getFullPath)(this.opts.uriResolver,e.baseId,void 0);if(Object.keys(e.schema).length>0&&r===i)return _.call(this,n,e);var a=(0,d.normalizeId)(r),o=this.refs[a]||this.schemas[a];if("string"==typeof o){var s=x.call(this,e,o);if("object"!==typeof(null===s||void 0===s?void 0:s.schema))return;return _.call(this,n,s)}if("object"===typeof(null===o||void 0===o?void 0:o.schema)){if(o.validate||m.call(this,o),a===(0,d.normalizeId)(t)){var l=o.schema,c=this.opts.schemaId,u=l[c];return u&&(i=(0,d.resolveUrl)(this.opts.uriResolver,i,u)),new v({schema:l,schemaId:c,root:e,baseId:i})}return _.call(this,n,o)}}t.SchemaEnv=v,t.compileSchema=m,t.resolveRef=function(e,t,n){var r;n=(0,d.resolveUrl)(this.opts.uriResolver,t,n);var i=e.refs[n];if(i)return i;var a=b.call(this,e,n);if(void 0===a){var o=null===(r=e.localRefs)||void 0===r?void 0:r[n],s=this.opts.schemaId;o&&(a=new v({schema:o,schemaId:s,root:e,baseId:t}))}return void 0!==a?e.refs[n]=g.call(this,a):void 0},t.getCompilingSchema=y,t.resolveSchema=x;var w=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function _(e,t){var n,r=t.baseId,i=t.schema,o=t.root;if("/"===(null===(n=e.fragment)||void 0===n?void 0:n[0])){var s,l,c=a(e.fragment.slice(1).split("/"));try{for(c.s();!(s=c.n()).done;){var u=s.value;if("boolean"===typeof i)return;var f=i[(0,h.unescapeFragment)(u)];if(void 0===f)return;var p="object"===typeof(i=f)&&i[this.opts.schemaId];!w.has(u)&&p&&(r=(0,d.resolveUrl)(this.opts.uriResolver,r,p))}}catch(y){c.e(y)}finally{c.f()}if("boolean"!=typeof i&&i.$ref&&!(0,h.schemaHasRulesButRef)(i,this.RULES)){var m=(0,d.resolveUrl)(this.opts.uriResolver,r,i.$ref);l=x.call(this,o,m)}var g=this.opts.schemaId;return(l=l||new v({schema:i,schemaId:g,root:o,baseId:r})).schema!==l.root.schema?l:void 0}}},58317:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(9091),i={data:new r.Name("data"),valCxt:new r.Name("valCxt"),instancePath:new r.Name("instancePath"),parentData:new r.Name("parentData"),parentDataProperty:new r.Name("parentDataProperty"),rootData:new r.Name("rootData"),dynamicAnchors:new r.Name("dynamicAnchors"),vErrors:new r.Name("vErrors"),errors:new r.Name("errors"),this:new r.Name("this"),self:new r.Name("self"),scope:new r.Name("scope"),json:new r.Name("json"),jsonPos:new r.Name("jsonPos"),jsonLen:new r.Name("jsonLen"),jsonPart:new r.Name("jsonPart")};t.default=i},41145:function(e,t,n){"use strict";var r=n(89728).default,i=n(56690).default,a=n(61655).default,o=n(26389).default,s=n(33496).default;Object.defineProperty(t,"__esModule",{value:!0});var l=n(92225),c=function(e){a(n,e);var t=o(n);function n(e,r,a,o){var s;return i(this,n),(s=t.call(this,o||"can't resolve reference ".concat(a," from id ").concat(r))).missingRef=(0,l.resolveUrl)(e,r,a),s.missingSchema=(0,l.normalizeId)((0,l.getFullPath)(e,s.missingRef)),s}return r(n)}(s(Error));t.default=c},92225:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getSchemaRefs=t.resolveUrl=t.normalizeId=t._getFullPath=t.getFullPath=t.inlineRef=void 0;var r=n(34648),i=n(78262),a=n(37204),o=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);t.inlineRef=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return"boolean"==typeof e||(!0===t?!l(e):!!t&&c(e)<=t)};var s=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function l(e){for(var t in e){if(s.has(t))return!0;var n=e[t];if(Array.isArray(n)&&n.some(l))return!0;if("object"==typeof n&&l(n))return!0}return!1}function c(e){var t=0;for(var n in e){if("$ref"===n)return 1/0;if(t++,!o.has(n)&&("object"==typeof e[n]&&(0,r.eachItem)(e[n],(function(e){return t+=c(e)})),t===1/0))return 1/0}return t}function u(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";!1!==(arguments.length>2?arguments[2]:void 0)&&(t=h(t));var n=e.parse(t);return f(e,n)}function f(e,t){return e.serialize(t).split("#")[0]+"#"}t.getFullPath=u,t._getFullPath=f;var d=/#\/?$/;function h(e){return e?e.replace(d,""):""}t.normalizeId=h,t.resolveUrl=function(e,t,n){return n=h(n),e.resolve(t,n)};var p=/^[a-z_][-a-z0-9._]*$/i;t.getSchemaRefs=function(e,t){var n=this;if("boolean"==typeof e)return{};var r=this.opts,o=r.schemaId,s=r.uriResolver,l=h(e[o]||t),c={"":l},f=u(s,l,!1),d={},v=new Set;return a(e,{allKeys:!0},(function(e,t,r,i){if(void 0!==i){var a=f+t,s=c[i];"string"==typeof e[o]&&(s=l.call(n,e[o])),u.call(n,e.$anchor),u.call(n,e.$dynamicAnchor),c[t]=s}function l(t){var n=this.opts.uriResolver.resolve;if(t=h(s?n(s,t):t),v.has(t))throw g(t);v.add(t);var r=this.refs[t];return"string"==typeof r&&(r=this.refs[r]),"object"==typeof r?m(e,r.schema,t):t!==h(a)&&("#"===t[0]?(m(e,d[t],t),d[t]=e):this.refs[t]=a),t}function u(e){if("string"==typeof e){if(!p.test(e))throw new Error('invalid anchor "'.concat(e,'"'));l.call(this,"#".concat(e))}}})),d;function m(e,t,n){if(void 0!==t&&!i(e,t))throw g(n)}function g(e){return new Error('reference "'.concat(e,'" resolves to more than one schema'))}}},44091:function(e,t,n){"use strict";var r=n(42122).default;Object.defineProperty(t,"__esModule",{value:!0}),t.getRules=t.isJSONType=void 0;var i=new Set(["string","number","integer","boolean","null","object","array"]);t.isJSONType=function(e){return"string"==typeof e&&i.has(e)},t.getRules=function(){var e={number:{type:"number",rules:[]},string:{type:"string",rules:[]},array:{type:"array",rules:[]},object:{type:"object",rules:[]}};return{types:r(r({},e),{},{integer:!0,boolean:!0,null:!0}),rules:[{rules:[]},e.number,e.string,e.array,e.object],post:{rules:[]},all:{},keywords:{}}}},34648:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w=n(42122).default,_=n(59400).default,k=n(74704).default;Object.defineProperty(t,"__esModule",{value:!0}),t.checkStrictMode=t.getErrorPath=t.Type=t.useFunc=t.setEvaluated=t.evaluatedPropsToName=t.mergeEvaluated=t.eachItem=t.unescapeJsonPointer=t.escapeJsonPointer=t.escapeFragment=t.unescapeFragment=t.schemaRefOrVal=t.schemaHasRulesButRef=t.schemaHasRules=t.checkUnknownRules=t.alwaysValidSchema=t.toHash=void 0;var S=n(9091),T=n(9716);function A(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.schema,n=e.opts,r=e.self;if(n.strictSchema&&"boolean"!==typeof t){var i=r.RULES.keywords;for(var a in t)i[a]||D(e,'unknown keyword: "'.concat(a,'"'))}}function E(e,t){if("boolean"==typeof e)return!e;for(var n in e)if(t[n])return!0;return!1}function C(e){return"number"==typeof e?"".concat(e):e.replace(/~/g,"~0").replace(/\//g,"~1")}function M(e){return e.replace(/~1/g,"/").replace(/~0/g,"~")}function O(e){var t=e.mergeNames,n=e.mergeToName,r=e.mergeValues,i=e.resultToName;return function(e,a,o,s){var l=void 0===o?a:o instanceof S.Name?(a instanceof S.Name?t(e,a,o):n(e,a,o),o):a instanceof S.Name?(n(e,o,a),a):r(a,o);return s!==S.Name||l instanceof S.Name?l:i(e,l)}}function P(e,t){if(!0===t)return e.var("props",!0);var n=e.var("props",(0,S._)(v||(v=_(["{}"]))));return void 0!==t&&L(e,n,t),n}function L(e,t,n){Object.keys(n).forEach((function(n){return e.assign((0,S._)(m||(m=_(["","",""])),t,(0,S.getProperty)(n)),!0)}))}t.toHash=function(e){var t,n={},r=k(e);try{for(r.s();!(t=r.n()).done;){n[t.value]=!0}}catch(i){r.e(i)}finally{r.f()}return n},t.alwaysValidSchema=function(e,t){return"boolean"==typeof t?t:0===Object.keys(t).length||(A(e,t),!E(t,e.self.RULES.all))},t.checkUnknownRules=A,t.schemaHasRules=E,t.schemaHasRulesButRef=function(e,t){if("boolean"==typeof e)return!e;for(var n in e)if("$ref"!==n&&t.all[n])return!0;return!1},t.schemaRefOrVal=function(e,t,n,a){var o=e.topSchemaRef,s=e.schemaPath;if(!a){if("number"==typeof t||"boolean"==typeof t)return t;if("string"==typeof t)return(0,S._)(r||(r=_(["",""])),t)}return(0,S._)(i||(i=_(["","","",""])),o,s,(0,S.getProperty)(n))},t.unescapeFragment=function(e){return M(decodeURIComponent(e))},t.escapeFragment=function(e){return encodeURIComponent(C(e))},t.escapeJsonPointer=C,t.unescapeJsonPointer=M,t.eachItem=function(e,t){if(Array.isArray(e)){var n,r=k(e);try{for(r.s();!(n=r.n()).done;){t(n.value)}}catch(i){r.e(i)}finally{r.f()}}else t(e)},t.mergeEvaluated={props:O({mergeNames:function(e,t,n){return e.if((0,S._)(a||(a=_([""," !== true && "," !== undefined"])),n,t),(function(){e.if((0,S._)(o||(o=_([""," === true"])),t),(function(){return e.assign(n,!0)}),(function(){return e.assign(n,(0,S._)(s||(s=_([""," || {}"])),n)).code((0,S._)(l||(l=_(["Object.assign(",", ",")"])),n,t))}))}))},mergeToName:function(e,t,n){return e.if((0,S._)(c||(c=_([""," !== true"])),n),(function(){!0===t?e.assign(n,!0):(e.assign(n,(0,S._)(u||(u=_([""," || {}"])),n)),L(e,n,t))}))},mergeValues:function(e,t){return!0===e||w(w({},e),t)},resultToName:P}),items:O({mergeNames:function(e,t,n){return e.if((0,S._)(f||(f=_([""," !== true && "," !== undefined"])),n,t),(function(){return e.assign(n,(0,S._)(d||(d=_([""," === true ? true : "," > "," ? "," : ",""])),t,n,t,n,t))}))},mergeToName:function(e,t,n){return e.if((0,S._)(h||(h=_([""," !== true"])),n),(function(){return e.assign(n,!0===t||(0,S._)(p||(p=_([""," > "," ? "," : ",""])),n,t,n,t))}))},mergeValues:function(e,t){return!0===e||Math.max(e,t)},resultToName:function(e,t){return e.var("items",t)}})},t.evaluatedPropsToName=P,t.setEvaluated=L;var I,R={};function D(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.opts.strictSchema;if(n){if(t="strict mode: ".concat(t),!0===n)throw new Error(t);e.self.logger.warn(t)}}t.useFunc=function(e,t){return e.scopeValue("func",{ref:t,code:R[t.code]||(R[t.code]=new T._Code(t.code))})},function(e){e[e.Num=0]="Num",e[e.Str=1]="Str"}(I=t.Type||(t.Type={})),t.getErrorPath=function(e,t,n){if(e instanceof S.Name){var r=t===I.Num;return n?r?(0,S._)(g||(g=_(['"[" + ',' + "]"'])),e):(0,S._)(y||(y=_(['"[\'" + ',' + "\']"'])),e):r?(0,S._)(b||(b=_(['"/" + ',""])),e):(0,S._)(x||(x=_(['"/" + ','.replace(/~/g, "~0").replace(/\\//g, "~1")'],['"/" + ','.replace(/~/g, "~0").replace(/\\\\//g, "~1")'])),e)}return n?(0,S.getProperty)(e).toString():"/"+C(e)},t.checkStrictMode=D},39763:function(e,t){"use strict";function n(e,t){return t.rules.some((function(t){return r(e,t)}))}function r(e,t){var n;return void 0!==e[t.keyword]||(null===(n=t.definition.implements)||void 0===n?void 0:n.some((function(t){return void 0!==e[t]})))}Object.defineProperty(t,"__esModule",{value:!0}),t.shouldUseRule=t.shouldUseGroup=t.schemaHasRulesForType=void 0,t.schemaHasRulesForType=function(e,t){var r=e.schema,i=e.self.RULES.types[t];return i&&!0!==i&&n(r,i)},t.shouldUseGroup=n,t.shouldUseRule=r},61421:function(e,t,n){"use strict";var r,i=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.boolOrEmptySchema=t.topBoolOrEmptySchema=void 0;var a=n(80005),o=n(9091),s=n(58317),l={message:"boolean schema is false"};function c(e,t){var n={gen:e.gen,keyword:"false schema",data:e.data,schema:!1,schemaCode:!1,schemaValue:!1,params:{},it:e};(0,a.reportError)(n,l,void 0,t)}t.topBoolOrEmptySchema=function(e){var t=e.gen,n=e.schema,a=e.validateName;!1===n?c(e,!1):"object"==typeof n&&!0===n.$async?t.return(s.default.data):(t.assign((0,o._)(r||(r=i(["",".errors"])),a),null),t.return(!0))},t.boolOrEmptySchema=function(e,t){var n=e.gen;!1===e.schema?(n.var(t,!1),c(e)):n.var(t,!0)}},12093:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E,C,M,O,P,L,I,R,D,F=n(74704).default,N=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.reportTypeError=t.checkDataTypes=t.checkDataType=t.coerceAndCheckDataType=t.getJSONTypes=t.getSchemaTypes=t.DataType=void 0;var z,j=n(44091),B=n(39763),U=n(80005),H=n(9091),$=n(34648);function V(e){var t=Array.isArray(e)?e:e?[e]:[];if(t.every(j.isJSONType))return t;throw new Error("type must be JSONType or JSONType[]: "+t.join(","))}!function(e){e[e.Correct=0]="Correct",e[e.Wrong=1]="Wrong"}(z=t.DataType||(t.DataType={})),t.getSchemaTypes=function(e){var t=V(e.type);if(t.includes("null")){if(!1===e.nullable)throw new Error("type: null contradicts nullable: false")}else{if(!t.length&&void 0!==e.nullable)throw new Error('"nullable" cannot be used without "type"');!0===e.nullable&&t.push("null")}return t},t.getJSONTypes=V,t.coerceAndCheckDataType=function(e,t){var n=e.gen,T=e.data,A=e.opts,E=function(e,t){return t?e.filter((function(e){return W.has(e)||"array"===t&&"array"===e})):[]}(t,A.coerceTypes),C=t.length>0&&!(0===E.length&&1===t.length&&(0,B.schemaHasRulesForType)(e,t[0]));if(C){var M=G(t,T,A.strictNumbers,z.Wrong);n.if(M,(function(){E.length?function(e,t,n){var T=e.gen,A=e.data,E=e.opts,C=T.let("dataType",(0,H._)(r||(r=N(["typeof ",""])),A)),M=T.let("coerced",(0,H._)(i||(i=N(["undefined"]))));"array"===E.coerceTypes&&T.if((0,H._)(a||(a=N([""," == 'object' && Array.isArray(",") && ",".length == 1"])),C,A,A),(function(){return T.assign(A,(0,H._)(o||(o=N(["","[0]"])),A)).assign(C,(0,H._)(s||(s=N(["typeof ",""])),A)).if(G(t,A,E.strictNumbers),(function(){return T.assign(M,A)}))}));T.if((0,H._)(l||(l=N([""," !== undefined"])),M));var O,P=F(n);try{for(P.s();!(O=P.n()).done;){var L=O.value;(W.has(L)||"array"===L&&"array"===E.coerceTypes)&&I(L)}}catch(R){P.e(R)}finally{P.f()}function I(e){switch(e){case"string":return void T.elseIf((0,H._)(u||(u=N(["",' == "number" || ',' == "boolean"'])),C,C)).assign(M,(0,H._)(f||(f=N(['"" + ',""])),A)).elseIf((0,H._)(d||(d=N([""," === null"])),A)).assign(M,(0,H._)(h||(h=N(['""']))));case"number":return void T.elseIf((0,H._)(p||(p=N(["",' == "boolean" || '," === null\n || (",' == "string" && '," && "," == +",")"])),C,A,C,A,A,A)).assign(M,(0,H._)(v||(v=N(["+",""])),A));case"integer":return void T.elseIf((0,H._)(m||(m=N(["",' === "boolean" || '," === null\n || (",' === "string" && '," && "," == +"," && !("," % 1))"])),C,A,C,A,A,A,A)).assign(M,(0,H._)(g||(g=N(["+",""])),A));case"boolean":return void T.elseIf((0,H._)(y||(y=N(["",' === "false" || '," === 0 || "," === null"])),A,A,A)).assign(M,!1).elseIf((0,H._)(b||(b=N(["",' === "true" || '," === 1"])),A,A)).assign(M,!0);case"null":return T.elseIf((0,H._)(x||(x=N(["",' === "" || '," === 0 || "," === false"])),A,A,A)),void T.assign(M,null);case"array":T.elseIf((0,H._)(w||(w=N(["",' === "string" || ',' === "number"\n || ',' === "boolean" || '," === null"])),C,C,C,A)).assign(M,(0,H._)(_||(_=N(["[","]"])),A))}}T.else(),Y(e),T.endIf(),T.if((0,H._)(c||(c=N([""," !== undefined"])),M),(function(){T.assign(A,M),function(e,t){var n=e.gen,r=e.parentData,i=e.parentDataProperty;n.if((0,H._)(k||(k=N([""," !== undefined"])),r),(function(){return n.assign((0,H._)(S||(S=N(["","[","]"])),r,i),t)}))}(e,M)}))}(e,t,E):Y(e)}))}return C};var W=new Set(["string","number","integer","boolean","null"]);function q(e,t,n){var r,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:z.Correct,a=i===z.Correct?H.operators.EQ:H.operators.NEQ;switch(e){case"null":return(0,H._)(T||(T=N([""," "," null"])),t,a);case"array":r=(0,H._)(A||(A=N(["Array.isArray(",")"])),t);break;case"object":r=(0,H._)(E||(E=N([""," && typeof ",' == "object" && !Array.isArray(',")"])),t,t,t);break;case"integer":r=o((0,H._)(C||(C=N(["!("," % 1) && !isNaN(",")"])),t,t));break;case"number":r=o();break;default:return(0,H._)(M||(M=N(["typeof "," "," ",""])),t,a,e)}return i===z.Correct?r:(0,H.not)(r);function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:H.nil;return(0,H.and)((0,H._)(O||(O=N(["typeof ",' == "number"'])),t),e,n?(0,H._)(P||(P=N(["isFinite(",")"])),t):H.nil)}}function G(e,t,n,r){if(1===e.length)return q(e[0],t,n,r);var i,a=(0,$.toHash)(e);if(a.array&&a.object){var o=(0,H._)(L||(L=N(["typeof ",' != "object"'])),t);i=a.null?o:(0,H._)(I||(I=N(["!"," || ",""])),t,o),delete a.null,delete a.array,delete a.object}else i=H.nil;for(var s in a.number&&delete a.integer,a)i=(0,H.and)(i,q(s,t,n,r));return i}t.checkDataType=q,t.checkDataTypes=G;var Z={message:function(e){var t=e.schema;return"must be ".concat(t)},params:function(e){var t=e.schema,n=e.schemaValue;return"string"==typeof t?(0,H._)(R||(R=N(["{type: ","}"])),t):(0,H._)(D||(D=N(["{type: ","}"])),n)}};function Y(e){var t=function(e){var t=e.gen,n=e.data,r=e.schema,i=(0,$.schemaRefOrVal)(e,r,"type");return{gen:t,keyword:"type",data:n,schema:r.type,schemaCode:i,schemaValue:i,parentSchema:r,params:{},it:e}}(e);(0,U.reportError)(t,Z)}t.reportTypeError=Y},39540:function(e,t,n){"use strict";var r,i,a,o,s=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.assignDefaults=void 0;var l=n(9091),c=n(34648);function u(e,t,n){var u=e.gen,f=e.compositeRule,d=e.data,h=e.opts;if(void 0!==n){var p=(0,l._)(r||(r=s(["","",""])),d,(0,l.getProperty)(t));if(f)(0,c.checkStrictMode)(e,"default is ignored for: ".concat(p));else{var v=(0,l._)(i||(i=s([""," === undefined"])),p);"empty"===h.useDefaults&&(v=(0,l._)(a||(a=s([""," || "," === null || ",' === ""'])),v,p,p)),u.if(v,(0,l._)(o||(o=s([""," = ",""])),p,(0,l.stringify)(n)))}}}t.assignDefaults=function(e,t){var n=e.schema,r=n.properties,i=n.items;if("object"===t&&r)for(var a in r)u(e,a,r[a].default);else"array"===t&&Array.isArray(i)&&i.forEach((function(t,n){return u(e,n,t.default)}))}},12262:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E,C,M,O,P,L,I,R,D,F,N,z,j,B,U,H=n(42122).default,$=n(56690).default,V=n(89728).default,W=n(74704).default,q=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.getData=t.KeywordCxt=t.validateFunctionCode=void 0;var G=n(61421),Z=n(12093),Y=n(39763),K=n(12093),X=n(39540),J=n(5080),Q=n(15579),ee=n(9091),te=n(58317),ne=n(92225),re=n(34648),ie=n(80005);function ae(e,t){var n=e.gen,g=e.validateName,y=e.schema,b=e.schemaEnv,x=e.opts;x.code.es5?n.func(g,(0,ee._)(r||(r=q(["",", ",""])),te.default.data,te.default.valCxt),b.$async,(function(){n.code((0,ee._)(i||(i=q(['"use strict"; ',""])),oe(y,x))),function(e,t){e.if(te.default.valCxt,(function(){e.var(te.default.instancePath,(0,ee._)(l||(l=q(["",".",""])),te.default.valCxt,te.default.instancePath)),e.var(te.default.parentData,(0,ee._)(c||(c=q(["",".",""])),te.default.valCxt,te.default.parentData)),e.var(te.default.parentDataProperty,(0,ee._)(u||(u=q(["",".",""])),te.default.valCxt,te.default.parentDataProperty)),e.var(te.default.rootData,(0,ee._)(f||(f=q(["",".",""])),te.default.valCxt,te.default.rootData)),t.dynamicRef&&e.var(te.default.dynamicAnchors,(0,ee._)(d||(d=q(["",".",""])),te.default.valCxt,te.default.dynamicAnchors))}),(function(){e.var(te.default.instancePath,(0,ee._)(h||(h=q(['""'])))),e.var(te.default.parentData,(0,ee._)(p||(p=q(["undefined"])))),e.var(te.default.parentDataProperty,(0,ee._)(v||(v=q(["undefined"])))),e.var(te.default.rootData,te.default.data),t.dynamicRef&&e.var(te.default.dynamicAnchors,(0,ee._)(m||(m=q(["{}"]))))}))}(n,x),n.code(t)})):n.func(g,(0,ee._)(a||(a=q(["",", ",""])),te.default.data,function(e){return(0,ee._)(o||(o=q(["{",'="", ',", ",", ","=","","}={}"])),te.default.instancePath,te.default.parentData,te.default.parentDataProperty,te.default.rootData,te.default.data,e.dynamicRef?(0,ee._)(s||(s=q([", ","={}"])),te.default.dynamicAnchors):ee.nil)}(x)),b.$async,(function(){return n.code(oe(y,x)).code(t)}))}function oe(e,t){var n="object"==typeof e&&e[t.schemaId];return n&&(t.code.source||t.code.process)?(0,ee._)(S||(S=q(["/*# sourceURL="," */"])),n):ee.nil}function se(e,t){ce(e)&&(ue(e),le(e))?function(e,t){var n=e.schema,r=e.gen,i=e.opts;i.$comment&&n.$comment&&de(e);(function(e){var t=e.schema[e.opts.schemaId];t&&(e.baseId=(0,ne.resolveUrl)(e.opts.uriResolver,e.baseId,t))})(e),function(e){if(e.schema.$async&&!e.schemaEnv.$async)throw new Error("async schema in sync schema")}(e);var a=r.const("_errs",te.default.errors);fe(e,a),r.var(t,(0,ee._)(T||(T=q([""," === ",""])),a,te.default.errors))}(e,t):(0,G.boolOrEmptySchema)(e,t)}function le(e){var t=e.schema,n=e.self;if("boolean"==typeof t)return!t;for(var r in t)if(n.RULES.all[r])return!0;return!1}function ce(e){return"boolean"!=typeof e.schema}function ue(e){(0,re.checkUnknownRules)(e),function(e){var t=e.schema,n=e.errSchemaPath,r=e.opts,i=e.self;t.$ref&&r.ignoreKeywordsWithRef&&(0,re.schemaHasRulesButRef)(t,i.RULES)&&i.logger.warn('$ref: keywords ignored in schema at path "'.concat(n,'"'))}(e)}function fe(e,t){if(e.opts.jtd)return he(e,[],!1,t);var n=(0,Z.getSchemaTypes)(e.schema);he(e,n,!(0,Z.coerceAndCheckDataType)(e,n),t)}function de(e){var t=e.gen,n=e.schemaEnv,r=e.schema,i=e.errSchemaPath,a=e.opts,o=r.$comment;if(!0===a.$comment)t.code((0,ee._)(A||(A=q(["",".logger.log(",")"])),te.default.self,o));else if("function"==typeof a.$comment){var s=(0,ee.str)(E||(E=q(["","/$comment"])),i),l=t.scopeValue("root",{ref:n.root});t.code((0,ee._)(C||(C=q(["",".opts.$comment(",", ",", ",".schema)"])),te.default.self,o,s,l))}}function he(e,t,n,r){var i=e.gen,a=e.schema,o=e.data,s=e.allErrors,l=e.opts,c=e.self.RULES;function u(c){(0,Y.shouldUseGroup)(a,c)&&(c.type?(i.if((0,K.checkDataType)(c.type,o,l.strictNumbers)),pe(e,c),1===t.length&&t[0]===c.type&&n&&(i.else(),(0,K.reportTypeError)(e)),i.endIf()):pe(e,c),s||i.if((0,ee._)(D||(D=q([""," === ",""])),te.default.errors,r||0)))}!a.$ref||!l.ignoreKeywordsWithRef&&(0,re.schemaHasRulesButRef)(a,c)?(l.jtd||function(e,t){if(e.schemaEnv.meta||!e.opts.strictTypes)return;(function(e,t){if(!t.length)return;if(!e.dataTypes.length)return void(e.dataTypes=t);t.forEach((function(t){me(e.dataTypes,t)||ge(e,'type "'.concat(t,'" not allowed by context "').concat(e.dataTypes.join(","),'"'))})),function(e,t){var n,r=[],i=W(e.dataTypes);try{for(i.s();!(n=i.n()).done;){var a=n.value;me(t,a)?r.push(a):t.includes("integer")&&"number"===a&&r.push("integer")}}catch(o){i.e(o)}finally{i.f()}e.dataTypes=r}(e,t)})(e,t),e.opts.allowUnionTypes||function(e,t){t.length>1&&(2!==t.length||!t.includes("null"))&&ge(e,"use allowUnionTypes to allow union type keyword")}(e,t);!function(e,t){var n=e.self.RULES.all;for(var r in n){var i=n[r];if("object"==typeof i&&(0,Y.shouldUseRule)(e.schema,i)){var a=i.definition.type;a.length&&!a.some((function(e){return ve(t,e)}))&&ge(e,'missing type "'.concat(a.join(","),'" for keyword "').concat(r,'"'))}}}(e,e.dataTypes)}(e,t),i.block((function(){var e,t=W(c.rules);try{for(t.s();!(e=t.n()).done;){u(e.value)}}catch(n){t.e(n)}finally{t.f()}u(c.post)}))):i.block((function(){return be(e,"$ref",c.all.$ref.definition)}))}function pe(e,t){var n=e.gen,r=e.schema;e.opts.useDefaults&&(0,X.assignDefaults)(e,t.type),n.block((function(){var n,i=W(t.rules);try{for(i.s();!(n=i.n()).done;){var a=n.value;(0,Y.shouldUseRule)(r,a)&&be(e,a.keyword,a.definition,t.type)}}catch(o){i.e(o)}finally{i.f()}}))}function ve(e,t){return e.includes(t)||"number"===t&&e.includes("integer")}function me(e,t){return e.includes(t)||"integer"===t&&e.includes("number")}function ge(e,t){var n=e.schemaEnv.baseId+e.errSchemaPath;t+=' at "'.concat(n,'" (strictTypes)'),(0,re.checkStrictMode)(e,t,e.opts.strictTypes)}t.validateFunctionCode=function(e){ce(e)&&(ue(e),le(e))?function(e){var t=e.schema,n=e.opts,r=e.gen;ae(e,(function(){n.$comment&&t.$comment&&de(e),function(e){var t=e.schema,n=e.opts;void 0!==t.default&&n.useDefaults&&n.strictSchema&&(0,re.checkStrictMode)(e,"default is ignored in the schema root")}(e),r.let(te.default.vErrors,null),r.let(te.default.errors,0),n.unevaluated&&function(e){var t=e.gen,n=e.validateName;e.evaluated=t.const("evaluated",(0,ee._)(g||(g=q(["",".evaluated"])),n)),t.if((0,ee._)(y||(y=q(["",".dynamicProps"])),e.evaluated),(function(){return t.assign((0,ee._)(b||(b=q(["",".props"])),e.evaluated),(0,ee._)(x||(x=q(["undefined"]))))})),t.if((0,ee._)(w||(w=q(["",".dynamicItems"])),e.evaluated),(function(){return t.assign((0,ee._)(_||(_=q(["",".items"])),e.evaluated),(0,ee._)(k||(k=q(["undefined"]))))}))}(e),fe(e),function(e){var t=e.gen,n=e.schemaEnv,r=e.validateName,i=e.ValidationError,a=e.opts;n.$async?t.if((0,ee._)(M||(M=q([""," === 0"])),te.default.errors),(function(){return t.return(te.default.data)}),(function(){return t.throw((0,ee._)(O||(O=q(["new ","(",")"])),i,te.default.vErrors))})):(t.assign((0,ee._)(P||(P=q(["",".errors"])),r),te.default.vErrors),a.unevaluated&&function(e){var t=e.gen,n=e.evaluated,r=e.props,i=e.items;r instanceof ee.Name&&t.assign((0,ee._)(I||(I=q(["",".props"])),n),r);i instanceof ee.Name&&t.assign((0,ee._)(R||(R=q(["",".items"])),n),i)}(e),t.return((0,ee._)(L||(L=q([""," === 0"])),te.default.errors)))}(e)}))}(e):ae(e,(function(){return(0,G.topBoolOrEmptySchema)(e)}))};var ye=function(){function e(t,n,r){if($(this,e),(0,J.validateKeywordUsage)(t,n,r),this.gen=t.gen,this.allErrors=t.allErrors,this.keyword=r,this.data=t.data,this.schema=t.schema[r],this.$data=n.$data&&t.opts.$data&&this.schema&&this.schema.$data,this.schemaValue=(0,re.schemaRefOrVal)(t,this.schema,r,this.$data),this.schemaType=n.schemaType,this.parentSchema=t.schema,this.params={},this.it=t,this.def=n,this.$data)this.schemaCode=t.gen.const("vSchema",_e(this.$data,t));else if(this.schemaCode=this.schemaValue,!(0,J.validSchemaType)(this.schema,n.schemaType,n.allowUndefined))throw new Error("".concat(r," value must be ").concat(JSON.stringify(n.schemaType)));("code"in n?n.trackErrors:!1!==n.errors)&&(this.errsCount=t.gen.const("_errs",te.default.errors))}return V(e,[{key:"result",value:function(e,t,n){this.failResult((0,ee.not)(e),t,n)}},{key:"failResult",value:function(e,t,n){this.gen.if(e),n?n():this.error(),t?(this.gen.else(),t(),this.allErrors&&this.gen.endIf()):this.allErrors?this.gen.endIf():this.gen.else()}},{key:"pass",value:function(e,t){this.failResult((0,ee.not)(e),void 0,t)}},{key:"fail",value:function(e){if(void 0===e)return this.error(),void(this.allErrors||this.gen.if(!1));this.gen.if(e),this.error(),this.allErrors?this.gen.endIf():this.gen.else()}},{key:"fail$data",value:function(e){if(!this.$data)return this.fail(e);var t=this.schemaCode;this.fail((0,ee._)(F||(F=q([""," !== undefined && (",")"])),t,(0,ee.or)(this.invalid$data(),e)))}},{key:"error",value:function(e,t,n){if(t)return this.setParams(t),this._error(e,n),void this.setParams({});this._error(e,n)}},{key:"_error",value:function(e,t){(e?ie.reportExtraError:ie.reportError)(this,this.def.error,t)}},{key:"$dataError",value:function(){(0,ie.reportError)(this,this.def.$dataError||ie.keyword$DataError)}},{key:"reset",value:function(){if(void 0===this.errsCount)throw new Error('add "trackErrors" to keyword definition');(0,ie.resetErrorsCount)(this.gen,this.errsCount)}},{key:"ok",value:function(e){this.allErrors||this.gen.if(e)}},{key:"setParams",value:function(e,t){t?Object.assign(this.params,e):this.params=e}},{key:"block$data",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:ee.nil;this.gen.block((function(){n.check$data(e,r),t()}))}},{key:"check$data",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:ee.nil,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ee.nil;if(this.$data){var n=this.gen,r=this.schemaCode,i=this.schemaType,a=this.def;n.if((0,ee.or)((0,ee._)(N||(N=q([""," === undefined"])),r),t)),e!==ee.nil&&n.assign(e,!0),(i.length||a.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),e!==ee.nil&&n.assign(e,!1)),n.else()}}},{key:"invalid$data",value:function(){var e=this.gen,t=this.schemaCode,n=this.schemaType,r=this.def,i=this.it;return(0,ee.or)(function(){if(n.length){if(!(t instanceof ee.Name))throw new Error("ajv implementation error");var e=Array.isArray(n)?n:[n];return(0,ee._)(z||(z=q(["",""])),(0,K.checkDataTypes)(e,t,i.opts.strictNumbers,K.DataType.Wrong))}return ee.nil}(),function(){if(r.validateSchema){var n=e.scopeValue("validate$data",{ref:r.validateSchema});return(0,ee._)(j||(j=q(["!","(",")"])),n,t)}return ee.nil}())}},{key:"subschema",value:function(e,t){var n=(0,Q.getSubschema)(this.it,e);(0,Q.extendSubschemaData)(n,this.it,e),(0,Q.extendSubschemaMode)(n,e);var r=H(H(H({},this.it),n),{},{items:void 0,props:void 0});return se(r,t),r}},{key:"mergeEvaluated",value:function(e,t){var n=this.it,r=this.gen;n.opts.unevaluated&&(!0!==n.props&&void 0!==e.props&&(n.props=re.mergeEvaluated.props(r,e.props,n.props,t)),!0!==n.items&&void 0!==e.items&&(n.items=re.mergeEvaluated.items(r,e.items,n.items,t)))}},{key:"mergeValidEvaluated",value:function(e,t){var n=this,r=this.it,i=this.gen;if(r.opts.unevaluated&&(!0!==r.props||!0!==r.items))return i.if(t,(function(){return n.mergeEvaluated(e,ee.Name)})),!0}}]),e}();function be(e,t,n,r){var i=new ye(e,n,t);"code"in n?n.code(i,r):i.$data&&n.validate?(0,J.funcKeywordCode)(i,n):"macro"in n?(0,J.macroKeywordCode)(i,n):(n.compile||n.validate)&&(0,J.funcKeywordCode)(i,n)}t.KeywordCxt=ye;var xe=/^\/(?:[^~]|~0|~1)*$/,we=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function _e(e,t){var n,r,i=t.dataLevel,a=t.dataNames,o=t.dataPathArr;if(""===e)return te.default.rootData;if("/"===e[0]){if(!xe.test(e))throw new Error("Invalid JSON-pointer: ".concat(e));n=e,r=te.default.rootData}else{var s=we.exec(e);if(!s)throw new Error("Invalid JSON-pointer: ".concat(e));var l=+s[1];if("#"===(n=s[2])){if(l>=i)throw new Error(p("property/index",l));return o[i-l]}if(l>i)throw new Error(p("data",l));if(r=a[i-l],!n)return r}var c,u=r,f=n.split("/"),d=W(f);try{for(d.s();!(c=d.n()).done;){var h=c.value;h&&(r=(0,ee._)(B||(B=q(["","",""])),r,(0,ee.getProperty)((0,re.unescapeJsonPointer)(h))),u=(0,ee._)(U||(U=q([""," && ",""])),u,r))}}catch(v){d.e(v)}finally{d.f()}return u;function p(e,t){return"Cannot access ".concat(e," ").concat(t," levels up, current level is ").concat(i)}}t.getData=_e},5080:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.validateKeywordUsage=t.validSchemaType=t.funcKeywordCode=t.macroKeywordCode=void 0;var p=n(9091),v=n(58317),m=n(11580),g=n(80005);function y(e){var t=e.gen,n=e.data,r=e.it;t.if(r.parentData,(function(){return t.assign(n,(0,p._)(c||(c=h(["","[","]"])),r.parentData,r.parentDataProperty))}))}function b(e,t,n){if(void 0===n)throw new Error('keyword "'.concat(t,'" failed to compile'));return e.scopeValue("keyword","function"==typeof n?{ref:n}:{ref:n,code:(0,p.stringify)(n)})}t.macroKeywordCode=function(e,t){var n=e.gen,r=e.keyword,i=e.schema,a=e.parentSchema,o=e.it,s=t.macro.call(o.self,i,a,o),l=b(n,r,s);!1!==o.opts.validateSchema&&o.self.validateSchema(s,!0);var c=n.name("valid");e.subschema({schema:s,schemaPath:p.nil,errSchemaPath:"".concat(o.errSchemaPath,"/").concat(r),topSchemaRef:l,compositeRule:!0},c),e.pass(c,(function(){return e.error(!0)}))},t.funcKeywordCode=function(e,t){var n,c=e.gen,x=e.keyword,w=e.schema,_=e.parentSchema,k=e.$data,S=e.it;!function(e,t){var n=e.schemaEnv;if(t.async&&!n.$async)throw new Error("async keyword in sync schema")}(S,t);var T=!k&&t.compile?t.compile.call(S.self,w,_,S):t.validate,A=b(c,x,T),E=c.let("valid");function C(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:t.async?(0,p._)(s||(s=h(["await "]))):p.nil,r=S.opts.passContext?v.default.this:v.default.self,i=!("compile"in t&&!k||!1===t.schema);c.assign(E,(0,p._)(l||(l=h(["","",""])),n,(0,m.callValidateCode)(e,A,r,i)),t.modifying)}function M(e){var n;c.if((0,p.not)(null!==(n=t.valid)&&void 0!==n?n:E),e)}e.block$data(E,(function(){if(!1===t.errors)C(),t.modifying&&y(e),M((function(){return e.error()}));else{var n=t.async?function(){var e=c.let("ruleErrs",null);return c.try((function(){return C((0,p._)(r||(r=h(["await "]))))}),(function(t){return c.assign(E,!1).if((0,p._)(i||(i=h([""," instanceof ",""])),t,S.ValidationError),(function(){return c.assign(e,(0,p._)(a||(a=h(["",".errors"])),t))}),(function(){return c.throw(t)}))})),e}():function(){var e=(0,p._)(o||(o=h(["",".errors"])),A);return c.assign(e,null),C(p.nil),e}();t.modifying&&y(e),M((function(){return function(e,t){var n=e.gen;n.if((0,p._)(u||(u=h(["Array.isArray(",")"])),t),(function(){n.assign(v.default.vErrors,(0,p._)(f||(f=h([""," === null ? "," : ",".concat(",")"])),v.default.vErrors,t,v.default.vErrors,t)).assign(v.default.errors,(0,p._)(d||(d=h(["",".length"])),v.default.vErrors)),(0,g.extendErrors)(e)}),(function(){return e.error()}))}(e,n)}))}})),e.ok(null!==(n=t.valid)&&void 0!==n?n:E)},t.validSchemaType=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return!t.length||t.some((function(t){return"array"===t?Array.isArray(e):"object"===t?e&&"object"==typeof e&&!Array.isArray(e):typeof e==t||n&&"undefined"==typeof e}))},t.validateKeywordUsage=function(e,t,n){var r=e.schema,i=e.opts,a=e.self,o=e.errSchemaPath;if(Array.isArray(t.keyword)?!t.keyword.includes(n):t.keyword!==n)throw new Error("ajv implementation error");var s=t.dependencies;if(null===s||void 0===s?void 0:s.some((function(e){return!Object.prototype.hasOwnProperty.call(r,e)})))throw new Error("parent schema must have dependencies of ".concat(n,": ").concat(s.join(",")));if(t.validateSchema&&!t.validateSchema(r[n])){var l='keyword "'.concat(n,'" value is invalid at path "').concat(o,'": ')+a.errorsText(t.validateSchema.errors);if("log"!==i.validateSchema)throw new Error(l);a.logger.error(l)}}},15579:function(e,t,n){"use strict";var r,i,a,o,s,l=n(861).default,c=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.extendSubschemaMode=t.extendSubschemaData=t.getSubschema=void 0;var u=n(9091),f=n(34648);t.getSubschema=function(e,t){var n=t.keyword,a=t.schemaProp,o=t.schema,s=t.schemaPath,l=t.errSchemaPath,d=t.topSchemaRef;if(void 0!==n&&void 0!==o)throw new Error('both "keyword" and "schema" passed, only one allowed');if(void 0!==n){var h=e.schema[n];return void 0===a?{schema:h,schemaPath:(0,u._)(r||(r=c(["","",""])),e.schemaPath,(0,u.getProperty)(n)),errSchemaPath:"".concat(e.errSchemaPath,"/").concat(n)}:{schema:h[a],schemaPath:(0,u._)(i||(i=c(["","","",""])),e.schemaPath,(0,u.getProperty)(n),(0,u.getProperty)(a)),errSchemaPath:"".concat(e.errSchemaPath,"/").concat(n,"/").concat((0,f.escapeFragment)(a))}}if(void 0!==o){if(void 0===s||void 0===l||void 0===d)throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');return{schema:o,schemaPath:s,topSchemaRef:d,errSchemaPath:l}}throw new Error('either "keyword" or "schema" must be passed')},t.extendSubschemaData=function(e,t,n){var r=n.dataProp,i=n.dataPropType,d=n.data,h=n.dataTypes,p=n.propertyName;if(void 0!==d&&void 0!==r)throw new Error('both "data" and "dataProp" passed, only one allowed');var v=t.gen;if(void 0!==r){var m=t.errorPath,g=t.dataPathArr,y=t.opts;b(v.let("data",(0,u._)(a||(a=c(["","",""])),t.data,(0,u.getProperty)(r)),!0)),e.errorPath=(0,u.str)(o||(o=c(["","",""])),m,(0,f.getErrorPath)(r,i,y.jsPropertySyntax)),e.parentDataProperty=(0,u._)(s||(s=c(["",""])),r),e.dataPathArr=[].concat(l(g),[e.parentDataProperty])}function b(n){e.data=n,e.dataLevel=t.dataLevel+1,e.dataTypes=[],t.definedProperties=new Set,e.parentData=t.data,e.dataNames=[].concat(l(t.dataNames),[n])}void 0!==d&&(b(d instanceof u.Name?d:v.let("data",d,!0)),void 0!==p&&(e.propertyName=p)),h&&(e.dataTypes=h)},t.extendSubschemaMode=function(e,t){var n=t.jtdDiscriminator,r=t.jtdMetadata,i=t.compositeRule,a=t.createErrors,o=t.allErrors;void 0!==i&&(e.compositeRule=i),void 0!==a&&(e.createErrors=a),void 0!==o&&(e.allErrors=o),e.jtdDiscriminator=n,e.jtdMetadata=r}},66422:function(e,t,n){"use strict";var r=n(74704).default,i=n(17061).default,a=n(17156).default,o=n(56690).default,s=n(89728).default,l=n(42122).default;Object.defineProperty(t,"__esModule",{value:!0}),t.CodeGen=t.Name=t.nil=t.stringify=t.str=t._=t.KeywordCxt=void 0;var c=n(12262);Object.defineProperty(t,"KeywordCxt",{enumerable:!0,get:function(){return c.KeywordCxt}});var u=n(9091);Object.defineProperty(t,"_",{enumerable:!0,get:function(){return u._}}),Object.defineProperty(t,"str",{enumerable:!0,get:function(){return u.str}}),Object.defineProperty(t,"stringify",{enumerable:!0,get:function(){return u.stringify}}),Object.defineProperty(t,"nil",{enumerable:!0,get:function(){return u.nil}}),Object.defineProperty(t,"Name",{enumerable:!0,get:function(){return u.Name}}),Object.defineProperty(t,"CodeGen",{enumerable:!0,get:function(){return u.CodeGen}});var f=n(8317),d=n(41145),h=n(44091),p=n(28393),v=n(9091),m=n(92225),g=n(12093),y=n(34648),b=n(64775),x=n(68012),w=function(e,t){return new RegExp(e,t)};w.code="new RegExp";var _=["removeAdditional","useDefaults","coerceTypes"],k=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),S={errorDataPath:"",format:"`validateFormats: false` can be used instead.",nullable:'"nullable" keyword is supported by default.',jsonPointers:"Deprecated jsPropertySyntax can be used instead.",extendRefs:"Deprecated ignoreKeywordsWithRef can be used instead.",missingRefs:"Pass empty schema with $id that should be ignored to ajv.addSchema.",processCode:"Use option `code: {process: (code, schemaEnv: object) => string}`",sourceCode:"Use option `code: {source: true}`",strictDefaults:"It is default now, see option `strict`.",strictKeywords:"It is default now, see option `strict`.",uniqueItems:'"uniqueItems" keyword is always validated.',unknownFormats:"Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",cache:"Map is used as cache, schema object as key.",serialize:"Map is used as cache, schema object as key.",ajvErrors:"It is default now."},T={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'};var A=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};o(this,e),this.schemas={},this.refs={},this.formats={},this._compilations=new Set,this._loading={},this._cache=new Map,t=this.opts=l(l({},t),function(e){var t,n,r,i,a,o,s,c,u,f,d,h,p,v,m,g,y,b,_,k,S,T,A,E,C,M=e.strict,O=null===(t=e.code)||void 0===t?void 0:t.optimize,P=!0===O||void 0===O?1:O||0,L=null!==(r=null===(n=e.code)||void 0===n?void 0:n.regExp)&&void 0!==r?r:w,I=null!==(i=e.uriResolver)&&void 0!==i?i:x.default;return{strictSchema:null===(o=null!==(a=e.strictSchema)&&void 0!==a?a:M)||void 0===o||o,strictNumbers:null===(c=null!==(s=e.strictNumbers)&&void 0!==s?s:M)||void 0===c||c,strictTypes:null!==(f=null!==(u=e.strictTypes)&&void 0!==u?u:M)&&void 0!==f?f:"log",strictTuples:null!==(h=null!==(d=e.strictTuples)&&void 0!==d?d:M)&&void 0!==h?h:"log",strictRequired:null!==(v=null!==(p=e.strictRequired)&&void 0!==p?p:M)&&void 0!==v&&v,code:e.code?l(l({},e.code),{},{optimize:P,regExp:L}):{optimize:P,regExp:L},loopRequired:null!==(m=e.loopRequired)&&void 0!==m?m:200,loopEnum:null!==(g=e.loopEnum)&&void 0!==g?g:200,meta:null===(y=e.meta)||void 0===y||y,messages:null===(b=e.messages)||void 0===b||b,inlineRefs:null===(_=e.inlineRefs)||void 0===_||_,schemaId:null!==(k=e.schemaId)&&void 0!==k?k:"$id",addUsedSchema:null===(S=e.addUsedSchema)||void 0===S||S,validateSchema:null===(T=e.validateSchema)||void 0===T||T,validateFormats:null===(A=e.validateFormats)||void 0===A||A,unicodeRegExp:null===(E=e.unicodeRegExp)||void 0===E||E,int32range:null===(C=e.int32range)||void 0===C||C,uriResolver:I}}(t));var n=this.opts.code,r=n.es5,i=n.lines;this.scope=new v.ValueScope({scope:{},prefixes:k,es5:r,lines:i}),this.logger=function(e){if(!1===e)return I;if(void 0===e)return console;if(e.log&&e.warn&&e.error)return e;throw new Error("logger must implement log, warn and error methods")}(t.logger);var a=t.validateFormats;t.validateFormats=!1,this.RULES=(0,h.getRules)(),E.call(this,S,t,"NOT SUPPORTED"),E.call(this,T,t,"DEPRECATED","warn"),this._metaOpts=L.call(this),t.formats&&O.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),t.keywords&&P.call(this,t.keywords),"object"==typeof t.meta&&this.addMetaSchema(t.meta),M.call(this),t.validateFormats=a}return s(e,[{key:"_addVocabularies",value:function(){this.addKeyword("$async")}},{key:"_addDefaultMetaSchema",value:function(){var e=this.opts,t=e.$data,n=e.meta,r=e.schemaId,i=b;"id"===r&&((i=l({},b)).id=i.$id,delete i.$id),n&&t&&this.addMetaSchema(i,i[r],!1)}},{key:"defaultMeta",value:function(){var e=this.opts,t=e.meta,n=e.schemaId;return this.opts.defaultMeta="object"==typeof t?t[n]||t:void 0}},{key:"validate",value:function(e,t){var n;if("string"==typeof e){if(!(n=this.getSchema(e)))throw new Error('no schema with key or ref "'.concat(e,'"'))}else n=this.compile(e);var r=n(t);return"$async"in n||(this.errors=n.errors),r}},{key:"compile",value:function(e,t){var n=this._addSchema(e,t);return n.validate||this._compileSchemaEnv(n)}},{key:"compileAsync",value:function(e,t){if("function"!=typeof this.opts.loadSchema)throw new Error("options.loadSchema should be a function");var n=this.opts.loadSchema;return r.call(this,e,t);function r(e,t){return o.apply(this,arguments)}function o(){return(o=a(i().mark((function e(t,n){var r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,s.call(this,t.$schema);case 2:return r=this._addSchema(t,n),e.abrupt("return",r.validate||c.call(this,r));case 4:case"end":return e.stop()}}),e,this)})))).apply(this,arguments)}function s(e){return l.apply(this,arguments)}function l(){return(l=a(i().mark((function e(t){return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!t||this.getSchema(t)){e.next=3;break}return e.next=3,r.call(this,{$ref:t},!0);case 3:case"end":return e.stop()}}),e,this)})))).apply(this,arguments)}function c(e){return u.apply(this,arguments)}function u(){return(u=a(i().mark((function e(t){return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.abrupt("return",this._compileSchemaEnv(t));case 4:if(e.prev=4,e.t0=e.catch(0),e.t0 instanceof d.default){e.next=8;break}throw e.t0;case 8:return f.call(this,e.t0),e.next=11,h.call(this,e.t0.missingSchema);case 11:return e.abrupt("return",c.call(this,t));case 12:case"end":return e.stop()}}),e,this,[[0,4]])})))).apply(this,arguments)}function f(e){var t=e.missingSchema,n=e.missingRef;if(this.refs[t])throw new Error("AnySchema ".concat(t," is loaded but ").concat(n," cannot be resolved"))}function h(e){return p.apply(this,arguments)}function p(){return(p=a(i().mark((function e(n){var r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,v.call(this,n);case 2:if(r=e.sent,this.refs[n]){e.next=6;break}return e.next=6,s.call(this,r.$schema);case 6:this.refs[n]||this.addSchema(r,n,t);case 7:case"end":return e.stop()}}),e,this)})))).apply(this,arguments)}function v(e){return m.apply(this,arguments)}function m(){return(m=a(i().mark((function e(t){var r;return i().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!(r=this._loading[t])){e.next=3;break}return e.abrupt("return",r);case 3:return e.prev=3,e.next=6,this._loading[t]=n(t);case 6:return e.abrupt("return",e.sent);case 7:return e.prev=7,delete this._loading[t],e.finish(7);case 10:case"end":return e.stop()}}),e,this,[[3,,7,10]])})))).apply(this,arguments)}}},{key:"addSchema",value:function(e,t,n){var i,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.opts.validateSchema;if(Array.isArray(e)){var o,s=r(e);try{for(s.s();!(o=s.n()).done;){var l=o.value;this.addSchema(l,void 0,n,a)}}catch(u){s.e(u)}finally{s.f()}return this}if("object"===typeof e){var c=this.opts.schemaId;if(void 0!==(i=e[c])&&"string"!=typeof i)throw new Error("schema ".concat(c," must be string"))}return t=(0,m.normalizeId)(t||i),this._checkUnique(t),this.schemas[t]=this._addSchema(e,n,t,a,!0),this}},{key:"addMetaSchema",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.opts.validateSchema;return this.addSchema(e,t,!0,n),this}},{key:"validateSchema",value:function(e,t){if("boolean"==typeof e)return!0;var n;if(void 0!==(n=e.$schema)&&"string"!=typeof n)throw new Error("$schema must be a string");if(!(n=n||this.opts.defaultMeta||this.defaultMeta()))return this.logger.warn("meta-schema not available"),this.errors=null,!0;var r=this.validate(n,e);if(!r&&t){var i="schema is invalid: "+this.errorsText();if("log"!==this.opts.validateSchema)throw new Error(i);this.logger.error(i)}return r}},{key:"getSchema",value:function(e){for(var t;"string"==typeof(t=C.call(this,e));)e=t;if(void 0===t){var n=this.opts.schemaId,r=new p.SchemaEnv({schema:{},schemaId:n});if(!(t=p.resolveSchema.call(this,r,e)))return;this.refs[e]=t}return t.validate||this._compileSchemaEnv(t)}},{key:"removeSchema",value:function(e){if(e instanceof RegExp)return this._removeAllSchemas(this.schemas,e),this._removeAllSchemas(this.refs,e),this;switch(typeof e){case"undefined":return this._removeAllSchemas(this.schemas),this._removeAllSchemas(this.refs),this._cache.clear(),this;case"string":var t=C.call(this,e);return"object"==typeof t&&this._cache.delete(t.schema),delete this.schemas[e],delete this.refs[e],this;case"object":var n=e;this._cache.delete(n);var r=e[this.opts.schemaId];return r&&(r=(0,m.normalizeId)(r),delete this.schemas[r],delete this.refs[r]),this;default:throw new Error("ajv.removeSchema: invalid parameter")}}},{key:"addVocabulary",value:function(e){var t,n=r(e);try{for(n.s();!(t=n.n()).done;){var i=t.value;this.addKeyword(i)}}catch(a){n.e(a)}finally{n.f()}return this}},{key:"addKeyword",value:function(e,t){var n,r=this;if("string"==typeof e)n=e,"object"==typeof t&&(this.logger.warn("these parameters are deprecated, see docs for addKeyword"),t.keyword=n);else{if("object"!=typeof e||void 0!==t)throw new Error("invalid addKeywords parameters");if(n=(t=e).keyword,Array.isArray(n)&&!n.length)throw new Error("addKeywords: keyword must be string or non-empty array")}if(D.call(this,n,t),!t)return(0,y.eachItem)(n,(function(e){return F.call(r,e)})),this;z.call(this,t);var i=l(l({},t),{},{type:(0,g.getJSONTypes)(t.type),schemaType:(0,g.getJSONTypes)(t.schemaType)});return(0,y.eachItem)(n,0===i.type.length?function(e){return F.call(r,e,i)}:function(e){return i.type.forEach((function(t){return F.call(r,e,i,t)}))}),this}},{key:"getKeyword",value:function(e){var t=this.RULES.all[e];return"object"==typeof t?t.definition:!!t}},{key:"removeKeyword",value:function(e){var t=this.RULES;delete t.keywords[e],delete t.all[e];var n,i=r(t.rules);try{for(i.s();!(n=i.n()).done;){var a=n.value,o=a.rules.findIndex((function(t){return t.keyword===e}));o>=0&&a.rules.splice(o,1)}}catch(s){i.e(s)}finally{i.f()}return this}},{key:"addFormat",value:function(e,t){return"string"==typeof t&&(t=new RegExp(t)),this.formats[e]=t,this}},{key:"errorsText",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.errors,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.separator,r=void 0===n?", ":n,i=t.dataVar,a=void 0===i?"data":i;return e&&0!==e.length?e.map((function(e){return"".concat(a).concat(e.instancePath," ").concat(e.message)})).reduce((function(e,t){return e+r+t})):"No errors"}},{key:"$dataMetaSchema",value:function(e,t){var n=this.RULES.all;e=JSON.parse(JSON.stringify(e));var i,a=r(t);try{for(a.s();!(i=a.n()).done;){var o,s=i.value.split("/").slice(1),l=e,c=r(s);try{for(c.s();!(o=c.n()).done;){l=l[o.value]}}catch(p){c.e(p)}finally{c.f()}for(var u in n){var f=n[u];if("object"==typeof f){var d=f.definition.$data,h=l[u];d&&h&&(l[u]=B(h))}}}}catch(p){a.e(p)}finally{a.f()}return e}},{key:"_removeAllSchemas",value:function(e,t){for(var n in e){var r=e[n];t&&!t.test(n)||("string"==typeof r?delete e[n]:r&&!r.meta&&(this._cache.delete(r.schema),delete e[n]))}}},{key:"_addSchema",value:function(e,t,n){var r,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:this.opts.validateSchema,a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:this.opts.addUsedSchema,o=this.opts.schemaId;if("object"==typeof e)r=e[o];else{if(this.opts.jtd)throw new Error("schema must be object");if("boolean"!=typeof e)throw new Error("schema must be object or boolean")}var s=this._cache.get(e);if(void 0!==s)return s;n=(0,m.normalizeId)(r||n);var l=m.getSchemaRefs.call(this,e,n);return s=new p.SchemaEnv({schema:e,schemaId:o,meta:t,baseId:n,localRefs:l}),this._cache.set(s.schema,s),a&&!n.startsWith("#")&&(n&&this._checkUnique(n),this.refs[n]=s),i&&this.validateSchema(e,!0),s}},{key:"_checkUnique",value:function(e){if(this.schemas[e]||this.refs[e])throw new Error('schema with key or id "'.concat(e,'" already exists'))}},{key:"_compileSchemaEnv",value:function(e){if(e.meta?this._compileMetaSchema(e):p.compileSchema.call(this,e),!e.validate)throw new Error("ajv implementation error");return e.validate}},{key:"_compileMetaSchema",value:function(e){var t=this.opts;this.opts=this._metaOpts;try{p.compileSchema.call(this,e)}finally{this.opts=t}}}]),e}();function E(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"error";for(var i in e){var a=i;a in t&&this.logger[r]("".concat(n,": option ").concat(i,". ").concat(e[a]))}}function C(e){return e=(0,m.normalizeId)(e),this.schemas[e]||this.refs[e]}function M(){var e=this.opts.schemas;if(e)if(Array.isArray(e))this.addSchema(e);else for(var t in e)this.addSchema(e[t],t)}function O(){for(var e in this.opts.formats){var t=this.opts.formats[e];t&&this.addFormat(e,t)}}function P(e){if(Array.isArray(e))this.addVocabulary(e);else for(var t in this.logger.warn("keywords option as map is deprecated, pass array"),e){var n=e[t];n.keyword||(n.keyword=t),this.addKeyword(n)}}function L(){var e,t=l({},this.opts),n=r(_);try{for(n.s();!(e=n.n()).done;){delete t[e.value]}}catch(i){n.e(i)}finally{n.f()}return t}t.default=A,A.ValidationError=f.default,A.MissingRefError=d.default;var I={log:function(){},warn:function(){},error:function(){}};var R=/^[a-z_$][a-z0-9_$:-]*$/i;function D(e,t){var n=this.RULES;if((0,y.eachItem)(e,(function(e){if(n.keywords[e])throw new Error("Keyword ".concat(e," is already defined"));if(!R.test(e))throw new Error("Keyword ".concat(e," has invalid name"))})),t&&t.$data&&!("code"in t)&&!("validate"in t))throw new Error('$data keyword must have "code" or "validate" function')}function F(e,t,n){var r,i=this,a=null===t||void 0===t?void 0:t.post;if(n&&a)throw new Error('keyword with "post" flag cannot have "type"');var o=this.RULES,s=a?o.post:o.rules.find((function(e){return e.type===n}));if(s||(s={type:n,rules:[]},o.rules.push(s)),o.keywords[e]=!0,t){var c={keyword:e,definition:l(l({},t),{},{type:(0,g.getJSONTypes)(t.type),schemaType:(0,g.getJSONTypes)(t.schemaType)})};t.before?N.call(this,s,c,t.before):s.rules.push(c),o.all[e]=c,null===(r=t.implements)||void 0===r||r.forEach((function(e){return i.addKeyword(e)}))}}function N(e,t,n){var r=e.rules.findIndex((function(e){return e.keyword===n}));r>=0?e.rules.splice(r,0,t):(e.rules.push(t),this.logger.warn("rule ".concat(n," is not defined")))}function z(e){var t=e.metaSchema;void 0!==t&&(e.$data&&this.opts.$data&&(t=B(t)),e.validateSchema=this.compile(t,!0))}var j={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function B(e){return{anyOf:[e,j]}}},28089:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(78262);r.code='require("ajv/dist/runtime/equal").default',t.default=r},73759:function(e,t){"use strict";function n(e){for(var t,n=e.length,r=0,i=0;i=55296&&t<=56319&&i8){var s=(0,h.schemaRefOrVal)(m,r.properties,"properties");i=(0,u.isOwnProperty)(t,s,n)}else i=b.length?f.or.apply(void 0,l(b.map((function(e){return(0,f._)(a||(a=c([""," === ",""])),n,e)})))):f.nil;return x.length&&(i=f.or.apply(void 0,[i].concat(l(x.map((function(t){return(0,f._)(o||(o=c(["",".test(",")"])),(0,u.usePattern)(e,t),n)})))))),(0,f.not)(i)}(n),(function(){return _(n)})):_(n)})),e.ok((0,f._)(i||(i=c([""," === ",""])),v,d.default.errors))}function w(e){t.code((0,f._)(s||(s=c(["delete ","[","]"])),p,e))}function _(r){if("all"===y.removeAdditional||y.removeAdditional&&!1===n)w(r);else{if(!1===n)return e.setParams({additionalProperty:r}),e.error(),void(g||t.break());if("object"==typeof n&&!(0,h.alwaysValidSchema)(m,n)){var i=t.name("valid");"failing"===y.removeAdditional?(k(r,i,!1),t.if((0,f.not)(i),(function(){e.reset(),w(r)}))):(k(r,i),g||t.if((0,f.not)(i),(function(){return t.break()})))}}}function k(t,n,r){var i={keyword:"additionalProperties",dataProp:t,dataPropType:h.Type.Str};!1===r&&Object.assign(i,{compositeRule:!0,createErrors:!1,allErrors:!1}),e.subschema(i,n)}}};t.default=p},68955:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(34648),i={keyword:"allOf",schemaType:"array",code:function(e){var t=e.gen,n=e.schema,i=e.it;if(!Array.isArray(n))throw new Error("ajv implementation error");var a=t.name("valid");n.forEach((function(t,n){if(!(0,r.alwaysValidSchema)(i,t)){var o=e.subschema({keyword:"allOf",schemaProp:n},a);e.ok(a),e.mergeEvaluated(o)}}))}};t.default=i},77182:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:n(11580).validateUnion,error:{message:"must match a schema in anyOf"}};t.default=r},54497:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h,p,v=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var m=n(9091),g=n(34648),y={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:{message:function(e){var t=e.params,n=t.min,a=t.max;return void 0===a?(0,m.str)(r||(r=v(["must contain at least "," valid item(s)"])),n):(0,m.str)(i||(i=v(["must contain at least "," and no more than "," valid item(s)"])),n,a)},params:function(e){var t=e.params,n=t.min,r=t.max;return void 0===r?(0,m._)(a||(a=v(["{minContains: ","}"])),n):(0,m._)(o||(o=v(["{minContains: ",", maxContains: ","}"])),n,r)}},code:function(e){var t,n,r=e.gen,i=e.schema,a=e.parentSchema,o=e.data,y=e.it,b=a.minContains,x=a.maxContains;y.opts.next?(t=void 0===b?1:b,n=x):t=1;var w=r.const("len",(0,m._)(s||(s=v(["",".length"])),o));if(e.setParams({min:t,max:n}),void 0!==n||0!==t){if(void 0!==n&&t>n)return(0,g.checkStrictMode)(y,'"minContains" > "maxContains" is always invalid'),void e.fail();if((0,g.alwaysValidSchema)(y,i)){var _=(0,m._)(l||(l=v([""," >= ",""])),w,t);return void 0!==n&&(_=(0,m._)(c||(c=v([""," && "," <= ",""])),_,w,n)),void e.pass(_)}y.items=!0;var k=r.name("valid");void 0===n&&1===t?T(k,(function(){return r.if(k,(function(){return r.break()}))})):0===t?(r.let(k,!0),void 0!==n&&r.if((0,m._)(u||(u=v(["",".length > 0"])),o),S)):(r.let(k,!1),S()),e.result(k,(function(){return e.reset()}))}else(0,g.checkStrictMode)(y,'"minContains" == 0 without "maxContains": "contains" keyword ignored');function S(){var e=r.name("_valid"),i=r.let("count",0);T(e,(function(){return r.if(e,(function(){return function(e){r.code((0,m._)(f||(f=v(["","++"])),e)),void 0===n?r.if((0,m._)(d||(d=v([""," >= ",""])),e,t),(function(){return r.assign(k,!0).break()})):(r.if((0,m._)(h||(h=v([""," > ",""])),e,n),(function(){return r.assign(k,!1).break()})),1===t?r.assign(k,!0):r.if((0,m._)(p||(p=v([""," >= ",""])),e,t),(function(){return r.assign(k,!0)})))}(i)}))}))}function T(t,n){r.forRange("i",0,w,(function(r){e.subschema({keyword:"contains",dataProp:r,dataPropType:g.Type.Num,compositeRule:!0},t),n()}))}}};t.default=y},39031:function(e,t,n){"use strict";var r,i,a,o=n(74704).default,s=n(27424).default,l=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.validateSchemaDeps=t.validatePropertyDeps=t.error=void 0;var c=n(9091),u=n(34648),f=n(11580);t.error={message:function(e){var t=e.params,n=t.property,i=t.depsCount,a=t.deps,o=1===i?"property":"properties";return(0,c.str)(r||(r=l(["must have "," "," when property "," is present"])),o,a,n)},params:function(e){var t=e.params,n=t.property,r=t.depsCount,a=t.deps,o=t.missingProperty;return(0,c._)(i||(i=l(["{property: ",",\n missingProperty: ",",\n depsCount: ",",\n deps: ","}"])),n,o,r,a)}};var d={keyword:"dependencies",type:"object",schemaType:"object",error:t.error,code:function(e){var t=function(e){var t=e.schema,n={},r={};for(var i in t){if("__proto__"!==i)(Array.isArray(t[i])?n:r)[i]=t[i]}return[n,r]}(e),n=s(t,2),r=n[0],i=n[1];h(e,r),p(e,i)}};function h(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.schema,n=e.gen,r=e.data,i=e.it;if(0!==Object.keys(t).length){var s=n.let("missing"),u=function(){var u=t[d];if(0===u.length)return 1;var h=(0,f.propertyInData)(n,r,d,i.opts.ownProperties);e.setParams({property:d,depsCount:u.length,deps:u.join(", ")}),i.allErrors?n.if(h,(function(){var t,n=o(u);try{for(n.s();!(t=n.n()).done;){var r=t.value;(0,f.checkReportMissingProp)(e,r)}}catch(i){n.e(i)}finally{n.f()}})):(n.if((0,c._)(a||(a=l([""," && (",")"])),h,(0,f.checkMissingProp)(e,u,s))),(0,f.reportMissingProp)(e,s),n.else())};for(var d in t)u()}}function p(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.schema,n=e.gen,r=e.data,i=e.keyword,a=e.it,o=n.name("valid"),s=function(s){if((0,u.alwaysValidSchema)(a,t[s]))return 1;n.if((0,f.propertyInData)(n,r,s,a.opts.ownProperties),(function(){var t=e.subschema({keyword:i,schemaProp:s},o);e.mergeValidEvaluated(t,o)}),(function(){return n.var(o,!0)})),e.ok(o)};for(var l in t)s(l)}t.validatePropertyDeps=h,t.validateSchemaDeps=p,t.default=d},12890:function(e,t,n){"use strict";var r,i,a,o=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var s=n(9091),l=n(34648),c={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:{message:function(e){var t=e.params;return(0,s.str)(r||(r=o(['must match "','" schema'])),t.ifClause)},params:function(e){var t=e.params;return(0,s._)(i||(i=o(["{failingKeyword: ","}"])),t.ifClause)}},code:function(e){var t=e.gen,n=e.parentSchema,r=e.it;void 0===n.then&&void 0===n.else&&(0,l.checkStrictMode)(r,'"if" without "then" and "else" is ignored');var i=u(r,"then"),c=u(r,"else");if(i||c){var f=t.let("valid",!0),d=t.name("_valid");if(function(){var t=e.subschema({keyword:"if",compositeRule:!0,createErrors:!1,allErrors:!1},d);e.mergeEvaluated(t)}(),e.reset(),i&&c){var h=t.let("ifClause");e.setParams({ifClause:h}),t.if(d,p("then",h),p("else",h))}else i?t.if(d,p("then")):t.if((0,s.not)(d),p("else"));e.pass(f,(function(){return e.error(!0)}))}function p(n,r){return function(){var i=e.subschema({keyword:n},d);t.assign(f,d),e.mergeValidEvaluated(i,f),r?t.assign(r,(0,s._)(a||(a=o(["",""])),n)):e.setParams({ifClause:n})}}}};function u(e,t){var n=e.schema[t];return void 0!==n&&!(0,l.alwaysValidSchema)(e,n)}t.default=c},87040:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(88875),i=n(80304),a=n(83318),o=n(46216),s=n(54497),l=n(39031),c=n(70274),u=n(89279),f=n(65144),d=n(39137),h=n(90691),p=n(77182),v=n(84234),m=n(68955),g=n(12890),y=n(62464);t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=[h.default,p.default,v.default,m.default,g.default,y.default,c.default,u.default,l.default,f.default,d.default];return e?t.push(i.default,o.default):t.push(r.default,a.default),t.push(s.default),t}},83318:function(e,t,n){"use strict";var r,i,a=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.validateTuple=void 0;var o=n(9091),s=n(34648),l=n(11580),c={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code:function(e){var t=e.schema,n=e.it;if(Array.isArray(t))return u(e,"additionalItems",t);n.items=!0,(0,s.alwaysValidSchema)(n,t)||e.ok((0,l.validateArray)(e))}};function u(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e.schema,l=e.gen,c=e.parentSchema,u=e.data,f=e.keyword,d=e.it;!function(e){var r=d.opts,i=d.errSchemaPath,a=n.length,o=a===e.minItems&&(a===e.maxItems||!1===e[t]);if(r.strictTuples&&!o){var l='"'.concat(f,'" is ').concat(a,"-tuple, but minItems or maxItems/").concat(t,' are not specified or different at path "').concat(i,'"');(0,s.checkStrictMode)(d,l,r.strictTuples)}}(c),d.opts.unevaluated&&n.length&&!0!==d.items&&(d.items=s.mergeEvaluated.items(l,n.length,d.items));var h=l.name("valid"),p=l.const("len",(0,o._)(r||(r=a(["",".length"])),u));n.forEach((function(t,n){(0,s.alwaysValidSchema)(d,t)||(l.if((0,o._)(i||(i=a([""," > ",""])),p,n),(function(){return e.subschema({keyword:f,schemaProp:n,dataProp:n},h)})),e.ok(h))}))}t.validateTuple=u,t.default=c},46216:function(e,t,n){"use strict";var r,i,a=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var o=n(9091),s=n(34648),l=n(11580),c=n(88875),u={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:{message:function(e){var t=e.params.len;return(0,o.str)(r||(r=a(["must NOT have more than "," items"])),t)},params:function(e){var t=e.params.len;return(0,o._)(i||(i=a(["{limit: ","}"])),t)}},code:function(e){var t=e.schema,n=e.parentSchema,r=e.it,i=n.prefixItems;r.items=!0,(0,s.alwaysValidSchema)(r,t)||(i?(0,c.validateAdditionalItems)(e,i):e.ok((0,l.validateArray)(e)))}};t.default=u},90691:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(34648),i={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code:function(e){var t=e.gen,n=e.schema,i=e.it;if((0,r.alwaysValidSchema)(i,n))e.fail();else{var a=t.name("valid");e.subschema({keyword:"not",compositeRule:!0,createErrors:!1,allErrors:!1},a),e.failResult(a,(function(){return e.reset()}),(function(){return e.error()}))}},error:{message:"must NOT be valid"}};t.default=i},84234:function(e,t,n){"use strict";var r,i,a,o=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var s=n(9091),l=n(34648),c={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:{message:"must match exactly one schema in oneOf",params:function(e){var t=e.params;return(0,s._)(r||(r=o(["{passingSchemas: ","}"])),t.passing)}},code:function(e){var t=e.gen,n=e.schema,r=e.parentSchema,c=e.it;if(!Array.isArray(n))throw new Error("ajv implementation error");if(!c.opts.discriminator||!r.discriminator){var u=n,f=t.let("valid",!1),d=t.let("passing",null),h=t.name("_valid");e.setParams({passing:d}),t.block((function(){u.forEach((function(n,r){var u;(0,l.alwaysValidSchema)(c,n)?t.var(h,!0):u=e.subschema({keyword:"oneOf",schemaProp:r,compositeRule:!0},h),r>0&&t.if((0,s._)(i||(i=o([""," && ",""])),h,f)).assign(f,!1).assign(d,(0,s._)(a||(a=o(["[",", ","]"])),d,r)).else(),t.if(h,(function(){t.assign(f,!0),t.assign(d,r),u&&e.mergeEvaluated(u,s.Name)}))}))})),e.result(f,(function(){return e.reset()}),(function(){return e.error(!0)}))}}};t.default=c},39137:function(e,t,n){"use strict";var r,i,a=n(59400).default,o=n(74704).default;Object.defineProperty(t,"__esModule",{value:!0});var s=n(11580),l=n(9091),c=n(34648),u=n(34648),f={keyword:"patternProperties",type:"object",schemaType:"object",code:function(e){var t=e.gen,n=e.schema,f=e.data,d=e.parentSchema,h=e.it,p=h.opts,v=(0,s.allSchemaProperties)(n),m=v.filter((function(e){return(0,c.alwaysValidSchema)(h,n[e])}));if(0!==v.length&&(m.length!==v.length||h.opts.unevaluated&&!0!==h.props)){var g=p.strictSchema&&!p.allowMatchingProperties&&d.properties,y=t.name("valid");!0===h.props||h.props instanceof l.Name||(h.props=(0,u.evaluatedPropsToName)(t,h.props));var b=h.props;!function(){var e,n=o(v);try{for(n.s();!(e=n.n()).done;){var r=e.value;g&&x(r),h.allErrors?w(r):(t.var(y,!0),w(r),t.if(y))}}catch(i){n.e(i)}finally{n.f()}}()}function x(e){for(var t in g)new RegExp(e).test(t)&&(0,c.checkStrictMode)(h,"property ".concat(t," matches pattern ").concat(e," (use allowMatchingProperties)"))}function w(n){t.forIn("key",f,(function(o){t.if((0,l._)(r||(r=a(["",".test(",")"])),(0,s.usePattern)(e,n),o),(function(){var r=m.includes(n);r||e.subschema({keyword:"patternProperties",schemaProp:n,dataProp:o,dataPropType:u.Type.Str},y),h.opts.unevaluated&&!0!==b?t.assign((0,l._)(i||(i=a(["","[","]"])),b,o),!0):r||h.allErrors||t.if((0,l.not)(y),(function(){return t.break()}))}))}))}}};t.default=f},80304:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(83318),i={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:function(e){return(0,r.validateTuple)(e,"items")}};t.default=i},65144:function(e,t,n){"use strict";var r=n(74704).default;Object.defineProperty(t,"__esModule",{value:!0});var i=n(12262),a=n(11580),o=n(34648),s=n(89279),l={keyword:"properties",type:"object",schemaType:"object",code:function(e){var t=e.gen,n=e.schema,l=e.parentSchema,c=e.data,u=e.it;"all"===u.opts.removeAdditional&&void 0===l.additionalProperties&&s.default.code(new i.KeywordCxt(u,s.default,"additionalProperties"));var f,d=(0,a.allSchemaProperties)(n),h=r(d);try{for(h.s();!(f=h.n()).done;){var p=f.value;u.definedProperties.add(p)}}catch(_){h.e(_)}finally{h.f()}u.opts.unevaluated&&d.length&&!0!==u.props&&(u.props=o.mergeEvaluated.props(t,(0,o.toHash)(d),u.props));var v=d.filter((function(e){return!(0,o.alwaysValidSchema)(u,n[e])}));if(0!==v.length){var m,g=t.name("valid"),y=r(v);try{for(y.s();!(m=y.n()).done;){var b=m.value;x(b)?w(b):(t.if((0,a.propertyInData)(t,c,b,u.opts.ownProperties)),w(b),u.allErrors||t.else().var(g,!0),t.endIf()),e.it.definedProperties.add(b),e.ok(g)}}catch(_){y.e(_)}finally{y.f()}}function x(e){return u.opts.useDefaults&&!u.compositeRule&&void 0!==n[e].default}function w(t){e.subschema({keyword:"properties",schemaProp:t,dataProp:t},g)}}};t.default=l},70274:function(e,t,n){"use strict";var r,i=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var a=n(9091),o=n(34648),s={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:{message:"property name must be valid",params:function(e){var t=e.params;return(0,a._)(r||(r=i(["{propertyName: ","}"])),t.propertyName)}},code:function(e){var t=e.gen,n=e.schema,r=e.data,i=e.it;if(!(0,o.alwaysValidSchema)(i,n)){var s=t.name("valid");t.forIn("key",r,(function(n){e.setParams({propertyName:n}),e.subschema({keyword:"propertyNames",data:n,dataTypes:["string"],propertyName:n,compositeRule:!0},s),t.if((0,a.not)(s),(function(){e.error(!0),i.allErrors||t.break()}))})),e.ok(s)}}};t.default=s},62464:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(34648),i={keyword:["then","else"],schemaType:["object","boolean"],code:function(e){var t=e.keyword,n=e.parentSchema,i=e.it;void 0===n.if&&(0,r.checkStrictMode)(i,'"'.concat(t,'" without "if" is ignored'))}};t.default=i},11580:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y=n(861).default,b=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.validateUnion=t.validateArray=t.usePattern=t.callValidateCode=t.schemaProperties=t.allSchemaProperties=t.noPropertyInData=t.propertyInData=t.isOwnProperty=t.hasPropFunc=t.reportMissingProp=t.checkMissingProp=t.checkReportMissingProp=void 0;var x=n(9091),w=n(34648),_=n(58317),k=n(34648);function S(e){return e.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,x._)(a||(a=b(["Object.prototype.hasOwnProperty"])))})}function T(e,t,n){return(0,x._)(o||(o=b(["",".call(",", ",")"])),S(e),t,n)}function A(e,t,n,r){var i=(0,x._)(c||(c=b(["",""," === undefined"])),t,(0,x.getProperty)(n));return r?(0,x.or)(i,(0,x.not)(T(e,t,n))):i}function E(e){return e?Object.keys(e).filter((function(e){return"__proto__"!==e})):[]}t.checkReportMissingProp=function(e,t){var n=e.gen,i=e.data,a=e.it;n.if(A(n,i,t,a.opts.ownProperties),(function(){e.setParams({missingProperty:(0,x._)(r||(r=b(["",""])),t)},!0),e.error()}))},t.checkMissingProp=function(e,t,n){var r=e.gen,a=e.data,o=e.it.opts;return x.or.apply(void 0,y(t.map((function(e){return(0,x.and)(A(r,a,e,o.ownProperties),(0,x._)(i||(i=b([""," = ",""])),n,e))}))))},t.reportMissingProp=function(e,t){e.setParams({missingProperty:t},!0),e.error()},t.hasPropFunc=S,t.isOwnProperty=T,t.propertyInData=function(e,t,n,r){var i=(0,x._)(s||(s=b(["",""," !== undefined"])),t,(0,x.getProperty)(n));return r?(0,x._)(l||(l=b([""," && ",""])),i,T(e,t,n)):i},t.noPropertyInData=A,t.allSchemaProperties=E,t.schemaProperties=function(e,t){return E(t).filter((function(n){return!(0,w.alwaysValidSchema)(e,t[n])}))},t.callValidateCode=function(e,t,n,r){var i=e.schemaCode,a=e.data,o=e.it,s=o.gen,l=o.topSchemaRef,c=o.schemaPath,p=o.errorPath,v=e.it,m=r?(0,x._)(u||(u=b(["",", ",", ","",""])),i,a,l,c):a,g=[[_.default.instancePath,(0,x.strConcat)(_.default.instancePath,p)],[_.default.parentData,v.parentData],[_.default.parentDataProperty,v.parentDataProperty],[_.default.rootData,_.default.rootData]];v.opts.dynamicRef&&g.push([_.default.dynamicAnchors,_.default.dynamicAnchors]);var y=(0,x._)(f||(f=b(["",", ",""])),m,s.object.apply(s,g));return n!==x.nil?(0,x._)(d||(d=b(["",".call(",", ",")"])),t,n,y):(0,x._)(h||(h=b(["","(",")"])),t,y)};var C=(0,x._)(p||(p=b(["new RegExp"])));t.usePattern=function(e,t){var n=e.gen,r=e.it.opts,i=r.unicodeRegExp?"u":"",a=r.code.regExp,o=a(t,i);return n.scopeValue("pattern",{key:o.toString(),ref:o,code:(0,x._)(v||(v=b(["","(",", ",")"])),"new RegExp"===a.code?C:(0,k.useFunc)(n,a),t,i)})},t.validateArray=function(e){var t=e.gen,n=e.data,r=e.keyword,i=e.it,a=t.name("valid");if(i.allErrors){var o=t.let("valid",!0);return s((function(){return t.assign(o,!1)})),o}return t.var(a,!0),s((function(){return t.break()})),a;function s(i){var o=t.const("len",(0,x._)(m||(m=b(["",".length"])),n));t.forRange("i",0,o,(function(n){e.subschema({keyword:r,dataProp:n,dataPropType:w.Type.Num},a),t.if((0,x.not)(a),i)}))}},t.validateUnion=function(e){var t=e.gen,n=e.schema,r=e.keyword,i=e.it;if(!Array.isArray(n))throw new Error("ajv implementation error");if(!n.some((function(e){return(0,w.alwaysValidSchema)(i,e)}))||i.opts.unevaluated){var a=t.let("valid",!1),o=t.name("_valid");t.block((function(){return n.forEach((function(n,i){var s=e.subschema({keyword:r,schemaProp:i,compositeRule:!0},o);t.assign(a,(0,x._)(g||(g=b([""," || ",""])),a,o)),e.mergeValidEvaluated(s,o)||t.if((0,x.not)(a))}))})),e.result(a,(function(){return e.reset()}),(function(){return e.error(!0)}))}}},14963:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n={keyword:"id",code:function(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};t.default=n},72007:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(14963),i=n(17992),a=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",r.default,i.default];t.default=a},17992:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0}),t.callRef=t.getValidate=void 0;var h=n(41145),p=n(11580),v=n(9091),m=n(58317),g=n(28393),y=n(34648),b={keyword:"$ref",schemaType:"string",code:function(e){var t=e.gen,n=e.schema,i=e.it,a=i.baseId,o=i.schemaEnv,s=i.validateName,l=i.opts,c=i.self,u=o.root;if(("#"===n||"#/"===n)&&a===u.baseId)return function(){if(o===u)return w(e,s,o,o.$async);var n=t.scopeValue("root",{ref:u});return w(e,(0,v._)(r||(r=d(["",".validate"])),n),u,u.$async)}();var f=g.resolveRef.call(c,u,a,n);if(void 0===f)throw new h.default(i.opts.uriResolver,a,n);return f instanceof g.SchemaEnv?function(t){var n=x(e,t);w(e,n,t,t.$async)}(f):function(r){var i=t.scopeValue("schema",!0===l.code.source?{ref:r,code:(0,v.stringify)(r)}:{ref:r}),a=t.name("valid"),o=e.subschema({schema:r,dataTypes:[],schemaPath:v.nil,topSchemaRef:i,errSchemaPath:n},a);e.mergeEvaluated(o),e.ok(a)}(f)}};function x(e,t){var n=e.gen;return t.validate?n.scopeValue("validate",{ref:t.validate}):(0,v._)(i||(i=d(["",".validate"])),n.scopeValue("wrapper",{ref:t}))}function w(e,t,n,r){var i=e.gen,h=e.it,g=h.allErrors,b=h.schemaEnv,x=h.opts.passContext?m.default.this:v.nil;function w(e){var t=(0,v._)(s||(s=d(["",".errors"])),e);i.assign(m.default.vErrors,(0,v._)(l||(l=d([""," === null ? "," : ",".concat(",")"])),m.default.vErrors,t,m.default.vErrors,t)),i.assign(m.default.errors,(0,v._)(c||(c=d(["",".length"])),m.default.vErrors))}function _(e){var t;if(h.opts.unevaluated){var r=null===(t=null===n||void 0===n?void 0:n.validate)||void 0===t?void 0:t.evaluated;if(!0!==h.props)if(r&&!r.dynamicProps)void 0!==r.props&&(h.props=y.mergeEvaluated.props(i,r.props,h.props));else{var a=i.var("props",(0,v._)(u||(u=d(["",".evaluated.props"])),e));h.props=y.mergeEvaluated.props(i,a,h.props,v.Name)}if(!0!==h.items)if(r&&!r.dynamicItems)void 0!==r.items&&(h.items=y.mergeEvaluated.items(i,r.items,h.items));else{var o=i.var("items",(0,v._)(f||(f=d(["",".evaluated.items"])),e));h.items=y.mergeEvaluated.items(i,o,h.items,v.Name)}}}r?function(){if(!b.$async)throw new Error("async schema referenced by sync schema");var n=i.let("valid");i.try((function(){i.code((0,v._)(a||(a=d(["await ",""])),(0,p.callValidateCode)(e,t,x))),_(t),g||i.assign(n,!0)}),(function(e){i.if((0,v._)(o||(o=d(["!("," instanceof ",")"])),e,h.ValidationError),(function(){return i.throw(e)})),w(e),g||i.assign(n,!1)})),e.ok(n)}():e.result((0,p.callValidateCode)(e,t,x),(function(){return _(t)}),(function(){return w(t)}))}t.getValidate=x,t.callRef=w,t.default=b},85184:function(e,t,n){"use strict";var r,i,a,o,s=n(74704).default,l=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var c=n(9091),u=n(15930),f=n(28393),d=n(34648),h={keyword:"discriminator",type:"object",schemaType:"object",error:{message:function(e){var t=e.params,n=t.discrError,r=t.tagName;return n===u.DiscrError.Tag?'tag "'.concat(r,'" must be string'):'value of tag "'.concat(r,'" must be in oneOf')},params:function(e){var t=e.params,n=t.discrError,i=t.tag,a=t.tagName;return(0,c._)(r||(r=l(["{error: ",", tag: ",", tagValue: ","}"])),n,a,i)}},code:function(e){var t=e.gen,n=e.data,r=e.schema,h=e.parentSchema,p=e.it,v=h.oneOf;if(!p.opts.discriminator)throw new Error("discriminator: requires discriminator option");var m=r.propertyName;if("string"!=typeof m)throw new Error("discriminator: requires propertyName");if(r.mapping)throw new Error("discriminator: mapping is not supported");if(!v)throw new Error("discriminator: requires oneOf keyword");var g=t.let("valid",!1),y=t.const("tag",(0,c._)(i||(i=l(["","",""])),n,(0,c.getProperty)(m)));function b(n){var r=t.name("valid"),i=e.subschema({keyword:"oneOf",schemaProp:n},r);return e.mergeEvaluated(i,c.Name),r}t.if((0,c._)(a||(a=l(["typeof ",' == "string"'])),y),(function(){return function(){var n=function(){for(var e,t={},n=l(h),r=!0,i=0;i=p.opts.loopEnum,y=function(){return null!==v&&void 0!==v?v:v=(0,u.useFunc)(t,f.default)};if(g||r)m=t.let("valid"),e.block$data(m,(function(){t.assign(m,!1),t.forOf("v",h,(function(e){return t.if((0,c._)(i||(i=l(["","(",", ",")"])),y(),n,e),(function(){return t.assign(m,!0).break()}))}))}));else{if(!Array.isArray(d))throw new Error("ajv implementation error");var b=t.const("vSchema",h);m=c.or.apply(void 0,s(d.map((function(e,t){return function(e,t){var r=d[t];return"object"===typeof r&&null!==r?(0,c._)(a||(a=l(["","(",", ","[","])"])),y(),n,e,t):(0,c._)(o||(o=l([""," === ",""])),n,r)}(b,t)}))))}e.pass(m)}};t.default=d},29110:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(96694),i=n(10273),a=n(57254),o=n(32991),s=n(26245),l=n(76006),c=n(76755),u=n(97140),f=n(3605),d=n(89525),h=[r.default,i.default,a.default,o.default,s.default,l.default,c.default,u.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},f.default,d.default];t.default=h},76755:function(e,t,n){"use strict";var r,i,a,o=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var s=n(9091),l={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:{message:function(e){var t=e.keyword,n=e.schemaCode,i="maxItems"===t?"more":"fewer";return(0,s.str)(r||(r=o(["must NOT have "," than "," items"])),i,n)},params:function(e){var t=e.schemaCode;return(0,s._)(i||(i=o(["{limit: ","}"])),t)}},code:function(e){var t=e.keyword,n=e.data,r=e.schemaCode,i="maxItems"===t?s.operators.GT:s.operators.LT;e.fail$data((0,s._)(a||(a=o(["",".length "," ",""])),n,i,r))}};t.default=l},57254:function(e,t,n){"use strict";var r,i,a,o,s,l=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var c=n(9091),u=n(34648),f=n(73759),d={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:{message:function(e){var t=e.keyword,n=e.schemaCode,i="maxLength"===t?"more":"fewer";return(0,c.str)(r||(r=l(["must NOT have "," than "," characters"])),i,n)},params:function(e){var t=e.schemaCode;return(0,c._)(i||(i=l(["{limit: ","}"])),t)}},code:function(e){var t=e.keyword,n=e.data,r=e.schemaCode,i=e.it,d="maxLength"===t?c.operators.GT:c.operators.LT,h=!1===i.opts.unicode?(0,c._)(a||(a=l(["",".length"])),n):(0,c._)(o||(o=l(["","(",")"])),(0,u.useFunc)(e.gen,f.default),n);e.fail$data((0,c._)(s||(s=l([""," "," ",""])),h,d,r))}};t.default=d},96694:function(e,t,n){"use strict";var r,i,a,o=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var s=n(9091),l=s.operators,c={maximum:{okStr:"<=",ok:l.LTE,fail:l.GT},minimum:{okStr:">=",ok:l.GTE,fail:l.LT},exclusiveMaximum:{okStr:"<",ok:l.LT,fail:l.GTE},exclusiveMinimum:{okStr:">",ok:l.GT,fail:l.LTE}},u={message:function(e){var t=e.keyword,n=e.schemaCode;return(0,s.str)(r||(r=o(["must be "," ",""])),c[t].okStr,n)},params:function(e){var t=e.keyword,n=e.schemaCode;return(0,s._)(i||(i=o(["{comparison: ",", limit: ","}"])),c[t].okStr,n)}},f={keyword:Object.keys(c),type:"number",schemaType:"number",$data:!0,error:u,code:function(e){var t=e.keyword,n=e.data,r=e.schemaCode;e.fail$data((0,s._)(a||(a=o([""," "," "," || isNaN(",")"])),n,c[t].fail,r,n))}};t.default=f},26245:function(e,t,n){"use strict";var r,i,a,o=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var s=n(9091),l={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:{message:function(e){var t=e.keyword,n=e.schemaCode,i="maxProperties"===t?"more":"fewer";return(0,s.str)(r||(r=o(["must NOT have "," than "," properties"])),i,n)},params:function(e){var t=e.schemaCode;return(0,s._)(i||(i=o(["{limit: ","}"])),t)}},code:function(e){var t=e.keyword,n=e.data,r=e.schemaCode,i="maxProperties"===t?s.operators.GT:s.operators.LT;e.fail$data((0,s._)(a||(a=o(["Object.keys(",").length "," ",""])),n,i,r))}};t.default=l},10273:function(e,t,n){"use strict";var r,i,a,o,s,l=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var c=n(9091),u={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:{message:function(e){var t=e.schemaCode;return(0,c.str)(r||(r=l(["must be multiple of ",""])),t)},params:function(e){var t=e.schemaCode;return(0,c._)(i||(i=l(["{multipleOf: ","}"])),t)}},code:function(e){var t=e.gen,n=e.data,r=e.schemaCode,i=e.it.opts.multipleOfPrecision,u=t.let("res"),f=i?(0,c._)(a||(a=l(["Math.abs(Math.round(",") - ",") > 1e-",""])),u,u,i):(0,c._)(o||(o=l([""," !== parseInt(",")"])),u,u);e.fail$data((0,c._)(s||(s=l(["("," === 0 || ("," = ","/",", ","))"])),r,u,n,r,f))}};t.default=u},32991:function(e,t,n){"use strict";var r,i,a,o,s=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var l=n(11580),c=n(9091),u={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:{message:function(e){var t=e.schemaCode;return(0,c.str)(r||(r=s(['must match pattern "','"'])),t)},params:function(e){var t=e.schemaCode;return(0,c._)(i||(i=s(["{pattern: ","}"])),t)}},code:function(e){var t=e.data,n=e.$data,r=e.schema,i=e.schemaCode,u=e.it.opts.unicodeRegExp?"u":"",f=n?(0,c._)(a||(a=s(["(new RegExp(",", ","))"])),i,u):(0,l.usePattern)(e,r);e.fail$data((0,c._)(o||(o=s(["!",".test(",")"])),f,t))}};t.default=u},76006:function(e,t,n){"use strict";var r,i,a=n(74704).default,o=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var s=n(11580),l=n(9091),c=n(34648),u={keyword:"required",type:"object",schemaType:"array",$data:!0,error:{message:function(e){var t=e.params.missingProperty;return(0,l.str)(r||(r=o(["must have required property '","'"])),t)},params:function(e){var t=e.params.missingProperty;return(0,l._)(i||(i=o(["{missingProperty: ","}"])),t)}},code:function(e){var t=e.gen,n=e.schema,r=e.schemaCode,i=e.data,o=e.$data,u=e.it,f=u.opts;if(o||0!==n.length){var d=n.length>=f.loopRequired;if(u.allErrors?function(){if(d||o)e.block$data(l.nil,x);else{var t,r=a(n);try{for(r.s();!(t=r.n()).done;){var i=t.value;(0,s.checkReportMissingProp)(e,i)}}catch(c){r.e(c)}finally{r.f()}}}():function(){var a=t.let("missing");if(d||o){var c=t.let("valid",!0);e.block$data(c,(function(){return function(n,a){e.setParams({missingProperty:n}),t.forOf(n,r,(function(){t.assign(a,(0,s.propertyInData)(t,i,n,f.ownProperties)),t.if((0,l.not)(a),(function(){e.error(),t.break()}))}),l.nil)}(a,c)})),e.ok(c)}else t.if((0,s.checkMissingProp)(e,n,a)),(0,s.reportMissingProp)(e,a),t.else()}(),f.strictRequired){var h,p=e.parentSchema.properties,v=e.it.definedProperties,m=a(n);try{for(m.s();!(h=m.n()).done;){var g=h.value;if(void 0===(null===p||void 0===p?void 0:p[g])&&!v.has(g)){var y=u.schemaEnv.baseId+u.errSchemaPath,b='required property "'.concat(g,'" is not defined at "').concat(y,'" (strictRequired)');(0,c.checkStrictMode)(u,b,u.opts.strictRequired)}}}catch(w){m.e(w)}finally{m.f()}}}function x(){t.forOf("prop",r,(function(n){e.setParams({missingProperty:n}),t.if((0,s.noPropertyInData)(t,i,n,f.ownProperties),(function(){return e.error()}))}))}}};t.default=u},97140:function(e,t,n){"use strict";var r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x=n(59400).default;Object.defineProperty(t,"__esModule",{value:!0});var w=n(12093),_=n(9091),k=n(34648),S=n(28089),T={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:{message:function(e){var t=e.params,n=t.i,i=t.j;return(0,_.str)(r||(r=x(["must NOT have duplicate items (items ## "," and "," are identical)"])),i,n)},params:function(e){var t=e.params,n=t.i,r=t.j;return(0,_._)(i||(i=x(["{i: ",", j: ","}"])),n,r)}},code:function(e){var t=e.gen,n=e.data,r=e.$data,i=e.schema,T=e.parentSchema,A=e.schemaCode,E=e.it;if(r||i){var C=t.let("valid"),M=T.items?(0,w.getSchemaTypes)(T.items):[];e.block$data(C,(function(){var r=t.let("i",(0,_._)(o||(o=x(["",".length"])),n)),i=t.let("j");e.setParams({i:r,j:i}),t.assign(C,!0),t.if((0,_._)(s||(s=x([""," > 1"])),r),(function(){return(M.length>0&&!M.some((function(e){return"object"===e||"array"===e}))?O:P)(r,i)}))}),(0,_._)(a||(a=x([""," === false"])),A)),e.ok(C)}function O(r,i){var a=t.name("item"),o=(0,w.checkDataTypes)(M,a,E.opts.strictNumbers,w.DataType.Wrong),s=t.const("indices",(0,_._)(l||(l=x(["{}"]))));t.for((0,_._)(c||(c=x([";","--;"])),r),(function(){t.let(a,(0,_._)(u||(u=x(["","[","]"])),n,r)),t.if(o,(0,_._)(f||(f=x(["continue"])))),M.length>1&&t.if((0,_._)(d||(d=x(["typeof ",' == "string"'])),a),(0,_._)(h||(h=x(["",' += "_"'])),a)),t.if((0,_._)(p||(p=x(["typeof ","[",'] == "number"'])),s,a),(function(){t.assign(i,(0,_._)(v||(v=x(["","[","]"])),s,a)),e.error(),t.assign(C,!1).break()})).code((0,_._)(m||(m=x(["","[","] = ",""])),s,a,r))}))}function P(r,i){var a=(0,k.useFunc)(t,S.default),o=t.name("outer");t.label(o).for((0,_._)(g||(g=x([";","--;"])),r),(function(){return t.for((0,_._)(y||(y=x([""," = ","; ","--;"])),i,r,i),(function(){return t.if((0,_._)(b||(b=x(["","(","[","], ","[","])"])),a,n,r,n,i),(function(){e.error(),t.assign(C,!1).break(o)}))}))}))}}};t.default=T},69998:function(e,t){"use strict";t.Z=function(e,t){if(e&&t){var n=Array.isArray(t)?t:t.split(","),r=e.name||"",i=(e.type||"").toLowerCase(),a=i.replace(/\/.*$/,"");return n.some((function(e){var t=e.trim().toLowerCase();return"."===t.charAt(0)?r.toLowerCase().endsWith(t):t.endsWith("/*")?a===t.replace(/\/.*$/,""):i===t}))}return!0}},74569:function(e,t,n){e.exports=n(28036)},73381:function(e,t,n){"use strict";var r=n(33589),i=n(47297),a=n(29301),o=n(39774),s=n(81804),l=n(59145),c=n(95411),u=n(96467),f=n(46789),d=n(9346);e.exports=function(e){return new Promise((function(t,n){var h,p=e.data,v=e.headers,m=e.responseType;function g(){e.cancelToken&&e.cancelToken.unsubscribe(h),e.signal&&e.signal.removeEventListener("abort",h)}r.isFormData(p)&&delete v["Content-Type"];var y=new XMLHttpRequest;if(e.auth){var b=e.auth.username||"",x=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";v.Authorization="Basic "+btoa(b+":"+x)}var w=s(e.baseURL,e.url);function _(){if(y){var r="getAllResponseHeaders"in y?l(y.getAllResponseHeaders()):null,a={data:m&&"text"!==m&&"json"!==m?y.response:y.responseText,status:y.status,statusText:y.statusText,headers:r,config:e,request:y};i((function(e){t(e),g()}),(function(e){n(e),g()}),a),y=null}}if(y.open(e.method.toUpperCase(),o(w,e.params,e.paramsSerializer),!0),y.timeout=e.timeout,"onloadend"in y?y.onloadend=_:y.onreadystatechange=function(){y&&4===y.readyState&&(0!==y.status||y.responseURL&&0===y.responseURL.indexOf("file:"))&&setTimeout(_)},y.onabort=function(){y&&(n(u("Request aborted",e,"ECONNABORTED",y)),y=null)},y.onerror=function(){n(u("Network Error",e,null,y)),y=null},y.ontimeout=function(){var t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded",r=e.transitional||f;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(u(t,e,r.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",y)),y=null},r.isStandardBrowserEnv()){var k=(e.withCredentials||c(w))&&e.xsrfCookieName?a.read(e.xsrfCookieName):void 0;k&&(v[e.xsrfHeaderName]=k)}"setRequestHeader"in y&&r.forEach(v,(function(e,t){"undefined"===typeof p&&"content-type"===t.toLowerCase()?delete v[t]:y.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(y.withCredentials=!!e.withCredentials),m&&"json"!==m&&(y.responseType=e.responseType),"function"===typeof e.onDownloadProgress&&y.addEventListener("progress",e.onDownloadProgress),"function"===typeof e.onUploadProgress&&y.upload&&y.upload.addEventListener("progress",e.onUploadProgress),(e.cancelToken||e.signal)&&(h=function(e){y&&(n(!e||e&&e.type?new d("canceled"):e),y.abort(),y=null)},e.cancelToken&&e.cancelToken.subscribe(h),e.signal&&(e.signal.aborted?h():e.signal.addEventListener("abort",h))),p||(p=null),y.send(p)}))}},28036:function(e,t,n){"use strict";var r=n(33589),i=n(44049),a=n(23773),o=n(40777);var s=function e(t){var n=new a(t),s=i(a.prototype.request,n);return r.extend(s,a.prototype,n),r.extend(s,n),s.create=function(n){return e(o(t,n))},s}(n(1709));s.Axios=a,s.Cancel=n(9346),s.CancelToken=n(6857),s.isCancel=n(35517),s.VERSION=n(67600).version,s.all=function(e){return Promise.all(e)},s.spread=n(98089),s.isAxiosError=n(49580),e.exports=s,e.exports.default=s},9346:function(e){"use strict";function t(e){this.message=e}t.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},t.prototype.__CANCEL__=!0,e.exports=t},6857:function(e,t,n){"use strict";var r=n(9346);function i(e){if("function"!==typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;this.promise.then((function(e){if(n._listeners){var t,r=n._listeners.length;for(t=0;t=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};i.forEach(["delete","get","head"],(function(e){u.headers[e]={}})),i.forEach(["post","put","patch"],(function(e){u.headers[e]=i.merge(l)})),e.exports=u},46789:function(e){"use strict";e.exports={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1}},67600:function(e){e.exports={version:"0.26.1"}},44049:function(e){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r=0)return;o[t]="set-cookie"===t?(o[t]?o[t]:[]).concat([n]):o[t]?o[t]+", "+n:n}})),o):o}},98089:function(e){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},47835:function(e,t,n){"use strict";var r=n(67600).version,i={};["object","boolean","number","function","string","symbol"].forEach((function(e,t){i[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}}));var a={};i.transitional=function(e,t,n){function i(e,t){return"[Axios v"+r+"] Transitional option '"+e+"'"+t+(n?". "+n:"")}return function(n,r,o){if(!1===e)throw new Error(i(r," has been removed"+(t?" in "+t:"")));return t&&!a[r]&&(a[r]=!0,console.warn(i(r," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,r,o)}},e.exports={assertOptions:function(e,t,n){if("object"!==typeof e)throw new TypeError("options must be an object");for(var r=Object.keys(e),i=r.length;i-- >0;){var a=r[i],o=t[a];if(o){var s=e[a],l=void 0===s||o(s,a,e);if(!0!==l)throw new TypeError("option "+a+" must be "+l)}else if(!0!==n)throw Error("Unknown option "+a)}},validators:i}},33589:function(e,t,n){"use strict";var r=n(44049),i=Object.prototype.toString;function a(e){return Array.isArray(e)}function o(e){return"undefined"===typeof e}function s(e){return"[object ArrayBuffer]"===i.call(e)}function l(e){return null!==e&&"object"===typeof e}function c(e){if("[object Object]"!==i.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function u(e){return"[object Function]"===i.call(e)}function f(e,t){if(null!==e&&"undefined"!==typeof e)if("object"!==typeof e&&(e=[e]),a(e))for(var n=0,r=e.length;n0?o-4:o;for(n=0;n>16&255,c[u++]=t>>8&255,c[u++]=255&t;2===l&&(t=r[e.charCodeAt(n)]<<2|r[e.charCodeAt(n+1)]>>4,c[u++]=255&t);1===l&&(t=r[e.charCodeAt(n)]<<10|r[e.charCodeAt(n+1)]<<4|r[e.charCodeAt(n+2)]>>2,c[u++]=t>>8&255,c[u++]=255&t);return c},t.fromByteArray=function(e){for(var t,r=e.length,i=r%3,a=[],o=16383,s=0,c=r-i;sc?c:s+o));1===i?(t=e[r-1],a.push(n[t>>2]+n[t<<4&63]+"==")):2===i&&(t=(e[r-2]<<8)+e[r-1],a.push(n[t>>10]+n[t>>4&63]+n[t<<2&63]+"="));return a.join("")};for(var n=[],r=[],i="undefined"!==typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)n[o]=a[o],r[a.charCodeAt(o)]=o;function s(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function l(e,t,r){for(var i,a,o=[],s=t;s>18&63]+n[a>>12&63]+n[a>>6&63]+n[63&a]);return o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},19778:function(e,t,n){"use strict";var r=n(56690).default,i=n(89728).default,a=n(66115).default,o=n(61655).default,s=n(26389).default,l=n(2009),c=n(84038),u="function"===typeof Symbol&&"function"===typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;t.lW=h,t.h2=50;var f=2147483647;function d(e){if(e>f)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,h.prototype),t}function h(e,t,n){if("number"===typeof e){if("string"===typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return m(e)}return p(e,t,n)}function p(e,t,n){if("string"===typeof e)return function(e,t){"string"===typeof t&&""!==t||(t="utf8");if(!h.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var n=0|x(e,t),r=d(n),i=r.write(e,t);i!==n&&(r=r.slice(0,i));return r}(e,t);if(ArrayBuffer.isView(e))return function(e){if(ee(e,Uint8Array)){var t=new Uint8Array(e);return y(t.buffer,t.byteOffset,t.byteLength)}return g(e)}(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(ee(e,ArrayBuffer)||e&&ee(e.buffer,ArrayBuffer))return y(e,t,n);if("undefined"!==typeof SharedArrayBuffer&&(ee(e,SharedArrayBuffer)||e&&ee(e.buffer,SharedArrayBuffer)))return y(e,t,n);if("number"===typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=e.valueOf&&e.valueOf();if(null!=r&&r!==e)return h.from(r,t,n);var i=function(e){if(h.isBuffer(e)){var t=0|b(e.length),n=d(t);return 0===n.length||e.copy(n,0,0,t),n}if(void 0!==e.length)return"number"!==typeof e.length||te(e.length)?d(0):g(e);if("Buffer"===e.type&&Array.isArray(e.data))return g(e.data)}(e);if(i)return i;if("undefined"!==typeof Symbol&&null!=Symbol.toPrimitive&&"function"===typeof e[Symbol.toPrimitive])return h.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}function v(e){if("number"!==typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function m(e){return v(e),d(e<0?0:0|b(e))}function g(e){for(var t=e.length<0?0:0|b(e.length),n=d(t),r=0;r=f)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+f.toString(16)+" bytes");return 0|e}function x(e,t){if(h.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||ee(e,ArrayBuffer))return e.byteLength;if("string"!==typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);var n=e.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return X(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return J(e).length;default:if(i)return r?-1:X(e).length;t=(""+t).toLowerCase(),i=!0}}function w(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return D(this,t,n);case"utf8":case"utf-8":return P(this,t,n);case"ascii":return I(this,t,n);case"latin1":case"binary":return R(this,t,n);case"base64":return O(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return F(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function _(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function k(e,t,n,r,i){if(0===e.length)return-1;if("string"===typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),te(n=+n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"===typeof t&&(t=h.from(t,r)),h.isBuffer(t))return 0===t.length?-1:S(e,t,n,r,i);if("number"===typeof t)return t&=255,"function"===typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):S(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function S(e,t,n,r,i){var a,o=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;o=2,s/=2,l/=2,n/=2}function c(e,t){return 1===o?e[t]:e.readUInt16BE(t*o)}if(i){var u=-1;for(a=n;as&&(n=s-l),a=n;a>=0;a--){for(var f=!0,d=0;di&&(r=i):r=i;var a,o=t.length;for(r>o/2&&(r=o/2),a=0;a>8,i=n%256,a.push(i),a.push(r);return a}(t,e.length-n),e,n,r)}function O(e,t,n){return 0===t&&n===e.length?l.fromByteArray(e):l.fromByteArray(e.slice(t,n))}function P(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i239?4:a>223?3:a>191?2:1;if(i+s<=n){var l=void 0,c=void 0,u=void 0,f=void 0;switch(s){case 1:a<128&&(o=a);break;case 2:128===(192&(l=e[i+1]))&&(f=(31&a)<<6|63&l)>127&&(o=f);break;case 3:l=e[i+1],c=e[i+2],128===(192&l)&&128===(192&c)&&(f=(15&a)<<12|(63&l)<<6|63&c)>2047&&(f<55296||f>57343)&&(o=f);break;case 4:l=e[i+1],c=e[i+2],u=e[i+3],128===(192&l)&&128===(192&c)&&128===(192&u)&&(f=(15&a)<<18|(63&l)<<12|(63&c)<<6|63&u)>65535&&f<1114112&&(o=f)}}null===o?(o=65533,s=1):o>65535&&(o-=65536,r.push(o>>>10&1023|55296),o=56320|1023&o),r.push(o),i+=s}return function(e){var t=e.length;if(t<=L)return String.fromCharCode.apply(String,e);var n="",r=0;for(;rr.length?(h.isBuffer(a)||(a=h.from(a)),a.copy(r,i)):Uint8Array.prototype.set.call(r,a,i);else{if(!h.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,i)}i+=a.length}return r},h.byteLength=x,h.prototype._isBuffer=!0,h.prototype.swap16=function(){var e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tn&&(e+=" ... "),""},u&&(h.prototype[u]=h.prototype.inspect),h.prototype.compare=function(e,t,n,r,i){if(ee(e,Uint8Array)&&(e=h.from(e,e.offset,e.byteLength)),!h.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var a=(i>>>=0)-(r>>>=0),o=(n>>>=0)-(t>>>=0),s=Math.min(a,o),l=this.slice(r,i),c=e.slice(t,n),u=0;u>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-t;if((void 0===n||n>i)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var a=!1;;)switch(r){case"hex":return T(this,e,t,n);case"utf8":case"utf-8":return A(this,e,t,n);case"ascii":case"latin1":case"binary":return E(this,e,t,n);case"base64":return C(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return M(this,e,t,n);default:if(a)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),a=!0}},h.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var L=4096;function I(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;ir)&&(n=r);for(var i="",a=t;an)throw new RangeError("Trying to access beyond buffer length")}function z(e,t,n,r,i,a){if(!h.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}function j(e,t,n,r,i){G(t,r,i,e,n,7);var a=Number(t&BigInt(4294967295));e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a;var o=Number(t>>BigInt(32)&BigInt(4294967295));return e[n++]=o,o>>=8,e[n++]=o,o>>=8,e[n++]=o,o>>=8,e[n++]=o,n}function B(e,t,n,r,i){G(t,r,i,e,n,7);var a=Number(t&BigInt(4294967295));e[n+7]=a,a>>=8,e[n+6]=a,a>>=8,e[n+5]=a,a>>=8,e[n+4]=a;var o=Number(t>>BigInt(32)&BigInt(4294967295));return e[n+3]=o,o>>=8,e[n+2]=o,o>>=8,e[n+1]=o,o>>=8,e[n]=o,n+8}function U(e,t,n,r,i,a){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function H(e,t,n,r,i){return t=+t,n>>>=0,i||U(e,0,n,4),c.write(e,t,n,r,23,4),n+4}function $(e,t,n,r,i){return t=+t,n>>>=0,i||U(e,0,n,8),c.write(e,t,n,r,52,8),n+8}h.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||N(e,t,this.length);for(var r=this[e],i=1,a=0;++a>>=0,t>>>=0,n||N(e,t,this.length);for(var r=this[e+--t],i=1;t>0&&(i*=256);)r+=this[e+--t]*i;return r},h.prototype.readUint8=h.prototype.readUInt8=function(e,t){return e>>>=0,t||N(e,1,this.length),this[e]},h.prototype.readUint16LE=h.prototype.readUInt16LE=function(e,t){return e>>>=0,t||N(e,2,this.length),this[e]|this[e+1]<<8},h.prototype.readUint16BE=h.prototype.readUInt16BE=function(e,t){return e>>>=0,t||N(e,2,this.length),this[e]<<8|this[e+1]},h.prototype.readUint32LE=h.prototype.readUInt32LE=function(e,t){return e>>>=0,t||N(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},h.prototype.readUint32BE=h.prototype.readUInt32BE=function(e,t){return e>>>=0,t||N(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},h.prototype.readBigUInt64LE=re((function(e){Z(e>>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||Y(e,this.length-8);var r=t+this[++e]*Math.pow(2,8)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,24),i=this[++e]+this[++e]*Math.pow(2,8)+this[++e]*Math.pow(2,16)+n*Math.pow(2,24);return BigInt(r)+(BigInt(i)<>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||Y(e,this.length-8);var r=t*Math.pow(2,24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+this[++e],i=this[++e]*Math.pow(2,24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+n;return(BigInt(r)<>>=0,t>>>=0,n||N(e,t,this.length);for(var r=this[e],i=1,a=0;++a=(i*=128)&&(r-=Math.pow(2,8*t)),r},h.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||N(e,t,this.length);for(var r=t,i=1,a=this[e+--r];r>0&&(i*=256);)a+=this[e+--r]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*t)),a},h.prototype.readInt8=function(e,t){return e>>>=0,t||N(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},h.prototype.readInt16LE=function(e,t){e>>>=0,t||N(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},h.prototype.readInt16BE=function(e,t){e>>>=0,t||N(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},h.prototype.readInt32LE=function(e,t){return e>>>=0,t||N(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},h.prototype.readInt32BE=function(e,t){return e>>>=0,t||N(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},h.prototype.readBigInt64LE=re((function(e){Z(e>>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||Y(e,this.length-8);var r=this[e+4]+this[e+5]*Math.pow(2,8)+this[e+6]*Math.pow(2,16)+(n<<24);return(BigInt(r)<>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||Y(e,this.length-8);var r=(t<<24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+this[++e];return(BigInt(r)<>>=0,t||N(e,4,this.length),c.read(this,e,!0,23,4)},h.prototype.readFloatBE=function(e,t){return e>>>=0,t||N(e,4,this.length),c.read(this,e,!1,23,4)},h.prototype.readDoubleLE=function(e,t){return e>>>=0,t||N(e,8,this.length),c.read(this,e,!0,52,8)},h.prototype.readDoubleBE=function(e,t){return e>>>=0,t||N(e,8,this.length),c.read(this,e,!1,52,8)},h.prototype.writeUintLE=h.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t>>>=0,n>>>=0,r)||z(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,a=0;for(this[t]=255&e;++a>>=0,n>>>=0,r)||z(this,e,t,n,Math.pow(2,8*n)-1,0);var i=n-1,a=1;for(this[t+i]=255&e;--i>=0&&(a*=256);)this[t+i]=e/a&255;return t+n},h.prototype.writeUint8=h.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,1,255,0),this[t]=255&e,t+1},h.prototype.writeUint16LE=h.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},h.prototype.writeUint16BE=h.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},h.prototype.writeUint32LE=h.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},h.prototype.writeUint32BE=h.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},h.prototype.writeBigUInt64LE=re((function(e){return j(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,BigInt(0),BigInt("0xffffffffffffffff"))})),h.prototype.writeBigUInt64BE=re((function(e){return B(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,BigInt(0),BigInt("0xffffffffffffffff"))})),h.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);z(this,e,t,n,i-1,-i)}var a=0,o=1,s=0;for(this[t]=255&e;++a>0)-s&255;return t+n},h.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);z(this,e,t,n,i-1,-i)}var a=n-1,o=1,s=0;for(this[t+a]=255&e;--a>=0&&(o*=256);)e<0&&0===s&&0!==this[t+a+1]&&(s=1),this[t+a]=(e/o>>0)-s&255;return t+n},h.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},h.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},h.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},h.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},h.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||z(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},h.prototype.writeBigInt64LE=re((function(e){return j(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),h.prototype.writeBigInt64BE=re((function(e){return B(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),h.prototype.writeFloatLE=function(e,t,n){return H(this,e,t,!0,n)},h.prototype.writeFloatBE=function(e,t,n){return H(this,e,t,!1,n)},h.prototype.writeDoubleLE=function(e,t,n){return $(this,e,t,!0,n)},h.prototype.writeDoubleBE=function(e,t,n){return $(this,e,t,!1,n)},h.prototype.copy=function(e,t,n,r){if(!h.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"===typeof e)for(a=t;a=r+4;n-=3)t="_".concat(e.slice(n-3,n)).concat(t);return"".concat(e.slice(0,n)).concat(t)}function G(e,t,n,r,i,a){if(e>n||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat(8*(a+1)).concat(s):">= -(2".concat(s," ** ").concat(8*(a+1)-1).concat(s,") and < 2 ** ")+"".concat(8*(a+1)-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(n).concat(s),new V.ERR_OUT_OF_RANGE("value",o,e)}!function(e,t,n){Z(t,"offset"),void 0!==e[t]&&void 0!==e[t+n]||Y(t,e.length-(n+1))}(r,i,a)}function Z(e,t){if("number"!==typeof e)throw new V.ERR_INVALID_ARG_TYPE(t,"number",e)}function Y(e,t,n){if(Math.floor(e)!==e)throw Z(e,n),new V.ERR_OUT_OF_RANGE(n||"offset","an integer",e);if(t<0)throw new V.ERR_BUFFER_OUT_OF_BOUNDS;throw new V.ERR_OUT_OF_RANGE(n||"offset",">= ".concat(n?1:0," and <= ").concat(t),e)}W("ERR_BUFFER_OUT_OF_BOUNDS",(function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"}),RangeError),W("ERR_INVALID_ARG_TYPE",(function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(typeof t)}),TypeError),W("ERR_OUT_OF_RANGE",(function(e,t,n){var r='The value of "'.concat(e,'" is out of range.'),i=n;return Number.isInteger(n)&&Math.abs(n)>Math.pow(2,32)?i=q(String(n)):"bigint"===typeof n&&(i=String(n),(n>Math.pow(BigInt(2),BigInt(32))||n<-Math.pow(BigInt(2),BigInt(32)))&&(i=q(i)),i+="n"),r+=" It must be ".concat(t,". Received ").concat(i)}),RangeError);var K=/[^+/0-9A-Za-z-_]/g;function X(e,t){var n;t=t||1/0;for(var r=e.length,i=null,a=[],o=0;o55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(o+1===r){(t-=3)>-1&&a.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&a.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&a.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;a.push(n)}else if(n<2048){if((t-=2)<0)break;a.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;a.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return a}function J(e){return l.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(K,"")).length<2)return"";for(;e.length%4!==0;)e+="=";return e}(e))}function Q(e,t,n,r){var i;for(i=0;i=t.length||i>=e.length);++i)t[i+n]=e[i];return i}function ee(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function te(e){return e!==e}var ne=function(){for(var e="0123456789abcdef",t=new Array(256),n=0;n<16;++n)for(var r=16*n,i=0;i<16;++i)t[r+i]=e[n]+e[i];return t}();function re(e){return"undefined"===typeof BigInt?ie:e}function ie(){throw new Error("BigInt not supported")}},81694:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function i(){for(var e=[],t=0;tt&&(n=t,t=e,e=n),t-=e}return r*e}function l(e,t){var n,r=0;if(0===e)return t;if(0===t)return e;for(;0===(1&e)&&0===(1&t);)e>>>=1,t>>>=1,r++;for(;0===(1&e);)e>>>=1;for(;t;){for(;0===(1&t);)t>>>=1;e>t&&(n=t,t=e,e=n),t-=e}return e<1){if(n=e[0],t=e[1],!a(t))throw new TypeError("gcd()::invalid input argument. Accessor must be a function. Value: `"+t+"`.")}else n=e[0]}if((c=n.length)<2)return null;if(t){for(u=new Array(c),d=0;d1){if(n=e[0],t=e[1],!o(t))throw new TypeError("lcm()::invalid input argument. Accessor must be a function. Value: `"+t+"`.")}else n=e[0]}if((s=n.length)<2)return null;if(t){for(l=new Array(s),u=0;ur.length?e:r,l=e.length>r.length?r:e,c=s.indexOf(l);if(-1!=c)return o=[new t.Diff(1,s.substring(0,c)),new t.Diff(0,l),new t.Diff(1,s.substring(c+l.length))],e.length>r.length&&(o[0][0]=o[2][0]=n),o;if(1==l.length)return[new t.Diff(n,e),new t.Diff(1,r)];var u=this.diff_halfMatch_(e,r);if(u){var f=u[0],d=u[1],h=u[2],p=u[3],v=u[4],m=this.diff_main(f,h,i,a),g=this.diff_main(d,p,i,a);return m.concat([new t.Diff(0,v)],g)}return i&&e.length>100&&r.length>100?this.diff_lineMode_(e,r,a):this.diff_bisect_(e,r,a)},t.prototype.diff_lineMode_=function(e,r,i){var a=this.diff_linesToChars_(e,r);e=a.chars1,r=a.chars2;var o=a.lineArray,s=this.diff_main(e,r,!1,i);this.diff_charsToLines_(s,o),this.diff_cleanupSemantic(s),s.push(new t.Diff(0,""));for(var l=0,c=0,u=0,f="",d="";l=1&&u>=1){s.splice(l-c-u,c+u),l=l-c-u;for(var h=this.diff_main(f,d,!1,i),p=h.length-1;p>=0;p--)s.splice(l,0,h[p]);l+=h.length}u=0,c=0,f="",d=""}l++}return s.pop(),s},t.prototype.diff_bisect_=function(e,r,i){for(var a=e.length,o=r.length,s=Math.ceil((a+o)/2),l=s,c=2*s,u=new Array(c),f=new Array(c),d=0;di);b++){for(var x=-b+v;x<=b-m;x+=2){for(var w=l+x,_=(E=x==-b||x!=b&&u[w-1]a)m+=2;else if(_>o)v+=2;else if(p){if((T=l+h-x)>=0&&T=(S=a-f[T]))return this.diff_bisectSplit_(e,r,E,_,i)}}for(var k=-b+g;k<=b-y;k+=2){for(var S,T=l+k,A=(S=k==-b||k!=b&&f[T-1]a)y+=2;else if(A>o)g+=2;else if(!p){if((w=l+h-k)>=0&&w=(S=a-S))return this.diff_bisectSplit_(e,r,E,_,i)}}}}return[new t.Diff(n,e),new t.Diff(1,r)]},t.prototype.diff_bisectSplit_=function(e,t,n,r,i){var a=e.substring(0,n),o=t.substring(0,r),s=e.substring(n),l=t.substring(r),c=this.diff_main(a,o,!1,i),u=this.diff_main(s,l,!1,i);return c.concat(u)},t.prototype.diff_linesToChars_=function(e,t){var n=[],r={};function i(e){for(var t="",i=0,o=-1,s=n.length;or?e=e.substring(n-r):nt.length?e:t,r=e.length>t.length?t:e;if(n.length<4||2*r.length=e.length?[r,a,o,s,u]:null}var o,s,l,c,u,f=a(n,r,Math.ceil(n.length/4)),d=a(n,r,Math.ceil(n.length/2));return f||d?(o=d?f&&f[4].length>d[4].length?f:d:f,e.length>t.length?(s=o[0],l=o[1],c=o[2],u=o[3]):(c=o[0],u=o[1],s=o[2],l=o[3]),[s,l,c,u,o[4]]):null},t.prototype.diff_cleanupSemantic=function(e){for(var r=!1,i=[],a=0,o=null,s=0,l=0,c=0,u=0,f=0;s0?i[a-1]:-1,l=0,c=0,u=0,f=0,o=null,r=!0)),s++;for(r&&this.diff_cleanupMerge(e),this.diff_cleanupSemanticLossless(e),s=1;s=v?(p>=d.length/2||p>=h.length/2)&&(e.splice(s,0,new t.Diff(0,h.substring(0,p))),e[s-1][1]=d.substring(0,d.length-p),e[s+1][1]=h.substring(p),s++):(v>=d.length/2||v>=h.length/2)&&(e.splice(s,0,new t.Diff(0,d.substring(0,v))),e[s-1][0]=1,e[s-1][1]=h.substring(0,h.length-v),e[s+1][0]=n,e[s+1][1]=d.substring(v),s++),s++}s++}},t.prototype.diff_cleanupSemanticLossless=function(e){function n(e,n){if(!e||!n)return 6;var r=e.charAt(e.length-1),i=n.charAt(0),a=r.match(t.nonAlphaNumericRegex_),o=i.match(t.nonAlphaNumericRegex_),s=a&&r.match(t.whitespaceRegex_),l=o&&i.match(t.whitespaceRegex_),c=s&&r.match(t.linebreakRegex_),u=l&&i.match(t.linebreakRegex_),f=c&&e.match(t.blanklineEndRegex_),d=u&&n.match(t.blanklineStartRegex_);return f||d?5:c||u?4:a&&!s&&l?3:s||l?2:a||o?1:0}for(var r=1;r=d&&(d=h,c=i,u=a,f=o)}e[r-1][1]!=c&&(c?e[r-1][1]=c:(e.splice(r-1,1),r--),e[r][1]=u,f?e[r+1][1]=f:(e.splice(r+1,1),r--))}r++}},t.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/,t.whitespaceRegex_=/\s/,t.linebreakRegex_=/[\r\n]/,t.blanklineEndRegex_=/\n\r?\n$/,t.blanklineStartRegex_=/^\r?\n\r?\n/,t.prototype.diff_cleanupEfficiency=function(e){for(var r=!1,i=[],a=0,o=null,s=0,l=!1,c=!1,u=!1,f=!1;s0?i[a-1]:-1,u=f=!1),r=!0)),s++;r&&this.diff_cleanupMerge(e)},t.prototype.diff_cleanupMerge=function(e){e.push(new t.Diff(0,""));for(var r,i=0,a=0,o=0,s="",l="";i1?(0!==a&&0!==o&&(0!==(r=this.diff_commonPrefix(l,s))&&(i-a-o>0&&0==e[i-a-o-1][0]?e[i-a-o-1][1]+=l.substring(0,r):(e.splice(0,0,new t.Diff(0,l.substring(0,r))),i++),l=l.substring(r),s=s.substring(r)),0!==(r=this.diff_commonSuffix(l,s))&&(e[i][1]=l.substring(l.length-r)+e[i][1],l=l.substring(0,l.length-r),s=s.substring(0,s.length-r))),i-=a+o,e.splice(i,a+o),s.length&&(e.splice(i,0,new t.Diff(n,s)),i++),l.length&&(e.splice(i,0,new t.Diff(1,l)),i++),i++):0!==i&&0==e[i-1][0]?(e[i-1][1]+=e[i][1],e.splice(i,1)):i++,o=0,a=0,s="",l=""}""===e[e.length-1][1]&&e.pop();var c=!1;for(i=1;it));r++)o=i,s=a;return e.length!=r&&e[r][0]===n?s:s+(t-o)},t.prototype.diff_prettyHtml=function(e){for(var t=[],r=/&/g,i=//g,o=/\n/g,s=0;s");switch(l){case 1:t[s]=''+c+"";break;case n:t[s]=''+c+"";break;case 0:t[s]=""+c+""}}return t.join("")},t.prototype.diff_text1=function(e){for(var t=[],n=0;nthis.Match_MaxBits)throw new Error("Pattern too long for this browser.");var r=this.match_alphabet_(t),i=this;function a(e,r){var a=e/t.length,o=Math.abs(n-r);return i.Match_Distance?a+o/i.Match_Distance:o?1:a}var o=this.Match_Threshold,s=e.indexOf(t,n);-1!=s&&(o=Math.min(a(0,s),o),-1!=(s=e.lastIndexOf(t,n+t.length))&&(o=Math.min(a(0,s),o)));var l,c,u=1<=p;g--){var y=r[e.charAt(g-1)];if(m[g]=0===h?(m[g+1]<<1|1)&y:(m[g+1]<<1|1)&y|(f[g+1]|f[g])<<1|1|f[g+1],m[g]&u){var b=a(h,g-1);if(b<=o){if(o=b,!((s=g-1)>n))break;p=Math.max(1,2*n-s)}}}if(a(h+1,n)>o)break;f=m}return s},t.prototype.match_alphabet_=function(e){for(var t={},n=0;n2&&(this.diff_cleanupSemantic(o),this.diff_cleanupEfficiency(o));else if(e&&"object"==typeof e&&"undefined"==typeof r&&"undefined"==typeof i)o=e,a=this.diff_text1(o);else if("string"==typeof e&&r&&"object"==typeof r&&"undefined"==typeof i)a=e,o=r;else{if("string"!=typeof e||"string"!=typeof r||!i||"object"!=typeof i)throw new Error("Unknown call format to patch_make.");a=e,o=i}if(0===o.length)return[];for(var s=[],l=new t.patch_obj,c=0,u=0,f=0,d=a,h=a,p=0;p=2*this.Patch_Margin&&c&&(this.patch_addContext_(l,d),s.push(l),l=new t.patch_obj,c=0,d=h,u=f)}1!==v&&(u+=m.length),v!==n&&(f+=m.length)}return c&&(this.patch_addContext_(l,d),s.push(l)),s},t.prototype.patch_deepCopy=function(e){for(var n=[],r=0;rthis.Match_MaxBits?-1!=(s=this.match_main(t,u.substring(0,this.Match_MaxBits),c))&&(-1==(f=this.match_main(t,u.substring(u.length-this.Match_MaxBits),c+u.length-this.Match_MaxBits))||s>=f)&&(s=-1):s=this.match_main(t,u,c),-1==s)a[o]=!1,i-=e[o].length2-e[o].length1;else if(a[o]=!0,i=s-c,u==(l=-1==f?t.substring(s,s+u.length):t.substring(s,f+this.Match_MaxBits)))t=t.substring(0,s)+this.diff_text2(e[o].diffs)+t.substring(s+u.length);else{var d=this.diff_main(u,l,!1);if(u.length>this.Match_MaxBits&&this.diff_levenshtein(d)/u.length>this.Patch_DeleteThreshold)a[o]=!1;else{this.diff_cleanupSemanticLossless(d);for(var h,p=0,v=0;vo[0][1].length){var s=n-o[0][1].length;o[0][1]=r.substring(o[0][1].length)+o[0][1],a.start1-=s,a.start2-=s,a.length1+=s,a.length2+=s}if(0==(o=(a=e[e.length-1]).diffs).length||0!=o[o.length-1][0])o.push(new t.Diff(0,r)),a.length1+=n,a.length2+=n;else if(n>o[o.length-1][1].length){s=n-o[o.length-1][1].length;o[o.length-1][1]+=r.substring(0,s),a.length1+=s,a.length2+=s}return r},t.prototype.patch_splitMax=function(e){for(var r=this.Match_MaxBits,i=0;i2*r?(c.length1+=d.length,o+=d.length,u=!1,c.diffs.push(new t.Diff(f,d)),a.diffs.shift()):(d=d.substring(0,r-c.length1-this.Patch_Margin),c.length1+=d.length,o+=d.length,0===f?(c.length2+=d.length,s+=d.length):u=!1,c.diffs.push(new t.Diff(f,d)),d==a.diffs[0][1]?a.diffs.shift():a.diffs[0][1]=a.diffs[0][1].substring(d.length))}l=(l=this.diff_text2(c.diffs)).substring(l.length-this.Patch_Margin);var h=this.diff_text1(a.diffs).substring(0,this.Patch_Margin);""!==h&&(c.length1+=h.length,c.length2+=h.length,0!==c.diffs.length&&0===c.diffs[c.diffs.length-1][0]?c.diffs[c.diffs.length-1][1]+=h:c.diffs.push(new t.Diff(0,h))),u||e.splice(++i,0,c)}}},t.prototype.patch_toText=function(e){for(var t=[],n=0;n>1,u=-7,f=n?i-1:0,d=n?-1:1,h=e[t+f];for(f+=d,a=h&(1<<-u)-1,h>>=-u,u+=s;u>0;a=256*a+e[t+f],f+=d,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=r;u>0;o=256*o+e[t+f],f+=d,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(h?-1:1);o+=Math.pow(2,r),a-=c}return(h?-1:1)*o*Math.pow(2,a-r)},t.write=function(e,t,n,r,i,a){var o,s,l,c=8*a-i-1,u=(1<>1,d=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:a-1,p=r?1:-1,v=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,o=u):(o=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-o))<1&&(o--,l*=2),(t+=o+f>=1?d/l:d*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(t*l-1)*Math.pow(2,i),o+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;e[n+h]=255&s,h+=p,s/=256,i-=8);for(o=o<0;e[n+h]=255&o,h+=p,o/=256,c-=8);e[n+h-p]|=128*v}},42553:function(e,t,n){var r=n(18111),i=n(64286),a=n(72064),o=n(86742),s=n(66933),l=n(55366),c=n(93977),u=n(65127),f=function(e){return Array.isArray(e)?e:[e]},d=function(e){return void 0===e},h=function(e){return c(e)||Array.isArray(e)?Object.keys(e):[]},p=function(e,t){return e.hasOwnProperty(t)},v=function(e){return i(a(e))},m=function(e){return d(e)||Array.isArray(e)&&0===e.length},g=function(e,t,n,r){return t&&p(t,n)&&e&&p(e,n)&&r(e[n],t[n])},y=function(e,t){return d(e)&&0===t||d(t)&&0===e||r(e,t)},b=function(e){return d(e)||r(e,{})||!0===e},x=function(e){return d(e)||r(e,{})},w=function(e){return d(e)||c(e)||!0===e||!1===e};function _(e,t){return!(!m(e)||!m(t))||r(v(e),v(t))}function k(e,t,n,i){var o=a(h(e).concat(h(t)));return!(!x(e)||!x(t))||(!x(e)||!h(t).length)&&((!x(t)||!h(e).length)&&o.every((function(n){var a=e[n],o=t[n];return Array.isArray(a)&&Array.isArray(o)?r(v(e),v(t)):!(Array.isArray(a)&&!Array.isArray(o))&&(!(Array.isArray(o)&&!Array.isArray(a))&&g(e,t,n,i))})))}function S(e,t,n,r){var i=o(e,r),a=o(t,r);return l(i,a,r).length===Math.max(i.length,a.length)}var T={title:r,uniqueItems:function(e,t){return d(e)&&!1===t||d(t)&&!1===e||r(e,t)},minLength:y,minItems:y,minProperties:y,required:_,enum:_,type:function(e,t){return e=f(e),t=f(t),r(v(e),v(t))},items:function(e,t,n,i){return c(e)&&c(t)?i(e,t):Array.isArray(e)&&Array.isArray(t)?k(e,t,0,i):r(e,t)},anyOf:S,allOf:S,oneOf:S,properties:k,patternProperties:k,dependencies:k},A=["properties","patternProperties","dependencies","uniqueItems","minLength","minItems","minProperties","required"],E=["additionalProperties","additionalItems","contains","propertyNames","not"];e.exports=function e(t,n,i){if(i=s(i,{ignore:[]}),b(t)&&b(n))return!0;if(!w(t)||!w(n))throw new Error("Either of the values are not a JSON schema.");if(t===n)return!0;if(u(t)&&u(n))return t===n;if(void 0===t&&!1===n||void 0===n&&!1===t)return!1;if(d(t)&&!d(n)||!d(t)&&d(n))return!1;var o=a(Object.keys(t).concat(Object.keys(n)));if(i.ignore.length&&(o=o.filter((function(e){return-1===i.ignore.indexOf(e)}))),!o.length)return!0;function l(t,n){return e(t,n,i)}return o.every((function(a){var o=t[a],s=n[a];if(-1!==E.indexOf(a))return e(o,s,i);var c=T[a];if(c||(c=r),r(o,s))return!0;if(-1===A.indexOf(a)&&(!p(t,a)&&p(n,a)||p(t,a)&&!p(n,a)))return o===s;var f=c(o,s,a,l);if(!u(f))throw new Error("Comparer must return true or false");return f}))}},82920:function(e,t,n){var r=n(25506),i=n(93613),a=n(93977),o=n(72064),s=n(86742),l=n(41761);var c=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},u=function(e){return a(e)||Array.isArray(e)?Object.keys(e):[]},f=function(e){return!u(e).length&&!1!==e&&!0!==e};e.exports={allUniqueKeys:function(e){return o(i(e.map(u)))},deleteUndefinedProps:function(e){for(var t in e)c(e,t)&&f(e[t])&&delete e[t];return e},getValues:function(e,t){return e.map((function(e){return e&&e[t]}))},has:c,isEmptySchema:f,isSchema:function(e){return a(e)||!0===e||!1===e},keys:u,notUndefined:function(e){return void 0!==e},uniqWith:s,withoutArr:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),i=1;i1)return w(n)}},dependencies:function(e,t,n){return L(e).reduce((function(t,r){var i=N(e,r),a=_(i.filter(P),g),o=a.filter(Array.isArray);if(o.length){if(o.length===a.length)t[r]=O(a);else{var s=a.filter(A),l=o.map(U);t[r]=n(s.concat(l),r)}return t}return a=_(a,u),t[r]=n(a,r),t}),{})},oneOf:function(e,t,n){var r=function(e,t){return e.map((function(e,n){try{return t(e,n)}catch(r){return}})).filter(P)}(j(c(e)),n),i=_(r,u);if(i.length)return i},not:function(e){return{anyOf:e}},pattern:function(e){return e.map((function(e){return"(?="+e+")"})).join("")},multipleOf:function(e){for(var t=e.slice(0),n=1;t.some((function(e){return!Number.isInteger(e)}));)t=t.map((function(e){return 10*e})),n*=10;return f(t)/n},enum:function(e){var t=m.apply(null,e.concat(g));if(t.length)return x(t)}};W.$id=I,W.$ref=I,W.$schema=I,W.additionalItems=M,W.additionalProperties=M,W.anyOf=W.oneOf,W.contains=M,W.default=I,W.definitions=W.dependencies,W.description=I,W.examples=function(e){return _(h(e),g)},W.exclusiveMaximum=D,W.exclusiveMinimum=R,W.items=S,W.maximum=D,W.maxItems=D,W.maxLength=D,W.maxProperties=D,W.minimum=R,W.minItems=R,W.minLength=R,W.minProperties=R,W.properties=k,W.propertyNames=M,W.required=function(e){return O(e)},W.title=I,W.uniqueItems=function(e){return e.some(C)};var q={properties:k,items:S};function G(e,t,n){n=n||[],t=d(t,{ignoreAdditionalProperties:!1,resolvers:W,complexResolvers:q,deep:!0});var a=Object.entries(t.complexResolvers);var o=function e(o,l,f){o=c(o.filter(P)),f=f||[];var d=y(l)?l:{};if(o.length){if(o.some(E))return!1;if(o.every(C))return!0;o=o.filter(y);var h=L(o);if(t.deep&&T(h,"allOf"))return G({allOf:o},t,n);var p=a.map((function(e){var t=r(e,2),n=(t[0],t[1]);return h.filter((function(e){return n.keywords.includes(e)}))}));return p.forEach((function(e){return b(h,e)})),h.forEach((function(n){var r=N(o,n),i=_(r.filter(P),function(e){return function(t,n){return u(s({},e,t),s({},e,n))}}(n));if(1===i.length&&T($,n))d[n]=i[0].map((function(t){return e([t],t)}));else if(1!==i.length||T(H,n)||T(V,n)){var a=t.resolvers[n]||t.resolvers.defaultResolver;if(!a)throw new Error("No resolver found for key "+n+". You can provide a resolver for this keyword in the options, or provide a default resolver.");d[n]=a(i,f.concat(n),(function(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return e(t,null,f.concat(n,r))}),t),void 0===d[n]?B(i,f.concat(n)):void 0===d[n]&&delete d[n]}else d[n]=i[0]})),a.reduce((function(n,a,l){var c=r(a,2),d=c[0];c[1];return i(i({},n),function(e,t,n,r,a,o){if(e.length){var l=a.complexResolvers[t];if(!l||!l.resolver)throw new Error("No resolver found for "+t);var c=n.map((function(t){return e.reduce((function(e,n){return void 0!==t[n]&&(e[n]=t[n]),e}),{})})),f=_(c,u),d=l.keywords.reduce((function(e,t){return i(i({},e),{},s({},t,(function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return r(e,null,o.concat(t,n))})))}),{}),h=l.resolver(f,o.concat(t),d,a);return y(h)||B(f,o.concat(t)),h}}(p[l],d,o,e,t,f))}),d)}}(p(F(e)));return o}G.options={resolvers:W},e.exports=G},37204:function(e){"use strict";var t=e.exports=function(e,t,r){"function"==typeof t&&(r=t,t={}),n(t,"function"==typeof(r=t.cb||r)?r:r.pre||function(){},r.post||function(){},e,"",e)};function n(e,r,i,a,o,s,l,c,u,f){if(a&&"object"==typeof a&&!Array.isArray(a)){for(var d in r(a,o,s,l,c,u,f),a){var h=a[d];if(Array.isArray(h)){if(d in t.arrayKeywords)for(var p=0;pa,"undefined"===typeof e[r]&&(Array.isArray(e)&&"-"===r&&(r=e.length),i&&(""!==t[a]&&t[a]<1/0||"-"===t[a]?e[r]=[]:e[r]={})),!i)break;e=e[r]}var l=e[r];return void 0===n?delete e[r]:e[r]=n,l}(e,t,n)}t.get=c,t.set=u,t.compile=function(e){var t=l(e);return{get:function(e){return c(e,t)},set:function(e,n){return u(e,t,n)}}}},46927:function(e,t,n){"use strict";function r(e){return Array.prototype.slice.call(arguments,1).forEach((function(t){t&&Object.keys(t).forEach((function(n){e[n]=t[n]}))})),e}function i(e){return Object.prototype.toString.call(e)}function a(e){return"[object Function]"===i(e)}function o(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}var s={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};var l={"http:":{validate:function(e,t,n){var r=e.slice(t);return n.re.http||(n.re.http=new RegExp("^\\/\\/"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,"i")),n.re.http.test(r)?r.match(n.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,n){var r=e.slice(t);return n.re.no_http||(n.re.no_http=new RegExp("^"+n.re.src_auth+"(?:localhost|(?:(?:"+n.re.src_domain+")\\.)+"+n.re.src_domain_root+")"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,"i")),n.re.no_http.test(r)?t>=3&&":"===e[t-3]||t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},c="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",u="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|\u0440\u0444".split("|");function f(e){var t=e.re=n(81875)(e.__opts__),r=e.__tlds__.slice();function s(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||r.push(c),r.push(t.src_xn),t.src_tlds=r.join("|"),t.email_fuzzy=RegExp(s(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(s(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(s(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(s(t.tpl_host_fuzzy_test),"i");var l=[];function u(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(t){var n=e.__schemas__[t];if(null!==n){var r={validate:null,link:null};if(e.__compiled__[t]=r,"[object Object]"===i(n))return!function(e){return"[object RegExp]"===i(e)}(n.validate)?a(n.validate)?r.validate=n.validate:u(t,n):r.validate=function(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}(n.validate),void(a(n.normalize)?r.normalize=n.normalize:n.normalize?u(t,n):r.normalize=function(e,t){t.normalize(e)});!function(e){return"[object String]"===i(e)}(n)?u(t,n):l.push(t)}})),l.forEach((function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,t){t.normalize(e)}};var f=Object.keys(e.__compiled__).filter((function(t){return t.length>0&&e.__compiled__[t]})).map(o).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><\uff5c]|"+t.src_ZPCc+"))("+f+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><\uff5c]|"+t.src_ZPCc+"))("+f+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function d(e,t){var n=e.__index__,r=e.__last_index__,i=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=i,this.text=i,this.url=i}function h(e,t){var n=new d(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function p(e,t){if(!(this instanceof p))return new p(e,t);var n;t||(n=e,Object.keys(n||{}).reduce((function(e,t){return e||s.hasOwnProperty(t)}),!1)&&(t=e,e={})),this.__opts__=r({},s,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=r({},l,e),this.__compiled__={},this.__tlds__=u,this.__tlds_replaced__=!1,this.re={},f(this)}p.prototype.add=function(e,t){return this.__schemas__[e]=t,f(this),this},p.prototype.set=function(e){return this.__opts__=r(this.__opts__,e),this},p.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,n,r,i,a,o,s,l;if(this.re.schema_test.test(e))for((s=this.re.schema_search).lastIndex=0;null!==(t=s.exec(e));)if(i=this.testSchemaAt(e,t[2],s.lastIndex)){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+i;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l=0&&null!==(r=e.match(this.re.email_fuzzy))&&(a=r.index+r[1].length,o=r.index+r[0].length,(this.__index__<0||athis.__last_index__)&&(this.__schema__="mailto:",this.__index__=a,this.__last_index__=o)),this.__index__>=0},p.prototype.pretest=function(e){return this.re.pretest.test(e)},p.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},p.prototype.match=function(e){var t=0,n=[];this.__index__>=0&&this.__text_cache__===e&&(n.push(h(this,t)),t=this.__last_index__);for(var r=t?e.slice(t):e;this.test(r);)n.push(h(this,t)),r=r.slice(this.__last_index__),t+=this.__last_index__;return n.length?n:null},p.prototype.matchAtStart=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return null;var t=this.re.schema_at_start.exec(e);if(!t)return null;var n=this.testSchemaAt(e,t[2],t[0].length);return n?(this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+n,h(this,0)):null},p.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,t,n){return e!==n[t-1]})).reverse(),f(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,f(this),this)},p.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},p.prototype.onCompile=function(){},e.exports=p},81875:function(e,t,n){"use strict";e.exports=function(e){var t={};e=e||{},t.src_Any=n(65510).source,t.src_Cc=n(70538).source,t.src_Z=n(92426).source,t.src_P=n(13741).source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");var r="[><\uff5c]";return t.src_pseudo_letter="(?:(?![><\uff5c]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><\uff5c]|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+r+"|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><\uff5c]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|"+t.src_ZPCc+"))((?![$+<=>^`|\uff5c])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`|\uff5c]|"+t.src_ZPCc+"))((?![$+<=>^`|\uff5c])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}},48929:function(e,t,n){var r="__lodash_hash_undefined__",i=1/0,a="[object Function]",o="[object GeneratorFunction]",s="[object Symbol]",l=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,c=/^\w*$/,u=/^\./,f=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,d=/\\(\\)?/g,h=/^\[object .+?Constructor\]$/,p="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,v="object"==typeof self&&self&&self.Object===Object&&self,m=p||v||Function("return this")();var g=Array.prototype,y=Function.prototype,b=Object.prototype,x=m["__core-js_shared__"],w=function(){var e=/[^.]+$/.exec(x&&x.keys&&x.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),_=y.toString,k=b.hasOwnProperty,S=b.toString,T=RegExp("^"+_.call(k).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),A=m.Symbol,E=g.splice,C=j(m,"Map"),M=j(Object,"create"),O=A?A.prototype:void 0,P=O?O.toString:void 0;function L(e){var t=-1,n=e?e.length:0;for(this.clear();++t-1},I.prototype.set=function(e,t){var n=this.__data__,r=D(n,e);return r<0?n.push([e,t]):n[r][1]=t,this},R.prototype.clear=function(){this.__data__={hash:new L,map:new(C||I),string:new L}},R.prototype.delete=function(e){return z(this,e).delete(e)},R.prototype.get=function(e){return z(this,e).get(e)},R.prototype.has=function(e){return z(this,e).has(e)},R.prototype.set=function(e,t){return z(this,e).set(e,t),this};var B=H((function(e){var t;e=null==(t=e)?"":function(e){if("string"==typeof e)return e;if(W(e))return P?P.call(e):"";var t=e+"";return"0"==t&&1/e==-i?"-0":t}(t);var n=[];return u.test(e)&&n.push(""),e.replace(f,(function(e,t,r,i){n.push(r?i.replace(d,"$1"):t||e)})),n}));function U(e){if("string"==typeof e||W(e))return e;var t=e+"";return"0"==t&&1/e==-i?"-0":t}function H(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],a=n.cache;if(a.has(i))return a.get(i);var o=e.apply(this,r);return n.cache=a.set(i,o),o};return n.cache=new(H.Cache||R),n}H.Cache=R;var $=Array.isArray;function V(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function W(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&S.call(e)==s}e.exports=function(e,t,n){var r=null==e?void 0:F(e,t);return void 0===r?n:r}},32467:function(e,t,n){e=n.nmd(e);var r="__lodash_hash_undefined__",i=1,a=2,o=9007199254740991,s="[object Arguments]",l="[object Array]",c="[object AsyncFunction]",u="[object Boolean]",f="[object Date]",d="[object Error]",h="[object Function]",p="[object GeneratorFunction]",v="[object Map]",m="[object Number]",g="[object Null]",y="[object Object]",b="[object Promise]",x="[object Proxy]",w="[object RegExp]",_="[object Set]",k="[object String]",S="[object Symbol]",T="[object Undefined]",A="[object WeakMap]",E="[object ArrayBuffer]",C="[object DataView]",M=/^\[object .+?Constructor\]$/,O=/^(?:0|[1-9]\d*)$/,P={};P["[object Float32Array]"]=P["[object Float64Array]"]=P["[object Int8Array]"]=P["[object Int16Array]"]=P["[object Int32Array]"]=P["[object Uint8Array]"]=P["[object Uint8ClampedArray]"]=P["[object Uint16Array]"]=P["[object Uint32Array]"]=!0,P[s]=P[l]=P[E]=P[u]=P[C]=P[f]=P[d]=P[h]=P[v]=P[m]=P[y]=P[w]=P[_]=P[k]=P[A]=!1;var L="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,I="object"==typeof self&&self&&self.Object===Object&&self,R=L||I||Function("return this")(),D=t&&!t.nodeType&&t,F=D&&e&&!e.nodeType&&e,N=F&&F.exports===D,z=N&&L.process,j=function(){try{return z&&z.binding&&z.binding("util")}catch(e){}}(),B=j&&j.isTypedArray;function U(e,t){for(var n=-1,r=null==e?0:e.length;++nc))return!1;var f=s.get(e);if(f&&s.get(t))return f==t;var d=-1,h=!0,p=n&a?new Ae:void 0;for(s.set(e,t),s.set(t,e);++d-1},Se.prototype.set=function(e,t){var n=this.__data__,r=Me(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Te.prototype.clear=function(){this.size=0,this.__data__={hash:new ke,map:new(fe||Se),string:new ke}},Te.prototype.delete=function(e){var t=Ne(this,e).delete(e);return this.size-=t?1:0,t},Te.prototype.get=function(e){return Ne(this,e).get(e)},Te.prototype.has=function(e){return Ne(this,e).has(e)},Te.prototype.set=function(e,t){var n=Ne(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Ae.prototype.add=Ae.prototype.push=function(e){return this.__data__.set(e,r),this},Ae.prototype.has=function(e){return this.__data__.has(e)},Ee.prototype.clear=function(){this.__data__=new Se,this.size=0},Ee.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Ee.prototype.get=function(e){return this.__data__.get(e)},Ee.prototype.has=function(e){return this.__data__.has(e)},Ee.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Se){var r=n.__data__;if(!fe||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Te(r)}return n.set(e,t),this.size=n.size,this};var je=se?function(e){return null==e?[]:(e=Object(e),function(e,t){for(var n=-1,r=null==e?0:e.length,i=0,a=[];++n-1&&e%1==0&&e-1&&e%1==0&&e<=o}function Ye(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Ke(e){return null!=e&&"object"==typeof e}var Xe=B?function(e){return function(t){return e(t)}}(B):function(e){return Ke(e)&&Ze(e.length)&&!!P[Oe(e)]};function Je(e){return null!=(t=e)&&Ze(t.length)&&!Ge(t)?Ce(e):Re(e);var t}e.exports=function(e,t){return Le(e,t)}},50908:function(e,t,n){var r=n(68136)(n(97009),"DataView");e.exports=r},29676:function(e,t,n){var r=n(85403),i=n(62747),a=n(16037),o=n(94154),s=n(77728);function l(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t-1}},32683:function(e){e.exports=function(e,t,n){for(var r=-1,i=null==e?0:e.length;++r=200&&(f=l,d=!1,t=new r(t));e:for(;++u0&&a(u)?n>1?e(u,n-1,a,o,s):r(s,u):o||(s[s.length]=u)}return s}},85099:function(e,t,n){var r=n(30372)();e.exports=r},15358:function(e,t,n){var r=n(85099),i=n(12742);e.exports=function(e,t){return e&&r(e,t,i)}},98667:function(e,t,n){var r=n(43082),i=n(69793);e.exports=function(e,t){for(var n=0,a=(t=r(t,e)).length;null!=e&&n=120&&g.length>=120)?new r(h&&g):void 0}g=e[0];var y=-1,b=p[0];e:for(;++y-1;)h!==e&&l.call(h,p,1),l.call(e,p,1);return e}},10750:function(e){e.exports=function(e,t,n,r,i){return i(e,(function(e,i,a){n=r?(r=!1,e):t(n,e,i,a)})),n}},58794:function(e,t,n){var r=n(2100),i=n(64262),a=n(79156);e.exports=function(e,t){return a(i(e,t,r),e+"")}},40379:function(e,t,n){var r=n(18463),i=n(43082),a=n(26800),o=n(8092),s=n(69793);e.exports=function(e,t,n,l){if(!o(e))return e;for(var c=-1,u=(t=i(t,e)).length,f=u-1,d=e;null!=d&&++ci?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var a=Array(i);++r=200){var v=t?null:s(e);if(v)return l(v);d=!1,u=o,p=new r}else p=t?[]:h;e:for(;++ct||o&&s&&c&&!l&&!u||i&&s&&c||!n&&c||!a)return 1;if(!i&&!o&&!u&&e=l?c:c*("desc"==n[i]?-1:1)}return e.index-t.index}},10291:function(e){e.exports=function(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n1?n[a-1]:void 0,s=a>2?n[2]:void 0;for(o=e.length>3&&"function"==typeof o?(a--,o):void 0,s&&i(n[0],n[1],s)&&(o=a<3?void 0:o,a=1),t=Object(t);++ru))return!1;var d=l.get(e),h=l.get(t);if(d&&h)return d==t&&h==e;var p=-1,v=!0,m=2&n?new r:void 0;for(l.set(e,t),l.set(t,e);++p-1&&e%1==0&&e-1}},87109:function(e,t,n){var r=n(27112);e.exports=function(e,t){var n=this.__data__,i=r(n,e);return i<0?(++this.size,n.push([e,t])):n[i][1]=t,this}},34086:function(e,t,n){var r=n(29676),i=n(38384),a=n(95797);e.exports=function(){this.size=0,this.__data__={hash:new r,map:new(a||i),string:new r}}},9255:function(e,t,n){var r=n(32799);e.exports=function(e){var t=r(this,e).delete(e);return this.size-=t?1:0,t}},29186:function(e,t,n){var r=n(32799);e.exports=function(e){return r(this,e).get(e)}},13423:function(e,t,n){var r=n(32799);e.exports=function(e){return r(this,e).has(e)}},73739:function(e,t,n){var r=n(32799);e.exports=function(e,t){var n=r(this,e),i=n.size;return n.set(e,t),this.size+=n.size==i?0:1,this}},90234:function(e){e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}},50284:function(e){e.exports=function(e,t){return function(n){return null!=n&&(n[e]===t&&(void 0!==t||e in Object(n)))}}},14634:function(e,t,n){var r=n(49151);e.exports=function(e){var t=r(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}},49620:function(e,t,n){var r=n(68136)(Object,"create");e.exports=r},75964:function(e,t,n){var r=n(12709)(Object.keys,Object);e.exports=r},4221:function(e){e.exports=function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}},49494:function(e,t,n){e=n.nmd(e);var r=n(31032),i=t&&!t.nodeType&&t,a=i&&e&&!e.nodeType&&e,o=a&&a.exports===i&&r.process,s=function(){try{var e=a&&a.require&&a.require("util").types;return e||o&&o.binding&&o.binding("util")}catch(t){}}();e.exports=s},43581:function(e){var t=Object.prototype.toString;e.exports=function(e){return t.call(e)}},12709:function(e){e.exports=function(e,t){return function(n){return e(t(n))}}},64262:function(e,t,n){var r=n(13665),i=Math.max;e.exports=function(e,t,n){return t=i(void 0===t?e.length-1:t,0),function(){for(var a=arguments,o=-1,s=i(a.length-t,0),l=Array(s);++o0){if(++n>=800)return arguments[0]}else n=0;return e.apply(void 0,arguments)}}},20511:function(e,t,n){var r=n(38384);e.exports=function(){this.__data__=new r,this.size=0}},50835:function(e){e.exports=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}},90707:function(e){e.exports=function(e){return this.__data__.get(e)}},18832:function(e){e.exports=function(e){return this.__data__.has(e)}},35077:function(e,t,n){var r=n(38384),i=n(95797),a=n(78059);e.exports=function(e,t){var n=this.__data__;if(n instanceof r){var o=n.__data__;if(!i||o.length<199)return o.push([e,t]),this.size=++n.size,this;n=this.__data__=new a(o)}return n.set(e,t),this.size=n.size,this}},77167:function(e){e.exports=function(e,t,n){for(var r=n-1,i=e.length;++r2?t[2]:void 0;for(c&&a(t[0],t[1],c)&&(r=1);++n-1&&e%1==0&&e<=9007199254740991}},60103:function(e,t,n){var r=n(53085),i=n(16194),a=n(49494),o=a&&a.isMap,s=o?i(o):r;e.exports=s},8092:function(e){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},43141:function(e){e.exports=function(e){return null!=e&&"object"==typeof e}},93977:function(e,t,n){var r=n(39066),i=n(31137),a=n(43141),o=Function.prototype,s=Object.prototype,l=o.toString,c=s.hasOwnProperty,u=l.call(Object);e.exports=function(e){if(!a(e)||"[object Object]"!=r(e))return!1;var t=i(e);if(null===t)return!0;var n=c.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&l.call(n)==u}},36995:function(e,t,n){var r=n(48680),i=n(16194),a=n(49494),o=a&&a.isSet,s=o?i(o):r;e.exports=s},26769:function(e,t,n){var r=n(39066),i=n(93629),a=n(43141);e.exports=function(e){return"string"==typeof e||!i(e)&&a(e)&&"[object String]"==r(e)}},70152:function(e,t,n){var r=n(39066),i=n(43141);e.exports=function(e){return"symbol"==typeof e||i(e)&&"[object Symbol]"==r(e)}},19102:function(e,t,n){var r=n(68150),i=n(16194),a=n(49494),o=a&&a.isTypedArray,s=o?i(o):r;e.exports=s},12742:function(e,t,n){var r=n(47538),i=n(43654),a=n(21473);e.exports=function(e){return a(e)?r(e):i(e)}},73961:function(e,t,n){var r=n(47538),i=n(8664),a=n(21473);e.exports=function(e){return a(e)?r(e,!0):i(e)}},15727:function(e){e.exports=function(e){var t=null==e?0:e.length;return t?e[t-1]:void 0}},763:function(e,t,n){var r;e=n.nmd(e),function(){var i,a="Expected a function",o="__lodash_hash_undefined__",s="__lodash_placeholder__",l=16,c=32,u=64,f=128,d=256,h=1/0,p=9007199254740991,v=NaN,m=4294967295,g=[["ary",f],["bind",1],["bindKey",2],["curry",8],["curryRight",l],["flip",512],["partial",c],["partialRight",u],["rearg",d]],y="[object Arguments]",b="[object Array]",x="[object Boolean]",w="[object Date]",_="[object Error]",k="[object Function]",S="[object GeneratorFunction]",T="[object Map]",A="[object Number]",E="[object Object]",C="[object Promise]",M="[object RegExp]",O="[object Set]",P="[object String]",L="[object Symbol]",I="[object WeakMap]",R="[object ArrayBuffer]",D="[object DataView]",F="[object Float32Array]",N="[object Float64Array]",z="[object Int8Array]",j="[object Int16Array]",B="[object Int32Array]",U="[object Uint8Array]",H="[object Uint8ClampedArray]",$="[object Uint16Array]",V="[object Uint32Array]",W=/\b__p \+= '';/g,q=/\b(__p \+=) '' \+/g,G=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Z=/&(?:amp|lt|gt|quot|#39);/g,Y=/[&<>"']/g,K=RegExp(Z.source),X=RegExp(Y.source),J=/<%-([\s\S]+?)%>/g,Q=/<%([\s\S]+?)%>/g,ee=/<%=([\s\S]+?)%>/g,te=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ne=/^\w*$/,re=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ie=/[\\^$.*+?()[\]{}|]/g,ae=RegExp(ie.source),oe=/^\s+/,se=/\s/,le=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,ce=/\{\n\/\* \[wrapped with (.+)\] \*/,ue=/,? & /,fe=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,de=/[()=,{}\[\]\/\s]/,he=/\\(\\)?/g,pe=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,ve=/\w*$/,me=/^[-+]0x[0-9a-f]+$/i,ge=/^0b[01]+$/i,ye=/^\[object .+?Constructor\]$/,be=/^0o[0-7]+$/i,xe=/^(?:0|[1-9]\d*)$/,we=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,_e=/($^)/,ke=/['\n\r\u2028\u2029\\]/g,Se="\\ud800-\\udfff",Te="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Ae="\\u2700-\\u27bf",Ee="a-z\\xdf-\\xf6\\xf8-\\xff",Ce="A-Z\\xc0-\\xd6\\xd8-\\xde",Me="\\ufe0e\\ufe0f",Oe="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Pe="['\u2019]",Le="["+Se+"]",Ie="["+Oe+"]",Re="["+Te+"]",De="\\d+",Fe="["+Ae+"]",Ne="["+Ee+"]",ze="[^"+Se+Oe+De+Ae+Ee+Ce+"]",je="\\ud83c[\\udffb-\\udfff]",Be="[^"+Se+"]",Ue="(?:\\ud83c[\\udde6-\\uddff]){2}",He="[\\ud800-\\udbff][\\udc00-\\udfff]",$e="["+Ce+"]",Ve="\\u200d",We="(?:"+Ne+"|"+ze+")",qe="(?:"+$e+"|"+ze+")",Ge="(?:['\u2019](?:d|ll|m|re|s|t|ve))?",Ze="(?:['\u2019](?:D|LL|M|RE|S|T|VE))?",Ye="(?:"+Re+"|"+je+")"+"?",Ke="["+Me+"]?",Xe=Ke+Ye+("(?:"+Ve+"(?:"+[Be,Ue,He].join("|")+")"+Ke+Ye+")*"),Je="(?:"+[Fe,Ue,He].join("|")+")"+Xe,Qe="(?:"+[Be+Re+"?",Re,Ue,He,Le].join("|")+")",et=RegExp(Pe,"g"),tt=RegExp(Re,"g"),nt=RegExp(je+"(?="+je+")|"+Qe+Xe,"g"),rt=RegExp([$e+"?"+Ne+"+"+Ge+"(?="+[Ie,$e,"$"].join("|")+")",qe+"+"+Ze+"(?="+[Ie,$e+We,"$"].join("|")+")",$e+"?"+We+"+"+Ge,$e+"+"+Ze,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",De,Je].join("|"),"g"),it=RegExp("["+Ve+Se+Te+Me+"]"),at=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,ot=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],st=-1,lt={};lt[F]=lt[N]=lt[z]=lt[j]=lt[B]=lt[U]=lt[H]=lt[$]=lt[V]=!0,lt[y]=lt[b]=lt[R]=lt[x]=lt[D]=lt[w]=lt[_]=lt[k]=lt[T]=lt[A]=lt[E]=lt[M]=lt[O]=lt[P]=lt[I]=!1;var ct={};ct[y]=ct[b]=ct[R]=ct[D]=ct[x]=ct[w]=ct[F]=ct[N]=ct[z]=ct[j]=ct[B]=ct[T]=ct[A]=ct[E]=ct[M]=ct[O]=ct[P]=ct[L]=ct[U]=ct[H]=ct[$]=ct[V]=!0,ct[_]=ct[k]=ct[I]=!1;var ut={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},ft=parseFloat,dt=parseInt,ht="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,pt="object"==typeof self&&self&&self.Object===Object&&self,vt=ht||pt||Function("return this")(),mt=t&&!t.nodeType&&t,gt=mt&&e&&!e.nodeType&&e,yt=gt&>.exports===mt,bt=yt&&ht.process,xt=function(){try{var e=gt&>.require&>.require("util").types;return e||bt&&bt.binding&&bt.binding("util")}catch(t){}}(),wt=xt&&xt.isArrayBuffer,_t=xt&&xt.isDate,kt=xt&&xt.isMap,St=xt&&xt.isRegExp,Tt=xt&&xt.isSet,At=xt&&xt.isTypedArray;function Et(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function Ct(e,t,n,r){for(var i=-1,a=null==e?0:e.length;++i-1}function Rt(e,t,n){for(var r=-1,i=null==e?0:e.length;++r-1;);return n}function rn(e,t){for(var n=e.length;n--&&$t(t,e[n],0)>-1;);return n}var an=Zt({"\xc0":"A","\xc1":"A","\xc2":"A","\xc3":"A","\xc4":"A","\xc5":"A","\xe0":"a","\xe1":"a","\xe2":"a","\xe3":"a","\xe4":"a","\xe5":"a","\xc7":"C","\xe7":"c","\xd0":"D","\xf0":"d","\xc8":"E","\xc9":"E","\xca":"E","\xcb":"E","\xe8":"e","\xe9":"e","\xea":"e","\xeb":"e","\xcc":"I","\xcd":"I","\xce":"I","\xcf":"I","\xec":"i","\xed":"i","\xee":"i","\xef":"i","\xd1":"N","\xf1":"n","\xd2":"O","\xd3":"O","\xd4":"O","\xd5":"O","\xd6":"O","\xd8":"O","\xf2":"o","\xf3":"o","\xf4":"o","\xf5":"o","\xf6":"o","\xf8":"o","\xd9":"U","\xda":"U","\xdb":"U","\xdc":"U","\xf9":"u","\xfa":"u","\xfb":"u","\xfc":"u","\xdd":"Y","\xfd":"y","\xff":"y","\xc6":"Ae","\xe6":"ae","\xde":"Th","\xfe":"th","\xdf":"ss","\u0100":"A","\u0102":"A","\u0104":"A","\u0101":"a","\u0103":"a","\u0105":"a","\u0106":"C","\u0108":"C","\u010a":"C","\u010c":"C","\u0107":"c","\u0109":"c","\u010b":"c","\u010d":"c","\u010e":"D","\u0110":"D","\u010f":"d","\u0111":"d","\u0112":"E","\u0114":"E","\u0116":"E","\u0118":"E","\u011a":"E","\u0113":"e","\u0115":"e","\u0117":"e","\u0119":"e","\u011b":"e","\u011c":"G","\u011e":"G","\u0120":"G","\u0122":"G","\u011d":"g","\u011f":"g","\u0121":"g","\u0123":"g","\u0124":"H","\u0126":"H","\u0125":"h","\u0127":"h","\u0128":"I","\u012a":"I","\u012c":"I","\u012e":"I","\u0130":"I","\u0129":"i","\u012b":"i","\u012d":"i","\u012f":"i","\u0131":"i","\u0134":"J","\u0135":"j","\u0136":"K","\u0137":"k","\u0138":"k","\u0139":"L","\u013b":"L","\u013d":"L","\u013f":"L","\u0141":"L","\u013a":"l","\u013c":"l","\u013e":"l","\u0140":"l","\u0142":"l","\u0143":"N","\u0145":"N","\u0147":"N","\u014a":"N","\u0144":"n","\u0146":"n","\u0148":"n","\u014b":"n","\u014c":"O","\u014e":"O","\u0150":"O","\u014d":"o","\u014f":"o","\u0151":"o","\u0154":"R","\u0156":"R","\u0158":"R","\u0155":"r","\u0157":"r","\u0159":"r","\u015a":"S","\u015c":"S","\u015e":"S","\u0160":"S","\u015b":"s","\u015d":"s","\u015f":"s","\u0161":"s","\u0162":"T","\u0164":"T","\u0166":"T","\u0163":"t","\u0165":"t","\u0167":"t","\u0168":"U","\u016a":"U","\u016c":"U","\u016e":"U","\u0170":"U","\u0172":"U","\u0169":"u","\u016b":"u","\u016d":"u","\u016f":"u","\u0171":"u","\u0173":"u","\u0174":"W","\u0175":"w","\u0176":"Y","\u0177":"y","\u0178":"Y","\u0179":"Z","\u017b":"Z","\u017d":"Z","\u017a":"z","\u017c":"z","\u017e":"z","\u0132":"IJ","\u0133":"ij","\u0152":"Oe","\u0153":"oe","\u0149":"'n","\u017f":"s"}),on=Zt({"&":"&","<":"<",">":">",'"':""","'":"'"});function sn(e){return"\\"+ut[e]}function ln(e){return it.test(e)}function cn(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function un(e,t){return function(n){return e(t(n))}}function fn(e,t){for(var n=-1,r=e.length,i=0,a=[];++n",""":'"',"'":"'"});var yn=function e(t){var n=(t=null==t?vt:yn.defaults(vt.Object(),t,yn.pick(vt,ot))).Array,r=t.Date,se=t.Error,Se=t.Function,Te=t.Math,Ae=t.Object,Ee=t.RegExp,Ce=t.String,Me=t.TypeError,Oe=n.prototype,Pe=Se.prototype,Le=Ae.prototype,Ie=t["__core-js_shared__"],Re=Pe.toString,De=Le.hasOwnProperty,Fe=0,Ne=function(){var e=/[^.]+$/.exec(Ie&&Ie.keys&&Ie.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),ze=Le.toString,je=Re.call(Ae),Be=vt._,Ue=Ee("^"+Re.call(De).replace(ie,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),He=yt?t.Buffer:i,$e=t.Symbol,Ve=t.Uint8Array,We=He?He.allocUnsafe:i,qe=un(Ae.getPrototypeOf,Ae),Ge=Ae.create,Ze=Le.propertyIsEnumerable,Ye=Oe.splice,Ke=$e?$e.isConcatSpreadable:i,Xe=$e?$e.iterator:i,Je=$e?$e.toStringTag:i,Qe=function(){try{var e=fa(Ae,"defineProperty");return e({},"",{}),e}catch(t){}}(),nt=t.clearTimeout!==vt.clearTimeout&&t.clearTimeout,it=r&&r.now!==vt.Date.now&&r.now,ut=t.setTimeout!==vt.setTimeout&&t.setTimeout,ht=Te.ceil,pt=Te.floor,mt=Ae.getOwnPropertySymbols,gt=He?He.isBuffer:i,bt=t.isFinite,xt=Oe.join,Bt=un(Ae.keys,Ae),Zt=Te.max,bn=Te.min,xn=r.now,wn=t.parseInt,_n=Te.random,kn=Oe.reverse,Sn=fa(t,"DataView"),Tn=fa(t,"Map"),An=fa(t,"Promise"),En=fa(t,"Set"),Cn=fa(t,"WeakMap"),Mn=fa(Ae,"create"),On=Cn&&new Cn,Pn={},Ln=Na(Sn),In=Na(Tn),Rn=Na(An),Dn=Na(En),Fn=Na(Cn),Nn=$e?$e.prototype:i,zn=Nn?Nn.valueOf:i,jn=Nn?Nn.toString:i;function Bn(e){if(ts(e)&&!Vo(e)&&!(e instanceof Vn)){if(e instanceof $n)return e;if(De.call(e,"__wrapped__"))return za(e)}return new $n(e)}var Un=function(){function e(){}return function(t){if(!es(t))return{};if(Ge)return Ge(t);e.prototype=t;var n=new e;return e.prototype=i,n}}();function Hn(){}function $n(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=i}function Vn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=m,this.__views__=[]}function Wn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function lr(e,t,n,r,a,o){var s,l=1&t,c=2&t,u=4&t;if(n&&(s=a?n(e,r,a,o):n(e)),s!==i)return s;if(!es(e))return e;var f=Vo(e);if(f){if(s=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&De.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!l)return Mi(e,s)}else{var d=pa(e),h=d==k||d==S;if(Zo(e))return ki(e,l);if(d==E||d==y||h&&!a){if(s=c||h?{}:ma(e),!l)return c?function(e,t){return Oi(e,ha(e),t)}(e,function(e,t){return e&&Oi(t,Ls(t),e)}(s,e)):function(e,t){return Oi(e,da(e),t)}(e,ir(s,e))}else{if(!ct[d])return a?e:{};s=function(e,t,n){var r=e.constructor;switch(t){case R:return Si(e);case x:case w:return new r(+e);case D:return function(e,t){var n=t?Si(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case F:case N:case z:case j:case B:case U:case H:case $:case V:return Ti(e,n);case T:return new r;case A:case P:return new r(e);case M:return function(e){var t=new e.constructor(e.source,ve.exec(e));return t.lastIndex=e.lastIndex,t}(e);case O:return new r;case L:return i=e,zn?Ae(zn.call(i)):{}}var i}(e,d,l)}}o||(o=new Yn);var p=o.get(e);if(p)return p;o.set(e,s),os(e)?e.forEach((function(r){s.add(lr(r,t,n,r,e,o))})):ns(e)&&e.forEach((function(r,i){s.set(i,lr(r,t,n,i,e,o))}));var v=f?i:(u?c?ia:ra:c?Ls:Ps)(e);return Mt(v||e,(function(r,i){v&&(r=e[i=r]),tr(s,i,lr(r,t,n,i,e,o))})),s}function cr(e,t,n){var r=n.length;if(null==e)return!r;for(e=Ae(e);r--;){var a=n[r],o=t[a],s=e[a];if(s===i&&!(a in e)||!o(s))return!1}return!0}function ur(e,t,n){if("function"!=typeof e)throw new Me(a);return Oa((function(){e.apply(i,n)}),t)}function fr(e,t,n,r){var i=-1,a=It,o=!0,s=e.length,l=[],c=t.length;if(!s)return l;n&&(t=Dt(t,Qt(n))),r?(a=Rt,o=!1):t.length>=200&&(a=tn,o=!1,t=new Zn(t));e:for(;++i-1},qn.prototype.set=function(e,t){var n=this.__data__,r=nr(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Gn.prototype.clear=function(){this.size=0,this.__data__={hash:new Wn,map:new(Tn||qn),string:new Wn}},Gn.prototype.delete=function(e){var t=ca(this,e).delete(e);return this.size-=t?1:0,t},Gn.prototype.get=function(e){return ca(this,e).get(e)},Gn.prototype.has=function(e){return ca(this,e).has(e)},Gn.prototype.set=function(e,t){var n=ca(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Zn.prototype.add=Zn.prototype.push=function(e){return this.__data__.set(e,o),this},Zn.prototype.has=function(e){return this.__data__.has(e)},Yn.prototype.clear=function(){this.__data__=new qn,this.size=0},Yn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Yn.prototype.get=function(e){return this.__data__.get(e)},Yn.prototype.has=function(e){return this.__data__.has(e)},Yn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof qn){var r=n.__data__;if(!Tn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Gn(r)}return n.set(e,t),this.size=n.size,this};var dr=Ii(xr),hr=Ii(wr,!0);function pr(e,t){var n=!0;return dr(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function vr(e,t,n){for(var r=-1,a=e.length;++r0&&n(s)?t>1?gr(s,t-1,n,r,i):Ft(i,s):r||(i[i.length]=s)}return i}var yr=Ri(),br=Ri(!0);function xr(e,t){return e&&yr(e,t,Ps)}function wr(e,t){return e&&br(e,t,Ps)}function _r(e,t){return Lt(t,(function(t){return Xo(e[t])}))}function kr(e,t){for(var n=0,r=(t=bi(t,e)).length;null!=e&&nt}function Er(e,t){return null!=e&&De.call(e,t)}function Cr(e,t){return null!=e&&t in Ae(e)}function Mr(e,t,r){for(var a=r?Rt:It,o=e[0].length,s=e.length,l=s,c=n(s),u=1/0,f=[];l--;){var d=e[l];l&&t&&(d=Dt(d,Qt(t))),u=bn(d.length,u),c[l]=!r&&(t||o>=120&&d.length>=120)?new Zn(l&&d):i}d=e[0];var h=-1,p=c[0];e:for(;++h=s?l:l*("desc"==n[r]?-1:1)}return e.index-t.index}(e,t,n)}))}function Wr(e,t,n){for(var r=-1,i=t.length,a={};++r-1;)s!==e&&Ye.call(s,l,1),Ye.call(e,l,1);return e}function Gr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==a){var a=i;ya(i)?Ye.call(e,i,1):fi(e,i)}}return e}function Zr(e,t){return e+pt(_n()*(t-e+1))}function Yr(e,t){var n="";if(!e||t<1||t>p)return n;do{t%2&&(n+=e),(t=pt(t/2))&&(e+=e)}while(t);return n}function Kr(e,t){return Pa(Aa(e,t,rl),e+"")}function Xr(e){return Xn(Bs(e))}function Jr(e,t){var n=Bs(e);return Ra(n,sr(t,0,n.length))}function Qr(e,t,n,r){if(!es(e))return e;for(var a=-1,o=(t=bi(t,e)).length,s=o-1,l=e;null!=l&&++aa?0:a+t),(r=r>a?a:r)<0&&(r+=a),a=t>r?0:r-t>>>0,t>>>=0;for(var o=n(a);++i>>1,o=e[a];null!==o&&!ls(o)&&(n?o<=t:o=200){var c=t?null:Yi(e);if(c)return dn(c);o=!1,i=tn,l=new Zn}else l=t?[]:s;e:for(;++r=r?e:ri(e,t,n)}var _i=nt||function(e){return vt.clearTimeout(e)};function ki(e,t){if(t)return e.slice();var n=e.length,r=We?We(n):new e.constructor(n);return e.copy(r),r}function Si(e){var t=new e.constructor(e.byteLength);return new Ve(t).set(new Ve(e)),t}function Ti(e,t){var n=t?Si(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function Ai(e,t){if(e!==t){var n=e!==i,r=null===e,a=e===e,o=ls(e),s=t!==i,l=null===t,c=t===t,u=ls(t);if(!l&&!u&&!o&&e>t||o&&s&&c&&!l&&!u||r&&s&&c||!n&&c||!a)return 1;if(!r&&!o&&!u&&e1?n[a-1]:i,s=a>2?n[2]:i;for(o=e.length>3&&"function"==typeof o?(a--,o):i,s&&ba(n[0],n[1],s)&&(o=a<3?i:o,a=1),t=Ae(t);++r-1?a[o?t[s]:s]:i}}function ji(e){return na((function(t){var n=t.length,r=n,o=$n.prototype.thru;for(e&&t.reverse();r--;){var s=t[r];if("function"!=typeof s)throw new Me(a);if(o&&!l&&"wrapper"==oa(s))var l=new $n([],!0)}for(r=l?r:n;++r1&&x.reverse(),h&&ul))return!1;var u=o.get(e),f=o.get(t);if(u&&f)return u==t&&f==e;var d=-1,h=!0,p=2&n?new Zn:i;for(o.set(e,t),o.set(t,e);++d-1&&e%1==0&&e1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(le,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return Mt(g,(function(n){var r="_."+n[0];t&n[1]&&!It(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(ce);return t?t[1].split(ue):[]}(r),n)))}function Ia(e){var t=0,n=0;return function(){var r=xn(),a=16-(r-n);if(n=r,a>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(i,arguments)}}function Ra(e,t){var n=-1,r=e.length,a=r-1;for(t=t===i?r:t;++n1?e[t-1]:i;return n="function"==typeof n?(e.pop(),n):i,io(e,n)}));function fo(e){var t=Bn(e);return t.__chain__=!0,t}function ho(e,t){return t(e)}var po=na((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,a=function(t){return or(t,e)};return!(t>1||this.__actions__.length)&&r instanceof Vn&&ya(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:ho,args:[a],thisArg:i}),new $n(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(i),e}))):this.thru(a)}));var vo=Pi((function(e,t,n){De.call(e,n)?++e[n]:ar(e,n,1)}));var mo=zi(Ha),go=zi($a);function yo(e,t){return(Vo(e)?Mt:dr)(e,la(t,3))}function bo(e,t){return(Vo(e)?Ot:hr)(e,la(t,3))}var xo=Pi((function(e,t,n){De.call(e,n)?e[n].push(t):ar(e,n,[t])}));var wo=Kr((function(e,t,r){var i=-1,a="function"==typeof t,o=qo(e)?n(e.length):[];return dr(e,(function(e){o[++i]=a?Et(t,e,r):Or(e,t,r)})),o})),_o=Pi((function(e,t,n){ar(e,n,t)}));function ko(e,t){return(Vo(e)?Dt:jr)(e,la(t,3))}var So=Pi((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var To=Kr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&ba(e,t[0],t[1])?t=[]:n>2&&ba(t[0],t[1],t[2])&&(t=[t[0]]),Vr(e,gr(t,1),[])})),Ao=it||function(){return vt.Date.now()};function Eo(e,t,n){return t=n?i:t,t=e&&null==t?e.length:t,Xi(e,f,i,i,i,i,t)}function Co(e,t){var n;if("function"!=typeof t)throw new Me(a);return e=ps(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=i),n}}var Mo=Kr((function(e,t,n){var r=1;if(n.length){var i=fn(n,sa(Mo));r|=c}return Xi(e,r,t,n,i)})),Oo=Kr((function(e,t,n){var r=3;if(n.length){var i=fn(n,sa(Oo));r|=c}return Xi(t,r,e,n,i)}));function Po(e,t,n){var r,o,s,l,c,u,f=0,d=!1,h=!1,p=!0;if("function"!=typeof e)throw new Me(a);function v(t){var n=r,a=o;return r=o=i,f=t,l=e.apply(a,n)}function m(e){var n=e-u;return u===i||n>=t||n<0||h&&e-f>=s}function g(){var e=Ao();if(m(e))return y(e);c=Oa(g,function(e){var n=t-(e-u);return h?bn(n,s-(e-f)):n}(e))}function y(e){return c=i,p&&r?v(e):(r=o=i,l)}function b(){var e=Ao(),n=m(e);if(r=arguments,o=this,u=e,n){if(c===i)return function(e){return f=e,c=Oa(g,t),d?v(e):l}(u);if(h)return _i(c),c=Oa(g,t),v(u)}return c===i&&(c=Oa(g,t)),l}return t=ms(t)||0,es(n)&&(d=!!n.leading,s=(h="maxWait"in n)?Zt(ms(n.maxWait)||0,t):s,p="trailing"in n?!!n.trailing:p),b.cancel=function(){c!==i&&_i(c),f=0,r=u=o=c=i},b.flush=function(){return c===i?l:y(Ao())},b}var Lo=Kr((function(e,t){return ur(e,1,t)})),Io=Kr((function(e,t,n){return ur(e,ms(t)||0,n)}));function Ro(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new Me(a);var n=function n(){var r=arguments,i=t?t.apply(this,r):r[0],a=n.cache;if(a.has(i))return a.get(i);var o=e.apply(this,r);return n.cache=a.set(i,o)||a,o};return n.cache=new(Ro.Cache||Gn),n}function Do(e){if("function"!=typeof e)throw new Me(a);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Ro.Cache=Gn;var Fo=xi((function(e,t){var n=(t=1==t.length&&Vo(t[0])?Dt(t[0],Qt(la())):Dt(gr(t,1),Qt(la()))).length;return Kr((function(r){for(var i=-1,a=bn(r.length,n);++i=t})),$o=Pr(function(){return arguments}())?Pr:function(e){return ts(e)&&De.call(e,"callee")&&!Ze.call(e,"callee")},Vo=n.isArray,Wo=wt?Qt(wt):function(e){return ts(e)&&Tr(e)==R};function qo(e){return null!=e&&Qo(e.length)&&!Xo(e)}function Go(e){return ts(e)&&qo(e)}var Zo=gt||ml,Yo=_t?Qt(_t):function(e){return ts(e)&&Tr(e)==w};function Ko(e){if(!ts(e))return!1;var t=Tr(e);return t==_||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!is(e)}function Xo(e){if(!es(e))return!1;var t=Tr(e);return t==k||t==S||"[object AsyncFunction]"==t||"[object Proxy]"==t}function Jo(e){return"number"==typeof e&&e==ps(e)}function Qo(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=p}function es(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function ts(e){return null!=e&&"object"==typeof e}var ns=kt?Qt(kt):function(e){return ts(e)&&pa(e)==T};function rs(e){return"number"==typeof e||ts(e)&&Tr(e)==A}function is(e){if(!ts(e)||Tr(e)!=E)return!1;var t=qe(e);if(null===t)return!0;var n=De.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&Re.call(n)==je}var as=St?Qt(St):function(e){return ts(e)&&Tr(e)==M};var os=Tt?Qt(Tt):function(e){return ts(e)&&pa(e)==O};function ss(e){return"string"==typeof e||!Vo(e)&&ts(e)&&Tr(e)==P}function ls(e){return"symbol"==typeof e||ts(e)&&Tr(e)==L}var cs=At?Qt(At):function(e){return ts(e)&&Qo(e.length)&&!!lt[Tr(e)]};var us=qi(zr),fs=qi((function(e,t){return e<=t}));function ds(e){if(!e)return[];if(qo(e))return ss(e)?vn(e):Mi(e);if(Xe&&e[Xe])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Xe]());var t=pa(e);return(t==T?cn:t==O?dn:Bs)(e)}function hs(e){return e?(e=ms(e))===h||e===-1/0?17976931348623157e292*(e<0?-1:1):e===e?e:0:0===e?e:0}function ps(e){var t=hs(e),n=t%1;return t===t?n?t-n:t:0}function vs(e){return e?sr(ps(e),0,m):0}function ms(e){if("number"==typeof e)return e;if(ls(e))return v;if(es(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=es(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Jt(e);var n=ge.test(e);return n||be.test(e)?dt(e.slice(2),n?2:8):me.test(e)?v:+e}function gs(e){return Oi(e,Ls(e))}function ys(e){return null==e?"":ci(e)}var bs=Li((function(e,t){if(ka(t)||qo(t))Oi(t,Ps(t),e);else for(var n in t)De.call(t,n)&&tr(e,n,t[n])})),xs=Li((function(e,t){Oi(t,Ls(t),e)})),ws=Li((function(e,t,n,r){Oi(t,Ls(t),e,r)})),_s=Li((function(e,t,n,r){Oi(t,Ps(t),e,r)})),ks=na(or);var Ss=Kr((function(e,t){e=Ae(e);var n=-1,r=t.length,a=r>2?t[2]:i;for(a&&ba(t[0],t[1],a)&&(r=1);++n1),t})),Oi(e,ia(e),n),r&&(n=lr(n,7,ea));for(var i=t.length;i--;)fi(n,t[i]);return n}));var Fs=na((function(e,t){return null==e?{}:function(e,t){return Wr(e,t,(function(t,n){return Es(e,n)}))}(e,t)}));function Ns(e,t){if(null==e)return{};var n=Dt(ia(e),(function(e){return[e]}));return t=la(t),Wr(e,n,(function(e,n){return t(e,n[0])}))}var zs=Ki(Ps),js=Ki(Ls);function Bs(e){return null==e?[]:en(e,Ps(e))}var Us=Fi((function(e,t,n){return t=t.toLowerCase(),e+(n?Hs(t):t)}));function Hs(e){return Ks(ys(e).toLowerCase())}function $s(e){return(e=ys(e))&&e.replace(we,an).replace(tt,"")}var Vs=Fi((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Ws=Fi((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),qs=Di("toLowerCase");var Gs=Fi((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Zs=Fi((function(e,t,n){return e+(n?" ":"")+Ks(t)}));var Ys=Fi((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Ks=Di("toUpperCase");function Xs(e,t,n){return e=ys(e),(t=n?i:t)===i?function(e){return at.test(e)}(e)?function(e){return e.match(rt)||[]}(e):function(e){return e.match(fe)||[]}(e):e.match(t)||[]}var Js=Kr((function(e,t){try{return Et(e,i,t)}catch(n){return Ko(n)?n:new se(n)}})),Qs=na((function(e,t){return Mt(t,(function(t){t=Fa(t),ar(e,t,Mo(e[t],e))})),e}));function el(e){return function(){return e}}var tl=ji(),nl=ji(!0);function rl(e){return e}function il(e){return Dr("function"==typeof e?e:lr(e,1))}var al=Kr((function(e,t){return function(n){return Or(n,e,t)}})),ol=Kr((function(e,t){return function(n){return Or(e,n,t)}}));function sl(e,t,n){var r=Ps(t),i=_r(t,r);null!=n||es(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=_r(t,Ps(t)));var a=!(es(n)&&"chain"in n)||!!n.chain,o=Xo(e);return Mt(i,(function(n){var r=t[n];e[n]=r,o&&(e.prototype[n]=function(){var t=this.__chain__;if(a||t){var n=e(this.__wrapped__);return(n.__actions__=Mi(this.__actions__)).push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,Ft([this.value()],arguments))})})),e}function ll(){}var cl=$i(Dt),ul=$i(Pt),fl=$i(jt);function dl(e){return xa(e)?Gt(Fa(e)):function(e){return function(t){return kr(t,e)}}(e)}var hl=Wi(),pl=Wi(!0);function vl(){return[]}function ml(){return!1}var gl=Hi((function(e,t){return e+t}),0),yl=Zi("ceil"),bl=Hi((function(e,t){return e/t}),1),xl=Zi("floor");var wl=Hi((function(e,t){return e*t}),1),_l=Zi("round"),kl=Hi((function(e,t){return e-t}),0);return Bn.after=function(e,t){if("function"!=typeof t)throw new Me(a);return e=ps(e),function(){if(--e<1)return t.apply(this,arguments)}},Bn.ary=Eo,Bn.assign=bs,Bn.assignIn=xs,Bn.assignInWith=ws,Bn.assignWith=_s,Bn.at=ks,Bn.before=Co,Bn.bind=Mo,Bn.bindAll=Qs,Bn.bindKey=Oo,Bn.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Vo(e)?e:[e]},Bn.chain=fo,Bn.chunk=function(e,t,r){t=(r?ba(e,t,r):t===i)?1:Zt(ps(t),0);var a=null==e?0:e.length;if(!a||t<1)return[];for(var o=0,s=0,l=n(ht(a/t));oa?0:a+n),(r=r===i||r>a?a:ps(r))<0&&(r+=a),r=n>r?0:vs(r);n>>0)?(e=ys(e))&&("string"==typeof t||null!=t&&!as(t))&&!(t=ci(t))&&ln(e)?wi(vn(e),0,n):e.split(t,n):[]},Bn.spread=function(e,t){if("function"!=typeof e)throw new Me(a);return t=null==t?0:Zt(ps(t),0),Kr((function(n){var r=n[t],i=wi(n,0,t);return r&&Ft(i,r),Et(e,this,i)}))},Bn.tail=function(e){var t=null==e?0:e.length;return t?ri(e,1,t):[]},Bn.take=function(e,t,n){return e&&e.length?ri(e,0,(t=n||t===i?1:ps(t))<0?0:t):[]},Bn.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?ri(e,(t=r-(t=n||t===i?1:ps(t)))<0?0:t,r):[]},Bn.takeRightWhile=function(e,t){return e&&e.length?hi(e,la(t,3),!1,!0):[]},Bn.takeWhile=function(e,t){return e&&e.length?hi(e,la(t,3)):[]},Bn.tap=function(e,t){return t(e),e},Bn.throttle=function(e,t,n){var r=!0,i=!0;if("function"!=typeof e)throw new Me(a);return es(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),Po(e,t,{leading:r,maxWait:t,trailing:i})},Bn.thru=ho,Bn.toArray=ds,Bn.toPairs=zs,Bn.toPairsIn=js,Bn.toPath=function(e){return Vo(e)?Dt(e,Fa):ls(e)?[e]:Mi(Da(ys(e)))},Bn.toPlainObject=gs,Bn.transform=function(e,t,n){var r=Vo(e),i=r||Zo(e)||cs(e);if(t=la(t,4),null==n){var a=e&&e.constructor;n=i?r?new a:[]:es(e)&&Xo(a)?Un(qe(e)):{}}return(i?Mt:xr)(e,(function(e,r,i){return t(n,e,r,i)})),n},Bn.unary=function(e){return Eo(e,1)},Bn.union=eo,Bn.unionBy=to,Bn.unionWith=no,Bn.uniq=function(e){return e&&e.length?ui(e):[]},Bn.uniqBy=function(e,t){return e&&e.length?ui(e,la(t,2)):[]},Bn.uniqWith=function(e,t){return t="function"==typeof t?t:i,e&&e.length?ui(e,i,t):[]},Bn.unset=function(e,t){return null==e||fi(e,t)},Bn.unzip=ro,Bn.unzipWith=io,Bn.update=function(e,t,n){return null==e?e:di(e,t,yi(n))},Bn.updateWith=function(e,t,n,r){return r="function"==typeof r?r:i,null==e?e:di(e,t,yi(n),r)},Bn.values=Bs,Bn.valuesIn=function(e){return null==e?[]:en(e,Ls(e))},Bn.without=ao,Bn.words=Xs,Bn.wrap=function(e,t){return No(yi(t),e)},Bn.xor=oo,Bn.xorBy=so,Bn.xorWith=lo,Bn.zip=co,Bn.zipObject=function(e,t){return mi(e||[],t||[],tr)},Bn.zipObjectDeep=function(e,t){return mi(e||[],t||[],Qr)},Bn.zipWith=uo,Bn.entries=zs,Bn.entriesIn=js,Bn.extend=xs,Bn.extendWith=ws,sl(Bn,Bn),Bn.add=gl,Bn.attempt=Js,Bn.camelCase=Us,Bn.capitalize=Hs,Bn.ceil=yl,Bn.clamp=function(e,t,n){return n===i&&(n=t,t=i),n!==i&&(n=(n=ms(n))===n?n:0),t!==i&&(t=(t=ms(t))===t?t:0),sr(ms(e),t,n)},Bn.clone=function(e){return lr(e,4)},Bn.cloneDeep=function(e){return lr(e,5)},Bn.cloneDeepWith=function(e,t){return lr(e,5,t="function"==typeof t?t:i)},Bn.cloneWith=function(e,t){return lr(e,4,t="function"==typeof t?t:i)},Bn.conformsTo=function(e,t){return null==t||cr(e,t,Ps(t))},Bn.deburr=$s,Bn.defaultTo=function(e,t){return null==e||e!==e?t:e},Bn.divide=bl,Bn.endsWith=function(e,t,n){e=ys(e),t=ci(t);var r=e.length,a=n=n===i?r:sr(ps(n),0,r);return(n-=t.length)>=0&&e.slice(n,a)==t},Bn.eq=Bo,Bn.escape=function(e){return(e=ys(e))&&X.test(e)?e.replace(Y,on):e},Bn.escapeRegExp=function(e){return(e=ys(e))&&ae.test(e)?e.replace(ie,"\\$&"):e},Bn.every=function(e,t,n){var r=Vo(e)?Pt:pr;return n&&ba(e,t,n)&&(t=i),r(e,la(t,3))},Bn.find=mo,Bn.findIndex=Ha,Bn.findKey=function(e,t){return Ut(e,la(t,3),xr)},Bn.findLast=go,Bn.findLastIndex=$a,Bn.findLastKey=function(e,t){return Ut(e,la(t,3),wr)},Bn.floor=xl,Bn.forEach=yo,Bn.forEachRight=bo,Bn.forIn=function(e,t){return null==e?e:yr(e,la(t,3),Ls)},Bn.forInRight=function(e,t){return null==e?e:br(e,la(t,3),Ls)},Bn.forOwn=function(e,t){return e&&xr(e,la(t,3))},Bn.forOwnRight=function(e,t){return e&&wr(e,la(t,3))},Bn.get=As,Bn.gt=Uo,Bn.gte=Ho,Bn.has=function(e,t){return null!=e&&va(e,t,Er)},Bn.hasIn=Es,Bn.head=Wa,Bn.identity=rl,Bn.includes=function(e,t,n,r){e=qo(e)?e:Bs(e),n=n&&!r?ps(n):0;var i=e.length;return n<0&&(n=Zt(i+n,0)),ss(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&$t(e,t,n)>-1},Bn.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:ps(n);return i<0&&(i=Zt(r+i,0)),$t(e,t,i)},Bn.inRange=function(e,t,n){return t=hs(t),n===i?(n=t,t=0):n=hs(n),function(e,t,n){return e>=bn(t,n)&&e=-9007199254740991&&e<=p},Bn.isSet=os,Bn.isString=ss,Bn.isSymbol=ls,Bn.isTypedArray=cs,Bn.isUndefined=function(e){return e===i},Bn.isWeakMap=function(e){return ts(e)&&pa(e)==I},Bn.isWeakSet=function(e){return ts(e)&&"[object WeakSet]"==Tr(e)},Bn.join=function(e,t){return null==e?"":xt.call(e,t)},Bn.kebabCase=Vs,Bn.last=Ya,Bn.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var a=r;return n!==i&&(a=(a=ps(n))<0?Zt(r+a,0):bn(a,r-1)),t===t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,a):Ht(e,Wt,a,!0)},Bn.lowerCase=Ws,Bn.lowerFirst=qs,Bn.lt=us,Bn.lte=fs,Bn.max=function(e){return e&&e.length?vr(e,rl,Ar):i},Bn.maxBy=function(e,t){return e&&e.length?vr(e,la(t,2),Ar):i},Bn.mean=function(e){return qt(e,rl)},Bn.meanBy=function(e,t){return qt(e,la(t,2))},Bn.min=function(e){return e&&e.length?vr(e,rl,zr):i},Bn.minBy=function(e,t){return e&&e.length?vr(e,la(t,2),zr):i},Bn.stubArray=vl,Bn.stubFalse=ml,Bn.stubObject=function(){return{}},Bn.stubString=function(){return""},Bn.stubTrue=function(){return!0},Bn.multiply=wl,Bn.nth=function(e,t){return e&&e.length?$r(e,ps(t)):i},Bn.noConflict=function(){return vt._===this&&(vt._=Be),this},Bn.noop=ll,Bn.now=Ao,Bn.pad=function(e,t,n){e=ys(e);var r=(t=ps(t))?pn(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return Vi(pt(i),n)+e+Vi(ht(i),n)},Bn.padEnd=function(e,t,n){e=ys(e);var r=(t=ps(t))?pn(e):0;return t&&rt){var r=e;e=t,t=r}if(n||e%1||t%1){var a=_n();return bn(e+a*(t-e+ft("1e-"+((a+"").length-1))),t)}return Zr(e,t)},Bn.reduce=function(e,t,n){var r=Vo(e)?Nt:Yt,i=arguments.length<3;return r(e,la(t,4),n,i,dr)},Bn.reduceRight=function(e,t,n){var r=Vo(e)?zt:Yt,i=arguments.length<3;return r(e,la(t,4),n,i,hr)},Bn.repeat=function(e,t,n){return t=(n?ba(e,t,n):t===i)?1:ps(t),Yr(ys(e),t)},Bn.replace=function(){var e=arguments,t=ys(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Bn.result=function(e,t,n){var r=-1,a=(t=bi(t,e)).length;for(a||(a=1,e=i);++rp)return[];var n=m,r=bn(e,m);t=la(t),e-=m;for(var i=Xt(r,t);++n=o)return e;var l=n-pn(r);if(l<1)return r;var c=s?wi(s,0,l).join(""):e.slice(0,l);if(a===i)return c+r;if(s&&(l+=c.length-l),as(a)){if(e.slice(l).search(a)){var u,f=c;for(a.global||(a=Ee(a.source,ys(ve.exec(a))+"g")),a.lastIndex=0;u=a.exec(f);)var d=u.index;c=c.slice(0,d===i?l:d)}}else if(e.indexOf(ci(a),l)!=l){var h=c.lastIndexOf(a);h>-1&&(c=c.slice(0,h))}return c+r},Bn.unescape=function(e){return(e=ys(e))&&K.test(e)?e.replace(Z,gn):e},Bn.uniqueId=function(e){var t=++Fe;return ys(e)+t},Bn.upperCase=Ys,Bn.upperFirst=Ks,Bn.each=yo,Bn.eachRight=bo,Bn.first=Wa,sl(Bn,function(){var e={};return xr(Bn,(function(t,n){De.call(Bn.prototype,n)||(e[n]=t)})),e}(),{chain:!1}),Bn.VERSION="4.17.21",Mt(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Bn[e].placeholder=Bn})),Mt(["drop","take"],(function(e,t){Vn.prototype[e]=function(n){n=n===i?1:Zt(ps(n),0);var r=this.__filtered__&&!t?new Vn(this):this.clone();return r.__filtered__?r.__takeCount__=bn(n,r.__takeCount__):r.__views__.push({size:bn(n,m),type:e+(r.__dir__<0?"Right":"")}),r},Vn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),Mt(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;Vn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:la(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),Mt(["head","last"],(function(e,t){var n="take"+(t?"Right":"");Vn.prototype[e]=function(){return this[n](1).value()[0]}})),Mt(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");Vn.prototype[e]=function(){return this.__filtered__?new Vn(this):this[n](1)}})),Vn.prototype.compact=function(){return this.filter(rl)},Vn.prototype.find=function(e){return this.filter(e).head()},Vn.prototype.findLast=function(e){return this.reverse().find(e)},Vn.prototype.invokeMap=Kr((function(e,t){return"function"==typeof e?new Vn(this):this.map((function(n){return Or(n,e,t)}))})),Vn.prototype.reject=function(e){return this.filter(Do(la(e)))},Vn.prototype.slice=function(e,t){e=ps(e);var n=this;return n.__filtered__&&(e>0||t<0)?new Vn(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),t!==i&&(n=(t=ps(t))<0?n.dropRight(-t):n.take(t-e)),n)},Vn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Vn.prototype.toArray=function(){return this.take(m)},xr(Vn.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),a=Bn[r?"take"+("last"==t?"Right":""):t],o=r||/^find/.test(t);a&&(Bn.prototype[t]=function(){var t=this.__wrapped__,s=r?[1]:arguments,l=t instanceof Vn,c=s[0],u=l||Vo(t),f=function(e){var t=a.apply(Bn,Ft([e],s));return r&&d?t[0]:t};u&&n&&"function"==typeof c&&1!=c.length&&(l=u=!1);var d=this.__chain__,h=!!this.__actions__.length,p=o&&!d,v=l&&!h;if(!o&&u){t=v?t:new Vn(this);var m=e.apply(t,s);return m.__actions__.push({func:ho,args:[f],thisArg:i}),new $n(m,d)}return p&&v?e.apply(this,s):(m=this.thru(f),p?r?m.value()[0]:m.value():m)})})),Mt(["pop","push","shift","sort","splice","unshift"],(function(e){var t=Oe[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);Bn.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(Vo(i)?i:[],e)}return this[n]((function(n){return t.apply(Vo(n)?n:[],e)}))}})),xr(Vn.prototype,(function(e,t){var n=Bn[t];if(n){var r=n.name+"";De.call(Pn,r)||(Pn[r]=[]),Pn[r].push({name:t,func:n})}})),Pn[Bi(i,2).name]=[{name:"wrapper",func:i}],Vn.prototype.clone=function(){var e=new Vn(this.__wrapped__);return e.__actions__=Mi(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Mi(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Mi(this.__views__),e},Vn.prototype.reverse=function(){if(this.__filtered__){var e=new Vn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Vn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=Vo(e),r=t<0,i=n?e.length:0,a=function(e,t,n){var r=-1,i=n.length;for(;++r=this.__values__.length;return{done:e,value:e?i:this.__values__[this.__index__++]}},Bn.prototype.plant=function(e){for(var t,n=this;n instanceof Hn;){var r=za(n);r.__index__=0,r.__values__=i,t?a.__wrapped__=r:t=r;var a=r;n=n.__wrapped__}return a.__wrapped__=e,t},Bn.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Vn){var t=e;return this.__actions__.length&&(t=new Vn(this)),(t=t.reverse()).__actions__.push({func:ho,args:[Qa],thisArg:i}),new $n(t,this.__chain__)}return this.thru(Qa)},Bn.prototype.toJSON=Bn.prototype.valueOf=Bn.prototype.value=function(){return pi(this.__wrapped__,this.__actions__)},Bn.prototype.first=Bn.prototype.head,Xe&&(Bn.prototype[Xe]=function(){return this}),Bn}();vt._=yn,(r=function(){return yn}.call(t,n,t,e))===i||(e.exports=r)}.call(this)},49151:function(e,t,n){var r=n(78059);function i(e,t){if("function"!=typeof e||null!=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],a=n.cache;if(a.has(i))return a.get(i);var o=e.apply(this,r);return n.cache=a.set(i,o)||a,o};return n.cache=new(i.Cache||r),n}i.Cache=r,e.exports=i},72617:function(e,t,n){var r=n(64173),i=n(39934)((function(e,t,n,i){r(e,t,n,i)}));e.exports=i},19694:function(e){e.exports=function(){}},24242:function(e,t,n){var r=n(68950),i=n(31905),a=n(86555),o=n(43082),s=n(64503),l=n(26013),c=n(27038),u=n(55341),f=c((function(e,t){var n={};if(null==e)return n;var c=!1;t=r(t,(function(t){return t=o(t,e),c||(c=t.length>1),t})),s(e,u(e),n),c&&(n=i(n,7,l));for(var f=t.length;f--;)a(n,t[f]);return n}));e.exports=f},36460:function(e,t,n){var r=n(14980),i=n(27038)((function(e,t){return null==e?{}:r(e,t)}));e.exports=i},10038:function(e,t,n){var r=n(9586),i=n(4084),a=n(25823),o=n(69793);e.exports=function(e){return a(e)?r(o(e)):i(e)}},30566:function(e,t,n){var r=n(92683);e.exports=function(e,t){return e&&e.length&&t&&t.length?r(e,t):e}},25080:function(e,t,n){var r=n(32095),i=n(87927),a=n(56025),o=n(10750),s=n(93629);e.exports=function(e,t,n){var l=s(e)?r:o,c=arguments.length<3;return l(e,a(t,4),n,c,i)}},74485:function(e,t,n){var r=n(40379);e.exports=function(e,t,n){return null==e?e:r(e,t,n)}},64286:function(e,t,n){var r=n(55182),i=n(93226),a=n(58794),o=n(3195),s=a((function(e,t){if(null==e)return[];var n=t.length;return n>1&&o(e,t[0],t[1])?t=[]:n>2&&o(t[0],t[1],t[2])&&(t=[t[0]]),i(e,r(t,1),[])}));e.exports=s},68174:function(e){e.exports=function(){return[]}},49488:function(e){e.exports=function(){return!1}},70778:function(e,t,n){var r=n(86478),i=n(43410),a=n(39753),o=4294967295,s=Math.min;e.exports=function(e,t){if((e=a(e))<1||e>9007199254740991)return[];var n=o,l=s(e,o);t=i(t),e-=o;for(var c=r(l,t);++n>>8,n[2*r+1]=o%256}return n},decompressFromUint8Array:function(t){if(null===t||void 0===t)return a.decompress(t);for(var n=new Array(t.length/2),r=0,i=n.length;r>=1}else{for(i=1,r=0;r>=1}0==--f&&(f=Math.pow(2,h),h++),delete s[u]}else for(i=o[u],r=0;r>=1;0==--f&&(f=Math.pow(2,h),h++),o[c]=d++,u=String(l)}if(""!==u){if(Object.prototype.hasOwnProperty.call(s,u)){if(u.charCodeAt(0)<256){for(r=0;r>=1}else{for(i=1,r=0;r>=1}0==--f&&(f=Math.pow(2,h),h++),delete s[u]}else for(i=o[u],r=0;r>=1;0==--f&&(f=Math.pow(2,h),h++)}for(i=2,r=0;r>=1;for(;;){if(v<<=1,m==t-1){p.push(n(v));break}m++}return p.join("")},decompress:function(e){return null==e?"":""==e?null:a._decompress(e.length,32768,(function(t){return e.charCodeAt(t)}))},_decompress:function(t,n,r){var i,a,o,s,l,c,u,f=[],d=4,h=4,p=3,v="",m=[],g={val:r(0),position:n,index:1};for(i=0;i<3;i+=1)f[i]=i;for(o=0,l=Math.pow(2,2),c=1;c!=l;)s=g.val&g.position,g.position>>=1,0==g.position&&(g.position=n,g.val=r(g.index++)),o|=(s>0?1:0)*c,c<<=1;switch(o){case 0:for(o=0,l=Math.pow(2,8),c=1;c!=l;)s=g.val&g.position,g.position>>=1,0==g.position&&(g.position=n,g.val=r(g.index++)),o|=(s>0?1:0)*c,c<<=1;u=e(o);break;case 1:for(o=0,l=Math.pow(2,16),c=1;c!=l;)s=g.val&g.position,g.position>>=1,0==g.position&&(g.position=n,g.val=r(g.index++)),o|=(s>0?1:0)*c,c<<=1;u=e(o);break;case 2:return""}for(f[3]=u,a=u,m.push(u);;){if(g.index>t)return"";for(o=0,l=Math.pow(2,p),c=1;c!=l;)s=g.val&g.position,g.position>>=1,0==g.position&&(g.position=n,g.val=r(g.index++)),o|=(s>0?1:0)*c,c<<=1;switch(u=o){case 0:for(o=0,l=Math.pow(2,8),c=1;c!=l;)s=g.val&g.position,g.position>>=1,0==g.position&&(g.position=n,g.val=r(g.index++)),o|=(s>0?1:0)*c,c<<=1;f[h++]=e(o),u=h-1,d--;break;case 1:for(o=0,l=Math.pow(2,16),c=1;c!=l;)s=g.val&g.position,g.position>>=1,0==g.position&&(g.position=n,g.val=r(g.index++)),o|=(s>0?1:0)*c,c<<=1;f[h++]=e(o),u=h-1,d--;break;case 2:return m.join("")}if(0==d&&(d=Math.pow(2,p),p++),f[u])v=f[u];else{if(u!==h)return null;v=a+a.charAt(0)}m.push(v),f[h++]=a+v.charAt(0),a=v,0==--d&&(d=Math.pow(2,p),p++)}}};return a}();void 0===(r=function(){return i}.call(t,n,t,e))||(e.exports=r)},13534:function(e,t,n){"use strict";e.exports=n(29890)},61285:function(e,t,n){"use strict";e.exports=n(59323)},71437:function(e){"use strict";e.exports=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","section","source","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"]},35850:function(e){"use strict";var t="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",n="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",r=new RegExp("^(?:"+t+"|"+n+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|]*>|)"),i=new RegExp("^(?:"+t+"|"+n+")");e.exports.n=r,e.exports.q=i},50786:function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty;function i(e,t){return r.call(e,t)}function a(e){return!(e>=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!==(65535&e)&&65534!==(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function o(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var s=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,l=new RegExp(s.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),c=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,u=n(61285);var f=/[&<>"]/,d=/[&<>"]/g,h={"&":"&","<":"<",">":">",'"':"""};function p(e){return h[e]}var v=/[.?*+^$[\]\\(){}|-]/g;var m=n(13741);t.lib={},t.lib.mdurl=n(83461),t.lib.ucmicro=n(16937),t.assign=function(e){return Array.prototype.slice.call(arguments,1).forEach((function(t){if(t){if("object"!==typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e},t.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},t.has=i,t.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(s,"$1")},t.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(l,(function(e,t,n){return t||function(e,t){var n=0;return i(u,t)?u[t]:35===t.charCodeAt(0)&&c.test(t)&&a(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?o(n):e}(e,n)}))},t.isValidEntityCode=a,t.fromCodePoint=o,t.escapeHtml=function(e){return f.test(e)?e.replace(d,p):e},t.arrayReplaceAt=function(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))},t.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},t.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},t.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},t.isPunctChar=function(e){return m.test(e)},t.escapeRE=function(e){return e.replace(v,"\\$&")},t.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"\u1e7e"==="\u1e9e".toLowerCase()&&(e=e.replace(/\u1e9e/g,"\xdf")),e.toLowerCase().toUpperCase()}},44937:function(e,t,n){"use strict";t.parseLinkLabel=n(19162),t.parseLinkDestination=n(49738),t.parseLinkTitle=n(44890)},49738:function(e,t,n){"use strict";var r=n(50786).unescapeAll;e.exports=function(e,t,n){var i,a,o=t,s={ok:!1,pos:0,lines:0,str:""};if(60===e.charCodeAt(t)){for(t++;t32)return s;if(41===i){if(0===a)break;a--}t++}return o===t||0!==a||(s.str=r(e.slice(o,t)),s.lines=0,s.pos=t,s.ok=!0),s}},19162:function(e){"use strict";e.exports=function(e,t,n){var r,i,a,o,s=-1,l=e.posMax,c=e.pos;for(e.pos=t+1,r=1;e.pos=n)return l;if(34!==(a=e.charCodeAt(t))&&39!==a&&40!==a)return l;for(t++,40===a&&(a=41);t=0))try{t.hostname=f.toASCII(t.hostname)}catch(n){}return u.encode(u.format(t))}function y(e){var t=u.parse(e,!0);if(t.hostname&&(!t.protocol||m.indexOf(t.protocol)>=0))try{t.hostname=f.toUnicode(t.hostname)}catch(n){}return u.decode(u.format(t),u.decode.defaultChars+"%")}function b(e,t){if(!(this instanceof b))return new b(e,t);t||r.isString(e)||(t=e||{},e="default"),this.inline=new l,this.block=new s,this.core=new o,this.renderer=new a,this.linkify=new c,this.validateLink=v,this.normalizeLink=g,this.normalizeLinkText=y,this.utils=r,this.helpers=r.assign({},i),this.options={},this.configure(e),t&&this.set(t)}b.prototype.set=function(e){return r.assign(this.options,e),this},b.prototype.configure=function(e){var t,n=this;if(r.isString(e)&&!(e=d[t=e]))throw new Error('Wrong `markdown-it` preset "'+t+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach((function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)})),this},b.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.enable(e,!0))}),this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter((function(e){return n.indexOf(e)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},b.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.disable(e,!0))}),this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter((function(e){return n.indexOf(e)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},b.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},b.prototype.parse=function(e,t){if("string"!==typeof e)throw new Error("Input data should be a String");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},b.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},b.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},b.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=b},97782:function(e,t,n){"use strict";var r=n(88674),i=[["table",n(69399),["paragraph","reference"]],["code",n(25078)],["fence",n(61077),["paragraph","reference","blockquote","list"]],["blockquote",n(99224),["paragraph","reference","blockquote","list"]],["hr",n(97542),["paragraph","reference","blockquote","list"]],["list",n(27168),["paragraph","reference","blockquote"]],["reference",n(39277)],["html_block",n(65672),["paragraph","reference","blockquote"]],["heading",n(40969),["paragraph","reference","blockquote"]],["lheading",n(7671)],["paragraph",n(66572)]];function a(){this.ruler=new r;for(var e=0;e=n))&&!(e.sCount[o]=l){e.line=n;break}for(r=0;r=a)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},o.prototype.parse=function(e,t,n,r){var i,a,o,s=new this.State(e,t,n,r);for(this.tokenize(s),o=(a=this.ruler2.getRules("")).length,i=0;i"+a(e[t].content)+""},o.code_block=function(e,t,n,r,i){var o=e[t];return""+a(e[t].content)+"\n"},o.fence=function(e,t,n,r,o){var s,l,c,u,f,d=e[t],h=d.info?i(d.info).trim():"",p="",v="";return h&&(p=(c=h.split(/(\s+)/g))[0],v=c.slice(2).join("")),0===(s=n.highlight&&n.highlight(d.content,p,v)||a(d.content)).indexOf(""+s+"\n"):"
"+s+"
\n"},o.image=function(e,t,n,r,i){var a=e[t];return a.attrs[a.attrIndex("alt")][1]=i.renderInlineAsText(a.children,n,r),i.renderToken(e,t,n)},o.hardbreak=function(e,t,n){return n.xhtmlOut?"
\n":"
\n"},o.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"
\n":"
\n":"\n"},o.text=function(e,t){return a(e[t].content)},o.html_block=function(e,t){return e[t].content},o.html_inline=function(e,t){return e[t].content},s.prototype.renderAttrs=function(e){var t,n,r;if(!e.attrs)return"";for(r="",t=0,n=e.attrs.length;t\n":">")},s.prototype.renderInline=function(e,t,n){for(var r,i="",a=this.rules,o=0,s=e.length;o=4)return!1;if(62!==e.src.charCodeAt(A++))return!1;if(i)return!0;for(l=h=e.sCount[t]+1,32===e.src.charCodeAt(A)?(A++,l++,h++,a=!1,x=!0):9===e.src.charCodeAt(A)?(x=!0,(e.bsCount[t]+h)%4===3?(A++,l++,h++,a=!1):a=!0):x=!1,p=[e.bMarks[t]],e.bMarks[t]=A;A=E,y=[e.sCount[t]],e.sCount[t]=h-l,b=[e.tShift[t]],e.tShift[t]=A-e.bMarks[t],_=e.md.block.ruler.getRules("blockquote"),g=e.parentType,e.parentType="blockquote",d=t+1;d=(E=e.eMarks[d])));d++)if(62!==e.src.charCodeAt(A++)||S){if(u)break;for(w=!1,s=0,c=_.length;s=E,v.push(e.bsCount[d]),e.bsCount[d]=e.sCount[d]+1+(x?1:0),y.push(e.sCount[d]),e.sCount[d]=h-l,b.push(e.tShift[d]),e.tShift[d]=A-e.bMarks[d]}for(m=e.blkIndent,e.blkIndent=0,(k=e.push("blockquote_open","blockquote",1)).markup=">",k.map=f=[t,0],e.md.block.tokenize(e,t,d),(k=e.push("blockquote_close","blockquote",-1)).markup=">",e.lineMax=T,e.parentType=g,f[1]=e.line,s=0;s=4))break;i=++r}return e.line=i,(a=e.push("code_block","code",0)).content=e.getLines(t,i,4+e.blkIndent,!1)+"\n",a.map=[t,e.line],!0}},61077:function(e){"use strict";e.exports=function(e,t,n,r){var i,a,o,s,l,c,u,f=!1,d=e.bMarks[t]+e.tShift[t],h=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(d+3>h)return!1;if(126!==(i=e.src.charCodeAt(d))&&96!==i)return!1;if(l=d,(a=(d=e.skipChars(d,i))-l)<3)return!1;if(u=e.src.slice(l,d),o=e.src.slice(d,h),96===i&&o.indexOf(String.fromCharCode(i))>=0)return!1;if(r)return!0;for(s=t;!(++s>=n)&&!((d=l=e.bMarks[s]+e.tShift[s])<(h=e.eMarks[s])&&e.sCount[s]=4)&&!((d=e.skipChars(d,i))-l=4)return!1;if(35!==(a=e.src.charCodeAt(c))||c>=u)return!1;for(o=1,a=e.src.charCodeAt(++c);35===a&&c6||cc&&r(e.src.charCodeAt(s-1))&&(u=s),e.line=t+1,(l=e.push("heading_open","h"+String(o),1)).markup="########".slice(0,o),l.map=[t,e.line],(l=e.push("inline","",0)).content=e.src.slice(c,u).trim(),l.map=[t,e.line],l.children=[],(l=e.push("heading_close","h"+String(o),-1)).markup="########".slice(0,o)),!0)}},97542:function(e,t,n){"use strict";var r=n(50786).isSpace;e.exports=function(e,t,n,i){var a,o,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(42!==(a=e.src.charCodeAt(c++))&&45!==a&&95!==a)return!1;for(o=1;c|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(i.source+"\\s*$"),/^$/,!1]];e.exports=function(e,t,n,r){var i,o,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(c))return!1;for(l=e.src.slice(c,u),i=0;i=4)return!1;for(d=e.parentType,e.parentType="paragraph";h3)){if(e.sCount[h]>=e.blkIndent&&(l=e.bMarks[h]+e.tShift[h])<(c=e.eMarks[h])&&(45===(f=e.src.charCodeAt(l))||61===f)&&(l=e.skipChars(l,f),(l=e.skipSpaces(l))>=c)){u=61===f?1:2;break}if(!(e.sCount[h]<0)){for(i=!1,a=0,o=p.length;a=o)return-1;if((n=e.src.charCodeAt(a++))<48||n>57)return-1;for(;;){if(a>=o)return-1;if(!((n=e.src.charCodeAt(a++))>=48&&n<=57)){if(41===n||46===n)break;return-1}if(a-i>=10)return-1}return a=4)return!1;if(e.listIndent>=0&&e.sCount[t]-e.listIndent>=4&&e.sCount[t]=e.blkIndent&&(R=!0),(C=a(e,t))>=0){if(d=!0,O=e.bMarks[t]+e.tShift[t],y=Number(e.src.slice(O,C-1)),R&&1!==y)return!1}else{if(!((C=i(e,t))>=0))return!1;d=!1}if(R&&e.skipSpaces(C)>=e.eMarks[t])return!1;if(g=e.src.charCodeAt(C-1),r)return!0;for(m=e.tokens.length,d?(I=e.push("ordered_list_open","ol",1),1!==y&&(I.attrs=[["start",y]])):I=e.push("bullet_list_open","ul",1),I.map=v=[t,0],I.markup=String.fromCharCode(g),x=t,M=!1,L=e.md.block.ruler.getRules("list"),k=e.parentType,e.parentType="list";x=b?1:w-f)>4&&(u=1),c=f+u,(I=e.push("list_item_open","li",1)).markup=String.fromCharCode(g),I.map=h=[t,0],d&&(I.info=e.src.slice(O,C-1)),A=e.tight,T=e.tShift[t],S=e.sCount[t],_=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=c,e.tight=!0,e.tShift[t]=s-e.bMarks[t],e.sCount[t]=w,s>=b&&e.isEmpty(t+1)?e.line=Math.min(e.line+2,n):e.md.block.tokenize(e,t,n,!0),e.tight&&!M||(D=!1),M=e.line-t>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=_,e.tShift[t]=T,e.sCount[t]=S,e.tight=A,(I=e.push("list_item_close","li",-1)).markup=String.fromCharCode(g),x=t=e.line,h[1]=x,s=e.bMarks[t],x>=n)break;if(e.sCount[x]=4)break;for(P=!1,l=0,p=L.length;l3)&&!(e.sCount[l]<0)){for(r=!1,i=0,a=c.length;i=4)return!1;if(91!==e.src.charCodeAt(k))return!1;for(;++k3)&&!(e.sCount[T]<0)){for(b=!1,f=0,d=x.length;f0&&this.level++,this.tokens.push(i),i},a.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},a.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;et;)if(!i(this.src.charCodeAt(--e)))return e+1;return e},a.prototype.skipChars=function(e,t){for(var n=this.src.length;en;)if(t!==this.src.charCodeAt(--e))return e+1;return e},a.prototype.getLines=function(e,t,n,r){var a,o,s,l,c,u,f,d=e;if(e>=t)return"";for(u=new Array(t-e),a=0;dn?new Array(o-n+1).join(" ")+this.src.slice(l,c):this.src.slice(l,c)}return u.join("")},a.prototype.Token=r,e.exports=a},69399:function(e,t,n){"use strict";var r=n(50786).isSpace;function i(e,t){var n=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.slice(n,r)}function a(e){var t,n=[],r=0,i=e.length,a=!1,o=0,s="";for(t=e.charCodeAt(r);rn)return!1;if(d=t+1,e.sCount[d]=4)return!1;if((c=e.bMarks[d]+e.tShift[d])>=e.eMarks[d])return!1;if(124!==(k=e.src.charCodeAt(c++))&&45!==k&&58!==k)return!1;if(c>=e.eMarks[d])return!1;if(124!==(S=e.src.charCodeAt(c++))&&45!==S&&58!==S&&!r(S))return!1;if(45===k&&r(S))return!1;for(;c=4)return!1;if((h=a(l)).length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),0===(p=h.length)||p!==m.length)return!1;if(o)return!0;for(x=e.parentType,e.parentType="table",_=e.md.block.ruler.getRules("blockquote"),(v=e.push("table_open","table",1)).map=y=[t,0],(v=e.push("thead_open","thead",1)).map=[t,t+1],(v=e.push("tr_open","tr",1)).map=[t,t+1],u=0;u=4)break;for((h=a(l)).length&&""===h[0]&&h.shift(),h.length&&""===h[h.length-1]&&h.pop(),d===t+2&&((v=e.push("tbody_open","tbody",1)).map=b=[t+2,0]),(v=e.push("tr_open","tr",1)).map=[d,d+1],u=0;u/i.test(e)}e.exports=function(e){var t,n,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w=e.tokens;if(e.md.options.linkify)for(n=0,a=w.length;n=0;t--)if("link_close"!==(l=o[t]).type){if("html_inline"===l.type&&(x=l.content,/^\s]/i.test(x)&&v>0&&v--,i(l.content)&&v++),!(v>0)&&"text"===l.type&&e.md.linkify.test(l.content)){for(f=l.content,b=e.md.linkify.match(f),c=[],p=l.level,h=0,b.length>0&&0===b[0].index&&t>0&&"text_special"===o[t-1].type&&(b=b.slice(1)),u=0;uh&&((s=new e.Token("text","",0)).content=f.slice(h,d),s.level=p,c.push(s)),(s=new e.Token("link_open","a",1)).attrs=[["href",g]],s.level=p++,s.markup="linkify",s.info="auto",c.push(s),(s=new e.Token("text","",0)).content=y,s.level=p,c.push(s),(s=new e.Token("link_close","a",-1)).level=--p,s.markup="linkify",s.info="auto",c.push(s),h=b[u].lastIndex);h=0;t--)"text"!==(n=e[t]).type||i||(n.content=n.content.replace(r,a)),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}function s(e){var n,r,i=0;for(n=e.length-1;n>=0;n--)"text"!==(r=e[n]).type||i||t.test(r.content)&&(r.content=r.content.replace(/\+-/g,"\xb1").replace(/\.{2,}/g,"\u2026").replace(/([?!])\u2026/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1\u2014").replace(/(^|\s)--(?=\s|$)/gm,"$1\u2013").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1\u2013")),"link_open"===r.type&&"auto"===r.info&&i--,"link_close"===r.type&&"auto"===r.info&&i++}e.exports=function(e){var r;if(e.md.options.typographer)for(r=e.tokens.length-1;r>=0;r--)"inline"===e.tokens[r].type&&(n.test(e.tokens[r].content)&&o(e.tokens[r].children),t.test(e.tokens[r].content)&&s(e.tokens[r].children))}},76991:function(e,t,n){"use strict";var r=n(50786).isWhiteSpace,i=n(50786).isPunctChar,a=n(50786).isMdAsciiPunct,o=/['"]/,s=/['"]/g;function l(e,t,n){return e.slice(0,t)+n+e.slice(t+1)}function c(e,t){var n,o,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E;for(T=[],n=0;n=0&&!(T[k].level<=h);k--);if(T.length=k+1,"text"===o.type){f=0,d=(c=o.content).length;e:for(;f=0)v=c.charCodeAt(u.index-1);else for(k=n-1;k>=0&&("softbreak"!==e[k].type&&"hardbreak"!==e[k].type);k--)if(e[k].content){v=e[k].content.charCodeAt(e[k].content.length-1);break}if(m=32,f=48&&v<=57&&(_=w=!1),w&&_&&(w=g,_=y),w||_){if(_)for(k=T.length-1;k>=0&&(p=T[k],!(T[k].level=0;t--)"inline"===e.tokens[t].type&&o.test(e.tokens[t].content)&&c(e.tokens[t].children,e)}},73311:function(e,t,n){"use strict";var r=n(50596);function i(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}i.prototype.Token=r,e.exports=i},69528:function(e){"use strict";e.exports=function(e){var t,n,r,i,a,o,s=e.tokens;for(t=0,n=s.length;t\x00-\x20]*)$/;e.exports=function(e,r){var i,a,o,s,l,c,u=e.pos;if(60!==e.src.charCodeAt(u))return!1;for(l=e.pos,c=e.posMax;;){if(++u>=c)return!1;if(60===(s=e.src.charCodeAt(u)))return!1;if(62===s)break}return i=e.src.slice(l+1,u),n.test(i)?(a=e.md.normalizeLink(i),!!e.md.validateLink(a)&&(r||((o=e.push("link_open","a",1)).attrs=[["href",a]],o.markup="autolink",o.info="auto",(o=e.push("text","",0)).content=e.md.normalizeLinkText(i),(o=e.push("link_close","a",-1)).markup="autolink",o.info="auto"),e.pos+=i.length+2,!0)):!!t.test(i)&&(a=e.md.normalizeLink("mailto:"+i),!!e.md.validateLink(a)&&(r||((o=e.push("link_open","a",1)).attrs=[["href",a]],o.markup="autolink",o.info="auto",(o=e.push("text","",0)).content=e.md.normalizeLinkText(i),(o=e.push("link_close","a",-1)).markup="autolink",o.info="auto"),e.pos+=i.length+2,!0))}},7860:function(e){"use strict";e.exports=function(e,t){var n,r,i,a,o,s,l,c,u=e.pos;if(96!==e.src.charCodeAt(u))return!1;for(n=u,u++,r=e.posMax;uo;r-=p[r]+1)if((a=t[r]).marker===i.marker&&a.open&&a.end<0&&(l=!1,(a.close||i.open)&&(a.length+i.length)%3===0&&(a.length%3===0&&i.length%3===0||(l=!0)),!l)){c=r>0&&!t[r-1].open?p[r-1]+1:0,p[n]=n-r+c,p[r]=c,i.open=!1,a.end=n,a.close=!1,s=-1,h=-2;break}-1!==s&&(u[i.marker][(i.open?3:0)+(i.length||0)%3]=s)}}}e.exports=function(e){var n,r=e.tokens_meta,i=e.tokens_meta.length;for(t(0,e.delimiters),n=0;n=0;n--)95!==(r=t[n]).marker&&42!==r.marker||-1!==r.end&&(i=t[r.end],s=n>0&&t[n-1].end===r.end+1&&t[n-1].marker===r.marker&&t[n-1].token===r.token-1&&t[r.end+1].token===i.token+1,o=String.fromCharCode(r.marker),(a=e.tokens[r.token]).type=s?"strong_open":"em_open",a.tag=s?"strong":"em",a.nesting=1,a.markup=s?o+o:o,a.content="",(a=e.tokens[i.token]).type=s?"strong_close":"em_close",a.tag=s?"strong":"em",a.nesting=-1,a.markup=s?o+o:o,a.content="",s&&(e.tokens[t[n-1].token].content="",e.tokens[t[r.end+1].token].content="",n--))}e.exports.w=function(e,t){var n,r,i=e.pos,a=e.src.charCodeAt(i);if(t)return!1;if(95!==a&&42!==a)return!1;for(r=e.scanDelims(e.pos,42===a),n=0;n=d)return!1;if(35===e.src.charCodeAt(f+1)){if(c=e.src.slice(f).match(s))return t||(n="x"===c[1][0].toLowerCase()?parseInt(c[1].slice(1),16):parseInt(c[1],10),(u=e.push("text_special","",0)).content=a(n)?o(n):o(65533),u.markup=c[0],u.info="entity"),e.pos+=c[0].length,!0}else if((c=e.src.slice(f).match(l))&&i(r,c[1]))return t||((u=e.push("text_special","",0)).content=r[c[1]],u.markup=c[0],u.info="entity"),e.pos+=c[0].length,!0;return!1}},34072:function(e,t,n){"use strict";for(var r=n(50786).isSpace,i=[],a=0;a<256;a++)i.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach((function(e){i[e.charCodeAt(0)]=1})),e.exports=function(e,t){var n,a,o,s,l,c=e.pos,u=e.posMax;if(92!==e.src.charCodeAt(c))return!1;if(++c>=u)return!1;if(10===(n=e.src.charCodeAt(c))){for(t||e.push("hardbreak","br",0),c++;c=55296&&n<=56319&&c+1=56320&&a<=57343&&(s+=e.src[c+1],c++),o="\\"+s,t||(l=e.push("text_special","",0),n<256&&0!==i[n]?l.content=s:l.content=o,l.markup=o,l.info="escape"),e.pos=c+1,!0}},51783:function(e){"use strict";e.exports=function(e){var t,n,r=0,i=e.tokens,a=e.tokens.length;for(t=n=0;t0&&r++,"text"===i[t].type&&t+1=a)&&(!(33!==(n=e.src.charCodeAt(l+1))&&63!==n&&47!==n&&!function(e){var t=32|e;return t>=97&&t<=122}(n))&&(!!(i=e.src.slice(l).match(r))&&(t||((o=e.push("html_inline","",0)).content=e.src.slice(l,l+i[0].length),s=o.content,/^\s]/i.test(s)&&e.linkLevel++,function(e){return/^<\/a\s*>/i.test(e)}(o.content)&&e.linkLevel--),e.pos+=i[0].length,!0))))}},11677:function(e,t,n){"use strict";var r=n(50786).normalizeReference,i=n(50786).isSpace;e.exports=function(e,t){var n,a,o,s,l,c,u,f,d,h,p,v,m,g="",y=e.pos,b=e.posMax;if(33!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;if(c=e.pos+2,(l=e.md.helpers.parseLinkLabel(e,e.pos+1,!1))<0)return!1;if((u=l+1)=b)return!1;for(m=u,(d=e.md.helpers.parseLinkDestination(e.src,u,e.posMax)).ok&&(g=e.md.normalizeLink(d.str),e.md.validateLink(g)?u=d.pos:g=""),m=u;u=b||41!==e.src.charCodeAt(u))return e.pos=y,!1;u++}else{if("undefined"===typeof e.env.references)return!1;if(u=0?s=e.src.slice(m,u++):u=l+1):u=l+1,s||(s=e.src.slice(c,l)),!(f=e.env.references[r(s)]))return e.pos=y,!1;g=f.href,h=f.title}return t||(o=e.src.slice(c,l),e.md.inline.parse(o,e.md,e.env,v=[]),(p=e.push("image","img",0)).attrs=n=[["src",g],["alt",""]],p.children=v,p.content=o,h&&n.push(["title",h])),e.pos=u,e.posMax=b,!0}},89384:function(e,t,n){"use strict";var r=n(50786).normalizeReference,i=n(50786).isSpace;e.exports=function(e,t){var n,a,o,s,l,c,u,f,d="",h="",p=e.pos,v=e.posMax,m=e.pos,g=!0;if(91!==e.src.charCodeAt(e.pos))return!1;if(l=e.pos+1,(s=e.md.helpers.parseLinkLabel(e,e.pos,!0))<0)return!1;if((c=s+1)=v)return!1;if(m=c,(u=e.md.helpers.parseLinkDestination(e.src,c,e.posMax)).ok){for(d=e.md.normalizeLink(u.str),e.md.validateLink(d)?c=u.pos:d="",m=c;c=v||41!==e.src.charCodeAt(c))&&(g=!0),c++}if(g){if("undefined"===typeof e.env.references)return!1;if(c=0?o=e.src.slice(m,c++):c=s+1):c=s+1,o||(o=e.src.slice(l,s)),!(f=e.env.references[r(o)]))return e.pos=p,!1;d=f.href,h=f.title}return t||(e.pos=l,e.posMax=s,e.push("link_open","a",1).attrs=n=[["href",d]],h&&n.push(["title",h]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,e.push("link_close","a",-1)),e.pos=c,e.posMax=v,!0}},57697:function(e){"use strict";var t=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i;e.exports=function(e,n){var r,i,a,o,s,l,c;return!!e.md.options.linkify&&(!(e.linkLevel>0)&&(!((r=e.pos)+3>e.posMax)&&(58===e.src.charCodeAt(r)&&(47===e.src.charCodeAt(r+1)&&(47===e.src.charCodeAt(r+2)&&(!!(i=e.pending.match(t))&&(a=i[1],!!(o=e.md.linkify.matchAtStart(e.src.slice(r-a.length)))&&(s=(s=o.url).replace(/\*+$/,""),l=e.md.normalizeLink(s),!!e.md.validateLink(l)&&(n||(e.pending=e.pending.slice(0,-a.length),(c=e.push("link_open","a",1)).attrs=[["href",l]],c.markup="linkify",c.info="auto",(c=e.push("text","",0)).content=e.md.normalizeLinkText(s),(c=e.push("link_close","a",-1)).markup="linkify",c.info="auto"),e.pos+=s.length-a.length,!0)))))))))}},26179:function(e,t,n){"use strict";var r=n(50786).isSpace;e.exports=function(e,t){var n,i,a,o=e.pos;if(10!==e.src.charCodeAt(o))return!1;if(n=e.pending.length-1,i=e.posMax,!t)if(n>=0&&32===e.pending.charCodeAt(n))if(n>=1&&32===e.pending.charCodeAt(n-1)){for(a=n-1;a>=1&&32===e.pending.charCodeAt(a-1);)a--;e.pending=e.pending.slice(0,a),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0);else e.push("softbreak","br",0);for(o++;o0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],a={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(i),this.tokens_meta.push(a),i},s.prototype.scanDelims=function(e,t){var n,r,s,l,c,u,f,d,h,p=e,v=!0,m=!0,g=this.posMax,y=this.src.charCodeAt(e);for(n=e>0?this.src.charCodeAt(e-1):32;p=0&&(n=this.attrs[t][1]),n},t.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t},e.exports=t},16762:function(e){"use strict";var t={};function n(e,r){var i;return"string"!==typeof r&&(r=n.defaultChars),i=function(e){var n,r,i=t[e];if(i)return i;for(i=t[e]=[],n=0;n<128;n++)r=String.fromCharCode(n),i.push(r);for(n=0;n=55296&&l<=57343?"\ufffd\ufffd\ufffd":String.fromCharCode(l),t+=6):240===(248&r)&&t+91114111?c+="\ufffd\ufffd\ufffd\ufffd":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),t+=9):c+="\ufffd";return c}))}n.defaultChars=";/?:@&=+$,#",n.componentChars="",e.exports=n},22366:function(e){"use strict";var t={};function n(e,r,i){var a,o,s,l,c,u="";for("string"!==typeof r&&(i=r,r=n.defaultChars),"undefined"===typeof i&&(i=!0),c=function(e){var n,r,i=t[e];if(i)return i;for(i=t[e]=[],n=0;n<128;n++)r=String.fromCharCode(n),/^[0-9a-z]$/i.test(r)?i.push(r):i.push("%"+("0"+n.toString(16).toUpperCase()).slice(-2));for(n=0;n=55296&&s<=57343){if(s>=55296&&s<=56319&&a+1=56320&&l<=57343){u+=encodeURIComponent(e[a]+e[a+1]),a++;continue}u+="%EF%BF%BD"}else u+=encodeURIComponent(e[a]);return u}n.defaultChars=";/?:@&=+$,-_.!~*'()#",n.componentChars="-_.!~*'()",e.exports=n},20835:function(e){"use strict";e.exports=function(e){var t="";return t+=e.protocol||"",t+=e.slashes?"//":"",t+=e.auth?e.auth+"@":"",e.hostname&&-1!==e.hostname.indexOf(":")?t+="["+e.hostname+"]":t+=e.hostname||"",t+=e.port?":"+e.port:"",t+=e.pathname||"",t+=e.search||"",t+=e.hash||""}},83461:function(e,t,n){"use strict";e.exports.encode=n(22366),e.exports.decode=n(16762),e.exports.format=n(20835),e.exports.parse=n(99944)},99944:function(e){"use strict";function t(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var n=/^([a-z0-9.+-]+:)/i,r=/:[0-9]*$/,i=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,a=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),o=["'"].concat(a),s=["%","/","?",";","#"].concat(o),l=["/","?","#"],c=/^[+a-z0-9A-Z_-]{0,63}$/,u=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,f={javascript:!0,"javascript:":!0},d={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};t.prototype.parse=function(e,t){var r,a,o,h,p,v=e;if(v=v.trim(),!t&&1===e.split("#").length){var m=i.exec(v);if(m)return this.pathname=m[1],m[2]&&(this.search=m[2]),this}var g=n.exec(v);if(g&&(o=(g=g[0]).toLowerCase(),this.protocol=g,v=v.substr(g.length)),(t||g||v.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(p="//"===v.substr(0,2))||g&&f[g]||(v=v.substr(2),this.slashes=!0)),!f[g]&&(p||g&&!d[g])){var y,b,x=-1;for(r=0;r127?T+="x":T+=S[A];if(!T.match(c)){var C=k.slice(0,r),M=k.slice(r+1),O=S.match(u);O&&(C.push(O[1]),M.unshift(O[2])),M.length&&(v=M.join(".")+v),this.hostname=C.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),_&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var P=v.indexOf("#");-1!==P&&(this.hash=v.substr(P),v=v.slice(0,P));var L=v.indexOf("?");return-1!==L&&(this.search=v.substr(L),v=v.slice(0,L)),v&&(this.pathname=v),d[o]&&this.hostname&&!this.pathname&&(this.pathname=""),this},t.prototype.parseHost=function(e){var t=r.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=function(e,n){if(e&&e instanceof t)return e;var r=new t;return r.parse(e,n),r}},83540:function(e,t,n){"use strict";var r=n(56690).default,i=n(89728).default,a=n(61655).default,o=n(26389).default,s=n(17061).default,l=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))((function(i,a){function o(e){try{l(r.next(e))}catch(t){a(t)}}function s(e){try{l(r.throw(e))}catch(t){a(t)}}function l(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(o,s)}l((r=r.apply(e,t||[])).next())}))};Object.defineProperty(t,"__esModule",{value:!0}),t.OpenAIApi=t.OpenAIApiFactory=t.OpenAIApiFp=t.OpenAIApiAxiosParamCreator=t.CreateImageRequestResponseFormatEnum=t.CreateImageRequestSizeEnum=t.ChatCompletionResponseMessageRoleEnum=t.ChatCompletionRequestMessageRoleEnum=void 0;var c=n(74569),u=n(73215),f=n(91751);t.ChatCompletionRequestMessageRoleEnum={System:"system",User:"user",Assistant:"assistant",Function:"function"},t.ChatCompletionResponseMessageRoleEnum={System:"system",User:"user",Assistant:"assistant",Function:"function"},t.CreateImageRequestSizeEnum={_256x256:"256x256",_512x512:"512x512",_1024x1024:"1024x1024"},t.CreateImageRequestResponseFormatEnum={Url:"url",B64Json:"b64_json"},t.OpenAIApiAxiosParamCreator=function(e){var t=this;return{cancelFineTune:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("cancelFineTune","fineTuneId",n),i="/fine-tunes/{fine_tune_id}/cancel".replace("{".concat("fine_tune_id","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"POST"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))},createAnswer:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createAnswer","createAnswerRequest",n),"/answers",i=new URL("/answers",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createChatCompletion:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createChatCompletion","createChatCompletionRequest",n),"/chat/completions",i=new URL("/chat/completions",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createClassification:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createClassification","createClassificationRequest",n),"/classifications",i=new URL("/classifications",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createCompletion:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createCompletion","createCompletionRequest",n),"/completions",i=new URL("/completions",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createEdit:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createEdit","createEditRequest",n),"/edits",i=new URL("/edits",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createEmbedding:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createEmbedding","createEmbeddingRequest",n),"/embeddings",i=new URL("/embeddings",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createFile:function(n,r){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return l(t,void 0,void 0,s().mark((function t(){var a,o,l,c,f,d,h;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createFile","file",n),u.assertParamExists("createFile","purpose",r),"/files",a=new URL("/files",u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"POST"},o),i),c={},f={},d=new(e&&e.formDataCtor||FormData),void 0!==n&&d.append("file",n),void 0!==r&&d.append("purpose",r),c["Content-Type"]="multipart/form-data",u.setSearchParams(a,f),h=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign(Object.assign({},c),d.getHeaders()),h),i.headers),l.data=d,t.abrupt("return",{url:u.toPathString(a),options:l});case 17:case"end":return t.stop()}}),t)})))},createFineTune:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createFineTune","createFineTuneRequest",n),"/fine-tunes",i=new URL("/fine-tunes",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createImage:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createImage","createImageRequest",n),"/images/generations",i=new URL("/images/generations",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createImageEdit:function(n,r,i,a,o,c,f){var d=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{};return l(t,void 0,void 0,s().mark((function t(){var l,h,p,v,m,g,y;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createImageEdit","image",n),u.assertParamExists("createImageEdit","prompt",r),"/images/edits",l=new URL("/images/edits",u.DUMMY_BASE_URL),e&&(h=e.baseOptions),p=Object.assign(Object.assign({method:"POST"},h),d),v={},m={},g=new(e&&e.formDataCtor||FormData),void 0!==n&&g.append("image",n),void 0!==i&&g.append("mask",i),void 0!==r&&g.append("prompt",r),void 0!==a&&g.append("n",a),void 0!==o&&g.append("size",o),void 0!==c&&g.append("response_format",c),void 0!==f&&g.append("user",f),v["Content-Type"]="multipart/form-data",u.setSearchParams(l,m),y=h&&h.headers?h.headers:{},p.headers=Object.assign(Object.assign(Object.assign(Object.assign({},v),g.getHeaders()),y),d.headers),p.data=g,t.abrupt("return",{url:u.toPathString(l),options:p});case 22:case"end":return t.stop()}}),t)})))},createImageVariation:function(n,r,i,a,o){var c=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return l(t,void 0,void 0,s().mark((function t(){var l,f,d,h,p,v,m;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createImageVariation","image",n),"/images/variations",l=new URL("/images/variations",u.DUMMY_BASE_URL),e&&(f=e.baseOptions),d=Object.assign(Object.assign({method:"POST"},f),c),h={},p={},v=new(e&&e.formDataCtor||FormData),void 0!==n&&v.append("image",n),void 0!==r&&v.append("n",r),void 0!==i&&v.append("size",i),void 0!==a&&v.append("response_format",a),void 0!==o&&v.append("user",o),h["Content-Type"]="multipart/form-data",u.setSearchParams(l,p),m=f&&f.headers?f.headers:{},d.headers=Object.assign(Object.assign(Object.assign(Object.assign({},h),v.getHeaders()),m),c.headers),d.data=v,t.abrupt("return",{url:u.toPathString(l),options:d});case 19:case"end":return t.stop()}}),t)})))},createModeration:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createModeration","createModerationRequest",n),"/moderations",i=new URL("/moderations",u.DUMMY_BASE_URL),e&&(a=e.baseOptions),o=Object.assign(Object.assign({method:"POST"},a),r),c={},(l={})["Content-Type"]="application/json",u.setSearchParams(i,c),f=a&&a.headers?a.headers:{},o.headers=Object.assign(Object.assign(Object.assign({},l),f),r.headers),o.data=u.serializeDataIfNeeded(n,o,e),t.abrupt("return",{url:u.toPathString(i),options:o});case 13:case"end":return t.stop()}}),t)})))},createSearch:function(n,r){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return l(t,void 0,void 0,s().mark((function t(){var a,o,l,c,f,d,h;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createSearch","engineId",n),u.assertParamExists("createSearch","createSearchRequest",r),a="/engines/{engine_id}/search".replace("{".concat("engine_id","}"),encodeURIComponent(String(n))),o=new URL(a,u.DUMMY_BASE_URL),e&&(l=e.baseOptions),c=Object.assign(Object.assign({method:"POST"},l),i),d={},(f={})["Content-Type"]="application/json",u.setSearchParams(o,d),h=l&&l.headers?l.headers:{},c.headers=Object.assign(Object.assign(Object.assign({},f),h),i.headers),c.data=u.serializeDataIfNeeded(r,c,e),t.abrupt("return",{url:u.toPathString(o),options:c});case 14:case"end":return t.stop()}}),t)})))},createTranscription:function(n,r,i,a,o,c){var f=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{};return l(t,void 0,void 0,s().mark((function t(){var l,d,h,p,v,m,g;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createTranscription","file",n),u.assertParamExists("createTranscription","model",r),"/audio/transcriptions",l=new URL("/audio/transcriptions",u.DUMMY_BASE_URL),e&&(d=e.baseOptions),h=Object.assign(Object.assign({method:"POST"},d),f),p={},v={},m=new(e&&e.formDataCtor||FormData),void 0!==n&&m.append("file",n),void 0!==r&&m.append("model",r),void 0!==i&&m.append("prompt",i),void 0!==a&&m.append("response_format",a),void 0!==o&&m.append("temperature",o),void 0!==c&&m.append("language",c),p["Content-Type"]="multipart/form-data",u.setSearchParams(l,v),g=d&&d.headers?d.headers:{},h.headers=Object.assign(Object.assign(Object.assign(Object.assign({},p),m.getHeaders()),g),f.headers),h.data=m,t.abrupt("return",{url:u.toPathString(l),options:h});case 21:case"end":return t.stop()}}),t)})))},createTranslation:function(n,r,i,a,o){var c=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return l(t,void 0,void 0,s().mark((function t(){var l,f,d,h,p,v,m;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("createTranslation","file",n),u.assertParamExists("createTranslation","model",r),"/audio/translations",l=new URL("/audio/translations",u.DUMMY_BASE_URL),e&&(f=e.baseOptions),d=Object.assign(Object.assign({method:"POST"},f),c),h={},p={},v=new(e&&e.formDataCtor||FormData),void 0!==n&&v.append("file",n),void 0!==r&&v.append("model",r),void 0!==i&&v.append("prompt",i),void 0!==a&&v.append("response_format",a),void 0!==o&&v.append("temperature",o),h["Content-Type"]="multipart/form-data",u.setSearchParams(l,p),m=f&&f.headers?f.headers:{},d.headers=Object.assign(Object.assign(Object.assign(Object.assign({},h),v.getHeaders()),m),c.headers),d.data=v,t.abrupt("return",{url:u.toPathString(l),options:d});case 20:case"end":return t.stop()}}),t)})))},deleteFile:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("deleteFile","fileId",n),i="/files/{file_id}".replace("{".concat("file_id","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"DELETE"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))},deleteModel:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("deleteModel","model",n),i="/models/{model}".replace("{".concat("model","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"DELETE"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))},downloadFile:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("downloadFile","fileId",n),i="/files/{file_id}/content".replace("{".concat("file_id","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"GET"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))},listEngines:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return l(t,void 0,void 0,s().mark((function t(){var r,i,a,o,l,c;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return"/engines",r=new URL("/engines",u.DUMMY_BASE_URL),e&&(i=e.baseOptions),a=Object.assign(Object.assign({method:"GET"},i),n),o={},l={},u.setSearchParams(r,l),c=i&&i.headers?i.headers:{},a.headers=Object.assign(Object.assign(Object.assign({},o),c),n.headers),t.abrupt("return",{url:u.toPathString(r),options:a});case 10:case"end":return t.stop()}}),t)})))},listFiles:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return l(t,void 0,void 0,s().mark((function t(){var r,i,a,o,l,c;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return"/files",r=new URL("/files",u.DUMMY_BASE_URL),e&&(i=e.baseOptions),a=Object.assign(Object.assign({method:"GET"},i),n),o={},l={},u.setSearchParams(r,l),c=i&&i.headers?i.headers:{},a.headers=Object.assign(Object.assign(Object.assign({},o),c),n.headers),t.abrupt("return",{url:u.toPathString(r),options:a});case 10:case"end":return t.stop()}}),t)})))},listFineTuneEvents:function(n,r){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return l(t,void 0,void 0,s().mark((function t(){var a,o,l,c,f,d,h;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("listFineTuneEvents","fineTuneId",n),a="/fine-tunes/{fine_tune_id}/events".replace("{".concat("fine_tune_id","}"),encodeURIComponent(String(n))),o=new URL(a,u.DUMMY_BASE_URL),e&&(l=e.baseOptions),c=Object.assign(Object.assign({method:"GET"},l),i),f={},d={},void 0!==r&&(d.stream=r),u.setSearchParams(o,d),h=l&&l.headers?l.headers:{},c.headers=Object.assign(Object.assign(Object.assign({},f),h),i.headers),t.abrupt("return",{url:u.toPathString(o),options:c});case 12:case"end":return t.stop()}}),t)})))},listFineTunes:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return l(t,void 0,void 0,s().mark((function t(){var r,i,a,o,l,c;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return"/fine-tunes",r=new URL("/fine-tunes",u.DUMMY_BASE_URL),e&&(i=e.baseOptions),a=Object.assign(Object.assign({method:"GET"},i),n),o={},l={},u.setSearchParams(r,l),c=i&&i.headers?i.headers:{},a.headers=Object.assign(Object.assign(Object.assign({},o),c),n.headers),t.abrupt("return",{url:u.toPathString(r),options:a});case 10:case"end":return t.stop()}}),t)})))},listModels:function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return l(t,void 0,void 0,s().mark((function t(){var r,i,a,o,l,c;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return"/models",r=new URL("/models",u.DUMMY_BASE_URL),e&&(i=e.baseOptions),a=Object.assign(Object.assign({method:"GET"},i),n),o={},l={},u.setSearchParams(r,l),c=i&&i.headers?i.headers:{},a.headers=Object.assign(Object.assign(Object.assign({},o),c),n.headers),t.abrupt("return",{url:u.toPathString(r),options:a});case 10:case"end":return t.stop()}}),t)})))},retrieveEngine:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("retrieveEngine","engineId",n),i="/engines/{engine_id}".replace("{".concat("engine_id","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"GET"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))},retrieveFile:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("retrieveFile","fileId",n),i="/files/{file_id}".replace("{".concat("file_id","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"GET"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))},retrieveFineTune:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("retrieveFineTune","fineTuneId",n),i="/fine-tunes/{fine_tune_id}".replace("{".concat("fine_tune_id","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"GET"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))},retrieveModel:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return l(t,void 0,void 0,s().mark((function t(){var i,a,o,l,c,f,d;return s().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return u.assertParamExists("retrieveModel","model",n),i="/models/{model}".replace("{".concat("model","}"),encodeURIComponent(String(n))),a=new URL(i,u.DUMMY_BASE_URL),e&&(o=e.baseOptions),l=Object.assign(Object.assign({method:"GET"},o),r),c={},f={},u.setSearchParams(a,f),d=o&&o.headers?o.headers:{},l.headers=Object.assign(Object.assign(Object.assign({},c),d),r.headers),t.abrupt("return",{url:u.toPathString(a),options:l});case 11:case"end":return t.stop()}}),t)})))}}},t.OpenAIApiFp=function(e){var n=t.OpenAIApiAxiosParamCreator(e);return{cancelFineTune:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.cancelFineTune(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createAnswer:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createAnswer(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createChatCompletion:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createChatCompletion(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createClassification:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createClassification(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createCompletion:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createCompletion(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createEdit:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createEdit(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createEmbedding:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createEmbedding(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createFile:function(t,r,i){return l(this,void 0,void 0,s().mark((function a(){var o;return s().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.next=2,n.createFile(t,r,i);case 2:return o=a.sent,a.abrupt("return",u.createRequestFunction(o,c.default,f.BASE_PATH,e));case 4:case"end":return a.stop()}}),a)})))},createFineTune:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createFineTune(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createImage:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createImage(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createImageEdit:function(t,r,i,a,o,d,h,p){return l(this,void 0,void 0,s().mark((function l(){var v;return s().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,n.createImageEdit(t,r,i,a,o,d,h,p);case 2:return v=s.sent,s.abrupt("return",u.createRequestFunction(v,c.default,f.BASE_PATH,e));case 4:case"end":return s.stop()}}),l)})))},createImageVariation:function(t,r,i,a,o,d){return l(this,void 0,void 0,s().mark((function l(){var h;return s().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,n.createImageVariation(t,r,i,a,o,d);case 2:return h=s.sent,s.abrupt("return",u.createRequestFunction(h,c.default,f.BASE_PATH,e));case 4:case"end":return s.stop()}}),l)})))},createModeration:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.createModeration(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},createSearch:function(t,r,i){return l(this,void 0,void 0,s().mark((function a(){var o;return s().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.next=2,n.createSearch(t,r,i);case 2:return o=a.sent,a.abrupt("return",u.createRequestFunction(o,c.default,f.BASE_PATH,e));case 4:case"end":return a.stop()}}),a)})))},createTranscription:function(t,r,i,a,o,d,h){return l(this,void 0,void 0,s().mark((function l(){var p;return s().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,n.createTranscription(t,r,i,a,o,d,h);case 2:return p=s.sent,s.abrupt("return",u.createRequestFunction(p,c.default,f.BASE_PATH,e));case 4:case"end":return s.stop()}}),l)})))},createTranslation:function(t,r,i,a,o,d){return l(this,void 0,void 0,s().mark((function l(){var h;return s().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:return s.next=2,n.createTranslation(t,r,i,a,o,d);case 2:return h=s.sent,s.abrupt("return",u.createRequestFunction(h,c.default,f.BASE_PATH,e));case 4:case"end":return s.stop()}}),l)})))},deleteFile:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.deleteFile(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},deleteModel:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.deleteModel(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},downloadFile:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.downloadFile(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},listEngines:function(t){return l(this,void 0,void 0,s().mark((function r(){var i;return s().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,n.listEngines(t);case 2:return i=r.sent,r.abrupt("return",u.createRequestFunction(i,c.default,f.BASE_PATH,e));case 4:case"end":return r.stop()}}),r)})))},listFiles:function(t){return l(this,void 0,void 0,s().mark((function r(){var i;return s().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,n.listFiles(t);case 2:return i=r.sent,r.abrupt("return",u.createRequestFunction(i,c.default,f.BASE_PATH,e));case 4:case"end":return r.stop()}}),r)})))},listFineTuneEvents:function(t,r,i){return l(this,void 0,void 0,s().mark((function a(){var o;return s().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.next=2,n.listFineTuneEvents(t,r,i);case 2:return o=a.sent,a.abrupt("return",u.createRequestFunction(o,c.default,f.BASE_PATH,e));case 4:case"end":return a.stop()}}),a)})))},listFineTunes:function(t){return l(this,void 0,void 0,s().mark((function r(){var i;return s().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,n.listFineTunes(t);case 2:return i=r.sent,r.abrupt("return",u.createRequestFunction(i,c.default,f.BASE_PATH,e));case 4:case"end":return r.stop()}}),r)})))},listModels:function(t){return l(this,void 0,void 0,s().mark((function r(){var i;return s().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:return r.next=2,n.listModels(t);case 2:return i=r.sent,r.abrupt("return",u.createRequestFunction(i,c.default,f.BASE_PATH,e));case 4:case"end":return r.stop()}}),r)})))},retrieveEngine:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.retrieveEngine(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},retrieveFile:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.retrieveFile(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},retrieveFineTune:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.retrieveFineTune(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))},retrieveModel:function(t,r){return l(this,void 0,void 0,s().mark((function i(){var a;return s().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:return i.next=2,n.retrieveModel(t,r);case 2:return a=i.sent,i.abrupt("return",u.createRequestFunction(a,c.default,f.BASE_PATH,e));case 4:case"end":return i.stop()}}),i)})))}}},t.OpenAIApiFactory=function(e,n,r){var i=t.OpenAIApiFp(e);return{cancelFineTune:function(e,t){return i.cancelFineTune(e,t).then((function(e){return e(r,n)}))},createAnswer:function(e,t){return i.createAnswer(e,t).then((function(e){return e(r,n)}))},createChatCompletion:function(e,t){return i.createChatCompletion(e,t).then((function(e){return e(r,n)}))},createClassification:function(e,t){return i.createClassification(e,t).then((function(e){return e(r,n)}))},createCompletion:function(e,t){return i.createCompletion(e,t).then((function(e){return e(r,n)}))},createEdit:function(e,t){return i.createEdit(e,t).then((function(e){return e(r,n)}))},createEmbedding:function(e,t){return i.createEmbedding(e,t).then((function(e){return e(r,n)}))},createFile:function(e,t,a){return i.createFile(e,t,a).then((function(e){return e(r,n)}))},createFineTune:function(e,t){return i.createFineTune(e,t).then((function(e){return e(r,n)}))},createImage:function(e,t){return i.createImage(e,t).then((function(e){return e(r,n)}))},createImageEdit:function(e,t,a,o,s,l,c,u){return i.createImageEdit(e,t,a,o,s,l,c,u).then((function(e){return e(r,n)}))},createImageVariation:function(e,t,a,o,s,l){return i.createImageVariation(e,t,a,o,s,l).then((function(e){return e(r,n)}))},createModeration:function(e,t){return i.createModeration(e,t).then((function(e){return e(r,n)}))},createSearch:function(e,t,a){return i.createSearch(e,t,a).then((function(e){return e(r,n)}))},createTranscription:function(e,t,a,o,s,l,c){return i.createTranscription(e,t,a,o,s,l,c).then((function(e){return e(r,n)}))},createTranslation:function(e,t,a,o,s,l){return i.createTranslation(e,t,a,o,s,l).then((function(e){return e(r,n)}))},deleteFile:function(e,t){return i.deleteFile(e,t).then((function(e){return e(r,n)}))},deleteModel:function(e,t){return i.deleteModel(e,t).then((function(e){return e(r,n)}))},downloadFile:function(e,t){return i.downloadFile(e,t).then((function(e){return e(r,n)}))},listEngines:function(e){return i.listEngines(e).then((function(e){return e(r,n)}))},listFiles:function(e){return i.listFiles(e).then((function(e){return e(r,n)}))},listFineTuneEvents:function(e,t,a){return i.listFineTuneEvents(e,t,a).then((function(e){return e(r,n)}))},listFineTunes:function(e){return i.listFineTunes(e).then((function(e){return e(r,n)}))},listModels:function(e){return i.listModels(e).then((function(e){return e(r,n)}))},retrieveEngine:function(e,t){return i.retrieveEngine(e,t).then((function(e){return e(r,n)}))},retrieveFile:function(e,t){return i.retrieveFile(e,t).then((function(e){return e(r,n)}))},retrieveFineTune:function(e,t){return i.retrieveFineTune(e,t).then((function(e){return e(r,n)}))},retrieveModel:function(e,t){return i.retrieveModel(e,t).then((function(e){return e(r,n)}))}}};var d=function(e){a(s,e);var n=o(s);function s(){return r(this,s),n.apply(this,arguments)}return i(s,[{key:"cancelFineTune",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).cancelFineTune(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createAnswer",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createAnswer(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createChatCompletion",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createChatCompletion(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createClassification",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createClassification(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createCompletion",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createCompletion(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createEdit",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createEdit(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createEmbedding",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createEmbedding(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createFile",value:function(e,n,r){var i=this;return t.OpenAIApiFp(this.configuration).createFile(e,n,r).then((function(e){return e(i.axios,i.basePath)}))}},{key:"createFineTune",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createFineTune(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createImage",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createImage(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createImageEdit",value:function(e,n,r,i,a,o,s,l){var c=this;return t.OpenAIApiFp(this.configuration).createImageEdit(e,n,r,i,a,o,s,l).then((function(e){return e(c.axios,c.basePath)}))}},{key:"createImageVariation",value:function(e,n,r,i,a,o){var s=this;return t.OpenAIApiFp(this.configuration).createImageVariation(e,n,r,i,a,o).then((function(e){return e(s.axios,s.basePath)}))}},{key:"createModeration",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).createModeration(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"createSearch",value:function(e,n,r){var i=this;return t.OpenAIApiFp(this.configuration).createSearch(e,n,r).then((function(e){return e(i.axios,i.basePath)}))}},{key:"createTranscription",value:function(e,n,r,i,a,o,s){var l=this;return t.OpenAIApiFp(this.configuration).createTranscription(e,n,r,i,a,o,s).then((function(e){return e(l.axios,l.basePath)}))}},{key:"createTranslation",value:function(e,n,r,i,a,o){var s=this;return t.OpenAIApiFp(this.configuration).createTranslation(e,n,r,i,a,o).then((function(e){return e(s.axios,s.basePath)}))}},{key:"deleteFile",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).deleteFile(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"deleteModel",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).deleteModel(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"downloadFile",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).downloadFile(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"listEngines",value:function(e){var n=this;return t.OpenAIApiFp(this.configuration).listEngines(e).then((function(e){return e(n.axios,n.basePath)}))}},{key:"listFiles",value:function(e){var n=this;return t.OpenAIApiFp(this.configuration).listFiles(e).then((function(e){return e(n.axios,n.basePath)}))}},{key:"listFineTuneEvents",value:function(e,n,r){var i=this;return t.OpenAIApiFp(this.configuration).listFineTuneEvents(e,n,r).then((function(e){return e(i.axios,i.basePath)}))}},{key:"listFineTunes",value:function(e){var n=this;return t.OpenAIApiFp(this.configuration).listFineTunes(e).then((function(e){return e(n.axios,n.basePath)}))}},{key:"listModels",value:function(e){var n=this;return t.OpenAIApiFp(this.configuration).listModels(e).then((function(e){return e(n.axios,n.basePath)}))}},{key:"retrieveEngine",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).retrieveEngine(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"retrieveFile",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).retrieveFile(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"retrieveFineTune",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).retrieveFineTune(e,n).then((function(e){return e(r.axios,r.basePath)}))}},{key:"retrieveModel",value:function(e,n){var r=this;return t.OpenAIApiFp(this.configuration).retrieveModel(e,n).then((function(e){return e(r.axios,r.basePath)}))}}]),s}(f.BaseAPI);t.OpenAIApi=d},91751:function(e,t,n){"use strict";var r=n(61655).default,i=n(26389).default,a=n(33496).default,o=n(89728).default,s=n(56690).default;Object.defineProperty(t,"__esModule",{value:!0}),t.RequiredError=t.BaseAPI=t.COLLECTION_FORMATS=t.BASE_PATH=void 0;var l=n(74569);t.BASE_PATH="https://api.openai.com/v1".replace(/\/+$/,""),t.COLLECTION_FORMATS={csv:",",ssv:" ",tsv:"\t",pipes:"|"};var c=o((function e(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.BASE_PATH,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:l.default;s(this,e),this.basePath=r,this.axios=i,n&&(this.configuration=n,this.basePath=n.basePath||this.basePath)}));t.BaseAPI=c;var u=function(e){r(n,e);var t=i(n);function n(e,r){var i;return s(this,n),(i=t.call(this,r)).field=e,i.name="RequiredError",i}return o(n)}(a(Error));t.RequiredError=u},73215:function(e,t,n){"use strict";var r=n(17061).default,i=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))((function(i,a){function o(e){try{l(r.next(e))}catch(t){a(t)}}function s(e){try{l(r.throw(e))}catch(t){a(t)}}function l(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(o,s)}l((r=r.apply(e,t||[])).next())}))};Object.defineProperty(t,"__esModule",{value:!0}),t.createRequestFunction=t.toPathString=t.serializeDataIfNeeded=t.setSearchParams=t.setOAuthToObject=t.setBearerAuthToObject=t.setBasicAuthToObject=t.setApiKeyToObject=t.assertParamExists=t.DUMMY_BASE_URL=void 0;var a=n(91751);function o(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";null!=t&&("object"===typeof t?Array.isArray(t)?t.forEach((function(t){return o(e,t,n)})):Object.keys(t).forEach((function(r){return o(e,t[r],"".concat(n).concat(""!==n?".":"").concat(r))})):e.has(n)?e.append(n,t):e.set(n,t))}t.DUMMY_BASE_URL="https://example.com",t.assertParamExists=function(e,t,n){if(null===n||void 0===n)throw new a.RequiredError(t,"Required parameter ".concat(t," was null or undefined when calling ").concat(e,"."))},t.setApiKeyToObject=function(e,t,n){return i(this,void 0,void 0,r().mark((function i(){var a;return r().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(!n||!n.apiKey){r.next=12;break}if("function"!==typeof n.apiKey){r.next=7;break}return r.next=4,n.apiKey(t);case 4:r.t0=r.sent,r.next=10;break;case 7:return r.next=9,n.apiKey;case 9:r.t0=r.sent;case 10:a=r.t0,e[t]=a;case 12:case"end":return r.stop()}}),i)})))},t.setBasicAuthToObject=function(e,t){t&&(t.username||t.password)&&(e.auth={username:t.username,password:t.password})},t.setBearerAuthToObject=function(e,t){return i(this,void 0,void 0,r().mark((function n(){var i;return r().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(!t||!t.accessToken){n.next=12;break}if("function"!==typeof t.accessToken){n.next=7;break}return n.next=4,t.accessToken();case 4:n.t0=n.sent,n.next=10;break;case 7:return n.next=9,t.accessToken;case 9:n.t0=n.sent;case 10:i=n.t0,e.Authorization="Bearer "+i;case 12:case"end":return n.stop()}}),n)})))},t.setOAuthToObject=function(e,t,n,a){return i(this,void 0,void 0,r().mark((function i(){var o;return r().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if(!a||!a.accessToken){r.next=12;break}if("function"!==typeof a.accessToken){r.next=7;break}return r.next=4,a.accessToken(t,n);case 4:r.t0=r.sent,r.next=10;break;case 7:return r.next=9,a.accessToken;case 9:r.t0=r.sent;case 10:o=r.t0,e.Authorization="Bearer "+o;case 12:case"end":return r.stop()}}),i)})))},t.setSearchParams=function(e){for(var t=new URLSearchParams(e.search),n=arguments.length,r=new Array(n>1?n-1:0),i=1;i0&&void 0!==arguments[0]?arguments[0]:t,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:n,o=Object.assign(Object.assign({},e.options),{url:((null===r||void 0===r?void 0:r.basePath)||a)+e.url});return i.request(o)}}},19245:function(e,t,n){"use strict";var r=n(56690).default,i=n(89728).default;Object.defineProperty(t,"__esModule",{value:!0}),t.Configuration=void 0;var a=n(62811),o=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};r(this,e),this.apiKey=t.apiKey,this.organization=t.organization,this.username=t.username,this.password=t.password,this.accessToken=t.accessToken,this.basePath=t.basePath,this.baseOptions=t.baseOptions,this.formDataCtor=t.formDataCtor,this.baseOptions||(this.baseOptions={}),this.baseOptions.headers=Object.assign({"User-Agent":"OpenAI/NodeJS/".concat(a.version),Authorization:"Bearer ".concat(this.apiKey)},this.baseOptions.headers),this.organization&&(this.baseOptions.headers["OpenAI-Organization"]=this.organization),this.formDataCtor||(this.formDataCtor=n(97473))}return i(e,[{key:"isJsonMime",value:function(e){var t=new RegExp("^(application/json|[^;/ \t]+/[^;/ \t]+[+]json)[ \t]*(;.*)?$","i");return null!==e&&(t.test(e)||"application/json-patch+json"===e.toLowerCase())}}]),e}();t.Configuration=o},21115:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),i=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||t.hasOwnProperty(n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),i(n(83540),t),i(n(19245),t)},1025:function(e,t){var n,r,i;r=[],n=function e(){"use strict";var t="undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==t?t:{},n=!t.document&&!!t.postMessage,r=t.IS_PAPA_WORKER||!1,i={},a=0,o={parse:function(n,r){var s=(r=r||{}).dynamicTyping||!1;if(w(s)&&(r.dynamicTypingFunction=s,s={}),r.dynamicTyping=s,r.transform=!!w(r.transform)&&r.transform,r.worker&&o.WORKERS_SUPPORTED){var l=function(){if(!o.WORKERS_SUPPORTED)return!1;var n,r,s=(n=t.URL||t.webkitURL||null,r=e.toString(),o.BLOB_URL||(o.BLOB_URL=n.createObjectURL(new Blob(["var global = (function() { if (typeof self !== 'undefined') { return self; } if (typeof window !== 'undefined') { return window; } if (typeof global !== 'undefined') { return global; } return {}; })(); global.IS_PAPA_WORKER=true; ","(",r,")();"],{type:"text/javascript"})))),l=new t.Worker(s);return l.onmessage=m,l.id=a++,i[l.id]=l}();return l.userStep=r.step,l.userChunk=r.chunk,l.userComplete=r.complete,l.userError=r.error,r.step=w(r.step),r.chunk=w(r.chunk),r.complete=w(r.complete),r.error=w(r.error),delete r.worker,void l.postMessage({input:n,config:r,workerId:l.id})}var h=null;return o.NODE_STREAM_INPUT,"string"==typeof n?(n=function(e){return 65279===e.charCodeAt(0)?e.slice(1):e}(n),h=r.download?new c(r):new f(r)):!0===n.readable&&w(n.read)&&w(n.on)?h=new d(r):(t.File&&n instanceof File||n instanceof Object)&&(h=new u(r)),h.stream(n)},unparse:function(e,t){var n=!1,r=!0,i=",",a="\r\n",s='"',l=s+s,c=!1,u=null,f=!1;!function(){if("object"==typeof t){if("string"!=typeof t.delimiter||o.BAD_DELIMITERS.filter((function(e){return-1!==t.delimiter.indexOf(e)})).length||(i=t.delimiter),("boolean"==typeof t.quotes||"function"==typeof t.quotes||Array.isArray(t.quotes))&&(n=t.quotes),"boolean"!=typeof t.skipEmptyLines&&"string"!=typeof t.skipEmptyLines||(c=t.skipEmptyLines),"string"==typeof t.newline&&(a=t.newline),"string"==typeof t.quoteChar&&(s=t.quoteChar),"boolean"==typeof t.header&&(r=t.header),Array.isArray(t.columns)){if(0===t.columns.length)throw new Error("Option columns is empty");u=t.columns}void 0!==t.escapeChar&&(l=t.escapeChar+s),("boolean"==typeof t.escapeFormulae||t.escapeFormulae instanceof RegExp)&&(f=t.escapeFormulae instanceof RegExp?t.escapeFormulae:/^[=+\-@\t\r].*$/)}}();var d=new RegExp(p(s),"g");if("string"==typeof e&&(e=JSON.parse(e)),Array.isArray(e)){if(!e.length||Array.isArray(e[0]))return h(null,e,c);if("object"==typeof e[0])return h(u||Object.keys(e[0]),e,c)}else if("object"==typeof e)return"string"==typeof e.data&&(e.data=JSON.parse(e.data)),Array.isArray(e.data)&&(e.fields||(e.fields=e.meta&&e.meta.fields||u),e.fields||(e.fields=Array.isArray(e.data[0])?e.fields:"object"==typeof e.data[0]?Object.keys(e.data[0]):[]),Array.isArray(e.data[0])||"object"==typeof e.data[0]||(e.data=[e.data])),h(e.fields||[],e.data||[],c);throw new Error("Unable to serialize unrecognized input");function h(e,t,n){var o="";"string"==typeof e&&(e=JSON.parse(e)),"string"==typeof t&&(t=JSON.parse(t));var s=Array.isArray(e)&&0=this._config.preview;if(r)t.postMessage({results:s,workerId:o.WORKER_ID,finished:c});else if(w(this._config.chunk)&&!n){if(this._config.chunk(s,this._handle),this._handle.paused()||this._handle.aborted())return void(this._halted=!0);s=void 0,this._completeResults=void 0}return this._config.step||this._config.chunk||(this._completeResults.data=this._completeResults.data.concat(s.data),this._completeResults.errors=this._completeResults.errors.concat(s.errors),this._completeResults.meta=s.meta),this._completed||!c||!w(this._config.complete)||s&&s.meta.aborted||(this._config.complete(this._completeResults,this._input),this._completed=!0),c||s&&s.meta.paused||this._nextChunk(),s}this._halted=!0},this._sendError=function(e){w(this._config.error)?this._config.error(e):r&&this._config.error&&t.postMessage({workerId:o.WORKER_ID,error:e,finished:!1})}}function c(e){var t;(e=e||{}).chunkSize||(e.chunkSize=o.RemoteChunkSize),l.call(this,e),this._nextChunk=n?function(){this._readChunk(),this._chunkLoaded()}:function(){this._readChunk()},this.stream=function(e){this._input=e,this._nextChunk()},this._readChunk=function(){if(this._finished)this._chunkLoaded();else{if(t=new XMLHttpRequest,this._config.withCredentials&&(t.withCredentials=this._config.withCredentials),n||(t.onload=x(this._chunkLoaded,this),t.onerror=x(this._chunkError,this)),t.open(this._config.downloadRequestBody?"POST":"GET",this._input,!n),this._config.downloadRequestHeaders){var e=this._config.downloadRequestHeaders;for(var r in e)t.setRequestHeader(r,e[r])}if(this._config.chunkSize){var i=this._start+this._config.chunkSize-1;t.setRequestHeader("Range","bytes="+this._start+"-"+i)}try{t.send(this._config.downloadRequestBody)}catch(e){this._chunkError(e.message)}n&&0===t.status&&this._chunkError()}},this._chunkLoaded=function(){4===t.readyState&&(t.status<200||400<=t.status?this._chunkError():(this._start+=this._config.chunkSize?this._config.chunkSize:t.responseText.length,this._finished=!this._config.chunkSize||this._start>=function(e){var t=e.getResponseHeader("Content-Range");return null===t?-1:parseInt(t.substring(t.lastIndexOf("/")+1))}(t),this.parseChunk(t.responseText)))},this._chunkError=function(e){var n=t.statusText||e;this._sendError(new Error(n))}}function u(e){var t,n;(e=e||{}).chunkSize||(e.chunkSize=o.LocalChunkSize),l.call(this,e);var r="undefined"!=typeof FileReader;this.stream=function(e){this._input=e,n=e.slice||e.webkitSlice||e.mozSlice,r?((t=new FileReader).onload=x(this._chunkLoaded,this),t.onerror=x(this._chunkError,this)):t=new FileReaderSync,this._nextChunk()},this._nextChunk=function(){this._finished||this._config.preview&&!(this._rowCount=this._input.size,this.parseChunk(e.target.result)},this._chunkError=function(){this._sendError(t.error)}}function f(e){var t;l.call(this,e=e||{}),this.stream=function(e){return t=e,this._nextChunk()},this._nextChunk=function(){if(!this._finished){var e,n=this._config.chunkSize;return n?(e=t.substring(0,n),t=t.substring(n)):(e=t,t=""),this._finished=!t,this.parseChunk(e)}}}function d(e){l.call(this,e=e||{});var t=[],n=!0,r=!1;this.pause=function(){l.prototype.pause.apply(this,arguments),this._input.pause()},this.resume=function(){l.prototype.resume.apply(this,arguments),this._input.resume()},this.stream=function(e){this._input=e,this._input.on("data",this._streamData),this._input.on("end",this._streamEnd),this._input.on("error",this._streamError)},this._checkIsFinished=function(){r&&1===t.length&&(this._finished=!0)},this._nextChunk=function(){this._checkIsFinished(),t.length?this.parseChunk(t.shift()):n=!0},this._streamData=x((function(e){try{t.push("string"==typeof e?e:e.toString(this._config.encoding)),n&&(n=!1,this._checkIsFinished(),this.parseChunk(t.shift()))}catch(e){this._streamError(e)}}),this),this._streamError=x((function(e){this._streamCleanUp(),this._sendError(e)}),this),this._streamEnd=x((function(){this._streamCleanUp(),r=!0,this._streamData("")}),this),this._streamCleanUp=x((function(){this._input.removeListener("data",this._streamData),this._input.removeListener("end",this._streamEnd),this._input.removeListener("error",this._streamError)}),this)}function h(e){var t,n,r,i=Math.pow(2,53),a=-i,s=/^\s*-?(\d+\.?|\.\d+|\d+\.\d+)([eE][-+]?\d+)?\s*$/,l=/^((\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z))|(\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d([+-][0-2]\d:[0-5]\d|Z))|(\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d([+-][0-2]\d:[0-5]\d|Z)))$/,c=this,u=0,f=0,d=!1,h=!1,m=[],g={data:[],errors:[],meta:{}};if(w(e.step)){var y=e.step;e.step=function(t){if(g=t,k())_();else{if(_(),0===g.data.length)return;u+=t.data.length,e.preview&&u>e.preview?n.abort():(g.data=g.data[0],y(g,c))}}}function x(t){return"greedy"===e.skipEmptyLines?""===t.join("").trim():1===t.length&&0===t[0].length}function _(){return g&&r&&(T("Delimiter","UndetectableDelimiter","Unable to auto-detect delimiting character; defaulted to '"+o.DefaultDelimiter+"'"),r=!1),e.skipEmptyLines&&(g.data=g.data.filter((function(e){return!x(e)}))),k()&&function(){if(g)if(Array.isArray(g.data[0])){for(var t=0;k()&&t=m.length?"__parsed_extra":m[r]),e.transform&&(o=e.transform(o,a)),o=S(a,o),"__parsed_extra"===a?(i[a]=i[a]||[],i[a].push(o)):i[a]=o}return e.header&&(r>m.length?T("FieldMismatch","TooManyFields","Too many fields: expected "+m.length+" fields but parsed "+r,f+n):r=r.length/2?"\r\n":"\r"}(i,l)),r=!1,e.delimiter)w(e.delimiter)&&(e.delimiter=e.delimiter(i),g.meta.delimiter=e.delimiter);else{var c=function(t,n,r,i,a){var s,l,c,u;a=a||[",","\t","|",";",o.RECORD_SEP,o.UNIT_SEP];for(var f=0;f=s)return q(!0)}else for(j=u,u++;;){if(-1===(j=o.indexOf(t,j+1)))return h||_.push({type:"Quotes",code:"MissingQuotes",message:"Quoted field unterminated",row:x.length,index:u}),V();if(j===v-1)return V(o.substring(u,j).replace(z,t));if(t!==c||o[j+1]!==c){if(t===c||0===j||o[j-1]!==c){-1!==F&&F=s)return q(!0);break}_.push({type:"Quotes",code:"InvalidQuotes",message:"Trailing quote on quoted field is malformed",row:x.length,index:u}),j++}}else j++}return V();function H(e){x.push(e),S=u}function $(e){var t=0;if(-1!==e){var n=o.substring(j+1,e);n&&""===n.trim()&&(t=n.length)}return t}function V(e){return h||(void 0===e&&(e=o.substring(u)),k.push(e),u=v,H(k),b&&G()),q()}function W(e){u=e,H(k),k=[],N=o.indexOf(r,u)}function q(e){return{data:x,errors:_,meta:{delimiter:n,linebreak:r,aborted:f,truncated:!!e,cursor:S+(d||0)}}}function G(){a(q()),x=[],_=[]}},this.abort=function(){f=!0},this.getCharIndex=function(){return u}}function m(e){var t=e.data,n=i[t.workerId],r=!1;if(t.error)n.userError(t.error,t.file);else if(t.results&&t.results.data){var a={abort:function(){r=!0,g(t.workerId,{data:[],errors:[],meta:{aborted:!0}})},pause:y,resume:y};if(w(n.userStep)){for(var o=0;o:not(.watermark)":"opacity:0;-webkit-transition:opacity .3s ease 0s;-moz-transition:opacity .3s ease 0s;-ms-transition:opacity .3s ease 0s;-o-transition:opacity .3s ease 0s;transition:opacity .3s ease 0s;","X:hover .modebar--hover .modebar-group":"opacity:1;","X .modebar-group":"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;","X .modebar-btn":"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;","X .modebar-btn svg":"position:relative;top:2px;","X .modebar.vertical":"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;","X .modebar.vertical svg":"top:-1px;","X .modebar.vertical .modebar-group":"display:block;float:none;padding-left:0px;padding-bottom:8px;","X .modebar.vertical .modebar-group .modebar-btn":"display:block;text-align:center;","X [data-title]:before,X [data-title]:after":"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;","X [data-title]:hover:before,X [data-title]:hover:after":"display:block;opacity:1;","X [data-title]:before":'content:"";position:absolute;background:rgba(0,0,0,0);border:6px solid rgba(0,0,0,0);z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;',"X [data-title]:after":"content:attr(data-title);background:#69738a;color:#fff;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;","X .vertical [data-title]:before,X .vertical [data-title]:after":"top:0%;right:200%;","X .vertical [data-title]:before":"border:6px solid rgba(0,0,0,0);border-left-color:#69738a;margin-top:8px;margin-right:-30px;",Y:'font-family:"Open Sans",verdana,arial,sans-serif;position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;',"Y p":"margin:0;","Y .notifier-note":"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;","Y .notifier-close":"color:#fff;opacity:.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;","Y .notifier-close:hover":"color:#444;text-decoration:none;cursor:pointer;"};for(var a in i){var o=a.replace(/^,/," ,").replace(/X/g,".js-plotly-plot .plotly").replace(/Y/g,".plotly-notifier");r.addStyleRule(o,i[a])}},98222:function(e,t,n){"use strict";e.exports=n(82887)},27206:function(e,t,n){"use strict";e.exports=n(60822)},59893:function(e,t,n){"use strict";e.exports=n(23381)},5224:function(e,t,n){"use strict";e.exports=n(83832)},59509:function(e,t,n){"use strict";e.exports=n(72201)},75557:function(e,t,n){"use strict";e.exports=n(91815)},40338:function(e,t,n){"use strict";e.exports=n(21462)},35080:function(e,t,n){"use strict";e.exports=n(51319)},61396:function(e,t,n){"use strict";e.exports=n(57516)},40549:function(e,t,n){"use strict";e.exports=n(98128)},49866:function(e,t,n){"use strict";e.exports=n(99442)},36089:function(e,t,n){"use strict";e.exports=n(93740)},19548:function(e,t,n){"use strict";e.exports=n(8729)},35831:function(e,t,n){"use strict";e.exports=n(93814)},61039:function(e,t,n){"use strict";e.exports=n(14382)},97040:function(e,t,n){"use strict";e.exports=n(51759)},77986:function(e,t,n){"use strict";e.exports=n(10421)},24296:function(e,t,n){"use strict";e.exports=n(43102)},58872:function(e,t,n){"use strict";e.exports=n(92165)},29626:function(e,t,n){"use strict";e.exports=n(3325)},65591:function(e,t,n){"use strict";e.exports=n(36071)},69738:function(e,t,n){"use strict";e.exports=n(43905)},92650:function(e,t,n){"use strict";e.exports=n(35902)},35630:function(e,t,n){"use strict";e.exports=n(69816)},73434:function(e,t,n){"use strict";e.exports=n(94507)},27909:function(e,t,n){"use strict";var r=n(19548);r.register([n(27206),n(5224),n(58872),n(65591),n(69738),n(92650),n(49866),n(25743),n(6197),n(97040),n(85461),n(73434),n(54201),n(81299),n(47645),n(35630),n(77986),n(83043),n(93005),n(96881),n(4534),n(50581),n(40549),n(77900),n(47582),n(35080),n(21641),n(17280),n(5861),n(29626),n(10021),n(65317),n(96268),n(61396),n(35831),n(16122),n(46163),n(40344),n(40338),n(48131),n(36089),n(55334),n(75557),n(19440),n(99488),n(59893),n(97393),n(98222),n(61039),n(24296),n(66398),n(59509)]),e.exports=r},46163:function(e,t,n){"use strict";e.exports=n(15154)},96881:function(e,t,n){"use strict";e.exports=n(64943)},50581:function(e,t,n){"use strict";e.exports=n(21164)},55334:function(e,t,n){"use strict";e.exports=n(54186)},65317:function(e,t,n){"use strict";e.exports=n(94873)},10021:function(e,t,n){"use strict";e.exports=n(67618)},54201:function(e,t,n){"use strict";e.exports=n(58810)},5861:function(e,t,n){"use strict";e.exports=n(20593)},16122:function(e,t,n){"use strict";e.exports=n(29396)},83043:function(e,t,n){"use strict";e.exports=n(13551)},48131:function(e,t,n){"use strict";e.exports=n(46858)},47582:function(e,t,n){"use strict";e.exports=n(17988)},21641:function(e,t,n){"use strict";e.exports=n(68868)},96268:function(e,t,n){"use strict";e.exports=n(20467)},19440:function(e,t,n){"use strict";e.exports=n(91271)},99488:function(e,t,n){"use strict";e.exports=n(21461)},97393:function(e,t,n){"use strict";e.exports=n(85956)},25743:function(e,t,n){"use strict";e.exports=n(52979)},66398:function(e,t,n){"use strict";e.exports=n(32275)},17280:function(e,t,n){"use strict";e.exports=n(6419)},77900:function(e,t,n){"use strict";e.exports=n(61510)},81299:function(e,t,n){"use strict";e.exports=n(87619)},93005:function(e,t,n){"use strict";e.exports=n(93601)},40344:function(e,t,n){"use strict";e.exports=n(96595)},47645:function(e,t,n){"use strict";e.exports=n(70954)},6197:function(e,t,n){"use strict";e.exports=n(47462)},4534:function(e,t,n){"use strict";e.exports=n(17659)},85461:function(e,t,n){"use strict";e.exports=n(19990)},82884:function(e){"use strict";e.exports=[{path:"",backoff:0},{path:"M-2.4,-3V3L0.6,0Z",backoff:.6},{path:"M-3.7,-2.5V2.5L1.3,0Z",backoff:1.3},{path:"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z",backoff:1.55},{path:"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z",backoff:1.6},{path:"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z",backoff:2},{path:"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z",backoff:0,noRotate:!0},{path:"M2,2V-2H-2V2Z",backoff:0,noRotate:!0}]},50215:function(e,t,n){"use strict";var r=n(82884),i=n(41940),a=n(85555),o=n(44467).templatedArray;n(24695),e.exports=o("annotation",{visible:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},text:{valType:"string",editType:"calc+arraydraw"},textangle:{valType:"angle",dflt:0,editType:"calc+arraydraw"},font:i({editType:"calc+arraydraw",colorEditType:"arraydraw"}),width:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},height:{valType:"number",min:1,dflt:null,editType:"calc+arraydraw"},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw"},align:{valType:"enumerated",values:["left","center","right"],dflt:"center",editType:"arraydraw"},valign:{valType:"enumerated",values:["top","middle","bottom"],dflt:"middle",editType:"arraydraw"},bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},bordercolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},borderpad:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},borderwidth:{valType:"number",min:0,dflt:1,editType:"calc+arraydraw"},showarrow:{valType:"boolean",dflt:!0,editType:"calc+arraydraw"},arrowcolor:{valType:"color",editType:"arraydraw"},arrowhead:{valType:"integer",min:0,max:r.length,dflt:1,editType:"arraydraw"},startarrowhead:{valType:"integer",min:0,max:r.length,dflt:1,editType:"arraydraw"},arrowside:{valType:"flaglist",flags:["end","start"],extras:["none"],dflt:"end",editType:"arraydraw"},arrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},startarrowsize:{valType:"number",min:.3,dflt:1,editType:"calc+arraydraw"},arrowwidth:{valType:"number",min:.1,editType:"calc+arraydraw"},standoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},startstandoff:{valType:"number",min:0,dflt:0,editType:"calc+arraydraw"},ax:{valType:"any",editType:"calc+arraydraw"},ay:{valType:"any",editType:"calc+arraydraw"},axref:{valType:"enumerated",dflt:"pixel",values:["pixel",a.idRegex.x.toString()],editType:"calc"},ayref:{valType:"enumerated",dflt:"pixel",values:["pixel",a.idRegex.y.toString()],editType:"calc"},xref:{valType:"enumerated",values:["paper",a.idRegex.x.toString()],editType:"calc"},x:{valType:"any",editType:"calc+arraydraw"},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"auto",editType:"calc+arraydraw"},xshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},yref:{valType:"enumerated",values:["paper",a.idRegex.y.toString()],editType:"calc"},y:{valType:"any",editType:"calc+arraydraw"},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"auto",editType:"calc+arraydraw"},yshift:{valType:"number",dflt:0,editType:"calc+arraydraw"},clicktoshow:{valType:"enumerated",values:[!1,"onoff","onout"],dflt:!1,editType:"arraydraw"},xclick:{valType:"any",editType:"arraydraw"},yclick:{valType:"any",editType:"arraydraw"},hovertext:{valType:"string",editType:"arraydraw"},hoverlabel:{bgcolor:{valType:"color",editType:"arraydraw"},bordercolor:{valType:"color",editType:"arraydraw"},font:i({editType:"arraydraw"}),editType:"arraydraw"},captureevents:{valType:"boolean",editType:"arraydraw"},editType:"calc",_deprecated:{ref:{valType:"string",editType:"calc"}}})},3749:function(e,t,n){"use strict";var r=n(71828),i=n(89298),a=n(92605).draw;function o(e){var t=e._fullLayout;r.filterVisible(t.annotations).forEach((function(t){var n=i.getFromId(e,t.xref),r=i.getFromId(e,t.yref),a=i.getRefType(t.xref),o=i.getRefType(t.yref);t._extremes={},"range"===a&&s(t,n),"range"===o&&s(t,r)}))}function s(e,t){var n,r=t._id,a=r.charAt(0),o=e[a],s=e["a"+a],l=e[a+"ref"],c=e["a"+a+"ref"],u=e["_"+a+"padplus"],f=e["_"+a+"padminus"],d={x:1,y:-1}[a]*e[a+"shift"],h=3*e.arrowsize*e.arrowwidth||0,p=h+d,v=h-d,m=3*e.startarrowsize*e.arrowwidth||0,g=m+d,y=m-d;if(c===l){var b=i.findExtremes(t,[t.r2c(o)],{ppadplus:p,ppadminus:v}),x=i.findExtremes(t,[t.r2c(s)],{ppadplus:Math.max(u,g),ppadminus:Math.max(f,y)});n={min:[b.min[0],x.min[0]],max:[b.max[0],x.max[0]]}}else g=s?g+s:g,y=s?y-s:y,n=i.findExtremes(t,[t.r2c(o)],{ppadplus:Math.max(u,p,g),ppadminus:Math.max(f,v,y)});e._extremes[r]=n}e.exports=function(e){var t=e._fullLayout;if(r.filterVisible(t.annotations).length&&e._fullData.length)return r.syncOrAsync([a,o],e)}},44317:function(e,t,n){"use strict";var r=n(71828),i=n(73972),a=n(44467).arrayEditor;function o(e,t){var n,r,i,a,o,l,c,u=e._fullLayout.annotations,f=[],d=[],h=[],p=(t||[]).length;for(n=0;n0||n.explicitOff.length>0},onClick:function(e,t){var n,s,l=o(e,t),c=l.on,u=l.off.concat(l.explicitOff),f={},d=e._fullLayout.annotations;if(c.length||u.length){for(n=0;n2/3?"right":"center"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[t]}for(var G=!1,Z=["x","y"],Y=0;Y1)&&(re===ne?((he=ie.r2fraction(t["a"+te]))<0||he>1)&&(G=!0):G=!0),K=ie._offset+ie.r2p(t[te]),Q=.5}else{var pe="domain"===de;"x"===te?(J=t[te],K=pe?ie._offset+ie._length*J:K=k.l+k.w*J):(J=1-t[te],K=pe?ie._offset+ie._length*J:K=k.t+k.h*J),Q=t.showarrow?.5:J}if(t.showarrow){fe.head=K;var ve=t["a"+te];if(ee=oe*V(.5,t.xanchor)-se*V(.5,t.yanchor),re===ne){var me=l.getRefType(re);"domain"===me?("y"===te&&(ve=1-ve),fe.tail=ie._offset+ie._length*ve):"paper"===me?"y"===te?(ve=1-ve,fe.tail=k.t+k.h*ve):fe.tail=k.l+k.w*ve:fe.tail=ie._offset+ie.r2p(ve),X=ee}else fe.tail=K+ve,X=ee+ve;fe.text=fe.tail+ee;var ge=_["x"===te?"width":"height"];if("paper"===ne&&(fe.head=o.constrain(fe.head,1,ge-1)),"pixel"===re){var ye=-Math.max(fe.tail-3,fe.text),be=Math.min(fe.tail+3,fe.text)-ge;ye>0?(fe.tail+=ye,fe.text+=ye):be>0&&(fe.tail-=be,fe.text-=be)}fe.tail+=ue,fe.head+=ue}else X=ee=le*V(Q,ce),fe.text=K+ee;fe.text+=ue,ee+=ue,X+=ue,t["_"+te+"padplus"]=le/2+X,t["_"+te+"padminus"]=le/2-X,t["_"+te+"size"]=le,t["_"+te+"shift"]=ee}if(G)F.remove();else{var xe=0,we=0;if("left"!==t.align&&(xe=(T-x)*("center"===t.align?.5:1)),"top"!==t.valign&&(we=(D-w)*("middle"===t.valign?.5:1)),f)r.select("svg").attr({x:j+xe-1,y:j+we}).call(u.setClipUrl,U?M:null,e);else{var _e=j+we-v.top,ke=j+xe-v.left;W.call(d.positionText,ke,_e).call(u.setClipUrl,U?M:null,e)}H.select("rect").call(u.setRect,j,j,T,D),B.call(u.setRect,N/2,N/2,z-N,$-N),F.call(u.setTranslate,Math.round(O.x.text-z/2),Math.round(O.y.text-$/2)),I.attr({transform:"rotate("+P+","+O.x.text+","+O.y.text+")"});var Se,Te=function(n,r){L.selectAll(".annotation-arrow-g").remove();var l=O.x.head,f=O.y.head,d=O.x.tail+n,h=O.y.tail+r,v=O.x.text+n,x=O.y.text+r,w=o.rotationXYMatrix(P,v,x),_=o.apply2DTransform(w),T=o.apply2DTransform2(w),M=+B.attr("width"),R=+B.attr("height"),D=v-.5*M,N=D+M,z=x-.5*R,j=z+R,U=[[D,z,D,j],[D,j,N,j],[N,j,N,z],[N,z,D,z]].map(T);if(!U.reduce((function(e,t){return e^!!o.segmentsIntersect(l,f,l+1e6,f+1e6,t[0],t[1],t[2],t[3])}),!1)){U.forEach((function(e){var t=o.segmentsIntersect(d,h,l,f,e[0],e[1],e[2],e[3]);t&&(d=t.x,h=t.y)}));var H=t.arrowwidth,$=t.arrowcolor,V=t.arrowside,W=L.append("g").style({opacity:c.opacity($)}).classed("annotation-arrow-g",!0),q=W.append("path").attr("d","M"+d+","+h+"L"+l+","+f).style("stroke-width",H+"px").call(c.stroke,c.rgb($));if(m(q,V,t),S.annotationPosition&&q.node().parentNode&&!a){var G=l,Z=f;if(t.standoff){var Y=Math.sqrt(Math.pow(l-d,2)+Math.pow(f-h,2));G+=t.standoff*(d-l)/Y,Z+=t.standoff*(h-f)/Y}var K,X,J=W.append("path").classed("annotation-arrow",!0).classed("anndrag",!0).classed("cursor-move",!0).attr({d:"M3,3H-3V-3H3ZM0,0L"+(d-G)+","+(h-Z),transform:s(G,Z)}).style("stroke-width",H+6+"px").call(c.stroke,"rgba(0,0,0,0)").call(c.fill,"rgba(0,0,0,0)");p.init({element:J.node(),gd:e,prepFn:function(){var e=u.getTranslate(F);K=e.x,X=e.y,g&&g.autorange&&A(g._name+".autorange",!0),b&&b.autorange&&A(b._name+".autorange",!0)},moveFn:function(e,n){var r=_(K,X),i=r[0]+e,a=r[1]+n;F.call(u.setTranslate,i,a),E("x",y(g,e,"x",k,t)),E("y",y(b,n,"y",k,t)),t.axref===t.xref&&E("ax",y(g,e,"ax",k,t)),t.ayref===t.yref&&E("ay",y(b,n,"ay",k,t)),W.attr("transform",s(e,n)),I.attr({transform:"rotate("+P+","+i+","+a+")"})},doneFn:function(){i.call("_guiRelayout",e,C());var t=document.querySelector(".js-notes-box-panel");t&&t.redraw(t.selectedObj)}})}}};t.showarrow&&Te(0,0),R&&p.init({element:F.node(),gd:e,prepFn:function(){Se=I.attr("transform")},moveFn:function(e,n){var r="pointer";if(t.showarrow)t.axref===t.xref?E("ax",y(g,e,"ax",k,t)):E("ax",t.ax+e),t.ayref===t.yref?E("ay",y(b,n,"ay",k.w,t)):E("ay",t.ay+n),Te(e,n);else{if(a)return;var i,o;if(g)i=y(g,e,"x",k,t);else{var l=t._xsize/k.w,c=t.x+(t._xshift-t.xshift)/k.w-l/2;i=p.align(c+e/k.w,l,0,1,t.xanchor)}if(b)o=y(b,n,"y",k,t);else{var u=t._ysize/k.h,f=t.y-(t._yshift+t.yshift)/k.h-u/2;o=p.align(f-n/k.h,u,0,1,t.yanchor)}E("x",i),E("y",o),g&&b||(r=p.getCursor(g?.5:i,b?.5:o,t.xanchor,t.yanchor))}I.attr({transform:s(e,n)+Se}),h(F,r)},clickFn:function(n,r){t.captureevents&&e.emit("plotly_clickannotation",q(r))},doneFn:function(){h(F),i.call("_guiRelayout",e,C());var t=document.querySelector(".js-notes-box-panel");t&&t.redraw(t.selectedObj)}})}}}e.exports={draw:function(e){var t=e._fullLayout;t._infolayer.selectAll(".annotation").remove();for(var n=0;n=0,b=t.indexOf("end")>=0,x=p.backoff*m+n.standoff,w=v.backoff*g+n.startstandoff;if("line"===h.nodeName){o={x:+e.attr("x1"),y:+e.attr("y1")},u={x:+e.attr("x2"),y:+e.attr("y2")};var _=o.x-u.x,k=o.y-u.y;if(d=(f=Math.atan2(k,_))+Math.PI,x&&w&&x+w>Math.sqrt(_*_+k*k))return void R();if(x){if(x*x>_*_+k*k)return void R();var S=x*Math.cos(f),T=x*Math.sin(f);u.x+=S,u.y+=T,e.attr({x2:u.x,y2:u.y})}if(w){if(w*w>_*_+k*k)return void R();var A=w*Math.cos(f),E=w*Math.sin(f);o.x-=A,o.y-=E,e.attr({x1:o.x,y1:o.y})}}else if("path"===h.nodeName){var C=h.getTotalLength(),M="";if(C1){c=!0;break}}c?e.fullLayout._infolayer.select(".annotation-"+e.id+'[data-index="'+s+'"]').remove():(l._pdata=i(e.glplot.cameraParams,[t.xaxis.r2l(l.x)*n[0],t.yaxis.r2l(l.y)*n[1],t.zaxis.r2l(l.z)*n[2]]),r(e.graphDiv,l,s,e.id,l._xa,l._ya))}}},2468:function(e,t,n){"use strict";var r=n(73972),i=n(71828);e.exports={moduleType:"component",name:"annotations3d",schema:{subplots:{scene:{annotations:n(26997)}}},layoutAttributes:n(26997),handleDefaults:n(20226),includeBasePlot:function(e,t){var n=r.subplotsRegistry.gl3d;if(n)for(var a=n.attrRegex,o=Object.keys(e),s=0;s=0))return e;if(3===o)r[o]>1&&(r[o]=1);else if(r[o]>=1)return e}var s=Math.round(255*r[0])+", "+Math.round(255*r[1])+", "+Math.round(255*r[2]);return a?"rgba("+s+", "+r[3]+")":"rgb("+s+")"}o.tinyRGB=function(e){var t=e.toRgb();return"rgb("+Math.round(t.r)+", "+Math.round(t.g)+", "+Math.round(t.b)+")"},o.rgb=function(e){return o.tinyRGB(r(e))},o.opacity=function(e){return e?r(e).getAlpha():0},o.addOpacity=function(e,t){var n=r(e).toRgb();return"rgba("+Math.round(n.r)+", "+Math.round(n.g)+", "+Math.round(n.b)+", "+t+")"},o.combine=function(e,t){var n=r(e).toRgb();if(1===n.a)return r(e).toRgbString();var i=r(t||c).toRgb(),a=1===i.a?i:{r:255*(1-i.a)+i.r*i.a,g:255*(1-i.a)+i.g*i.a,b:255*(1-i.a)+i.b*i.a},o={r:a.r*(1-n.a)+n.r*n.a,g:a.g*(1-n.a)+n.g*n.a,b:a.b*(1-n.a)+n.b*n.a};return r(o).toRgbString()},o.contrast=function(e,t,n){var i=r(e);return 1!==i.getAlpha()&&(i=r(o.combine(e,c))),(i.isDark()?t?i.lighten(t):c:n?i.darken(n):l).toString()},o.stroke=function(e,t){var n=r(t);e.style({stroke:o.tinyRGB(n),"stroke-opacity":n.getAlpha()})},o.fill=function(e,t){var n=r(t);e.style({fill:o.tinyRGB(n),"fill-opacity":n.getAlpha()})},o.clean=function(e){if(e&&"object"===typeof e){var t,n,r,i,s=Object.keys(e);for(t=0;t0?r>=l:r<=l));i++)r>u&&r0?r>=l:r<=l));i++)r>n[0]&&r1){var he=Math.pow(10,Math.floor(Math.log(de)/Math.LN10));ue*=he*c.roundUp(de/he,[2,5,10]),(Math.abs(q.start)/q.size+1e-6)%1<2e-6&&(le.tick0=0)}le.dtick=ue}le.domain=o?[oe+L/z.h,oe+Q-L/z.h]:[oe+P/z.w,oe+Q-P/z.w],le.setScale(),e.attr("transform",u(Math.round(z.l),Math.round(z.t)));var pe,ve=e.select("."+T.cbtitleunshift).attr("transform",u(-Math.round(z.l),-Math.round(z.t))),me=le.ticklabelposition,ge=le.title.font.size,ye=e.select("."+T.cbaxis),be=0,xe=0;function we(r,i){var a={propContainer:le,propName:t._propPrefix+"title",traceIndex:t._traceIndex,_meta:t._meta,placeholder:N._dfltTitle.colorbar,containerGroup:e.select("."+T.cbtitle)},o="h"===r.charAt(0)?r.substr(1):"h"+r;e.selectAll("."+o+",."+o+"-math-group").remove(),v.draw(n,r,f(a,i||{}))}function _e(){var e,t;(o&&ce||!o&&!ce)&&("top"===H&&(e=P+z.l+ee*I,t=L+z.t+te*(1-oe-Q)+3+.75*ge),"bottom"===H&&(e=P+z.l+ee*I,t=L+z.t+te*(1-oe)-3-.25*ge),"right"===H&&(t=L+z.t+te*R+3+.75*ge,e=P+z.l+ee*oe),we(le._id+"title",{attributes:{x:e,y:t,"text-anchor":o?"start":"middle"}}))}function ke(){if(o&&!ce||!o&&ce){var e,i,a=le.position||0,s=le._offset+le._length/2;if("right"===H)i=s,e=z.l+ee*a+10+ge*(le.showticklabels?1:.5);else if(e=s,"bottom"===H&&(i=z.t+te*a+10+(-1===me.indexOf("inside")?le.tickfont.size:0)+("intside"!==le.ticks&&t.ticklen||0)),"top"===H){var l=U.text.split("
").length;i=z.t+te*a+10-K-_*ge*l}we((o?"h":"v")+le._id+"title",{avoid:{selection:r.select(n).selectAll("g."+le._id+"tick"),side:H,offsetTop:o?0:z.t,offsetLeft:o?z.l:0,maxShift:o?N.width:N.height},attributes:{x:e,y:i,"text-anchor":"middle"},transform:{rotate:o?-90:0,offset:0}})}}function Se(){if(!o&&!ce||o&&ce){var a,l=e.select("."+T.cbtitle),f=l.select("text"),d=[-A/2,A/2],p=l.select(".h"+le._id+"title-math-group").node(),v=15.6;if(f.node()&&(v=parseInt(f.node().style.fontSize,10)*_),p?(a=h.bBox(p),xe=a.width,(be=a.height)>v&&(d[1]-=(be-v)/2)):f.node()&&!f.classed(T.jsPlaceholder)&&(a=h.bBox(f.node()),xe=a.width,be=a.height),o){if(be){if(be+=5,"top"===H)le.domain[1]-=be/z.h,d[1]*=-1;else{le.domain[0]+=be/z.h;var g=m.lineCount(f);d[1]+=(1-g)*v}l.attr("transform",u(d[0],d[1])),le.setScale()}}else xe&&("right"===H&&(le.domain[0]+=(xe+ge/2)/z.w),l.attr("transform",u(d[0],d[1])),le.setScale())}e.selectAll("."+T.cbfills+",."+T.cblines).attr("transform",o?u(0,Math.round(z.h*(1-le.domain[1]))):u(Math.round(z.w*le.domain[0]),0)),ye.attr("transform",o?u(0,Math.round(-z.t)):u(Math.round(-z.l),0));var y=e.select("."+T.cbfills).selectAll("rect."+T.cbfill).attr("style","").data(Z);y.enter().append("rect").classed(T.cbfill,!0).attr("style",""),y.exit().remove();var b=$.map(le.c2p).map(Math.round).sort((function(e,t){return e-t}));y.each((function(e,a){var s=[0===a?$[0]:(Z[a]+Z[a-1])/2,a===Z.length-1?$[1]:(Z[a]+Z[a+1])/2].map(le.c2p).map(Math.round);o&&(s[1]=c.constrain(s[1]+(s[1]>s[0])?1:-1,b[0],b[1]));var l=r.select(this).attr(o?"x":"y",ne).attr(o?"y":"x",r.min(s)).attr(o?"width":"height",Math.max(K,2)).attr(o?"height":"width",Math.max(r.max(s)-r.min(s),2));if(t._fillgradient)h.gradient(l,n,t._id,o?"vertical":"horizontalreversed",t._fillgradient,"fill");else{var u=W(e).replace("e-","");l.attr("fill",i(u).toHexString())}}));var x=e.select("."+T.cblines).selectAll("path."+T.cbline).data(B.color&&B.width?Y:[]);x.enter().append("path").classed(T.cbline,!0),x.exit().remove(),x.each((function(e){var t=ne,n=Math.round(le.c2p(e))+B.width/2%1;r.select(this).attr("d","M"+(o?t+","+n:n+","+t)+(o?"h":"v")+K).call(h.lineGroupStyle,B.width,V(e),B.dash)})),ye.selectAll("g."+le._id+"tick,path").remove();var w=ne+K+(A||0)/2-("outside"===t.ticks?1:0),k=s.calcTicks(le),S=s.getTickSigns(le)[2];return s.drawTicks(n,le,{vals:"inside"===le.ticks?s.clipEnds(le,k):k,layer:ye,path:s.makeTickPath(le,w,S),transFn:s.makeTransTickFn(le)}),s.drawLabels(n,le,{vals:k,layer:ye,transFn:s.makeTransTickLabelFn(le),labelFns:s.makeLabelFns(le,w)})}function Te(){var r,s=K+A/2;-1===me.indexOf("inside")&&(r=h.bBox(ye.node()),s+=o?r.width:r.height),pe=ve.select("text");var c=0,f=o&&"top"===H,v=!o&&"right"===H,m=0;if(pe.node()&&!pe.classed(T.jsPlaceholder)){var y,b=ve.select(".h"+le._id+"title-math-group").node();b&&(o&&ce||!o&&!ce)?(c=(r=h.bBox(b)).width,y=r.height):(c=(r=h.bBox(ve.node())).right-z.l-(o?ne:se),y=r.bottom-z.t-(o?se:ne),o||"top"!==H||(s+=r.height,m=r.height)),v&&(pe.attr("transform",u(c/2+ge/2,0)),c*=2),s=Math.max(s,o?c:y)}var x=2*(o?P:L)+s+E+A/2,_=0;!o&&U.text&&"bottom"===O&&R<=0&&(x+=_=x/2,m+=_),N._hColorbarMoveTitle=_,N._hColorbarMoveCBTitle=m;var j=E+A,B=(o?ne:se)-j/2-(o?P:0),$=(o?se:ne)-(o?J:L+m-_);e.select("."+T.cbbg).attr("x",B).attr("y",$).attr(o?"width":"height",Math.max(x-_,2)).attr(o?"height":"width",Math.max(J+j,2)).call(p.fill,C).call(p.stroke,t.bordercolor).style("stroke-width",E);var V=v?Math.max(c-10,0):0;e.selectAll("."+T.cboutline).attr("x",(o?ne:se+P)+V).attr("y",(o?se+L-J:ne)+(f?be:0)).attr(o?"width":"height",Math.max(K,2)).attr(o?"height":"width",Math.max(J-(o?2*L+be:2*P+V),2)).call(p.stroke,t.outlinecolor).style({fill:"none","stroke-width":A});var W=o?re*x:0,q=o?0:(1-ie)*x-m;if(W=F?z.l-W:-W,q=D?z.t-q:-q,e.attr("transform",u(W,q)),!o&&(E||i(C).getAlpha()&&!i.equals(N.paper_bgcolor,C))){var G=ye.selectAll("text"),Z=G[0].length,Y=e.select("."+T.cbbg).node(),X=h.bBox(Y),Q=h.getTranslate(e),ee=2;G.each((function(e,t){var n=0,r=Z-1;if(t===n||t===r){var i,a=h.bBox(this),o=h.getTranslate(this);if(t===r){var s=a.right+o.x;(i=X.right+Q.x+se-E-ee+I-s)>0&&(i=0)}else if(t===n){var l=a.left+o.x;(i=X.left+Q.x+se+E+ee-l)<0&&(i=0)}i&&(Z<3?this.setAttribute("transform","translate("+i+",0) "+this.getAttribute("transform")):this.setAttribute("visibility","hidden"))}}))}var te={},ae=k[M],oe=S[M],ue=k[O],fe=S[O],de=x-K;o?("pixels"===d?(te.y=R,te.t=J*ue,te.b=J*fe):(te.t=te.b=0,te.yt=R+l*ue,te.yb=R-l*fe),"pixels"===w?(te.x=I,te.l=x*ae,te.r=x*oe):(te.l=de*ae,te.r=de*oe,te.xl=I-g*ae,te.xr=I+g*oe)):("pixels"===d?(te.x=I,te.l=J*ae,te.r=J*oe):(te.l=te.r=0,te.xl=I+l*ae,te.xr=I-l*oe),"pixels"===w?(te.y=1-R,te.t=x*ue,te.b=x*fe):(te.t=de*ue,te.b=de*fe,te.yt=R-g*ue,te.yb=R+g*fe));var he=t.y<.5?"b":"t",xe=t.x<.5?"l":"r";n._fullLayout._reservedMargin[t._id]={};var we={r:N.width-B-W,l:B+te.r,b:N.height-$-q,t:$+te.b};F&&D?a.autoMargin(n,t._id,te):F?n._fullLayout._reservedMargin[t._id][he]=we[he]:D||o?n._fullLayout._reservedMargin[t._id][xe]=we[xe]:n._fullLayout._reservedMargin[t._id][he]=we[he]}return c.syncOrAsync([a.previousPromises,_e,Se,ke,a.previousPromises,Te],n)}(n,t,e);g&&g.then&&(e._promises||[]).push(g),e._context.edits.colorbarPosition&&function(e,t,n){var r,i,a,s="v"===t.orientation,c=n._fullLayout,f=c._size;l.init({element:e.node(),gd:n,prepFn:function(){r=e.attr("transform"),d(e)},moveFn:function(n,o){e.attr("transform",r+u(n,o)),i=l.align((s?t._uFrac:t._vFrac)+n/f.w,s?t._thickFrac:t._lenFrac,0,1,t.xanchor),a=l.align((s?t._vFrac:1-t._uFrac)-o/f.h,s?t._lenFrac:t._thickFrac,0,1,t.yanchor);var c=l.getCursor(i,a,t.xanchor,t.yanchor);d(e,c)},doneFn:function(){if(d(e),void 0!==i&&void 0!==a){var r={};r[t._propPrefix+"x"]=i,r[t._propPrefix+"y"]=a,void 0!==t._traceIndex?o.call("_guiRestyle",n,r,t._traceIndex):o.call("_guiRelayout",n,r)}}})}(n,t,e)})),t.exit().each((function(t){a.autoMargin(e,t._id)})).remove(),t.order()}}},76228:function(e,t,n){"use strict";var r=n(71828);e.exports=function(e){return r.isPlainObject(e.colorbar)}},12311:function(e,t,n){"use strict";e.exports={moduleType:"component",name:"colorbar",attributes:n(63583),supplyDefaults:n(62499),draw:n(98981).draw,hasColorbar:n(76228)}},50693:function(e,t,n){"use strict";var r=n(63583),i=n(30587).counter,a=n(78607),o=n(63282).scales;function s(e){return"`"+e+"`"}a(o),e.exports=function(e,t){e=e||"";var n,a=(t=t||{}).cLetter||"c",l=("onlyIfNumerical"in t?t.onlyIfNumerical:Boolean(e),"noScale"in t?t.noScale:"marker.line"===e),c="showScaleDflt"in t?t.showScaleDflt:"z"===a,u="string"===typeof t.colorscaleDflt?o[t.colorscaleDflt]:null,f=t.editTypeOverride||"",d=e?e+".":"";"colorAttr"in t?(n=t.colorAttr,t.colorAttr):s(d+(n={z:"z",c:"color"}[a]));var h=a+"auto",p=a+"min",v=a+"max",m=a+"mid",g=(s(d+h),s(d+p),s(d+v),{});g[p]=g[v]=void 0;var y={};y[h]=!1;var b={};return"color"===n&&(b.color={valType:"color",arrayOk:!0,editType:f||"style"},t.anim&&(b.color.anim=!0)),b[h]={valType:"boolean",dflt:!0,editType:"calc",impliedEdits:g},b[p]={valType:"number",dflt:null,editType:f||"plot",impliedEdits:y},b[v]={valType:"number",dflt:null,editType:f||"plot",impliedEdits:y},b[m]={valType:"number",dflt:null,editType:"calc",impliedEdits:g},b.colorscale={valType:"colorscale",editType:"calc",dflt:u,impliedEdits:{autocolorscale:!1}},b.autocolorscale={valType:"boolean",dflt:!1!==t.autoColorDflt,editType:"calc",impliedEdits:{colorscale:void 0}},b.reversescale={valType:"boolean",dflt:!1,editType:"plot"},l||(b.showscale={valType:"boolean",dflt:c,editType:"calc"},b.colorbar=r),t.noColorAxis||(b.coloraxis={valType:"subplotid",regex:i("coloraxis"),dflt:null,editType:"calc"}),b}},78803:function(e,t,n){"use strict";var r=n(92770),i=n(71828),a=n(52075).extractOpts;e.exports=function(e,t,n){var o,s=e._fullLayout,l=n.vals,c=n.containerStr,u=c?i.nestedProperty(t,c).get():t,f=a(u),d=!1!==f.auto,h=f.min,p=f.max,v=f.mid,m=function(){return i.aggNums(Math.min,null,l)},g=function(){return i.aggNums(Math.max,null,l)};void 0===h?h=m():d&&(h=u._colorAx&&r(h)?Math.min(h,m()):m()),void 0===p?p=g():d&&(p=u._colorAx&&r(p)?Math.max(p,g()):g()),d&&void 0!==v&&(p-v>v-h?h=v-(p-v):p-v=0?s.colorscale.sequential:s.colorscale.sequentialminus,f._sync("colorscale",o))}},33046:function(e,t,n){"use strict";var r=n(71828),i=n(52075).hasColorscale,a=n(52075).extractOpts;e.exports=function(e,t){function n(e,t){var n=e["_"+t];void 0!==n&&(e[t]=n)}function o(e,i){var o=i.container?r.nestedProperty(e,i.container).get():e;if(o)if(o.coloraxis)o._colorAx=t[o.coloraxis];else{var s=a(o),l=s.auto;(l||void 0===s.min)&&n(o,i.min),(l||void 0===s.max)&&n(o,i.max),s.autocolorscale&&n(o,"colorscale")}}for(var s=0;s=0;r--,i++){var a=e[r];n[i]=[1-a[0],a[1]]}return n}function p(e,t){t=t||{};for(var n=e.domain,o=e.range,l=o.length,c=new Array(l),u=0;u4/3-s?o:s}},70461:function(e,t,n){"use strict";var r=n(71828),i=[["sw-resize","s-resize","se-resize"],["w-resize","move","e-resize"],["nw-resize","n-resize","ne-resize"]];e.exports=function(e,t,n,a){return e="left"===n?0:"center"===n?1:"right"===n?2:r.constrain(Math.floor(3*e),0,2),t="bottom"===a?0:"middle"===a?1:"top"===a?2:r.constrain(Math.floor(3*t),0,2),i[t][e]}},64505:function(e,t){"use strict";t.selectMode=function(e){return"lasso"===e||"select"===e},t.drawMode=function(e){return"drawclosedpath"===e||"drawopenpath"===e||"drawline"===e||"drawrect"===e||"drawcircle"===e},t.openMode=function(e){return"drawline"===e||"drawopenpath"===e},t.rectMode=function(e){return"select"===e||"drawline"===e||"drawrect"===e||"drawcircle"===e},t.freeMode=function(e){return"lasso"===e||"drawclosedpath"===e||"drawopenpath"===e},t.selectingOrDrawing=function(e){return t.freeMode(e)||t.rectMode(e)}},28569:function(e,t,n){"use strict";var r=n(48956),i=n(57035),a=n(38520),o=n(71828).removeElement,s=n(85555),l=e.exports={};l.align=n(92807),l.getCursor=n(70461);var c=n(26041);function u(){var e=document.createElement("div");e.className="dragcover";var t=e.style;return t.position="fixed",t.left=0,t.right=0,t.top=0,t.bottom=0,t.zIndex=999999999,t.background="none",document.body.appendChild(e),e}function f(e){return r(e.changedTouches?e.changedTouches[0]:e,document.body)}l.unhover=c.wrapped,l.unhoverRaw=c.raw,l.init=function(e){var t,n,r,c,d,h,p,v,m=e.gd,g=1,y=m._context.doubleClickDelay,b=e.element;m._mouseDownTime||(m._mouseDownTime=0),b.style.pointerEvents="all",b.onmousedown=w,a?(b._ontouchstart&&b.removeEventListener("touchstart",b._ontouchstart),b._ontouchstart=w,b.addEventListener("touchstart",w,{passive:!1})):b.ontouchstart=w;var x=e.clampFn||function(e,t,n){return Math.abs(e)y&&(g=Math.max(g-1,1)),m._dragged)e.doneFn&&e.doneFn();else if(e.clickFn&&e.clickFn(g,h),!v){var n;try{n=new MouseEvent("click",t)}catch(a){var r=f(t);(n=document.createEvent("MouseEvents")).initMouseEvent("click",t.bubbles,t.cancelable,t.view,t.detail,t.screenX,t.screenY,r[0],r[1],t.ctrlKey,t.altKey,t.shiftKey,t.metaKey,t.button,t.relatedTarget)}p.dispatchEvent(n)}m._dragging=!1,m._dragged=!1}else m._dragged=!1}},l.coverSlip=u},26041:function(e,t,n){"use strict";var r=n(11086),i=n(79990),a=n(24401).getGraphDiv,o=n(26675),s=e.exports={};s.wrapped=function(e,t,n){(e=a(e))._fullLayout&&i.clear(e._fullLayout._uid+o.HOVERID),s.raw(e,t,n)},s.raw=function(e,t){var n=e._fullLayout,i=e._hoverdata;t||(t={}),t.target&&!e._dragged&&!1===r.triggerHandler(e,"plotly_beforehover",t)||(n._hoverlayer.selectAll("g").remove(),n._hoverlayer.selectAll("line").remove(),n._hoverlayer.selectAll("circle").remove(),e._hoverdata=void 0,t.target&&i&&e.emit("plotly_unhover",{event:t,points:i}))}},79952:function(e,t){"use strict";t.P={valType:"string",values:["solid","dot","dash","longdash","dashdot","longdashdot"],dflt:"solid",editType:"style"},t.u={shape:{valType:"enumerated",values:["","/","\\","x","-","|","+","."],dflt:"",arrayOk:!0,editType:"style"},fillmode:{valType:"enumerated",values:["replace","overlay"],dflt:"replace",editType:"style"},bgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgcolor:{valType:"color",arrayOk:!0,editType:"style"},fgopacity:{valType:"number",editType:"style",min:0,max:1},size:{valType:"number",min:0,dflt:8,arrayOk:!0,editType:"style"},solidity:{valType:"number",min:0,max:1,dflt:.3,arrayOk:!0,editType:"style"},editType:"style"}},91424:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=i.numberFormat,o=n(92770),s=n(84267),l=n(73972),c=n(7901),u=n(21081),f=i.strTranslate,d=n(63893),h=n(77922),p=n(18783).LINE_SPACING,v=n(37822).DESELECTDIM,m=n(34098),g=n(39984),y=n(23469).appendArrayPointValue,b=e.exports={};function x(e,t,n){var r=t.fillpattern,i=r&&b.getPatternAttr(r.shape,0,"");if(i){var a=b.getPatternAttr(r.bgcolor,0,null),o=b.getPatternAttr(r.fgcolor,0,null),s=r.fgopacity,l=b.getPatternAttr(r.size,0,8),u=b.getPatternAttr(r.solidity,0,.3),f=t.uid;b.pattern(e,"point",n,f,i,l,u,void 0,r.fillmode,a,o,s)}else t.fillcolor&&e.call(c.fill,t.fillcolor)}b.font=function(e,t,n,r){i.isPlainObject(t)&&(r=t.color,n=t.size,t=t.family),t&&e.style("font-family",t),n+1&&e.style("font-size",n+"px"),r&&e.call(c.fill,r)},b.setPosition=function(e,t,n){e.attr("x",t).attr("y",n)},b.setSize=function(e,t,n){e.attr("width",t).attr("height",n)},b.setRect=function(e,t,n,r,i){e.call(b.setPosition,t,n).call(b.setSize,r,i)},b.translatePoint=function(e,t,n,r){var i=n.c2p(e.x),a=r.c2p(e.y);return!!(o(i)&&o(a)&&t.node())&&("text"===t.node().nodeName?t.attr("x",i).attr("y",a):t.attr("transform",f(i,a)),!0)},b.translatePoints=function(e,t,n){e.each((function(e){var i=r.select(this);b.translatePoint(e,i,t,n)}))},b.hideOutsideRangePoint=function(e,t,n,r,i,a){t.attr("display",n.isPtWithinRange(e,i)&&r.isPtWithinRange(e,a)?null:"none")},b.hideOutsideRangePoints=function(e,t){if(t._hasClipOnAxisFalse){var n=t.xaxis,i=t.yaxis;e.each((function(t){var a=t[0].trace,o=a.xcalendar,s=a.ycalendar,c=l.traceIs(a,"bar-like")?".bartext":".point,.textpoint";e.selectAll(c).each((function(e){b.hideOutsideRangePoint(e,r.select(this),n,i,o,s)}))}))}},b.crispRound=function(e,t,n){return t&&o(t)?e._context.staticPlot?t:t<1?1:Math.round(t):n||0},b.singleLineStyle=function(e,t,n,r,i){t.style("fill","none");var a=(((e||[])[0]||{}).trace||{}).line||{},o=n||a.width||0,s=i||a.dash||"";c.stroke(t,r||a.color),b.dashLine(t,s,o)},b.lineGroupStyle=function(e,t,n,i){e.style("fill","none").each((function(e){var a=(((e||[])[0]||{}).trace||{}).line||{},o=t||a.width||0,s=i||a.dash||"";r.select(this).call(c.stroke,n||a.color).call(b.dashLine,s,o)}))},b.dashLine=function(e,t,n){n=+n||0,t=b.dashStyle(t,n),e.style({"stroke-dasharray":t,"stroke-width":n+"px"})},b.dashStyle=function(e,t){t=+t||1;var n=Math.max(t,3);return"solid"===e?e="":"dot"===e?e=n+"px,"+n+"px":"dash"===e?e=3*n+"px,"+3*n+"px":"longdash"===e?e=5*n+"px,"+5*n+"px":"dashdot"===e?e=3*n+"px,"+n+"px,"+n+"px,"+n+"px":"longdashdot"===e&&(e=5*n+"px,"+2*n+"px,"+n+"px,"+2*n+"px"),e},b.singleFillStyle=function(e,t){var n=r.select(e.node());x(e,((n.data()[0]||[])[0]||{}).trace||{},t)},b.fillGroupStyle=function(e,t){e.style("stroke-width",0).each((function(e){var n=r.select(this);e[0].trace&&x(n,e[0].trace,t)}))};var w=n(90998);b.symbolNames=[],b.symbolFuncs=[],b.symbolBackOffs=[],b.symbolNeedLines={},b.symbolNoDot={},b.symbolNoFill={},b.symbolList=[],Object.keys(w).forEach((function(e){var t=w[e],n=t.n;b.symbolList.push(n,String(n),e,n+100,String(n+100),e+"-open"),b.symbolNames[n]=e,b.symbolFuncs[n]=t.f,b.symbolBackOffs[n]=t.backoff||0,t.needLine&&(b.symbolNeedLines[n]=!0),t.noDot?b.symbolNoDot[n]=!0:b.symbolList.push(n+200,String(n+200),e+"-dot",n+300,String(n+300),e+"-open-dot"),t.noFill&&(b.symbolNoFill[n]=!0)}));var _=b.symbolNames.length;function k(e,t,n,r){var i=e%100;return b.symbolFuncs[i](t,n,r)+(e>=200?"M0,0.5L0.5,0L0,-0.5L-0.5,0Z":"")}b.symbolNumber=function(e){if(o(e))e=+e;else if("string"===typeof e){var t=0;e.indexOf("-open")>0&&(t=100,e=e.replace("-open","")),e.indexOf("-dot")>0&&(t+=200,e=e.replace("-dot","")),(e=b.symbolNames.indexOf(e))>=0&&(e+=t)}return e%100>=_||e>=400?0:Math.floor(Math.max(e,0))};var S={x1:1,x2:0,y1:0,y2:0},T={x1:0,x2:0,y1:1,y2:0},A=a("~f"),E={radial:{node:"radialGradient"},radialreversed:{node:"radialGradient",reversed:!0},horizontal:{node:"linearGradient",attrs:S},horizontalreversed:{node:"linearGradient",attrs:S,reversed:!0},vertical:{node:"linearGradient",attrs:T},verticalreversed:{node:"linearGradient",attrs:T,reversed:!0}};b.gradient=function(e,t,n,a,o,l){for(var u=o.length,f=E[a],d=new Array(u),h=0;h=0&&void 0===e.i&&(e.i=o.i),t.style("opacity",r.selectedOpacityFn?r.selectedOpacityFn(e):void 0===e.mo?s.opacity:e.mo),r.ms2mrc){var u;u="various"===e.ms||"various"===s.size?3:r.ms2mrc(e.ms),e.mrc=u,r.selectedSizeFn&&(u=e.mrc=r.selectedSizeFn(e));var f=b.symbolNumber(e.mx||s.symbol)||0;e.om=f%200>=100;var d=ne(e,n),h=W(e,n);t.attr("d",k(f,u,d,h))}var p,v,m,g=!1;if(e.so)m=l.outlierwidth,v=l.outliercolor,p=s.outliercolor;else{var y=(l||{}).width;m=(e.mlw+1||y+1||(e.trace?(e.trace.marker.line||{}).width:0)+1)-1||0,v="mlc"in e?e.mlcc=r.lineScale(e.mlc):i.isArrayOrTypedArray(l.color)?c.defaultLine:l.color,i.isArrayOrTypedArray(s.color)&&(p=c.defaultLine,g=!0),p="mc"in e?e.mcc=r.markerScale(e.mc):s.color||s.colors||"rgba(0,0,0,0)",r.selectedColorFn&&(p=r.selectedColorFn(e))}if(e.om)t.call(c.stroke,p).style({"stroke-width":(m||1)+"px",fill:"none"});else{t.style("stroke-width",(e.isBlank?0:m)+"px");var x=s.gradient,w=e.mgt;w?g=!0:w=x&&x.type,i.isArrayOrTypedArray(w)&&(w=w[0],E[w]||(w=0));var _=s.pattern,S=_&&b.getPatternAttr(_.shape,e.i,"");if(w&&"none"!==w){var T=e.mgc;T?g=!0:T=x.color;var A=n.uid;g&&(A+="-"+e.i),b.gradient(t,a,A,w,[[0,T],[1,p]],"fill")}else if(S){var C=!1,M=_.fgcolor;!M&&o&&o.color&&(M=o.color,C=!0);var O=b.getPatternAttr(M,e.i,o&&o.color||null),P=b.getPatternAttr(_.bgcolor,e.i,null),L=_.fgopacity,I=b.getPatternAttr(_.size,e.i,8),R=b.getPatternAttr(_.solidity,e.i,.3);C=C||e.mcc||i.isArrayOrTypedArray(_.shape)||i.isArrayOrTypedArray(_.bgcolor)||i.isArrayOrTypedArray(_.fgcolor)||i.isArrayOrTypedArray(_.size)||i.isArrayOrTypedArray(_.solidity);var D=n.uid;C&&(D+="-"+e.i),b.pattern(t,"point",a,D,S,I,R,e.mcc,_.fillmode,P,O,L)}else i.isArrayOrTypedArray(p)?c.fill(t,p[e.i]):c.fill(t,p);m&&c.stroke(t,v)}},b.makePointStyleFns=function(e){var t={},n=e.marker;return t.markerScale=b.tryColorscale(n,""),t.lineScale=b.tryColorscale(n,"line"),l.traceIs(e,"symbols")&&(t.ms2mrc=m.isBubble(e)?g(e):function(){return(n.size||6)/2}),e.selectedpoints&&i.extendFlat(t,b.makeSelectedPointStyleFns(e)),t},b.makeSelectedPointStyleFns=function(e){var t={},n=e.selected||{},r=e.unselected||{},a=e.marker||{},o=n.marker||{},s=r.marker||{},c=a.opacity,u=o.opacity,f=s.opacity,d=void 0!==u,h=void 0!==f;(i.isArrayOrTypedArray(c)||d||h)&&(t.selectedOpacityFn=function(e){var t=void 0===e.mo?a.opacity:e.mo;return e.selected?d?u:t:h?f:v*t});var p=a.color,m=o.color,g=s.color;(m||g)&&(t.selectedColorFn=function(e){var t=e.mcc||p;return e.selected?m||t:g||t});var y=a.size,b=o.size,x=s.size,w=void 0!==b,_=void 0!==x;return l.traceIs(e,"symbols")&&(w||_)&&(t.selectedSizeFn=function(e){var t=e.mrc||y/2;return e.selected?w?b/2:t:_?x/2:t}),t},b.makeSelectedTextStyleFns=function(e){var t={},n=e.selected||{},r=e.unselected||{},i=e.textfont||{},a=n.textfont||{},o=r.textfont||{},s=i.color,l=a.color,u=o.color;return t.selectedTextColorFn=function(e){var t=e.tc||s;return e.selected?l||t:u||(l?t:c.addOpacity(t,v))},t},b.selectedPointStyle=function(e,t){if(e.size()&&t.selectedpoints){var n=b.makeSelectedPointStyleFns(t),i=t.marker||{},a=[];n.selectedOpacityFn&&a.push((function(e,t){e.style("opacity",n.selectedOpacityFn(t))})),n.selectedColorFn&&a.push((function(e,t){c.fill(e,n.selectedColorFn(t))})),n.selectedSizeFn&&a.push((function(e,r){var a=r.mx||i.symbol||0,o=n.selectedSizeFn(r);e.attr("d",k(b.symbolNumber(a),o,ne(r,t),W(r,t))),r.mrc2=o})),a.length&&e.each((function(e){for(var t=r.select(this),n=0;n0?n:0}function I(e,t,n){return n&&(e=j(e)),t?D(e[1]):R(e[0])}function R(e){var t=r.round(e,2);return C=t,t}function D(e){var t=r.round(e,2);return M=t,t}function F(e,t,n,r){var i=e[0]-t[0],a=e[1]-t[1],o=n[0]-t[0],s=n[1]-t[1],l=Math.pow(i*i+a*a,.25),c=Math.pow(o*o+s*s,.25),u=(c*c*i-l*l*o)*r,f=(c*c*a-l*l*s)*r,d=3*c*(l+c),h=3*l*(l+c);return[[R(t[0]+(d&&u/d)),D(t[1]+(d&&f/d))],[R(t[0]-(h&&u/h)),D(t[1]-(h&&f/h))]]}b.textPointStyle=function(e,t,n){if(e.size()){var a;if(t.selectedpoints){var o=b.makeSelectedTextStyleFns(t);a=o.selectedTextColorFn}var s=t.texttemplate,l=n._fullLayout;e.each((function(e){var o=r.select(this),c=s?i.extractOption(e,t,"txt","texttemplate"):i.extractOption(e,t,"tx","text");if(c||0===c){if(s){var u=t._module.formatLabels,f=u?u(e,t,l):{},h={};y(h,t,e.i);var p=t._meta||{};c=i.texttemplateString(c,f,l._d3locale,h,e,p)}var v=e.tp||t.textposition,m=L(e,t),g=a?a(e):e.tc||t.textfont.color;o.call(b.font,e.tf||t.textfont.family,m,g).text(c).call(d.convertToTspans,n).call(P,v,m,e.mrc)}else o.remove()}))}},b.selectedTextStyle=function(e,t){if(e.size()&&t.selectedpoints){var n=b.makeSelectedTextStyleFns(t);e.each((function(e){var i=r.select(this),a=n.selectedTextColorFn(e),o=e.tp||t.textposition,s=L(e,t);c.fill(i,a);var u=l.traceIs(t,"bar-like");P(i,o,s,e.mrc2||e.mrc,u)}))}},b.smoothopen=function(e,t){if(e.length<3)return"M"+e.join("L");var n,r="M"+e[0],i=[];for(n=1;n=c||_>=f&&_<=c)&&(k<=d&&k>=u||k>=d&&k<=u)&&(e=[_,k])}return e}b.steps=function(e){var t=N[e]||z;return function(e){for(var n="M"+R(e[0][0])+","+D(e[0][1]),r=e.length,i=1;i=1e4&&(b.savedBBoxes={},B=0),n&&(b.savedBBoxes[n]=m),B++,i.extendFlat({},m)},b.setClipUrl=function(e,t,n){e.attr("clip-path",H(t,n))},b.getTranslate=function(e){var t=(e[e.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\btranslate\((-?\d*\.?\d*)[^-\d]*(-?\d*\.?\d*)[^\d].*/,(function(e,t,n){return[t,n].join(" ")})).split(" ");return{x:+t[0]||0,y:+t[1]||0}},b.setTranslate=function(e,t,n){var r=e.attr?"attr":"getAttribute",i=e.attr?"attr":"setAttribute",a=e[r]("transform")||"";return t=t||0,n=n||0,a=a.replace(/(\btranslate\(.*?\);?)/,"").trim(),a=(a+=f(t,n)).trim(),e[i]("transform",a),a},b.getScale=function(e){var t=(e[e.attr?"attr":"getAttribute"]("transform")||"").replace(/.*\bscale\((\d*\.?\d*)[^\d]*(\d*\.?\d*)[^\d].*/,(function(e,t,n){return[t,n].join(" ")})).split(" ");return{x:+t[0]||1,y:+t[1]||1}},b.setScale=function(e,t,n){var r=e.attr?"attr":"getAttribute",i=e.attr?"attr":"setAttribute",a=e[r]("transform")||"";return t=t||1,n=n||1,a=a.replace(/(\bscale\(.*?\);?)/,"").trim(),a=(a+="scale("+t+","+n+")").trim(),e[i]("transform",a),a};var $=/\s*sc.*/;b.setPointGroupScale=function(e,t,n){if(t=t||1,n=n||1,e){var r=1===t&&1===n?"":"scale("+t+","+n+")";e.each((function(){var e=(this.getAttribute("transform")||"").replace($,"");e=(e+=r).trim(),this.setAttribute("transform",e)}))}};var V=/translate\([^)]*\)\s*$/;function W(e,t){var n;return e&&(n=e.mf),void 0===n&&(n=t.marker&&t.marker.standoff||0),t._geo||t._xA?n:-n}b.setTextPointsScale=function(e,t,n){e&&e.each((function(){var e,i=r.select(this),a=i.select("text");if(a.node()){var o=parseFloat(a.attr("x")||0),s=parseFloat(a.attr("y")||0),l=(i.attr("transform")||"").match(V);e=1===t&&1===n?[]:[f(o,s),"scale("+t+","+n+")",f(-o,-s)],l&&e.push(l),i.attr("transform",e.join(""))}}))},b.getMarkerStandoff=W;var q,G,Z,Y,K,X,J=Math.atan2,Q=Math.cos,ee=Math.sin;function te(e,t){var n=t[0],r=t[1];return[n*Q(e)-r*ee(e),n*ee(e)+r*Q(e)]}function ne(e,t){var n,r,i=e.ma;void 0===i&&(i=t.marker.angle||0);var a=t.marker.angleref;if("previous"===a||"north"===a){if(t._geo){var s=t._geo.project(e.lonlat);n=s[0],r=s[1]}else{var l=t._xA,c=t._yA;if(!l||!c)return 90;n=l.c2p(e.x),r=c.c2p(e.y)}if(t._geo){var u,f=e.lonlat[0],d=e.lonlat[1],h=t._geo.project([f,d+1e-5]),p=t._geo.project([f+1e-5,d]),v=J(p[1]-r,p[0]-n),m=J(h[1]-r,h[0]-n);if("north"===a)u=i/180*Math.PI;else if("previous"===a){var g=f/180*Math.PI,y=d/180*Math.PI,b=q/180*Math.PI,x=G/180*Math.PI,w=b-g,_=Q(x)*ee(w),k=ee(x)*Q(y)-Q(x)*ee(y)*Q(w);u=-J(_,k)-Math.PI,q=f,G=d}var S=te(v,[Q(u),0]),T=te(m,[ee(u),0]);i=J(S[1]+T[1],S[0]+T[0])/Math.PI*180,"previous"!==a||X===t.uid&&e.i===K+1||(i=null)}if("previous"===a&&!t._geo)if(X===t.uid&&e.i===K+1&&o(n)&&o(r)){var A=n-Z,E=r-Y,C=t.line&&t.line.shape||"",M=C.slice(C.length-1);"h"===M&&(E=0),"v"===M&&(A=0),i+=J(E,A)/Math.PI*180+90}else i=null}return Z=n,Y=r,K=e.i,X=t.uid,i}b.getMarkerAngle=ne},90998:function(e,t,n){"use strict";var r,i,a,o,s=n(95616),l=n(39898).round,c="M0,0Z",u=Math.sqrt(2),f=Math.sqrt(3),d=Math.PI,h=Math.cos,p=Math.sin;function v(e){return null===e}function m(e,t,n){if((!e||e%360===0)&&!t)return n;if(a===e&&o===t&&r===n)return i;function l(e,n){var r=h(e),i=p(e),a=n[0],o=n[1]+(t||0);return[a*r-o*i,a*i+o*r]}a=e,o=t,r=n;for(var c=e/180*d,u=0,f=0,v=s(n),m="",g=0;g0,f=e._context.staticPlot;t.each((function(t){var d,h=t[0].trace,p=h.error_x||{},v=h.error_y||{};h.ids&&(d=function(e){return e.id});var m=o.hasMarkers(h)&&h.marker.maxdisplayed>0;v.visible||p.visible||(t=[]);var g=r.select(this).selectAll("g.errorbar").data(t,d);if(g.exit().remove(),t.length){p.visible||g.selectAll("path.xerror").remove(),v.visible||g.selectAll("path.yerror").remove(),g.style("opacity",1);var y=g.enter().append("g").classed("errorbar",!0);u&&y.style("opacity",0).transition().duration(s.duration).style("opacity",1),a.setClipUrl(g,n.layerClipId,e),g.each((function(e){var t=r.select(this),n=function(e,t,n){var r={x:t.c2p(e.x),y:n.c2p(e.y)};return void 0!==e.yh&&(r.yh=n.c2p(e.yh),r.ys=n.c2p(e.ys),i(r.ys)||(r.noYS=!0,r.ys=n.c2p(e.ys,!0))),void 0!==e.xh&&(r.xh=t.c2p(e.xh),r.xs=t.c2p(e.xs),i(r.xs)||(r.noXS=!0,r.xs=t.c2p(e.xs,!0))),r}(e,l,c);if(!m||e.vis){var a,o=t.select("path.yerror");if(v.visible&&i(n.x)&&i(n.yh)&&i(n.ys)){var d=v.width;a="M"+(n.x-d)+","+n.yh+"h"+2*d+"m-"+d+",0V"+n.ys,n.noYS||(a+="m-"+d+",0h"+2*d),o.size()?u&&(o=o.transition().duration(s.duration).ease(s.easing)):o=t.append("path").style("vector-effect",f?"none":"non-scaling-stroke").classed("yerror",!0),o.attr("d",a)}else o.remove();var h=t.select("path.xerror");if(p.visible&&i(n.y)&&i(n.xh)&&i(n.xs)){var g=(p.copy_ystyle?v:p).width;a="M"+n.xh+","+(n.y-g)+"v"+2*g+"m0,-"+g+"H"+n.xs,n.noXS||(a+="m0,-"+g+"v"+2*g),h.size()?u&&(h=h.transition().duration(s.duration).ease(s.easing)):h=t.append("path").style("vector-effect",f?"none":"non-scaling-stroke").classed("xerror",!0),h.attr("d",a)}else h.remove()}}))}}))}},62662:function(e,t,n){"use strict";var r=n(39898),i=n(7901);e.exports=function(e){e.each((function(e){var t=e[0].trace,n=t.error_y||{},a=t.error_x||{},o=r.select(this);o.selectAll("path.yerror").style("stroke-width",n.thickness+"px").call(i.stroke,n.color),a.copy_ystyle&&(a=n),o.selectAll("path.xerror").style("stroke-width",a.thickness+"px").call(i.stroke,a.color)}))}},77914:function(e,t,n){"use strict";var r=n(41940),i=n(528).hoverlabel,a=n(1426).extendFlat;e.exports={hoverlabel:{bgcolor:a({},i.bgcolor,{arrayOk:!0}),bordercolor:a({},i.bordercolor,{arrayOk:!0}),font:r({arrayOk:!0,editType:"none"}),align:a({},i.align,{arrayOk:!0}),namelength:a({},i.namelength,{arrayOk:!0}),editType:"none"}}},30732:function(e,t,n){"use strict";var r=n(71828),i=n(73972);function a(e,t,n,i){i=i||r.identity,Array.isArray(e)&&(t[0][n]=i(e))}e.exports=function(e){var t=e.calcdata,n=e._fullLayout;function o(e){return function(t){return r.coerceHoverinfo({hoverinfo:t},{_module:e._module},n)}}for(var s=0;s=0&&n.indexw[0]._length||le<0||le>_[0]._length)return p.unhoverRaw(e,t)}else se="xpx"in t?t.xpx:w[0]._length/2,le="ypx"in t?t.ypx:_[0]._length/2;if(t.pointerX=se+w[0]._offset,t.pointerY=le+_[0]._offset,V="xval"in t?g.flat(l,t.xval):g.p2c(w,se),W="yval"in t?g.flat(l,t.yval):g.p2c(_,le),!i(V[0])||!i(W[0]))return o.warn("Fx.hover failed",t,e),p.unhoverRaw(e,t)}var fe=1/0;function de(e,n){for(G=0;Gne&&(re.splice(0,ne),fe=re[0].distance),y&&0!==$&&0===re.length){te.distance=$,te.index=!1;var f=Y._module.hoverPoints(te,Q,ee,"closest",{hoverLayer:u._hoverlayer});if(f&&(f=f.filter((function(e){return e.spikeDistance<=$}))),f&&f.length){var d,p=f.filter((function(e){return e.xa.showspikes&&"hovered data"!==e.xa.spikesnap}));if(p.length){var v=p[0];i(v.x0)&&i(v.y0)&&(d=pe(v),(!ae.vLinePoint||ae.vLinePoint.spikeDistance>d.spikeDistance)&&(ae.vLinePoint=d))}var m=f.filter((function(e){return e.ya.showspikes&&"hovered data"!==e.ya.spikesnap}));if(m.length){var b=m[0];i(b.x0)&&i(b.y0)&&(d=pe(b),(!ae.hLinePoint||ae.hLinePoint.spikeDistance>d.spikeDistance)&&(ae.hLinePoint=d))}}}}}function he(e,t,n){for(var r,i=null,a=1/0,o=0;o0&&Math.abs(e.distance)Te-1;Ae--)Oe(re[Ae]);re=Ee,ye()}var Pe=e._hoverdata,Le=[],Ie=U(e),Re=H(e);for(q=0;q1||re.length>1)||"closest"===I&&oe&&re.length>1,Ge=h.combine(u.plot_bgcolor||h.background,u.paper_bgcolor),Ze=L(re,{gd:e,hovermode:I,rotateLabels:qe,bgColor:Ge,container:u._hoverlayer,outerContainer:u._paper.node(),commonLabelOpts:u.hoverlabel,hoverdistance:u.hoverdistance}),Ye=Ze.hoverLabels;if(g.isUnifiedHover(I)||(function(e,t,n,r){var i,a,o,s,l,c,u,f=t?"xa":"ya",d=t?"ya":"xa",h=0,p=1,v=e.size(),m=new Array(v),g=0,y=r.minX,b=r.maxX,x=r.minY,w=r.maxY,_=function(e){return e*n._invScaleX},S=function(e){return e*n._invScaleY};function T(e){var t=e[0],n=e[e.length-1];if(a=t.pmin-t.pos-t.dp+t.size,o=n.pos+n.dp+n.size-t.pmax,a>.01){for(l=e.length-1;l>=0;l--)e[l].dp+=a;i=!1}if(!(o<.01)){if(a<-.01){for(l=e.length-1;l>=0;l--)e[l].dp-=o;i=!1}if(i){var r=0;for(s=0;st.pmax&&r++;for(s=e.length-1;s>=0&&!(r<=0);s--)(c=e[s]).pos>t.pmax-1&&(c.del=!0,r--);for(s=0;s=0;l--)e[l].dp-=o;for(s=e.length-1;s>=0&&!(r<=0);s--)(c=e[s]).pos+c.dp+c.size>t.pmax&&(c.del=!0,r--)}}}for(e.each((function(e){var r=e[f],i=e[d],a="x"===r._id.charAt(0),o=r.range;0===g&&o&&o[0]>o[1]!==a&&(p=-1);var s=0,l=a?n.width:n.height;if("x"===n.hovermode||"y"===n.hovermode){var c,u,h=R(e,t),v=e.anchor,T="end"===v?-1:1;if("middle"===v)u=(c=e.crossPos+(a?S(h.y-e.by/2):_(e.bx/2+e.tx2width/2)))+(a?S(e.by):_(e.bx));else if(a)u=(c=e.crossPos+S(A+h.y)-S(e.by/2-A))+S(e.by);else{var E=_(T*A+h.x),C=E+_(T*e.bx);c=e.crossPos+Math.min(E,C),u=e.crossPos+Math.max(E,C)}a?void 0!==x&&void 0!==w&&Math.min(u,w)-Math.max(c,x)>1&&("left"===i.side?(s=i._mainLinePosition,l=n.width):l=i._mainLinePosition):void 0!==y&&void 0!==b&&Math.min(u,b)-Math.max(c,y)>1&&("top"===i.side?(s=i._mainLinePosition,l=n.height):l=i._mainLinePosition)}m[g++]=[{datum:e,traceIndex:e.trace.index,dp:0,pos:e.pos,posref:e.posref,size:e.by*(a?k:1)/2,pmin:s,pmax:l}]})),m.sort((function(e,t){return e[0].posref-t[0].posref||p*(t[0].traceIndex-e[0].traceIndex)}));!i&&h<=v;){for(h++,i=!0,s=0;s.01&&M.pmin===O.pmin&&M.pmax===O.pmax){for(l=C.length-1;l>=0;l--)C[l].dp+=a;for(E.push.apply(E,C),m.splice(s+1,1),u=0,l=E.length-1;l>=0;l--)u+=E[l].dp;for(o=u/E.length,l=E.length-1;l>=0;l--)E[l].dp-=o;i=!1}else s++}m.forEach(T)}for(s=m.length-1;s>=0;s--){var P=m[s];for(l=P.length-1;l>=0;l--){var L=P[l],I=L.datum;I.offset=L.dp,I.del=L.del}}}(Ye,qe,u,Ze.commonLabelBoundingBox),D(Ye,qe,u._invScaleX,u._invScaleY)),s&&s.tagName){var Ke=m.getComponentMethod("annotations","hasClickToShow")(e,Le);f(r.select(s),Ke?"pointer":"")}s&&!a&&function(e,t,n){if(!n||n.length!==e._hoverdata.length)return!0;for(var r=n.length-1;r>=0;r--){var i=n[r],a=e._hoverdata[r];if(i.curveNumber!==a.curveNumber||String(i.pointNumber)!==String(a.pointNumber)||String(i.pointNumbers)!==String(a.pointNumbers))return!0}return!1}(e,0,Pe)&&(Pe&&e.emit("plotly_unhover",{event:t,points:Pe}),e.emit("plotly_hover",{event:t,points:e._hoverdata,xaxes:w,yaxes:_,xvals:V,yvals:W}))}(e,t,n,a,s)}))},t.loneHover=function(e,t){var n=!0;Array.isArray(e)||(n=!1,e=[e]);var i=t.gd,a=U(i),o=H(i),s=L(e.map((function(e){var n=e._x0||e.x0||e.x||0,r=e._x1||e.x1||e.x||0,s=e._y0||e.y0||e.y||0,l=e._y1||e.y1||e.y||0,c=e.eventData;if(c){var u=Math.min(n,r),f=Math.max(n,r),d=Math.min(s,l),p=Math.max(s,l),v=e.trace;if(m.traceIs(v,"gl3d")){var g=i._fullLayout[v.scene]._scene.container,y=g.offsetLeft,b=g.offsetTop;u+=y,f+=y,d+=b,p+=b}c.bbox={x0:u+o,x1:f+o,y0:d+a,y1:p+a},t.inOut_bbox&&t.inOut_bbox.push(c.bbox)}else c=!1;return{color:e.color||h.defaultLine,x0:e.x0||e.x||0,x1:e.x1||e.x||0,y0:e.y0||e.y||0,y1:e.y1||e.y||0,xLabel:e.xLabel,yLabel:e.yLabel,zLabel:e.zLabel,text:e.text,name:e.name,idealAlign:e.idealAlign,borderColor:e.borderColor,fontFamily:e.fontFamily,fontSize:e.fontSize,fontColor:e.fontColor,nameLength:e.nameLength,textAlign:e.textAlign,trace:e.trace||{index:0,hoverinfo:""},xa:{_offset:0},ya:{_offset:0},index:0,hovertemplate:e.hovertemplate||!1,hovertemplateLabels:e.hovertemplateLabels||!1,eventData:c}})),{gd:i,hovermode:"closest",rotateLabels:!1,bgColor:t.bgColor||h.background,container:r.select(t.container),outerContainer:t.outerContainer||t.container}).hoverLabels,l=0,c=0;return s.sort((function(e,t){return e.y0-t.y0})).each((function(e,n){var r=e.y0-e.by/2;e.offset=r-5([\s\S]*)<\/extra>/;function L(e,t){var n=t.gd,i=n._fullLayout,a=t.hovermode,c=t.rotateLabels,f=t.bgColor,p=t.container,v=t.outerContainer,_=t.commonLabelOpts||{};if(0===e.length)return[[]];var k=t.fontFamily||y.HOVERFONT,S=t.fontSize||y.HOVERFONTSIZE,T=e[0],C=T.xa,M=T.ya,P=a.charAt(0),L=P+"Label",R=T[L];if(void 0===R&&"multicategory"===C.type)for(var D=0;Di.width-x?(m=i.width-x,t.attr("d","M"+(x-A)+",0L"+x+","+b+A+"v"+b+(2*E+y.height)+"H-"+x+"V"+b+A+"H"+(x-2*A)+"Z")):t.attr("d","M0,0L"+A+","+b+A+"H"+x+"v"+b+(2*E+y.height)+"H-"+x+"V"+b+A+"H-"+A+"Z"),G.minX=m-x,G.maxX=m+x,"top"===C.side?(G.minY=g-(2*E+y.height),G.maxY=g-E):(G.minY=g+E,G.maxY=g+(2*E+y.height))}else{var w,O,P;"right"===M.side?(w="start",O=1,P="",m=C._offset+C._length):(w="end",O=-1,P="-",m=C._offset),g=M._offset+(T.y0+T.y1)/2,l.attr("text-anchor",w),t.attr("d","M0,0L"+P+A+","+A+"V"+(E+y.height/2)+"h"+P+(2*E+y.width)+"V-"+(E+y.height/2)+"H"+P+A+"V-"+A+"Z"),G.minY=g-(E+y.height/2),G.maxY=g+(E+y.height/2),"right"===M.side?(G.minX=m+A,G.maxX=m+A+(2*E+y.width)):(G.minX=m-A-(2*E+y.width),G.maxX=m-A);var L,I=y.height/2,D=N-y.top-I,F="clip"+i._uid+"commonlabel"+M._id;if(m=0?le:ce+de=0?ce:xe+de=0?oe:se+he=0?se:we+he=0,"top"!==e.idealAlign&&W||!q?W?(L+=F/2,e.anchor="start"):e.anchor="middle":(L-=F/2,e.anchor="end"),e.crossPos=L;else{if(e.pos=L,W=P+D/2+G<=z,q=P-D/2-G>=0,"left"!==e.idealAlign&&W||!q)if(W)P+=D/2,e.anchor="start";else{e.anchor="middle";var Z=G/2,Y=P+Z-z,K=P-Z;Y>0&&(P-=Y),K<0&&(P+=-K)}else P-=D/2,e.anchor="end";e.crossPos=P}_.attr("text-anchor",e.anchor),C&&T.attr("text-anchor",e.anchor),t.attr("transform",s(P,L)+(c?l(w):""))})),{hoverLabels:_e,commonLabelBoundingBox:G}}function I(e,t,n,r,i,a){var s="",l="";void 0!==e.nameOverride&&(e.name=e.nameOverride),e.name&&(e.trace._meta&&(e.name=o.templateString(e.name,e.trace._meta)),s=j(e.name,e.nameLength));var c=n.charAt(0),u="x"===c?"y":"x";void 0!==e.zLabel?(void 0!==e.xLabel&&(l+="x: "+e.xLabel+"
"),void 0!==e.yLabel&&(l+="y: "+e.yLabel+"
"),"choropleth"!==e.trace.type&&"choroplethmapbox"!==e.trace.type&&(l+=(l?"z: ":"")+e.zLabel)):t&&e[c+"Label"]===i?l=e[u+"Label"]||"":void 0===e.xLabel?void 0!==e.yLabel&&"scattercarpet"!==e.trace.type&&(l=e.yLabel):l=void 0===e.yLabel?e.xLabel:"("+e.xLabel+", "+e.yLabel+")",!e.text&&0!==e.text||Array.isArray(e.text)||(l+=(l?"
":"")+e.text),void 0!==e.extraText&&(l+=(l?"
":"")+e.extraText),a&&""===l&&!e.hovertemplate&&(""===s&&a.remove(),l=s);var f=e.hovertemplate||!1;if(f){var d=e.hovertemplateLabels||e;e[c+"Label"]!==i&&(d[c+"other"]=d[c+"Val"],d[c+"otherLabel"]=d[c+"Label"]),l=(l=o.hovertemplateString(f,d,r._d3locale,e.eventData[0]||{},e.trace._meta)).replace(P,(function(t,n){return s=j(n,e.nameLength),""}))}return[l,s]}function R(e,t){var n=0,r=e.offset;return t&&(r*=-T,n=e.offset*S),{x:n,y:r}}function D(e,t,n,i){var a=function(e){return e*n},o=function(e){return e*i};e.each((function(e){var n=r.select(this);if(e.del)return n.remove();var i=n.select("text.nums"),s=e.anchor,l="end"===s?-1:1,c=function(e){var t={start:1,end:-1,middle:0}[e.anchor],n=t*(A+E),r=n+t*(e.txwidth+E);return"middle"===e.anchor&&(n-=e.tx2width/2,r+=e.txwidth/2+E),{alignShift:t,textShiftX:n,text2ShiftX:r}}(e),f=R(e,t),h=f.x,p=f.y,v="middle"===s;n.select("path").attr("d",v?"M-"+a(e.bx/2+e.tx2width/2)+","+o(p-e.by/2)+"h"+a(e.bx)+"v"+o(e.by)+"h-"+a(e.bx)+"Z":"M0,0L"+a(l*A+h)+","+o(A+p)+"v"+o(e.by/2-A)+"h"+a(l*e.bx)+"v-"+o(e.by)+"H"+a(l*A+h)+"V"+o(p-A)+"Z");var m=h+c.textShiftX,g=p+e.ty0-e.by/2+E,y=e.textAlign||"auto";"auto"!==y&&("left"===y&&"start"!==s?(i.attr("text-anchor","start"),m=v?-e.bx/2-e.tx2width/2+E:-e.bx-E):"right"===y&&"end"!==s&&(i.attr("text-anchor","end"),m=v?e.bx/2-e.tx2width/2-E:e.bx+E)),i.call(u.positionText,a(m),o(g)),e.tx2width&&(n.select("text.name").call(u.positionText,a(c.text2ShiftX+c.alignShift*E+h),o(p+e.ty0-e.by/2+E)),n.select("rect").call(d.setRect,a(c.text2ShiftX+(c.alignShift-1)*e.tx2width/2+h),o(p-e.by/2-1),a(e.tx2width),o(e.by+2)))}))}function F(e,t){var n=e.index,r=e.trace||{},a=e.cd[0],s=e.cd[n]||{};function l(e){return e||i(e)&&0===e}var c=Array.isArray(n)?function(e,t){var i=o.castOption(a,n,e);return l(i)?i:o.extractOption({},r,"",t)}:function(e,t){return o.extractOption(s,r,e,t)};function u(t,n,r){var i=c(n,r);l(i)&&(e[t]=i)}if(u("hoverinfo","hi","hoverinfo"),u("bgcolor","hbg","hoverlabel.bgcolor"),u("borderColor","hbc","hoverlabel.bordercolor"),u("fontFamily","htf","hoverlabel.font.family"),u("fontSize","hts","hoverlabel.font.size"),u("fontColor","htc","hoverlabel.font.color"),u("nameLength","hnl","hoverlabel.namelength"),u("textAlign","hta","hoverlabel.align"),e.posref="y"===t||"closest"===t&&"h"===r.orientation?e.xa._offset+(e.x0+e.x1)/2:e.ya._offset+(e.y0+e.y1)/2,e.x0=o.constrain(e.x0,0,e.xa._length),e.x1=o.constrain(e.x1,0,e.xa._length),e.y0=o.constrain(e.y0,0,e.ya._length),e.y1=o.constrain(e.y1,0,e.ya._length),void 0!==e.xLabelVal&&(e.xLabel="xLabel"in e?e.xLabel:v.hoverLabelText(e.xa,e.xLabelVal,r.xhoverformat),e.xVal=e.xa.c2d(e.xLabelVal)),void 0!==e.yLabelVal&&(e.yLabel="yLabel"in e?e.yLabel:v.hoverLabelText(e.ya,e.yLabelVal,r.yhoverformat),e.yVal=e.ya.c2d(e.yLabelVal)),void 0!==e.zLabelVal&&void 0===e.zLabel&&(e.zLabel=String(e.zLabelVal)),!isNaN(e.xerr)&&!("log"===e.xa.type&&e.xerr<=0)){var f=v.tickText(e.xa,e.xa.c2l(e.xerr),"hover").text;void 0!==e.xerrneg?e.xLabel+=" +"+f+" / -"+v.tickText(e.xa,e.xa.c2l(e.xerrneg),"hover").text:e.xLabel+=" \xb1 "+f,"x"===t&&(e.distance+=1)}if(!isNaN(e.yerr)&&!("log"===e.ya.type&&e.yerr<=0)){var d=v.tickText(e.ya,e.ya.c2l(e.yerr),"hover").text;void 0!==e.yerrneg?e.yLabel+=" +"+d+" / -"+v.tickText(e.ya,e.ya.c2l(e.yerrneg),"hover").text:e.yLabel+=" \xb1 "+d,"y"===t&&(e.distance+=1)}var h=e.hoverinfo||e.trace.hoverinfo;return h&&"all"!==h&&(-1===(h=Array.isArray(h)?h:h.split("+")).indexOf("x")&&(e.xLabel=void 0),-1===h.indexOf("y")&&(e.yLabel=void 0),-1===h.indexOf("z")&&(e.zLabel=void 0),-1===h.indexOf("text")&&(e.text=void 0),-1===h.indexOf("name")&&(e.name=void 0)),e}function N(e,t,n){var r,i,o=n.container,s=n.fullLayout,l=s._size,c=n.event,u=!!t.hLinePoint,f=!!t.vLinePoint;if(o.selectAll(".spikeline").remove(),f||u){var p=h.combine(s.plot_bgcolor,s.paper_bgcolor);if(u){var m,g,y=t.hLinePoint;r=y&&y.xa,"cursor"===(i=y&&y.ya).spikesnap?(m=c.pointerX,g=c.pointerY):(m=r._offset+y.x,g=i._offset+y.y);var b,x,w=a.readability(y.color,p)<1.5?h.contrast(p):y.color,_=i.spikemode,k=i.spikethickness,S=i.spikecolor||w,T=v.getPxPosition(e,i);if(-1!==_.indexOf("toaxis")||-1!==_.indexOf("across")){if(-1!==_.indexOf("toaxis")&&(b=T,x=m),-1!==_.indexOf("across")){var A=i._counterDomainMin,E=i._counterDomainMax;"free"===i.anchor&&(A=Math.min(A,i.position),E=Math.max(E,i.position)),b=l.l+A*l.w,x=l.l+E*l.w}o.insert("line",":first-child").attr({x1:b,x2:x,y1:g,y2:g,"stroke-width":k,stroke:S,"stroke-dasharray":d.dashStyle(i.spikedash,k)}).classed("spikeline",!0).classed("crisp",!0),o.insert("line",":first-child").attr({x1:b,x2:x,y1:g,y2:g,"stroke-width":k+2,stroke:p}).classed("spikeline",!0).classed("crisp",!0)}-1!==_.indexOf("marker")&&o.insert("circle",":first-child").attr({cx:T+("right"!==i.side?k:-k),cy:g,r:k,fill:S}).classed("spikeline",!0)}if(f){var C,M,O=t.vLinePoint;r=O&&O.xa,i=O&&O.ya,"cursor"===r.spikesnap?(C=c.pointerX,M=c.pointerY):(C=r._offset+O.x,M=i._offset+O.y);var P,L,I=a.readability(O.color,p)<1.5?h.contrast(p):O.color,R=r.spikemode,D=r.spikethickness,F=r.spikecolor||I,N=v.getPxPosition(e,r);if(-1!==R.indexOf("toaxis")||-1!==R.indexOf("across")){if(-1!==R.indexOf("toaxis")&&(P=N,L=M),-1!==R.indexOf("across")){var z=r._counterDomainMin,j=r._counterDomainMax;"free"===r.anchor&&(z=Math.min(z,r.position),j=Math.max(j,r.position)),P=l.t+(1-j)*l.h,L=l.t+(1-z)*l.h}o.insert("line",":first-child").attr({x1:C,x2:C,y1:P,y2:L,"stroke-width":D,stroke:F,"stroke-dasharray":d.dashStyle(r.spikedash,D)}).classed("spikeline",!0).classed("crisp",!0),o.insert("line",":first-child").attr({x1:C,x2:C,y1:P,y2:L,"stroke-width":D+2,stroke:p}).classed("spikeline",!0).classed("crisp",!0)}-1!==R.indexOf("marker")&&o.insert("circle",":first-child").attr({cx:C,cy:N-("top"!==r.side?D:-D),r:D,fill:F}).classed("spikeline",!0)}}}function z(e,t){return!t||t.vLinePoint!==e._spikepoints.vLinePoint||t.hLinePoint!==e._spikepoints.hLinePoint}function j(e,t){return u.plainText(e||"",{len:t,allowedTags:["br","sub","sup","b","i","em"]})}function B(e,t,n){var r=t[e+"a"],i=t[e+"Val"],a=t.cd[0];if("category"===r.type||"multicategory"===r.type)i=r._categoriesMap[i];else if("date"===r.type){var o=t.trace[e+"periodalignment"];if(o){var s=t.cd[t.index],l=s[e+"Start"];void 0===l&&(l=s[e]);var c=s[e+"End"];void 0===c&&(c=s[e]);var u=c-l;"end"===o?i+=u:"middle"===o&&(i+=u/2)}i=r.d2c(i)}return a&&a.t&&a.t.posLetter===r._id&&("group"!==n.boxmode&&"group"!==n.violinmode||(i+=a.t.dPos)),i}function U(e){return e.offsetTop+e.clientTop}function H(e){return e.offsetLeft+e.clientLeft}function $(e,t){var n=e._fullLayout,r=t.getBoundingClientRect(),i=r.left,a=r.top,s=i+r.width,l=a+r.height,c=o.apply3DTransform(n._invTransform)(i,a),u=o.apply3DTransform(n._invTransform)(s,l),f=c[0],d=c[1],h=u[0],p=u[1];return{x:f,y:d,width:h-f,height:p-d,top:Math.min(d,p),left:Math.min(f,h),right:Math.max(f,h),bottom:Math.max(d,p)}}},38048:function(e,t,n){"use strict";var r=n(71828),i=n(7901),a=n(23469).isUnifiedHover;e.exports=function(e,t,n,o){o=o||{};var s=t.legend;function l(e){o.font[e]||(o.font[e]=s?t.legend.font[e]:t.font[e])}t&&a(t.hovermode)&&(o.font||(o.font={}),l("size"),l("family"),l("color"),s?(o.bgcolor||(o.bgcolor=i.combine(t.legend.bgcolor,t.paper_bgcolor)),o.bordercolor||(o.bordercolor=t.legend.bordercolor)):o.bgcolor||(o.bgcolor=t.paper_bgcolor)),n("hoverlabel.bgcolor",o.bgcolor),n("hoverlabel.bordercolor",o.bordercolor),n("hoverlabel.namelength",o.namelength),r.coerceFont(n,"hoverlabel.font",o.font),n("hoverlabel.align",o.align)}},98212:function(e,t,n){"use strict";var r=n(71828),i=n(528);e.exports=function(e,t){function n(n,a){return void 0!==t[n]?t[n]:r.coerce(e,t,i,n,a)}return n("clickmode"),n("hovermode")}},30211:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=n(28569),o=n(23469),s=n(528),l=n(88335);e.exports={moduleType:"component",name:"fx",constants:n(26675),schema:{layout:s},attributes:n(77914),layoutAttributes:s,supplyLayoutGlobalDefaults:n(22774),supplyDefaults:n(54268),supplyLayoutDefaults:n(34938),calc:n(30732),getDistanceFunction:o.getDistanceFunction,getClosest:o.getClosest,inbox:o.inbox,quadrature:o.quadrature,appendArrayPointValue:o.appendArrayPointValue,castHoverOption:function(e,t,n){return i.castOption(e,t,"hoverlabel."+n)},castHoverinfo:function(e,t,n){return i.castOption(e,n,"hoverinfo",(function(n){return i.coerceHoverinfo({hoverinfo:n},{_module:e._module},t)}))},hover:l.hover,unhover:a.unhover,loneHover:l.loneHover,loneUnhover:function(e){var t=i.isD3Selection(e)?e:r.select(e);t.selectAll("g.hovertext").remove(),t.selectAll(".spikeline").remove()},click:n(75914)}},528:function(e,t,n){"use strict";var r=n(26675),i=n(41940),a=i({editType:"none"});a.family.dflt=r.HOVERFONT,a.size.dflt=r.HOVERFONTSIZE,e.exports={clickmode:{valType:"flaglist",flags:["event","select"],dflt:"event",editType:"plot",extras:["none"]},dragmode:{valType:"enumerated",values:["zoom","pan","select","lasso","drawclosedpath","drawopenpath","drawline","drawrect","drawcircle","orbit","turntable",!1],dflt:"zoom",editType:"modebar"},hovermode:{valType:"enumerated",values:["x","y","closest",!1,"x unified","y unified"],dflt:"closest",editType:"modebar"},hoverdistance:{valType:"integer",min:-1,dflt:20,editType:"none"},spikedistance:{valType:"integer",min:-1,dflt:-1,editType:"none"},hoverlabel:{bgcolor:{valType:"color",editType:"none"},bordercolor:{valType:"color",editType:"none"},font:a,grouptitlefont:i({editType:"none"}),align:{valType:"enumerated",values:["left","right","auto"],dflt:"auto",editType:"none"},namelength:{valType:"integer",min:-1,dflt:15,editType:"none"},editType:"none"},selectdirection:{valType:"enumerated",values:["h","v","d","any"],dflt:"any",editType:"none"}}},34938:function(e,t,n){"use strict";var r=n(71828),i=n(528),a=n(98212),o=n(38048);e.exports=function(e,t){function n(n,a){return r.coerce(e,t,i,n,a)}a(e,t)&&(n("hoverdistance"),n("spikedistance")),"select"===n("dragmode")&&n("selectdirection");var s=t._has("mapbox"),l=t._has("geo"),c=t._basePlotModules.length;"zoom"===t.dragmode&&((s||l)&&1===c||s&&l&&2===c)&&(t.dragmode="pan"),o(e,t,n),r.coerceFont(n,"hoverlabel.grouptitlefont",t.hoverlabel.font)}},22774:function(e,t,n){"use strict";var r=n(71828),i=n(38048),a=n(528);e.exports=function(e,t){i(e,t,(function(n,i){return r.coerce(e,t,a,n,i)}))}},83312:function(e,t,n){"use strict";var r=n(71828),i=n(30587).counter,a=n(27670).Y,o=n(85555).idRegex,s=n(44467),l={rows:{valType:"integer",min:1,editType:"plot"},roworder:{valType:"enumerated",values:["top to bottom","bottom to top"],dflt:"top to bottom",editType:"plot"},columns:{valType:"integer",min:1,editType:"plot"},subplots:{valType:"info_array",freeLength:!0,dimensions:2,items:{valType:"enumerated",values:[i("xy").toString(),""],editType:"plot"},editType:"plot"},xaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[o.x.toString(),""],editType:"plot"},editType:"plot"},yaxes:{valType:"info_array",freeLength:!0,items:{valType:"enumerated",values:[o.y.toString(),""],editType:"plot"},editType:"plot"},pattern:{valType:"enumerated",values:["independent","coupled"],dflt:"coupled",editType:"plot"},xgap:{valType:"number",min:0,max:1,editType:"plot"},ygap:{valType:"number",min:0,max:1,editType:"plot"},domain:a({name:"grid",editType:"plot",noGridCell:!0},{}),xside:{valType:"enumerated",values:["bottom","bottom plot","top plot","top"],dflt:"bottom plot",editType:"plot"},yside:{valType:"enumerated",values:["left","left plot","right plot","right"],dflt:"left plot",editType:"plot"},editType:"plot"};function c(e,t,n){var r=t[n+"axes"],i=Object.keys((e._splomAxes||{})[n]||{});return Array.isArray(r)?r:i.length?i:void 0}function u(e,t,n,r,i,a){var o=t(e+"gap",n),s=t("domain."+e);t(e+"side",r);for(var l=new Array(i),c=s[0],u=(s[1]-c)/(i-o),f=u*(1-o),d=0;d1){d||h||p||"independent"===S("pattern")&&(d=!0),m._hasSubplotGrid=d;var b,x,w="top to bottom"===S("roworder"),_=d?.2:.1,k=d?.3:.1;v&&t._splomGridDflt&&(b=t._splomGridDflt.xside,x=t._splomGridDflt.yside),m._domains={x:u("x",S,_,b,y),y:u("y",S,k,x,g,w)}}else delete t.grid}function S(e,t){return r.coerce(n,m,l,e,t)}},contentDefaults:function(e,t){var n=t.grid;if(n&&n._domains){var r,i,a,o,s,l,u,d=e.grid||{},h=t._subplots,p=n._hasSubplotGrid,v=n.rows,m=n.columns,g="independent"===n.pattern,y=n._axisMap={};if(p){var b=d.subplots||[];l=n.subplots=new Array(v);var x=1;for(r=0;r("legend"===e?1:0));if(!1===A&&(n[e]=void 0),(!1!==A||f.uirevision)&&(h("uirevision",n.uirevision),!1!==A)){h("borderwidth");var E,C,M,O="h"===h("orientation"),P="paper"===h("yref"),L="paper"===h("xref"),I="left";if(O?(E=0,r.getComponentMethod("rangeslider","isVisible")(t.xaxis)?P?(C=1.1,M="bottom"):(C=1,M="top"):P?(C=-.1,M="top"):(C=0,M="bottom")):(C=1,M="auto",L?E=1.02:(E=1,I="right")),i.coerce(f,d,{x:{valType:"number",editType:"legend",min:L?-2:0,max:L?3:1,dflt:E}},"x"),i.coerce(f,d,{y:{valType:"number",editType:"legend",min:P?-2:0,max:P?3:1,dflt:C}},"y"),h("traceorder",w),c.isGrouped(n[e])&&h("tracegroupgap"),h("entrywidth"),h("entrywidthmode"),h("itemsizing"),h("itemwidth"),h("itemclick"),h("itemdoubleclick"),h("groupclick"),h("xanchor",I),h("yanchor",M),h("valign"),i.noneOrAll(f,d,["x","y"]),h("title.text")){h("title.side",O?"left":"top");var R=i.extendFlat({},p,{size:i.bigFont(p.size)});i.coerceFont(h,"title.font",R)}}}}e.exports=function(e,t,n){var r,a=n.slice(),o=t.shapes;if(o)for(r=0;r1)}var z=p.hiddenlabels||[];if(!k&&(!p.showlegend||!E.length))return s.selectAll("."+_).remove(),p._topdefs.select("#"+n).remove(),a.autoMargin(e,_);var j=i.ensureSingle(s,"g",_,(function(e){k||e.attr("pointer-events","all")})),B=i.ensureSingleById(p._topdefs,"clipPath",n,(function(e){e.append("rect")})),U=i.ensureSingle(j,"rect","bg",(function(e){e.attr("shape-rendering","crispEdges")}));U.call(u.stroke,d.bordercolor).call(u.fill,d.bgcolor).style("stroke-width",d.borderwidth+"px");var H,$=i.ensureSingle(j,"g","scrollbox"),V=d.title;d._titleWidth=0,d._titleHeight=0,V.text?((H=i.ensureSingle($,"text",_+"titletext")).attr("text-anchor","start").call(c.font,V.font).text(V.text),M(H,$,e,d,w)):$.selectAll("."+_+"titletext").remove();var W=i.ensureSingle(j,"rect","scrollbar",(function(e){e.attr(h.scrollBarEnterAttrs).call(u.fill,h.scrollBarColor)})),q=$.selectAll("g.groups").data(E);q.enter().append("g").attr("class","groups"),q.exit().remove();var G=q.selectAll("g.traces").data(i.identity);G.enter().append("g").attr("class","traces"),G.exit().remove(),G.style("opacity",(function(e){var t=e[0].trace;return o.traceIs(t,"pie-like")?-1!==z.indexOf(e[0].label)?.5:1:"legendonly"===t.visible?.5:1})).each((function(){r.select(this).call(A,e,d)})).call(b,e,d).each((function(){k||r.select(this).call(C,e,_)})),i.syncOrAsync([a.previousPromises,function(){return function(e,t,n,i){var a=e._fullLayout,o=L(i);i||(i=a[o]);var s=a._size,l=x.isVertical(i),u=x.isGrouped(i),f="fraction"===i.entrywidthmode,d=i.borderwidth,p=2*d,v=h.itemGap,m=i.itemwidth+2*v,g=2*(d+v),y=P(i),b=i.y<0||0===i.y&&"top"===y,w=i.y>1||1===i.y&&"bottom"===y,_=i.tracegroupgap,k={};i._maxHeight=Math.max(b||w?a.height/2:s.h,30);var T=0;i._width=0,i._height=0;var A=function(e){var t=0,n=0,r=e.title.side;return r&&(-1!==r.indexOf("left")&&(t=e._titleWidth),-1!==r.indexOf("top")&&(n=e._titleHeight)),[t,n]}(i);if(l)n.each((function(e){var t=e[0].height;c.setTranslate(this,d+A[0],d+A[1]+i._height+t/2+v),i._height+=t,i._width=Math.max(i._width,e[0].width)})),T=m+i._width,i._width+=v+m+p,i._height+=g,u&&(t.each((function(e,t){c.setTranslate(this,0,t*i.tracegroupgap)})),i._height+=(i._lgroupsLength-1)*i.tracegroupgap);else{var E=O(i),C=i.x<0||0===i.x&&"right"===E,M=i.x>1||1===i.x&&"left"===E,I=w||b,R=a.width/2;i._maxWidth=Math.max(C?I&&"left"===E?s.l+s.w:R:M?I&&"right"===E?s.r+s.w:R:s.w,2*m);var D=0,F=0;n.each((function(e){var t=S(e,i,m);D=Math.max(D,t),F+=t})),T=null;var N=0;if(u){var z=0,j=0,B=0;t.each((function(){var e=0,t=0;r.select(this).selectAll("g.traces").each((function(n){var r=S(n,i,m),a=n[0].height;c.setTranslate(this,A[0],A[1]+d+v+a/2+t),t+=a,e=Math.max(e,r),k[n[0].trace.legendgroup]=e}));var n=e+v;j>0&&n+d+j>i._maxWidth?(N=Math.max(N,j),j=0,B+=z+_,z=t):z=Math.max(z,t),c.setTranslate(this,j,B),j+=n})),i._width=Math.max(N,j)+d,i._height=B+z+g}else{var U=n.size(),H=F+p+(U-1)*v=i._maxWidth&&(N=Math.max(N,q),V=0,W+=$,i._height+=$,$=0),c.setTranslate(this,A[0]+d+V,A[1]+d+W+t/2+v),q=V+n+v,V+=r,$=Math.max($,t)})),H?(i._width=V+p,i._height=$+g):(i._width=Math.max(N,q)+p,i._height+=$+g)}}i._width=Math.ceil(Math.max(i._width+A[0],i._titleWidth+2*(d+h.titlePad))),i._height=Math.ceil(Math.max(i._height+A[1],i._titleHeight+2*(d+h.itemGap))),i._effHeight=Math.min(i._height,i._maxHeight);var G=e._context.edits,Z=G.legendText||G.legendPosition;n.each((function(e){var t=r.select(this).select("."+o+"toggle"),n=e[0].height,a=e[0].trace.legendgroup,s=S(e,i,m);u&&""!==a&&(s=k[a]);var d=Z?m:T||s;l||f||(d+=v/2),c.setRect(t,0,-n/2,d,n)}))}(e,q,G,d)},function(){var t,u,y,b,x=p._size,w=d.borderwidth,S="paper"===d.xref,A="paper"===d.yref;if(V.text&&function(e,t,n){if("top center"===t.title.side||"top right"===t.title.side){var r=t.title.font.size*v,i=0,a=e.node(),o=c.bBox(a).width;"top center"===t.title.side?i=.5*(t._width-2*n-2*h.titlePad-o):"top right"===t.title.side&&(i=t._width-2*n-2*h.titlePad-o),f.positionText(e,n+h.titlePad+i,n+r)}}(H,d,w),!k){var E,C;E=S?x.l+x.w*d.x-m[O(d)]*d._width:p.width*d.x-m[O(d)]*d._width,C=A?x.t+x.h*(1-d.y)-m[P(d)]*d._effHeight:p.height*(1-d.y)-m[P(d)]*d._effHeight;var M=function(e,t,n,r){var i=e._fullLayout,o=i[t],s=O(o),l=P(o),c="paper"===o.xref,u="paper"===o.yref;e._fullLayout._reservedMargin[t]={};var f=o.y<.5?"b":"t",d=o.x<.5?"l":"r",h={r:i.width-n,l:n+o._width,b:i.height-r,t:r+o._effHeight};if(c&&u)return a.autoMargin(e,t,{x:o.x,y:o.y,l:o._width*m[s],r:o._width*g[s],b:o._effHeight*g[l],t:o._effHeight*m[l]});c?e._fullLayout._reservedMargin[t][f]=h[f]:u||"v"===o.orientation?e._fullLayout._reservedMargin[t][d]=h[d]:e._fullLayout._reservedMargin[t][f]=h[f]}(e,_,E,C);if(M)return;if(p.margin.autoexpand){var L=E,I=C;E=S?i.constrain(E,0,p.width-d._width):L,C=A?i.constrain(C,0,p.height-d._effHeight):I,E!==L&&i.log("Constrain "+_+".x to make legend fit inside graph"),C!==I&&i.log("Constrain "+_+".y to make legend fit inside graph")}c.setTranslate(j,E,C)}if(W.on(".drag",null),j.on("wheel",null),k||d._height<=d._maxHeight||e._context.staticPlot){var R=d._effHeight;k&&(R=d._height),U.attr({width:d._width-w,height:R-w,x:w/2,y:w/2}),c.setTranslate($,0,0),B.select("rect").attr({width:d._width-2*w,height:R-2*w,x:w,y:w}),c.setClipUrl($,n,e),c.setRect(W,0,0,0,0),delete d._scrollY}else{var D,F,N,z=Math.max(h.scrollBarMinHeight,d._effHeight*d._effHeight/d._height),q=d._effHeight-z-2*h.scrollBarMargin,G=d._height-d._effHeight,Z=q/G,Y=Math.min(d._scrollY||0,G);U.attr({width:d._width-2*w+h.scrollBarWidth+h.scrollBarMargin,height:d._effHeight-w,x:w/2,y:w/2}),B.select("rect").attr({width:d._width-2*w+h.scrollBarWidth+h.scrollBarMargin,height:d._effHeight-2*w,x:w,y:w+Y}),c.setClipUrl($,n,e),J(Y,z,Z),j.on("wheel",(function(){J(Y=i.constrain(d._scrollY+r.event.deltaY/q*G,0,G),z,Z),0!==Y&&Y!==G&&r.event.preventDefault()}));var K=r.behavior.drag().on("dragstart",(function(){var e=r.event.sourceEvent;D="touchstart"===e.type?e.changedTouches[0].clientY:e.clientY,N=Y})).on("drag",(function(){var e=r.event.sourceEvent;2===e.buttons||e.ctrlKey||(F="touchmove"===e.type?e.changedTouches[0].clientY:e.clientY,Y=function(e,t,n){var r=(n-t)/Z+e;return i.constrain(r,0,G)}(N,D,F),J(Y,z,Z))}));W.call(K);var X=r.behavior.drag().on("dragstart",(function(){var e=r.event.sourceEvent;"touchstart"===e.type&&(D=e.changedTouches[0].clientY,N=Y)})).on("drag",(function(){var e=r.event.sourceEvent;"touchmove"===e.type&&(F=e.changedTouches[0].clientY,Y=function(e,t,n){var r=(t-n)/Z+e;return i.constrain(r,0,G)}(N,D,F),J(Y,z,Z))}));$.call(X)}function J(t,n,r){d._scrollY=e._fullLayout[_]._scrollY=t,c.setTranslate($,0,-t),c.setRect(W,d._width,h.scrollBarMargin+t*r,h.scrollBarWidth,n),B.select("rect").attr("y",w+t)}e._context.edits.legendPosition&&(j.classed("cursor-move",!0),l.init({element:j.node(),gd:e,prepFn:function(){var e=c.getTranslate(j);y=e.x,b=e.y},moveFn:function(e,n){var r=y+e,i=b+n;c.setTranslate(j,r,i),t=l.align(r,d._width,x.l,x.l+x.w,d.xanchor),u=l.align(i+d._height,-d._height,x.t+x.h,x.t,d.yanchor)},doneFn:function(){if(void 0!==t&&void 0!==u){var n={};n[_+".x"]=t,n[_+".y"]=u,o.call("_guiRelayout",e,n)}},clickFn:function(t,n){var r=s.selectAll("g.traces").filter((function(){var e=this.getBoundingClientRect();return n.clientX>=e.left&&n.clientX<=e.right&&n.clientY>=e.top&&n.clientY<=e.bottom}));r.size()>0&&T(e,j,r,t,n)}}))}],e)}}function S(e,t,n){var r=e[0],i=r.width,a=t.entrywidthmode,o=r.trace.legendwidth||t.entrywidth;return"fraction"===a?t._maxWidth*o:n+(o||i)}function T(e,t,n,r,i){var a=n.data()[0][0].trace,l={event:i,node:n.node(),curveNumber:a.index,expandedIndex:a._expandedIndex,data:e.data,layout:e.layout,frames:e._transitionData._frames,config:e._context,fullData:e._fullData,fullLayout:e._fullLayout};a._group&&(l.group=a._group),o.traceIs(a,"pie-like")&&(l.label=n.datum()[0].label);var c=s.triggerHandler(e,"plotly_legendclick",l);if(1===r){if(!1===c)return;t._clickTimeout=setTimeout((function(){e._fullLayout&&d(n,e,r)}),e._context.doubleClickDelay)}else 2===r&&(t._clickTimeout&&clearTimeout(t._clickTimeout),e._legendMouseDownTime=0,!1!==s.triggerHandler(e,"plotly_legenddoubleclick",l)&&!1!==c&&d(n,e,r))}function A(e,t,n){var r,a,s=L(n),l=e.data()[0][0],u=l.trace,d=o.traceIs(u,"pie-like"),p=!n._inHover&&t._context.edits.legendText&&!d,v=n._maxNameLength;l.groupTitle?(r=l.groupTitle.text,a=l.groupTitle.font):(a=n.font,n.entries?r=l.text:(r=d?l.label:u.name,u._meta&&(r=i.templateString(r,u._meta))));var m=i.ensureSingle(e,"text",s+"text");m.attr("text-anchor","start").call(c.font,a).text(p?E(r,v):r);var g=n.itemwidth+2*h.itemGap;f.positionText(m,g,0),p?m.call(f.makeEditable,{gd:t,text:r}).call(M,e,t,n).on("edit",(function(r){this.text(E(r,v)).call(M,e,t,n);var a=l.trace._fullInput||{},s={};if(o.hasTransform(a,"groupby")){var c=o.getTransformIndices(a,"groupby"),f=c[c.length-1],d=i.keyedContainer(a,"transforms["+f+"].styles","target","value.name");d.set(l.trace._group,r),s=d.constructUpdate()}else s.name=r;return a._isShape?o.call("_guiRelayout",t,"shapes["+u.index+"].name",s.name):o.call("_guiRestyle",t,s,u.index)})):M(m,e,t,n)}function E(e,t){var n=Math.max(4,t);if(e&&e.trim().length>=n/2)return e;for(var r=n-(e=e||"").length;r>0;r--)e+=" ";return e}function C(e,t,n){var a,o=t._context.doubleClickDelay,s=1,l=i.ensureSingle(e,"rect",n+"toggle",(function(e){t._context.staticPlot||e.style("cursor","pointer").attr("pointer-events","all"),e.call(u.fill,"rgba(0,0,0,0)")}));t._context.staticPlot||(l.on("mousedown",(function(){(a=(new Date).getTime())-t._legendMouseDownTimeo&&(s=Math.max(s-1,1)),T(t,i,e,s,r.event)}})))}function M(e,t,n,r,i){r._inHover&&e.attr("data-notex",!0),f.convertToTspans(e,n,(function(){!function(e,t,n,r){var i=e.data()[0][0];if(n._inHover||!i||i.trace.showlegend){var a=e.select("g[class*=math-group]"),o=a.node(),s=L(n);n||(n=t._fullLayout[s]);var l,u,d=n.borderwidth,p=(r===w?n.title.font:i.groupTitle?i.groupTitle.font:n.font).size*v;if(o){var m=c.bBox(o);l=m.height,u=m.width,r===w?c.setTranslate(a,d,d+.75*l):c.setTranslate(a,0,.25*l)}else{var g="."+s+(r===w?"title":"")+"text",y=e.select(g),b=f.lineCount(y),x=y.node();if(l=p*b,u=x?c.bBox(x).width:0,r===w)"left"===n.title.side&&(u+=2*h.itemGap),f.positionText(y,d+h.titlePad,d+p);else{var _=2*h.itemGap+n.itemwidth;i.groupTitle&&(_=h.itemGap,u-=n.itemwidth),f.positionText(y,_,-p*((b-1)/2-.3))}}r===w?(n._titleWidth=u,n._titleHeight=l):(i.lineHeight=p,i.height=Math.max(l,16)+3,i.width=u)}else e.remove()}(t,n,r,i)}))}function O(e){return i.isRightAnchor(e)?"right":i.isCenterAnchor(e)?"center":"left"}function P(e){return i.isBottomAnchor(e)?"bottom":i.isMiddleAnchor(e)?"middle":"top"}function L(e){return e._id||"legend"}e.exports=function(e,t){if(t)k(e,t);else{var n=e._fullLayout,i=n._legends;n._infolayer.selectAll('[class^="legend"]').each((function(){var e=r.select(this),t=e.attr("class").split(" ")[0];t.match(_)&&-1===i.indexOf(t)&&e.remove()}));for(var a=0;aE&&(A=E)}S[a][0]._groupMinRank=A,S[a][0]._preGroupSort=a}var C=function(e,t){return e.trace.legendrank-t.trace.legendrank||e._preSort-t._preSort};for(S.forEach((function(e,t){e[0]._preGroupSort=t})),S.sort((function(e,t){return e[0]._groupMinRank-t[0]._groupMinRank||e[0]._preGroupSort-t[0]._preGroupSort})),a=0;an?n:e}e.exports=function(e,t,n){var g=t._fullLayout;n||(n=g.legend);var y="constant"===n.itemsizing,b=n.itemwidth,x=(b+2*h.itemGap)/2,w=o(x,0),_=function(e,t,n,r){var i;if(e+1)i=e;else{if(!(t&&t.width>0))return 0;i=t.width}return y?r:Math.min(i,n)};function k(e,a,o){var u=e[0].trace,f=u.marker||{},d=f.line||{},h=o?u.visible&&u.type===o:i.traceIs(u,"bar"),p=r.select(a).select("g.legendpoints").selectAll("path.legend"+o).data(h?[e]:[]);p.enter().append("path").classed("legend"+o,!0).attr("d","M6,6H-6V-6H6Z").attr("transform",w),p.exit().remove(),p.each((function(e){var i=r.select(this),a=e[0],o=_(a.mlw,f.line,5,2);i.style("stroke-width",o+"px");var h=a.mcc;if(!n._inHover&&"mc"in a){var p=c(f),v=p.mid;void 0===v&&(v=(p.max+p.min)/2),h=s.tryColorscale(f,"")(v)}var g=h||a.mc||f.color,y=f.pattern,b=y&&s.getPatternAttr(y.shape,0,"");if(b){var x=s.getPatternAttr(y.bgcolor,0,null),w=s.getPatternAttr(y.fgcolor,0,null),k=y.fgopacity,S=m(y.size,8,10),T=m(y.solidity,.5,1),A="legend-"+u.uid;i.call(s.pattern,"legend",t,A,b,S,T,h,y.fillmode,x,w,k)}else i.call(l.fill,g);o&&l.stroke(i,a.mlc||d.color)}))}function S(e,n,o){var s=e[0],l=s.trace,c=o?l.visible&&l.type===o:i.traceIs(l,o),u=r.select(n).select("g.legendpoints").selectAll("path.legend"+o).data(c?[e]:[]);if(u.enter().append("path").classed("legend"+o,!0).attr("d","M6,6H-6V-6H6Z").attr("transform",w),u.exit().remove(),u.size()){var h=l.marker||{},p=_(d(h.line.width,s.pts),h.line,5,2),v="pieLike",m=a.minExtend(l,{marker:{line:{width:p}}},v),g=a.minExtend(s,{trace:m},v);f(u,g,m,t)}}e.each((function(e){var t=r.select(this),i=a.ensureSingle(t,"g","layers");i.style("opacity",e[0].trace.opacity);var s=n.valign,l=e[0].lineHeight,c=e[0].height;if("middle"!==s&&l&&c){var u={top:1,bottom:-1}[s]*(.5*(l-c+3));i.attr("transform",o(0,u))}else i.attr("transform",null);i.selectAll("g.legendfill").data([e]).enter().append("g").classed("legendfill",!0),i.selectAll("g.legendlines").data([e]).enter().append("g").classed("legendlines",!0);var f=i.selectAll("g.legendsymbols").data([e]);f.enter().append("g").classed("legendsymbols",!0),f.selectAll("g.legendpoints").data([e]).enter().append("g").classed("legendpoints",!0)})).each((function(e){var n,i=e[0].trace,o=[];if(i.visible)switch(i.type){case"histogram2d":case"heatmap":o=[["M-15,-2V4H15V-2Z"]],n=!0;break;case"choropleth":case"choroplethmapbox":o=[["M-6,-6V6H6V-6Z"]],n=!0;break;case"densitymapbox":o=[["M-6,0 a6,6 0 1,0 12,0 a 6,6 0 1,0 -12,0"]],n="radial";break;case"cone":o=[["M-6,2 A2,2 0 0,0 -6,6 V6L6,4Z"],["M-6,-6 A2,2 0 0,0 -6,-2 L6,-4Z"],["M-6,-2 A2,2 0 0,0 -6,2 L6,0Z"]],n=!1;break;case"streamtube":o=[["M-6,2 A2,2 0 0,0 -6,6 H6 A2,2 0 0,1 6,2 Z"],["M-6,-6 A2,2 0 0,0 -6,-2 H6 A2,2 0 0,1 6,-6 Z"],["M-6,-2 A2,2 0 0,0 -6,2 H6 A2,2 0 0,1 6,-2 Z"]],n=!1;break;case"surface":o=[["M-6,-6 A2,3 0 0,0 -6,0 H6 A2,3 0 0,1 6,-6 Z"],["M-6,1 A2,3 0 0,1 -6,6 H6 A2,3 0 0,0 6,0 Z"]],n=!0;break;case"mesh3d":o=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],n=!1;break;case"volume":o=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6H6L0,6Z"]],n=!0;break;case"isosurface":o=[["M-6,6H0L-6,-6Z"],["M6,6H0L6,-6Z"],["M-6,-6 A12,24 0 0,0 6,-6 L0,6Z"]],n=!1}var u=r.select(this).select("g.legendpoints").selectAll("path.legend3dandfriends").data(o);u.enter().append("path").classed("legend3dandfriends",!0).attr("transform",w).style("stroke-miterlimit",1),u.exit().remove(),u.each((function(e,o){var u,f=r.select(this),d=c(i),h=d.colorscale,v=d.reversescale;if(h){if(!n){var m=h.length;u=0===o?h[v?m-1:0][1]:1===o?h[v?0:m-1][1]:h[Math.floor((m-1)/2)][1]}}else{var g=i.vertexcolor||i.facecolor||i.color;u=a.isArrayOrTypedArray(g)?g[o]||g[0]:g}f.attr("d",e[0]),u?f.call(l.fill,u):f.call((function(e){if(e.size()){var r="legendfill-"+i.uid;s.gradient(e,t,r,p(v,"radial"===n),h,"fill")}}))}))})).each((function(e){var t=e[0].trace,n="waterfall"===t.type;if(e[0]._distinct&&n){var i=e[0].trace[e[0].dir].marker;return e[0].mc=i.color,e[0].mlw=i.line.width,e[0].mlc=i.line.color,k(e,this,"waterfall")}var a=[];t.visible&&n&&(a=e[0].hasTotals?[["increasing","M-6,-6V6H0Z"],["totals","M6,6H0L-6,-6H-0Z"],["decreasing","M6,6V-6H0Z"]]:[["increasing","M-6,-6V6H6Z"],["decreasing","M6,6V-6H-6Z"]]);var o=r.select(this).select("g.legendpoints").selectAll("path.legendwaterfall").data(a);o.enter().append("path").classed("legendwaterfall",!0).attr("transform",w).style("stroke-miterlimit",1),o.exit().remove(),o.each((function(e){var n=r.select(this),i=t[e[0]].marker,a=_(void 0,i.line,5,2);n.attr("d",e[1]).style("stroke-width",a+"px").call(l.fill,i.color),a&&n.call(l.stroke,i.line.color)}))})).each((function(e){k(e,this,"funnel")})).each((function(e){k(e,this)})).each((function(e){var n=e[0].trace,o=r.select(this).select("g.legendpoints").selectAll("path.legendbox").data(n.visible&&i.traceIs(n,"box-violin")?[e]:[]);o.enter().append("path").classed("legendbox",!0).attr("d","M6,6H-6V-6H6Z").attr("transform",w),o.exit().remove(),o.each((function(){var e=r.select(this);if("all"!==n.boxpoints&&"all"!==n.points||0!==l.opacity(n.fillcolor)||0!==l.opacity((n.line||{}).color)){var i=_(void 0,n.line,5,2);e.style("stroke-width",i+"px").call(l.fill,n.fillcolor),i&&l.stroke(e,n.line.color)}else{var c=a.minExtend(n,{marker:{size:y?12:a.constrain(n.marker.size,2,16),sizeref:1,sizemin:1,sizemode:"diameter"}});o.call(s.pointStyle,c,t)}}))})).each((function(e){S(e,this,"funnelarea")})).each((function(e){S(e,this,"pie")})).each((function(e){var n,i,o=v(e),l=o.showFill,f=o.showLine,d=o.showGradientLine,h=o.showGradientFill,m=o.anyFill,g=o.anyLine,y=e[0],x=y.trace,w=c(x),k=w.colorscale,S=w.reversescale,T=u.hasMarkers(x)||!m?"M5,0":g?"M5,-2":"M5,-3",A=r.select(this),E=A.select(".legendfill").selectAll("path").data(l||h?[e]:[]);if(E.enter().append("path").classed("js-fill",!0),E.exit().remove(),E.attr("d",T+"h"+b+"v6h-"+b+"z").call((function(e){if(e.size())if(l)s.fillGroupStyle(e,t);else{var n="legendfill-"+x.uid;s.gradient(e,t,n,p(S),k,"fill")}})),f||d){var C=_(void 0,x.line,10,5);i=a.minExtend(x,{line:{width:C}}),n=[a.minExtend(y,{trace:i})]}var M=A.select(".legendlines").selectAll("path").data(f||d?[n]:[]);M.enter().append("path").classed("js-line",!0),M.exit().remove(),M.attr("d",T+(d?"l"+b+",0.0001":"h"+b)).call(f?s.lineGroupStyle:function(e){if(e.size()){var n="legendline-"+x.uid;s.lineGroupStyle(e),s.gradient(e,t,n,p(S),k,"stroke")}})})).each((function(e){var n,i,o=v(e),l=o.anyFill,c=o.anyLine,f=o.showLine,d=o.showMarker,h=e[0],p=h.trace,m=!d&&!c&&!l&&u.hasText(p);function g(e,t,n,r){var i=a.nestedProperty(p,e).get(),o=a.isArrayOrTypedArray(i)&&t?t(i):i;if(y&&o&&void 0!==r&&(o=r),n){if(on[1])return n[1]}return o}function b(e){return h._distinct&&h.index&&e[h.index]?e[h.index]:e[0]}if(d||m||f){var x={},_={};if(d){x.mc=g("marker.color",b),x.mx=g("marker.symbol",b),x.mo=g("marker.opacity",a.mean,[.2,1]),x.mlc=g("marker.line.color",b),x.mlw=g("marker.line.width",a.mean,[0,5],2),_.marker={sizeref:1,sizemin:1,sizemode:"diameter"};var k=g("marker.size",a.mean,[2,16],12);x.ms=k,_.marker.size=k}f&&(_.line={width:g("line.width",b,[0,10],5)}),m&&(x.tx="Aa",x.tp=g("textposition",b),x.ts=10,x.tc=g("textfont.color",b),x.tf=g("textfont.family",b)),n=[a.minExtend(h,x)],(i=a.minExtend(p,_)).selectedpoints=null,i.texttemplate=null}var S=r.select(this).select("g.legendpoints"),T=S.selectAll("path.scatterpts").data(d?n:[]);T.enter().insert("path",":first-child").classed("scatterpts",!0).attr("transform",w),T.exit().remove(),T.call(s.pointStyle,i,t),d&&(n[0].mrc=3);var A=S.selectAll("g.pointtext").data(m?n:[]);A.enter().append("g").classed("pointtext",!0).append("text").attr("transform",w),A.exit().remove(),A.selectAll("text").call(s.textPointStyle,i,t)})).each((function(e){var t=e[0].trace,n=r.select(this).select("g.legendpoints").selectAll("path.legendcandle").data(t.visible&&"candlestick"===t.type?[e,e]:[]);n.enter().append("path").classed("legendcandle",!0).attr("d",(function(e,t){return t?"M-15,0H-8M-8,6V-6H8Z":"M15,0H8M8,-6V6H-8Z"})).attr("transform",w).style("stroke-miterlimit",1),n.exit().remove(),n.each((function(e,n){var i=r.select(this),a=t[n?"increasing":"decreasing"],o=_(void 0,a.line,5,2);i.style("stroke-width",o+"px").call(l.fill,a.fillcolor),o&&l.stroke(i,a.line.color)}))})).each((function(e){var t=e[0].trace,n=r.select(this).select("g.legendpoints").selectAll("path.legendohlc").data(t.visible&&"ohlc"===t.type?[e,e]:[]);n.enter().append("path").classed("legendohlc",!0).attr("d",(function(e,t){return t?"M-15,0H0M-8,-6V0":"M15,0H0M8,6V0"})).attr("transform",w).style("stroke-miterlimit",1),n.exit().remove(),n.each((function(e,n){var i=r.select(this),a=t[n?"increasing":"decreasing"],o=_(void 0,a.line,5,2);i.style("fill","none").call(s.dashLine,a.line.dash,o),o&&l.stroke(i,a.line.color)}))}))}},42068:function(e,t,n){"use strict";n(93348),e.exports={editType:"modebar",orientation:{valType:"enumerated",values:["v","h"],dflt:"h",editType:"modebar"},bgcolor:{valType:"color",editType:"modebar"},color:{valType:"color",editType:"modebar"},activecolor:{valType:"color",editType:"modebar"},uirevision:{valType:"any",editType:"none"},add:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"},remove:{valType:"string",arrayOk:!0,dflt:"",editType:"modebar"}}},26023:function(e,t,n){"use strict";var r=n(73972),i=n(74875),a=n(41675),o=n(24255),s=n(34031).eraseActiveShape,l=n(71828),c=l._,u=e.exports={};function f(e,t){var n,i,o=t.currentTarget,s=o.getAttribute("data-attr"),l=o.getAttribute("data-val")||!0,c=e._fullLayout,u={},f=a.list(e,null,!0),d=c._cartesianSpikesEnabled;if("zoom"===s){var h,p="in"===l?.5:2,v=(1+p)/2,m=(1-p)/2;for(i=0;i1?(L=["toggleHover"],I=["resetViews"]):g?(P=["zoomInGeo","zoomOutGeo"],L=["hoverClosestGeo"],I=["resetGeo"]):m?(L=["hoverClosest3d"],I=["resetCameraDefault3d","resetCameraLastSave3d"]):_?(P=["zoomInMapbox","zoomOutMapbox"],L=["toggleHover"],I=["resetViewMapbox"]):x?L=["hoverClosestGl2d"]:y?L=["hoverClosestPie"]:T?(L=["hoverClosestCartesian","hoverCompareCartesian"],I=["resetViewSankey"]):L=["toggleHover"],v&&(L=["toggleSpikelines","hoverClosestCartesian","hoverCompareCartesian"]),(function(e){for(var t=0;t0)){var v=function(e,t,n){for(var r=n.filter((function(n){return t[n].anchor===e._id})),i=0,a=0;a=r.max)t=N[n+1];else if(e=r.pmax)t=N[n+1];else if(en._length||g+x<0)return;u=m+x,h=g+x;break;case l:if(b="col-resize",m+x>n._length)return;u=m+x,h=g;break;case c:if(b="col-resize",g+x<0)return;u=m,h=g+x;break;default:b="ew-resize",u=v,h=v+x}if(h=0;S--){var T=n.append("path").attr(m).style("opacity",S?.1:g).call(o.stroke,b).call(o.fill,y).call(s.dashLine,S?"solid":w,S?4+x:x);if(p(T,e,a),_){var A=l(e.layout,"selections",a);T.style({cursor:"move"});var E={element:T.node(),plotinfo:h,gd:e,editHelpers:A,isActiveSelection:!0},C=r(c,e);i(C,T,E)}else T.style("pointer-events",S?"all":"none");k[S]=T}var M=k[0];k[1].node().addEventListener("click",(function(){return function(e,t){if(d(e)){var n=t.node(),r=+n.getAttribute("data-index");if(r>=0){if(r===e._fullLayout._activeSelectionIndex)return void v(e);e._fullLayout._activeSelectionIndex=r,e._fullLayout._deactivateSelection=v,f(e)}}}(e,M)}))}(e._fullLayout._selectionLayer)}function p(e,t,n){var r=n.xref+n.yref;s.setClipUrl(e,"clip"+t._fullLayout._uid+r,t)}function v(e){d(e)&&e._fullLayout._activeSelectionIndex>=0&&(a(e),delete e._fullLayout._activeSelectionIndex,f(e))}e.exports={draw:f,drawOne:h,activateLastSelection:function(e){if(d(e)){var t=e._fullLayout.selections.length-1;e._fullLayout._activeSelectionIndex=t,e._fullLayout._deactivateSelection=v,f(e)}}}},53777:function(e,t,n){"use strict";var r=n(79952).P,i=n(1426).extendFlat;e.exports={newselection:{mode:{valType:"enumerated",values:["immediate","gradual"],dflt:"immediate",editType:"none"},line:{color:{valType:"color",editType:"none"},width:{valType:"number",min:1,dflt:1,editType:"none"},dash:i({},r,{dflt:"dot",editType:"none"}),editType:"none"},editType:"none"},activeselection:{fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"none"},opacity:{valType:"number",min:0,max:1,dflt:.5,editType:"none"},editType:"none"}}},90849:function(e){"use strict";e.exports=function(e,t,n){n("newselection.mode"),n("newselection.line.width")&&(n("newselection.line.color"),n("newselection.line.dash")),n("activeselection.fillcolor"),n("activeselection.opacity")}},35855:function(e,t,n){"use strict";var r=n(64505).selectMode,i=n(51873).clearOutline,a=n(60165),o=a.readPaths,s=a.writePaths,l=a.fixDatesForPaths;e.exports=function(e,t){if(e.length){var n=e[0][0];if(n){var a=n.getAttribute("d"),c=t.gd,u=c._fullLayout.newselection,f=t.plotinfo,d=f.xaxis,h=f.yaxis,p=t.isActiveSelection,v=t.dragmode,m=(c.layout||{}).selections||[];if(!r(v)&&void 0!==p){var g=c._fullLayout._activeSelectionIndex;if(g-1,x=[];if(function(e){return e&&Array.isArray(e)&&!0!==e[0].hoverOnBox}(g)){q(e,t,a);var w=function(e,t){var n,r,i=e[0],a=-1,o=[];for(r=0;r0?function(e,t){var n,r,i,a=[];for(i=0;i0&&a.push(n);if(1===a.length&&a[0]===t.searchInfo&&(r=t.searchInfo.cd[0].trace).selectedpoints.length===t.pointNumbers.length){for(i=0;i1)return!1;if((r+=t.selectedpoints.length)>1)return!1}return 1===r}(s)&&(d=X(w))){for(o&&o.remove(),m=0;m=0})(i)&&i._fullLayout._deactivateShape(i),function(e){return e._fullLayout._activeSelectionIndex>=0}(i)&&i._fullLayout._deactivateSelection(i);var o=i._fullLayout._zoomlayer,s=h(n),l=v(n);if(s||l){var c,u,f=o.selectAll(".select-outline-"+r.id);f&&i._fullLayout._outlining&&(s&&(c=k(f,e)),c&&a.call("_guiRelayout",i,{shapes:c}),l&&!U(e)&&(u=S(f,e)),u&&(i._fullLayout._noEmitSelectedAtStart=!0,a.call("_guiRelayout",i,{selections:u}).then((function(){t&&T(i)}))),i._fullLayout._outlining=!1)}r.selection={},r.selection.selectionDefs=e.selectionDefs=[],r.selection.mergedPolygons=e.mergedPolygons=[]}function Z(e){return e._id}function Y(e,t,n,r){if(!e.calcdata)return[];var i,a,o,s=[],l=t.map(Z),c=n.map(Z);for(o=0;o0?r[0]:n;return!!t.selectedpoints&&t.selectedpoints.indexOf(i)>-1}function J(e,t,n){var r,i;for(r=0;r-1&&t;if(!a&&t){var te=oe(e,!0);if(te.length){var re=te[0].xref,he=te[0].yref;if(re&&he){var pe=ce(te);ue([O(e,re,"x"),O(e,he,"y")])(Q,pe)}}e._fullLayout._noEmitSelectedAtStart?e._fullLayout._noEmitSelectedAtStart=!1:ee&&fe(e,Q),d._reselect=!1}if(!a&&d._deselect){var ve=d._deselect;(function(e,t,n){for(var r=0;r=0)S._fullLayout._deactivateShape(S);else if(!b){var n=T.clickmode;M.done(Ae).then((function(){if(M.clear(Ae),2===e){for(xe.remove(),X=0;X-1&&H(t,S,r.xaxes,r.yaxes,r.subplot,r,xe),"event"===n&&fe(S,void 0);l.click(S,t)})).catch(A.error)}},r.doneFn=function(){Se.remove(),M.done(Ae).then((function(){M.clear(Ae),!E&&K&&r.selectionDefs&&(K.subtract=be,r.selectionDefs.push(K),r.mergedPolygons.length=0,[].push.apply(r.mergedPolygons,Z)),(E||b)&&G(r,E),r.doneFnCompleted&&r.doneFnCompleted(Ee),x&&fe(S,ae)})).catch(A.error)}},clearOutline:b,clearSelectionsCache:G,selectOnClick:H}},89827:function(e,t,n){"use strict";var r=n(50215),i=n(41940),a=n(82196).line,o=n(79952).P,s=n(1426).extendFlat,l=n(44467).templatedArray,c=(n(24695),n(9012)),u=n(5386).R,f=n(37281);e.exports=l("shape",{visible:s({},c.visible,{editType:"calc+arraydraw"}),showlegend:{valType:"boolean",dflt:!1,editType:"calc+arraydraw"},legend:s({},c.legend,{editType:"calc+arraydraw"}),legendgroup:s({},c.legendgroup,{editType:"calc+arraydraw"}),legendgrouptitle:{text:s({},c.legendgrouptitle.text,{editType:"calc+arraydraw"}),font:i({editType:"calc+arraydraw"}),editType:"calc+arraydraw"},legendrank:s({},c.legendrank,{editType:"calc+arraydraw"}),legendwidth:s({},c.legendwidth,{editType:"calc+arraydraw"}),type:{valType:"enumerated",values:["circle","rect","path","line"],editType:"calc+arraydraw"},layer:{valType:"enumerated",values:["below","above"],dflt:"above",editType:"arraydraw"},xref:s({},r.xref,{}),xsizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw"},xanchor:{valType:"any",editType:"calc+arraydraw"},x0:{valType:"any",editType:"calc+arraydraw"},x1:{valType:"any",editType:"calc+arraydraw"},yref:s({},r.yref,{}),ysizemode:{valType:"enumerated",values:["scaled","pixel"],dflt:"scaled",editType:"calc+arraydraw"},yanchor:{valType:"any",editType:"calc+arraydraw"},y0:{valType:"any",editType:"calc+arraydraw"},y1:{valType:"any",editType:"calc+arraydraw"},path:{valType:"string",editType:"calc+arraydraw"},opacity:{valType:"number",min:0,max:1,dflt:1,editType:"arraydraw"},line:{color:s({},a.color,{editType:"arraydraw"}),width:s({},a.width,{editType:"calc+arraydraw"}),dash:s({},o,{editType:"arraydraw"}),editType:"calc+arraydraw"},fillcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"arraydraw"},fillrule:{valType:"enumerated",values:["evenodd","nonzero"],dflt:"evenodd",editType:"arraydraw"},editable:{valType:"boolean",dflt:!1,editType:"calc+arraydraw"},label:{text:{valType:"string",dflt:"",editType:"arraydraw"},texttemplate:u({},{keys:Object.keys(f)}),font:i({editType:"calc+arraydraw",colorEditType:"arraydraw"}),textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right","start","middle","end"],editType:"arraydraw"},textangle:{valType:"angle",dflt:"auto",editType:"calc+arraydraw"},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"auto",editType:"calc+arraydraw"},yanchor:{valType:"enumerated",values:["top","middle","bottom"],editType:"calc+arraydraw"},padding:{valType:"number",dflt:3,min:0,editType:"arraydraw"},editType:"arraydraw"},editType:"arraydraw"})},5627:function(e,t,n){"use strict";var r=n(71828),i=n(89298),a=n(21459),o=n(30477);function s(e){return c(e.line.width,e.xsizemode,e.x0,e.x1,e.path,!1)}function l(e){return c(e.line.width,e.ysizemode,e.y0,e.y1,e.path,!0)}function c(e,t,n,i,s,l){var c=e/2,u=l;if("pixel"===t){var f=s?o.extractPathCoords(s,l?a.paramIsY:a.paramIsX):[n,i],d=r.aggNums(Math.max,null,f),h=r.aggNums(Math.min,null,f),p=h<0?Math.abs(h)+c:c,v=d>0?d+c:c;return{ppad:c,ppadplus:u?p:v,ppadminus:u?v:p}}return{ppad:c}}function u(e,t,n,r,i){var s="category"===e.type||"multicategory"===e.type?e.r2c:e.d2c;if(void 0!==t)return[s(t),s(n)];if(r){var l,c,u,f,d=1/0,h=-1/0,p=r.match(a.segmentRE);for("date"===e.type&&(s=o.decodeDate(s)),l=0;lh&&(h=f)));return h>=d?[d,h]:void 0}}e.exports=function(e){var t=e._fullLayout,n=r.filterVisible(t.shapes);if(n.length&&e._fullData.length)for(var o=0;o=e?t-r:r-t,-180/Math.PI*Math.atan2(i,a)}(b,w,x,_):0),T.call((function(t){return t.call(o.font,S).attr({}),a.convertToTspans(t,e),t}));var U=function(e,t,n,r,i,a,o){var s,l,c,u,d=i.label.textposition,h=i.label.textangle,p=i.label.padding,v=i.type,m=Math.PI/180*a,g=Math.sin(m),y=Math.cos(m),b=i.label.xanchor,x=i.label.yanchor;if("line"===v){"start"===d?(s=e,l=t):"end"===d?(s=n,l=r):(s=(e+n)/2,l=(t+r)/2),"auto"===b&&(b="start"===d?"auto"===h?n>e?"left":ne?"right":ne?"right":ne?"left":n1&&(2!==e.length||"Z"!==e[1][0])&&(0===O&&(e[0][0]="M"),t[M]=e,T(),A())}}()}}function H(e,n){!function(e,n){if(t.length)for(var r=0;rF&&a>N&&!n.shiftKey?p.getCursor(o/i,1-s/a):"move";v(t,l),D=l.split("-")[0]}}function re(r){x(e)||(z&&(_=Z(n.xanchor)),j&&(T=Y(n.yanchor)),"path"===n.type?R=n.path:(f=z?n.x0:Z(n.x0),h=j?n.y0:Y(n.y0),b=z?n.x1:Z(n.x1),w=j?n.y1:Y(n.y1)),fw?(A=h,O="y0",E=w,P="y1"):(A=w,O="y1",E=h,P="y0"),ne(r),le(l,n),ue(t,n,e),Q.moveFn="move"===D?oe:se,Q.altKey=r.altKey)}function ie(){x(e)||(v(t),ce(l),k(t,e,n),i.call("_guiRelayout",e,u.getUpdateObj()))}function ae(){x(e)||ce(l)}function oe(r,i){if("path"===n.type){var a=function(e){return e},o=a,u=a;z?H("xanchor",n.xanchor=K(_+r)):(o=function(e){return K(Z(e)+r)},V&&"date"===V.type&&(o=g.encodeDate(o))),j?H("yanchor",n.yanchor=X(T+i)):(u=function(e){return X(Y(e)+i)},q&&"date"===q.type&&(u=g.encodeDate(u))),H("path",n.path=S(R,o,u))}else z?H("xanchor",n.xanchor=K(_+r)):(H("x0",n.x0=K(f+r)),H("x1",n.x1=K(b+r))),j?H("yanchor",n.yanchor=X(T+i)):(H("y0",n.y0=X(h+i)),H("y1",n.y1=X(w+i)));t.attr("d",y(e,n)),le(l,n),c(e,s,n,$)}function se(r,i){if(U){var a=function(e){return e},o=a,u=a;z?H("xanchor",n.xanchor=K(_+r)):(o=function(e){return K(Z(e)+r)},V&&"date"===V.type&&(o=g.encodeDate(o))),j?H("yanchor",n.yanchor=X(T+i)):(u=function(e){return X(Y(e)+i)},q&&"date"===q.type&&(u=g.encodeDate(u))),H("path",n.path=S(R,o,u))}else if(B){if("resize-over-start-point"===D){var d=f+r,p=j?h-i:h+i;H("x0",n.x0=z?d:K(d)),H("y0",n.y0=j?p:X(p))}else if("resize-over-end-point"===D){var v=b+r,m=j?w-i:w+i;H("x1",n.x1=z?v:K(v)),H("y1",n.y1=j?m:X(m))}}else{var x=function(e){return-1!==D.indexOf(e)},k=x("n"),W=x("s"),G=x("w"),J=x("e"),Q=k?A+i:A,ee=W?E+i:E,te=G?C+r:C,ne=J?M+r:M;j&&(k&&(Q=A-i),W&&(ee=E-i)),(!j&&ee-Q>N||j&&Q-ee>N)&&(H(O,n[O]=j?Q:X(Q)),H(P,n[P]=j?ee:X(ee))),ne-te>F&&(H(L,n[L]=z?te:K(te)),H(I,n[I]=z?ne:K(ne)))}t.attr("d",y(e,n)),le(l,n),c(e,s,n,$)}function le(e,t){function n(){var n="path"!==t.type,r=e.selectAll(".visual-cue").data([0]),i=1;r.enter().append("path").attr({fill:"#fff","fill-rule":"evenodd",stroke:"#000","stroke-width":i}).classed("visual-cue",!0);var o=Z(z?t.xanchor:a.midRange(n?[t.x0,t.x1]:g.extractPathCoords(t.path,m.paramIsX))),s=Y(j?t.yanchor:a.midRange(n?[t.y0,t.y1]:g.extractPathCoords(t.path,m.paramIsY)));if(o=g.roundPositionForSharpStrokeRendering(o,i),s=g.roundPositionForSharpStrokeRendering(s,i),z&&j){var l="M"+(o-1-i)+","+(s-1-i)+"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z";r.attr("d",l)}else if(z){var c="M"+(o-1-i)+","+(s-9-i)+"v18 h2 v-18 Z";r.attr("d",c)}else{var u="M"+(o-9-i)+","+(s-1-i)+"h18 v2 h-18 Z";r.attr("d",u)}}(z||j)&&n()}function ce(e){e.selectAll(".visual-cue").remove()}function ue(e,t,n){var r=t.xref,i=t.yref,a=o.getFromId(n,r),s=o.getFromId(n,i),l="";"paper"===r||a.autorange||(l+=r),"paper"===i||s.autorange||(l+=i),d.setClipUrl(e,l?"clip"+n._fullLayout._uid+l:null,n)}p.init(Q),J.node().onmousemove=ne}(e,N,u,t,n,D):!0===u.editable&&N.style("pointer-events",I||f.opacity(M)*C<=.5?"stroke":"all");N.node().addEventListener("click",(function(){return function(e,t){if(w(e)){var n=t.node(),r=+n.getAttribute("data-index");if(r>=0){if(r===e._fullLayout._activeShapeIndex)return void T(e);e._fullLayout._activeShapeIndex=r,e._fullLayout._deactivateShape=T,b(e)}}}(e,N)}))}u._input&&!0===u.visible&&("below"!==u.layer?A(e._fullLayout._shapeUpperLayer):"paper"===u.xref||"paper"===u.yref?A(e._fullLayout._shapeLowerLayer):_._hadPlotinfo?A((_.mainplotinfo||_).shapelayer):A(e._fullLayout._shapeLowerLayer))}function k(e,t,n){var r=(n.xref+n.yref).replace(/paper/g,"").replace(/[xyz][1-9]* *domain/g,"");d.setClipUrl(e,r?"clip"+t._fullLayout._uid+r:null,t)}function S(e,t,n){return e.replace(m.segmentRE,(function(e){var r=0,i=e.charAt(0),a=m.paramIsX[i],o=m.paramIsY[i],s=m.numParams[i];return i+e.substr(1).replace(m.paramRE,(function(e){return r>=s||(a[r]?e=t(e):o[r]&&(e=n(e)),r++),e}))}))}function T(e){w(e)&&e._fullLayout._activeShapeIndex>=0&&(u(e),delete e._fullLayout._activeShapeIndex,b(e))}e.exports={draw:b,drawOne:_,eraseActiveShape:function(e){if(w(e)){u(e);var t=e._fullLayout._activeShapeIndex,n=(e.layout||{}).shapes||[];if(t0&&lh&&(e="X"),e}));return a>h&&(p=p.replace(/[\s,]*X.*/,""),i.log("Ignoring extra params in segment "+e)),u+p}))}(n,s,c);if("pixel"===n.xsizemode){var x=s(n.xanchor);u=x+n.x0,f=x+n.x1}else u=s(n.x0),f=s(n.x1);if("pixel"===n.ysizemode){var w=c(n.yanchor);d=w-n.y0,h=w-n.y1}else d=c(n.y0),h=c(n.y1);if("line"===p)return"M"+u+","+d+"L"+f+","+h;if("rect"===p)return"M"+u+","+d+"H"+f+"V"+h+"H"+u+"Z";var _=(u+f)/2,k=(d+h)/2,S=Math.abs(_-u),T=Math.abs(k-d),A="A"+S+","+T,E=_+S+","+k;return"M"+E+A+" 0 1,1 "+_+","+(k-T)+A+" 0 0,1 "+E+"Z"}},89853:function(e,t,n){"use strict";var r=n(34031);e.exports={moduleType:"component",name:"shapes",layoutAttributes:n(89827),supplyLayoutDefaults:n(84726),supplyDrawNewShapeDefaults:n(45547),includeBasePlot:n(76325)("shapes"),calcAutorange:n(5627),draw:r.draw,drawOne:r.drawOne}},37281:function(e){"use strict";function t(e,t){return t?t.d2l(e):e}function n(e,t){return t?t.l2d(e):e}function r(e,n){return t(e.x1,n)-t(e.x0,n)}function i(e,n,r){return t(e.y1,r)-t(e.y0,r)}e.exports={x0:function(e){return e.x0},x1:function(e){return e.x1},y0:function(e){return e.y0},y1:function(e){return e.y1},slope:function(e,t,n){return"line"!==e.type?void 0:i(e,0,n)/r(e,t)},dx:r,dy:i,width:function(e,t){return Math.abs(r(e,t))},height:function(e,t,n){return Math.abs(i(e,0,n))},length:function(e,t,n){return"line"!==e.type?void 0:Math.sqrt(Math.pow(r(e,t),2)+Math.pow(i(e,0,n),2))},xcenter:function(e,r){return n((t(e.x1,r)+t(e.x0,r))/2,r)},ycenter:function(e,r,i){return n((t(e.y1,i)+t(e.y0,i))/2,i)}}},75067:function(e,t,n){"use strict";var r=n(41940),i=n(35025),a=n(1426).extendDeepAll,o=n(30962).overrideAll,s=n(85594),l=n(44467).templatedArray,c=n(98292),u=l("step",{visible:{valType:"boolean",dflt:!0},method:{valType:"enumerated",values:["restyle","relayout","animate","update","skip"],dflt:"restyle"},args:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},label:{valType:"string"},value:{valType:"string"},execute:{valType:"boolean",dflt:!0}});e.exports=o(l("slider",{visible:{valType:"boolean",dflt:!0},active:{valType:"number",min:0,dflt:0},steps:u,lenmode:{valType:"enumerated",values:["fraction","pixels"],dflt:"fraction"},len:{valType:"number",min:0,dflt:1},x:{valType:"number",min:-2,max:3,dflt:0},pad:a(i({editType:"arraydraw"}),{},{t:{dflt:20}}),xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"left"},y:{valType:"number",min:-2,max:3,dflt:0},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"top"},transition:{duration:{valType:"number",min:0,dflt:150},easing:{valType:"enumerated",values:s.transition.easing.values,dflt:"cubic-in-out"}},currentvalue:{visible:{valType:"boolean",dflt:!0},xanchor:{valType:"enumerated",values:["left","center","right"],dflt:"left"},offset:{valType:"number",dflt:10},prefix:{valType:"string"},suffix:{valType:"string"},font:r({})},font:r({}),activebgcolor:{valType:"color",dflt:c.gripBgActiveColor},bgcolor:{valType:"color",dflt:c.railBgColor},bordercolor:{valType:"color",dflt:c.railBorderColor},borderwidth:{valType:"number",min:0,dflt:c.railBorderWidth},ticklen:{valType:"number",min:0,dflt:c.tickLength},tickcolor:{valType:"color",dflt:c.tickColor},tickwidth:{valType:"number",min:0,dflt:1},minorticklen:{valType:"number",min:0,dflt:c.minorTickLength}}),"arraydraw","from-root")},98292:function(e){"use strict";e.exports={name:"sliders",containerClassName:"slider-container",groupClassName:"slider-group",inputAreaClass:"slider-input-area",railRectClass:"slider-rail-rect",railTouchRectClass:"slider-rail-touch-rect",gripRectClass:"slider-grip-rect",tickRectClass:"slider-tick-rect",inputProxyClass:"slider-input-proxy",labelsClass:"slider-labels",labelGroupClass:"slider-label-group",labelClass:"slider-label",currentValueClass:"slider-current-value",railHeight:5,menuIndexAttrName:"slider-active-index",autoMarginIdRoot:"slider-",minWidth:30,minHeight:30,textPadX:40,arrowOffsetX:4,railRadius:2,railWidth:5,railBorder:4,railBorderWidth:1,railBorderColor:"#bec8d9",railBgColor:"#f8fafc",railInset:8,stepInset:10,gripRadius:10,gripWidth:20,gripHeight:20,gripBorder:20,gripBorderWidth:1,gripBorderColor:"#bec8d9",gripBgColor:"#f6f8fa",gripBgActiveColor:"#dbdde0",labelPadding:8,labelOffset:0,tickWidth:1,tickColor:"#333",tickOffset:25,tickLength:7,minorTickOffset:25,minorTickColor:"#333",minorTickLength:4,currentValuePadding:8,currentValueInset:0}},12343:function(e,t,n){"use strict";var r=n(71828),i=n(85501),a=n(75067),o=n(98292).name,s=a.steps;function l(e,t,n){function o(n,i){return r.coerce(e,t,a,n,i)}for(var s=i(e,t,{name:"steps",handleItemDefaults:c}),l=0,u=0;u0&&(s=s.transition().duration(t.transition.duration).ease(t.transition.easing)),s.attr("transform",l(o-.5*f.gripWidth,t._dims.currentValueTotalHeight))}}function C(e,t){var n=e._dims;return n.inputAreaStart+f.stepInset+(n.inputAreaLength-2*f.stepInset)*Math.min(1,Math.max(0,t))}function M(e,t){var n=e._dims;return Math.min(1,Math.max(0,(t-f.stepInset-n.inputAreaStart)/(n.inputAreaLength-2*f.stepInset-2*n.inputAreaStart)))}function O(e,t,n){var r=n._dims,i=s.ensureSingle(e,"rect",f.railTouchRectClass,(function(r){r.call(T,t,e,n).style("pointer-events","all")}));i.attr({width:r.inputAreaLength,height:Math.max(r.inputAreaWidth,f.tickOffset+n.ticklen+r.labelHeight)}).call(a.fill,n.bgcolor).attr("opacity",0),o.setTranslate(i,0,r.currentValueTotalHeight)}function P(e,t){var n=t._dims,r=n.inputAreaLength-2*f.railInset,i=s.ensureSingle(e,"rect",f.railRectClass);i.attr({width:r,height:f.railWidth,rx:f.railRadius,ry:f.railRadius,"shape-rendering":"crispEdges"}).call(a.stroke,t.bordercolor).call(a.fill,t.bgcolor).style("stroke-width",t.borderwidth+"px"),o.setTranslate(i,f.railInset,.5*(n.inputAreaWidth-f.railWidth)+n.currentValueTotalHeight)}e.exports=function(e){var t=e._context.staticPlot,n=e._fullLayout,a=function(e,t){for(var n=e[f.name],r=[],i=0;i0?[0]:[]);function l(t){t._commandObserver&&(t._commandObserver.remove(),delete t._commandObserver),i.autoMargin(e,m(t))}if(s.enter().append("g").classed(f.containerClassName,!0).style("cursor",t?null:"ew-resize"),s.exit().each((function(){r.select(this).selectAll("g."+f.groupClassName).each(l)})).remove(),0!==a.length){var c=s.selectAll("g."+f.groupClassName).data(a,g);c.enter().append("g").classed(f.groupClassName,!0),c.exit().each(l).remove();for(var u=0;u0||w<0){var A={left:[-_,0],right:[_,0],top:[0,-_],bottom:[0,_]}[x.side];n.attr("transform",l(A[0],A[1]))}}}return F.call(N),I&&(C?F.on(".opacity",null):(T=0,A=!0,F.text(y).on("mouseover.opacity",(function(){r.select(this).transition().duration(d.SHOW_PLACEHOLDER).style("opacity",1)})).on("mouseout.opacity",(function(){r.select(this).transition().duration(d.HIDE_PLACEHOLDER).style("opacity",0)}))),F.call(f.makeEditable,{gd:e}).on("edit",(function(t){void 0!==b?o.call("_guiRestyle",e,g,t,b):o.call("_guiRelayout",e,g,t)})).on("cancel",(function(){this.text(this.attr("data-unformatted")).call(N)})).on("input",(function(e){this.text(e||" ").call(f.positionText,w.x,w.y)}))),F.classed("js-placeholder",A),k}}},7163:function(e,t,n){"use strict";var r=n(41940),i=n(22399),a=n(1426).extendFlat,o=n(30962).overrideAll,s=n(35025),l=n(44467).templatedArray,c=l("button",{visible:{valType:"boolean"},method:{valType:"enumerated",values:["restyle","relayout","animate","update","skip"],dflt:"restyle"},args:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},args2:{valType:"info_array",freeLength:!0,items:[{valType:"any"},{valType:"any"},{valType:"any"}]},label:{valType:"string",dflt:""},execute:{valType:"boolean",dflt:!0}});e.exports=o(l("updatemenu",{_arrayAttrRegexps:[/^updatemenus\[(0|[1-9][0-9]+)\]\.buttons/],visible:{valType:"boolean"},type:{valType:"enumerated",values:["dropdown","buttons"],dflt:"dropdown"},direction:{valType:"enumerated",values:["left","right","up","down"],dflt:"down"},active:{valType:"integer",min:-1,dflt:0},showactive:{valType:"boolean",dflt:!0},buttons:c,x:{valType:"number",min:-2,max:3,dflt:-.05},xanchor:{valType:"enumerated",values:["auto","left","center","right"],dflt:"right"},y:{valType:"number",min:-2,max:3,dflt:1},yanchor:{valType:"enumerated",values:["auto","top","middle","bottom"],dflt:"top"},pad:a(s({editType:"arraydraw"}),{}),font:r({}),bgcolor:{valType:"color"},bordercolor:{valType:"color",dflt:i.borderLine},borderwidth:{valType:"number",min:0,dflt:1,editType:"arraydraw"}}),"arraydraw","from-root")},75909:function(e){"use strict";e.exports={name:"updatemenus",containerClassName:"updatemenu-container",headerGroupClassName:"updatemenu-header-group",headerClassName:"updatemenu-header",headerArrowClassName:"updatemenu-header-arrow",dropdownButtonGroupClassName:"updatemenu-dropdown-button-group",dropdownButtonClassName:"updatemenu-dropdown-button",buttonClassName:"updatemenu-button",itemRectClassName:"updatemenu-item-rect",itemTextClassName:"updatemenu-item-text",menuIndexAttrName:"updatemenu-active-index",autoMarginIdRoot:"updatemenu-",blankHeaderOpts:{label:" "},minWidth:30,minHeight:30,textPadX:24,arrowPadX:16,rx:2,ry:2,textOffsetX:12,textOffsetY:3,arrowOffsetX:4,gapButtonHeader:5,gapButton:2,activeColor:"#F4FAFF",hoverColor:"#F4FAFF",arrowSymbol:{left:"\u25c4",right:"\u25ba",up:"\u25b2",down:"\u25bc"}}},64897:function(e,t,n){"use strict";var r=n(71828),i=n(85501),a=n(7163),o=n(75909).name,s=a.buttons;function l(e,t,n){function o(n,i){return r.coerce(e,t,a,n,i)}o("visible",i(e,t,{name:"buttons",handleItemDefaults:c}).length>0)&&(o("active"),o("direction"),o("type"),o("showactive"),o("x"),o("y"),r.noneOrAll(e,t,["x","y"]),o("xanchor"),o("yanchor"),o("pad.t"),o("pad.r"),o("pad.b"),o("pad.l"),r.coerceFont(o,"font",n.font),o("bgcolor",n.paper_bgcolor),o("bordercolor"),o("borderwidth"))}function c(e,t){function n(n,i){return r.coerce(e,t,s,n,i)}n("visible","skip"===e.method||Array.isArray(e.args))&&(n("method"),n("args"),n("args2"),n("label"),n("execute"))}e.exports=function(e,t){i(e,t,{name:o,handleItemDefaults:l})}},13689:function(e,t,n){"use strict";var r=n(39898),i=n(74875),a=n(7901),o=n(91424),s=n(71828),l=n(63893),c=n(44467).arrayEditor,u=n(18783).LINE_SPACING,f=n(75909),d=n(25849);function h(e){return e._index}function p(e,t){return+e.attr(f.menuIndexAttrName)===t._index}function v(e,t,n,r,i,a,o,s){t.active=o,c(e.layout,f.name,t).applyUpdate("active",o),"buttons"===t.type?g(e,r,null,null,t):"dropdown"===t.type&&(i.attr(f.menuIndexAttrName,"-1"),m(e,r,i,a,t),s||g(e,r,i,a,t))}function m(e,t,n,r,i){var a=s.ensureSingle(t,"g",f.headerClassName,(function(e){e.style("pointer-events","all")})),l=i._dims,c=i.active,u=i.buttons[c]||f.blankHeaderOpts,d={y:i.pad.t,yPad:0,x:i.pad.l,xPad:0,index:0},h={width:l.headerWidth,height:l.headerHeight};a.call(y,i,u,e).call(A,i,d,h),s.ensureSingle(t,"text",f.headerArrowClassName,(function(e){e.attr("text-anchor","end").call(o.font,i.font).text(f.arrowSymbol[i.direction])})).attr({x:l.headerWidth-f.arrowOffsetX+i.pad.l,y:l.headerHeight/2+f.textOffsetY+i.pad.t}),a.on("click",(function(){n.call(E,String(p(n,i)?-1:i._index)),g(e,t,n,r,i)})),a.on("mouseover",(function(){a.call(_)})),a.on("mouseout",(function(){a.call(k,i)})),o.setTranslate(t,l.lx,l.ly)}function g(e,t,n,a,o){n||(n=t).attr("pointer-events","all");var l=function(e){return-1===+e.attr(f.menuIndexAttrName)}(n)&&"buttons"!==o.type?[]:o.buttons,c="dropdown"===o.type?f.dropdownButtonClassName:f.buttonClassName,u=n.selectAll("g."+c).data(s.filterVisible(l)),d=u.enter().append("g").classed(c,!0),h=u.exit();"dropdown"===o.type?(d.attr("opacity","0").transition().attr("opacity","1"),h.transition().attr("opacity","0").remove()):h.remove();var p=0,m=0,g=o._dims,b=-1!==["up","down"].indexOf(o.direction);"dropdown"===o.type&&(b?m=g.headerHeight+f.gapButtonHeader:p=g.headerWidth+f.gapButtonHeader),"dropdown"===o.type&&"up"===o.direction&&(m=-f.gapButtonHeader+f.gapButton-g.openHeight),"dropdown"===o.type&&"left"===o.direction&&(p=-f.gapButtonHeader+f.gapButton-g.openWidth);var x={x:g.lx+p+o.pad.l,y:g.ly+m+o.pad.t,yPad:f.gapButton,xPad:f.gapButton,index:0},S={l:x.x+o.borderwidth,t:x.y+o.borderwidth};u.each((function(s,l){var c=r.select(this);c.call(y,o,s,e).call(A,o,x),c.on("click",(function(){r.event.defaultPrevented||(s.execute&&(s.args2&&o.active===l?(v(e,o,0,t,n,a,-1),i.executeAPICommand(e,s.method,s.args2)):(v(e,o,0,t,n,a,l),i.executeAPICommand(e,s.method,s.args))),e.emit("plotly_buttonclicked",{menu:o,button:s,active:o.active}))})),c.on("mouseover",(function(){c.call(_)})),c.on("mouseout",(function(){c.call(k,o),u.call(w,o)}))})),u.call(w,o),b?(S.w=Math.max(g.openWidth,g.headerWidth),S.h=x.y-S.t):(S.w=x.x-S.l,S.h=Math.max(g.openHeight,g.headerHeight)),S.direction=o.direction,a&&(u.size()?function(e,t,n,r,i,a){var o,s,l,c=i.direction,u="up"===c||"down"===c,d=i._dims,h=i.active;if(u)for(s=0,l=0;l0?[0]:[]);if(o.enter().append("g").classed(f.containerClassName,!0).style("cursor","pointer"),o.exit().each((function(){r.select(this).selectAll("g."+f.headerGroupClassName).each(a)})).remove(),0!==n.length){var l=o.selectAll("g."+f.headerGroupClassName).data(n,h);l.enter().append("g").classed(f.headerGroupClassName,!0);for(var c=s.ensureSingle(o,"g",f.dropdownButtonGroupClassName,(function(e){e.style("pointer-events","all")})),u=0;u_,T=s.barLength+2*s.barPad,A=s.barWidth+2*s.barPad,E=p,C=m+g;C+A>c&&(C=c-A);var M=this.container.selectAll("rect.scrollbar-horizontal").data(S?[0]:[]);M.exit().on(".drag",null).remove(),M.enter().append("rect").classed("scrollbar-horizontal",!0).call(i.fill,s.barColor),S?(this.hbar=M.attr({rx:s.barRadius,ry:s.barRadius,x:E,y:C,width:T,height:A}),this._hbarXMin=E+T/2,this._hbarTranslateMax=_-T):(delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax);var O=g>k,P=s.barWidth+2*s.barPad,L=s.barLength+2*s.barPad,I=p+v,R=m;I+P>l&&(I=l-P);var D=this.container.selectAll("rect.scrollbar-vertical").data(O?[0]:[]);D.exit().on(".drag",null).remove(),D.enter().append("rect").classed("scrollbar-vertical",!0).call(i.fill,s.barColor),O?(this.vbar=D.attr({rx:s.barRadius,ry:s.barRadius,x:I,y:R,width:P,height:L}),this._vbarYMin=R+L/2,this._vbarTranslateMax=k-L):(delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax);var F=this.id,N=u-.5,z=O?f+P+.5:f+.5,j=d-.5,B=S?h+A+.5:h+.5,U=o._topdefs.selectAll("#"+F).data(S||O?[0]:[]);if(U.exit().remove(),U.enter().append("clipPath").attr("id",F).append("rect"),S||O?(this._clipRect=U.select("rect").attr({x:Math.floor(N),y:Math.floor(j),width:Math.ceil(z)-Math.floor(N),height:Math.ceil(B)-Math.floor(j)}),this.container.call(a.setClipUrl,F,this.gd),this.bg.attr({x:p,y:m,width:v,height:g})):(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(a.setClipUrl,null),delete this._clipRect),S||O){var H=r.behavior.drag().on("dragstart",(function(){r.event.sourceEvent.preventDefault()})).on("drag",this._onBoxDrag.bind(this));this.container.on("wheel",null).on("wheel",this._onBoxWheel.bind(this)).on(".drag",null).call(H);var $=r.behavior.drag().on("dragstart",(function(){r.event.sourceEvent.preventDefault(),r.event.sourceEvent.stopPropagation()})).on("drag",this._onBarDrag.bind(this));S&&this.hbar.on(".drag",null).call($),O&&this.vbar.on(".drag",null).call($)}this.setTranslate(t,n)},s.prototype.disable=function(){(this.hbar||this.vbar)&&(this.bg.attr({width:0,height:0}),this.container.on("wheel",null).on(".drag",null).call(a.setClipUrl,null),delete this._clipRect),this.hbar&&(this.hbar.on(".drag",null),this.hbar.remove(),delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax),this.vbar&&(this.vbar.on(".drag",null),this.vbar.remove(),delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax)},s.prototype._onBoxDrag=function(){var e=this.translateX,t=this.translateY;this.hbar&&(e-=r.event.dx),this.vbar&&(t-=r.event.dy),this.setTranslate(e,t)},s.prototype._onBoxWheel=function(){var e=this.translateX,t=this.translateY;this.hbar&&(e+=r.event.deltaY),this.vbar&&(t+=r.event.deltaY),this.setTranslate(e,t)},s.prototype._onBarDrag=function(){var e=this.translateX,t=this.translateY;if(this.hbar){var n=e+this._hbarXMin,i=n+this._hbarTranslateMax;e=(o.constrain(r.event.x,n,i)-n)/(i-n)*(this.position.w-this._box.w)}if(this.vbar){var a=t+this._vbarYMin,s=a+this._vbarTranslateMax;t=(o.constrain(r.event.y,a,s)-a)/(s-a)*(this.position.h-this._box.h)}this.setTranslate(e,t)},s.prototype.setTranslate=function(e,t){var n=this.position.w-this._box.w,r=this.position.h-this._box.h;if(e=o.constrain(e||0,0,n),t=o.constrain(t||0,0,r),this.translateX=e,this.translateY=t,this.container.call(a.setTranslate,this._box.l-this.position.l-e,this._box.t-this.position.t-t),this._clipRect&&this._clipRect.attr({x:Math.floor(this.position.l+e-.5),y:Math.floor(this.position.t+t-.5)}),this.hbar){var i=e/n;this.hbar.call(a.setTranslate,e+i*this._hbarTranslateMax,t)}if(this.vbar){var s=t/r;this.vbar.call(a.setTranslate,e,t+s*this._vbarTranslateMax)}}},18783:function(e){"use strict";e.exports={FROM_BL:{left:0,center:.5,right:1,bottom:0,middle:.5,top:1},FROM_TL:{left:0,center:.5,right:1,bottom:1,middle:.5,top:0},FROM_BR:{left:1,center:.5,right:0,bottom:0,middle:.5,top:1},LINE_SPACING:1.3,CAP_SHIFT:.7,MID_SHIFT:.35,OPPOSITE_SIDE:{left:"right",right:"left",top:"bottom",bottom:"top"}}},24695:function(e){"use strict";e.exports={axisRefDescription:function(e,t,n){return["If set to a",e,"axis id (e.g. *"+e+"* or","*"+e+"2*), the `"+e+"` position refers to a",e,"coordinate. If set to *paper*, the `"+e+"`","position refers to the distance from the",t,"of the plotting","area in normalized coordinates where *0* (*1*) corresponds to the",t,"("+n+"). If set to a",e,"axis ID followed by","*domain* (separated by a space), the position behaves like for","*paper*, but refers to the distance in fractions of the domain","length from the",t,"of the domain of that axis: e.g.,","*"+e+"2 domain* refers to the domain of the second",e," axis and a",e,"position of 0.5 refers to the","point between the",t,"and the",n,"of the domain of the","second",e,"axis."].join(" ")}}},22372:function(e){"use strict";e.exports={INCREASING:{COLOR:"#3D9970",SYMBOL:"\u25b2"},DECREASING:{COLOR:"#FF4136",SYMBOL:"\u25bc"}}},31562:function(e){"use strict";e.exports={FORMAT_LINK:"https://github.com/d3/d3-format/tree/v1.4.5#d3-format",DATE_FORMAT_LINK:"https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format"}},74808:function(e){"use strict";e.exports={COMPARISON_OPS:["=","!=","<",">=",">","<="],COMPARISON_OPS2:["=","<",">=",">","<="],INTERVAL_OPS:["[]","()","[)","(]","][",")(","](",")["],SET_OPS:["{}","}{"],CONSTRAINT_REDUCTION:{"=":"=","<":"<","<=":"<",">":">",">=":">","[]":"[]","()":"[]","[)":"[]","(]":"[]","][":"][",")(":"][","](":"][",")[":"]["}}},29659:function(e){"use strict";e.exports={solid:[[],0],dot:[[.5,1],200],dash:[[.5,1],50],longdash:[[.5,1],10],dashdot:[[.5,.625,.875,1],50],longdashdot:[[.5,.7,.8,1],10]}},87381:function(e){"use strict";e.exports={circle:"\u25cf","circle-open":"\u25cb",square:"\u25a0","square-open":"\u25a1",diamond:"\u25c6","diamond-open":"\u25c7",cross:"+",x:"\u274c"}},37822:function(e){"use strict";e.exports={SHOW_PLACEHOLDER:100,HIDE_PLACEHOLDER:1e3,DESELECTDIM:.2}},50606:function(e){"use strict";e.exports={BADNUM:void 0,FP_SAFE:1e-4*Number.MAX_VALUE,ONEMAXYEAR:316224e5,ONEAVGYEAR:315576e5,ONEMINYEAR:31536e6,ONEMAXQUARTER:79488e5,ONEAVGQUARTER:78894e5,ONEMINQUARTER:76896e5,ONEMAXMONTH:26784e5,ONEAVGMONTH:26298e5,ONEMINMONTH:24192e5,ONEWEEK:6048e5,ONEDAY:864e5,ONEHOUR:36e5,ONEMIN:6e4,ONESEC:1e3,EPOCHJD:2440587.5,ALMOST_EQUAL:.999999,LOG_CLIP:10,MINUS_SIGN:"\u2212"}},32396:function(e,t){"use strict";t.CSS_DECLARATIONS=[["image-rendering","optimizeSpeed"],["image-rendering","-moz-crisp-edges"],["image-rendering","-o-crisp-edges"],["image-rendering","-webkit-optimize-contrast"],["image-rendering","optimize-contrast"],["image-rendering","crisp-edges"],["image-rendering","pixelated"]],t.STYLE=t.CSS_DECLARATIONS.map((function(e){return e.join(": ")+"; "})).join("")},77922:function(e,t){"use strict";t.xmlns="http://www.w3.org/2000/xmlns/",t.svg="http://www.w3.org/2000/svg",t.xlink="http://www.w3.org/1999/xlink",t.svgAttrs={xmlns:t.svg,"xmlns:xlink":t.xlink}},8729:function(e,t,n){"use strict";t.version=n(11506).version,n(7417),n(98847);for(var r=n(73972),i=t.register=r.register,a=n(10641),o=Object.keys(a),s=0;s",""," ",""," plotly-logomark"," "," "," "," "," "," "," "," "," "," "," "," "," ",""].join("")}}},99863:function(e,t){"use strict";t.isLeftAnchor=function(e){return"left"===e.xanchor||"auto"===e.xanchor&&e.x<=1/3},t.isCenterAnchor=function(e){return"center"===e.xanchor||"auto"===e.xanchor&&e.x>1/3&&e.x<2/3},t.isRightAnchor=function(e){return"right"===e.xanchor||"auto"===e.xanchor&&e.x>=2/3},t.isTopAnchor=function(e){return"top"===e.yanchor||"auto"===e.yanchor&&e.y>=2/3},t.isMiddleAnchor=function(e){return"middle"===e.yanchor||"auto"===e.yanchor&&e.y>1/3&&e.y<2/3},t.isBottomAnchor=function(e){return"bottom"===e.yanchor||"auto"===e.yanchor&&e.y<=1/3}},26348:function(e,t,n){"use strict";var r=n(64872),i=r.mod,a=r.modHalf,o=Math.PI,s=2*o;function l(e){return Math.abs(e[1]-e[0])>s-1e-14}function c(e,t){return a(t-e,s)}function u(e,t){if(l(t))return!0;var n,r;t[0](r=i(r,s))&&(r+=s);var a=i(e,s),o=a+s;return a>=n&&a<=r||o>=n&&o<=r}function f(e,t,n,r,i,a,c){i=i||0,a=a||0;var u,f,d,h,p,v=l([n,r]);function m(e,t){return[e*Math.cos(t)+i,a-e*Math.sin(t)]}v?(u=0,f=o,d=s):n=i&&e<=a);var i,a},pathArc:function(e,t,n,r,i){return f(null,e,t,n,r,i,0)},pathSector:function(e,t,n,r,i){return f(null,e,t,n,r,i,1)},pathAnnulus:function(e,t,n,r,i,a){return f(e,t,n,r,i,a,1)}}},73627:function(e,t){"use strict";var n=Array.isArray,r=ArrayBuffer,i=DataView;function a(e){return r.isView(e)&&!(e instanceof i)}function o(e){return n(e)||a(e)}function s(e,t,n){if(o(e)){if(o(e[0])){for(var r=n,i=0;ii.max?t.set(n):t.set(+e)}},integer:{coerceFunction:function(e,t,n,i){e%1||!r(e)||void 0!==i.min&&ei.max?t.set(n):t.set(+e)}},string:{coerceFunction:function(e,t,n,r){if("string"!==typeof e){var i="number"===typeof e;!0!==r.strict&&i?t.set(String(e)):t.set(n)}else r.noBlank&&!e?t.set(n):t.set(e)}},color:{coerceFunction:function(e,t,n){i(e).isValid()?t.set(e):t.set(n)}},colorlist:{coerceFunction:function(e,t,n){Array.isArray(e)&&e.length&&e.every((function(e){return i(e).isValid()}))?t.set(e):t.set(n)}},colorscale:{coerceFunction:function(e,t,n){t.set(o.get(e,n))}},angle:{coerceFunction:function(e,t,n){"auto"===e?t.set("auto"):r(e)?t.set(f(+e,360)):t.set(n)}},subplotid:{coerceFunction:function(e,t,n,r){var i=r.regex||u(n);"string"===typeof e&&i.test(e)?t.set(e):t.set(n)},validateFunction:function(e,t){var n=t.dflt;return e===n||"string"===typeof e&&!!u(n).test(e)}},flaglist:{coerceFunction:function(e,t,n,r){if(-1===(r.extras||[]).indexOf(e))if("string"===typeof e){for(var i=e.split("+"),a=0;a=r&&e<=i?e:u}if("string"!==typeof e&&"number"!==typeof e)return u;e=String(e);var c=w(n),g=e.charAt(0);!c||"G"!==g&&"g"!==g||(e=e.substr(1),n="");var _=c&&"chinese"===n.substr(0,7),k=e.match(_?b:y);if(!k)return u;var S=k[1],T=k[3]||"1",A=Number(k[5]||1),E=Number(k[7]||0),C=Number(k[9]||0),M=Number(k[11]||0);if(c){if(2===S.length)return u;var O;S=Number(S);try{var P=m.getComponentMethod("calendars","getCal")(n);if(_){var L="i"===T.charAt(T.length-1);T=parseInt(T,10),O=P.newDate(S,P.toMonthIndex(S,T,L),A)}else O=P.newDate(S,Number(T),A)}catch(R){return u}return O?(O.toJD()-v)*f+E*d+C*h+M*p:u}S=2===S.length?(Number(S)+2e3-x)%100+x:Number(S),T-=1;var I=new Date(Date.UTC(2e3,T,A,E,C));return I.setUTCFullYear(S),I.getUTCMonth()!==T||I.getUTCDate()!==A?u:I.getTime()+M*p},r=t.MIN_MS=t.dateTime2ms("-9999"),i=t.MAX_MS=t.dateTime2ms("9999-12-31 23:59:59.9999"),t.isDateTime=function(e,n){return t.dateTime2ms(e,n)!==u};var k=90*f,S=3*d,T=5*h;function A(e,t,n,r,i){if((t||n||r||i)&&(e+=" "+_(t,2)+":"+_(n,2),(r||i)&&(e+=":"+_(r,2),i))){for(var a=4;i%10===0;)a-=1,i/=10;e+="."+_(i,a)}return e}t.ms2DateTime=function(e,t,n){if("number"!==typeof e||!(e>=r&&e<=i))return u;t||(t=0);var a,o,s,c,y,b,x=Math.floor(10*l(e+.05,1)),_=Math.round(e-x/10);if(w(n)){var E=Math.floor(_/f)+v,C=Math.floor(l(e,f));try{a=m.getComponentMethod("calendars","getCal")(n).fromJD(E).formatDate("yyyy-mm-dd")}catch(M){a=g("G%Y-%m-%d")(new Date(_))}if("-"===a.charAt(0))for(;a.length<11;)a="-0"+a.substr(1);else for(;a.length<10;)a="0"+a;o=t=r+f&&e<=i-f))return u;var t=Math.floor(10*l(e+.05,1)),n=new Date(Math.round(e-t/10));return A(a("%Y-%m-%d")(n),n.getHours(),n.getMinutes(),n.getSeconds(),10*n.getUTCMilliseconds()+t)},t.cleanDate=function(e,n,r){if(e===u)return n;if(t.isJSDate(e)||"number"===typeof e&&isFinite(e)){if(w(r))return s.error("JS Dates and milliseconds are incompatible with world calendars",e),n;if(!(e=t.ms2DateTimeLocal(+e))&&void 0!==n)return n}else if(!t.isDateTime(e,r))return s.error("unrecognized date",e),n;return e};var E=/%\d?f/g,C=/%h/g,M={1:"1",2:"1",3:"2",4:"2"};function O(e,t,n,r){e=e.replace(E,(function(e){var n=Math.min(+e.charAt(1)||6,6);return(t/1e3%1+2).toFixed(n).substr(2).replace(/0+$/,"")||"0"}));var i=new Date(Math.floor(t+.05));if(e=e.replace(C,(function(){return M[n("%q")(i)]})),w(r))try{e=m.getComponentMethod("calendars","worldCalFmt")(e,t,r)}catch(a){return"Invalid"}return n(e)(i)}var P=[59,59.9,59.99,59.999,59.9999];t.formatDate=function(e,t,n,r,i,a){if(i=w(i)&&i,!t)if("y"===n)t=a.year;else if("m"===n)t=a.month;else{if("d"!==n)return function(e,t){var n=l(e+.05,f),r=_(Math.floor(n/d),2)+":"+_(l(Math.floor(n/h),60),2);if("M"!==t){o(t)||(t=0);var i=(100+Math.min(l(e/p,60),P[t])).toFixed(t).substr(1);t>0&&(i=i.replace(/0+$/,"").replace(/[\.]$/,"")),r+=":"+i}return r}(e,n)+"\n"+O(a.dayMonthYear,e,r,i);t=a.dayMonth+"\n"+a.year}return O(t,e,r,i)};var L=3*f;t.incrementMonth=function(e,t,n){n=w(n)&&n;var r=l(e,f);if(e=Math.round(e-r),n)try{var i=Math.round(e/f)+v,a=m.getComponentMethod("calendars","getCal")(n),o=a.fromJD(i);return t%12?a.add(o,t,"m"):a.add(o,t/12,"y"),(o.toJD()-v)*f+r}catch(u){s.error("invalid ms "+e+" in calendar "+n)}var c=new Date(e+L);return c.setUTCMonth(c.getUTCMonth()+t)+r-L},t.findExactDates=function(e,t){for(var n,r,i=0,a=0,s=0,l=0,c=w(t)&&m.getComponentMethod("calendars","getCal")(t),u=0;u0&&e[t+1][0]<0)return t;return null}switch(t="RUS"===s||"FJI"===s?function(e){var t;if(null===c(e))t=e;else for(t=new Array(e.length),i=0;it?n[r++]=[e[i][0]+360,e[i][1]]:i===t?(n[r++]=e[i],n[r++]=[e[i][0],-90]):n[r++]=e[i];var a=d.tester(n);a.pts.pop(),l.push(a)}:function(e){l.push(d.tester(e))},a.type){case"MultiPolygon":for(n=0;ni&&(i=c,t=l)}else t=n;return o.default(t).geometry.coordinates}(u),r.fIn=e,r.fOut=u,s.push(u)}else c.log(["Location",r.loc,"does not have a valid GeoJSON geometry.","Traces with locationmode *geojson-id* only support","*Polygon* and *MultiPolygon* geometries."].join(" "))}delete i[n]}switch(n.type){case"FeatureCollection":var d=n.features;for(r=0;r100?(clearInterval(a),r("Unexpected error while fetching from "+e)):void i++}),50)}))}for(var o=0;o0&&(n.push(i),i=[])}return i.length>0&&n.push(i),n},t.makeLine=function(e){return 1===e.length?{type:"LineString",coordinates:e[0]}:{type:"MultiLineString",coordinates:e}},t.makePolygon=function(e){if(1===e.length)return{type:"Polygon",coordinates:e};for(var t=new Array(e.length),n=0;n1||v<0||v>1?null:{x:e+l*v,y:t+f*v}}function l(e,t,n,r,i){var a=r*e+i*t;if(a<0)return r*r+i*i;if(a>n){var o=r-e,s=i-t;return o*o+s*s}var l=r*t-i*e;return l*l/n}t.segmentsIntersect=s,t.segmentDistance=function(e,t,n,r,i,a,o,c){if(s(e,t,n,r,i,a,o,c))return 0;var u=n-e,f=r-t,d=o-i,h=c-a,p=u*u+f*f,v=d*d+h*h,m=Math.min(l(u,f,p,i-e,a-t),l(u,f,p,o-e,c-t),l(d,h,v,e-i,t-a),l(d,h,v,n-i,r-a));return Math.sqrt(m)},t.getTextLocation=function(e,t,n,s){if(e===i&&s===a||(r={},i=e,a=s),r[n])return r[n];var l=e.getPointAtLength(o(n-s/2,t)),c=e.getPointAtLength(o(n+s/2,t)),u=Math.atan((c.y-l.y)/(c.x-l.x)),f=e.getPointAtLength(o(n,t)),d={x:(4*f.x+l.x+c.x)/6,y:(4*f.y+l.y+c.y)/6,theta:u};return r[n]=d,d},t.clearLocationCache=function(){i=null},t.getVisibleSegment=function(e,t,n){var r,i,a=t.left,o=t.right,s=t.top,l=t.bottom,c=0,u=e.getTotalLength(),f=u;function d(t){var n=e.getPointAtLength(t);0===t?r=n:t===u&&(i=n);var c=n.xo?n.x-o:0,f=n.yl?n.y-l:0;return Math.sqrt(c*c+f*f)}for(var h=d(c);h;){if((c+=h+n)>f)return;h=d(c)}for(h=d(f);h;){if(c>(f-=h+n))return;h=d(f)}return{min:c,max:f,len:f-c,total:u,isClosed:0===c&&f===u&&Math.abs(r.x-i.x)<.1&&Math.abs(r.y-i.y)<.1}},t.findPointOnPath=function(e,t,n,r){for(var i,a,o,s=(r=r||{}).pathLength||e.getTotalLength(),l=r.tolerance||.001,c=r.iterationLimit||30,u=e.getPointAtLength(0)[n]>e.getPointAtLength(s)[n]?-1:1,f=0,d=0,h=s;f0?h=i:d=i,f++}return a}},81697:function(e,t,n){"use strict";var r=n(92770),i=n(84267),a=n(25075),o=n(21081),s=n(22399).defaultLine,l=n(73627).isArrayOrTypedArray,c=a(s),u=1;function f(e,t){var n=e;return n[3]*=t,n}function d(e){if(r(e))return c;var t=a(e);return t.length?t:c}function h(e){return r(e)?e:u}e.exports={formatColor:function(e,t,n){var r,i,s,p,v,m=e.color,g=l(m),y=l(t),b=o.extractOpts(e),x=[];if(r=void 0!==b.colorscale?o.makeColorScaleFuncFromTrace(e):d,i=g?function(e,t){return void 0===e[t]?c:a(r(e[t]))}:d,s=y?function(e,t){return void 0===e[t]?u:h(e[t])}:h,g||y)for(var w=0;w1?(n*e+n*t)/n:e+t,i=String(r).length;if(i>16){var a=String(t).length;if(i>=String(e).length+a){var o=parseFloat(r).toPrecision(12);-1===o.indexOf("e+")&&(r=+o)}}return r}},71828:function(e,t,n){"use strict";var r=n(39898),i=n(84096).g0,a=n(60721).WU,o=n(92770),s=n(50606),l=s.FP_SAFE,c=-l,u=s.BADNUM,f=e.exports={};f.adjustFormat=function(e){return!e||/^\d[.]\df/.test(e)||/[.]\d%/.test(e)?e:"0.f"===e?"~f":/^\d%/.test(e)?"~%":/^\ds/.test(e)?"~s":!/^[~,.0$]/.test(e)&&/[&fps]/.test(e)?"~"+e:e};var d={};f.warnBadFormat=function(e){var t=String(e);d[t]||(d[t]=1,f.warn('encountered bad format: "'+t+'"'))},f.noFormat=function(e){return String(e)},f.numberFormat=function(e){var t;try{t=a(f.adjustFormat(e))}catch(n){return f.warnBadFormat(e),f.noFormat}return t},f.nestedProperty=n(65487),f.keyedContainer=n(66636),f.relativeAttr=n(6962),f.isPlainObject=n(41965),f.toLogRange=n(58163),f.relinkPrivateKeys=n(51332);var h=n(73627);f.isTypedArray=h.isTypedArray,f.isArrayOrTypedArray=h.isArrayOrTypedArray,f.isArray1D=h.isArray1D,f.ensureArray=h.ensureArray,f.concat=h.concat,f.maxRowLength=h.maxRowLength,f.minRowLength=h.minRowLength;var p=n(64872);f.mod=p.mod,f.modHalf=p.modHalf;var v=n(96554);f.valObjectMeta=v.valObjectMeta,f.coerce=v.coerce,f.coerce2=v.coerce2,f.coerceFont=v.coerceFont,f.coercePattern=v.coercePattern,f.coerceHoverinfo=v.coerceHoverinfo,f.coerceSelectionMarkerOpacity=v.coerceSelectionMarkerOpacity,f.validate=v.validate;var m=n(41631);f.dateTime2ms=m.dateTime2ms,f.isDateTime=m.isDateTime,f.ms2DateTime=m.ms2DateTime,f.ms2DateTimeLocal=m.ms2DateTimeLocal,f.cleanDate=m.cleanDate,f.isJSDate=m.isJSDate,f.formatDate=m.formatDate,f.incrementMonth=m.incrementMonth,f.dateTick0=m.dateTick0,f.dfltRange=m.dfltRange,f.findExactDates=m.findExactDates,f.MIN_MS=m.MIN_MS,f.MAX_MS=m.MAX_MS;var g=n(65888);f.findBin=g.findBin,f.sorterAsc=g.sorterAsc,f.sorterDes=g.sorterDes,f.distinctVals=g.distinctVals,f.roundUp=g.roundUp,f.sort=g.sort,f.findIndexOfMin=g.findIndexOfMin,f.sortObjectKeys=n(78607);var y=n(80038);f.aggNums=y.aggNums,f.len=y.len,f.mean=y.mean,f.median=y.median,f.midRange=y.midRange,f.variance=y.variance,f.stdev=y.stdev,f.interp=y.interp;var b=n(35657);f.init2dArray=b.init2dArray,f.transposeRagged=b.transposeRagged,f.dot=b.dot,f.translationMatrix=b.translationMatrix,f.rotationMatrix=b.rotationMatrix,f.rotationXYMatrix=b.rotationXYMatrix,f.apply3DTransform=b.apply3DTransform,f.apply2DTransform=b.apply2DTransform,f.apply2DTransform2=b.apply2DTransform2,f.convertCssMatrix=b.convertCssMatrix,f.inverseTransformMatrix=b.inverseTransformMatrix;var x=n(26348);f.deg2rad=x.deg2rad,f.rad2deg=x.rad2deg,f.angleDelta=x.angleDelta,f.angleDist=x.angleDist,f.isFullCircle=x.isFullCircle,f.isAngleInsideSector=x.isAngleInsideSector,f.isPtInsideSector=x.isPtInsideSector,f.pathArc=x.pathArc,f.pathSector=x.pathSector,f.pathAnnulus=x.pathAnnulus;var w=n(99863);f.isLeftAnchor=w.isLeftAnchor,f.isCenterAnchor=w.isCenterAnchor,f.isRightAnchor=w.isRightAnchor,f.isTopAnchor=w.isTopAnchor,f.isMiddleAnchor=w.isMiddleAnchor,f.isBottomAnchor=w.isBottomAnchor;var _=n(87642);f.segmentsIntersect=_.segmentsIntersect,f.segmentDistance=_.segmentDistance,f.getTextLocation=_.getTextLocation,f.clearLocationCache=_.clearLocationCache,f.getVisibleSegment=_.getVisibleSegment,f.findPointOnPath=_.findPointOnPath;var k=n(1426);f.extendFlat=k.extendFlat,f.extendDeep=k.extendDeep,f.extendDeepAll=k.extendDeepAll,f.extendDeepNoArrays=k.extendDeepNoArrays;var S=n(47769);f.log=S.log,f.warn=S.warn,f.error=S.error;var T=n(30587);f.counterRegex=T.counter;var A=n(79990);f.throttle=A.throttle,f.throttleDone=A.done,f.clearThrottle=A.clear;var E=n(24401);function C(e){var t={};for(var n in e)for(var r=e[n],i=0;il||e=t)&&o(e)&&e>=0&&e%1===0},f.noop=n(64213),f.identity=n(23389),f.repeat=function(e,t){for(var n=new Array(t),r=0;rn?Math.max(n,Math.min(t,e)):Math.max(t,Math.min(n,e))},f.bBoxIntersect=function(e,t,n){return n=n||0,e.left<=t.right+n&&t.left<=e.right+n&&e.top<=t.bottom+n&&t.top<=e.bottom+n},f.simpleMap=function(e,t,n,r,i){for(var a=e.length,o=new Array(a),s=0;s=Math.pow(2,n)?i>10?(f.warn("randstr failed uniqueness"),l):e(t,n,r,(i||0)+1):l},f.OptionControl=function(e,t){e||(e={}),t||(t="opt");var n={optionList:[],_newoption:function(r){r[t]=e,n[r.name]=r,n.optionList.push(r)}};return n["_"+t]=e,n},f.smooth=function(e,t){if((t=Math.round(t)||0)<2)return e;var n,r,i,a,o=e.length,s=2*o,l=2*t-1,c=new Array(l),u=new Array(o);for(n=0;n=s&&(i-=s*Math.floor(i/s)),i<0?i=-1-i:i>=o&&(i=s-1-i),a+=e[i]*c[r];u[n]=a}return u},f.syncOrAsync=function(e,t,n){var r;function i(){return f.syncOrAsync(e,t,n)}for(;e.length;)if((r=(0,e.splice(0,1)[0])(t))&&r.then)return r.then(i);return n&&n(t)},f.stripTrailingSlash=function(e){return"/"===e.substr(-1)?e.substr(0,e.length-1):e},f.noneOrAll=function(e,t,n){if(e){var r,i,a=!1,o=!0;for(r=0;r0?t:0}))},f.fillArray=function(e,t,n,r){if(r=r||f.identity,f.isArrayOrTypedArray(e))for(var i=0;i1?i+o[1]:"";if(a&&(o.length>1||s.length>4||n))for(;r.test(s);)s=s.replace(r,"$1"+a+"$2");return s+l},f.TEMPLATE_STRING_REGEX=/%{([^\s%{}:]*)([:|\|][^}]*)?}/g;var D=/^\w*$/;f.templateString=function(e,t){var n={};return e.replace(f.TEMPLATE_STRING_REGEX,(function(e,r){var i;return D.test(r)?i=t[r]:(n[r]=n[r]||f.nestedProperty(t,r).get,i=n[r]()),f.isValidTextValue(i)?i:""}))};var F={max:10,count:0,name:"hovertemplate"};f.hovertemplateString=function(){return U.apply(F,arguments)};var N={max:10,count:0,name:"texttemplate"};f.texttemplateString=function(){return U.apply(N,arguments)};var z=/^(\S+)([\*\/])(-?\d+(\.\d+)?)$/,j={max:10,count:0,name:"texttemplate",parseMultDiv:!0};f.texttemplateStringForShapes=function(){return U.apply(j,arguments)};var B=/^[:|\|]/;function U(e,t,n){var r=this,a=arguments;t||(t={});var o={};return e.replace(f.TEMPLATE_STRING_REGEX,(function(e,s,l){var c="_xother"===s||"_yother"===s,u="_xother_"===s||"_yother_"===s,d="xother_"===s||"yother_"===s,h="xother"===s||"yother"===s||c||d||u,p=s;(c||u)&&(p=p.substring(1)),(d||u)&&(p=p.substring(0,p.length-1));var v,m,g,y=null,b=null;if(r.parseMultDiv){var x=function(e){var t=e.match(z);return t?{key:t[1],op:t[2],number:Number(t[3])}:{key:e,op:null,number:null}}(p);p=x.key,y=x.op,b=x.number}if(h){if(void 0===(v=t[p]))return""}else for(g=3;g=48&&o<=57,c=s>=48&&s<=57;if(l&&(r=10*r+o-48),c&&(i=10*i+s-48),!l||!c){if(r!==i)return r-i;if(o!==s)return o-s}}return i-r};var H=2e9;f.seedPseudoRandom=function(){H=2e9},f.pseudoRandom=function(){var e=H;return H=(69069*H+1)%4294967296,Math.abs(H-e)<429496729?f.pseudoRandom():H/4294967296},f.fillText=function(e,t,n){var r=Array.isArray(n)?function(e){n.push(e)}:function(e){n.text=e},i=f.extractOption(e,t,"htx","hovertext");if(f.isValidTextValue(i))return r(i);var a=f.extractOption(e,t,"tx","text");return f.isValidTextValue(a)?r(a):void 0},f.isValidTextValue=function(e){return e||0===e},f.formatPercent=function(e,t){t=t||0;for(var n=(Math.round(100*e*Math.pow(10,t))*Math.pow(.1,t)).toFixed(t)+"%",r=0;r1&&(c=1):c=0,f.strTranslate(i-c*(n+o),a-c*(r+s))+f.strScale(c)+(l?"rotate("+l+(t?"":" "+n+" "+r)+")":"")},f.setTransormAndDisplay=function(e,t){e.attr("transform",f.getTextTransform(t)),e.style("display",t.scale?null:"none")},f.ensureUniformFontSize=function(e,t){var n=f.extendFlat({},t);return n.size=Math.max(t.size,e._fullLayout.uniformtext.minsize||0),n},f.join2=function(e,t,n){var r=e.length;return r>1?e.slice(0,-1).join(t)+n+e[r-1]:e.join(t)},f.bigFont=function(e){return Math.round(1.2*e)};var $=f.getFirefoxVersion(),V=null!==$&&$<86;f.getPositionFromD3Event=function(){return V?[r.event.layerX,r.event.layerY]:[r.event.offsetX,r.event.offsetY]}},41965:function(e){"use strict";e.exports=function(e){return window&&window.process&&window.process.versions?"[object Object]"===Object.prototype.toString.call(e):"[object Object]"===Object.prototype.toString.call(e)&&Object.getPrototypeOf(e).hasOwnProperty("hasOwnProperty")}},66636:function(e,t,n){"use strict";var r=n(65487),i=/^\w*$/;e.exports=function(e,t,n,a){var o,s,l;n=n||"name",a=a||"value";var c={};t&&t.length?(l=r(e,t),s=l.get()):s=e,t=t||"";var u={};if(s)for(o=0;o2)return c[t]=2|c[t],d.set(e,null);if(f){for(o=t;o1){var t=["LOG:"];for(e=0;e1){var n=[];for(e=0;e"),"long")}},a.warn=function(){var e;if(r.logging>0){var t=["WARN:"];for(e=0;e0){var n=[];for(e=0;e"),"stick")}},a.error=function(){var e;if(r.logging>0){var t=["ERROR:"];for(e=0;e0){var n=[];for(e=0;e"),"stick")}}},77310:function(e,t,n){"use strict";var r=n(39898);e.exports=function(e,t,n){var i=e.selectAll("g."+n.replace(/\s/g,".")).data(t,(function(e){return e[0].trace.uid}));i.exit().remove(),i.enter().append("g").attr("class",n),i.order();var a=e.classed("rangeplot")?"nodeRangePlot3":"node3";return i.each((function(e){e[0][a]=r.select(this)})),i}},35657:function(e,t,n){"use strict";var r=n(79576);t.init2dArray=function(e,t){for(var n=new Array(e),r=0;rt/2?e-Math.round(e/t)*t:e}}},65487:function(e,t,n){"use strict";var r=n(92770),i=n(73627).isArrayOrTypedArray;function a(e,t){return function(){var n,r,o,s,l,c=e;for(s=0;s/g),l=0;la||c===i||cs)&&(!t||!l(e))}:function(e,t){var l=e[0],c=e[1];if(l===i||la||c===i||cs)return!1;var u,f,d,h,p,v=n.length,m=n[0][0],g=n[0][1],y=0;for(u=1;uMath.max(f,m)||c>Math.max(d,g)))if(cu||Math.abs(r(o,d))>i)return!0;return!1},a.filter=function(e,t){var n=[e[0]],r=0,i=0;function o(o){e.push(o);var s=n.length,l=r;n.splice(i+1);for(var c=l+1;c1&&o(e.pop()),{addPt:o,raw:e,filtered:n}}},79749:function(e,t,n){"use strict";var r=n(58617),i=n(98580);e.exports=function(e,t,a){var o=e._fullLayout,s=!0;return o._glcanvas.each((function(r){if(r.regl)r.regl.preloadCachedCode(a);else if(!r.pick||o._has("parcoords")){try{r.regl=i({canvas:this,attributes:{antialias:!r.pick,preserveDrawingBuffer:!0},pixelRatio:e._context.plotGlPixelRatio||n.g.devicePixelRatio,extensions:t||[],cachedCode:a||{}})}catch(l){s=!1}r.regl||(s=!1),s&&this.addEventListener("webglcontextlost",(function(t){e&&e.emit&&e.emit("plotly_webglcontextlost",{event:t,layer:r.key})}),!1)}})),s||r({container:o._glcontainer.node()}),s}},45142:function(e,t,n){"use strict";var r=n(92770),i=n(35791);e.exports=function(e){var t;if("string"!==typeof(t=e&&e.hasOwnProperty("userAgent")?e.userAgent:function(){var e;return"undefined"!==typeof navigator&&(e=navigator.userAgent),e&&e.headers&&"string"===typeof e.headers["user-agent"]&&(e=e.headers["user-agent"]),e}()))return!0;var n=i({ua:{headers:{"user-agent":t}},tablet:!0,featureDetect:!1});if(!n)for(var a=t.split(" "),o=1;o-1;s--){var l=a[s];if("Version/"===l.substr(0,8)){var c=l.substr(8).split(".")[0];if(r(c)&&(c=+c),c>=13)return!0}}return n}},75138:function(e){"use strict";e.exports=function(e,t){if(t instanceof RegExp){for(var n=t.toString(),r=0;ri.queueLength&&(e.undoQueue.queue.shift(),e.undoQueue.index--))},startSequence:function(e){e.undoQueue=e.undoQueue||{index:0,queue:[],sequence:!1},e.undoQueue.sequence=!0,e.undoQueue.beginSequence=!0},stopSequence:function(e){e.undoQueue=e.undoQueue||{index:0,queue:[],sequence:!1},e.undoQueue.sequence=!1,e.undoQueue.beginSequence=!1},undo:function(e){var t,n;if(!(void 0===e.undoQueue||isNaN(e.undoQueue.index)||e.undoQueue.index<=0)){for(e.undoQueue.index--,t=e.undoQueue.queue[e.undoQueue.index],e.undoQueue.inSequence=!0,n=0;n=e.undoQueue.queue.length)){for(t=e.undoQueue.queue[e.undoQueue.index],e.undoQueue.inSequence=!0,n=0;nt}function f(e,t){return e>=t}t.findBin=function(e,t,n){if(r(t.start))return n?Math.ceil((e-t.start)/t.size-s)-1:Math.floor((e-t.start)/t.size+s);var a,o,d=0,h=t.length,p=0,v=h>1?(t[h-1]-t[0])/(h-1):1;for(o=v>=0?n?l:c:n?f:u,e+=v*s*(n?-1:1)*(v>=0?1:-1);d90&&i.log("Long binary search..."),d-1},t.sorterAsc=function(e,t){return e-t},t.sorterDes=function(e,t){return t-e},t.distinctVals=function(e){var n,r=e.slice();for(r.sort(t.sorterAsc),n=r.length-1;n>-1&&r[n]===o;n--);for(var i,a=r[n]-r[0]||1,s=a/(n||1)/1e4,l=[],c=0;c<=n;c++){var u=r[c],f=u-i;void 0===i?(l.push(u),i=u):f>s&&(a=Math.min(a,f),l.push(u),i=u)}return{vals:l,minDiff:a}},t.roundUp=function(e,t,n){for(var r,i=0,a=t.length-1,o=0,s=n?0:1,l=n?1:0,c=n?Math.ceil:Math.floor;i0&&(r=1),n&&r)return e.sort(t)}return r?e:e.reverse()},t.findIndexOfMin=function(e,t){t=t||a;for(var n,r=1/0,i=0;ia.length)&&(o=a.length),r(n)||(n=!1),i(a[0])){for(l=new Array(o),s=0;se.length-1)return e[e.length-1];var n=t%1;return n*e[Math.ceil(t)]+(1-n)*e[Math.floor(t)]}},78614:function(e,t,n){"use strict";var r=n(25075);e.exports=function(e){return e?r(e):[0,0,0,1]}},3883:function(e,t,n){"use strict";var r=n(32396),i=n(91424),a=n(71828),o=null;e.exports=function(){if(null!==o)return o;o=!1;var e=a.isIE()||a.isSafari()||a.isIOS();if(window.navigator.userAgent&&!e){var t=Array.from(r.CSS_DECLARATIONS).reverse(),n=window.CSS&&window.CSS.supports||window.supportsCSS;if("function"===typeof n)o=t.some((function(e){return n.apply(null,e)}));else{var s=i.tester.append("image").attr("style",r.STYLE),l=window.getComputedStyle(s.node()).imageRendering;o=t.some((function(e){var t=e[1];return l===t||l===t.toLowerCase()})),s.remove()}}return o}},63893:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=i.strTranslate,o=n(77922),s=n(18783).LINE_SPACING,l=/([^$]*)([$]+[^$]*[$]+)([^$]*)/;t.convertToTspans=function(e,n,m){var E=e.text(),C=!e.attr("data-notex")&&n&&n._context.typesetMath&&"undefined"!==typeof MathJax&&E.match(l),P=r.select(e.node().parentNode);if(!P.empty()){var L=e.attr("class")?e.attr("class").split(" ")[0]:"text";return L+="-math",P.selectAll("svg."+L).remove(),P.selectAll("g."+L+"-group").remove(),e.style("display",null).attr({"data-unformatted":E,"data-math":"N"}),C?(n&&n._promises||[]).push(new Promise((function(t){e.style("display","none");var n=parseInt(e.node().style.fontSize,10),o={fontSize:n};!function(e,t,n){var a,o,s,l,d=parseInt((MathJax.version||"").split(".")[0]);if(2===d||3===d){var h=function(){return o=i.extendDeepAll({},MathJax.Hub.config),s=MathJax.Hub.processSectionDelay,void 0!==MathJax.Hub.processSectionDelay&&(MathJax.Hub.processSectionDelay=0),MathJax.Hub.Config({messageStyle:"none",tex2jax:{inlineMath:f},displayAlign:"left"})},p=function(){o=i.extendDeepAll({},MathJax.config),MathJax.config.tex||(MathJax.config.tex={}),MathJax.config.tex.inlineMath=f},v=function(){if("SVG"!==(a=MathJax.Hub.config.menuSettings.renderer))return MathJax.Hub.setRenderer("SVG")},m=function(){"svg"!==(a=MathJax.config.startup.output)&&(MathJax.config.startup.output="svg")},g=function(){var n="math-output-"+i.randstr({},64),a=(l=r.select("body").append("div").attr({id:n}).style({visibility:"hidden",position:"absolute","font-size":t.fontSize+"px"}).text(function(e){return e.replace(c,"\\lt ").replace(u,"\\gt ")}(e))).node();return 2===d?MathJax.Hub.Typeset(a):MathJax.typeset([a])},y=function(){var t=l.select(2===d?".MathJax_SVG":".MathJax"),a=!t.empty()&&l.select("svg").node();if(a){var o,s=a.getBoundingClientRect();o=2===d?r.select("body").select("#MathJax_SVG_glyphs"):t.select("defs"),n(t,o,s)}else i.log("There was an error in the tex syntax.",e),n();l.remove()},b=function(){if("SVG"!==a)return MathJax.Hub.setRenderer(a)},x=function(){"svg"!==a&&(MathJax.config.startup.output=a)},w=function(){return void 0!==s&&(MathJax.Hub.processSectionDelay=s),MathJax.Hub.Config(o)},_=function(){MathJax.config=o};2===d?MathJax.Hub.Queue(h,v,g,y,b,w):3===d&&(p(),m(),MathJax.startup.defaultReady(),MathJax.startup.promise.then((function(){g(),y(),x(),_()})))}else i.warn("No MathJax version:",MathJax.version)}(C[2],o,(function(r,i,o){P.selectAll("svg."+L).remove(),P.selectAll("g."+L+"-group").remove();var s=r&&r.select("svg");if(!s||!s.node())return I(),void t();var l=P.append("g").classed(L+"-group",!0).attr({"pointer-events":"none","data-unformatted":E,"data-math":"Y"});l.node().appendChild(s.node()),i&&i.node()&&s.node().insertBefore(i.node().cloneNode(!0),s.node().firstChild);var c=o.width,u=o.height;s.attr({class:L,height:u,preserveAspectRatio:"xMinYMin meet"}).style({overflow:"visible","pointer-events":"none"});var f=e.node().style.fill||"black",d=s.select("g");d.attr({fill:f,stroke:f});var h=d.node().getBoundingClientRect(),p=h.width,v=h.height;(p>c||v>u)&&(s.style("overflow","hidden"),p=(h=s.node().getBoundingClientRect()).width,v=h.height);var g=+e.attr("x"),y=+e.attr("y"),b=-(n||e.node().getBoundingClientRect().height)/4;if("y"===L[0])l.attr({transform:"rotate("+[-90,g,y]+")"+a(-p/2,b-v/2)});else if("l"===L[0])y=b-v/2;else if("a"===L[0]&&0!==L.indexOf("atitle"))g=0,y=b;else{var x=e.attr("text-anchor");g-=p*("middle"===x?.5:"end"===x?1:0),y=y+b-v/2}s.attr({x:g,y:y}),m&&m.call(e,l),t(l)}))}))):I(),e}function I(){P.empty()||(L=e.attr("class")+"-math",P.select("svg."+L).remove()),e.text("").style("white-space","pre");var n=function(e,t){t=t.replace(g," ");var n,a=!1,l=[],c=-1;function u(){c++;var t=document.createElementNS(o.svg,"tspan");r.select(t).attr({class:"line",dy:c*s+"em"}),e.appendChild(t),n=t;var i=l;if(l=[{node:t}],i.length>1)for(var a=1;a doesnt match end tag <"+e+">. Pretending it did match.",t),n=l[l.length-1].node}else i.log("Ignoring unexpected end tag .",t)}var C=x.test(t);C?u():(n=e,l=[{node:e}]);for(var P=t.split(y),L=0;L|>|>)/g,f=[["$","$"],["\\(","\\)"]],d={sup:"font-size:70%",sub:"font-size:70%",b:"font-weight:bold",i:"font-style:italic",a:"cursor:pointer",span:"",em:"font-style:italic;font-weight:bold"},h={sub:"0.3em",sup:"-0.6em"},p={sub:"-0.21em",sup:"0.42em"},v="\u200b",m=["http:","https:","mailto:","",void 0,":"],g=t.NEWLINES=/(\r\n?|\n)/g,y=/(<[^<>]*>)/,b=/<(\/?)([^ >]*)(\s+(.*))?>/i,x=//i;t.BR_TAG_ALL=//gi;var w=/(^|[\s"'])style\s*=\s*("([^"]*);?"|'([^']*);?')/i,_=/(^|[\s"'])href\s*=\s*("([^"]*)"|'([^']*)')/i,k=/(^|[\s"'])target\s*=\s*("([^"\s]*)"|'([^'\s]*)')/i,S=/(^|[\s"'])popup\s*=\s*("([\w=,]*)"|'([\w=,]*)')/i;function T(e,t){if(!e)return null;var n=e.match(t),r=n&&(n[3]||n[4]);return r&&M(r)}var A=/(^|;)\s*color:/;t.plainText=function(e,t){for(var n=void 0!==(t=t||{}).len&&-1!==t.len?t.len:1/0,r=void 0!==t.allowedTags?t.allowedTags:["br"],i=e.split(y),a=[],o="",s=0,l=0;l3?a.push(c.substr(0,h-3)+"..."):a.push(c.substr(0,h));break}o=""}}return a.join("")};var E={mu:"\u03bc",amp:"&",lt:"<",gt:">",nbsp:"\xa0",times:"\xd7",plusmn:"\xb1",deg:"\xb0"},C=/&(#\d+|#x[\da-fA-F]+|[a-z]+);/g;function M(e){return e.replace(C,(function(e,t){return("#"===t.charAt(0)?function(e){if(!(e>1114111)){var t=String.fromCodePoint;if(t)return t(e);var n=String.fromCharCode;return e<=65535?n(e):n(55232+(e>>10),e%1024+56320)}}("x"===t.charAt(1)?parseInt(t.substr(2),16):parseInt(t.substr(1),10)):E[t])||e}))}function O(e){var t=encodeURI(decodeURI(e)),n=document.createElement("a"),r=document.createElement("a");n.href=e,r.href=t;var i=n.protocol,a=r.protocol;return-1!==m.indexOf(i)&&-1!==m.indexOf(a)?t:""}function P(e,t,n){var r,a,o,s=n.horizontalAlign,l=n.verticalAlign||"top",c=e.node().getBoundingClientRect(),u=t.node().getBoundingClientRect();return a="bottom"===l?function(){return c.bottom-r.height}:"middle"===l?function(){return c.top+(c.height-r.height)/2}:function(){return c.top},o="right"===s?function(){return c.right-r.width}:"center"===s?function(){return c.left+(c.width-r.width)/2}:function(){return c.left},function(){r=this.node().getBoundingClientRect();var e=o()-u.left,t=a()-u.top,s=n.gd||{};if(n.gd){s._fullLayout._calcInverseTransform(s);var l=i.apply3DTransform(s._fullLayout._invTransform)(e,t);e=l[0],t=l[1]}return this.style({top:t+"px",left:e+"px","z-index":1e3}),this}}t.convertEntities=M,t.sanitizeHTML=function(e){e=e.replace(g," ");for(var t=document.createElement("p"),n=t,i=[],a=e.split(y),o=0;oa.ts+t?l():a.timer=setTimeout((function(){l(),a.timer=null}),t)},t.done=function(e){var t=n[e];return t&&t.timer?new Promise((function(e){var n=t.onDone;t.onDone=function(){n&&n(),e(),t.onDone=null}})):Promise.resolve()},t.clear=function(e){if(e)r(n[e]),delete n[e];else for(var i in n)t.clear(i)}},58163:function(e,t,n){"use strict";var r=n(92770);e.exports=function(e,t){if(e>0)return Math.log(e)/Math.LN10;var n=Math.log(Math.min(t[0],t[1]))/Math.LN10;return r(n)||(n=Math.log(Math.max(t[0],t[1]))/Math.LN10-6),n}},90973:function(e,t,n){"use strict";var r=e.exports={},i=n(78776).locationmodeToLayer,a=n(96892).zL;r.getTopojsonName=function(e){return[e.scope.replace(/ /g,"-"),"_",e.resolution.toString(),"m"].join("")},r.getTopojsonPath=function(e,t){return e+t+".json"},r.getTopojsonFeatures=function(e,t){var n=i[e.locationmode],r=t.objects[n];return a(t,r).features}},37815:function(e){"use strict";e.exports={moduleType:"locale",name:"en-US",dictionary:{"Click to enter Colorscale title":"Click to enter Colorscale title"},format:{date:"%m/%d/%Y"}}},92177:function(e){"use strict";e.exports={moduleType:"locale",name:"en",dictionary:{"Click to enter Colorscale title":"Click to enter Colourscale title"},format:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],periods:["AM","PM"],dateTime:"%a %b %e %X %Y",date:"%d/%m/%Y",time:"%H:%M:%S",decimal:".",thousands:",",grouping:[3],currency:["$",""],year:"%Y",month:"%b %Y",dayMonth:"%b %-d",dayMonthYear:"%b %-d, %Y"}}},14458:function(e,t,n){"use strict";var r=n(73972);e.exports=function(e){for(var t,n,i=r.layoutArrayContainers,a=r.layoutArrayRegexes,o=e.split("[")[0],s=0;s0&&o.log("Clearing previous rejected promises from queue."),e._promises=[]},t.cleanLayout=function(e){var n,r;e||(e={}),e.xaxis1&&(e.xaxis||(e.xaxis=e.xaxis1),delete e.xaxis1),e.yaxis1&&(e.yaxis||(e.yaxis=e.yaxis1),delete e.yaxis1),e.scene1&&(e.scene||(e.scene=e.scene1),delete e.scene1);var a=(s.subplotsRegistry.cartesian||{}).attrRegex,l=(s.subplotsRegistry.polar||{}).attrRegex,f=(s.subplotsRegistry.ternary||{}).attrRegex,d=(s.subplotsRegistry.gl3d||{}).attrRegex,v=Object.keys(e);for(n=0;n3?(I.x=1.02,I.xanchor="left"):I.x<-2&&(I.x=-.02,I.xanchor="right"),I.y>3?(I.y=1.02,I.yanchor="bottom"):I.y<-2&&(I.y=-.02,I.yanchor="top")),p(e),"rotate"===e.dragmode&&(e.dragmode="orbit"),c.clean(e),e.template&&e.template.layout&&t.cleanLayout(e.template.layout),e},t.cleanData=function(e){for(var n=0;n0)return e.substr(0,t)}t.hasParent=function(e,t){for(var n=x(t);n;){if(n in e)return!0;n=x(n)}return!1};var w=["x","y","z"];t.clearAxisTypes=function(e,t,n){for(var r=0;r1&&a.warn("Full array edits are incompatible with other edits",f);var y=n[""][""];if(c(y))t.set(null);else{if(!Array.isArray(y))return a.warn("Unrecognized full array edit value",f,y),!0;t.set(y)}return!v&&(d(m,g),h(e),!0)}var b,x,w,_,k,S,T,A,E=Object.keys(n).map(Number).sort(o),C=t.get(),M=C||[],O=u(g,f).get(),P=[],L=-1,I=M.length;for(b=0;bM.length-(T?0:1))a.warn("index out of range",f,w);else if(void 0!==S)k.length>1&&a.warn("Insertion & removal are incompatible with edits to the same index.",f,w),c(S)?P.push(w):T?("add"===S&&(S={}),M.splice(w,0,S),O&&O.splice(w,0,{})):a.warn("Unrecognized full object edit value",f,w,S),-1===L&&(L=w);else for(x=0;x=0;b--)M.splice(P[b],1),O&&O.splice(P[b],1);if(M.length?C||t.set(M):t.set(null),v)return!1;if(d(m,g),p!==i){var R;if(-1===L)R=E;else{for(I=Math.max(M.length,I),R=[],b=0;b=L);b++)R.push(w);for(b=L;b=e.data.length||i<-e.data.length)throw new Error(n+" must be valid indices for gd.data.");if(t.indexOf(i,r+1)>-1||i>=0&&t.indexOf(-e.data.length+i)>-1||i<0&&t.indexOf(e.data.length+i)>-1)throw new Error("each index in "+n+" must be unique.")}}function L(e,t,n){if(!Array.isArray(e.data))throw new Error("gd.data must be an array.");if("undefined"===typeof t)throw new Error("currentIndices is a required argument.");if(Array.isArray(t)||(t=[t]),P(e,t,"currentIndices"),"undefined"===typeof n||Array.isArray(n)||(n=[n]),"undefined"!==typeof n&&P(e,n,"newIndices"),"undefined"!==typeof n&&t.length!==n.length)throw new Error("current and new indices must be of equal length.")}function I(e,t,n,r,a){!function(e,t,n,r){var i=o.isPlainObject(r);if(!Array.isArray(e.data))throw new Error("gd.data must be an array");if(!o.isPlainObject(t))throw new Error("update must be a key:value object");if("undefined"===typeof n)throw new Error("indices must be an integer or array of integers");for(var a in P(e,n,"indices"),t){if(!Array.isArray(t[a])||t[a].length!==n.length)throw new Error("attribute "+a+" must be an array of length equal to indices array length");if(i&&(!(a in r)||!Array.isArray(r[a])||r[a].length!==t[a].length))throw new Error("when maxPoints is set as a key:value object it must contain a 1:1 corrispondence with the keys and number of traces in the update object")}}(e,t,n,r);for(var l=function(e,t,n,r){var a,l,c,u,f,d=o.isPlainObject(r),h=[];for(var p in Array.isArray(n)||(n=[n]),n=O(n,e.data.length-1),t)for(var v=0;v-1&&-1===n.indexOf("grouptitlefont")?l(n,n.replace("titlefont","title.font")):n.indexOf("titleposition")>-1?l(n,n.replace("titleposition","title.position")):n.indexOf("titleside")>-1?l(n,n.replace("titleside","title.side")):n.indexOf("titleoffset")>-1&&l(n,n.replace("titleoffset","title.offset")):l(n,n.replace("title","title.text"));function l(t,n){e[n]=e[t],delete e[t]}}function U(e,t,n){e=o.getGraphDiv(e),w.clearPromiseQueue(e);var r={};if("string"===typeof t)r[t]=n;else{if(!o.isPlainObject(t))return o.warn("Relayout fail.",t,n),Promise.reject();r=o.extendFlat({},t)}Object.keys(r).length&&(e.changed=!0);var i=G(e,r),a=i.flags;a.calc&&(e.calcdata=void 0);var s=[d.previousPromises];a.layoutReplot?s.push(_.layoutReplot):Object.keys(r).length&&(H(e,a,i)||d.supplyDefaults(e),a.legend&&s.push(_.doLegend),a.layoutstyle&&s.push(_.layoutStyles),a.axrange&&$(s,i.rangesAltered),a.ticks&&s.push(_.doTicksRelayout),a.modebar&&s.push(_.doModeBar),a.camera&&s.push(_.doCamera),a.colorbars&&s.push(_.doColorBars),s.push(A)),s.push(d.rehover,d.redrag,d.reselect),c.add(e,U,[e,i.undoit],U,[e,i.redoit]);var l=o.syncOrAsync(s,e);return l&&l.then||(l=Promise.resolve(e)),l.then((function(){return e.emit("plotly_relayout",i.eventData),e}))}function H(e,t,n){var r=e._fullLayout;if(!t.axrange)return!1;for(var i in t)if("axrange"!==i&&t[i])return!1;for(var a in n.rangesAltered){var o=h.id2name(a),s=e.layout[o],l=r[o];l.autorange=s.autorange;var c=l._rangeInitial0,u=l._rangeInitial1;if(void 0===c&&void 0!==u||void 0!==c&&void 0===u)return!1;if(s.range&&(l.range=s.range.slice()),l.cleanRange(),l._matchGroup)for(var f in l._matchGroup)if(f!==a){var d=r[h.id2name(f)];d.autorange=l.autorange,d.range=l.range.slice(),d._input.range=l.range.slice()}}return!0}function $(e,t){var n=t?function(e){var n=[];for(var r in t){var i=h.getFromId(e,r);if(n.push(r),-1!==(i.ticklabelposition||"").indexOf("inside")&&i._anchorAxis&&n.push(i._anchorAxis._id),i._matchGroup)for(var a in i._matchGroup)t[a]||n.push(a)}return h.draw(e,n,{skipTitle:!0})}:function(e){return h.draw(e,"redraw")};e.push(y,_.doAutoRangeAndConstraints,n,_.drawData,_.finalDraw)}var V=/^[xyz]axis[0-9]*\.range(\[[0|1]\])?$/,W=/^[xyz]axis[0-9]*\.autorange$/,q=/^[xyz]axis[0-9]*\.domain(\[[0|1]\])?$/;function G(e,t){var n,r,i,a=e.layout,l=e._fullLayout,c=l._guiEditing,d=N(l._preGUI,c),p=Object.keys(t),v=h.list(e),m=o.extendDeepAll({},t),g={};for(B(t),p=Object.keys(t),r=0;r0&&"string"!==typeof I.parts[D];)D--;var z=I.parts[D],j=I.parts[D-1]+"."+z,U=I.parts.slice(0,D).join("."),H=s(e.layout,U).get(),$=s(l,U).get(),G=I.get();if(void 0!==R){A[L]=R,E[L]="reverse"===z?R:F(G);var Y=f.getLayoutValObject(l,I.parts);if(Y&&Y.impliedEdits&&null!==R)for(var K in Y.impliedEdits)C(o.relativeAttr(L,K),Y.impliedEdits[K]);if(-1!==["width","height"].indexOf(L))if(R){C("autosize",null);var X="height"===L?"width":"height";C(X,l[X])}else l[L]=e._initialAutoSize[L];else if("autosize"===L)C("width",R?null:l.width),C("height",R?null:l.height);else if(j.match(V))P(j),s(l,U+"._inputRange").set(null);else if(j.match(W)){P(j),s(l,U+"._inputRange").set(null);var J=s(l,U).get();J._inputDomain&&(J._input.domain=J._inputDomain.slice())}else j.match(q)&&s(l,U+"._inputDomain").set(null);if("type"===z){M=H;var Q="linear"===$.type&&"log"===R,ee="log"===$.type&&"linear"===R;if(Q||ee){if(M&&M.range)if($.autorange)Q&&(M.range=M.range[1]>M.range[0]?[1,2]:[2,1]);else{var te=M.range[0],ne=M.range[1];Q?(te<=0&&ne<=0&&C(U+".autorange",!0),te<=0?te=ne/1e6:ne<=0&&(ne=te/1e6),C(U+".range[0]",Math.log(te)/Math.LN10),C(U+".range[1]",Math.log(ne)/Math.LN10)):(C(U+".range[0]",Math.pow(10,te)),C(U+".range[1]",Math.pow(10,ne)))}else C(U+".autorange",!0);Array.isArray(l._subplots.polar)&&l._subplots.polar.length&&l[I.parts[0]]&&"radialaxis"===I.parts[1]&&delete l[I.parts[0]]._subplot.viewInitial["radialaxis.range"],u.getComponentMethod("annotations","convertCoords")(e,$,R,C),u.getComponentMethod("images","convertCoords")(e,$,R,C)}else C(U+".autorange",!0),C(U+".range",null);s(l,U+"._inputRange").set(null)}else if(z.match(S)){var re=s(l,L).get(),ie=(R||{}).type;ie&&"-"!==ie||(ie="linear"),u.getComponentMethod("annotations","convertCoords")(e,re,ie,C),u.getComponentMethod("images","convertCoords")(e,re,ie,C)}var ae=x.containerArrayMatch(L);if(ae){n=ae.array,r=ae.index;var oe=ae.property,se=Y||{editType:"calc"};""!==r&&""===oe&&(x.isAddVal(R)?E[L]=null:x.isRemoveVal(R)?E[L]=(s(a,n).get()||[])[r]:o.warn("unrecognized full object value",t)),k.update(T,se),g[n]||(g[n]={});var le=g[n][r];le||(le=g[n][r]={}),le[oe]=R,delete t[L]}else"reverse"===z?(H.range?H.range.reverse():(C(U+".autorange",!0),H.range=[1,0]),$.autorange?T.calc=!0:T.plot=!0):("dragmode"===L&&(!1===R&&!1!==G||!1!==R&&!1===G)||l._has("scatter-like")&&l._has("regl")&&"dragmode"===L&&("lasso"===R||"select"===R)&&"lasso"!==G&&"select"!==G||l._has("gl2d")?T.plot=!0:Y?k.update(T,Y):T.calc=!0,I.set(R))}}for(n in g)x.applyContainerArrayChanges(e,d(a,n),g[n],T,d)||(T.plot=!0);for(var ce in O){var ue=(M=h.getFromId(e,ce))&&M._constraintGroup;if(ue)for(var fe in T.calc=!0,ue)O[fe]||(h.getFromId(e,fe)._constraintShrinkable=!0)}(Z(e)||t.height||t.width)&&(T.plot=!0);var de=l.shapes;for(r=0;r1;)if(r.pop(),void 0!==(n=s(t,r.join(".")+".uirevision").get()))return n;return t.uirevision}function te(e,t){for(var n=0;n=i.length?i[0]:i[e]:i}function l(e){return Array.isArray(a)?e>=a.length?a[0]:a[e]:a}function c(e,t){var n=0;return function(){if(e&&++n===t)return e()}}return void 0===r._frameWaitingCnt&&(r._frameWaitingCnt=0),new Promise((function(a,u){function f(){r._currentFrame&&r._currentFrame.onComplete&&r._currentFrame.onComplete();var t=r._currentFrame=r._frameQueue.shift();if(t){var n=t.name?t.name.toString():null;e._fullLayout._currentFrame=n,r._lastFrameAt=Date.now(),r._timeToNext=t.frameOpts.duration,d.transition(e,t.frame.data,t.frame.layout,w.coerceTraceIndices(e,t.frame.traces),t.frameOpts,t.transitionOpts).then((function(){t.onComplete&&t.onComplete()})),e.emit("plotly_animatingframe",{name:n,frame:t.frame,animation:{frame:t.frameOpts,transition:t.transitionOpts}})}else e.emit("plotly_animated"),window.cancelAnimationFrame(r._animationRaf),r._animationRaf=null}function h(){e.emit("plotly_animating"),r._lastFrameAt=-1/0,r._timeToNext=0,r._runningTransitions=0,r._currentFrame=null,function e(){r._animationRaf=window.requestAnimationFrame(e),Date.now()-r._lastFrameAt>r._timeToNext&&f()}()}var p,v,m=0;function g(e){return Array.isArray(i)?m>=i.length?e.transitionOpts=i[m]:e.transitionOpts=i[0]:e.transitionOpts=i,m++,e}var y=[],b=void 0===t||null===t,x=Array.isArray(t);if(b||x||!o.isPlainObject(t)){if(b||-1!==["string","number"].indexOf(typeof t))for(p=0;p0&&SS)&&T.push(v);y=T}}y.length>0?function(t){if(0!==t.length){for(var i=0;i=0;r--)if(o.isPlainObject(t[r])){var v=t[r].name,m=(u[v]||p[v]||{}).name,g=t[r].name,y=u[m]||p[m];m&&g&&"number"===typeof g&&y&&T<5&&(T++,o.warn('addFrames: overwriting frame "'+(u[m]||p[m]).name+'" with a frame whose name of type "number" also equates to "'+m+'". This is valid but may potentially lead to unexpected behavior since all plotly.js frame names are stored internally as strings.'),5===T&&o.warn("addFrames: This API call has yielded too many of these warnings. For the rest of this call, further warnings about numeric frame names will be suppressed.")),p[v]={name:v},h.push({frame:d.supplyFrameDefaults(t[r]),index:n&&void 0!==n[r]&&null!==n[r]?n[r]:f+r})}h.sort((function(e,t){return e.index>t.index?-1:e.index=0;r--){if("number"===typeof(i=h[r].frame).name&&o.warn("Warning: addFrames accepts frames with numeric names, but the numbers areimplicitly cast to strings"),!i.name)for(;u[i.name="frame "+e._transitionData._counter++];);if(u[i.name]){for(a=0;a=0;n--)r=t[n],a.push({type:"delete",index:r}),s.unshift({type:"insert",index:r,value:i[r]});var l=d.modifyFrames,u=d.modifyFrames,f=[e,s],h=[e,a];return c&&c.add(e,l,f,u,h),d.modifyFrames(e,a)},t.addTraces=function e(n,r,i){n=o.getGraphDiv(n);var a,s,l=[],u=t.deleteTraces,f=e,d=[n,l],h=[n,r];for(function(e,t,n){var r,i;if(!Array.isArray(e.data))throw new Error("gd.data must be an array.");if("undefined"===typeof t)throw new Error("traces must be defined.");for(Array.isArray(t)||(t=[t]),r=0;r=0&&n=0&&n=a.length)return!1;if(2===e.dimensions){if(n++,t.length===n)return e;var o=t[n];if(!w(o))return!1;e=a[i][o]}else e=a[i]}else e=a}}return e}function w(e){return e===Math.round(e)&&e>=0}function _(){var e,t,n={};for(e in f(n,o),r.subplotsRegistry)if((t=r.subplotsRegistry[e]).layoutAttributes)if(Array.isArray(t.attr))for(var i=0;i=l.length)return!1;i=(n=(r.transformsRegistry[l[c].type]||{}).attributes)&&n[t[2]],s=3}else{var u=e._module;if(u||(u=(r.modules[e.type||a.type.dflt]||{})._module),!u)return!1;if(!(i=(n=u.attributes)&&n[o])){var f=u.basePlotModule;f&&f.attributes&&(i=f.attributes[o])}i||(i=a[o])}return x(i,t,s)},t.getLayoutValObject=function(e,t){var n=function(e,t){var n,i,a,s,l=e._basePlotModules;if(l){var c;for(n=0;n=i&&(n._input||{})._templateitemname;s&&(o=i);var l,c=t+"["+o+"]";function u(){l={},s&&(l[c]={},l[c][a]=s)}function f(e,t){s?r.nestedProperty(l[c],e).set(t):l[c+"."+e]=t}function d(){var e=l;return u(),e}return u(),{modifyBase:function(e,t){l[e]=t},modifyItem:f,getUpdateObj:d,applyUpdate:function(t,n){t&&f(t,n);var i=d();for(var a in i)r.nestedProperty(e,a).set(i[a])}}}},61549:function(e,t,n){"use strict";var r=n(39898),i=n(73972),a=n(74875),o=n(71828),s=n(63893),l=n(33306),c=n(7901),u=n(91424),f=n(92998),d=n(64168),h=n(89298),p=n(18783),v=n(99082),m=v.enforce,g=v.clean,y=n(71739).doAutoRange,b="start",x="middle",w="end";function _(e,t,n){for(var r=0;r=e[1]||i[1]<=e[0])&&a[0]t[0])return!0}return!1}function k(e){var n,i,s,l,f,v,m=e._fullLayout,g=m._size,y=g.p,b=h.list(e,"",!0);if(m._paperdiv.style({width:e._context.responsive&&m.autosize&&!e._context._hasZeroWidth&&!e.layout.width?"100%":m.width+"px",height:e._context.responsive&&m.autosize&&!e._context._hasZeroHeight&&!e.layout.height?"100%":m.height+"px"}).selectAll(".main-svg").call(u.setSize,m.width,m.height),e._context.setBackground(e,m.paper_bgcolor),t.drawMainTitle(e),d.manage(e),!m._has("cartesian"))return a.previousPromises(e);function x(e,t,n){var r=e._lw/2;return"x"===e._id.charAt(0)?t?"top"===n?t._offset-y-r:t._offset+t._length+y+r:g.t+g.h*(1-(e.position||0))+r%1:t?"right"===n?t._offset+t._length+y+r:t._offset-y-r:g.l+g.w*(e.position||0)+r%1}for(n=0;n.5?"t":"b",o=e._fullLayout.margin[a],s=0;return"paper"===t.yref?s=n+t.pad.t+t.pad.b:"container"===t.yref&&(s=function(e,t,n,r,i){var a=0;return"middle"===n&&(a+=i/2),"t"===e?("top"===n&&(a+=i),a+=r-t*r):("bottom"===n&&(a+=i),a+=t*r),a}(a,r,i,e._fullLayout.height,n)+t.pad.t+t.pad.b),s>o?s:0}(e,n,m);g>0&&(function(e,t,n,r){var i="title.automargin",s=e._fullLayout.title,l=s.y>.5?"t":"b",c={x:s.x,y:s.y,t:0,b:0},u={};"paper"===s.yref&&function(e,t,n,r,i){var a="paper"===t.yref?e._fullLayout._size.h:e._fullLayout.height,s=o.isTopAnchor(t)?r:r-i,l="b"===n?a-s:s;return!(o.isTopAnchor(t)&&"t"===n||o.isBottomAnchor(t)&&"b"===n)&&lk?u.push({code:"unused",traceType:y,templateCount:_,dataCount:k}):k>_&&u.push({code:"reused",traceType:y,templateCount:_,dataCount:k})}}else u.push({code:"data"});if(function e(t,n){for(var r in t)if("_"!==r.charAt(0)){var a=t[r],o=v(t,r,n);i(a)?(Array.isArray(t)&&!1===a._template&&a.templateitemname&&u.push({code:"missing",path:o,templateitemname:a.templateitemname}),e(a,o)):Array.isArray(a)&&m(a)&&e(a,o)}}({data:h,layout:d},""),u.length)return u.map(g)}},403:function(e,t,n){"use strict";var r=n(92770),i=n(72391),a=n(74875),o=n(71828),s=n(25095),l=n(5900),c=n(70942),u=n(11506).version,f={format:{valType:"enumerated",values:["png","jpeg","webp","svg","full-json"],dflt:"png"},width:{valType:"number",min:1},height:{valType:"number",min:1},scale:{valType:"number",min:0,dflt:1},setBackground:{valType:"any",dflt:!1},imageDataOnly:{valType:"boolean",dflt:!1}};e.exports=function(e,t){var n,d,h,p;function v(e){return!(e in t)||o.validate(t[e],f[e])}if(t=t||{},o.isPlainObject(e)?(n=e.data||[],d=e.layout||{},h=e.config||{},p={}):(e=o.getGraphDiv(e),n=o.extendDeep([],e.data),d=o.extendDeep({},e.layout),h=e._context,p=e._fullLayout||{}),!v("width")&&null!==t.width||!v("height")&&null!==t.height)throw new Error("Height and width should be pixel values.");if(!v("format"))throw new Error("Export format is not "+o.join2(f.format.values,", "," or ")+".");var m={};function g(e,n){return o.coerce(t,m,f,e,n)}var y=g("format"),b=g("width"),x=g("height"),w=g("scale"),_=g("setBackground"),k=g("imageDataOnly"),S=document.createElement("div");S.style.position="absolute",S.style.left="-5000px",document.body.appendChild(S);var T=o.extendFlat({},d);b?T.width=b:null===t.width&&r(p.width)&&(T.width=p.width),x?T.height=x:null===t.height&&r(p.height)&&(T.height=p.height);var A=o.extendFlat({},h,{_exportedPlot:!0,staticPlot:!0,setBackground:_}),E=s.getRedrawFunc(S);function C(){return new Promise((function(e){setTimeout(e,s.getDelay(S._fullLayout))}))}function M(){return new Promise((function(e,t){var n=l(S,y,w),r=S._fullLayout.width,f=S._fullLayout.height;function d(){i.purge(S),document.body.removeChild(S)}if("full-json"===y){var h=a.graphJson(S,!1,"keepdata","object",!0,!0);return h.version=u,h=JSON.stringify(h),d(),e(k?h:s.encodeJSON(h))}if(d(),"svg"===y)return e(k?n:s.encodeSVG(n));var p=document.createElement("canvas");p.id=o.randstr(),c({format:y,width:r,height:f,scale:w,canvas:p,svg:n,promise:!0}).then(e).catch(t)}))}return new Promise((function(e,t){i.newPlot(S,n,T,A).then(E).then(C).then(M).then((function(t){e(function(e){return k?e.replace(s.IMAGE_URL_PREFIX,""):e}(t))})).catch((function(e){t(e)}))}))}},84936:function(e,t,n){"use strict";var r=n(71828),i=n(74875),a=n(86281),o=n(72075).dfltConfig,s=r.isPlainObject,l=Array.isArray,c=r.isArrayOrTypedArray;function u(e,t,n,i,a,o){o=o||[];for(var f=Object.keys(e),d=0;db.length&&i.push(h("unused",a,g.concat(b.length)));var T,A,E,C,M,O=b.length,P=Array.isArray(S);if(P&&(O=Math.min(O,S.length)),2===x.dimensions)for(A=0;Ab[A].length&&i.push(h("unused",a,g.concat(A,b[A].length)));var L=b[A].length;for(T=0;T<(P?Math.min(L,S[A].length):L);T++)E=P?S[A][T]:S,C=y[A][T],M=b[A][T],r.validate(C,E)?M!==C&&M!==+C&&i.push(h("dynamic",a,g.concat(A,T),C,M)):i.push(h("value",a,g.concat(A,T),C))}else i.push(h("array",a,g.concat(A),y[A]));else for(A=0;A1&&d.push(h("object","layout"))),i.supplyDefaults(p);for(var v=p._fullData,m=n.length,g=0;g0&&Math.round(f)===f))return{vals:i};c=f}for(var d=t.calendar,h="start"===l,p="end"===l,v=e[n+"period0"],m=a(v,d)||0,g=[],y=[],b=[],x=i.length,w=0;wT;)S=o(S,-c,d);for(;S<=T;)S=o(S,c,d);k=o(S,-c,d)}else{for(S=m+(_=Math.round((T-m)/u))*u;S>T;)S-=u;for(;S<=T;)S+=u;k=S-u}g[w]=h?k:p?S:(k+S)/2,y[w]=k,b[w]=S}return{vals:g,starts:y,ends:b}}},89502:function(e){"use strict";e.exports={xaxis:{valType:"subplotid",dflt:"x",editType:"calc+clearAxisTypes"},yaxis:{valType:"subplotid",dflt:"y",editType:"calc+clearAxisTypes"}}},71739:function(e,t,n){"use strict";var r=n(39898),i=n(92770),a=n(71828),o=n(50606).FP_SAFE,s=n(73972),l=n(91424),c=n(41675),u=c.getFromId,f=c.isLinked;function d(e,t){var n,r,i=[],o=e._fullLayout,s=p(o,t,0),l=p(o,t,1),c=m(e,t),u=c.min,f=c.max;if(0===u.length||0===f.length)return a.simpleMap(t.range,t.r2l);var d=u[0].val,v=f[0].val;for(n=1;n0&&((T=O-s(x)-l(w))>P?A/T>L&&(_=x,k=w,L=A/T):A/O>L&&(_={val:x.val,nopad:1},k={val:w.val,nopad:1},L=A/O));if(d===v){var I=d-1,R=d+1;if(C)if(0===d)i=[0,1];else{var D=(d>0?f:u).reduce((function(e,t){return Math.max(e,l(t))}),0),F=d/(1-Math.min(.5,D/O));i=d>0?[0,F]:[F,0]}else i=M?[Math.max(0,I),Math.max(1,R)]:[I,R]}else C?(_.val>=0&&(_={val:0,nopad:1}),k.val<=0&&(k={val:0,nopad:1})):M&&(_.val-L*s(_)<0&&(_={val:0,nopad:1}),k.val<=0&&(k={val:1,nopad:1})),L=(k.val-_.val-h(t,x.val,w.val))/(O-s(_)-l(k)),i=[_.val-L*s(_),k.val+L*l(k)];return i=S(i,t),t.limitRange&&t.limitRange(),y&&i.reverse(),a.simpleMap(i,t.l2r||Number)}function h(e,t,n){var r=0;if(e.rangebreaks)for(var i=e.locateBreaks(t,n),a=0;a0?n.ppadplus:n.ppadminus)||n.ppad||0),E=T((e._m>0?n.ppadminus:n.ppadplus)||n.ppad||0),C=T(n.vpadplus||n.vpad),M=T(n.vpadminus||n.vpad);if(!k){if(d=1/0,h=-1/0,_)for(r=0;r0&&(d=a),a>h&&a-o&&(d=a),a>h&&a=L;r--)P(r);return{min:p,max:v,opts:n}},concatExtremes:m};var v=3;function m(e,t,n){var r,i,a,o=t._id,s=e._fullData,l=e._fullLayout,c=[],f=[];function d(e,t){for(r=0;r=n&&(c.extrapad||!o)){s=!1;break}i(t,c.val)&&c.pad<=n&&(o||!c.extrapad)&&(e.splice(l,1),l--)}if(s){var u=a&&0===t;e.push({val:t,pad:u?0:n,extrapad:!u&&o})}}function x(e){return i(e)&&Math.abs(e)=t}function k(e,t,n){return void 0===t||void 0===n||(t=e.d2l(t))<(n=e.d2l(n))}function S(e,t){if(!t||!t.autorangeoptions)return e;var n=e[0],r=e[1],i=t.autorangeoptions.include;if(void 0!==i){var o=t.d2l(n),s=t.d2l(r);a.isArrayOrTypedArray(i)||(i=[i]);for(var l=0;l=c&&(o=c,n=c),s<=c&&(s=c,r=c)}}return n=function(e,t){var n=t.autorangeoptions;return n&&void 0!==n.minallowed&&k(t,n.minallowed,n.maxallowed)?n.minallowed:n&&void 0!==n.clipmin&&k(t,n.clipmin,n.clipmax)?Math.max(e,t.d2l(n.clipmin)):e}(n,t),r=function(e,t){var n=t.autorangeoptions;return n&&void 0!==n.maxallowed&&k(t,n.minallowed,n.maxallowed)?n.maxallowed:n&&void 0!==n.clipmax&&k(t,n.clipmin,n.clipmax)?Math.min(e,t.d2l(n.clipmax)):e}(r,t),[n,r]}},23074:function(e){"use strict";e.exports=function(e,t,n){var r,i;if(n){var a="reversed"===t||"min reversed"===t||"max reversed"===t;r=n[a?1:0],i=n[a?0:1]}var o=e("autorangeoptions.minallowed",null===i?r:void 0),s=e("autorangeoptions.maxallowed",null===r?i:void 0);void 0===o&&e("autorangeoptions.clipmin"),void 0===s&&e("autorangeoptions.clipmax"),e("autorangeoptions.include")}},89298:function(e,t,n){"use strict";var r=n(39898),i=n(92770),a=n(74875),o=n(73972),s=n(71828),l=s.strTranslate,c=n(63893),u=n(92998),f=n(7901),d=n(91424),h=n(13838),p=n(66287),v=n(50606),m=v.ONEMAXYEAR,g=v.ONEAVGYEAR,y=v.ONEMINYEAR,b=v.ONEMAXQUARTER,x=v.ONEAVGQUARTER,w=v.ONEMINQUARTER,_=v.ONEMAXMONTH,k=v.ONEAVGMONTH,S=v.ONEMINMONTH,T=v.ONEWEEK,A=v.ONEDAY,E=A/2,C=v.ONEHOUR,M=v.ONEMIN,O=v.ONESEC,P=v.MINUS_SIGN,L=v.BADNUM,I={K:"zeroline"},R={K:"gridline",L:"path"},D={K:"minor-gridline",L:"path"},F={K:"tick",L:"path"},N={K:"tick",L:"text"},z={width:["x","r","l","xl","xr"],height:["y","t","b","yt","yb"],right:["r","xr"],left:["l","xl"],top:["t","yt"],bottom:["b","yb"]},j=n(18783),B=j.MID_SHIFT,U=j.CAP_SHIFT,H=j.LINE_SPACING,$=j.OPPOSITE_SIDE,V=e.exports={};V.setConvert=n(21994);var W=n(4322),q=n(41675),G=q.idSort,Z=q.isLinked;V.id2name=q.id2name,V.name2id=q.name2id,V.cleanId=q.cleanId,V.list=q.list,V.listIds=q.listIds,V.getFromId=q.getFromId,V.getFromTrace=q.getFromTrace;var Y=n(71739);V.getAutoRange=Y.getAutoRange,V.findExtremes=Y.findExtremes;var K=1e-4;function X(e){var t=(e[1]-e[0])*K;return[e[0]-t,e[1]+t]}V.coerceRef=function(e,t,n,r,i,a){var o=r.charAt(r.length-1),l=n._fullLayout._subplots[o+"axis"],c=r+"ref",u={};return i||(i=l[0]||("string"===typeof a?a:a[0])),a||(a=i),l=l.concat(l.map((function(e){return e+" domain"}))),u[c]={valType:"enumerated",values:l.concat(a?"string"===typeof a?[a]:a:[]),dflt:i},s.coerce(e,t,u,c)},V.getRefType=function(e){return void 0===e?e:"paper"===e?"paper":"pixel"===e?"pixel":/( domain)$/.test(e)?"domain":"range"},V.coercePosition=function(e,t,n,r,i,a){var o,l;if("range"!==V.getRefType(r))o=s.ensureNumber,l=n(i,a);else{var c=V.getFromId(t,r);l=n(i,a=c.fraction2r(a)),o=c.cleanPos}e[i]=o(l)},V.cleanPosition=function(e,t,n){return("paper"===n||"pixel"===n?s.ensureNumber:V.getFromId(t,n).cleanPos)(e)},V.redrawComponents=function(e,t){t=t||V.listIds(e);var n=e._fullLayout;function r(r,i,a,s){for(var l=o.getComponentMethod(r,i),c={},u=0;un&&f2e-6||((n-e._forceTick0)/e._minDtick%1+1.000001)%1>2e-6)&&(e._minDtick=0)):e._minDtick=0},V.saveRangeInitial=function(e,t){for(var n=V.list(e,"",!0),r=!1,i=0;i.3*d||u(r)||u(a))){var h=n.dtick/2;e+=e+ho){var l=Number(n.substr(1));a.exactYears>o&&l%12===0?e=V.tickIncrement(e,"M6","reverse")+1.5*A:a.exactMonths>o?e=V.tickIncrement(e,"M1","reverse")+15.5*A:e-=E;var c=V.tickIncrement(e,n);if(c<=r)return c}return e}(y,e,g,c,a)),m=y;m<=u;)m=V.tickIncrement(m,g,!1,a);return{start:t.c2r(y,0,a),end:t.c2r(m,0,a),size:g,_dataSpan:u-c}},V.prepMinorTicks=function(e,t,n){if(!t.minor.dtick){delete e.dtick;var r,a=t.dtick&&i(t._tmin);if(a){var o=V.tickIncrement(t._tmin,t.dtick,!0);r=[t._tmin,.99*o+.01*t._tmin]}else{var l=s.simpleMap(t.range,t.r2l);r=[l[0],.8*l[0]+.2*l[1]]}if(e.range=s.simpleMap(r,t.l2r),e._isMinor=!0,V.prepTicks(e,n),a){var c=i(t.dtick),u=i(e.dtick),f=c?t.dtick:+t.dtick.substring(1),d=u?e.dtick:+e.dtick.substring(1);c&&u?te(f,d)?f===2*T&&d===2*A&&(e.dtick=T):f===2*T&&d===3*A?e.dtick=T:f!==T||(t._input.minor||{}).nticks?ne(f/d,2.5)?e.dtick=f/2:e.dtick=f:e.dtick=A:"M"===String(t.dtick).charAt(0)?u?e.dtick="M1":te(f,d)?f>=12&&2===d&&(e.dtick="M3"):e.dtick=t.dtick:"L"===String(e.dtick).charAt(0)?"L"===String(t.dtick).charAt(0)?te(f,d)||(e.dtick=ne(f/d,2.5)?t.dtick/2:t.dtick):e.dtick="D1":"D2"===e.dtick&&+t.dtick>1&&(e.dtick=1)}e.range=t.range}void 0===t.minor._tick0Init&&(e.tick0=t.tick0)},V.prepTicks=function(e,t){var n=s.simpleMap(e.range,e.r2l,void 0,void 0,t);if("auto"===e.tickmode||!e.dtick){var r,a=e.nticks;a||("category"===e.type||"multicategory"===e.type?(r=e.tickfont?s.bigFont(e.tickfont.size||12):15,a=e._length/r):(r="y"===e._id.charAt(0)?40:80,a=s.constrain(e._length/r,4,9)+1),"radialaxis"===e._name&&(a*=2)),e.minor&&"array"!==e.minor.tickmode||"array"===e.tickmode&&(a*=100),e._roughDTick=Math.abs(n[1]-n[0])/a,V.autoTicks(e,e._roughDTick),e._minDtick>0&&e.dtick<2*e._minDtick&&(e.dtick=e._minDtick,e.tick0=e.l2r(e._forceTick0))}"period"===e.ticklabelmode&&function(e){var t;function n(){return!(i(e.dtick)||"M"!==e.dtick.charAt(0))}var r=n(),a=V.getTickFormat(e);if(a){var o=e._dtickInit!==e.dtick;/%[fLQsSMX]/.test(a)||(/%[HI]/.test(a)?(t=C,o&&!r&&e.dtick=(I?0:1);R--){var D=!R;R?(e._dtickInit=e.dtick,e._tick0Init=e.tick0):(e.minor._dtickInit=e.minor.dtick,e.minor._tick0Init=e.minor.tick0);var F=R?e:s.extendFlat({},e,e.minor);if(D?V.prepMinorTicks(F,e,t):V.prepTicks(F,t),"array"!==F.tickmode)if("sync"!==F.tickmode){var N=X(u),z=N[0],j=N[1],B=i(F.dtick),U="log"===a&&!(B||"L"===F.dtick.charAt(0)),H=V.tickFirst(F,t);if(R){if(e._tmin=H,H=j:G<=j;G=V.tickIncrement(G,Z,f,o)){if(R&&$++,F.rangebreaks&&!f){if(G=h)break}if(O.length>p||G===q)break;q=G;var Y={value:G};R?(U&&G!==(0|G)&&(Y.simpleLabel=!0),l>1&&$%l&&(Y.skipLabel=!0),O.push(Y)):(Y.minor=!0,P.push(Y))}}else O=[],v=ae(e);else R?(O=[],v=oe(e)):(P=[],M=oe(e))}if(I&&!("inside"===e.minor.ticks&&"outside"===e.ticks||"outside"===e.minor.ticks&&"inside"===e.ticks)){for(var K=O.map((function(e){return e.value})),J=[],Q=0;Q0?(a=r-1,o=r):(a=r,o=r);var s,l=e[a].value,c=e[o].value,u=Math.abs(c-l),f=n||u,d=0;f>=y?d=u>=y&&u<=m?u:g:n===x&&f>=w?d=u>=w&&u<=b?u:x:f>=S?d=u>=S&&u<=_?u:k:n===T&&f>=T?d=T:f>=A?d=A:n===E&&f>=E?d=E:n===C&&f>=C&&(d=C),d>=u&&(d=u,s=!0);var h=i+d;if(t.rangebreaks&&d>0){for(var p=0,v=0;v<84;v++){var M=(v+.5)/84;t.maskBreaks(i*(1-M)+M*h)!==L&&p++}(d*=p/84)||(e[r].drop=!0),s&&u>T&&(d=u)}(d>0||0===r)&&(e[r].periodX=i+d/2)}}(O,e,e._definedDelta),e.rangebreaks){var ie="y"===e._id.charAt(0),se=1;"auto"===e.tickmode&&(se=e.tickfont?e.tickfont.size:12);var le=NaN;for(n=O.length-1;n>-1;n--)if(O[n].drop)O.splice(n,1);else{O[n].value=De(O[n].value,e);var ce=e.c2p(O[n].value);(ie?le>ce-se:leh||feh&&(ue.periodX=h),fe10||"01-01"!==r.substr(5)?e._tickround="d":e._tickround=+t.substr(1)%12===0?"y":"m";else if(t>=A&&a<=10||t>=15*A)e._tickround="d";else if(t>=M&&a<=16||t>=C)e._tickround="M";else if(t>=O&&a<=19||t>=M)e._tickround="S";else{var o=e.l2r(n+t).replace(/^-/,"").length;e._tickround=Math.max(a,o)-20,e._tickround<0&&(e._tickround=4)}}else if(i(t)||"L"===t.charAt(0)){var s=e.range.map(e.r2d||Number);i(t)||(t=Number(t.substr(1))),e._tickround=2-Math.floor(Math.log(t)/Math.LN10+.01);var l=Math.max(Math.abs(s[0]),Math.abs(s[1])),c=Math.floor(Math.log(l)/Math.LN10+.01),u=void 0===e.minexponent?3:e.minexponent;Math.abs(c)>u&&(ye(e.exponentformat)&&!be(c)?e._tickexponent=3*Math.round((c-1)/3):e._tickexponent=c)}else e._tickround=null}function me(e,t,n){var r=e.tickfont||{};return{x:t,dx:0,dy:0,text:n||"",fontSize:r.size,font:r.family,fontColor:r.color}}V.autoTicks=function(e,t,n){var r;function a(e){return Math.pow(e,Math.floor(Math.log(t)/Math.LN10))}if("date"===e.type){e.tick0=s.dateTick0(e.calendar,0);var o=2*t;if(o>g)t/=g,r=a(10),e.dtick="M"+12*pe(t,r,se);else if(o>k)t/=k,e.dtick="M"+pe(t,1,le);else if(o>A){if(e.dtick=pe(t,A,e._hasDayOfWeekBreaks?[1,2,7,14]:ue),!n){var l=V.getTickFormat(e),c="period"===e.ticklabelmode;c&&(e._rawTick0=e.tick0),/%[uVW]/.test(l)?e.tick0=s.dateTick0(e.calendar,2):e.tick0=s.dateTick0(e.calendar,1),c&&(e._dowTick0=e.tick0)}}else o>C?e.dtick=pe(t,C,le):o>M?e.dtick=pe(t,M,ce):o>O?e.dtick=pe(t,O,ce):(r=a(10),e.dtick=pe(t,r,se))}else if("log"===e.type){e.tick0=0;var u=s.simpleMap(e.range,e.r2l);if(e._isMinor&&(t*=1.5),t>.7)e.dtick=Math.ceil(t);else if(Math.abs(u[1]-u[0])<1){var f=1.5*Math.abs((u[1]-u[0])/t);t=Math.abs(Math.pow(10,u[1])-Math.pow(10,u[0]))/f,r=a(10),e.dtick="L"+pe(t,r,se)}else e.dtick=t>.3?"D2":"D1"}else"category"===e.type||"multicategory"===e.type?(e.tick0=0,e.dtick=Math.ceil(Math.max(t,1))):Re(e)?(e.tick0=0,r=1,e.dtick=pe(t,r,he)):(e.tick0=0,r=a(10),e.dtick=pe(t,r,se));if(0===e.dtick&&(e.dtick=1),!i(e.dtick)&&"string"!==typeof e.dtick){var d=e.dtick;throw e.dtick=1,"ax.dtick error: "+String(d)}},V.tickIncrement=function(e,t,n,a){var o=n?-1:1;if(i(t))return s.increment(e,o*t);var l=t.charAt(0),c=o*Number(t.substr(1));if("M"===l)return s.incrementMonth(e,c,a);if("L"===l)return Math.log(Math.pow(10,e)+c)/Math.LN10;if("D"===l){var u="D2"===t?de:fe,f=e+.01*o,d=s.roundUp(s.mod(f,1),u,n);return Math.floor(f)+Math.log(r.round(Math.pow(10,d),1))/Math.LN10}throw"unrecognized dtick "+String(t)},V.tickFirst=function(e,t){var n=e.r2l||Number,a=s.simpleMap(e.range,n,void 0,void 0,t),o=a[1] ")}else e._prevDateHead=l,c+="
"+l;t.text=c}(e,o,n,c):"log"===u?function(e,t,n,r,a){var o=e.dtick,l=t.x,c=e.tickformat,u="string"===typeof o&&o.charAt(0);if("never"===a&&(a=""),r&&"L"!==u&&(o="L3",u="L"),c||"L"===u)t.text=xe(Math.pow(10,l),e,a,r);else if(i(o)||"D"===u&&s.mod(l+.01,1)<.1){var f=Math.round(l),d=Math.abs(f),h=e.exponentformat;"power"===h||ye(h)&&be(f)?(t.text=0===f?1:1===f?"10":"10"+(f>1?"":P)+d+"",t.fontSize*=1.25):("e"===h||"E"===h)&&d>2?t.text="1"+h+(f>0?"+":P)+d:(t.text=xe(Math.pow(10,l),e,"","fakehover"),"D1"===o&&"y"===e._id.charAt(0)&&(t.dy-=t.fontSize/6))}else{if("D"!==u)throw"unrecognized dtick "+String(o);t.text=String(Math.round(Math.pow(10,s.mod(l,1)))),t.fontSize*=.75}if("D1"===e.dtick){var p=String(t.text).charAt(0);"0"!==p&&"1"!==p||("y"===e._id.charAt(0)?t.dx-=t.fontSize/4:(t.dy+=t.fontSize/2,t.dx+=(e.range[1]>e.range[0]?1:-1)*t.fontSize*(l<0?.5:.25)))}}(e,o,0,c,v):"category"===u?function(e,t){var n=e._categories[Math.round(t.x)];void 0===n&&(n=""),t.text=String(n)}(e,o):"multicategory"===u?function(e,t,n){var r=Math.round(t.x),i=e._categories[r]||[],a=void 0===i[1]?"":String(i[1]),o=void 0===i[0]?"":String(i[0]);n?t.text=o+" - "+a:(t.text=a,t.text2=o)}(e,o,n):Re(e)?function(e,t,n,r,i){if("radians"!==e.thetaunit||n)t.text=xe(t.x,e,i,r);else{var a=t.x/180;if(0===a)t.text="0";else{var o=function(e){function t(e,t){return Math.abs(e-t)<=1e-6}function n(e,r){return t(r,0)?e:n(r,e%r)}function r(e){for(var n=1;!t(Math.round(e*n)/n,e);)n*=10;return n}var i=r(e),a=e*i,o=Math.abs(n(a,i));return[Math.round(a/o),Math.round(i/o)]}(a);if(o[1]>=100)t.text=xe(s.deg2rad(t.x),e,i,r);else{var l=t.x<0;1===o[1]?1===o[0]?t.text="\u03c0":t.text=o[0]+"\u03c0":t.text=["",o[0],"","\u2044","",o[1],"","\u03c0"].join(""),l&&(t.text=P+t.text)}}}}(e,o,n,c,v):function(e,t,n,r,i){"never"===i?i="":"all"===e.showexponent&&Math.abs(t.x/e.dtick)<1e-6&&(i="hide"),t.text=xe(t.x,e,i,r)}(e,o,0,c,v),r||(e.tickprefix&&!p(e.showtickprefix)&&(o.text=e.tickprefix+o.text),e.ticksuffix&&!p(e.showticksuffix)&&(o.text+=e.ticksuffix)),e.labelalias&&e.labelalias.hasOwnProperty(o.text)){var m=e.labelalias[o.text];"string"===typeof m&&(o.text=m)}if("boundaries"===e.tickson||e.showdividers){var g=function(t){var n=e.l2p(t);return n>=0&&n<=e._length?t:null};o.xbnd=[g(o.x-.5),g(o.x+e.dtick-.5)]}return o},V.hoverLabelText=function(e,t,n){n&&(e=s.extendFlat({},e,{hoverformat:n}));var r=Array.isArray(t)?t[0]:t,i=Array.isArray(t)?t[1]:void 0;if(void 0!==i&&i!==r)return V.hoverLabelText(e,r,n)+" - "+V.hoverLabelText(e,i,n);var a="log"===e.type&&r<=0,o=V.tickText(e,e.c2l(a?-r:r),"hover").text;return a?0===r?"0":P+o:o};var ge=["f","p","n","\u03bc","m","","k","M","G","T"];function ye(e){return"SI"===e||"B"===e}function be(e){return e>14||e<-15}function xe(e,t,n,r){var a=e<0,o=t._tickround,l=n||t.exponentformat||"B",c=t._tickexponent,u=V.getTickFormat(t),f=t.separatethousands;if(r){var d={exponentformat:l,minexponent:t.minexponent,dtick:"none"===t.showexponent?t.dtick:i(e)&&Math.abs(e)||1,range:"none"===t.showexponent?t.range.map(t.r2d):[0,e||1]};ve(d),o=(Number(d._tickround)||0)+4,c=d._tickexponent,t.hoverformat&&(u=t.hoverformat)}if(u)return t._numFormat(u)(e).replace(/-/g,P);var h,p=Math.pow(10,-o)/2;if("none"===l&&(c=0),(e=Math.abs(e))"+h+"":"B"===l&&9===c?e+="B":ye(l)&&(e+=ge[c/3+5])),a?P+e:e}function we(e,t){if(e){var n=Object.keys(z).reduce((function(e,n){return-1!==t.indexOf(n)&&z[n].forEach((function(t){e[t]=1})),e}),{});Object.keys(e).forEach((function(t){n[t]||(1===t.length?e[t]=0:delete e[t])}))}}function _e(e,t){for(var n=[],r={},i=0;i1&&n=i.min&&e=r(e))}function s(e,t){var n=null===t[0],r=null===t[1],i=a(e,t[0])>=0,o=a(e,t[1])<=0;return(n||i)&&(r||o)}if(e.tickformatstops&&e.tickformatstops.length>0)switch(e.type){case"date":case"linear":for(t=0;t=0&&i.unshift(i.splice(r,1).shift())}}));var o={false:{left:0,right:0}};return s.syncOrAsync(i.map((function(t){return function(){if(t){var r=V.getFromId(e,t);n||(n={}),n.axShifts=o,n.overlayingShiftedAx=a;var i=V.drawOne(e,r,n);return r._shiftPusher&&ze(r,r._fullDepth||0,o,!0),r._r=r.range.slice(),r._rl=s.simpleMap(r._r,r.r2l),i}}})))},V.drawOne=function(e,t,n){var r,i,l,c=(n=n||{}).axShifts||{},h=n.overlayingShiftedAx||[];t.setScale();var p=e._fullLayout,v=t._id,m=v.charAt(0),g=V.counterLetter(v),y=p._plots[t._mainSubplot];if(y){if(t._shiftPusher=t.autoshift||-1!==h.indexOf(t._id)||-1!==h.indexOf(t.overlaying),t._shiftPusher&"free"===t.anchor){var b=t.linewidth/2||0;"inside"===t.ticks&&(b+=t.ticklen),ze(t,b,c,!0),ze(t,t.shift||0,c,!1)}!0===n.skipTitle&&void 0!==t._shift||(t._shift=function(e,t){return e.autoshift?t[e.overlaying][e.side]:e.shift||0}(t,c));var x=y[m+"axislayer"],w=t._mainLinePosition,_=w+=t._shift,k=t._mainMirrorPosition,S=t._vals=V.calcTicks(t),T=[t.mirror,_,k].join("_");for(r=0;r0?n.bottom-u:0,f))));var d=0,h=0;if(t._shiftPusher&&(d=Math.max(f,n.height>0?"l"===l?u-n.left:n.right-u:0),t.title.text!==p._dfltTitle[m]&&(h=(t._titleStandoff||0)+(t._titleScoot||0),"l"===l&&(h+=Te(t))),t._fullDepth=Math.max(d,h)),t.automargin){r={x:0,y:0,r:0,l:0,t:0,b:0};var v=[0,1],y="number"===typeof t._shift?t._shift:0;if("x"===m){if("b"===l?r[l]=t._depth:(r[l]=t._depth=Math.max(n.width>0?u-n.top:0,f),v.reverse()),n.width>0){var b=n.right-(t._offset+t._length);b>0&&(r.xr=1,r.r=b);var x=t._offset-n.left;x>0&&(r.xl=0,r.l=x)}}else if("l"===l?(t._depth=Math.max(n.height>0?u-n.left:0,f),r[l]=t._depth-y):(t._depth=Math.max(n.height>0?n.right-u:0,f),r[l]=t._depth+y,v.reverse()),n.height>0){var w=n.bottom-(t._offset+t._length);w>0&&(r.yb=0,r.b=w);var _=t._offset-n.top;_>0&&(r.yt=1,r.t=_)}r[g]="free"===t.anchor?t.position:t._anchorAxis.domain[v[0]],t.title.text!==p._dfltTitle[m]&&(r[l]+=Te(t)+(t.title.standoff||0)),t.mirror&&"free"!==t.anchor&&((i={x:0,y:0,r:0,l:0,t:0,b:0})[c]=t.linewidth,t.mirror&&!0!==t.mirror&&(i[c]+=f),!0===t.mirror||"ticks"===t.mirror?i[g]=t._anchorAxis.domain[v[1]]:"all"!==t.mirror&&"allticks"!==t.mirror||(i[g]=[t._counterDomainMin,t._counterDomainMax][v[1]]))}le&&(s=o.getComponentMethod("rangeslider","autoMarginOpts")(e,t)),"string"===typeof t.automargin&&(we(r,t.automargin),we(i,t.automargin)),a.autoMargin(e,Ce(t),r),a.autoMargin(e,Me(t),i),a.autoMargin(e,Oe(t),s)})),s.syncOrAsync(oe)}}function ce(e){var n=v+(e||"tick");return A[n]||(A[n]=function(e,t){var n,r,i,a;return e._selections[t].size()?(n=1/0,r=-1/0,i=1/0,a=-1/0,e._selections[t].each((function(){var e=Ee(this),t=d.bBox(e.node().parentNode);n=Math.min(n,t.top),r=Math.max(r,t.bottom),i=Math.min(i,t.left),a=Math.max(a,t.right)}))):(n=0,r=0,i=0,a=0),{top:n,bottom:r,left:i,right:a,height:r-n,width:a-i}}(t,n)),A[n]}},V.getTickSigns=function(e,t){var n=e._id.charAt(0),r={x:"top",y:"right"}[n],i=e.side===r?1:-1,a=[-1,1,i,-i];return"inside"!==(t?(e.minor||{}).ticks:e.ticks)===("x"===n)&&(a=a.map((function(e){return-e}))),e.side&&a.push({l:-1,t:-1,r:1,b:1}[e.side.charAt(0)]),a},V.makeTransTickFn=function(e){return"x"===e._id.charAt(0)?function(t){return l(e._offset+e.l2p(t.x),0)}:function(t){return l(0,e._offset+e.l2p(t.x))}},V.makeTransTickLabelFn=function(e){var t=function(e){var t=e.ticklabelposition||"",n=function(e){return-1!==t.indexOf(e)},r=n("top"),i=n("left"),a=n("right"),o=n("bottom"),s=n("inside"),l=o||i||r||a;if(!l&&!s)return[0,0];var c=e.side,u=l?(e.tickwidth||0)/2:0,f=3,d=e.tickfont?e.tickfont.size:12;return(o||r)&&(u+=d*U,f+=(e.linewidth||0)/2),(i||a)&&(u+=(e.linewidth||0)/2,f+=3),s&&"top"===c&&(f-=d*(1-U)),(i||r)&&(u=-u),"bottom"!==c&&"right"!==c||(f=-f),[l?u:0,s?f:0]}(e),n=t[0],r=t[1];return"x"===e._id.charAt(0)?function(t){return l(n+e._offset+e.l2p(ke(t)),r)}:function(t){return l(r,n+e._offset+e.l2p(ke(t)))}},V.makeTickPath=function(e,t,n,r){r||(r={});var i=r.minor;if(i&&!e.minor)return"";var a=void 0!==r.len?r.len:i?e.minor.ticklen:e.ticklen,o=e._id.charAt(0),s=(e.linewidth||1)/2;return"x"===o?"M0,"+(t+s*n)+"v"+a*n:"M"+(t+s*n)+",0h"+a*n},V.makeLabelFns=function(e,t,n){var r=e.ticklabelposition||"",a=function(e){return-1!==r.indexOf(e)},o=a("top"),l=a("left"),c=a("right"),u=a("bottom")||l||o||c,f=a("inside"),d="inside"===r&&"inside"===e.ticks||!f&&"outside"===e.ticks&&"boundaries"!==e.tickson,h=0,p=0,v=d?e.ticklen:0;if(f?v*=-1:u&&(v=0),d&&(h+=v,n)){var m=s.deg2rad(n);h=v*Math.cos(m)+1,p=v*Math.sin(m)}e.showticklabels&&(d||e.showline)&&(h+=.2*e.tickfont.size);var g,y,b,x,w,_={labelStandoff:h+=(e.linewidth||1)/2*(f?-1:1),labelShift:p},k=0,S=e.side,T=e._id.charAt(0),A=e.tickangle;if("x"===T)x=(w=!f&&"bottom"===S||f&&"top"===S)?1:-1,f&&(x*=-1),g=p*x,y=t+h*x,b=w?1:-.2,90===Math.abs(A)&&(f?b+=B:b=-90===A&&"bottom"===S?U:90===A&&"top"===S?B:.5,k=B/2*(A/90)),_.xFn=function(e){return e.dx+g+k*e.fontSize},_.yFn=function(e){return e.dy+y+e.fontSize*b},_.anchorFn=function(e,t){if(u){if(l)return"end";if(c)return"start"}return i(t)&&0!==t&&180!==t?t*x<0!==f?"end":"start":"middle"},_.heightFn=function(t,n,r){return n<-60||n>60?-.5*r:"top"===e.side!==f?-r:0};else if("y"===T){if(x=(w=!f&&"left"===S||f&&"right"===S)?1:-1,f&&(x*=-1),g=h,y=p*x,b=0,f||90!==Math.abs(A)||(b=-90===A&&"left"===S||90===A&&"right"===S?U:.5),f){var E=i(A)?+A:0;if(0!==E){var C=s.deg2rad(E);k=Math.abs(Math.sin(C))*U*x,b=0}}_.xFn=function(e){return e.dx+t-(g+e.fontSize*b)*x+k*e.fontSize},_.yFn=function(e){return e.dy+y+e.fontSize*B},_.anchorFn=function(e,t){return i(t)&&90===Math.abs(t)?"middle":w?"end":"start"},_.heightFn=function(t,n,r){return"right"===e.side&&(n*=-1),n<-30?-r:n<30?-.5*r:0}}return _},V.drawTicks=function(e,t,n){n=n||{};var i=t._id+"tick",a=[].concat(t.minor&&t.minor.ticks?n.vals.filter((function(e){return e.minor&&!e.noTick})):[]).concat(t.ticks?n.vals.filter((function(e){return!e.minor&&!e.noTick})):[]),o=n.layer.selectAll("path."+i).data(a,Se);o.exit().remove(),o.enter().append("path").classed(i,1).classed("ticks",1).classed("crisp",!1!==n.crisp).each((function(e){return f.stroke(r.select(this),e.minor?t.minor.tickcolor:t.tickcolor)})).style("stroke-width",(function(n){return d.crispRound(e,n.minor?t.minor.tickwidth:t.tickwidth,1)+"px"})).attr("d",n.path).style("display",null),Ne(t,[F]),o.attr("transform",n.transFn)},V.drawGrid=function(e,t,n){if(n=n||{},"sync"!==t.tickmode){var i=t._id+"grid",a=t.minor&&t.minor.showgrid,o=a?n.vals.filter((function(e){return e.minor})):[],s=t.showgrid?n.vals.filter((function(e){return!e.minor})):[],l=n.counterAxis;if(l&&V.shouldShowZeroLine(e,t,l))for(var c="array"===t.tickmode,u=0;u=0;g--){var y=g?v:m;if(y){var b=y.selectAll("path."+i).data(g?s:o,Se);b.exit().remove(),b.enter().append("path").classed(i,1).classed("crisp",!1!==n.crisp),b.attr("transform",n.transFn).attr("d",n.path).each((function(e){return f.stroke(r.select(this),e.minor?t.minor.gridcolor:t.gridcolor||"#ddd")})).style("stroke-dasharray",(function(e){return d.dashStyle(e.minor?t.minor.griddash:t.griddash,e.minor?t.minor.gridwidth:t.gridwidth)})).style("stroke-width",(function(e){return(e.minor?p:t._gw)+"px"})).style("display",null),"function"===typeof n.path&&b.attr("d",n.path)}}Ne(t,[R,D])}},V.drawZeroLine=function(e,t,n){n=n||n;var r=t._id+"zl",i=V.shouldShowZeroLine(e,t,n.counterAxis),a=n.layer.selectAll("path."+r).data(i?[{x:0,id:t._id}]:[]);a.exit().remove(),a.enter().append("path").classed(r,1).classed("zl",1).classed("crisp",!1!==n.crisp).each((function(){n.layer.selectAll("path").sort((function(e,t){return G(e.id,t.id)}))})),a.attr("transform",n.transFn).attr("d",n.path).call(f.stroke,t.zerolinecolor||f.defaultLine).style("stroke-width",d.crispRound(e,t.zerolinewidth,t._gw||1)+"px").style("display",null),Ne(t,[I])},V.drawLabels=function(e,t,n){n=n||{};var a=e._fullLayout,o=t._id,u=o.charAt(0),f=n.cls||o+"tick",h=n.vals.filter((function(e){return e.text})),p=n.labelFns,v=n.secondary?0:t.tickangle,m=(t._prevTickAngles||{})[f],g=n.layer.selectAll("g."+f).data(t.showticklabels?h:[],Se),y=[];function b(e,a){e.each((function(e){var o=r.select(this),s=o.select(".text-math-group"),u=p.anchorFn(e,a),f=n.transFn.call(o.node(),e)+(i(a)&&0!==+a?" rotate("+a+","+p.xFn(e)+","+(p.yFn(e)-e.fontSize/2)+")":""),h=c.lineCount(o),v=H*e.fontSize,m=p.heightFn(e,i(a)?+a:0,(h-1)*v);if(m&&(f+=l(0,m)),s.empty()){var g=o.select("text");g.attr({transform:f,"text-anchor":u}),g.style("opacity",1),t._adjustTickLabelsOverflow&&t._adjustTickLabelsOverflow()}else{var y=d.bBox(s.node()).width*{end:-.5,start:.5}[u];s.attr("transform",f+l(y,0))}}))}g.enter().append("g").classed(f,1).append("text").attr("text-anchor","middle").each((function(t){var n=r.select(this),i=e._promises.length;n.call(c.positionText,p.xFn(t),p.yFn(t)).call(d.font,t.font,t.fontSize,t.fontColor).text(t.text).call(c.convertToTspans,e),e._promises[i]?y.push(e._promises.pop().then((function(){b(n,v)}))):b(n,v)})),Ne(t,[N]),g.exit().remove(),n.repositionOnUpdate&&g.each((function(e){r.select(this).select("text").call(c.positionText,p.xFn(e),p.yFn(e))})),t._adjustTickLabelsOverflow=function(){var n=t.ticklabeloverflow;if(n&&"allow"!==n){var i=-1!==n.indexOf("hide"),o="x"===t._id.charAt(0),l=0,c=o?e._fullLayout.width:e._fullLayout.height;if(-1!==n.indexOf("domain")){var u=s.simpleMap(t.range,t.r2l);l=t.l2p(u[0])+t._offset,c=t.l2p(u[1])+t._offset}var f=Math.min(l,c),h=Math.max(l,c),p=t.side,v=1/0,m=-1/0;for(var y in g.each((function(e){var n=r.select(this);if(n.select(".text-math-group").empty()){var a=d.bBox(n.node()),s=0;o?(a.right>h||a.lefth||a.top+(t.tickangle?0:e.fontSize/4)t["_visibleLabelMin_"+n._id]?l.style("display","none"):"tick"!==e.K||i||l.style("display",null)}))}))}))}))},b(g,m+1?m:v);var x=null;t._selections&&(t._selections[f]=g);var w=[function(){return y.length&&Promise.all(y)}];t.automargin&&a._redrawFromAutoMarginCount&&90===m?(x=90,w.push((function(){b(g,m)}))):w.push((function(){if(b(g,v),h.length&&"x"===u&&!i(v)&&("log"!==t.type||"D"!==String(t.dtick).charAt(0))){x=0;var e,r=0,a=[];if(g.each((function(e){r=Math.max(r,e.fontSize);var n=t.l2p(e.x),i=Ee(this),o=d.bBox(i.node());a.push({top:0,bottom:10,height:10,left:n-o.width/2,right:n+o.width/2+2,width:o.width+2})})),"boundaries"!==t.tickson&&!t.showdividers||n.secondary){var o=h.length,l=Math.abs((h[o-1].x-h[0].x)*t._m)/(o-1),c=t.ticklabelposition||"",f=function(e){return-1!==c.indexOf(e)},p=f("top"),m=f("left"),y=f("right"),w=f("bottom")||m||p||y?(t.tickwidth||0)+6:0,_=l<2.5*r||"multicategory"===t.type||"realaxis"===t._name;for(e=0;e1)for(r=1;r2*o}(i,t))return"date";var m="strict"!==n.autotypenumbers;return function(e,t){for(var n=e.length,r=f(n),i=0,o=0,s={},u=0;u2*i}(i,m)?"category":function(e,t){for(var n=e.length,r=0;r=2){var s,c,u="";if(2===o.length)for(s=0;s<2;s++)if(c=w(o[s])){u=g;break}var f=i("pattern",u);if(f===g)for(s=0;s<2;s++)(c=w(o[s]))&&(t.bounds[s]=o[s]=c-1);if(f)for(s=0;s<2;s++)switch(c=o[s],f){case g:if(!r(c))return void(t.enabled=!1);if((c=+c)!==Math.floor(c)||c<0||c>=7)return void(t.enabled=!1);t.bounds[s]=o[s]=c;break;case y:if(!r(c))return void(t.enabled=!1);if((c=+c)<0||c>24)return void(t.enabled=!1);t.bounds[s]=o[s]=c}if(!1===n.autorange){var d=n.range;if(d[0]d[1])return void(t.enabled=!1)}else if(o[0]>d[0]&&o[1]r?1:-1:+(e.substr(1)||1)-+(t.substr(1)||1)},t.ref2id=function(e){return!!/^[xyz]/.test(e)&&e.split(" ")[0]},t.isLinked=function(e,t){return a(t,e._axisMatchGroups)||a(t,e._axisConstraintGroups)}},15258:function(e){"use strict";e.exports=function(e,t,n,r){if("category"===t.type){var i,a=e.categoryarray,o=Array.isArray(a)&&a.length>0;o&&(i="array");var s,l=n("categoryorder",i);"array"===l&&(s=n("categoryarray")),o||"array"!==l||(l=t.categoryorder="trace"),"trace"===l?t._initialCategories=[]:"array"===l?t._initialCategories=s.slice():(s=function(e,t){var n,r,i,a=t.dataAttr||e._id.charAt(0),o={};if(t.axData)n=t.axData;else for(n=[],r=0;rr?i.substr(r):a.substr(n))+o:i+a+e*t:o}function m(e,t){for(var n=t._size,r=n.h/n.w,i={},a=Object.keys(e),o=0;oc*b)||k)for(n=0;nI&&NP&&(P=N);d/=(P-O)/(2*L),O=l.l2r(O),P=l.l2r(P),l.range=l._input.range=E=0?Math.min(e,.9):1/(1/Math.max(e,-.3)+3.222))}function j(e,t,n,r,i){return e.append("path").attr("class","zoombox").style({fill:t>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("transform",c(n,r)).attr("d",i+"Z")}function B(e,t,n){return e.append("path").attr("class","zoombox-corners").style({fill:f.background,stroke:f.defaultLine,"stroke-width":1,opacity:0}).attr("transform",c(t,n)).attr("d","M0,0Z")}function U(e,t,n,r,i,a){e.attr("d",r+"M"+n.l+","+n.t+"v"+n.h+"h"+n.w+"v-"+n.h+"h-"+n.w+"Z"),H(e,t,i,a)}function H(e,t,n,r){n||(e.transition().style("fill",r>.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),t.transition().style("opacity",1).duration(200))}function $(e){r.select(e).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}function V(e){L&&e.data&&e._context.showTips&&(i.notifier(i._(e,"Double-click to zoom back out"),"long"),L=!1)}function W(e){var t=Math.floor(Math.min(e.b-e.t,e.r-e.l,P)/2);return"M"+(e.l-3.5)+","+(e.t-.5+t)+"h3v"+-t+"h"+t+"v-3h-"+(t+3)+"ZM"+(e.r+3.5)+","+(e.t-.5+t)+"h-3v"+-t+"h"+-t+"v-3h"+(t+3)+"ZM"+(e.r+3.5)+","+(e.b+.5-t)+"h-3v"+t+"h"+-t+"v3h"+(t+3)+"ZM"+(e.l-3.5)+","+(e.b+.5-t)+"h3v"+t+"h"+t+"v3h-"+(t+3)+"Z"}function q(e,t,n,r,a){for(var o,s,l,c,u=!1,f={},d={},h=(a||{}).xaHash,p=(a||{}).yaHash,v=0;v=0)i._fullLayout._deactivateShape(i);else{var o=i._fullLayout.clickmode;if($(i),2!==e||ge||Ve(),me)o.indexOf("select")>-1&&E(n,i,K,X,t.id,Pe),o.indexOf("event")>-1&&h.click(i,n,t.id);else if(1===e&&ge){var s=v?I:L,c="s"===v||"w"===g?0:1,f=s._name+".range["+c+"]",d=function(e,t){var n,r=e.range[t],i=Math.abs(r-e.range[1-t]);return"date"===e.type?r:"log"===e.type?(n=Math.ceil(Math.max(0,-Math.log(i)/Math.LN10))+3,a("."+n+"g")(Math.pow(10,r))):(n=Math.floor(Math.log(Math.abs(r))/Math.LN10)-Math.floor(Math.log(i)/Math.LN10)+4,a("."+String(n)+"g")(r))}(s,c),p="left",m="middle";if(s.fixedrange)return;v?(m="n"===v?"top":"bottom","right"===s.side&&(p="right")):"e"===g&&(p="right"),i._context.showAxisRangeEntryBoxes&&r.select(xe).call(u.makeEditable,{gd:i,immediate:!0,background:i._fullLayout.paper_bgcolor,text:String(d),fill:s.tickfont?s.tickfont.color:"#444",horizontalAlign:p,verticalAlign:m}).on("edit",(function(e){var t=s.d2r(e);void 0!==t&&l.call("_guiRelayout",i,f,t)}))}}}function Re(t,n){if(e._transitioningWithDuration)return!1;var r=Math.max(0,Math.min(ee,he*t+we)),i=Math.max(0,Math.min(te,pe*n+_e)),a=Math.abs(r-we),o=Math.abs(i-_e);function s(){Ee="",ke.r=ke.l,ke.t=ke.b,Me.attr("d","M0,0Z")}if(ke.l=Math.min(we,r),ke.r=Math.max(we,r),ke.t=Math.min(_e,i),ke.b=Math.max(_e,i),ne.isSubplotConstrained)a>P||o>P?(Ee="xy",a/ee>o/te?(o=a*te/ee,_e>i?ke.t=_e-o:ke.b=_e+o):(a=o*ee/te,we>r?ke.l=we-a:ke.r=we+a),Me.attr("d",W(ke))):s();else if(re.isSubplotConstrained)if(a>P||o>P){Ee="xy";var l=Math.min(ke.l/ee,(te-ke.b)/te),c=Math.max(ke.r/ee,(te-ke.t)/te);ke.l=l*ee,ke.r=c*ee,ke.b=(1-l)*te,ke.t=(1-c)*te,Me.attr("d",W(ke))}else s();else!ae||o0){var u;if(re.isSubplotConstrained||!ie&&1===ae.length){for(u=0;u1&&(void 0!==a.maxallowed&&se===(a.range[0]1&&(void 0!==o.maxallowed&&le===(o.range[0]x[1]-1/4096&&(t.domain=s),i.noneOrAll(e.domain,t.domain,s),"sync"===t.tickmode&&(t.tickmode="auto")}return n("layer"),t}},89426:function(e,t,n){"use strict";var r=n(59652);e.exports=function(e,t,n,i,a){a||(a={});var o=a.tickSuffixDflt,s=r(e);n("tickprefix")&&n("showtickprefix",s),n("ticksuffix",o)&&n("showticksuffix",s)}},42449:function(e,t,n){"use strict";var r=n(18783).FROM_BL;e.exports=function(e,t,n){void 0===n&&(n=r[e.constraintoward||"center"]);var i=[e.r2l(e.range[0]),e.r2l(e.range[1])],a=i[0]+(i[1]-i[0])*n;e.range=e._input.range=[e.l2r(a+(i[0]-a)*t),e.l2r(a+(i[1]-a)*t)],e.setScale()}},21994:function(e,t,n){"use strict";var r=n(39898),i=n(84096).g0,a=n(71828),o=a.numberFormat,s=n(92770),l=a.cleanNumber,c=a.ms2DateTime,u=a.dateTime2ms,f=a.ensureNumber,d=a.isArrayOrTypedArray,h=n(50606),p=h.FP_SAFE,v=h.BADNUM,m=h.LOG_CLIP,g=h.ONEWEEK,y=h.ONEDAY,b=h.ONEHOUR,x=h.ONEMIN,w=h.ONESEC,_=n(41675),k=n(85555),S=k.HOUR_PATTERN,T=k.WEEKDAY_PATTERN;function A(e){return Math.pow(10,e)}function E(e){return null!==e&&void 0!==e}e.exports=function(e,t){t=t||{};var n=e._id||"x",h=n.charAt(0);function C(t,n){if(t>0)return Math.log(t)/Math.LN10;if(t<=0&&n&&e.range&&2===e.range.length){var r=e.range[0],i=e.range[1];return.5*(r+i-2*m*Math.abs(r-i))}return v}function M(t,n,r,i){if((i||{}).msUTC&&s(t))return+t;var o=u(t,r||e.calendar);if(o===v){if(!s(t))return v;t=+t;var l=Math.floor(10*a.mod(t+.05,1)),c=Math.round(t-l/10);o=u(new Date(c))+l/10}return o}function O(t,n,r){return c(t,n,r||e.calendar)}function P(t){return e._categories[Math.round(t)]}function L(t){if(E(t)){if(void 0===e._categoriesMap&&(e._categoriesMap={}),void 0!==e._categoriesMap[t])return e._categoriesMap[t];e._categories.push("number"===typeof t?String(t):t);var n=e._categories.length-1;return e._categoriesMap[t]=n,n}return v}function I(t){if(e._categoriesMap)return e._categoriesMap[t]}function R(e){var t=I(e);return void 0!==t?t:s(e)?+e:void 0}function D(e){return s(e)?+e:I(e)}function F(e,t,n){return r.round(n+t*e,2)}function N(e,t,n){return(e-n)/t}var z=function(t){return s(t)?F(t,e._m,e._b):v},j=function(t){return N(t,e._m,e._b)};if(e.rangebreaks){var B="y"===h;z=function(t){if(!s(t))return v;var n=e._rangebreaks.length;if(!n)return F(t,e._m,e._b);var r=B;e.range[0]>e.range[1]&&(r=!r);for(var i=r?-1:1,a=i*t,o=0,l=0;lu)){o=a<(c+u)/2?l:l+1;break}o=l+1}var f=e._B[o]||0;return isFinite(f)?F(t,e._m2,f):0},j=function(t){var n=e._rangebreaks.length;if(!n)return N(t,e._m,e._b);for(var r=0,i=0;ie._rangebreaks[i].pmax&&(r=i+1);return N(t,e._m2,e._B[r])}}e.c2l="log"===e.type?C:f,e.l2c="log"===e.type?A:f,e.l2p=z,e.p2l=j,e.c2p="log"===e.type?function(e,t){return z(C(e,t))}:z,e.p2c="log"===e.type?function(e){return A(j(e))}:j,-1!==["linear","-"].indexOf(e.type)?(e.d2r=e.r2d=e.d2c=e.r2c=e.d2l=e.r2l=l,e.c2d=e.c2r=e.l2d=e.l2r=f,e.d2p=e.r2p=function(t){return e.l2p(l(t))},e.p2d=e.p2r=j,e.cleanPos=f):"log"===e.type?(e.d2r=e.d2l=function(e,t){return C(l(e),t)},e.r2d=e.r2c=function(e){return A(l(e))},e.d2c=e.r2l=l,e.c2d=e.l2r=f,e.c2r=C,e.l2d=A,e.d2p=function(t,n){return e.l2p(e.d2r(t,n))},e.p2d=function(e){return A(j(e))},e.r2p=function(t){return e.l2p(l(t))},e.p2r=j,e.cleanPos=f):"date"===e.type?(e.d2r=e.r2d=a.identity,e.d2c=e.r2c=e.d2l=e.r2l=M,e.c2d=e.c2r=e.l2d=e.l2r=O,e.d2p=e.r2p=function(t,n,r){return e.l2p(M(t,0,r))},e.p2d=e.p2r=function(e,t,n){return O(j(e),t,n)},e.cleanPos=function(t){return a.cleanDate(t,v,e.calendar)}):"category"===e.type?(e.d2c=e.d2l=L,e.r2d=e.c2d=e.l2d=P,e.d2r=e.d2l_noadd=R,e.r2c=function(t){var n=D(t);return void 0!==n?n:e.fraction2r(.5)},e.l2r=e.c2r=f,e.r2l=D,e.d2p=function(t){return e.l2p(e.r2c(t))},e.p2d=function(e){return P(j(e))},e.r2p=e.d2p,e.p2r=j,e.cleanPos=function(e){return"string"===typeof e&&""!==e?e:f(e)}):"multicategory"===e.type&&(e.r2d=e.c2d=e.l2d=P,e.d2r=e.d2l_noadd=R,e.r2c=function(t){var n=R(t);return void 0!==n?n:e.fraction2r(.5)},e.r2c_just_indices=I,e.l2r=e.c2r=f,e.r2l=R,e.d2p=function(t){return e.l2p(e.r2c(t))},e.p2d=function(e){return P(j(e))},e.r2p=e.d2p,e.p2r=j,e.cleanPos=function(e){return Array.isArray(e)||"string"===typeof e&&""!==e?e:f(e)},e.setupMultiCategory=function(r){var i,o,s=e._traceIndices,l=e._matchGroup;if(l&&0===e._categories.length)for(var c in l)if(c!==n){var u=t[_.id2name(c)];s=s.concat(u._traceIndices)}var f=[[0,{}],[0,{}]],p=[];for(i=0;il[1]&&(i[s?0:1]=r)}},e.cleanRange=function(t,n){e._cleanRange(t,n),e.limitRange(t)},e._cleanRange=function(t,n){n||(n={}),t||(t="range");var r,i,o=a.nestedProperty(e,t).get();if(i=(i="date"===e.type?a.dfltRange(e.calendar):"y"===h?k.DFLTRANGEY:"realaxis"===e._name?[0,1]:n.dfltRange||k.DFLTRANGEX).slice(),"tozero"!==e.rangemode&&"nonnegative"!==e.rangemode||(i[0]=0),o&&2===o.length){var l=null===o[0],c=null===o[1];for("date"!==e.type||e.autorange||(o[0]=a.cleanDate(o[0],v,e.calendar),o[1]=a.cleanDate(o[1],v,e.calendar)),r=0;r<2;r++)if("date"===e.type){if(!a.isDateTime(o[r],e.calendar)){e[t]=i;break}if(e.r2l(o[0])===e.r2l(o[1])){var u=a.constrain(e.r2l(o[0]),a.MIN_MS+1e3,a.MAX_MS-1e3);o[0]=e.l2r(u-1e3),o[1]=e.l2r(u+1e3);break}}else{if(!s(o[r])){if(l||c||!s(o[1-r])){e[t]=i;break}o[r]=o[1-r]*(r?10:.1)}if(o[r]<-p?o[r]=-p:o[r]>p&&(o[r]=p),o[0]===o[1]){var f=Math.max(1,Math.abs(1e-6*o[0]));o[0]-=f,o[1]+=f}}}else a.nestedProperty(e,t).set(i)},e.setScale=function(n){var r=t._size;if(e.overlaying){var i=_.getFromId({_fullLayout:t},e.overlaying);e.domain=i.domain}var a=n&&e._r?"_r":"range",o=e.calendar;e.cleanRange(a);var s,l,c=e.r2l(e[a][0],o),u=e.r2l(e[a][1],o),f="y"===h;if(f?(e._offset=r.t+(1-e.domain[1])*r.h,e._length=r.h*(e.domain[1]-e.domain[0]),e._m=e._length/(c-u),e._b=-e._m*u):(e._offset=r.l+e.domain[0]*r.w,e._length=r.w*(e.domain[1]-e.domain[0]),e._m=e._length/(u-c),e._b=-e._m*c),e._rangebreaks=[],e._lBreaks=0,e._m2=0,e._B=[],e.rangebreaks&&(e._rangebreaks=e.locateBreaks(Math.min(c,u),Math.max(c,u)),e._rangebreaks.length)){for(s=0;su&&(d=!d),d&&e._rangebreaks.reverse();var p=d?-1:1;for(e._m2=p*e._length/(Math.abs(u-c)-e._lBreaks),e._B.push(-e._m2*(f?u:c)),s=0;si&&(i+=7,oi&&(i+=24,o=r&&o=r&&t=s.min&&(es.max&&(s.max=r),i=!1)}i&&c.push({min:e,max:r})}};for(r=0;rn.duration?(function(){for(var n={},r=0;r rect").call(o.setTranslate,0,0).call(o.setScale,1,1),e.plot.call(o.setTranslate,t._offset,n._offset).call(o.setScale,1,1);var r=e.plot.selectAll(".scatterlayer .trace");r.selectAll(".point").call(o.setPointGroupScale,1,1),r.selectAll(".textpoint").call(o.setTextPointsScale,1,1),r.call(o.hideOutsideRangePoints,e)}function m(t,n){var r=t.plotinfo,i=r.xaxis,l=r.yaxis,c=i._length,u=l._length,f=!!t.xr1,d=!!t.yr1,h=[];if(f){var p=a.simpleMap(t.xr0,i.r2l),v=a.simpleMap(t.xr1,i.r2l),m=p[1]-p[0],g=v[1]-v[0];h[0]=(p[0]*(1-n)+n*v[0]-p[0])/(p[1]-p[0])*c,h[2]=c*(1-n+n*g/m),i.range[0]=i.l2r(p[0]*(1-n)+n*v[0]),i.range[1]=i.l2r(p[1]*(1-n)+n*v[1])}else h[0]=0,h[2]=c;if(d){var y=a.simpleMap(t.yr0,l.r2l),b=a.simpleMap(t.yr1,l.r2l),x=y[1]-y[0],w=b[1]-b[0];h[1]=(y[1]*(1-n)+n*b[1]-y[1])/(y[0]-y[1])*u,h[3]=u*(1-n+n*w/x),l.range[0]=i.l2r(y[0]*(1-n)+n*b[0]),l.range[1]=l.l2r(y[1]*(1-n)+n*b[1])}else h[1]=0,h[3]=u;s.drawOne(e,i,{skipTitle:!0}),s.drawOne(e,l,{skipTitle:!0}),s.redrawComponents(e,[i._id,l._id]);var _=f?c/h[2]:1,k=d?u/h[3]:1,S=f?h[0]:0,T=d?h[1]:0,A=f?h[0]/h[2]*c:0,E=d?h[1]/h[3]*u:0,C=i._offset-A,M=l._offset-E;r.clipRect.call(o.setTranslate,S,T).call(o.setScale,1/_,1/k),r.plot.call(o.setTranslate,C,M).call(o.setScale,_,k),o.setPointGroupScale(r.zoomScalePts,1/_,1/k),o.setTextPointsScale(r.zoomScaleTxt,1/_,1/k)}s.redrawComponents(e)}},951:function(e,t,n){"use strict";var r=n(73972).traceIs,i=n(4322);function a(e){return{v:"x",h:"y"}[e.orientation||"v"]}function o(e,t){var n=a(e),i=r(e,"box-violin"),o=r(e._fullInput||{},"candlestick");return i&&!o&&t===n&&void 0===e[n]&&void 0===e[n+"0"]}e.exports=function(e,t,n,s){n("autotypenumbers",s.autotypenumbersDflt),"-"===n("type",(s.splomStash||{}).type)&&(function(e,t){if("-"===e.type){var n,s=e._id,l=s.charAt(0);-1!==s.indexOf("scene")&&(s=l);var c=function(e,t,n){for(var r=0;r0&&(i["_"+n+"axes"]||{})[t])return i;if((i[n+"axis"]||n)===t){if(o(i,n))return i;if((i[n]||[]).length||i[n+"0"])return i}}}(t,s,l);if(c)if("histogram"!==c.type||l!=={v:"y",h:"x"}[c.orientation||"v"]){var u=l+"calendar",f=c[u],d={noMultiCategory:!r(c,"cartesian")||r(c,"noMultiCategory")};if("box"===c.type&&c._hasPreCompStats&&l==={h:"x",v:"y"}[c.orientation||"v"]&&(d.noMultiCategory=!0),d.autotypenumbers=e.autotypenumbers,o(c,l)){var h=a(c),p=[];for(n=0;n0?".":"")+a;i.isPlainObject(o)?l(o,t,s,r+1):t(s,a,o)}}))}t.manageCommandObserver=function(e,n,r,o){var s={},l=!0;n&&n._commandObserver&&(s=n._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=t.hasSimpleAPICommandBindings(e,r,s.lookupTable);if(n&&n._commandObserver){if(c)return s;if(n._commandObserver.remove)return n._commandObserver.remove(),n._commandObserver=null,s}if(c){a(e,c,s.cache),s.check=function(){if(l){var t=a(e,c,s.cache);return t.changed&&o&&void 0!==s.lookupTable[t.value]&&(s.disable(),Promise.resolve(o({value:t.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[t.value]})).then(s.enable,s.enable)),t.changed}};for(var u=["plotly_relayout","plotly_redraw","plotly_restyle","plotly_update","plotly_animatingframe","plotly_afterplot"],f=0;f0&&i<0&&(i+=360);var s=(i-r)/4;return{type:"Polygon",coordinates:[[[r,a],[r,o],[r+s,o],[r+2*s,o],[r+3*s,o],[i,o],[i,a],[i-s,a],[i-2*s,a],[i-3*s,a],[r,a]]]}}e.exports=function(e){return new A(e)},E.plot=function(e,t,n,r){var i=this;if(r)return i.update(e,t,!0);i._geoCalcData=e,i._fullLayout=t;var a=t[this.id],o=[],s=!1;for(var l in _.layerNameToAdjective)if("frame"!==l&&a["show"+l]){s=!0;break}for(var c=!1,u=0;u0&&o._module.calcGeoJSON(a,t)}if(!n){if(this.updateProjection(e,t))return;this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r)}this.scope=r.scope,this.updateBaseLayers(t,r),this.updateDims(t,r),this.updateFx(t,r),p.generalUpdatePerTraceModule(this.graphDiv,this,e,r);var s=this.layers.frontplot.select(".scatterlayer");this.dataPoints.point=s.selectAll(".point"),this.dataPoints.text=s.selectAll("text"),this.dataPaths.line=s.selectAll(".js-line");var l=this.layers.backplot.select(".choroplethlayer");this.dataPaths.choropleth=l.selectAll("path"),this._render()},E.updateProjection=function(e,t){var n=this.graphDiv,r=t[this.id],l=t._size,u=r.domain,f=r.projection,d=r.lonaxis,h=r.lataxis,p=d._ax,v=h._ax,g=this.projection=function(e){var t=e.projection,n=t.type,r=_.projNames[n];r="geo"+c.titleCase(r);for(var l=(i[r]||s[r])(),u=e._isSatellite?180*Math.acos(1/t.distance)/Math.PI:e._isClipped?_.lonaxisSpan[n]/2:null,f=["center","rotate","parallels","clipExtent"],d=function(e){return e?l:[]},h=0;hu*Math.PI/180}return!1},l.getPath=function(){return a().projection(l)},l.getBounds=function(e){return l.getPath().bounds(e)},l.precision(_.precision),e._isSatellite&&l.tilt(t.tilt).distance(t.distance),u&&l.clipAngle(u-_.clipPad),l}(r),y=[[l.l+l.w*u.x[0],l.t+l.h*(1-u.y[1])],[l.l+l.w*u.x[1],l.t+l.h*(1-u.y[0])]],b=r.center||{},x=f.rotation||{},w=d.range||[],k=h.range||[];if(r.fitbounds){p._length=y[1][0]-y[0][0],v._length=y[1][1]-y[0][1],p.range=m(n,p),v.range=m(n,v);var S=(p.range[0]+p.range[1])/2,T=(v.range[0]+v.range[1])/2;if(r._isScoped)b={lon:S,lat:T};else if(r._isClipped){b={lon:S,lat:T},x={lon:S,lat:T,roll:x.roll};var A=f.type,E=_.lonaxisSpan[A]/2||180,M=_.lataxisSpan[A]/2||90;w=[S-E,S+E],k=[T-M,T+M]}else b={lon:S,lat:T},x={lon:S,lat:x.lat,roll:x.roll}}g.center([b.lon-x.lon,b.lat-x.lat]).rotate([-x.lon,-x.lat,x.roll]).parallels(f.parallels);var O=C(w,k);g.fitExtent(y,O);var P=this.bounds=g.getBounds(O),L=this.fitScale=g.scale(),I=g.translate();if(r.fitbounds){var R=g.getBounds(C(p.range,v.range)),D=Math.min((P[1][0]-P[0][0])/(R[1][0]-R[0][0]),(P[1][1]-P[0][1])/(R[1][1]-R[0][1]));isFinite(D)?g.scale(D*L):c.warn("Something went wrong during"+this.id+"fitbounds computations.")}else g.scale(f.scale*L);var F=this.midPt=[(P[0][0]+P[1][0])/2,(P[0][1]+P[1][1])/2];if(g.translate([I[0]+(F[0]-I[0]),I[1]+(F[1]-I[1])]).clipExtent(P),r._isAlbersUsa){var N=g([b.lon,b.lat]),z=g.translate();g.translate([z[0]-(N[0]-z[0]),z[1]-(N[1]-z[1])])}},E.updateBaseLayers=function(e,t){var n=this,i=n.topojson,a=n.layers,o=n.basePaths;function s(e){return"lonaxis"===e||"lataxis"===e}function l(e){return Boolean(_.lineLayers[e])}function c(e){return Boolean(_.fillLayers[e])}var u=(this.hasChoropleth?_.layersForChoropleth:_.layers).filter((function(e){return l(e)||c(e)?t["show"+e]:!s(e)||t[e].showgrid})),h=n.framework.selectAll(".layer").data(u,String);h.exit().each((function(e){delete a[e],delete o[e],r.select(this).remove()})),h.enter().append("g").attr("class",(function(e){return"layer "+e})).each((function(e){var t=a[e]=r.select(this);"bg"===e?n.bgRect=t.append("rect").style("pointer-events","all"):s(e)?o[e]=t.append("path").style("fill","none"):"backplot"===e?t.append("g").classed("choroplethlayer",!0):"frontplot"===e?t.append("g").classed("scatterlayer",!0):l(e)?o[e]=t.append("path").style("fill","none").style("stroke-miterlimit",2):c(e)&&(o[e]=t.append("path").style("stroke","none"))})),h.order(),h.each((function(n){var r=o[n],a=_.layerNameToAdjective[n];"frame"===n?r.datum(_.sphereSVG):l(n)||c(n)?r.datum(T(i,i.objects[n])):s(n)&&r.datum(function(e,t,n){var r,i,a,o=1e-6,s=2.5,l=t[e],c=_.scopeDefaults[t.scope];"lonaxis"===e?(r=c.lonaxisRange,i=c.lataxisRange,a=function(e,t){return[e,t]}):"lataxis"===e&&(r=c.lataxisRange,i=c.lonaxisRange,a=function(e,t){return[t,e]});var u={type:"linear",range:[r[0],r[1]-o],tick0:l.tick0,dtick:l.dtick};v.setConvert(u,n);var f=v.calcTicks(u);t.isScoped||"lonaxis"!==e||f.pop();for(var d=f.length,h=new Array(d),p=0;p-1&&x(r.event,i,[n.xaxis],[n.yaxis],n.id,u),s.indexOf("event")>-1&&h.click(i,r.event))}))}function f(e){return n.projection.invert([e[0]+n.xaxis._offset,e[1]+n.yaxis._offset])}},E.makeFramework=function(){var e=this,t=e.graphDiv,n=t._fullLayout,i="clip"+n._uid+e.id;e.clipDef=n._clips.append("clipPath").attr("id",i),e.clipRect=e.clipDef.append("rect"),e.framework=r.select(e.container).append("g").attr("class","geo "+e.id).call(d.setClipUrl,i,t),e.project=function(t){var n=e.projection(t);return n?[n[0]-e.xaxis._offset,n[1]-e.yaxis._offset]:[null,null]},e.xaxis={_id:"x",c2p:function(t){return e.project(t)[0]}},e.yaxis={_id:"y",c2p:function(t){return e.project(t)[1]}},e.mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},v.setConvert(e.mockAxis,n)},E.saveViewInitial=function(e){var t,n=e.center||{},r=e.projection,i=r.rotation||{};this.viewInitial={fitbounds:e.fitbounds,"projection.scale":r.scale},t=e._isScoped?{"center.lon":n.lon,"center.lat":n.lat}:e._isClipped?{"projection.rotation.lon":i.lon,"projection.rotation.lat":i.lat}:{"center.lon":n.lon,"center.lat":n.lat,"projection.rotation.lon":i.lon},c.extendFlat(this.viewInitial,t)},E.render=function(e){this._hasMarkerAngles&&e?this.plot(this._geoCalcData,this._fullLayout,[],!0):this._render()},E._render=function(){var e,t=this.projection,n=t.getPath();function r(e){var n=t(e.lonlat);return n?u(n[0],n[1]):null}function i(e){return t.isLonLatOverEdges(e.lonlat)?"none":null}for(e in this.basePaths)this.basePaths[e].attr("d",n);for(e in this.dataPaths)this.dataPaths[e].attr("d",(function(e){return n(e.geojson)}));for(e in this.dataPoints)this.dataPoints[e].attr("display",i).attr("transform",r)}},44622:function(e,t,n){"use strict";var r=n(27659).AU,i=n(71828).counterRegex,a=n(69082),o="geo",s=i(o),l={};l[o]={valType:"subplotid",dflt:o,editType:"calc"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:n(77519),supplyLayoutDefaults:n(82161),plot:function(e){for(var t=e._fullLayout,n=e.calcdata,i=t._subplots[o],s=0;s0&&P<0&&(P+=360);var L,I,R,D=(O+P)/2;if(!h){var F=p?f.projRotate:[D,0,0];L=n("projection.rotation.lon",F[0]),n("projection.rotation.lat",F[1]),n("projection.rotation.roll",F[2]),n("showcoastlines",!p&&b)&&(n("coastlinecolor"),n("coastlinewidth")),n("showocean",!!b&&void 0)&&n("oceancolor")}h?(I=-96.6,R=38.7):(I=p?D:L,R=(M[0]+M[1])/2),n("center.lon",I),n("center.lat",R),v&&(n("projection.tilt"),n("projection.distance")),m&&n("projection.parallels",f.projParallels||[0,60]),n("projection.scale"),n("showland",!!b&&void 0)&&n("landcolor"),n("showlakes",!!b&&void 0)&&n("lakecolor"),n("showrivers",!!b&&void 0)&&(n("rivercolor"),n("riverwidth")),n("showcountries",p&&"usa"!==u&&b)&&(n("countrycolor"),n("countrywidth")),("usa"===u||"north america"===u&&50===c)&&(n("showsubunits",b),n("subunitcolor"),n("subunitwidth")),p||n("showframe",b)&&(n("framecolor"),n("framewidth")),n("bgcolor"),n("fitbounds")&&(delete t.projection.scale,p?(delete t.center.lon,delete t.center.lat):g?(delete t.center.lon,delete t.center.lat,delete t.projection.rotation.lon,delete t.projection.rotation.lat,delete t.lonaxis.range,delete t.lataxis.range):(delete t.center.lon,delete t.center.lat,delete t.projection.rotation.lon))}e.exports=function(e,t,n){i(e,t,n,{type:"geo",attributes:s,handleDefaults:c,fullData:n,partition:"y"})}},74455:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=n(73972),o=Math.PI/180,s=180/Math.PI,l={cursor:"pointer"},c={cursor:"auto"};function u(e,t){return r.behavior.zoom().translate(t.translate()).scale(t.scale())}function f(e,t,n){var r=e.id,o=e.graphDiv,s=o.layout,l=s[r],c=o._fullLayout,u=c[r],f={},d={};function h(e,t){f[r+"."+e]=i.nestedProperty(l,e).get(),a.call("_storeDirectGUIEdit",s,c._preGUI,f);var n=i.nestedProperty(u,e);n.get()!==t&&(n.set(t),i.nestedProperty(l,e).set(t),d[r+"."+e]=t)}n(h),h("projection.scale",t.scale()/e.fitScale),h("fitbounds",!1),o.emit("plotly_relayout",d)}function d(e,t){var n=u(0,t);function i(n){var r=t.invert(e.midPt);n("center.lon",r[0]),n("center.lat",r[1])}return n.on("zoomstart",(function(){r.select(this).style(l)})).on("zoom",(function(){t.scale(r.event.scale).translate(r.event.translate),e.render(!0);var n=t.invert(e.midPt);e.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":t.scale()/e.fitScale,"geo.center.lon":n[0],"geo.center.lat":n[1]})})).on("zoomend",(function(){r.select(this).style(c),f(e,t,i)})),n}function h(e,t){var n,i,a,o,s,d,h,p,v,m=u(0,t),g=2;function y(e){return t.invert(e)}function b(n){var r=t.rotate(),i=t.invert(e.midPt);n("projection.rotation.lon",-r[0]),n("center.lon",i[0]),n("center.lat",i[1])}return m.on("zoomstart",(function(){r.select(this).style(l),n=r.mouse(this),i=t.rotate(),a=t.translate(),o=i,s=y(n)})).on("zoom",(function(){if(d=r.mouse(this),function(e){var n=y(e);if(!n)return!0;var r=t(n);return Math.abs(r[0]-e[0])>g||Math.abs(r[1]-e[1])>g}(n))return m.scale(t.scale()),void m.translate(t.translate());t.scale(r.event.scale),t.translate([a[0],r.event.translate[1]]),s?y(d)&&(p=y(d),h=[o[0]+(p[0]-s[0]),i[1],i[2]],t.rotate(h),o=h):s=y(n=d),v=!0,e.render(!0);var l=t.rotate(),c=t.invert(e.midPt);e.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":t.scale()/e.fitScale,"geo.center.lon":c[0],"geo.center.lat":c[1],"geo.projection.rotation.lon":-l[0]})})).on("zoomend",(function(){r.select(this).style(c),v&&f(e,t,b)})),m}function p(e,t){var n,i={r:t.rotate(),k:t.scale()},a=u(0,t),d=function(e){for(var t=0,n=arguments.length,i=[];++tp?(a=(f>0?90:-90)-h,i=0):(a=Math.asin(f/p)*s-h,i=Math.sqrt(p*p-f*f));var v=180-a-2*h,g=(Math.atan2(d,u)-Math.atan2(c,i))*s,b=(Math.atan2(d,u)-Math.atan2(c,-i))*s,x=m(n[0],n[1],a,g),w=m(n[0],n[1],v,b);return x<=w?[a,g,n[2]]:[v,b,n[2]]}(l,n,f);isFinite(h[0])&&isFinite(h[1])&&isFinite(h[2])||(h=f),t.rotate(h),f=h}}else n=v(t,c=e);d.of(this,arguments)({type:"zoom"})})),e=d.of(this,arguments),h++||e({type:"zoomstart"})})).on("zoomend",(function(){var n;r.select(this).style(c),p.call(a,"zoom",null),n=d.of(this,arguments),--h||n({type:"zoomend"}),f(e,t,g)})).on("zoom.redraw",(function(){e.render(!0);var n=t.rotate();e.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":t.scale()/e.fitScale,"geo.projection.rotation.lon":-n[0],"geo.projection.rotation.lat":-n[1]})})),r.rebind(a,d,"on")}function v(e,t){var n=e.invert(t);return n&&isFinite(n[0])&&isFinite(n[1])&&function(e){var t=e[0]*o,n=e[1]*o,r=Math.cos(n);return[r*Math.cos(t),r*Math.sin(t),Math.sin(n)]}(n)}function m(e,t,n,r){var i=g(n-e),a=g(r-t);return Math.sqrt(i*i+a*a)}function g(e){return(e%360+540)%360-180}function y(e,t,n){var r=n*o,i=e.slice(),a=0===t?1:0,s=2===t?1:2,l=Math.cos(r),c=Math.sin(r);return i[a]=e[a]*l-e[s]*c,i[s]=e[s]*l+e[a]*c,i}function b(e,t){for(var n=0,r=0,i=e.length;rMath.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(a)*w*(s>=0?1:-1),c.boxEnd[1]l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(w))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/w*(a>=0?1:-1),c.boxEnd[0]l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(w)))}}else c.boxEnabled?(a=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],a||s?(a&&(m(0,c.boxStart[0],c.boxEnd[0]),e.xaxis.autorange=!1),s&&(m(1,c.boxStart[1],c.boxEnd[1]),e.yaxis.autorange=!1),e.relayoutCallback()):e.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case"pan":c.boxEnabled=!1,c.boxInited=!1,t?(c.panning||(c.dragStart[0]=r,c.dragStart[1]=i),Math.abs(c.dragStart[0]-r).999&&(m="turntable"):m="turntable")}else m="turntable";n("dragmode",m),n("hovermode",r.getDfltFromLayout("hovermode"))}e.exports=function(e,t,n){var i=t._basePlotModules.length>1;o(e,t,n,{type:u,attributes:l,handleDefaults:f,fullLayout:t,font:t.font,fullData:n,getDfltFromLayout:function(t){if(!i)return r.validate(e[t],l[t])?e[t]:void 0},autotypenumbersDflt:t.autotypenumbers,paper_bgcolor:t.paper_bgcolor,calendar:t.calendar})}},65500:function(e,t,n){"use strict";var r=n(77894),i=n(27670).Y,a=n(1426).extendFlat,o=n(71828).counterRegex;function s(e,t,n){return{x:{valType:"number",dflt:e,editType:"camera"},y:{valType:"number",dflt:t,editType:"camera"},z:{valType:"number",dflt:n,editType:"camera"},editType:"camera"}}e.exports={_arrayAttrRegexps:[o("scene",".annotations",!0)],bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"plot"},camera:{up:a(s(0,0,1),{}),center:a(s(0,0,0),{}),eye:a(s(1.25,1.25,1.25),{}),projection:{type:{valType:"enumerated",values:["perspective","orthographic"],dflt:"perspective",editType:"calc"},editType:"calc"},editType:"camera"},domain:i({name:"scene",editType:"plot"}),aspectmode:{valType:"enumerated",values:["auto","cube","data","manual"],dflt:"auto",editType:"plot",impliedEdits:{"aspectratio.x":void 0,"aspectratio.y":void 0,"aspectratio.z":void 0}},aspectratio:{x:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},y:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},z:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},editType:"plot",impliedEdits:{aspectmode:"manual"}},xaxis:r,yaxis:r,zaxis:r,dragmode:{valType:"enumerated",values:["orbit","turntable","zoom","pan",!1],editType:"plot"},hovermode:{valType:"enumerated",values:["closest",!1],dflt:"closest",editType:"modebar"},uirevision:{valType:"any",editType:"none"},editType:"plot",_deprecated:{cameraposition:{valType:"info_array",editType:"camera"}}}},13133:function(e,t,n){"use strict";var r=n(78614),i=["xaxis","yaxis","zaxis"];function a(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}a.prototype.merge=function(e){for(var t=0;t<3;++t){var n=e[i[t]];n.visible?(this.enabled[t]=n.showspikes,this.colors[t]=r(n.spikecolor),this.drawSides[t]=n.spikesides,this.lineWidth[t]=n.spikethickness):(this.enabled[t]=!1,this.drawSides[t]=!1)}},e.exports=function(e){var t=new a;return t.merge(e),t}},96085:function(e,t,n){"use strict";e.exports=function(e){for(var t=e.axesOptions,n=e.glplot.axesPixels,s=e.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[a[c]];if(u._length=(n[c].hi-n[c].lo)*n[c].pixelsPerDataUnit/e.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=n[c].lo/e.dataScale[c],u.range[1]=n[c].hi/e.dataScale[c],u._m=1/(e.dataScale[c]*n[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var f=u.tickmode;if("auto"===u.tickmode){u.tickmode="linear";var d=u.nticks||i.constrain(u._length/40,4,9);r.autoTicks(u,Math.abs(u.range[1]-u.range[0])/d)}for(var h=r.calcTicks(u,{msUTC:!0}),p=0;p/g," "));l[c]=h,u.tickmode=f}}for(t.ticks=l,c=0;c<3;++c)for(o[c]=.5*(e.glplot.bounds[0][c]+e.glplot.bounds[1][c]),p=0;p<2;++p)t.bounds[p][c]=e.glplot.bounds[p][c];e.contourLevels=function(e){for(var t=new Array(3),n=0;n<3;++n){for(var r=e[n],i=new Array(r.length),a=0;an.deltaY?1.1:1/1.1,a=e.glplot.getAspectratio();e.glplot.setAspectratio({x:r*a.x,y:r*a.y,z:r*a.z})}i(e)}}),!!c&&{passive:!1}),e.glplot.canvas.addEventListener("mousemove",(function(){if(!1!==e.fullSceneLayout.dragmode&&0!==e.camera.mouseListener.buttons){var t=r();e.graphDiv.emit("plotly_relayouting",t)}})),e.staticMode||e.glplot.canvas.addEventListener("webglcontextlost",(function(n){t&&t.emit&&t.emit("plotly_webglcontextlost",{event:n,layer:e.id})}),!1)),e.glplot.oncontextloss=function(){e.recoverContext()},e.glplot.onrender=function(){e.render()},!0},S.render=function(){var e,t=this,n=t.graphDiv,r=t.svgContainer,i=t.container.getBoundingClientRect();n._fullLayout._calcInverseTransform(n);var a=n._fullLayout._invScaleX,o=n._fullLayout._invScaleY,s=i.width*a,l=i.height*o;r.setAttributeNS(null,"viewBox","0 0 "+s+" "+l),r.setAttributeNS(null,"width",s),r.setAttributeNS(null,"height",l),x(t),t.glplot.axes.update(t.axesOptions);for(var c=Object.keys(t.traces),u=null,d=t.glplot.selection,v=0;v")):"isosurface"===e.type||"volume"===e.type?(S.valueLabel=h.hoverLabelText(t._mockAxis,t._mockAxis.d2l(d.traceCoordinate[3]),e.valuehoverformat),C.push("value: "+S.valueLabel),d.textLabel&&C.push(d.textLabel),b=C.join("
")):b=d.textLabel;var M={x:d.traceCoordinate[0],y:d.traceCoordinate[1],z:d.traceCoordinate[2],data:w._input,fullData:w,curveNumber:w.index,pointNumber:k};p.appendArrayPointValue(M,w,k),e._module.eventData&&(M=w._module.eventData(M,d,w,{},k));var O={points:[M]};if(t.fullSceneLayout.hovermode){var P=[];p.loneHover({trace:w,x:(.5+.5*y[0]/y[3])*s,y:(.5-.5*y[1]/y[3])*l,xLabel:S.xLabel,yLabel:S.yLabel,zLabel:S.zLabel,text:b,name:u.name,color:p.castHoverOption(w,k,"bgcolor")||u.color,borderColor:p.castHoverOption(w,k,"bordercolor"),fontFamily:p.castHoverOption(w,k,"font.family"),fontSize:p.castHoverOption(w,k,"font.size"),fontColor:p.castHoverOption(w,k,"font.color"),nameLength:p.castHoverOption(w,k,"namelength"),textAlign:p.castHoverOption(w,k,"align"),hovertemplate:f.castOption(w,k,"hovertemplate"),hovertemplateLabels:f.extendFlat({},M,S),eventData:[M]},{container:r,gd:n,inOut_bbox:P}),M.bbox=P[0]}d.distance<5&&(d.buttons||_)?n.emit("plotly_click",O):n.emit("plotly_hover",O),this.oldEventData=O}else p.loneUnhover(r),this.oldEventData&&n.emit("plotly_unhover",this.oldEventData),this.oldEventData=void 0;t.drawAnnotations(t)},S.recoverContext=function(){var e=this;e.glplot.dispose(),requestAnimationFrame((function t(){e.glplot.gl.isContextLost()?requestAnimationFrame(t):e.initializeGLPlot()?e.plot.apply(e,e.plotArgs):f.error("Catastrophic and unrecoverable WebGL error. Context lost.")}))};var A=["xaxis","yaxis","zaxis"];function E(e,t,n){for(var r=e.fullSceneLayout,i=0;i<3;i++){var a=A[i],o=a.charAt(0),s=r[a],l=t[o],c=t[o+"calendar"],u=t["_"+o+"length"];if(f.isArrayOrTypedArray(l))for(var d,h=0;h<(u||l.length);h++)if(f.isArrayOrTypedArray(l[h]))for(var p=0;pg[1][o])g[0][o]=-1,g[1][o]=1;else{var L=g[1][o]-g[0][o];g[0][o]-=L/32,g[1][o]+=L/32}if(x=[g[0][o],g[1][o]],x=w(x,l),g[0][o]=x[0],g[1][o]=x[1],l.isReversed()){var I=g[0][o];g[0][o]=g[1][o],g[1][o]=I}}else x=l.range,g[0][o]=l.r2l(x[0]),g[1][o]=l.r2l(x[1]);g[0][o]===g[1][o]&&(g[0][o]-=1,g[1][o]+=1),y[o]=g[1][o]-g[0][o],l.range=[g[0][o],g[1][o]],l.limitRange(),r.glplot.setBounds(o,{min:l.range[0]*h[o],max:l.range[1]*h[o]})}var R=u.aspectmode;if("cube"===R)m=[1,1,1];else if("manual"===R){var D=u.aspectratio;m=[D.x,D.y,D.z]}else{if("auto"!==R&&"data"!==R)throw new Error("scene.js aspectRatio was not one of the enumerated types");var F=[1,1,1];for(o=0;o<3;++o){var N=b[c=(l=u[A[o]]).type];F[o]=Math.pow(N.acc,1/N.count)/h[o]}m="data"===R||Math.max.apply(null,F)/Math.min.apply(null,F)<=4?F:[1,1,1]}u.aspectratio.x=f.aspectratio.x=m[0],u.aspectratio.y=f.aspectratio.y=m[1],u.aspectratio.z=f.aspectratio.z=m[2],r.glplot.setAspectratio(u.aspectratio),r.viewInitial.aspectratio||(r.viewInitial.aspectratio={x:u.aspectratio.x,y:u.aspectratio.y,z:u.aspectratio.z}),r.viewInitial.aspectmode||(r.viewInitial.aspectmode=u.aspectmode);var z=u.domain||null,j=t._size||null;if(z&&j){var B=r.container.style;B.position="absolute",B.left=j.l+z.x[0]*j.w+"px",B.top=j.t+(1-z.y[1])*j.h+"px",B.width=j.w*(z.x[1]-z.x[0])+"px",B.height=j.h*(z.y[1]-z.y[0])+"px"}r.glplot.redraw()}},S.destroy=function(){var e=this;e.glplot&&(e.camera.mouseListener.enabled=!1,e.container.removeEventListener("wheel",e.camera.wheelListener),e.camera=null,e.glplot.dispose(),e.container.parentNode.removeChild(e.container),e.glplot=null)},S.getCamera=function(){var e,t=this;return t.camera.view.recalcMatrix(t.camera.view.lastT()),{up:{x:(e=t.camera).up[0],y:e.up[1],z:e.up[2]},center:{x:e.center[0],y:e.center[1],z:e.center[2]},eye:{x:e.eye[0],y:e.eye[1],z:e.eye[2]},projection:{type:!0===e._ortho?"orthographic":"perspective"}}},S.setViewport=function(e){var t,n=this,r=e.camera;n.camera.lookAt.apply(this,[[(t=r).eye.x,t.eye.y,t.eye.z],[t.center.x,t.center.y,t.center.z],[t.up.x,t.up.y,t.up.z]]),n.glplot.setAspectratio(e.aspectratio),"orthographic"===r.projection.type!==n.camera._ortho&&(n.glplot.redraw(),n.glplot.clearRGBA(),n.glplot.dispose(),n.initializeGLPlot())},S.isCameraChanged=function(e){var t=this.getCamera(),n=f.nestedProperty(e,this.id+".camera").get();function r(e,t,n,r){var i=["up","center","eye"],a=["x","y","z"];return t[i[n]]&&e[i[n]][a[r]]===t[i[n]][a[r]]}var i=!1;if(void 0===n)i=!0;else{for(var a=0;a<3;a++)for(var o=0;o<3;o++)if(!r(t,n,a,o)){i=!0;break}(!n.projection||t.projection&&t.projection.type!==n.projection.type)&&(i=!0)}return i},S.isAspectChanged=function(e){var t=this.glplot.getAspectratio(),n=f.nestedProperty(e,this.id+".aspectratio").get();return void 0===n||n.x!==t.x||n.y!==t.y||n.z!==t.z},S.saveLayout=function(e){var t,n,r,i,a,o,s=this,l=s.fullLayout,c=s.isCameraChanged(e),d=s.isAspectChanged(e),h=c||d;if(h){var p={};c&&(t=s.getCamera(),r=(n=f.nestedProperty(e,s.id+".camera")).get(),p[s.id+".camera"]=r),d&&(i=s.glplot.getAspectratio(),o=(a=f.nestedProperty(e,s.id+".aspectratio")).get(),p[s.id+".aspectratio"]=o),u.call("_storeDirectGUIEdit",e,l._preGUI,p),c&&(n.set(t),f.nestedProperty(l,s.id+".camera").set(t)),d&&(a.set(i),f.nestedProperty(l,s.id+".aspectratio").set(i),s.glplot.redraw())}return h},S.updateFx=function(e,t){var n=this,r=n.camera;if(r)if("orbit"===e)r.mode="orbit",r.keyBindingMode="rotate";else if("turntable"===e){r.up=[0,0,1],r.mode="turntable",r.keyBindingMode="rotate";var i=n.graphDiv,a=i._fullLayout,o=n.fullSceneLayout.camera,s=o.up.x,l=o.up.y,c=o.up.z;if(c/Math.sqrt(s*s+l*l+c*c)<.999){var d=n.id+".camera.up",h={x:0,y:0,z:1},p={};p[d]=h;var v=i.layout;u.call("_storeDirectGUIEdit",v,a._preGUI,p),o.up=h,f.nestedProperty(v,d).set(h)}}else r.keyBindingMode=e;n.fullSceneLayout.hovermode=t},S.toImage=function(e){var t=this;e||(e="png"),t.staticMode&&t.container.appendChild(r),t.glplot.redraw();var n=t.glplot.gl,i=n.drawingBufferWidth,a=n.drawingBufferHeight;n.bindFramebuffer(n.FRAMEBUFFER,null);var o=new Uint8Array(i*a*4);n.readPixels(0,0,i,a,n.RGBA,n.UNSIGNED_BYTE,o),function(e,t,n){for(var r=0,i=n-1;r0)for(var s=255/o,l=0;l<3;++l)e[a+l]=Math.min(s*e[a+l],255)}}(o,i,a);var s=document.createElement("canvas");s.width=i,s.height=a;var l,c=s.getContext("2d",{willReadFrequently:!0}),u=c.createImageData(i,a);switch(u.data.set(o),c.putImageData(u,0,0),e){case"jpeg":l=s.toDataURL("image/jpeg");break;case"webp":l=s.toDataURL("image/webp");break;default:l=s.toDataURL("image/png")}return t.staticMode&&t.container.removeChild(r),l},S.setConvert=function(){for(var e=0;e<3;e++){var t=this.fullSceneLayout[A[e]];h.setConvert(t,this.fullLayout),t.setScale=f.noop}},S.make4thDimension=function(){var e=this,t=e.graphDiv._fullLayout;e._mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},h.setConvert(e._mockAxis,t)},e.exports=k},90060:function(e){"use strict";e.exports=function(e,t,n,r){r=r||e.length;for(var i=new Array(r),a=0;aOpenStreetMap
contributors',o=['\xa9 Carto',a].join(" "),s=['Map tiles by Stamen Design','under CC BY 3.0',"|",'Data by OpenStreetMap contributors','under ODbL'].join(" "),l={"open-street-map":{id:"osm",version:8,sources:{"plotly-osm-tiles":{type:"raster",attribution:a,tiles:["https://a.tile.openstreetmap.org/{z}/{x}/{y}.png","https://b.tile.openstreetmap.org/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-osm-tiles",type:"raster",source:"plotly-osm-tiles",minzoom:0,maxzoom:22}],glyphs:"https://fonts.openmaptiles.org/{fontstack}/{range}.pbf"},"white-bg":{id:"white-bg",version:8,sources:{},layers:[{id:"white-bg",type:"background",paint:{"background-color":"#FFFFFF"},minzoom:0,maxzoom:22}],glyphs:"https://fonts.openmaptiles.org/{fontstack}/{range}.pbf"},"carto-positron":{id:"carto-positron",version:8,sources:{"plotly-carto-positron":{type:"raster",attribution:o,tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-positron",type:"raster",source:"plotly-carto-positron",minzoom:0,maxzoom:22}],glyphs:"https://fonts.openmaptiles.org/{fontstack}/{range}.pbf"},"carto-darkmatter":{id:"carto-darkmatter",version:8,sources:{"plotly-carto-darkmatter":{type:"raster",attribution:o,tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-darkmatter",type:"raster",source:"plotly-carto-darkmatter",minzoom:0,maxzoom:22}],glyphs:"https://fonts.openmaptiles.org/{fontstack}/{range}.pbf"},"stamen-terrain":{id:"stamen-terrain",version:8,sources:{"plotly-stamen-terrain":{type:"raster",attribution:s,tiles:["https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-terrain",type:"raster",source:"plotly-stamen-terrain",minzoom:0,maxzoom:22}],glyphs:"https://fonts.openmaptiles.org/{fontstack}/{range}.pbf"},"stamen-toner":{id:"stamen-toner",version:8,sources:{"plotly-stamen-toner":{type:"raster",attribution:s,tiles:["https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-toner",type:"raster",source:"plotly-stamen-toner",minzoom:0,maxzoom:22}],glyphs:"https://fonts.openmaptiles.org/{fontstack}/{range}.pbf"},"stamen-watercolor":{id:"stamen-watercolor",version:8,sources:{"plotly-stamen-watercolor":{type:"raster",attribution:['Map tiles by Stamen Design','under CC BY 3.0',"|",'Data by OpenStreetMap contributors','under CC BY SA'].join(" "),tiles:["https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-watercolor",type:"raster",source:"plotly-stamen-watercolor",minzoom:0,maxzoom:22}],glyphs:"https://fonts.openmaptiles.org/{fontstack}/{range}.pbf"}},c=r(l);e.exports={requiredVersion:i,styleUrlPrefix:"mapbox://styles/mapbox/",styleUrlSuffix:"v9",styleValuesMapbox:["basic","streets","outdoors","light","dark","satellite","satellite-streets"],styleValueDflt:"basic",stylesNonMapbox:l,styleValuesNonMapbox:c,traceLayerPrefix:"plotly-trace-layer-",layoutLayerPrefix:"plotly-layout-layer-",wrongVersionErrorMsg:["Your custom plotly.js bundle is not using the correct mapbox-gl version","Please install mapbox-gl@"+i+"."].join("\n"),noAccessTokenErrorMsg:["Missing Mapbox access token.","Mapbox trace type require a Mapbox access token to be registered.","For example:"," Plotly.newPlot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });","More info here: https://www.mapbox.com/help/define-access-token/"].join("\n"),missingStyleErrorMsg:["No valid mapbox style found, please set `mapbox.style` to one of:",c.join(", "),"or register a Mapbox access token to use a Mapbox-served style."].join("\n"),multipleTokensErrorMsg:["Set multiple mapbox access token across different mapbox subplot,","using first token found as mapbox-gl does not allow multipleaccess tokens on the same page."].join("\n"),mapOnErrorMsg:"Mapbox error.",mapboxLogo:{path0:"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z",path1:"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z",path2:"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z",polygon:"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34"},styleRules:{map:"overflow:hidden;position:relative;","missing-css":"display:none;",canary:"background-color:salmon;","ctrl-bottom-left":"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;","ctrl-bottom-right":"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;",ctrl:"clear: both; pointer-events: auto; transform: translate(0, 0);","ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner":"display: none;","ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner":"display: block; margin-top:2px","ctrl-attrib.mapboxgl-compact:hover":"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;","ctrl-attrib.mapboxgl-compact::after":'content: ""; cursor: pointer; position: absolute; background-image: url(\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E %3Cpath fill="%23333333" fill-rule="evenodd" d="M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0"/%3E %3C/svg%3E\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',"ctrl-attrib.mapboxgl-compact":"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;","ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; right: 0","ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; left: 0","ctrl-bottom-left .mapboxgl-ctrl":"margin: 0 0 10px 10px; float: left;","ctrl-bottom-right .mapboxgl-ctrl":"margin: 0 10px 10px 0; float: right;","ctrl-attrib":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a:hover":"color: inherit; text-decoration: underline;","ctrl-attrib .mapbox-improve-map":"font-weight: bold; margin-left: 2px;","attrib-empty":"display: none;","ctrl-logo":'display:block; width: 21px; height: 21px; background-image: url(\'data:image/svg+xml;charset=utf-8,%3C?xml version="1.0" encoding="utf-8"?%3E %3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 21" style="enable-background:new 0 0 21 21;" xml:space="preserve"%3E%3Cg transform="translate(0,0.01)"%3E%3Cpath d="m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z" style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3Cpath d="M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpath d="M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpolygon points="11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 " style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3C/g%3E%3C/svg%3E\')'}}},13056:function(e,t,n){"use strict";var r=n(71828);e.exports=function(e,t){var n=e.split(" "),i=n[0],a=n[1],o=r.isArrayOrTypedArray(t)?r.mean(t):t,s=.5+o/100,l=1.5+o/100,c=["",""],u=[0,0];switch(i){case"top":c[0]="top",u[1]=-l;break;case"bottom":c[0]="bottom",u[1]=l}switch(a){case"left":c[1]="right",u[0]=-s;break;case"right":c[1]="left",u[0]=s}return{anchor:c[0]&&c[1]?c.join("-"):c[0]?c[0]:c[1]?c[1]:"center",offset:u}}},50101:function(e,t,n){"use strict";var r=n(44517),i=n(71828),a=i.strTranslate,o=i.strScale,s=n(27659).AU,l=n(77922),c=n(39898),u=n(91424),f=n(63893),d=n(10481),h="mapbox",p=t.constants=n(77734);function v(e){return"string"===typeof e&&(-1!==p.styleValuesMapbox.indexOf(e)||0===e.indexOf("mapbox://"))}t.name=h,t.attr="subplot",t.idRoot=h,t.idRegex=t.attrRegex=i.counterRegex(h),t.attributes={subplot:{valType:"subplotid",dflt:"mapbox",editType:"calc"}},t.layoutAttributes=n(23585),t.supplyLayoutDefaults=n(77882),t.plot=function(e){var t=e._fullLayout,n=e.calcdata,a=t._subplots[h];if(r.version!==p.requiredVersion)throw new Error(p.wrongVersionErrorMsg);var o=function(e,t){var n=e._fullLayout,r=e._context;if(""===r.mapboxAccessToken)return"";for(var a=[],o=[],s=!1,l=!1,c=0;c1&&i.warn(p.multipleTokensErrorMsg),a[0]):(o.length&&i.log(["Listed mapbox access token(s)",o.join(","),"but did not use a Mapbox map style, ignoring token(s)."].join(" ")),"")}(e,a);r.accessToken=o;for(var l=0;l_/2){var k=y.split("|").join("
");x.text(k).attr("data-unformatted",k).call(f.convertToTspans,e),w=u.bBox(x.node())}x.attr("transform",a(-3,8-w.height)),b.insert("rect",".static-attribution").attr({x:-w.width-6,y:-w.height-3,width:w.width+6,height:w.height+3,fill:"rgba(255, 255, 255, 0.75)"});var S=1;w.width+6>_&&(S=_/(w.width+6));var T=[r.l+r.w*d.x[1],r.t+r.h*(1-d.y[0])];b.attr("transform",a(T[0],T[1])+o(S))}},t.updateFx=function(e){for(var t=e._fullLayout,n=t._subplots[h],r=0;r0){for(var n=0;n0}function u(e){var t={},n={};switch(e.type){case"circle":r.extendFlat(n,{"circle-radius":e.circle.radius,"circle-color":e.color,"circle-opacity":e.opacity});break;case"line":r.extendFlat(n,{"line-width":e.line.width,"line-color":e.color,"line-opacity":e.opacity,"line-dasharray":e.line.dash});break;case"fill":r.extendFlat(n,{"fill-color":e.color,"fill-outline-color":e.fill.outlinecolor,"fill-opacity":e.opacity});break;case"symbol":var i=e.symbol,o=a(i.textposition,i.iconsize);r.extendFlat(t,{"icon-image":i.icon+"-15","icon-size":i.iconsize/10,"text-field":i.text,"text-size":i.textfont.size,"text-anchor":o.anchor,"text-offset":o.offset,"symbol-placement":i.placement}),r.extendFlat(n,{"icon-color":e.color,"text-color":i.textfont.color,"text-opacity":e.opacity});break;case"raster":r.extendFlat(n,{"raster-fade-duration":0,"raster-opacity":e.opacity})}return{layout:t,paint:n}}l.update=function(e){this.visible?this.needsNewImage(e)?this.updateImage(e):this.needsNewSource(e)?(this.removeLayer(),this.updateSource(e),this.updateLayer(e)):this.needsNewLayer(e)?this.updateLayer(e):this.updateStyle(e):(this.updateSource(e),this.updateLayer(e)),this.visible=c(e)},l.needsNewImage=function(e){return this.subplot.map.getSource(this.idSource)&&"image"===this.sourceType&&"image"===e.sourcetype&&(this.source!==e.source||JSON.stringify(this.coordinates)!==JSON.stringify(e.coordinates))},l.needsNewSource=function(e){return this.sourceType!==e.sourcetype||JSON.stringify(this.source)!==JSON.stringify(e.source)||this.layerType!==e.type},l.needsNewLayer=function(e){return this.layerType!==e.type||this.below!==this.subplot.belowLookup["layout-"+this.index]},l.lookupBelow=function(){return this.subplot.belowLookup["layout-"+this.index]},l.updateImage=function(e){this.subplot.map.getSource(this.idSource).updateImage({url:e.source,coordinates:e.coordinates});var t=this.findFollowingMapboxLayerId(this.lookupBelow());null!==t&&this.subplot.map.moveLayer(this.idLayer,t)},l.updateSource=function(e){var t=this.subplot.map;if(t.getSource(this.idSource)&&t.removeSource(this.idSource),this.sourceType=e.sourcetype,this.source=e.source,c(e)){var n=function(e){var t,n=e.sourcetype,r=e.source,a={type:n};return"geojson"===n?t="data":"vector"===n?t="string"===typeof r?"url":"tiles":"raster"===n?(t="tiles",a.tileSize=256):"image"===n&&(t="url",a.coordinates=e.coordinates),a[t]=r,e.sourceattribution&&(a.attribution=i(e.sourceattribution)),a}(e);t.addSource(this.idSource,n)}},l.findFollowingMapboxLayerId=function(e){if("traces"===e)for(var t=this.subplot.getMapLayers(),n=0;n1)for(n=0;n-1&&m(t.originalEvent,r,[n.xaxis],[n.yaxis],n.id,e),i.indexOf("event")>-1&&c.click(r,t.originalEvent)}}},x.updateFx=function(e){var t=this,n=t.map,r=t.gd;if(!t.isStatic){var a,o=e.dragmode;a=function(e,n){n.isRect?(e.range={})[t.id]=[c([n.xmin,n.ymin]),c([n.xmax,n.ymax])]:(e.lassoPoints={})[t.id]=n.map(c)};var s=t.dragOptions;t.dragOptions=i.extendDeep(s||{},{dragmode:e.dragmode,element:t.div,gd:r,plotinfo:{id:t.id,domain:e[t.id].domain,xaxis:t.xaxis,yaxis:t.yaxis,fillRangeItems:a},xaxes:[t.xaxis],yaxes:[t.yaxis],subplot:t.id}),n.off("click",t.onClickInPanHandler),d(o)||f(o)?(n.dragPan.disable(),n.on("zoomstart",t.clearOutline),t.dragOptions.prepFn=function(e,n,r){h(e,n,r,t.dragOptions,o)},l.init(t.dragOptions)):(n.dragPan.enable(),n.off("zoomstart",t.clearOutline),t.div.onmousedown=null,t.div.ontouchstart=null,t.div.removeEventListener("touchstart",t.div._ontouchstart),t.onClickInPanHandler=t.onClickInPanFn(t.dragOptions),n.on("click",t.onClickInPanHandler))}function c(e){var n=t.map.unproject(e);return[n.lng,n.lat]}},x.updateFramework=function(e){var t=e[this.id].domain,n=e._size,r=this.div.style;r.width=n.w*(t.x[1]-t.x[0])+"px",r.height=n.h*(t.y[1]-t.y[0])+"px",r.left=n.l+t.x[0]*n.w+"px",r.top=n.t+(1-t.y[1])*n.h+"px",this.xaxis._offset=n.l+t.x[0]*n.w,this.xaxis._length=n.w*(t.x[1]-t.x[0]),this.yaxis._offset=n.t+(1-t.y[1])*n.h,this.yaxis._length=n.h*(t.y[1]-t.y[0])},x.updateLayers=function(e){var t,n=e[this.id].layers,r=this.layerList;if(n.length!==r.length){for(t=0;t=t.width-20?(a["text-anchor"]="start",a.x=5):(a["text-anchor"]="end",a.x=t._paper.attr("width")-7),n.attr(a);var o=n.select(".js-link-to-tool"),s=n.select(".js-link-spacer"),l=n.select(".js-sourcelinks");e._context.showSources&&e._context.showSources(e),e._context.showLink&&function(e,t){t.text("");var n=t.append("a").attr({"xlink:xlink:href":"#",class:"link--impt link--embedview","font-weight":"bold"}).text(e._context.linkText+" "+String.fromCharCode(187));if(e._context.sendData)n.on("click",(function(){w.sendDataToCloud(e)}));else{var r=window.location.pathname.split("/"),i=window.location.search;n.attr({"xlink:xlink:show":"new","xlink:xlink:href":"/"+r[2].split(".")[0]+"/"+r[1]+i})}}(e,o),s.text(o.text()&&l.text()?" - ":"")}},w.sendDataToCloud=function(e){var t=(window.PLOTLYENV||{}).BASE_URL||e._context.plotlyServerURL;if(t){e.emit("plotly_beforeexport");var n=r.select(e).append("div").attr("id","hiddenform").style("display","none"),i=n.append("form").attr({action:t+"/external",method:"post",target:"_blank"});return i.append("input").attr({type:"text",name:"data"}).node().value=w.graphJson(e,!1,"keepdata"),i.node().submit(),n.remove(),e.emit("plotly_afterexport"),!1}};var S=["days","shortDays","months","shortMonths","periods","dateTime","date","time","decimal","thousands","grouping","currency"],T=["year","month","dayMonth","dayMonthYear"];function A(e,t){var n=e._context.locale;n||(n="en-US");var r=!1,i={};function a(e){for(var n=!0,a=0;a1&&R.length>1){for(s.getComponentMethod("grid","sizeDefaults")(c,l),o=0;o15&&R.length>15&&0===l.shapes.length&&0===l.images.length,w.linkSubplots(d,l,f,r),w.cleanPlot(d,l,f,r);var j=!(!r._has||!r._has("gl2d")),B=!(!l._has||!l._has("gl2d")),U=!(!r._has||!r._has("cartesian"))||j,H=!(!l._has||!l._has("cartesian"))||B;U&&!H?r._bgLayer.remove():H&&!U&&(l._shouldCreateBgLayer=!0),r._zoomlayer&&!e._dragging&&p({_fullLayout:r}),function(e,t){var n,r=[];t.meta&&(n=t._meta={meta:t.meta,layout:{meta:t.meta}});for(var i=0;i0){var f=1-2*s;r=Math.round(f*r),i=Math.round(f*i)}}var d=w.layoutAttributes.width.min,h=w.layoutAttributes.height.min;r1,v=!t.height&&Math.abs(n.height-i)>1;(v||p)&&(p&&(n.width=r),v&&(n.height=i)),e._initialAutoSize||(e._initialAutoSize={width:r,height:i}),w.sanitizeMargins(n)},w.supplyLayoutModuleDefaults=function(e,t,n,r){var i,a,o,l=s.componentsRegistry,c=t._basePlotModules,f=s.subplotsRegistry.cartesian;for(i in l)(o=l[i]).includeBasePlot&&o.includeBasePlot(e,t);for(var d in c.length||c.push(f),t._has("cartesian")&&(s.getComponentMethod("grid","contentDefaults")(e,t),f.finalizeSubplots(e,t)),t._subplots)t._subplots[d].sort(u.subplotSort);for(a=0;a1&&(n.l/=g,n.r/=g)}if(h){var y=(n.t+n.b)/h;y>1&&(n.t/=y,n.b/=y)}var b=void 0!==n.xl?n.xl:n.x,x=void 0!==n.xr?n.xr:n.x,_=void 0!==n.yt?n.yt:n.y,k=void 0!==n.yb?n.yb:n.y;p[t]={l:{val:b,size:n.l+m},r:{val:x,size:n.r+m},b:{val:k,size:n.b+m},t:{val:_,size:n.t+m}},v[t]=1}else delete p[t],delete v[t];if(!r._replotting)return w.doAutoMargin(e)}},w.doAutoMargin=function(e){var t=e._fullLayout,n=t.width,r=t.height;t._size||(t._size={}),P(t);var i=t._size,a=t.margin,l={t:0,b:0,l:0,r:0},c=u.extendFlat({},i),f=a.l,d=a.r,p=a.t,v=a.b,m=t._pushmargin,g=t._pushmarginIds,y=t.minreducedwidth,b=t.minreducedheight;if(!1!==a.autoexpand){for(var x in m)g[x]||delete m[x];var _=e._fullLayout._reservedMargin;for(var k in _)for(var S in _[k]){var T=_[k][S];l[S]=Math.max(l[S],T)}for(var A in m.base={l:{val:0,size:f},r:{val:1,size:d},t:{val:1,size:p},b:{val:0,size:v}},l){var E=0;for(var C in m)"base"!==C&&o(m[C][A].size)&&(E=m[C][A].size>E?m[C][A].size:E);var M=Math.max(0,a[A]-E);l[A]=Math.max(0,l[A]-M)}for(var O in m){var L=m[O].l||{},I=m[O].b||{},R=L.val,D=L.size,F=I.val,N=I.size,z=n-l.r-l.l,j=r-l.t-l.b;for(var B in m){if(o(D)&&m[B].r){var U=m[B].r.val,H=m[B].r.size;if(U>R){var $=(D*U+(H-z)*R)/(U-R),V=(H*(1-R)+(D-z)*(1-U))/(U-R);$+V>f+d&&(f=$,d=V)}}if(o(N)&&m[B].t){var W=m[B].t.val,q=m[B].t.size;if(W>F){var G=(N*W+(q-j)*F)/(W-F),Z=(q*(1-F)+(N-j)*(1-W))/(W-F);G+Z>v+p&&(v=G,p=Z)}}}}}var Y=u.constrain(n-a.l-a.r,2,y),K=u.constrain(r-a.t-a.b,2,b),X=Math.max(0,n-Y),J=Math.max(0,r-K);if(X){var Q=(f+d)/X;Q>1&&(f/=Q,d/=Q)}if(J){var ee=(v+p)/J;ee>1&&(v/=ee,p/=ee)}if(i.l=Math.round(f)+l.l,i.r=Math.round(d)+l.r,i.t=Math.round(p)+l.t,i.b=Math.round(v)+l.b,i.p=Math.round(a.pad),i.w=Math.round(n)-i.l-i.r,i.h=Math.round(r)-i.t-i.b,!t._replotting&&(w.didMarginChange(c,i)||function(e){if("_redrawFromAutoMarginCount"in e._fullLayout)return!1;var t=h.list(e,"",!0);for(var n in t)if(t[n].autoshift||t[n].shift)return!0;return!1}(e))){"_redrawFromAutoMarginCount"in t?t._redrawFromAutoMarginCount++:t._redrawFromAutoMarginCount=1;var te=3*(1+Object.keys(g).length);if(t._redrawFromAutoMarginCount0&&(e._transitioningWithDuration=!0),e._transitionData._interruptCallbacks.push((function(){r=!0})),n.redraw&&e._transitionData._interruptCallbacks.push((function(){return s.call("redraw",e)})),e._transitionData._interruptCallbacks.push((function(){e.emit("plotly_transitioninterrupted",[])}));var a=0,o=0;function l(){return a++,function(){var t;o++,r||o!==a||(t=i,e._transitionData&&(function(e){if(e)for(;e.length;)e.shift()}(e._transitionData._interruptCallbacks),Promise.resolve().then((function(){if(n.redraw)return s.call("redraw",e)})).then((function(){e._transitioning=!1,e._transitioningWithDuration=!1,e.emit("plotly_transitioned",[])})).then(t)))}}n.runFn(l),setTimeout(l())}))}],a=u.syncOrAsync(i,e);return a&&a.then||(a=Promise.resolve()),a.then((function(){return e}))}w.didMarginChange=function(e,t){for(var n=0;n1)return!0}return!1},w.graphJson=function(e,t,n,r,i,a){(i&&t&&!e._fullData||i&&!t&&!e._fullLayout)&&w.supplyDefaults(e);var o=i?e._fullData:e.data,s=i?e._fullLayout:e.layout,l=(e._transitionData||{})._frames;function c(e,t){if("function"===typeof e)return t?"_function_":null;if(u.isPlainObject(e)){var r,i={};return Object.keys(e).sort().forEach((function(a){if(-1===["_","["].indexOf(a.charAt(0)))if("function"!==typeof e[a]){if("keepdata"===n){if("src"===a.substr(a.length-3))return}else if("keepstream"===n){if("string"===typeof(r=e[a+"src"])&&r.indexOf(":")>0&&!u.isPlainObject(e.stream))return}else if("keepall"!==n&&"string"===typeof(r=e[a+"src"])&&r.indexOf(":")>0)return;i[a]=c(e[a],t)}else t&&(i[a]="_function")})),i}return Array.isArray(e)?e.map((function(e){return c(e,t)})):u.isTypedArray(e)?u.simpleMap(e,u.identity):u.isJSDate(e)?u.ms2DateTimeLocal(+e):e}var f={data:(o||[]).map((function(e){var n=c(e);return t&&delete n.fit,n}))};if(!t&&(f.layout=c(s),i)){var d=s._size;f.layout.computed={margin:{b:d.b,l:d.l,r:d.r,t:d.t}}}return l&&(f.frames=c(l)),a&&(f.config=c(e._context,!0)),"object"===r?f:JSON.stringify(f)},w.modifyFrames=function(e,t){var n,r,i,a=e._transitionData._frames,o=e._transitionData._frameHash;for(n=0;n=0;a--)if(s[a].enabled){n._indexToPoints=s[a]._indexToPoints;break}r&&r.calc&&(o=r.calc(e,n))}Array.isArray(o)&&o[0]||(o=[{x:d,y:d}]),o[0].t||(o[0].t={}),o[0].trace=n,p[t]=o}}for(D(o,c,f),i=0;i1e-10?e:0}function d(e,t,n){t=t||0,n=n||0;for(var r=e.length,i=new Array(r),a=0;a0?n:1/0})),i=r.mod(n+1,t.length);return[t[n],t[i]]},findIntersectionXY:c,findXYatLength:function(e,t,n,r){var i=-t*n,a=t*t+1,o=2*(t*i-n),s=i*i+n*n-e*e,l=Math.sqrt(o*o-4*a*s),c=(-o+l)/(2*a),u=(-o-l)/(2*a);return[[c,t*c+i+r],[u,t*u+i+r]]},clampTiny:f,pathPolygon:function(e,t,n,r,i,a){return"M"+d(u(e,t,n,r),i,a).join("L")},pathPolygonAnnulus:function(e,t,n,r,i,a,o){var s,l;e=90||l>90&&c>=450?1:f<=0&&h<=0?0:Math.max(f,h),t=l<=180&&c>=180||l>180&&c>=540?-1:u>=0&&d>=0?0:Math.min(u,d),n=l<=270&&c>=270||l>270&&c>=630?-1:f>=0&&h>=0?0:Math.min(f,h),r=c>=360?1:u<=0&&d<=0?0:Math.max(u,d),[t,n,r,i]}(p),w=x[2]-x[0],_=x[3]-x[1],k=h/d,S=Math.abs(_/w);k>S?(v=d,b=(h-(m=d*S))/i.h/2,g=[s[0],s[1]],y=[f[0]+b,f[1]-b]):(m=h,b=(d-(v=h/S))/i.w/2,g=[s[0]+b,s[1]-b],y=[f[0],f[1]]),n.xLength2=v,n.yLength2=m,n.xDomain2=g,n.yDomain2=y;var T,A=n.xOffset2=i.l+i.w*g[0],E=n.yOffset2=i.t+i.h*(1-y[1]),C=n.radius=v/w,M=n.innerRadius=n.getHole(t)*C,O=n.cx=A-C*x[0],P=n.cy=E+C*x[3],L=n.cxx=O-A,I=n.cyy=P-E,R=a.side;"counterclockwise"===R?(T=R,R="top"):"clockwise"===R&&(T=R,R="bottom"),n.radialAxis=n.mockAxis(e,t,a,{_id:"x",side:R,_trueSide:T,domain:[M/i.w,C/i.w]}),n.angularAxis=n.mockAxis(e,t,o,{side:"right",domain:[0,Math.PI],autorange:!1}),n.doAutoRange(e,t),n.updateAngularAxis(e,t),n.updateRadialAxis(e,t),n.updateRadialAxisTitle(e,t),n.xaxis=n.mockCartesianAxis(e,t,{_id:"x",domain:g}),n.yaxis=n.mockCartesianAxis(e,t,{_id:"y",domain:y});var N=n.pathSubplot();n.clipPaths.forTraces.select("path").attr("d",N).attr("transform",l(L,I)),r.frontplot.attr("transform",l(A,E)).call(u.setClipUrl,n._hasClipOnAxisFalse?null:n.clipIds.forTraces,n.gd),r.bg.attr("d",N).attr("transform",l(O,P)).call(c.fill,t.bgcolor)},j.mockAxis=function(e,t,n,r){var i=o.extendFlat({},n,r);return p(i,t,e),i},j.mockCartesianAxis=function(e,t,n){var r=this,i=r.isSmith,a=n._id,s=o.extendFlat({type:"linear"},n);h(s,e);var l={x:[0,2],y:[1,3]};return s.setRange=function(){var e=r.sectorBBox,n=l[a],i=r.radialAxis._rl,o=(i[1]-i[0])/(1-r.getHole(t));s.range=[e[n[0]]*o,e[n[1]]*o]},s.isPtWithinRange="x"!==a||i?function(){return!0}:function(e){return r.isPtInside(e)},s.setRange(),s.setScale(),s},j.doAutoRange=function(e,t){var n=this,r=n.gd,i=n.radialAxis,a=n.getRadial(t);v(r,i);var o=i.range;a.range=o.slice(),a._input.range=o.slice(),i._rl=[i.r2l(o[0],null,"gregorian"),i.r2l(o[1],null,"gregorian")]},j.updateRadialAxis=function(e,t){var n=this,r=n.gd,i=n.layers,a=n.radius,u=n.innerRadius,f=n.cx,h=n.cy,p=n.getRadial(t),v=D(n.getSector(t)[0],360),m=n.radialAxis,g=u90&&v<=270&&(m.tickangle=180);var b=y?function(e){var t=I(n,O([e.x,0]));return l(t[0]-f,t[1]-h)}:function(e){return l(m.l2p(e.x)+u,0)},x=y?function(e){return L(n,e.x,-1/0,1/0)}:function(e){return n.pathArc(m.r2p(e.x)+u)},w=B(p);if(n.radialTickLayout!==w&&(i["radial-axis"].selectAll(".xtick").remove(),n.radialTickLayout=w),g){m.setScale();var _=0,k=y?(m.tickvals||[]).filter((function(e){return e>=0})).map((function(e){return d.tickText(m,e,!0,!1)})):d.calcTicks(m),S=y?k:d.clipEnds(m,k),T=d.getTickSigns(m)[2];y&&(("top"===m.ticks&&"bottom"===m.side||"bottom"===m.ticks&&"top"===m.side)&&(T=-T),"top"===m.ticks&&"top"===m.side&&(_=-m.ticklen),"bottom"===m.ticks&&"bottom"===m.side&&(_=m.ticklen)),d.drawTicks(r,m,{vals:k,layer:i["radial-axis"],path:d.makeTickPath(m,0,T),transFn:b,crisp:!1}),d.drawGrid(r,m,{vals:S,layer:i["radial-grid"],path:x,transFn:o.noop,crisp:!1}),d.drawLabels(r,m,{vals:k,layer:i["radial-axis"],transFn:b,labelFns:d.makeLabelFns(m,_)})}var A=n.radialAxisAngle=n.vangles?N(U(F(p.angle),n.vangles)):p.angle,E=l(f,h),C=E+s(-A);H(i["radial-axis"],g&&(p.showticklabels||p.ticks),{transform:C}),H(i["radial-grid"],g&&p.showgrid,{transform:y?"":E}),H(i["radial-line"].select("line"),g&&p.showline,{x1:y?-a:u,y1:0,x2:a,y2:0,transform:C}).attr("stroke-width",p.linewidth).call(c.stroke,p.linecolor)},j.updateRadialAxisTitle=function(e,t,n){if(!this.isSmith){var r=this,i=r.gd,a=r.radius,o=r.cx,s=r.cy,l=r.getRadial(t),c=r.id+"title",f=0;if(l.title){var d=u.bBox(r.layers["radial-axis"].node()).height,h=l.title.font.size,p=l.side;f="top"===p?h:"counterclockwise"===p?-(d+.4*h):d+.8*h}var v=void 0!==n?n:r.radialAxisAngle,m=F(v),g=Math.cos(m),y=Math.sin(m),x=o+a/2*g+f*y,w=s-a/2*y+f*g;r.layers["radial-axis-title"]=b.draw(i,c,{propContainer:l,propName:r.id+".radialaxis.title",placeholder:R(i,"Click to enter radial axis title"),attributes:{x:x,y:w,"text-anchor":"middle"},transform:{rotate:-v}})}},j.updateAngularAxis=function(e,t){var n=this,r=n.gd,i=n.layers,a=n.radius,u=n.innerRadius,f=n.cx,h=n.cy,p=n.getAngular(t),v=n.angularAxis,m=n.isSmith;m||(n.fillViewInitialKey("angularaxis.rotation",p.rotation),v.setGeometry(),v.setScale());var g=m?function(e){var t=I(n,O([0,e.x]));return Math.atan2(t[0]-f,t[1]-h)-Math.PI/2}:function(e){return v.t2g(e.x)};"linear"===v.type&&"radians"===v.thetaunit&&(v.tick0=N(v.tick0),v.dtick=N(v.dtick));var y=function(e){return l(f+a*Math.cos(e),h-a*Math.sin(e))},b=m?function(e){var t=I(n,O([0,e.x]));return l(t[0],t[1])}:function(e){return y(g(e))},x=m?function(e){var t=I(n,O([0,e.x])),r=Math.atan2(t[0]-f,t[1]-h)-Math.PI/2;return l(t[0],t[1])+s(-N(r))}:function(e){var t=g(e);return y(t)+s(-N(t))},w=m?function(e){return P(n,e.x,0,1/0)}:function(e){var t=g(e),n=Math.cos(t),r=Math.sin(t);return"M"+[f+u*n,h-u*r]+"L"+[f+a*n,h-a*r]},_=d.makeLabelFns(v,0).labelStandoff,k={xFn:function(e){var t=g(e);return Math.cos(t)*_},yFn:function(e){var t=g(e),n=Math.sin(t)>0?.2:1;return-Math.sin(t)*(_+e.fontSize*n)+Math.abs(Math.cos(t))*(e.fontSize*A)},anchorFn:function(e){var t=g(e),n=Math.cos(t);return Math.abs(n)<.1?"middle":n>0?"start":"end"},heightFn:function(e,t,n){var r=g(e);return-.5*(1+Math.sin(r))*n}},S=B(p);n.angularTickLayout!==S&&(i["angular-axis"].selectAll("."+v._id+"tick").remove(),n.angularTickLayout=S);var T,E=m?[1/0].concat(v.tickvals||[]).map((function(e){return d.tickText(v,e,!0,!1)})):d.calcTicks(v);if(m&&(E[0].text="\u221e",E[0].fontSize*=1.75),"linear"===t.gridshape?(T=E.map(g),o.angleDelta(T[0],T[1])<0&&(T=T.slice().reverse())):T=null,n.vangles=T,"category"===v.type&&(E=E.filter((function(e){return o.isAngleInsideSector(g(e),n.sectorInRad)}))),v.visible){var C="inside"===v.ticks?-1:1,M=(v.linewidth||1)/2;d.drawTicks(r,v,{vals:E,layer:i["angular-axis"],path:"M"+C*M+",0h"+C*v.ticklen,transFn:x,crisp:!1}),d.drawGrid(r,v,{vals:E,layer:i["angular-grid"],path:w,transFn:o.noop,crisp:!1}),d.drawLabels(r,v,{vals:E,layer:i["angular-axis"],repositionOnUpdate:!0,transFn:b,labelFns:k})}H(i["angular-line"].select("path"),p.showline,{d:n.pathSubplot(),transform:l(f,h)}).attr("stroke-width",p.linewidth).call(c.stroke,p.linecolor)},j.updateFx=function(e,t){this.gd._context.staticPlot||(!this.isSmith&&(this.updateAngularDrag(e),this.updateRadialDrag(e,t,0),this.updateRadialDrag(e,t,1)),this.updateHoverAndMainDrag(e))},j.updateHoverAndMainDrag=function(e){var t,n,s=this,c=s.isSmith,u=s.gd,f=s.layers,d=e._zoomlayer,h=E.MINZOOM,p=E.OFFEDGE,v=s.radius,b=s.innerRadius,k=s.cx,S=s.cy,T=s.cxx,A=s.cyy,M=s.sectorInRad,O=s.vangles,P=s.radialAxis,L=C.clampTiny,I=C.findXYatLength,R=C.findEnclosingVertexAngles,D=E.cornerHalfWidth,F=E.cornerLen/2,N=m.makeDragger(f,"path","maindrag",!1===e.dragmode?"none":"crosshair");r.select(N).attr("d",s.pathSubplot()).attr("transform",l(k,S)),N.onmousemove=function(e){y.hover(u,e,s.id),u._fullLayout._lasthover=N,u._fullLayout._hoversubplot=s.id},N.onmouseout=function(e){u._dragging||g.unhover(u,e)};var z,j,B,U,H,$,V,W,q,G={element:N,gd:u,subplot:s.id,plotinfo:{id:s.id,xaxis:s.xaxis,yaxis:s.yaxis},xaxes:[s.xaxis],yaxes:[s.yaxis]};function Z(e,t){return Math.sqrt(e*e+t*t)}function Y(e,t){return Z(e-T,t-A)}function K(e,t){return Math.atan2(A-t,e-T)}function X(e,t){return[e*Math.cos(t),e*Math.sin(-t)]}function J(e,t){if(0===e)return s.pathSector(2*D);var n=F/e,r=t-n,i=t+n,a=Math.max(0,Math.min(e,v)),o=a-D,l=a+D;return"M"+X(o,r)+"A"+[o,o]+" 0,0,0 "+X(o,i)+"L"+X(l,i)+"A"+[l,l]+" 0,0,1 "+X(l,r)+"Z"}function Q(e,t,n){if(0===e)return s.pathSector(2*D);var r,i,a=X(e,t),o=X(e,n),l=L((a[0]+o[0])/2),c=L((a[1]+o[1])/2);if(l&&c){var u=c/l,f=-1/u,d=I(D,u,l,c);r=I(F,f,d[0][0],d[0][1]),i=I(F,f,d[1][0],d[1][1])}else{var h,p;c?(h=F,p=D):(h=D,p=F),r=[[l-h,c-p],[l+h,c-p]],i=[[l-h,c+p],[l+h,c+p]]}return"M"+r.join("L")+"L"+i.reverse().join("L")+"Z"}function ee(e,t){return t=Math.max(Math.min(t,v),b),eh?(e-1&&1===e&&w(t,u,[s.xaxis],[s.yaxis],s.id,G),n.indexOf("event")>-1&&y.click(u,t,s.id)}G.prepFn=function(e,r,a){var l=u._fullLayout.dragmode,f=N.getBoundingClientRect();u._fullLayout._calcInverseTransform(u);var h=u._fullLayout._invTransform;t=u._fullLayout._invScaleX,n=u._fullLayout._invScaleY;var p=o.apply3DTransform(h)(r-f.left,a-f.top);if(z=p[0],j=p[1],O){var g=C.findPolygonOffset(v,M[0],M[1],O);z+=T+g[0],j+=A+g[1]}switch(l){case"zoom":G.clickFn=se,c||(G.moveFn=O?ie:ne,G.doneFn=ae,function(){B=null,U=null,H=s.pathSubplot(),$=!1;var e=u._fullLayout[s.id];V=i(e.bgcolor).getLuminance(),(W=m.makeZoombox(d,V,k,S,H)).attr("fill-rule","evenodd"),q=m.makeCorners(d,k,S),_(u)}());break;case"select":case"lasso":x(e,r,a,G,l)}},g.init(G)},j.updateRadialDrag=function(e,t,n){var i=this,c=i.gd,u=i.layers,f=i.radius,d=i.innerRadius,h=i.cx,p=i.cy,v=i.radialAxis,y=E.radialDragBoxSize,b=y/2;if(v.visible){var x,w,k,A=F(i.radialAxisAngle),C=v._rl,M=C[0],O=C[1],P=C[n],L=.75*(C[1]-C[0])/(1-i.getHole(t))/f;n?(x=h+(f+b)*Math.cos(A),w=p-(f+b)*Math.sin(A),k="radialdrag"):(x=h+(d-b)*Math.cos(A),w=p-(d-b)*Math.sin(A),k="radialdrag-inner");var I,R,D,z=m.makeRectDragger(u,k,"crosshair",-b,-b,y,y),j={element:z,gd:c};!1===e.dragmode&&(j.dragmode=!1),H(r.select(z),v.visible&&d0===(n?D>M:Dr?function(e){return e<=0}:function(e){return e>=0};e.c2g=function(n){var r=e.c2l(n)-t;return(s(r)?r:0)+o},e.g2c=function(n){return e.l2c(n+t-o)},e.g2p=function(e){return e*a},e.c2p=function(t){return e.g2p(e.c2g(t))}}}(e,t);break;case"angularaxis":!function(e,t){var n=e.type;if("linear"===n){var i=e.d2c,s=e.c2d;e.d2c=function(e,t){return function(e,t){return"degrees"===t?a(e):e}(i(e),t)},e.c2d=function(e,t){return s(function(e,t){return"degrees"===t?o(e):e}(e,t))}}e.makeCalcdata=function(t,i){var a,o,s=t[i],l=t._length,c=function(n){return e.d2c(n,t.thetaunit)};if(s){if(r.isTypedArray(s)&&"linear"===n){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(a=new Array(l),o=0;o0?1:0}function n(e){var t=e[0],n=e[1];if(!isFinite(t)||!isFinite(n))return[1,0];var r=(t+1)*(t+1)+n*n;return[(t*t+n*n-1)/r,2*n/r]}function r(e,t){var n=t[0],r=t[1];return[n*e.radius+e.cx,-r*e.radius+e.cy]}function i(e,t){return t*e.radius}e.exports={smith:n,reactanceArc:function(e,t,a,o){var s=r(e,n([a,t])),l=s[0],c=s[1],u=r(e,n([o,t])),f=u[0],d=u[1];if(0===t)return["M"+l+","+c,"L"+f+","+d].join(" ");var h=i(e,1/Math.abs(t));return["M"+l+","+c,"A"+h+","+h+" 0 0,"+(t<0?1:0)+" "+f+","+d].join(" ")},resistanceArc:function(e,a,o,s){var l=i(e,1/(a+1)),c=r(e,n([a,o])),u=c[0],f=c[1],d=r(e,n([a,s])),h=d[0],p=d[1];if(t(o)!==t(s)){var v=r(e,n([a,0]));return["M"+u+","+f,"A"+l+","+l+" 0 0,"+(00){for(var r=[],i=0;i=u&&(d.min=0,p.min=0,m.min=0,e.aaxis&&delete e.aaxis.min,e.baxis&&delete e.baxis.min,e.caxis&&delete e.caxis.min)}function v(e,t,n,r){var i=d[t._name];function o(n,r){return a.coerce(e,t,i,n,r)}o("uirevision",r.uirevision),t.type="linear";var h=o("color"),p=h!==i.color.dflt?h:n.font.color,v=t._name.charAt(0).toUpperCase(),m="Component "+v,g=o("title.text",m);t._hovertitle=g===m?g:v,a.coerceFont(o,"title.font",{family:n.font.family,size:a.bigFont(n.font.size),color:p}),o("min"),u(e,t,o,"linear"),l(e,t,o,"linear"),s(e,t,o,"linear"),c(e,t,o,{outerTicks:!0}),o("showticklabels")&&(a.coerceFont(o,"tickfont",{family:n.font.family,size:n.font.size,color:p}),o("tickangle"),o("tickformat")),f(e,t,o,{dfltColor:h,bgColor:n.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:i}),o("hoverformat"),o("layer")}e.exports=function(e,t,n){o(e,t,n,{type:"ternary",attributes:d,handleDefaults:p,font:t.font,paper_bgcolor:t.paper_bgcolor})}},64380:function(e,t,n){"use strict";var r=n(39898),i=n(84267),a=n(73972),o=n(71828),s=o.strTranslate,l=o._,c=n(7901),u=n(91424),f=n(21994),d=n(1426).extendFlat,h=n(74875),p=n(89298),v=n(28569),m=n(30211),g=n(64505),y=g.freeMode,b=g.rectMode,x=n(92998),w=n(47322).prepSelect,_=n(47322).selectOnClick,k=n(47322).clearOutline,S=n(47322).clearSelectionsCache,T=n(85555);function A(e,t){this.id=e.id,this.graphDiv=e.graphDiv,this.init(t),this.makeFramework(t),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=A;var E=A.prototype;E.init=function(e){this.container=e._ternarylayer,this.defs=e._defs,this.layoutId=e._uid,this.traceHash={},this.layers={}},E.plot=function(e,t){var n=this,r=t[n.id],i=t._size;n._hasClipOnAxisFalse=!1;for(var a=0;aC*x?i=(a=x)*C:a=(i=b)/C,o=g*i/b,l=y*a/x,n=t.l+t.w*v-i/2,r=t.t+t.h*(1-m)-a/2,h.x0=n,h.y0=r,h.w=i,h.h=a,h.sum=w,h.xaxis={type:"linear",range:[_+2*S-w,w-_-2*k],domain:[v-o/2,v+o/2],_id:"x"},f(h.xaxis,h.graphDiv._fullLayout),h.xaxis.setScale(),h.xaxis.isPtWithinRange=function(e){return e.a>=h.aaxis.range[0]&&e.a<=h.aaxis.range[1]&&e.b>=h.baxis.range[1]&&e.b<=h.baxis.range[0]&&e.c>=h.caxis.range[1]&&e.c<=h.caxis.range[0]},h.yaxis={type:"linear",range:[_,w-k-S],domain:[m-l/2,m+l/2],_id:"y"},f(h.yaxis,h.graphDiv._fullLayout),h.yaxis.setScale(),h.yaxis.isPtWithinRange=function(){return!0};var T=h.yaxis.domain[0],A=h.aaxis=d({},e.aaxis,{range:[_,w-k-S],side:"left",tickangle:(+e.aaxis.tickangle||0)-30,domain:[T,T+l*C],anchor:"free",position:0,_id:"y",_length:i});f(A,h.graphDiv._fullLayout),A.setScale();var E=h.baxis=d({},e.baxis,{range:[w-_-S,k],side:"bottom",domain:h.xaxis.domain,anchor:"free",position:0,_id:"x",_length:i});f(E,h.graphDiv._fullLayout),E.setScale();var M=h.caxis=d({},e.caxis,{range:[w-_-k,S],side:"right",tickangle:(+e.caxis.tickangle||0)+30,domain:[T,T+l*C],anchor:"free",position:0,_id:"y",_length:i});f(M,h.graphDiv._fullLayout),M.setScale();var O="M"+n+","+(r+a)+"h"+i+"l-"+i/2+",-"+a+"Z";h.clipDef.select("path").attr("d",O),h.layers.plotbg.select("path").attr("d",O);var P="M0,"+a+"h"+i+"l-"+i/2+",-"+a+"Z";h.clipDefRelative.select("path").attr("d",P);var L=s(n,r);h.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",L),h.clipDefRelative.select("path").attr("transform",null);var I=s(n-E._offset,r+a);h.layers.baxis.attr("transform",I),h.layers.bgrid.attr("transform",I);var R=s(n+i/2,r)+"rotate(30)"+s(0,-A._offset);h.layers.aaxis.attr("transform",R),h.layers.agrid.attr("transform",R);var D=s(n+i/2,r)+"rotate(-30)"+s(0,-M._offset);h.layers.caxis.attr("transform",D),h.layers.cgrid.attr("transform",D),h.drawAxes(!0),h.layers.aline.select("path").attr("d",A.showline?"M"+n+","+(r+a)+"l"+i/2+",-"+a:"M0,0").call(c.stroke,A.linecolor||"#000").style("stroke-width",(A.linewidth||0)+"px"),h.layers.bline.select("path").attr("d",E.showline?"M"+n+","+(r+a)+"h"+i:"M0,0").call(c.stroke,E.linecolor||"#000").style("stroke-width",(E.linewidth||0)+"px"),h.layers.cline.select("path").attr("d",M.showline?"M"+(n+i/2)+","+r+"l"+i/2+","+a:"M0,0").call(c.stroke,M.linecolor||"#000").style("stroke-width",(M.linewidth||0)+"px"),h.graphDiv._context.staticPlot||h.initInteractions(),u.setClipUrl(h.layers.frontplot,h._hasClipOnAxisFalse?null:h.clipId,h.graphDiv)},E.drawAxes=function(e){var t=this,n=t.graphDiv,r=t.id.substr(7)+"title",i=t.layers,a=t.aaxis,o=t.baxis,s=t.caxis;if(t.drawAx(a),t.drawAx(o),t.drawAx(s),e){var c=Math.max(a.showticklabels?a.tickfont.size/2:0,(s.showticklabels?.75*s.tickfont.size:0)+("outside"===s.ticks?.87*s.ticklen:0)),u=(o.showticklabels?o.tickfont.size:0)+("outside"===o.ticks?o.ticklen:0)+3;i["a-title"]=x.draw(n,"a"+r,{propContainer:a,propName:t.id+".aaxis.title",placeholder:l(n,"Click to enter Component A title"),attributes:{x:t.x0+t.w/2,y:t.y0-a.title.font.size/3-c,"text-anchor":"middle"}}),i["b-title"]=x.draw(n,"b"+r,{propContainer:o,propName:t.id+".baxis.title",placeholder:l(n,"Click to enter Component B title"),attributes:{x:t.x0-u,y:t.y0+t.h+.83*o.title.font.size+u,"text-anchor":"middle"}}),i["c-title"]=x.draw(n,"c"+r,{propContainer:s,propName:t.id+".caxis.title",placeholder:l(n,"Click to enter Component C title"),attributes:{x:t.x0+t.w+u,y:t.y0+t.h+.83*s.title.font.size+u,"text-anchor":"middle"}})}},E.drawAx=function(e){var t,n=this,r=n.graphDiv,i=e._name,a=i.charAt(0),s=e._id,l=n.layers[i],c=a+"tickLayout",u=(t=e).ticks+String(t.ticklen)+String(t.showticklabels);n[c]!==u&&(l.selectAll("."+s+"tick").remove(),n[c]=u),e.setScale();var f=p.calcTicks(e),d=p.clipEnds(e,f),h=p.makeTransTickFn(e),v=p.getTickSigns(e)[2],m=o.deg2rad(30),g=v*(e.linewidth||1)/2,y=v*e.ticklen,b=n.w,x=n.h,w="b"===a?"M0,"+g+"l"+Math.sin(m)*y+","+Math.cos(m)*y:"M"+g+",0l"+Math.cos(m)*y+","+-Math.sin(m)*y,_={a:"M0,0l"+x+",-"+b/2,b:"M0,0l-"+b/2+",-"+x,c:"M0,0l-"+x+","+b/2}[a];p.drawTicks(r,e,{vals:"inside"===e.ticks?d:f,layer:l,path:w,transFn:h,crisp:!1}),p.drawGrid(r,e,{vals:d,layer:n.layers[a+"grid"],path:_,transFn:h,crisp:!1}),p.drawLabels(r,e,{vals:f,layer:l,transFn:h,labelFns:p.makeLabelFns(e,0,30)})};var M=T.MINZOOM/2+.87,O="m-0.87,.5h"+M+"v3h-"+(M+5.2)+"l"+(M/2+2.6)+",-"+(.87*M+4.5)+"l2.6,1.5l-"+M/2+","+.87*M+"Z",P="m0.87,.5h-"+M+"v3h"+(M+5.2)+"l-"+(M/2+2.6)+",-"+(.87*M+4.5)+"l-2.6,1.5l"+M/2+","+.87*M+"Z",L="m0,1l"+M/2+","+.87*M+"l2.6,-1.5l-"+(M/2+2.6)+",-"+(.87*M+4.5)+"l-"+(M/2+2.6)+","+(.87*M+4.5)+"l2.6,1.5l"+M/2+",-"+.87*M+"Z",I=!0;function R(e){r.select(e).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}E.clearOutline=function(){S(this.dragOptions),k(this.dragOptions.gd)},E.initInteractions=function(){var e,t,n,r,f,d,h,p,g,x,k,S,A=this,E=A.layers.plotbg.select("path").node(),M=A.graphDiv,D=M._fullLayout._zoomlayer;function F(e){var t={};return t[A.id+".aaxis.min"]=e.a,t[A.id+".baxis.min"]=e.b,t[A.id+".caxis.min"]=e.c,t}function N(e,t){var n=M._fullLayout.clickmode;R(M),2===e&&(M.emit("plotly_doubleclick",null),a.call("_guiRelayout",M,F({a:0,b:0,c:0}))),n.indexOf("select")>-1&&1===e&&_(t,M,[A.xaxis],[A.yaxis],A.id,A.dragOptions),n.indexOf("event")>-1&&m.click(M,t,A.id)}function z(e,t){return 1-t/A.h}function j(e,t){return 1-(e+(A.h-t)/Math.sqrt(3))/A.w}function B(e,t){return(e-(A.h-t)/Math.sqrt(3))/A.w}function U(i,a){var o=n+i*e,s=r+a*t,l=Math.max(0,Math.min(1,z(0,r),z(0,s))),c=Math.max(0,Math.min(1,j(n,r),j(o,s))),u=Math.max(0,Math.min(1,B(n,r),B(o,s))),v=(l/2+u)*A.w,m=(1-l/2-c)*A.w,y=(v+m)/2,b=m-v,w=(1-l)*A.h,_=w-b/C;b.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),S.transition().style("opacity",1).duration(200),x=!0),M.emit("plotly_relayouting",F(h))}function H(){R(M),h!==f&&(a.call("_guiRelayout",M,F(h)),I&&M.data&&M._context.showTips&&(o.notifier(l(M,"Double-click to zoom back out"),"long"),I=!1))}function $(e,t){var n=e/A.xaxis._m,r=t/A.yaxis._m,i=[(h={a:f.a-r,b:f.b+(n+r)/2,c:f.c-(n-r)/2}).a,h.b,h.c].sort(o.sorterAsc),a=i.indexOf(h.a),l=i.indexOf(h.b),c=i.indexOf(h.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),h={a:i[a],b:i[l],c:i[c]},t=(f.a-h.a)*A.yaxis._m,e=(f.c-h.c-f.b+h.b)*A.xaxis._m);var d=s(A.x0+e,A.y0+t);A.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",d);var p=s(-e,-t);A.clipDefRelative.select("path").attr("transform",p),A.aaxis.range=[h.a,A.sum-h.b-h.c],A.baxis.range=[A.sum-h.a-h.c,h.b],A.caxis.range=[A.sum-h.a-h.b,h.c],A.drawAxes(!1),A._hasClipOnAxisFalse&&A.plotContainer.select(".scatterlayer").selectAll(".trace").call(u.hideOutsideRangePoints,A),M.emit("plotly_relayouting",F(h))}function V(){a.call("_guiRelayout",M,F(h))}this.dragOptions={element:E,gd:M,plotinfo:{id:A.id,domain:M._fullLayout[A.id].domain,xaxis:A.xaxis,yaxis:A.yaxis},subplot:A.id,prepFn:function(a,l,u){A.dragOptions.xaxes=[A.xaxis],A.dragOptions.yaxes=[A.yaxis],e=M._fullLayout._invScaleX,t=M._fullLayout._invScaleY;var v=A.dragOptions.dragmode=M._fullLayout.dragmode;y(v)?A.dragOptions.minDrag=1:A.dragOptions.minDrag=void 0,"zoom"===v?(A.dragOptions.moveFn=U,A.dragOptions.clickFn=N,A.dragOptions.doneFn=H,function(e,t,a){var l=E.getBoundingClientRect();n=t-l.left,r=a-l.top,M._fullLayout._calcInverseTransform(M);var u=M._fullLayout._invTransform,v=o.apply3DTransform(u)(n,r);n=v[0],r=v[1],f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},h=f,d=A.aaxis.range[1]-f.a,p=i(A.graphDiv._fullLayout[A.id].bgcolor).getLuminance(),g="M0,"+A.h+"L"+A.w/2+", 0L"+A.w+","+A.h+"Z",x=!1,k=D.append("path").attr("class","zoombox").attr("transform",s(A.x0,A.y0)).style({fill:p>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("d",g),S=D.append("path").attr("class","zoombox-corners").attr("transform",s(A.x0,A.y0)).style({fill:c.background,stroke:c.defaultLine,"stroke-width":1,opacity:0}).attr("d","M0,0Z"),A.clearOutline(M)}(0,l,u)):"pan"===v?(A.dragOptions.moveFn=$,A.dragOptions.clickFn=N,A.dragOptions.doneFn=V,f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},h=f,A.clearOutline(M)):(b(v)||y(v))&&w(a,l,u,A.dragOptions,v)}},E.onmousemove=function(e){m.hover(M,e,A.id),M._fullLayout._lasthover=E,M._fullLayout._hoversubplot=A.id},E.onmouseout=function(e){M._dragging||v.unhover(M,e)},v.init(this.dragOptions)}},73972:function(e,t,n){"use strict";var r=n(47769),i=n(64213),a=n(75138),o=n(41965),s=n(24401).addStyleRule,l=n(1426),c=n(9012),u=n(10820),f=l.extendFlat,d=l.extendDeepAll;function h(e){var n=e.name,i=e.categories,a=e.meta;if(t.modules[n])r.log("Type "+n+" already registered");else{t.subplotsRegistry[e.basePlotModule.name]||function(e){var n=e.name;if(t.subplotsRegistry[n])r.log("Plot type "+n+" already registered.");else for(var i in g(e),t.subplotsRegistry[n]=e,t.componentsRegistry)x(i,e.name)}(e.basePlotModule);for(var o={},l=0;l-1&&(f[h[n]].title={text:""});for(n=0;n")?"":t.html(e).text()}));return t.remove(),n}(_)).replace(/&(?!\w+;|\#[0-9]+;| \#x[0-9A-F]+;)/g,"&")).replace(u,"'"),i.isIE()&&(_=(_=(_=_.replace(/"/gi,"'")).replace(/(\('#)([^']*)('\))/gi,'("#$2")')).replace(/(\\')/gi,'"')),_}},75341:function(e,t,n){"use strict";var r=n(71828);e.exports=function(e,t){for(var n=0;nf+c||!r(u))}for(var h=0;ha))return t}return void 0!==n?n:e.dflt},t.coerceColor=function(e,t,n){return i(t).isValid()?t:void 0!==n?n:e.dflt},t.coerceEnumerated=function(e,t,n){return e.coerceNumber&&(t=+t),-1!==e.values.indexOf(t)?t:void 0!==n?n:e.dflt},t.getValue=function(e,t){var n;return Array.isArray(e)?t0?t+=n:u<0&&(t-=n)}return t}function R(e){var t=u,n=e.b,i=I(e);return r.inbox(n-t,i-t,w+(i-t)/(i-n)-1)}var D=e[f+"a"],F=e[d+"a"];v=Math.abs(D.r2c(D.range[1])-D.r2c(D.range[0]));var N=r.getDistanceFunction(i,h,p,(function(e){return(h(e)+p(e))/2}));if(r.getClosest(m,N,e),!1!==e.index&&m[e.index].p!==c){S||(M=function(e){return Math.min(T(e),e.p-y.bargroupwidth/2)},O=function(e){return Math.max(A(e),e.p+y.bargroupwidth/2)});var z=m[e.index],j=g.base?z.b+z.s:z.s;e[d+"0"]=e[d+"1"]=F.c2p(z[d],!0),e[d+"LabelVal"]=j;var B=y.extents[y.extents.round(z.p)];e[f+"0"]=D.c2p(b?M(z):B[0],!0),e[f+"1"]=D.c2p(b?O(z):B[1],!0);var U=void 0!==z.orig_p;return e[f+"LabelVal"]=U?z.orig_p:z.p,e.labelLabel=l(D,e[f+"LabelVal"],g[f+"hoverformat"]),e.valueLabel=l(F,e[d+"LabelVal"],g[d+"hoverformat"]),e.baseLabel=l(F,z.b,g[d+"hoverformat"]),e.spikeDistance=(function(e){var t=u,n=e.b,i=I(e);return r.inbox(n-t,i-t,_+(i-t)/(i-n)-1)}(z)+function(e){return P(T(e),A(e),_)}(z))/2,e[f+"Spike"]=D.c2p(z.p,!0),o(z,g,e),e.hovertemplate=g.hovertemplate,e}}function f(e,t){var n=t.mcc||e.marker.color,r=t.mlcc||e.marker.line.color,i=s(e,t);return a.opacity(n)?n:a.opacity(r)&&i?r:void 0}e.exports={hoverPoints:function(e,t,n,r,a){var o=u(e,t,n,r,a);if(o){var s=o.cd,l=s[0].trace,c=s[o.index];return o.color=f(l,c),i.getComponentMethod("errorbars","hoverInfo")(c,l,o),[o]}},hoverOnBars:u,getTraceColor:f}},60822:function(e,t,n){"use strict";e.exports={attributes:n(1486),layoutAttributes:n(43641),supplyDefaults:n(90769).supplyDefaults,crossTraceDefaults:n(90769).crossTraceDefaults,supplyLayoutDefaults:n(13957),calc:n(92290),crossTraceCalc:n(11661).crossTraceCalc,colorbar:n(4898),arraysToCalcdata:n(75341),plot:n(17295).plot,style:n(16688).style,styleOnSelect:n(16688).styleOnSelect,hoverPoints:n(95423).hoverPoints,eventData:n(58065),selectPoints:n(81974),moduleType:"trace",name:"bar",basePlotModule:n(93612),categories:["bar-like","cartesian","svg","bar","oriented","errorBarsOK","showLegend","zoomScale"],animatable:!0,meta:{}}},43641:function(e){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","group","overlay","relative"],dflt:"group",editType:"calc"},barnorm:{valType:"enumerated",values:["","fraction","percent"],dflt:"",editType:"calc"},bargap:{valType:"number",min:0,max:1,editType:"calc"},bargroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},13957:function(e,t,n){"use strict";var r=n(73972),i=n(89298),a=n(71828),o=n(43641);e.exports=function(e,t,n){function s(n,r){return a.coerce(e,t,o,n,r)}for(var l=!1,c=!1,u=!1,f={},d=s("barmode"),h=0;h0}function E(e){return"auto"===e?0:e}function C(e,t){var n=Math.PI/180*t,r=Math.abs(Math.sin(n)),i=Math.abs(Math.cos(n));return{x:e.width*i+e.height*r,y:e.width*r+e.height*i}}function M(e,t,n,r,i,a){var o=!!a.isHorizontal,s=!!a.constrained,l=a.angle||0,c=a.anchor||"end",u="end"===c,f="start"===c,d=((a.leftToRight||0)+1)/2,h=1-d,p=i.width,v=i.height,m=Math.abs(t-e),g=Math.abs(r-n),y=m>2*w&&g>2*w?w:0;m-=2*y,g-=2*y;var b=E(l);"auto"!==l||p<=m&&v<=g||!(p>m||v>g)||(p>g||v>m)&&p.01?W:function(e,t,n){return n&&e===t?e:Math.abs(e-t)>=2?W(e):e>t?Math.ceil(e):Math.floor(e)};j=q(j,B,F),B=q(B,j,F),U=q(U,H,!F),H=q(H,U,!F)}var G=T(a.ensureSingle(I,"path"),P,m,g);if(G.style("vector-effect",L?"none":"non-scaling-stroke").attr("d",isNaN((B-j)*(H-U))||$&&e._context.staticPlot?"M0,0Z":"M"+j+","+U+"V"+H+"H"+B+"V"+U+"Z").call(l.setClipUrl,t.layerClipId,e),!P.uniformtext.mode&&N){var Z=l.makePointStyleFns(f);l.singlePointStyle(c,G,f,Z,e)}!function(e,t,n,r,i,s,c,f,h,m,g){var _,k=t.xaxis,A=t.yaxis,O=e._fullLayout;function P(t,n,r){return a.ensureSingle(t,"text").text(n).attr({class:"bartext bartext-"+_,"text-anchor":"middle","data-notex":1}).call(l.font,r).call(o.convertToTspans,e)}var L=r[0].trace,I="h"===L.orientation,R=function(e,t,n,r,i){var o,s=t[0].trace,l=s.texttemplate;return o=l?function(e,t,n,r,i){var o=t[0].trace,s=a.castOption(o,n,"texttemplate");if(!s)return"";var l,c,f,d,h="histogram"===o.type,p="waterfall"===o.type,v="funnel"===o.type,m="h"===o.orientation;function g(e){return u(c,c.c2l(e),!0).text}function y(e){return u(d,d.c2l(e),!0).text}m?(l="y",c=i,f="x",d=r):(l="x",c=r,f="y",d=i);var b=t[n],w={};w.label=b.p,w.labelLabel=w[l+"Label"]=g(b.p);var _=a.castOption(o,b.i,"text");(0===_||_)&&(w.text=_),w.value=b.s,w.valueLabel=w[f+"Label"]=y(b.s);var k={};x(k,o,b.i),(h||void 0===k.x)&&(k.x=m?w.value:w.label),(h||void 0===k.y)&&(k.y=m?w.label:w.value),(h||void 0===k.xLabel)&&(k.xLabel=m?w.valueLabel:w.labelLabel),(h||void 0===k.yLabel)&&(k.yLabel=m?w.labelLabel:w.valueLabel),p&&(w.delta=+b.rawS||b.s,w.deltaLabel=y(w.delta),w.final=b.v,w.finalLabel=y(w.final),w.initial=w.final-w.delta,w.initialLabel=y(w.initial)),v&&(w.value=b.s,w.valueLabel=y(w.value),w.percentInitial=b.begR,w.percentInitialLabel=a.formatPercent(b.begR),w.percentPrevious=b.difR,w.percentPreviousLabel=a.formatPercent(b.difR),w.percentTotal=b.sumR,w.percenTotalLabel=a.formatPercent(b.sumR));var S=a.castOption(o,b.i,"customdata");return S&&(w.customdata=S),a.texttemplateString(s,w,e._d3locale,k,w,o._meta||{})}(e,t,n,r,i):s.textinfo?function(e,t,n,r){var i=e[0].trace,o="h"===i.orientation,s="waterfall"===i.type,l="funnel"===i.type;function c(e){return u(o?r:n,e,!0).text}function f(e){return u(o?n:r,+e,!0).text}var d,h=i.textinfo,p=e[t],v=h.split("+"),m=[],g=function(e){return-1!==v.indexOf(e)};if(g("label")&&m.push(c(e[t].p)),g("text")&&(0===(d=a.castOption(i,p.i,"text"))||d)&&m.push(d),s){var y=+p.rawS||p.s,b=p.v,x=b-y;g("initial")&&m.push(f(x)),g("delta")&&m.push(f(y)),g("final")&&m.push(f(b))}if(l){g("value")&&m.push(f(p.s));var w=0;g("percent initial")&&w++,g("percent previous")&&w++,g("percent total")&&w++;var _=w>1;g("percent initial")&&(d=a.formatPercent(p.begR),_&&(d+=" of initial"),m.push(d)),g("percent previous")&&(d=a.formatPercent(p.difR),_&&(d+=" of previous"),m.push(d)),g("percent total")&&(d=a.formatPercent(p.sumR),_&&(d+=" of total"),m.push(d))}return m.join("
")}(t,n,r,i):v.getValue(s.text,n),v.coerceString(y,o)}(O,r,i,k,A);_=function(e,t){var n=v.getValue(e.textposition,t);return v.coerceEnumerated(b,n)}(L,i);var D="stack"===m.mode||"relative"===m.mode,F=r[i],N=!D||F._outmost;if(R&&"none"!==_&&(!F.isBlank&&s!==c&&f!==h||"auto"!==_&&"inside"!==_)){var z=O.font,j=p.getBarColor(r[i],L),B=p.getInsideTextFont(L,i,z,j),U=p.getOutsideTextFont(L,i,z),H=n.datum();I?"log"===k.type&&H.s0<=0&&(s=k.range[0]0&&q>0&&(W<=Z&&q<=Y||W<=Y&&q<=Z||(I?Z>=W*(Y/q):Y>=q*(Z/W)))?_="inside":(_="outside",$.remove(),$=null)):_="inside"),!$){var K=($=P(n,R,G=a.ensureUniformFontSize(e,"outside"===_?U:B))).attr("transform");if($.attr("transform",""),W=(V=l.bBox($.node())).width,q=V.height,$.attr("transform",K),W<=0||q<=0)return void $.remove()}var X,J=L.textangle;X="outside"===_?function(e,t,n,r,i,a){var o,s=!!a.isHorizontal,l=!!a.constrained,c=a.angle||0,u=i.width,f=i.height,d=Math.abs(t-e),h=Math.abs(r-n);o=s?h>2*w?w:0:d>2*w?w:0;var p=1;l&&(p=s?Math.min(1,h/f):Math.min(1,d/u));var v=E(c),m=C(i,v),g=(s?m.x:m.y)/2,y=(i.left+i.right)/2,b=(i.top+i.bottom)/2,x=(e+t)/2,_=(n+r)/2,k=0,T=0,A=s?S(t,e):S(n,r);return s?(x=t-A*o,k=A*g):(_=r+A*o,T=-A*g),{textX:y,textY:b,targetX:x,targetY:_,anchorX:k,anchorY:T,scale:p,rotate:v}}(s,c,f,h,V,{isHorizontal:I,constrained:"both"===L.constraintext||"outside"===L.constraintext,angle:J}):M(s,c,f,h,V,{isHorizontal:I,constrained:"both"===L.constraintext||"inside"===L.constraintext,angle:J,anchor:L.insidetextanchor}),X.fontSize=G.size,d("histogram"===L.type?"bar":L.type,X,O),F.transform=X;var Q=T($,O,m,g);a.setTransormAndDisplay(Q,X)}else n.select("text").remove()}(e,t,I,n,h,j,B,U,H,m,g),t.layerClipId&&l.hideOutsideRangePoint(c,I.select("text"),_,O,f.xcalendar,f.ycalendar)}));var U=!1===f.cliponaxis;l.setClipUrl(c,U?null:t.layerClipId,e)}));c.getComponentMethod("errorbars","plot")(e,I,t,m)},toMoveInsideBar:M}},81974:function(e){"use strict";function t(e,t,n,r,i){var a=t.c2p(r?e.s0:e.p0,!0),o=t.c2p(r?e.s1:e.p1,!0),s=n.c2p(r?e.p0:e.s0,!0),l=n.c2p(r?e.p1:e.s1,!0);return i?[(a+o)/2,(s+l)/2]:r?[o,(s+l)/2]:[(a+o)/2,l]}e.exports=function(e,n){var r,i=e.cd,a=e.xaxis,o=e.yaxis,s=i[0].trace,l="funnel"===s.type,c="h"===s.orientation,u=[];if(!1===n)for(r=0;r1||0===i.bargap&&0===i.bargroupgap&&!e[0].trace.marker.line.width)&&r.select(this).attr("shape-rendering","crispEdges")})),t.selectAll("g.points").each((function(t){p(r.select(this),t[0].trace,e)})),s.getComponentMethod("errorbars","style")(t)},styleTextPoints:v,styleOnSelect:function(e,t,n){var i=t[0].trace;i.selectedpoints?function(e,t,n){a.selectedPointStyle(e.selectAll("path"),t),function(e,t,n){e.each((function(e){var i,s=r.select(this);if(e.selected){i=o.ensureUniformFontSize(n,m(s,e,t,n));var l=t.selected.textfont&&t.selected.textfont.color;l&&(i.color=l),a.font(s,i)}else a.selectedTextStyle(s,t)}))}(e.selectAll("text"),t,n)}(n,i,e):(p(n,i,e),s.getComponentMethod("errorbars","style")(n))},getInsideTextFont:y,getOutsideTextFont:b,getBarColor:w,resizeText:l}},98340:function(e,t,n){"use strict";var r=n(7901),i=n(52075).hasColorscale,a=n(1586),o=n(71828).coercePattern;e.exports=function(e,t,n,s,l){var c=n("marker.color",s),u=i(e,"marker");u&&a(e,t,l,n,{prefix:"marker.",cLetter:"c"}),n("marker.line.color",r.defaultLine),i(e,"marker.line")&&a(e,t,l,n,{prefix:"marker.line.",cLetter:"c"}),n("marker.line.width"),n("marker.opacity"),o(n,"marker.pattern",c,u),n("selected.marker.color"),n("unselected.marker.color")}},72597:function(e,t,n){"use strict";var r=n(39898),i=n(71828);function a(e){return"_"+e+"Text_minsize"}e.exports={recordMinTextSize:function(e,t,n){if(n.uniformtext.mode){var r=a(e),i=n.uniformtext.minsize,o=t.scale*t.fontSize;t.hide=od.range[1]&&(b+=Math.PI),r.getClosest(c,(function(e){return v(y,b,[e.rp0,e.rp1],[e.thetag0,e.thetag1],p)?m+Math.min(1,Math.abs(e.thetag1-e.thetag0)/g)-1+(e.rp1-y)/(e.rp1-e.rp0)-1:1/0}),e),!1!==e.index){var x=c[e.index];e.x0=e.x1=x.ct[0],e.y0=e.y1=x.ct[1];var w=i.extendFlat({},x,{r:x.s,theta:x.p});return o(x,u,e),s(w,u,f,e),e.hovertemplate=u.hovertemplate,e.color=a(u,x),e.xLabelVal=e.yLabelVal=void 0,x.s<0&&(e.idealAlign="left"),[e]}}},23381:function(e,t,n){"use strict";e.exports={moduleType:"trace",name:"barpolar",basePlotModule:n(23580),categories:["polar","bar","showLegend"],attributes:n(55023),layoutAttributes:n(40151),supplyDefaults:n(6135),supplyLayoutDefaults:n(19860),calc:n(74692).calc,crossTraceCalc:n(74692).crossTraceCalc,plot:n(60173),colorbar:n(4898),formatLabels:n(98608),style:n(16688).style,styleOnSelect:n(16688).styleOnSelect,hoverPoints:n(27379),selectPoints:n(81974),meta:{}}},40151:function(e){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","overlay"],dflt:"stack",editType:"calc"},bargap:{valType:"number",dflt:.1,min:0,max:1,editType:"calc"}}},19860:function(e,t,n){"use strict";var r=n(71828),i=n(40151);e.exports=function(e,t,n){var a,o={};function s(n,o){return r.coerce(e[a]||{},t[a],i,n,o)}for(var l=0;l0?(c=o,u=l):(c=l,u=o);var f=[s.findEnclosingVertexAngles(c,e.vangles)[0],(c+u)/2,s.findEnclosingVertexAngles(u,e.vangles)[1]];return s.pathPolygonAnnulus(r,i,c,u,f,t,n)}:function(e,r,i,o){return a.pathAnnulus(e,r,i,o,t,n)}}(t),p=t.layers.frontplot.select("g.barlayer");a.makeTraceGroups(p,n,"trace bars").each((function(){var n=r.select(this),s=a.ensureSingle(n,"g","points").selectAll("g.point").data(a.identity);s.enter().append("g").style("vector-effect",l?"none":"non-scaling-stroke").style("stroke-miterlimit",2).classed("point",!0),s.exit().remove(),s.each((function(e){var t,n=r.select(this),o=e.rp0=f.c2p(e.s0),s=e.rp1=f.c2p(e.s1),l=e.thetag0=d.c2g(e.p0),p=e.thetag1=d.c2g(e.p1);if(i(o)&&i(s)&&i(l)&&i(p)&&o!==s&&l!==p){var v=f.c2g(e.s1),m=(l+p)/2;e.ct=[c.c2p(v*Math.cos(m)),u.c2p(v*Math.sin(m))],t=h(o,s,l,p)}else t="M0,0Z";a.ensureSingle(n,"path").attr("d",t)})),o.setClipUrl(n,t._hasClipOnAxisFalse?t.clipIds.forTraces:null,e)}))}},53522:function(e,t,n){"use strict";var r=n(82196),i=n(1486),a=n(22399),o=n(12663).axisHoverFormat,s=n(5386).fF,l=n(1426).extendFlat,c=r.marker,u=c.line;e.exports={y:{valType:"data_array",editType:"calc+clearAxisTypes"},x:{valType:"data_array",editType:"calc+clearAxisTypes"},x0:{valType:"any",editType:"calc+clearAxisTypes"},y0:{valType:"any",editType:"calc+clearAxisTypes"},dx:{valType:"number",editType:"calc"},dy:{valType:"number",editType:"calc"},xperiod:r.xperiod,yperiod:r.yperiod,xperiod0:r.xperiod0,yperiod0:r.yperiod0,xperiodalignment:r.xperiodalignment,yperiodalignment:r.yperiodalignment,xhoverformat:o("x"),yhoverformat:o("y"),name:{valType:"string",editType:"calc+clearAxisTypes"},q1:{valType:"data_array",editType:"calc+clearAxisTypes"},median:{valType:"data_array",editType:"calc+clearAxisTypes"},q3:{valType:"data_array",editType:"calc+clearAxisTypes"},lowerfence:{valType:"data_array",editType:"calc"},upperfence:{valType:"data_array",editType:"calc"},notched:{valType:"boolean",editType:"calc"},notchwidth:{valType:"number",min:0,max:.5,dflt:.25,editType:"calc"},notchspan:{valType:"data_array",editType:"calc"},boxpoints:{valType:"enumerated",values:["all","outliers","suspectedoutliers",!1],editType:"calc"},jitter:{valType:"number",min:0,max:1,editType:"calc"},pointpos:{valType:"number",min:-2,max:2,editType:"calc"},sdmultiple:{valType:"number",min:0,editType:"calc",dflt:1},sizemode:{valType:"enumerated",values:["quartiles","sd"],editType:"calc",dflt:"quartiles"},boxmean:{valType:"enumerated",values:[!0,"sd",!1],editType:"calc"},mean:{valType:"data_array",editType:"calc"},sd:{valType:"data_array",editType:"calc"},orientation:{valType:"enumerated",values:["v","h"],editType:"calc+clearAxisTypes"},quartilemethod:{valType:"enumerated",values:["linear","exclusive","inclusive"],dflt:"linear",editType:"calc"},width:{valType:"number",min:0,dflt:0,editType:"calc"},marker:{outliercolor:{valType:"color",dflt:"rgba(0, 0, 0, 0)",editType:"style"},symbol:l({},c.symbol,{arrayOk:!1,editType:"plot"}),opacity:l({},c.opacity,{arrayOk:!1,dflt:1,editType:"style"}),angle:l({},c.angle,{arrayOk:!1,editType:"calc"}),size:l({},c.size,{arrayOk:!1,editType:"calc"}),color:l({},c.color,{arrayOk:!1,editType:"style"}),line:{color:l({},u.color,{arrayOk:!1,dflt:a.defaultLine,editType:"style"}),width:l({},u.width,{arrayOk:!1,dflt:0,editType:"style"}),outliercolor:{valType:"color",editType:"style"},outlierwidth:{valType:"number",min:0,dflt:1,editType:"style"},editType:"style"},editType:"plot"},line:{color:{valType:"color",editType:"style"},width:{valType:"number",min:0,dflt:2,editType:"style"},editType:"plot"},fillcolor:r.fillcolor,whiskerwidth:{valType:"number",min:0,max:1,dflt:.5,editType:"calc"},showwhiskers:{valType:"boolean",editType:"calc"},offsetgroup:i.offsetgroup,alignmentgroup:i.alignmentgroup,selected:{marker:r.selected.marker,editType:"style"},unselected:{marker:r.unselected.marker,editType:"style"},text:l({},r.text,{}),hovertext:l({},r.hovertext,{}),hovertemplate:s({}),hoveron:{valType:"flaglist",flags:["boxes","points"],dflt:"boxes+points",editType:"style"}}},48518:function(e,t,n){"use strict";var r=n(92770),i=n(89298),a=n(42973),o=n(71828),s=n(50606).BADNUM,l=o._;e.exports=function(e,t){var n,c,y,b,x,w,_,k=e._fullLayout,S=i.getFromId(e,t.xaxis||"x"),T=i.getFromId(e,t.yaxis||"y"),A=[],E="violin"===t.type?"_numViolins":"_numBoxes";"h"===t.orientation?(y=S,b="x",x=T,w="y",_=!!t.yperiodalignment):(y=T,b="y",x=S,w="x",_=!!t.xperiodalignment);var C,M,O,P,L,I,R=function(e,t,n,i){var s,l=t in e,c=t+"0"in e,u="d"+t in e;if(l||c&&u){var f=n.makeCalcdata(e,t);return[a(e,n,t,f).vals,f]}s=c?e[t+"0"]:"name"in e&&("category"===n.type||r(e.name)&&-1!==["linear","log"].indexOf(n.type)||o.isDateTime(e.name)&&"date"===n.type)?e.name:i;for(var d="multicategory"===n.type?n.r2c_just_indices(s):n.d2c(s,0,e[t+"calendar"]),h=e._length,p=new Array(h),v=0;vC.uf};if(t._hasPreCompStats){var U=t[b],H=function(e){return y.d2c((t[e]||[])[n])},$=1/0,V=-1/0;for(n=0;n=C.q1&&C.q3>=C.med){var q=H("lowerfence");C.lf=q!==s&&q<=C.q1?q:h(C,O,P);var G=H("upperfence");C.uf=G!==s&&G>=C.q3?G:p(C,O,P);var Z=H("mean");C.mean=Z!==s?Z:P?o.mean(O,P):(C.q1+C.q3)/2;var Y=H("sd");C.sd=Z!==s&&Y>=0?Y:P?o.stdev(O,P,C.mean):C.q3-C.q1,C.lo=v(C),C.uo=m(C);var K=H("notchspan");K=K!==s&&K>0?K:g(C,P),C.ln=C.med-K,C.un=C.med+K;var X=C.lf,J=C.uf;t.boxpoints&&O.length&&(X=Math.min(X,O[0]),J=Math.max(J,O[P-1])),t.notched&&(X=Math.min(X,C.ln),J=Math.max(J,C.un)),C.min=X,C.max=J}else{var Q;o.warn(["Invalid input - make sure that q1 <= median <= q3","q1 = "+C.q1,"median = "+C.med,"q3 = "+C.q3].join("\n")),Q=C.med!==s?C.med:C.q1!==s?C.q3!==s?(C.q1+C.q3)/2:C.q1:C.q3!==s?C.q3:0,C.med=Q,C.q1=C.q3=Q,C.lf=C.uf=Q,C.mean=C.sd=Q,C.ln=C.un=Q,C.min=C.max=Q}$=Math.min($,C.min),V=Math.max(V,C.max),C.pts2=M.filter(B),A.push(C)}}t._extremes[y._id]=i.findExtremes(y,[$,V],{padded:!0})}else{var ee=y.makeCalcdata(t,b),te=function(e,t){for(var n=e.length,r=new Array(n+1),i=0;i=0&&ie0){var ue,fe;(C={}).pos=C[w]=z[n],M=C.pts=re[n].sort(f),P=(O=C[b]=M.map(d)).length,C.min=O[0],C.max=O[P-1],C.mean=o.mean(O,P),C.sd=o.stdev(O,P,C.mean)*t.sdmultiple,C.med=o.interp(O,.5),P%2&&(le||ce)?(le?(ue=O.slice(0,P/2),fe=O.slice(P/2+1)):ce&&(ue=O.slice(0,P/2+1),fe=O.slice(P/2)),C.q1=o.interp(ue,.5),C.q3=o.interp(fe,.5)):(C.q1=o.interp(O,.25),C.q3=o.interp(O,.75)),C.lf=h(C,O,P),C.uf=p(C,O,P),C.lo=v(C),C.uo=m(C);var de=g(C,P);C.ln=C.med-de,C.un=C.med+de,ae=Math.min(ae,C.ln),oe=Math.max(oe,C.un),C.pts2=M.filter(B),A.push(C)}t._extremes[y._id]=i.findExtremes(y,t.notched?ee.concat([ae,oe]):ee,{padded:!0})}return function(e,t){if(o.isArrayOrTypedArray(t.selectedpoints))for(var n=0;n0?(A[0].t={num:k[E],dPos:j,posLetter:w,valLetter:b,labels:{med:l(e,"median:"),min:l(e,"min:"),q1:l(e,"q1:"),q3:l(e,"q3:"),max:l(e,"max:"),mean:"sd"===t.boxmean||"sd"===t.sizemode?l(e,"mean \xb1 \u03c3:").replace("\u03c3",1===t.sdmultiple?"\u03c3":t.sdmultiple+"\u03c3"):l(e,"mean:"),lf:l(e,"lower fence:"),uf:l(e,"upper fence:")}},k[E]++,A):[{t:{empty:!0}}]};var c={text:"tx",hovertext:"htx"};function u(e,t,n){for(var r in c)o.isArrayOrTypedArray(t[r])&&(Array.isArray(n)?o.isArrayOrTypedArray(t[r][n[0]])&&(e[c[r]]=t[r][n[0]][n[1]]):e[c[r]]=t[r][n])}function f(e,t){return e.v-t.v}function d(e){return e.v}function h(e,t,n){return 0===n?e.q1:Math.min(e.q1,t[Math.min(o.findBin(2.5*e.q1-1.5*e.q3,t,!0)+1,n-1)])}function p(e,t,n){return 0===n?e.q3:Math.max(e.q3,t[Math.max(o.findBin(2.5*e.q3-1.5*e.q1,t),0)])}function v(e){return 4*e.q1-3*e.q3}function m(e){return 4*e.q3-3*e.q1}function g(e,t){return 0===t?0:1.57*(e.q3-e.q1)/Math.sqrt(t)}},37188:function(e,t,n){"use strict";var r=n(89298),i=n(71828),a=n(99082).getAxisGroup,o=["v","h"];function s(e,t,n,o){var s,l,c,u=t.calcdata,f=t._fullLayout,d=o._id,h=d.charAt(0),p=[],v=0;for(s=0;s1,x=1-f[e+"gap"],w=1-f[e+"groupgap"];for(s=0;s0){var V=C.pointpos,W=C.jitter,q=C.marker.size/2,G=0;V+W>=0&&((G=H*(V+W))>A?($=!0,B=q,z=G):G>F&&(B=q,z=A)),G<=A&&(z=A);var Z=0;V-W<=0&&((Z=-H*(V-W))>E?($=!0,U=q,j=Z):Z>N&&(U=q,j=E)),Z<=E&&(j=E)}else z=A,j=E;var Y=new Array(c.length);for(l=0;l0?(m="v",g=b>0?Math.min(w,x):Math.min(x)):b>0?(m="h",g=Math.min(w)):g=0;if(g){t._length=g;var E=n("orientation",m);t._hasPreCompStats?"v"===E&&0===b?(n("x0",0),n("dx",1)):"h"===E&&0===y&&(n("y0",0),n("dy",1)):"v"===E&&0===b?n("x0"):"h"===E&&0===y&&n("y0"),i.getComponentMethod("calendars","handleTraceDefaults")(e,t,["x","y"],a)}else t.visible=!1}function f(e,t,n,i){var a=i.prefix,o=r.coerce2(e,t,c,"marker.outliercolor"),s=n("marker.line.outliercolor"),l="outliers";t._hasPreCompStats?l="all":(o||s)&&(l="suspectedoutliers");var u=n(a+"points",l);u?(n("jitter","all"===u?.3:0),n("pointpos","all"===u?-1.5:0),n("marker.symbol"),n("marker.opacity"),n("marker.size"),n("marker.angle"),n("marker.color",t.line.color),n("marker.line.color"),n("marker.line.width"),"suspectedoutliers"===u&&(n("marker.line.outliercolor",t.marker.color),n("marker.line.outlierwidth")),n("selected.marker.color"),n("unselected.marker.color"),n("selected.marker.size"),n("unselected.marker.size"),n("text"),n("hovertext")):delete t.marker;var f=n("hoveron");"all"!==f&&-1===f.indexOf("points")||n("hovertemplate"),r.coerceSelectionMarkerOpacity(t,n)}e.exports={supplyDefaults:function(e,t,n,i){function s(n,i){return r.coerce(e,t,c,n,i)}if(u(e,t,s,i),!1!==t.visible){o(e,t,i,s),s("xhoverformat"),s("yhoverformat");var l=t._hasPreCompStats;l&&(s("lowerfence"),s("upperfence")),s("line.color",(e.marker||{}).color||n),s("line.width"),s("fillcolor",a.addOpacity(t.line.color,.5));var d=!1;if(l){var h=s("mean"),p=s("sd");h&&h.length&&(d=!0,p&&p.length&&(d="sd"))}s("whiskerwidth");var v,m=s("sizemode");"quartiles"===m&&(v=s("boxmean",d)),s("showwhiskers","quartiles"===m),"sd"!==m&&"sd"!==v||s("sdmultiple"),s("width"),s("quartilemethod");var g=!1;if(l){var y=s("notchspan");y&&y.length&&(g=!0)}else r.validate(e.notchwidth,c.notchwidth)&&(g=!0);s("notched",g)&&s("notchwidth"),f(e,t,s,{prefix:"box"})}},crossTraceDefaults:function(e,t){var n,i;function a(e){return r.coerce(i._input,i,c,e)}for(var o=0;oe.lo&&(w.so=!0)}return a}));p.enter().append("path").classed("point",!0),p.exit().remove(),p.call(a.translatePoints,l,c)}function u(e,t,n,a){var o,s,l=t.val,c=t.pos,u=!!c.rangebreaks,f=a.bPos,d=a.bPosPxOffset||0,h=n.boxmean||(n.meanline||{}).visible;Array.isArray(a.bdPos)?(o=a.bdPos[0],s=a.bdPos[1]):(o=a.bdPos,s=a.bdPos);var p=e.selectAll("path.mean").data("box"===n.type&&n.boxmean||"violin"===n.type&&n.box.visible&&n.meanline.visible?i.identity:[]);p.enter().append("path").attr("class","mean").style({fill:"none","vector-effect":"non-scaling-stroke"}),p.exit().remove(),p.each((function(e){var t=c.c2l(e.pos+f,!0),i=c.l2p(t-o)+d,a=c.l2p(t+s)+d,p=u?(i+a)/2:c.l2p(t)+d,v=l.c2p(e.mean,!0),m=l.c2p(e.mean-e.sd,!0),g=l.c2p(e.mean+e.sd,!0);"h"===n.orientation?r.select(this).attr("d","M"+v+","+i+"V"+a+("sd"===h?"m0,0L"+m+","+p+"L"+v+","+i+"L"+g+","+p+"Z":"")):r.select(this).attr("d","M"+i+","+v+"H"+a+("sd"===h?"m0,0L"+p+","+m+"L"+i+","+v+"L"+p+","+g+"Z":""))}))}e.exports={plot:function(e,t,n,a){var o=e._context.staticPlot,s=t.xaxis,f=t.yaxis;i.makeTraceGroups(a,n,"trace boxes").each((function(e){var t,n,i=r.select(this),a=e[0],d=a.t,h=a.trace;d.wdPos=d.bdPos*h.whiskerwidth,!0!==h.visible||d.empty?i.remove():("h"===h.orientation?(t=f,n=s):(t=s,n=f),l(i,{pos:t,val:n},h,d,o),c(i,{x:s,y:f},h,d),u(i,{pos:t,val:n},h,d))}))},plotBoxAndWhiskers:l,plotPoints:c,plotBoxMean:u}},24626:function(e){"use strict";e.exports=function(e,t){var n,r,i=e.cd,a=e.xaxis,o=e.yaxis,s=[];if(!1===t)for(n=0;n=10)return null;for(var n=1/0,a=-1/0,o=e.length,s=0;s0?Math.floor:Math.ceil,L=M>0?Math.ceil:Math.floor,I=M>0?Math.min:Math.max,R=M>0?Math.max:Math.min,D=P(E+O),F=L(C-O),N=[[f=A(E)]];for(a=D;a*M=0;i--)a[u-i]=e[f][i],o[u-i]=t[f][i];for(s.push({x:a,y:o,bicubic:l}),i=f,a=[],o=[];i>=0;i--)a[f-i]=e[i][0],o[f-i]=t[i][0];return s.push({x:a,y:o,bicubic:c}),s}},20347:function(e,t,n){"use strict";var r=n(89298),i=n(1426).extendFlat;e.exports=function(e,t,n){var a,o,s,l,c,u,f,d,h,p,v,m,g,y,b=e["_"+t],x=e[t+"axis"],w=x._gridlines=[],_=x._minorgridlines=[],k=x._boundarylines=[],S=e["_"+n],T=e[n+"axis"];"array"===x.tickmode&&(x.tickvals=b.slice());var A=e._xctrl,E=e._yctrl,C=A[0].length,M=A.length,O=e._a.length,P=e._b.length;r.prepTicks(x),"array"===x.tickmode&&delete x.tickvals;var L=x.smoothing?3:1;function I(r){var i,a,o,s,l,c,u,f,h,p,v,m,g=[],y=[],b={};if("b"===t)for(a=e.b2j(r),o=Math.floor(Math.max(0,Math.min(P-2,a))),s=a-o,b.length=P,b.crossLength=O,b.xy=function(t){return e.evalxy([],t,a)},b.dxy=function(t,n){return e.dxydi([],t,o,n,s)},i=0;i0&&(h=e.dxydi([],i-1,o,0,s),g.push(l[0]+h[0]/3),y.push(l[1]+h[1]/3),p=e.dxydi([],i-1,o,1,s),g.push(f[0]-p[0]/3),y.push(f[1]-p[1]/3)),g.push(f[0]),y.push(f[1]),l=f;else for(i=e.a2i(r),c=Math.floor(Math.max(0,Math.min(O-2,i))),u=i-c,b.length=O,b.crossLength=P,b.xy=function(t){return e.evalxy([],i,t)},b.dxy=function(t,n){return e.dxydj([],c,t,u,n)},a=0;a0&&(v=e.dxydj([],c,a-1,u,0),g.push(l[0]+v[0]/3),y.push(l[1]+v[1]/3),m=e.dxydj([],c,a-1,u,1),g.push(f[0]-m[0]/3),y.push(f[1]-m[1]/3)),g.push(f[0]),y.push(f[1]),l=f;return b.axisLetter=t,b.axis=x,b.crossAxis=T,b.value=r,b.constvar=n,b.index=d,b.x=g,b.y=y,b.smoothing=T.smoothing,b}function R(r){var i,a,o,s,l,c=[],u=[],f={};if(f.length=b.length,f.crossLength=S.length,"b"===t)for(o=Math.max(0,Math.min(P-2,r)),l=Math.min(1,Math.max(0,r-o)),f.xy=function(t){return e.evalxy([],t,r)},f.dxy=function(t,n){return e.dxydi([],t,o,n,l)},i=0;ib.length-1||w.push(i(R(o),{color:x.gridcolor,width:x.gridwidth,dash:x.griddash}));for(d=u;db.length-1)&&!(v<0||v>b.length-1))for(m=b[s],g=b[v],a=0;ab[b.length-1]||_.push(i(I(p),{color:x.minorgridcolor,width:x.minorgridwidth,dash:x.minorgriddash}));x.startline&&k.push(i(R(0),{color:x.startlinecolor,width:x.startlinewidth})),x.endline&&k.push(i(R(b.length-1),{color:x.endlinecolor,width:x.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((b[b.length-1]-x.tick0)/x.dtick*(1+l)),Math.ceil((b[0]-x.tick0)/x.dtick/(1+l))].sort((function(e,t){return e-t})))[0],f=c[1],d=u;d<=f;d++)h=x.tick0+x.dtick*d,w.push(i(I(h),{color:x.gridcolor,width:x.gridwidth,dash:x.griddash}));for(d=u-1;db[b.length-1]||_.push(i(I(p),{color:x.minorgridcolor,width:x.minorgridwidth,dash:x.minorgriddash}));x.startline&&k.push(i(I(b[0]),{color:x.startlinecolor,width:x.startlinewidth})),x.endline&&k.push(i(I(b[b.length-1]),{color:x.endlinecolor,width:x.endlinewidth}))}}},83311:function(e,t,n){"use strict";var r=n(89298),i=n(1426).extendFlat;e.exports=function(e,t){var n,a,o,s=t._labels=[],l=t._gridlines;for(n=0;nt.length&&(e=e.slice(0,t.length)):e=[],i=0;i90&&(h-=180,l=-l),{angle:h,flip:l,p:e.c2p(r,t,n),offsetMultplier:c}}},89740:function(e,t,n){"use strict";var r=n(39898),i=n(91424),a=n(27669),o=n(67961),s=n(11651),l=n(63893),c=n(71828),u=c.strRotate,f=c.strTranslate,d=n(18783);function h(e,t,n,s,l,c,u){var f="const-"+l+"-lines",d=n.selectAll("."+f).data(c);d.enter().append("path").classed(f,!0).style("vector-effect",u?"none":"non-scaling-stroke"),d.each((function(n){var s=n,l=s.x,c=s.y,u=a([],l,e.c2p),f=a([],c,t.c2p),d="M"+o(u,f,s.smoothing);r.select(this).attr("d",d).style("stroke-width",s.width).style("stroke",s.color).style("stroke-dasharray",i.dashStyle(s.dash,s.width)).style("fill","none")})),d.exit().remove()}function p(e,t,n,a,o,c,d,h){var p=c.selectAll("text."+h).data(d);p.enter().append("text").classed(h,!0);var v=0,m={};return p.each((function(o,c){var d;if("auto"===o.axis.tickangle)d=s(a,t,n,o.xy,o.dxy);else{var h=(o.axis.tickangle+180)*Math.PI/180;d=s(a,t,n,o.xy,[Math.cos(h),Math.sin(h)])}c||(m={angle:d.angle,flip:d.flip});var p=(o.endAnchor?-1:1)*d.flip,g=r.select(this).attr({"text-anchor":p>0?"start":"end","data-notex":1}).call(i.font,o.font).text(o.text).call(l.convertToTspans,e),y=i.bBox(this);g.attr("transform",f(d.p[0],d.p[1])+u(d.angle)+f(o.axis.labelpadding*p,.3*y.height)),v=Math.max(v,y.width+o.axis.labelpadding)})),p.exit().remove(),m.maxExtent=v,m}e.exports=function(e,t,n,i){var l=e._context.staticPlot,u=t.xaxis,f=t.yaxis,d=e._fullLayout._clips;c.makeTraceGroups(i,n,"trace").each((function(t){var n=r.select(this),i=t[0],v=i.trace,m=v.aaxis,y=v.baxis,b=c.ensureSingle(n,"g","minorlayer"),x=c.ensureSingle(n,"g","majorlayer"),w=c.ensureSingle(n,"g","boundarylayer"),_=c.ensureSingle(n,"g","labellayer");n.style("opacity",v.opacity),h(u,f,x,0,"a",m._gridlines,!0),h(u,f,x,0,"b",y._gridlines,!0),h(u,f,b,0,"a",m._minorgridlines,!0),h(u,f,b,0,"b",y._minorgridlines,!0),h(u,f,w,0,"a-boundary",m._boundarylines,l),h(u,f,w,0,"b-boundary",y._boundarylines,l);var k=p(e,u,f,v,0,_,m._labels,"a-label"),S=p(e,u,f,v,0,_,y._labels,"b-label");!function(e,t,n,r,i,a,o,l){var u,f,d,h,p=c.aggNums(Math.min,null,n.a),v=c.aggNums(Math.max,null,n.a),m=c.aggNums(Math.min,null,n.b),y=c.aggNums(Math.max,null,n.b);u=.5*(p+v),f=m,d=n.ab2xy(u,f,!0),h=n.dxyda_rough(u,f),void 0===o.angle&&c.extendFlat(o,s(n,i,a,d,n.dxydb_rough(u,f))),g(e,t,n,0,d,h,n.aaxis,i,a,o,"a-title"),u=p,f=.5*(m+y),d=n.ab2xy(u,f,!0),h=n.dxydb_rough(u,f),void 0===l.angle&&c.extendFlat(l,s(n,i,a,d,n.dxyda_rough(u,f))),g(e,t,n,0,d,h,n.baxis,i,a,l,"b-title")}(e,_,v,0,u,f,k,S),function(e,t,n,r,i){var s,l,u,f,d=n.select("#"+e._clipPathId);d.size()||(d=n.append("clipPath").classed("carpetclip",!0));var h=c.ensureSingle(d,"path","carpetboundary"),p=t.clipsegments,v=[];for(f=0;f90&&y<270,x=r.select(this);x.text(d.title.text).call(l.convertToTspans,e),b&&(w=(-l.lineCount(x)+m)*v*a-w),x.attr("transform",f(t.p[0],t.p[1])+u(t.angle)+f(0,w)).attr("text-anchor","middle").call(i.font,d.title.font)})),x.exit().remove()}},11435:function(e,t,n){"use strict";var r=n(35509),i=n(65888).findBin,a=n(45664),o=n(20349),s=n(54495),l=n(73057);e.exports=function(e){var t=e._a,n=e._b,c=t.length,u=n.length,f=e.aaxis,d=e.baxis,h=t[0],p=t[c-1],v=n[0],m=n[u-1],g=t[t.length-1]-t[0],y=n[n.length-1]-n[0],b=g*r.RELATIVE_CULL_TOLERANCE,x=y*r.RELATIVE_CULL_TOLERANCE;h-=b,p+=b,v-=x,m+=x,e.isVisible=function(e,t){return e>h&&ev&&tp||tm},e.setScale=function(){var t=e._x,n=e._y,r=a(e._xctrl,e._yctrl,t,n,f.smoothing,d.smoothing);e._xctrl=r[0],e._yctrl=r[1],e.evalxy=o([e._xctrl,e._yctrl],c,u,f.smoothing,d.smoothing),e.dxydi=s([e._xctrl,e._yctrl],f.smoothing,d.smoothing),e.dxydj=l([e._xctrl,e._yctrl],f.smoothing,d.smoothing)},e.i2a=function(e){var n=Math.max(0,Math.floor(e[0]),c-2),r=e[0]-n;return(1-r)*t[n]+r*t[n+1]},e.j2b=function(e){var t=Math.max(0,Math.floor(e[1]),c-2),r=e[1]-t;return(1-r)*n[t]+r*n[t+1]},e.ij2ab=function(t){return[e.i2a(t[0]),e.j2b(t[1])]},e.a2i=function(e){var n=Math.max(0,Math.min(i(e,t),c-2)),r=t[n],a=t[n+1];return Math.max(0,Math.min(c-1,n+(e-r)/(a-r)))},e.b2j=function(e){var t=Math.max(0,Math.min(i(e,n),u-2)),r=n[t],a=n[t+1];return Math.max(0,Math.min(u-1,t+(e-r)/(a-r)))},e.ab2ij=function(t){return[e.a2i(t[0]),e.b2j(t[1])]},e.i2c=function(t,n){return e.evalxy([],t,n)},e.ab2xy=function(r,i,a){if(!a&&(rt[c-1]|in[u-1]))return[!1,!1];var o=e.a2i(r),s=e.b2j(i),l=e.evalxy([],o,s);if(a){var f,d,h,p,v=0,m=0,g=[];rt[c-1]?(f=c-2,d=1,v=(r-t[c-1])/(t[c-1]-t[c-2])):d=o-(f=Math.max(0,Math.min(c-2,Math.floor(o)))),in[u-1]?(h=u-2,p=1,m=(i-n[u-1])/(n[u-1]-n[u-2])):p=s-(h=Math.max(0,Math.min(u-2,Math.floor(s)))),v&&(e.dxydi(g,f,h,d,p),l[0]+=g[0]*v,l[1]+=g[1]*v),m&&(e.dxydj(g,f,h,d,p),l[0]+=g[0]*m,l[1]+=g[1]*m)}return l},e.c2p=function(e,t,n){return[t.c2p(e[0]),n.c2p(e[1])]},e.p2x=function(e,t,n){return[t.p2c(e[0]),n.p2c(e[1])]},e.dadi=function(e){var n=Math.max(0,Math.min(t.length-2,e));return t[n+1]-t[n]},e.dbdj=function(e){var t=Math.max(0,Math.min(n.length-2,e));return n[t+1]-n[t]},e.dxyda=function(t,n,r,i){var a=e.dxydi(null,t,n,r,i),o=e.dadi(t,r);return[a[0]/o,a[1]/o]},e.dxydb=function(t,n,r,i){var a=e.dxydj(null,t,n,r,i),o=e.dbdj(n,i);return[a[0]/o,a[1]/o]},e.dxyda_rough=function(t,n,r){var i=g*(r||.1),a=e.ab2xy(t+i,n,!0),o=e.ab2xy(t-i,n,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},e.dxydb_rough=function(t,n,r){var i=y*(r||.1),a=e.ab2xy(t,n+i,!0),o=e.ab2xy(t,n-i,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},e.dpdx=function(e){return e._m},e.dpdy=function(e){return e._m}}},72505:function(e,t,n){"use strict";var r=n(71828);e.exports=function(e,t,n){var i,a,o,s=[],l=[],c=e[0].length,u=e.length;function f(t,n){var r,i=0,a=0;return t>0&&void 0!==(r=e[n][t-1])&&(a++,i+=r),t0&&void 0!==(r=e[n-1][t])&&(a++,i+=r),n0&&a0&&i1e-5);return r.log("Smoother converged to",S,"after",T,"iterations"),e}},19237:function(e,t,n){"use strict";var r=n(71828).isArray1D;e.exports=function(e,t,n){var i=n("x"),a=i&&i.length,o=n("y"),s=o&&o.length;if(!a&&!s)return!1;if(t._cheater=!i,a&&!r(i)||s&&!r(o))t._length=null;else{var l=a?i.length:1/0;s&&(l=Math.min(l,o.length)),t.a&&t.a.length&&(l=Math.min(l,t.a.length)),t.b&&t.b.length&&(l=Math.min(l,t.b.length)),t._length=l}return!0}},69568:function(e,t,n){"use strict";var r=n(5386).fF,i=n(19316),a=n(50693),o=n(9012),s=n(22399).defaultLine,l=n(1426).extendFlat,c=i.marker.line;e.exports=l({locations:{valType:"data_array",editType:"calc"},locationmode:i.locationmode,z:{valType:"data_array",editType:"calc"},geojson:l({},i.geojson,{}),featureidkey:i.featureidkey,text:l({},i.text,{}),hovertext:l({},i.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:"calc"},opacity:{valType:"number",arrayOk:!0,min:0,max:1,dflt:1,editType:"style"},editType:"calc"},selected:{marker:{opacity:i.selected.marker.opacity,editType:"plot"},editType:"plot"},unselected:{marker:{opacity:i.unselected.marker.opacity,editType:"plot"},editType:"plot"},hoverinfo:l({},o.hoverinfo,{editType:"calc",flags:["location","z","text","name"]}),hovertemplate:r(),showlegend:l({},o.showlegend,{dflt:!1})},a("",{cLetter:"z",editTypeOverride:"calc"}))},38675:function(e,t,n){"use strict";var r=n(92770),i=n(50606).BADNUM,a=n(78803),o=n(75225),s=n(66279);function l(e){return e&&"string"===typeof e}e.exports=function(e,t){var n,c=t._length,u=new Array(c);n=t.geojson?function(e){return l(e)||r(e)}:l;for(var f=0;f")}}(e,f,o),[e]}},51319:function(e,t,n){"use strict";e.exports={attributes:n(69568),supplyDefaults:n(61869),colorbar:n(61243),calc:n(38675),calcGeoJSON:n(99841).calcGeoJSON,plot:n(99841).plot,style:n(99636).style,styleOnSelect:n(99636).styleOnSelect,hoverPoints:n(42300),eventData:n(92069),selectPoints:n(81253),moduleType:"trace",name:"choropleth",basePlotModule:n(44622),categories:["geo","noOpacity","showLegend"],meta:{}}},99841:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=n(41327),o=n(90973).getTopojsonFeatures,s=n(71739).findExtremes,l=n(99636).style;e.exports={calcGeoJSON:function(e,t){for(var n=e[0].trace,r=t[n.geo],i=r._subplot,l=n.locationmode,c=n._length,u="geojson-id"===l?a.extractTraceFeature(e):o(n,i.topojson),f=[],d=[],h=0;h=0;r--){var i=n[r].id;if("string"===typeof i&&0===i.indexOf("water"))for(var a=r+1;a=0;n--)e.removeLayer(t[n][1])},s.dispose=function(){var e=this.subplot.map;this._removeLayers(),e.removeSource(this.sourceId)},e.exports=function(e,t){var n=t[0].trace,i=new o(e,n.uid),a=i.sourceId,s=r(t),l=i.below=e.belowLookup["trace-"+n.uid];return e.map.addSource(a,{type:"geojson",data:s.geojson}),i._addLayers(s,l),t[0].trace._glTrace=i,i}},12674:function(e,t,n){"use strict";var r=n(50693),i=n(12663).axisHoverFormat,a=n(5386).fF,o=n(2418),s=n(9012),l=n(1426).extendFlat,c={x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},u:{valType:"data_array",editType:"calc"},v:{valType:"data_array",editType:"calc"},w:{valType:"data_array",editType:"calc"},sizemode:{valType:"enumerated",values:["scaled","absolute"],editType:"calc",dflt:"scaled"},sizeref:{valType:"number",editType:"calc",min:0},anchor:{valType:"enumerated",editType:"calc",values:["tip","tail","cm","center"],dflt:"cm"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:a({editType:"calc"},{keys:["norm"]}),uhoverformat:i("u",1),vhoverformat:i("v",1),whoverformat:i("w",1),xhoverformat:i("x"),yhoverformat:i("y"),zhoverformat:i("z"),showlegend:l({},s.showlegend,{dflt:!1})};l(c,r("",{colorAttr:"u/v/w norm",showScaleDflt:!0,editTypeOverride:"calc"})),["opacity","lightposition","lighting"].forEach((function(e){c[e]=o[e]})),c.hoverinfo=l({},s.hoverinfo,{editType:"calc",flags:["x","y","z","u","v","w","norm","text","name"],dflt:"x+y+z+norm+text+name"}),c.transforms=void 0,e.exports=c},31371:function(e,t,n){"use strict";var r=n(78803);e.exports=function(e,t){for(var n=t.u,i=t.v,a=t.w,o=Math.min(t.x.length,t.y.length,t.z.length,n.length,i.length,a.length),s=-1/0,l=1/0,c=0;co.level||o.starts.length&&a===o.level)}break;case"constraint":if(r.prefixBoundary=!1,r.edgepaths.length)return;var s=r.x.length,l=r.y.length,c=-1/0,u=1/0;for(n=0;n":h>c&&(r.prefixBoundary=!0);break;case"<":(hc||r.starts.length&&d===u)&&(r.prefixBoundary=!0);break;case"][":f=Math.min(h[0],h[1]),d=Math.max(h[0],h[1]),fc&&(r.prefixBoundary=!0)}}}},90654:function(e,t,n){"use strict";var r=n(21081),i=n(86068),a=n(53572);e.exports={min:"zmin",max:"zmax",calc:function(e,t,n){var o=t.contours,s=t.line,l=o.size||1,c=o.coloring,u=i(t,{isColorbar:!0});if("heatmap"===c){var f=r.extractOpts(t);n._fillgradient=f.reversescale?r.flipScale(f.colorscale):f.colorscale,n._zrange=[f.min,f.max]}else"fill"===c&&(n._fillcolor=u);n._line={color:"lines"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},n._levels={start:o.start,end:a(o),size:l}}}},36914:function(e){"use strict";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},83179:function(e,t,n){"use strict";var r=n(92770),i=n(14523),a=n(7901),o=a.addOpacity,s=a.opacity,l=n(74808),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(e,t,n,a,l,f){var d,h,p,v=t.contours,m=n("contours.operation");v._operation=c[m],function(e,t){var n;-1===u.indexOf(t.operation)?(e("contours.value",[0,1]),Array.isArray(t.value)?t.value.length>2?t.value=t.value.slice(2):0===t.length?t.value=[0,1]:t.length<2?(n=parseFloat(t.value[0]),t.value=[n,n+1]):t.value=[parseFloat(t.value[0]),parseFloat(t.value[1])]:r(t.value)&&(n=parseFloat(t.value),t.value=[n,n+1])):(e("contours.value",0),r(t.value)||(Array.isArray(t.value)?t.value=parseFloat(t.value[0]):t.value=0))}(n,v),"="===m?d=v.showlines=!0:(d=n("contours.showlines"),p=n("fillcolor",o((e.line||{}).color||l,.5))),d&&(h=n("line.color",p&&s(p)?o(t.fillcolor,1):l),n("line.width",2),n("line.dash")),n("line.smoothing"),i(n,a,h,f)}},64237:function(e,t,n){"use strict";var r=n(74808),i=n(92770);function a(e,t){var n,a=Array.isArray(t);function o(e){return i(e)?+e:null}return-1!==r.COMPARISON_OPS2.indexOf(e)?n=o(a?t[0]:t):-1!==r.INTERVAL_OPS.indexOf(e)?n=a?[o(t[0]),o(t[1])]:[o(t),o(t)]:-1!==r.SET_OPS.indexOf(e)&&(n=a?t.map(o):[o(t)]),n}function o(e){return function(t){t=a(e,t);var n=Math.min(t[0],t[1]),r=Math.max(t[0],t[1]);return{start:n,end:r,size:r-n}}}function s(e){return function(t){return{start:t=a(e,t),end:1/0,size:1/0}}}e.exports={"[]":o("[]"),"][":o("]["),">":s(">"),"<":s("<"),"=":s("=")}},67217:function(e){"use strict";e.exports=function(e,t,n,r){var i=r("contours.start"),a=r("contours.end"),o=!1===i||!1===a,s=n("contours.size");!(o?t.autocontour=!0:n("autocontour",!1))&&s||n("ncontours")}},84857:function(e,t,n){"use strict";var r=n(71828);function i(e){return r.extendFlat({},e,{edgepaths:r.extendDeep([],e.edgepaths),paths:r.extendDeep([],e.paths),starts:r.extendDeep([],e.starts)})}e.exports=function(e,t){var n,a,o,s=function(e){return e.reverse()},l=function(e){return e};switch(t){case"=":case"<":return e;case">":for(1!==e.length&&r.warn("Contour data invalid for the specified inequality operation."),a=e[0],n=0;n1e3){r.warn("Too many contours, clipping at 1000",e);break}return l}},53572:function(e){"use strict";e.exports=function(e){return e.end+e.size/1e6}},81696:function(e,t,n){"use strict";var r=n(71828),i=n(36914);function a(e,t,n,r){return Math.abs(e[0]-t[0])20&&t?208===e||1114===e?r=0===n[0]?1:-1:a=0===n[1]?1:-1:-1!==i.BOTTOMSTART.indexOf(e)?a=1:-1!==i.LEFTSTART.indexOf(e)?r=1:-1!==i.TOPSTART.indexOf(e)?a=-1:r=-1,[r,a]}(d,n,t),p=[l(e,t,[-h[0],-h[1]])],v=e.z.length,m=e.z[0].length,g=t.slice(),y=h.slice();for(u=0;u<1e4;u++){if(d>20?(d=i.CHOOSESADDLE[d][(h[0]||h[1])<0?0:1],e.crossings[f]=i.SADDLEREMAINDER[d]):delete e.crossings[f],!(h=i.NEWDELTA[d])){r.log("Found bad marching index:",d,t,e.level);break}p.push(l(e,t,h)),t[0]+=h[0],t[1]+=h[1],f=t.join(","),a(p[p.length-1],p[p.length-2],s,c)&&p.pop();var b=h[0]&&(t[0]<0||t[0]>m-2)||h[1]&&(t[1]<0||t[1]>v-2);if(t[0]===g[0]&&t[1]===g[1]&&h[0]===y[0]&&h[1]===y[1]||n&&b)break;d=e.crossings[f]}1e4===u&&r.log("Infinite loop in contour?");var x,w,_,k,S,T,A,E,C,M,O,P=a(p[0],p[p.length-1],s,c),L=0,I=.2*e.smoothing,R=[],D=0;for(u=1;u=D;u--)if((x=R[u])=D&&x+R[w]E&&C--,e.edgepaths[C]=O.concat(p,M));break}j||(e.edgepaths[E]=p.concat(M))}for(E=0;E=y)&&(n<=g&&(n=g),o>=y&&(o=y),l=Math.floor((o-n)/s)+1,c=0),d=0;dg&&(v.unshift(g),m.unshift(m[0])),v[v.length-1]e?0:1)+(t[0][1]>e?0:2)+(t[1][1]>e?0:4)+(t[1][0]>e?0:8);return 5===n||10===n?e>(t[0][0]+t[0][1]+t[1][0]+t[1][1])/4?5===n?713:1114:5===n?104:208:15===n?0:n}e.exports=function(e){var t,n,a,o,s,l,c,u,f,d=e[0].z,h=d.length,p=d[0].length,v=2===h||2===p;for(n=0;n=0&&(r=y,s=l):Math.abs(n[1]-r[1])<.01?Math.abs(n[1]-y[1])<.01&&(y[0]-n[0])*(r[0]-y[0])>=0&&(r=y,s=l):i.log("endpt to newendpt is not vert. or horz.",n,r,y)}if(n=r,s>=0)break;f+="L"+r}if(s===e.edgepaths.length){i.log("unclosed perimeter path");break}d=s,(p=-1===h.indexOf(d))&&(d=h[0],f+="Z")}for(d=0;dr.center?r.right-s:s-r.left)/(u+Math.abs(Math.sin(c)*o)),h=(l>r.middle?r.bottom-l:l-r.top)/(Math.abs(f)+Math.cos(c)*o);if(d<1||h<1)return 1/0;var p=g.EDGECOST*(1/(d-1)+1/(h-1));p+=g.ANGLECOST*c*c;for(var v=s-u,m=l-f,y=s+u,b=l+f,x=0;x2*g.MAXCOST)break;h&&(s/=2),l=(o=c-s/2)+1.5*s}if(d<=g.MAXCOST)return u},t.addLabelData=function(e,t,n,r){var i=t.fontSize,a=t.width+i/3,o=Math.max(0,t.height-i/3),s=e.x,l=e.y,c=e.theta,u=Math.sin(c),f=Math.cos(c),d=function(e,t){return[s+e*f-t*u,l+e*u+t*f]},h=[d(-a/2,-o/2),d(-a/2,o/2),d(a/2,o/2),d(a/2,-o/2)];n.push({text:t.text,x:s,y:l,dy:t.dy,theta:c,level:t.level,width:a,height:o}),r.push(h)},t.drawLabels=function(e,t,n,a,o){var l=e.selectAll("text").data(t,(function(e){return e.text+","+e.x+","+e.y+","+e.theta}));if(l.exit().remove(),l.enter().append("text").attr({"data-notex":1,"text-anchor":"middle"}).each((function(e){var t=e.x+Math.sin(e.theta)*e.dy,i=e.y-Math.cos(e.theta)*e.dy;r.select(this).text(e.text).attr({x:t,y:i,transform:"rotate("+180*e.theta/Math.PI+" "+t+" "+i+")"}).call(s.convertToTspans,n)})),o){for(var c="",u=0;un.end&&(n.start=n.end=(n.start+n.end)/2),e._input.contours||(e._input.contours={}),i.extendFlat(e._input.contours,{start:n.start,end:n.end,size:n.size}),e._input.autocontour=!0}else if("constraint"!==n.type){var c,u=n.start,f=n.end,d=e._input.contours;u>f&&(n.start=d.start=f,f=n.end=d.end=u,u=n.start),n.size>0||(c=u===f?1:a(u,f,e.ncontours).dtick,d.size=n.size=c)}}},84426:function(e,t,n){"use strict";var r=n(39898),i=n(91424),a=n(70035),o=n(86068);e.exports=function(e){var t=r.select(e).selectAll("g.contour");t.style("opacity",(function(e){return e[0].trace.opacity})),t.each((function(e){var t=r.select(this),n=e[0].trace,a=n.contours,s=n.line,l=a.size||1,c=a.start,u="constraint"===a.type,f=!u&&"lines"===a.coloring,d=!u&&"fill"===a.coloring,h=f||d?o(n):null;t.selectAll("g.contourlevel").each((function(e){r.select(this).selectAll("path").call(i.lineGroupStyle,s.width,f?h(e.level):s.color,s.dash)}));var p=a.labelfont;if(t.selectAll("g.contourlabels text").each((function(e){i.font(r.select(this),{family:p.family,size:p.size,color:p.color||(f?h(e.level):s.color)})})),u)t.selectAll("g.contourfill path").style("fill",n.fillcolor);else if(d){var v;t.selectAll("g.contourfill path").style("fill",(function(e){return void 0===v&&(v=e.level),h(e.level+.5*l)})),void 0===v&&(v=c),t.selectAll("g.contourbg path").style("fill",h(v-.5*l))}})),a(e)}},8724:function(e,t,n){"use strict";var r=n(1586),i=n(14523);e.exports=function(e,t,n,a,o){var s,l=n("contours.coloring"),c="";"fill"===l&&(s=n("contours.showlines")),!1!==s&&("lines"!==l&&(c=n("line.color","#000")),n("line.width",.5),n("line.dash")),"none"!==l&&(!0!==e.showlegend&&(t.showlegend=!1),t._dfltShowLegend=!1,r(e,t,a,n,{prefix:"",cLetter:"z"})),n("line.smoothing"),i(n,a,c,o)}},88085:function(e,t,n){"use strict";var r=n(21606),i=n(70600),a=n(50693),o=n(1426).extendFlat,s=i.contours;e.exports=o({carpet:{valType:"string",editType:"calc"},z:r.z,a:r.x,a0:r.x0,da:r.dx,b:r.y,b0:r.y0,db:r.dy,text:r.text,hovertext:r.hovertext,transpose:r.transpose,atype:r.xtype,btype:r.ytype,fillcolor:i.fillcolor,autocontour:i.autocontour,ncontours:i.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:"enumerated",values:["fill","lines","none"],dflt:"fill",editType:"calc"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:"calc",impliedEdits:{autocontour:!1}},line:{color:i.line.color,width:i.line.width,dash:i.line.dash,smoothing:i.line.smoothing,editType:"plot"},transforms:void 0},a("",{cLetter:"z",autoColorDflt:!1}))},59885:function(e,t,n){"use strict";var r=n(78803),i=n(71828),a=n(68296),o=n(4742),s=n(824),l=n(43907),c=n(70769),u=n(75005),f=n(22882),d=n(18670);e.exports=function(e,t){var n=t._carpetTrace=f(e,t);if(n&&n.visible&&"legendonly"!==n.visible){if(!t.a||!t.b){var h=e.data[n.index],p=e.data[t.index];p.a||(p.a=h.a),p.b||(p.b=h.b),u(p,t,t._defaultColor,e._fullLayout)}var v=function(e,t){var n,u,f,d,h,p,v,m=t._carpetTrace,g=m.aaxis,y=m.baxis;g._minDtick=0,y._minDtick=0,i.isArray1D(t.z)&&a(t,g,y,"a","b",["z"]),n=t._a=t._a||t.a,d=t._b=t._b||t.b,n=n?g.makeCalcdata(t,"_a"):[],d=d?y.makeCalcdata(t,"_b"):[],u=t.a0||0,f=t.da||1,h=t.b0||0,p=t.db||1,v=t._z=o(t._z||t.z,t.transpose),t._emptypoints=l(v),s(v,t._emptypoints);var b=i.maxRowLength(v),x="scaled"===t.xtype?"":n,w=c(t,x,u,f,b,g),_="scaled"===t.ytype?"":d,k=c(t,_,h,p,v.length,y),S={a:w,b:k,z:v};return"levels"===t.contours.type&&"none"!==t.contours.coloring&&r(e,t,{vals:v,containerStr:"",cLetter:"z"}),[S]}(e,t);return d(t,t._z),v}}},75005:function(e,t,n){"use strict";var r=n(71828),i=n(67684),a=n(88085),o=n(83179),s=n(67217),l=n(8724);e.exports=function(e,t,n,c){function u(n,i){return r.coerce(e,t,a,n,i)}if(u("carpet"),e.a&&e.b){if(!i(e,t,u,c,"a","b"))return void(t.visible=!1);u("text"),"constraint"===u("contours.type")?o(e,t,u,c,n,{hasHover:!1}):(s(e,t,u,(function(n){return r.coerce2(e,t,a,n)})),l(e,t,u,c,{hasHover:!1}))}else t._defaultColor=n,t._length=null}},93740:function(e,t,n){"use strict";e.exports={attributes:n(88085),supplyDefaults:n(75005),colorbar:n(90654),calc:n(59885),plot:n(51048),style:n(84426),moduleType:"trace",name:"contourcarpet",basePlotModule:n(93612),categories:["cartesian","svg","carpet","contour","symbols","showLegend","hasLines","carpetDependent","noHover","noSortingByValue"],meta:{}}},51048:function(e,t,n){"use strict";var r=n(39898),i=n(27669),a=n(67961),o=n(91424),s=n(71828),l=n(87678),c=n(81696),u=n(29854),f=n(36914),d=n(84857),h=n(87558),p=n(20083),v=n(22882),m=n(4536);function g(e,t,n){var r=e.getPointAtLength(t),i=e.getPointAtLength(n),a=i.x-r.x,o=i.y-r.y,s=Math.sqrt(a*a+o*o);return[a/s,o/s]}function y(e){var t=Math.sqrt(e[0]*e[0]+e[1]*e[1]);return[e[0]/t,e[1]/t]}function b(e,t){var n=Math.abs(e[0]*t[0]+e[1]*t[1]);return Math.sqrt(1-n*n)/n}e.exports=function(e,t,n,x){var w=t.xaxis,_=t.yaxis;s.makeTraceGroups(x,n,"contour").each((function(n){var x=r.select(this),k=n[0],S=k.trace,T=S._carpetTrace=v(e,S),A=e.calcdata[T.index][0];if(T.visible&&"legendonly"!==T.visible){var E=k.a,C=k.b,M=S.contours,O=h(M,t,k),P="constraint"===M.type,L=M._operation,I=P?"="===L?"lines":"fill":M.coloring,R=[[E[0],C[C.length-1]],[E[E.length-1],C[C.length-1]],[E[E.length-1],C[0]],[E[0],C[0]]];l(O);var D=1e-8*(E[E.length-1]-E[0]),F=1e-8*(C[C.length-1]-C[0]);c(O,D,F);var N,z,j,B,U=O;"constraint"===M.type&&(U=d(O,L)),function(e,t){var n,r,i,a,o,s,l,c,u;for(n=0;n=0;B--)N=A.clipsegments[B],z=i([],N.x,w.c2p),j=i([],N.y,_.c2p),z.reverse(),j.reverse(),H.push(a(z,j,N.bicubic));var $="M"+H.join("L")+"Z";!function(e,t,n,r,o,l){var c,u,f,d,h=s.ensureSingle(e,"g","contourbg").selectAll("path").data("fill"!==l||o?[]:[0]);h.enter().append("path"),h.exit().remove();var p=[];for(d=0;d=0&&(d=M,p=v):Math.abs(f[1]-d[1])<_?Math.abs(f[1]-M[1])<_&&(M[0]-f[0])*(d[0]-M[0])>=0&&(d=M,p=v):s.log("endpt to newendpt is not vert. or horz.",f,d,M)}if(p>=0)break;y+=E(f,d),f=d}if(p===t.edgepaths.length){s.log("unclosed perimeter path");break}u=p,(x=-1===b.indexOf(u))&&(u=b[0],y+=E(f,d)+"Z",f=null)}for(u=0;uv&&(r.max=v),r.len=r.max-r.min}function m(e,t){var n,r=0,o=.1;return(Math.abs(e[0]-l)0?+h[u]:0),f.push({type:"Feature",geometry:{type:"Point",coordinates:g},properties:y})}}var x=o.extractOpts(t),w=x.reversescale?o.flipScale(x.colorscale):x.colorscale,_=w[0][1],k=["interpolate",["linear"],["heatmap-density"],0,a.opacity(_)<1?_:a.addOpacity(_,0)];for(u=1;u=0;n--)e.removeLayer(t[n][1])},o.dispose=function(){var e=this.subplot.map;this._removeLayers(),e.removeSource(this.sourceId)},e.exports=function(e,t){var n=t[0].trace,i=new a(e,n.uid),o=i.sourceId,s=r(t),l=i.below=e.belowLookup["trace-"+n.uid];return e.map.addSource(o,{type:"geojson",data:s.geojson}),i._addLayers(s,l),i}},49789:function(e,t,n){"use strict";var r=n(71828);e.exports=function(e,t){for(var n=0;n"),l.color=function(e,t){var n=e.marker,i=t.mc||n.color,a=t.mlc||n.line.color,o=t.mlw||n.line.width;return r(i)?i:r(a)&&o?a:void 0}(u,d),[l]}}},51759:function(e,t,n){"use strict";e.exports={attributes:n(1285),layoutAttributes:n(10440),supplyDefaults:n(26199).supplyDefaults,crossTraceDefaults:n(26199).crossTraceDefaults,supplyLayoutDefaults:n(93138),calc:n(9532),crossTraceCalc:n(8984),plot:n(80461),style:n(68266).style,hoverPoints:n(63341),eventData:n(34598),selectPoints:n(81974),moduleType:"trace",name:"funnel",basePlotModule:n(93612),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},10440:function(e){"use strict";e.exports={funnelmode:{valType:"enumerated",values:["stack","group","overlay"],dflt:"stack",editType:"calc"},funnelgap:{valType:"number",min:0,max:1,editType:"calc"},funnelgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},93138:function(e,t,n){"use strict";var r=n(71828),i=n(10440);e.exports=function(e,t,n){var a=!1;function o(n,a){return r.coerce(e,t,i,n,a)}for(var s=0;s path").each((function(e){if(!e.isBlank){var t=s.marker;r.select(this).call(a.fill,e.mc||t.color).call(a.stroke,e.mlc||t.line.color).call(i.dashLine,t.line.dash,e.mlw||t.line.width).style("opacity",s.selectedpoints&&!e.selected?o:1)}})),c(n,s,e),n.selectAll(".regions").each((function(){r.select(this).selectAll("path").style("stroke-width",0).call(a.fill,s.connector.fillcolor)})),n.selectAll(".lines").each((function(){var e=s.connector.line;i.lineGroupStyle(r.select(this).selectAll("path"),e.width,e.color,e.dash)}))}))}}},86807:function(e,t,n){"use strict";var r=n(34e3),i=n(9012),a=n(27670).Y,o=n(5386).fF,s=n(5386).si,l=n(1426).extendFlat;e.exports={labels:r.labels,label0:r.label0,dlabel:r.dlabel,values:r.values,marker:{colors:r.marker.colors,line:{color:l({},r.marker.line.color,{dflt:null}),width:l({},r.marker.line.width,{dflt:1}),editType:"calc"},pattern:r.marker.pattern,editType:"calc"},text:r.text,hovertext:r.hovertext,scalegroup:l({},r.scalegroup,{}),textinfo:l({},r.textinfo,{flags:["label","text","value","percent"]}),texttemplate:s({editType:"plot"},{keys:["label","color","value","text","percent"]}),hoverinfo:l({},i.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:o({},{keys:["label","color","value","text","percent"]}),textposition:l({},r.textposition,{values:["inside","none"],dflt:"inside"}),textfont:r.textfont,insidetextfont:r.insidetextfont,title:{text:r.title.text,font:r.title.font,position:l({},r.title.position,{values:["top left","top center","top right"],dflt:"top center"}),editType:"plot"},domain:a({name:"funnelarea",trace:!0,editType:"calc"}),aspectratio:{valType:"number",min:0,dflt:1,editType:"plot"},baseratio:{valType:"number",min:0,max:1,dflt:.333,editType:"plot"}}},6452:function(e,t,n){"use strict";var r=n(74875);t.name="funnelarea",t.plot=function(e,n,i,a){r.plotBasePlot(t.name,e,n,i,a)},t.clean=function(e,n,i,a){r.cleanBasePlot(t.name,e,n,i,a)}},89574:function(e,t,n){"use strict";var r=n(32354);e.exports={calc:function(e,t){return r.calc(e,t)},crossTraceCalc:function(e){r.crossTraceCalc(e,{type:"funnelarea"})}}},86282:function(e,t,n){"use strict";var r=n(71828),i=n(86807),a=n(27670).c,o=n(90769).handleText,s=n(37434).handleLabelsAndValues,l=n(37434).handleMarkerDefaults;e.exports=function(e,t,n,c){function u(n,a){return r.coerce(e,t,i,n,a)}var f=u("labels"),d=u("values"),h=s(f,d),p=h.len;if(t._hasLabels=h.hasLabels,t._hasValues=h.hasValues,!t._hasLabels&&t._hasValues&&(u("label0"),u("dlabel")),p){t._length=p,l(e,t,c,u),u("scalegroup");var v,m=u("text"),g=u("texttemplate");if(g||(v=u("textinfo",Array.isArray(m)?"text+percent":"percent")),u("hovertext"),u("hovertemplate"),g||v&&"none"!==v){var y=u("textposition");o(e,t,c,u,y,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}a(t,c,u),u("title.text")&&(u("title.position"),r.coerceFont(u,"title.font",c.font)),u("aspectratio"),u("baseratio")}else t.visible=!1}},10421:function(e,t,n){"use strict";e.exports={moduleType:"trace",name:"funnelarea",basePlotModule:n(6452),categories:["pie-like","funnelarea","showLegend"],attributes:n(86807),layoutAttributes:n(80097),supplyDefaults:n(86282),supplyLayoutDefaults:n(57402),calc:n(89574).calc,crossTraceCalc:n(89574).crossTraceCalc,plot:n(79187),style:n(71858),styleOne:n(63463),meta:{}}},80097:function(e,t,n){"use strict";var r=n(92774).hiddenlabels;e.exports={hiddenlabels:r,funnelareacolorway:{valType:"colorlist",editType:"calc"},extendfunnelareacolors:{valType:"boolean",dflt:!0,editType:"calc"}}},57402:function(e,t,n){"use strict";var r=n(71828),i=n(80097);e.exports=function(e,t){function n(n,a){return r.coerce(e,t,i,n,a)}n("hiddenlabels"),n("funnelareacolorway",t.colorway),n("extendfunnelareacolors")}},79187:function(e,t,n){"use strict";var r=n(39898),i=n(91424),a=n(71828),o=a.strScale,s=a.strTranslate,l=n(63893),c=n(17295).toMoveInsideBar,u=n(72597),f=u.recordMinTextSize,d=u.clearMinTextSize,h=n(53581),p=n(14575),v=p.attachFxHandlers,m=p.determineInsideTextFont,g=p.layoutAreas,y=p.prerenderTitles,b=p.positionTitleOutside,x=p.formatSliceLabel;function w(e,t){return"l"+(t[0]-e[0])+","+(t[1]-e[1])}function _(e,t){return[.5*(e[0]+t[0]),.5*(e[1]+t[1])]}e.exports=function(e,t){var n=e._context.staticPlot,u=e._fullLayout;d("funnelarea",u),y(t,e),g(t,u._size),a.makeTraceGroups(u._funnelarealayer,t,"trace").each((function(t){var d=r.select(this),p=t[0],g=p.trace;!function(e){if(e.length){var t=e[0],n=t.trace,r=n.aspectratio,i=n.baseratio;i>.999&&(i=.999);var a,o,s,l=Math.pow(i,2),c=t.vTotal,u=c,f=c*l/(1-l)/c,d=[];for(d.push(C()),o=e.length-1;o>-1;o--)if(!(s=e[o]).hidden){var h=s.v/u;f+=h,d.push(C())}var p=1/0,v=-1/0;for(o=0;o-1;o--)if(!(s=e[o]).hidden){var T=d[S+=1][0],A=d[S][1];s.TL=[-T,A],s.TR=[T,A],s.BL=w,s.BR=k,s.pxmid=_(s.TR,s.BR),w=s.TL,k=s.TR}}function E(){var e=Math.sqrt(f);return{x:e,y:-e}}function C(){var e=E();return[e.x,e.y]}}(t),d.each((function(){var d=r.select(this).selectAll("g.slice").data(t);d.enter().append("g").classed("slice",!0),d.exit().remove(),d.each((function(o,s){if(o.hidden)r.select(this).selectAll("path,g").remove();else{o.pointNumber=o.i,o.curveNumber=g.index;var d=p.cx,y=p.cy,b=r.select(this),_=b.selectAll("path.surface").data([o]);_.enter().append("path").classed("surface",!0).style({"pointer-events":n?"none":"all"}),b.call(v,e,t);var k="M"+(d+o.TR[0])+","+(y+o.TR[1])+w(o.TR,o.BR)+w(o.BR,o.BL)+w(o.BL,o.TL)+"Z";_.attr("d",k),x(e,o,p);var S=h.castOption(g.textposition,o.pts),T=b.selectAll("g.slicetext").data(o.text&&"none"!==S?[0]:[]);T.enter().append("g").classed("slicetext",!0),T.exit().remove(),T.each((function(){var n=a.ensureSingle(r.select(this),"text","",(function(e){e.attr("data-notex",1)})),h=a.ensureUniformFontSize(e,m(g,o,u.font));n.text(o.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(i.font,h).call(l.convertToTspans,e);var p,v,b,x=i.bBox(n.node()),w=Math.min(o.BL[1],o.BR[1])+y,_=Math.max(o.TL[1],o.TR[1])+y;v=Math.max(o.TL[0],o.BL[0])+d,b=Math.min(o.TR[0],o.BR[0])+d,(p=c(v,b,w,_,x,{isHorizontal:!0,constrained:!0,angle:0,anchor:"middle"})).fontSize=h.size,f(g.type,p,u),t[s].transform=p,a.setTransormAndDisplay(n,p)}))}}));var y=r.select(this).selectAll("g.titletext").data(g.title.text?[0]:[]);y.enter().append("g").classed("titletext",!0),y.exit().remove(),y.each((function(){var t=a.ensureSingle(r.select(this),"text","",(function(e){e.attr("data-notex",1)})),n=g.title.text;g._meta&&(n=a.templateString(n,g._meta)),t.text(n).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(i.font,g.title.font).call(l.convertToTspans,e);var c=b(p,u._size);t.attr("transform",s(c.x,c.y)+o(Math.min(1,c.scale))+s(c.tx,c.ty))}))}))}))}},71858:function(e,t,n){"use strict";var r=n(39898),i=n(63463),a=n(72597).resizeText;e.exports=function(e){var t=e._fullLayout._funnelarealayer.selectAll(".trace");a(e,t,"funnelarea"),t.each((function(t){var n=t[0].trace,a=r.select(this);a.style({opacity:n.opacity}),a.selectAll("path.surface").each((function(t){r.select(this).call(i,t,n,e)}))}))}},21606:function(e,t,n){"use strict";var r=n(82196),i=n(9012),a=n(41940),o=n(12663).axisHoverFormat,s=n(5386).fF,l=n(5386).si,c=n(50693),u=n(1426).extendFlat;e.exports=u({z:{valType:"data_array",editType:"calc"},x:u({},r.x,{impliedEdits:{xtype:"array"}}),x0:u({},r.x0,{impliedEdits:{xtype:"scaled"}}),dx:u({},r.dx,{impliedEdits:{xtype:"scaled"}}),y:u({},r.y,{impliedEdits:{ytype:"array"}}),y0:u({},r.y0,{impliedEdits:{ytype:"scaled"}}),dy:u({},r.dy,{impliedEdits:{ytype:"scaled"}}),xperiod:u({},r.xperiod,{impliedEdits:{xtype:"scaled"}}),yperiod:u({},r.yperiod,{impliedEdits:{ytype:"scaled"}}),xperiod0:u({},r.xperiod0,{impliedEdits:{xtype:"scaled"}}),yperiod0:u({},r.yperiod0,{impliedEdits:{ytype:"scaled"}}),xperiodalignment:u({},r.xperiodalignment,{impliedEdits:{xtype:"scaled"}}),yperiodalignment:u({},r.yperiodalignment,{impliedEdits:{ytype:"scaled"}}),text:{valType:"data_array",editType:"calc"},hovertext:{valType:"data_array",editType:"calc"},transpose:{valType:"boolean",dflt:!1,editType:"calc"},xtype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},ytype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},zsmooth:{valType:"enumerated",values:["fast","best",!1],dflt:!1,editType:"calc"},hoverongaps:{valType:"boolean",dflt:!0,editType:"none"},connectgaps:{valType:"boolean",editType:"calc"},xgap:{valType:"number",dflt:0,min:0,editType:"plot"},ygap:{valType:"number",dflt:0,min:0,editType:"plot"},xhoverformat:o("x"),yhoverformat:o("y"),zhoverformat:o("z",1),hovertemplate:s(),texttemplate:l({arrayOk:!1,editType:"plot"},{keys:["x","y","z","text"]}),textfont:a({editType:"plot",autoSize:!0,autoColor:!0,colorEditType:"style"}),showlegend:u({},i.showlegend,{dflt:!1})},{transforms:void 0},c("",{cLetter:"z",autoColorDflt:!1}))},90757:function(e,t,n){"use strict";var r=n(73972),i=n(71828),a=n(89298),o=n(42973),s=n(17562),l=n(78803),c=n(68296),u=n(4742),f=n(824),d=n(43907),h=n(70769),p=n(50606).BADNUM;function v(e){for(var t=[],n=e.length,r=0;r1){var t=(e[e.length-1]-e[0])/(e.length-1),n=Math.abs(t/100);for(S=0;Sn)return!1}return!0}(A.rangebreaks||E.rangebreaks)&&(k=function(e,t,n){for(var r=[],i=-1,a=0;a=0;o--)(s=((f[[(n=(a=d[o])[0])-1,i=a[1]]]||v)[2]+(f[[n+1,i]]||v)[2]+(f[[n,i-1]]||v)[2]+(f[[n,i+1]]||v)[2])/20)&&(l[a]=[n,i,s],d.splice(o,1),c=!0);if(!c)throw"findEmpties iterated with no new neighbors";for(a in l)f[a]=l[a],u.push(l[a])}return u.sort((function(e,t){return t[2]-e[2]}))}},46248:function(e,t,n){"use strict";var r=n(30211),i=n(71828),a=n(89298),o=n(21081).extractOpts;e.exports=function(e,t,n,s,l){l||(l={});var c,u,f,d,h=l.isContour,p=e.cd[0],v=p.trace,m=e.xa,g=e.ya,y=p.x,b=p.y,x=p.z,w=p.xCenter,_=p.yCenter,k=p.zmask,S=v.zhoverformat,T=y,A=b;if(!1!==e.index){try{f=Math.round(e.index[1]),d=Math.round(e.index[0])}catch(j){return void i.error("Error hovering on heatmap, pointNumber must be [row,col], found:",e.index)}if(f<0||f>=x[0].length||d<0||d>x.length)return}else{if(r.inbox(t-y[0],t-y[y.length-1],0)>0||r.inbox(n-b[0],n-b[b.length-1],0)>0)return;if(h){var E;for(T=[2*y[0]-y[1]],E=1;Ev&&(g=Math.max(g,Math.abs(e[a][o]-p)/(m-v))))}return g}e.exports=function(e,t){var n,i=1;for(o(e,t),n=0;n.01;n++)i=o(e,t,a(i));return i>.01&&r.log("interp2d didn't converge quickly",i),e}},58623:function(e,t,n){"use strict";var r=n(71828);e.exports=function(e,t){e("texttemplate");var n=r.extendFlat({},t.font,{color:"auto",size:"auto"});r.coerceFont(e,"textfont",n)}},70769:function(e,t,n){"use strict";var r=n(73972),i=n(71828).isArrayOrTypedArray;e.exports=function(e,t,n,a,o,s){var l,c,u,f=[],d=r.traceIs(e,"contour"),h=r.traceIs(e,"histogram"),p=r.traceIs(e,"gl2d");if(i(t)&&t.length>1&&!h&&"category"!==s.type){var v=t.length;if(!(v<=o))return d?t.slice(0,o):t.slice(0,o+1);if(d||p)f=t.slice(0,o);else if(1===o)f=[t[0]-.5,t[0]+.5];else{for(f=[1.5*t[0]-.5*t[1]],u=1;u0;)S=T.c2p(j[O]),O--;for(S0;)M=A.c2p(B[O]),O--;M=T._length||S<=0||C>=A._length||M<=0)return I.selectAll("image").data([]).exit().remove(),void x(I);"fast"===Y?(X=q,J=W):(X=Q,J=ee);var te=document.createElement("canvas");te.width=X,te.height=J;var ne,re,ie=te.getContext("2d"),ae=h(D,{noNumericCheck:!0,returnArray:!0});"fast"===Y?(ne=G?function(e){return q-1-e}:l.identity,re=Z?function(e){return W-1-e}:l.identity):(ne=function(e){return l.constrain(Math.round(T.c2p(j[e])-n),0,Q)},re=function(e){return l.constrain(Math.round(A.c2p(B[e])-C),0,ee)});var oe,se,le,ce,ue=re(0),fe=[ue,ue],de=G?0:1,he=Z?0:1,pe=0,ve=0,me=0,ge=0;function ye(e,t){if(void 0!==e){var n=ae(e);return n[0]=Math.round(n[0]),n[1]=Math.round(n[1]),n[2]=Math.round(n[2]),pe+=t,ve+=n[0]*t,me+=n[1]*t,ge+=n[2]*t,n}return[0,0,0,0]}function be(e,t,n,r){var i=e[n.bin0];if(void 0===i)return ye(void 0,1);var a,o=e[n.bin1],s=t[n.bin0],l=t[n.bin1],c=o-i||0,u=s-i||0;return a=void 0===o?void 0===l?0:void 0===s?2*(l-i):2*(2*l-s-i)/3:void 0===l?void 0===s?0:2*(2*i-o-s)/3:void 0===s?2*(2*l-o-i)/3:l+i-o-s,ye(i+n.frac*c+r.frac*(u+n.frac*a))}if("default"!==Y){var xe,we=0;try{xe=new Uint8Array(X*J*4)}catch(gt){xe=new Array(X*J*4)}if("smooth"===Y){var _e,ke,Se,Te=U||j,Ae=H||B,Ee=new Array(Te.length),Ce=new Array(Ae.length),Me=new Array(Q),Oe=U?_:w,Pe=H?_:w;for(O=0;OYe||Ye>A._length))for(P=We;PXe||Xe>T._length)){var Je=u({x:Ke,y:Ze},D,e._fullLayout);Je.x=Ke,Je.y=Ze;var Qe=R.z[O][P];void 0===Qe?(Je.z="",Je.zLabel=""):(Je.z=Qe,Je.zLabel=s.tickText(Ue,Qe,"hover").text);var et=R.text&&R.text[O]&&R.text[O][P];void 0!==et&&!1!==et||(et=""),Je.text=et;var tt=l.texttemplateString(je,Je,e._fullLayout._d3locale,Je,D._meta||{});if(tt){var nt=tt.split("
"),rt=nt.length,it=0;for(L=0;L0&&(a=!0);for(var l=0;la){var o=a-n[e];return n[e]=a,o}}return 0},max:function(e,t,n,i){var a=i[t];if(r(a)){if(a=Number(a),!r(n[e]))return n[e]=a,a;if(n[e]c?e>o?e>1.1*i?i:e>1.1*a?a:o:e>s?s:e>l?l:c:Math.pow(10,Math.floor(Math.log(e)/Math.LN10))}function h(e,t,n,r,a,s){if(r&&e>o){var l=p(t,a,s),c=p(n,a,s),u=e===i?0:1;return l[u]!==c[u]}return Math.floor(n/e)-Math.floor(t/e)>.1}function p(e,t,n){var r=t.c2d(e,i,n).split("-");return""===r[0]&&(r.unshift(),r[0]="-"+r[0]),r}e.exports=function(e,t,n,r,a){var s,l,c=-1.1*t,d=-.1*t,h=e-d,p=n[0],v=n[1],m=Math.min(f(p+d,p+h,r,a),f(v+d,v+h,r,a)),g=Math.min(f(p+c,p+d,r,a),f(v+c,v+d,r,a));if(m>g&&go){var y=s===i?1:6,b=s===i?"M12":"M1";return function(t,n){var o=r.c2d(t,i,a),s=o.indexOf("-",y);s>0&&(o=o.substr(0,s));var c=r.d2c(o,0,a);if(cn.r2l(z)&&(B=o.tickIncrement(B,x.size,!0,h)),R.start=n.l2r(B),N||i.nestedProperty(t,g+".start").set(R.start)}var U=x.end,H=n.r2l(I.end),$=void 0!==H;if((x.endFound||$)&&H!==n.r2l(U)){var V=$?H:i.aggNums(Math.max,null,p);R.end=n.l2r(V),$||i.nestedProperty(t,g+".start").set(R.end)}var W="autobin"+s;return!1===t._input[W]&&(t._input[g]=i.extendFlat({},t[g]||{}),delete t._input[W],delete t[W]),[R,p]}e.exports={calc:function(e,t){var n,a,h,p,v=[],m=[],g="h"===t.orientation,y=o.getFromId(e,g?t.yaxis:t.xaxis),b=g?"y":"x",x={x:"y",y:"x"}[b],w=t[b+"calendar"],_=t.cumulative,k=d(e,t,y,b),S=k[0],T=k[1],A="string"===typeof S.size,E=[],C=A?E:S,M=[],O=[],P=[],L=0,I=t.histnorm,R=t.histfunc,D=-1!==I.indexOf("density");_.enabled&&D&&(I=I.replace(/ ?density$/,""),D=!1);var F,N="max"===R||"min"===R?null:0,z=l.count,j=c[I],B=!1,U=function(e){return y.r2c(e,0,w)};for(i.isArrayOrTypedArray(t[x])&&"count"!==R&&(F=t[x],B="avg"===R,z=l[R]),n=U(S.start),h=U(S.end)+(n-o.tickIncrement(n,S.size,!1,w))/1e6;n=0&&p=0;r--)s(r);else if("increasing"===t){for(r=1;r=0;r--)e[r]+=e[r+1];"exclude"===n&&(e.push(0),e.shift())}}(m,_.direction,_.currentbin);var X=Math.min(v.length,m.length),J=[],Q=0,ee=X-1;for(n=0;n=Q;n--)if(m[n]){ee=n;break}for(n=Q;n<=ee;n++)if(r(v[n])&&r(m[n])){var te={p:v[n],s:m[n],b:0};_.enabled||(te.pts=P[n],q?te.ph0=te.ph1=P[n].length?T[P[n][0]]:v[n]:(t._computePh=!0,te.ph0=V(E[n]),te.ph1=V(E[n+1],!0))),J.push(te)}return 1===J.length&&(J[0].width1=o.tickIncrement(J[0].p,S.size,!1,w)-J[0].p),s(J,t),i.isArrayOrTypedArray(t.selectedpoints)&&i.tagSelected(J,t,Y),J},calcAllAutoBins:d}},72406:function(e){"use strict";e.exports={eventDataKeys:["binNumber"]}},82222:function(e,t,n){"use strict";var r=n(71828),i=n(41675),a=n(73972).traceIs,o=n(26125),s=r.nestedProperty,l=n(99082).getAxisGroup,c=[{aStr:{x:"xbins.start",y:"ybins.start"},name:"start"},{aStr:{x:"xbins.end",y:"ybins.end"},name:"end"},{aStr:{x:"xbins.size",y:"ybins.size"},name:"size"},{aStr:{x:"nbinsx",y:"nbinsy"},name:"nbins"}],u=["x","y"];e.exports=function(e,t){var n,f,d,h,p,v,m,g=t._histogramBinOpts={},y=[],b={},x=[];function w(e,t){return r.coerce(n._input,n,n._module.attributes,e,t)}function _(e){return"v"===e.orientation?"x":"y"}function k(e,n,a){var o=e.uid+"__"+a;n||(n=o);var s=function(e,n){return i.getFromTrace({_fullLayout:t},e,n).type}(e,a),l=e[a+"calendar"]||"",c=g[n],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(e),c.dirs.push(a)):(n=o,s!==c.axType&&r.warn(["Attempted to group the bins of trace",e.index,"set on a","type:"+s,"axis","with bins on","type:"+c.axType,"axis."].join(" ")),l!==c.calendar&&r.warn(["Attempted to group the bins of trace",e.index,"set with a",l,"calendar","with bins",c.calendar?"on a "+c.calendar+" calendar":"w/o a set calendar"].join(" ")))),u&&(g[n]={traces:[e],dirs:[a],axType:s,calendar:e[a+"calendar"]||""}),e["_"+a+"bingroup"]=n}for(p=0;pE&&k.splice(E,k.length-E),A.length>E&&A.splice(E,A.length-E);var C=[],M=[],O=[],P="string"===typeof _.size,L="string"===typeof T.size,I=[],R=[],D=P?I:_,F=L?R:T,N=0,z=[],j=[],B=t.histnorm,U=t.histfunc,H=-1!==B.indexOf("density"),$="max"===U||"min"===U?null:0,V=a.count,W=o[B],q=!1,G=[],Z=[],Y="z"in t?t.z:"marker"in t&&Array.isArray(t.marker.color)?t.marker.color:"";Y&&"count"!==U&&(q="avg"===U,V=a[U]);var K=_.size,X=b(_.start),J=b(_.end)+(X-i.tickIncrement(X,K,!1,g))/1e6;for(n=X;n=0&&h=0&&p-1,flipY:O.tiling.flip.indexOf("y")>-1,orientation:O.tiling.orientation,pad:{inner:O.tiling.pad},maxDepth:O._maxDepth}).descendants(),D=1/0,F=-1/0;R.forEach((function(e){var t=e.depth;t>=O._maxDepth?(e.x0=e.x1=(e.x0+e.x1)/2,e.y0=e.y1=(e.y0+e.y1)/2):(D=Math.min(D,t),F=Math.max(F,t))})),p=p.data(R,u.getPtId),O._maxVisibleLayers=isFinite(F)?F-D+1:0,p.enter().append("g").classed("slice",!0),S(p,h,{},[m,g],x),p.order();var N=null;if(k&&E){var z=u.getPtId(E);p.each((function(e){null===N&&u.getPtId(e)===z&&(N={x0:e.x0,x1:e.x1,y0:e.y0,y1:e.y1})}))}var j=function(){return N||{x0:0,x1:m,y0:0,y1:g}},B=p;return k&&(B=B.transition().each("end",(function(){var t=r.select(this);u.setSliceCursor(t,e,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),B.each((function(s){s._x0=y(s.x0),s._x1=y(s.x1),s._y0=b(s.y0),s._y1=b(s.y1),s._hoverX=y(s.x1-O.tiling.pad),s._hoverY=b(I?s.y1-O.tiling.pad/2:s.y0+O.tiling.pad/2);var p=r.select(this),v=i.ensureSingle(p,"path","surface",(function(e){e.style("pointer-events",C?"none":"all")}));k?v.transition().attrTween("d",(function(e){var t=T(e,h,j(),[m,g],{orientation:O.tiling.orientation,flipX:O.tiling.flip.indexOf("x")>-1,flipY:O.tiling.flip.indexOf("y")>-1});return function(e){return x(t(e))}})):v.attr("d",x),p.call(f,n,e,t,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,e,{isTransitioning:e._transitioning}),v.call(l,s,O,e,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text="":s._text=d(s,n,O,t,M)||"";var S=i.ensureSingle(p,"g","slicetext"),E=i.ensureSingle(S,"text","",(function(e){e.attr("data-notex",1)})),R=i.ensureUniformFontSize(e,u.determineTextFont(O,s,M.font));E.text(s._text||" ").classed("slicetext",!0).attr("text-anchor",L?"end":P?"start":"middle").call(a.font,R).call(o.convertToTspans,e),s.textBB=a.bBox(E.node()),s.transform=w(s,{fontSize:R.size}),s.transform.fontSize=R.size,k?E.transition().attrTween("transform",(function(e){var t=A(e,h,j(),[m,g]);return function(e){return _(t(e))}})):E.attr("transform",_(s))})),N}},69816:function(e,t,n){"use strict";e.exports={moduleType:"trace",name:"icicle",basePlotModule:n(96346),categories:[],animatable:!0,attributes:n(46291),layoutAttributes:n(92894),supplyDefaults:n(56524),supplyLayoutDefaults:n(21070),calc:n(46584).y,crossTraceCalc:n(46584).T,plot:n(85596),style:n(82454).style,colorbar:n(4898),meta:{}}},92894:function(e){"use strict";e.exports={iciclecolorway:{valType:"colorlist",editType:"calc"},extendiciclecolors:{valType:"boolean",dflt:!0,editType:"calc"}}},21070:function(e,t,n){"use strict";var r=n(71828),i=n(92894);e.exports=function(e,t){function n(n,a){return r.coerce(e,t,i,n,a)}n("iciclecolorway",t.colorway),n("extendiciclecolors")}},21538:function(e,t,n){"use strict";var r=n(674),i=n(14102);e.exports=function(e,t,n){var a=n.flipX,o=n.flipY,s="h"===n.orientation,l=n.maxDepth,c=t[0],u=t[1];l&&(c=(e.height+1)*t[0]/Math.min(e.height+1,l),u=(e.height+1)*t[1]/Math.min(e.height+1,l));var f=r.partition().padding(n.pad.inner).size(s?[t[1],c]:[t[0],u])(e);return(s||a||o)&&i(f,t,{swapXY:s,flipX:a,flipY:o}),f}},85596:function(e,t,n){"use strict";var r=n(80694),i=n(90666);e.exports=function(e,t,n,a){return r(e,t,n,a,{type:"icicle",drawDescendants:i})}},82454:function(e,t,n){"use strict";var r=n(39898),i=n(7901),a=n(71828),o=n(72597).resizeText,s=n(43467);function l(e,t,n,r){var o=t.data.data,l=!t.children,c=o.i,u=a.castOption(n,c,"marker.line.color")||i.defaultLine,f=a.castOption(n,c,"marker.line.width")||0;e.call(s,t,n,r).style("stroke-width",f).call(i.stroke,u).style("opacity",l?n.leaf.opacity:null)}e.exports={style:function(e){var t=e._fullLayout._iciclelayer.selectAll(".trace");o(e,t,"icicle"),t.each((function(t){var n=r.select(this),i=t[0].trace;n.style("opacity",i.opacity),n.selectAll("path.surface").each((function(t){r.select(this).call(l,t,i,e)}))}))},styleOne:l}},17230:function(e,t,n){"use strict";for(var r=n(9012),i=n(5386).fF,a=n(1426).extendFlat,o=n(51877).colormodel,s=["rgb","rgba","rgba256","hsl","hsla"],l=[],c=[],u=0;u0||r.inbox(n-o.y0,n-(o.y0+o.h*s.dy),0)>0)){var u,f=Math.floor((t-o.x0)/s.dx),d=Math.floor(Math.abs(n-o.y0)/s.dy);if(s._hasZ?u=o.z[d][f]:s._hasSource&&(u=s._canvas.el.getContext("2d",{willReadFrequently:!0}).getImageData(f,d,1,1).data),u){var h,p=o.hi||s.hoverinfo;if(p){var v=p.split("+");-1!==v.indexOf("all")&&(v=["color"]),-1!==v.indexOf("color")&&(h=!0)}var m,g=a.colormodel[s.colormodel],y=g.colormodel||s.colormodel,b=y.length,x=s._scaler(u),w=g.suffix,_=[];(s.hovertemplate||h)&&(_.push("["+[x[0]+w[0],x[1]+w[1],x[2]+w[2]].join(", ")),4===b&&_.push(", "+x[3]+w[3]),_.push("]"),_=_.join(""),e.extraText=y.toUpperCase()+": "+_),Array.isArray(s.hovertext)&&Array.isArray(s.hovertext[d])?m=s.hovertext[d][f]:Array.isArray(s.text)&&Array.isArray(s.text[d])&&(m=s.text[d][f]);var k=c.c2p(o.y0+(d+.5)*s.dy),S=o.x0+(f+.5)*s.dx,T=o.y0+(d+.5)*s.dy,A="["+u.slice(0,s.colormodel.length).join(", ")+"]";return[i.extendFlat(e,{index:[d,f],x0:l.c2p(o.x0+f*s.dx),x1:l.c2p(o.x0+(f+1)*s.dx),y0:k,y1:k,color:x,xVal:S,xLabelVal:S,yVal:T,yLabelVal:T,zLabelVal:A,text:m,hovertemplateLabels:{zLabel:A,colorLabel:_,"color[0]Label":x[0]+w[0],"color[1]Label":x[1]+w[1],"color[2]Label":x[2]+w[2],"color[3]Label":x[3]+w[3]}})]}}}},94507:function(e,t,n){"use strict";e.exports={attributes:n(17230),supplyDefaults:n(13245),calc:n(71113),plot:n(60775),style:n(12826),hoverPoints:n(28749),eventData:n(30835),moduleType:"trace",name:"image",basePlotModule:n(93612),categories:["cartesian","svg","2dMap","noSortingByValue"],animatable:!1,meta:{}}},60775:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=i.strTranslate,o=n(77922),s=n(51877),l=n(3883),c=n(32396).STYLE;e.exports=function(e,t,n,u){var f=t.xaxis,d=t.yaxis,h=!e._context._exportedPlot&&l();i.makeTraceGroups(u,n,"im").each((function(t){var n=r.select(this),l=t[0],u=l.trace,p=("fast"===u.zsmooth||!1===u.zsmooth&&h)&&!u._hasZ&&u._hasSource&&"linear"===f.type&&"linear"===d.type;u._realImage=p;var v,m,g,y,b,x,w=l.z,_=l.x0,k=l.y0,S=l.w,T=l.h,A=u.dx,E=u.dy;for(x=0;void 0===v&&x0;)m=f.c2p(_+x*A),x--;for(x=0;void 0===y&&x0;)b=d.c2p(k+x*E),x--;mI[0];if(R||D){var F=v+C/2,N=y+M/2;P+="transform:"+a(F+"px",N+"px")+"scale("+(R?-1:1)+","+(D?-1:1)+")"+a(-F+"px",-N+"px")+";"}}O.attr("style",P);var z=new Promise((function(e){if(u._hasZ)e();else if(u._hasSource)if(u._canvas&&u._canvas.el.width===S&&u._canvas.el.height===T&&u._canvas.source===u.source)e();else{var t=document.createElement("canvas");t.width=S,t.height=T;var n=t.getContext("2d",{willReadFrequently:!0});u._image=u._image||new Image;var r=u._image;r.onload=function(){n.drawImage(r,0,0),u._canvas={el:t,source:u.source},e()},r.setAttribute("src",u.source)}})).then((function(){var e,t;if(u._hasZ)t=j((function(e,t){return w[t][e]})),e=t.toDataURL("image/png");else if(u._hasSource)if(p)e=u.source;else{var n=u._canvas.el.getContext("2d",{willReadFrequently:!0}).getImageData(0,0,S,T).data;t=j((function(e,t){var r=4*(t*S+e);return[n[r],n[r+1],n[r+2],n[r+3]]})),e=t.toDataURL("image/png")}O.attr({"xlink:href":e,height:M,width:C,x:v,y:y})}));e._promises.push(z)}function j(e){var t=document.createElement("canvas");t.width=C,t.height=M;var n,r=t.getContext("2d",{willReadFrequently:!0}),a=function(e){return i.constrain(Math.round(f.c2p(_+e*A)-v),0,C)},o=function(e){return i.constrain(Math.round(d.c2p(k+e*E)-y),0,M)},c=s.colormodel[u.colormodel],h=c.colormodel||u.colormodel,p=c.fmt;for(x=0;x0}function k(e){e.each((function(e){y.stroke(r.select(this),e.line.color)})).each((function(e){y.fill(r.select(this),e.color)})).style("stroke-width",(function(e){return e.line.width}))}function S(e,t,n){var r=e._fullLayout,i=o.extendFlat({type:"linear",ticks:"outside",range:n,showline:!0},t),a={type:"linear",_id:"x"+t._id},s={letter:"x",font:r.font,noHover:!0,noTickson:!0};function l(e,t){return o.coerce(i,a,g,e,t)}return v(i,a,l,s,r),m(i,a,l,s),a}function T(e,t,n){return[Math.min(t/e.width,n/e.height),e,t+"x"+n]}function A(e,t,n,i){var a=document.createElementNS("http://www.w3.org/2000/svg","text"),o=r.select(a);return o.text(e).attr("x",0).attr("y",0).attr("text-anchor",n).attr("data-unformatted",e).call(h.convertToTspans,i).call(f.font,t),f.bBox(o.node())}function E(e,t,n,r,i,a){var s="_cache"+t;e[s]&&e[s].key===i||(e[s]={key:i,value:n});var l=o.aggNums(a,null,[e[s].value,r],2);return e[s].value=l,l}e.exports=function(e,t,n,v){var m,g=e._fullLayout;_(n)&&v&&(m=v()),o.makeTraceGroups(g._indicatorlayer,t,"trace").each((function(t){var v,C,M,O,P,L=t[0].trace,I=r.select(this),R=L._hasGauge,D=L._isAngular,F=L._isBullet,N=L.domain,z={w:g._size.w*(N.x[1]-N.x[0]),h:g._size.h*(N.y[1]-N.y[0]),l:g._size.l+g._size.w*N.x[0],r:g._size.r+g._size.w*(1-N.x[1]),t:g._size.t+g._size.h*(1-N.y[1]),b:g._size.b+g._size.h*N.y[0]},j=z.l+z.w/2,B=z.t+z.h/2,U=Math.min(z.w/2,z.h),H=d.innerRadius*U,$=L.align||"center";if(C=B,R){if(D&&(v=j,C=B+U/2,M=function(e){return function(e,t){var n=Math.sqrt(e.width/2*(e.width/2)+e.height*e.height),r=t/n;return[r,e,t]}(e,.9*H)}),F){var V=d.bulletPadding,W=1-d.bulletNumberDomainSize+V;v=z.l+(W+(1-W)*x[$])*z.w,M=function(e){return T(e,(d.bulletNumberDomainSize-V)*z.w,z.h)}}}else v=z.l+x[$]*z.w,M=function(e){return T(e,z.w,z.h)};!function(e,t,n,i){var c,u,d,v=n[0].trace,m=i.numbersX,g=i.numbersY,k=v.align||"center",T=b[k],C=i.transitionOpts,M=i.onComplete,O=o.ensureSingle(t,"g","numbers"),P=[];v._hasNumber&&P.push("number"),v._hasDelta&&(P.push("delta"),"left"===v.delta.position&&P.reverse());var L=O.selectAll("text").data(P);function I(t,n,r,i){if(!t.match("s")||r>=0===i>=0||n(r).slice(-1).match(w)||n(i).slice(-1).match(w))return n;var a=t.slice().replace("s","f").replace(/\d+/,(function(e){return parseInt(e)-1})),o=S(e,{tickformat:a});return function(e){return Math.abs(e)<1?p.tickText(o,e).text:n(e)}}function R(){var t=S(e,{tickformat:v.number.valueformat},v._range);t.setScale(),p.prepTicks(t);var i=function(e){return p.tickText(t,e).text},o=v.number.suffix,s=v.number.prefix,l=O.select("text.number");function u(){var t="number"===typeof n[0].y?s+i(n[0].y)+o:"-";l.text(t).call(f.font,v.number.font).call(h.convertToTspans,e)}return _(C)?l.transition().duration(C.duration).ease(C.easing).each("end",(function(){u(),M&&M()})).each("interrupt",(function(){u(),M&&M()})).attrTween("text",(function(){var e=r.select(this),t=a(n[0].lastY,n[0].y);v._lastValue=n[0].y;var l=I(v.number.valueformat,i,n[0].lastY,n[0].y);return function(n){e.text(s+l(t(n))+o)}})):u(),c=A(s+i(n[0].y)+o,v.number.font,T,e),l}function D(){var t=S(e,{tickformat:v.delta.valueformat},v._range);t.setScale(),p.prepTicks(t);var i=function(e){return p.tickText(t,e).text},o=v.delta.suffix,s=v.delta.prefix,l=function(e){return v.delta.relative?e.relativeDelta:e.delta},c=function(e,t){return 0===e||"number"!==typeof e||isNaN(e)?"-":(e>0?v.delta.increasing.symbol:v.delta.decreasing.symbol)+s+t(e)+o},d=function(e){return e.delta>=0?v.delta.increasing.color:v.delta.decreasing.color};void 0===v._deltaLastValue&&(v._deltaLastValue=l(n[0]));var m=O.select("text.delta");function g(){m.text(c(l(n[0]),i)).call(y.fill,d(n[0])).call(h.convertToTspans,e)}return m.call(f.font,v.delta.font).call(y.fill,d({delta:v._deltaLastValue})),_(C)?m.transition().duration(C.duration).ease(C.easing).tween("text",(function(){var e=r.select(this),t=l(n[0]),o=v._deltaLastValue,s=I(v.delta.valueformat,i,o,t),u=a(o,t);return v._deltaLastValue=t,function(t){e.text(c(u(t),s)),e.call(y.fill,d({delta:u(t)}))}})).each("end",(function(){g(),M&&M()})).each("interrupt",(function(){g(),M&&M()})):g(),u=A(c(l(n[0]),i),v.delta.font,T,e),m}L.enter().append("text"),L.attr("text-anchor",(function(){return T})).attr("class",(function(e){return e})).attr("x",null).attr("y",null).attr("dx",null).attr("dy",null),L.exit().remove();var F,N=v.mode+v.align;if(v._hasDelta&&(F=D(),N+=v.delta.position+v.delta.font.size+v.delta.font.family+v.delta.valueformat,N+=v.delta.increasing.symbol+v.delta.decreasing.symbol,d=u),v._hasNumber&&(R(),N+=v.number.font.size+v.number.font.family+v.number.valueformat+v.number.suffix+v.number.prefix,d=c),v._hasDelta&&v._hasNumber){var z,j,B=[(c.left+c.right)/2,(c.top+c.bottom)/2],U=[(u.left+u.right)/2,(u.top+u.bottom)/2],H=.75*v.delta.font.size;"left"===v.delta.position&&(z=E(v,"deltaPos",0,-1*(c.width*x[v.align]+u.width*(1-x[v.align])+H),N,Math.min),j=B[1]-U[1],d={width:c.width+u.width+H,height:Math.max(c.height,u.height),left:u.left+z,right:c.right,top:Math.min(c.top,u.top+j),bottom:Math.max(c.bottom,u.bottom+j)}),"right"===v.delta.position&&(z=E(v,"deltaPos",0,c.width*(1-x[v.align])+u.width*x[v.align]+H,N,Math.max),j=B[1]-U[1],d={width:c.width+u.width+H,height:Math.max(c.height,u.height),left:c.left,right:u.right+z,top:Math.min(c.top,u.top+j),bottom:Math.max(c.bottom,u.bottom+j)}),"bottom"===v.delta.position&&(z=null,j=u.height,d={width:Math.max(c.width,u.width),height:c.height+u.height,left:Math.min(c.left,u.left),right:Math.max(c.right,u.right),top:c.bottom-c.height,bottom:c.bottom+u.height}),"top"===v.delta.position&&(z=null,j=c.top,d={width:Math.max(c.width,u.width),height:c.height+u.height,left:Math.min(c.left,u.left),right:Math.max(c.right,u.right),top:c.bottom-c.height-u.height,bottom:c.bottom}),F.attr({dx:z,dy:j})}(v._hasNumber||v._hasDelta)&&O.attr("transform",(function(){var e=i.numbersScaler(d);N+=e[2];var t,n=E(v,"numbersScale",1,e[0],N,Math.min);v._scaleNumbers||(n=1),t=v._isAngular?g-n*d.bottom:g-n*(d.top+d.bottom)/2,v._numbersTop=n*d.top+t;var r=d[k];"center"===k&&(r=(d.left+d.right)/2);var a=m-n*r;return a=E(v,"numbersTranslate",0,a,N,Math.max),l(a,t)+s(n)}))}(e,I,t,{numbersX:v,numbersY:C,numbersScaler:M,transitionOpts:n,onComplete:m}),R&&(O={range:L.gauge.axis.range,color:L.gauge.bgcolor,line:{color:L.gauge.bordercolor,width:0},thickness:1},P={range:L.gauge.axis.range,color:"rgba(0, 0, 0, 0)",line:{color:L.gauge.bordercolor,width:L.gauge.borderwidth},thickness:1});var q=I.selectAll("g.angular").data(D?t:[]);q.exit().remove();var G=I.selectAll("g.angularaxis").data(D?t:[]);G.exit().remove(),D&&function(e,t,n,a){var o,s,f,d,h=n[0].trace,v=a.size,m=a.radius,g=a.innerRadius,y=a.gaugeBg,b=a.gaugeOutline,x=[v.l+v.w/2,v.t+v.h/2+m/2],w=a.gauge,T=a.layer,A=a.transitionOpts,E=a.onComplete,C=Math.PI/2;function M(e){var t=h.gauge.axis.range[0],n=(e-t)/(h.gauge.axis.range[1]-t)*Math.PI-C;return n<-C?-C:n>C?C:n}function O(e){return r.svg.arc().innerRadius((g+m)/2-e/2*(m-g)).outerRadius((g+m)/2+e/2*(m-g)).startAngle(-C)}function P(e){e.attr("d",(function(e){return O(e.thickness).startAngle(M(e.range[0])).endAngle(M(e.range[1]))()}))}w.enter().append("g").classed("angular",!0),w.attr("transform",l(x[0],x[1])),T.enter().append("g").classed("angularaxis",!0).classed("crisp",!0),T.selectAll("g.xangularaxistick,path,text").remove(),(o=S(e,h.gauge.axis)).type="linear",o.range=h.gauge.axis.range,o._id="xangularaxis",o.ticklabeloverflow="allow",o.setScale();var L=function(e){return(o.range[0]-e.x)/(o.range[1]-o.range[0])*Math.PI+Math.PI},I={},R=p.makeLabelFns(o,0).labelStandoff;I.xFn=function(e){var t=L(e);return Math.cos(t)*R},I.yFn=function(e){var t=L(e),n=Math.sin(t)>0?.2:1;return-Math.sin(t)*(R+e.fontSize*n)+Math.abs(Math.cos(t))*(e.fontSize*u)},I.anchorFn=function(e){var t=L(e),n=Math.cos(t);return Math.abs(n)<.1?"middle":n>0?"start":"end"},I.heightFn=function(e,t,n){var r=L(e);return-.5*(1+Math.sin(r))*n};var D=function(e){return l(x[0]+m*Math.cos(e),x[1]-m*Math.sin(e))};f=function(e){return D(L(e))};var F=function(e){var t=L(e);return D(t)+"rotate("+-c(t)+")"};if(s=p.calcTicks(o),d=p.getTickSigns(o)[2],o.visible){d="inside"===o.ticks?-1:1;var N=(o.linewidth||1)/2;p.drawTicks(e,o,{vals:s,layer:T,path:"M"+d*N+",0h"+d*o.ticklen,transFn:F}),p.drawLabels(e,o,{vals:s,layer:T,transFn:f,labelFns:I})}var z=[y].concat(h.gauge.steps),j=w.selectAll("g.bg-arc").data(z);j.enter().append("g").classed("bg-arc",!0).append("path"),j.select("path").call(P).call(k),j.exit().remove();var B=O(h.gauge.bar.thickness),U=w.selectAll("g.value-arc").data([h.gauge.bar]);U.enter().append("g").classed("value-arc",!0).append("path");var H,$,V,W=U.select("path");_(A)?(W.transition().duration(A.duration).ease(A.easing).each("end",(function(){E&&E()})).each("interrupt",(function(){E&&E()})).attrTween("d",(H=B,$=M(n[0].lastY),V=M(n[0].y),function(){var e=i($,V);return function(t){return H.endAngle(e(t))()}})),h._lastValue=n[0].y):W.attr("d","number"===typeof n[0].y?B.endAngle(M(n[0].y)):"M0,0Z"),W.call(k),U.exit().remove(),z=[];var q=h.gauge.threshold.value;(q||0===q)&&z.push({range:[q,q],color:h.gauge.threshold.color,line:{color:h.gauge.threshold.line.color,width:h.gauge.threshold.line.width},thickness:h.gauge.threshold.thickness});var G=w.selectAll("g.threshold-arc").data(z);G.enter().append("g").classed("threshold-arc",!0).append("path"),G.select("path").call(P).call(k),G.exit().remove();var Z=w.selectAll("g.gauge-outline").data([b]);Z.enter().append("g").classed("gauge-outline",!0).append("path"),Z.select("path").call(P).call(k),Z.exit().remove()}(e,0,t,{radius:U,innerRadius:H,gauge:q,layer:G,size:z,gaugeBg:O,gaugeOutline:P,transitionOpts:n,onComplete:m});var Z=I.selectAll("g.bullet").data(F?t:[]);Z.exit().remove();var Y=I.selectAll("g.bulletaxis").data(F?t:[]);Y.exit().remove(),F&&function(e,t,n,r){var i,a,o,s,c,u=n[0].trace,f=r.gauge,h=r.layer,v=r.gaugeBg,m=r.gaugeOutline,g=r.size,b=u.domain,x=r.transitionOpts,w=r.onComplete;f.enter().append("g").classed("bullet",!0),f.attr("transform",l(g.l,g.t)),h.enter().append("g").classed("bulletaxis",!0).classed("crisp",!0),h.selectAll("g.xbulletaxistick,path,text").remove();var T=g.h,A=u.gauge.bar.thickness*T,E=b.x[0],C=b.x[0]+(b.x[1]-b.x[0])*(u._hasNumber||u._hasDelta?1-d.bulletNumberDomainSize:1);function M(e){e.attr("width",(function(e){return Math.max(0,i.c2p(e.range[1])-i.c2p(e.range[0]))})).attr("x",(function(e){return i.c2p(e.range[0])})).attr("y",(function(e){return.5*(1-e.thickness)*T})).attr("height",(function(e){return e.thickness*T}))}(i=S(e,u.gauge.axis))._id="xbulletaxis",i.domain=[E,C],i.setScale(),a=p.calcTicks(i),o=p.makeTransTickFn(i),s=p.getTickSigns(i)[2],c=g.t+g.h,i.visible&&(p.drawTicks(e,i,{vals:"inside"===i.ticks?p.clipEnds(i,a):a,layer:h,path:p.makeTickPath(i,c,s),transFn:o}),p.drawLabels(e,i,{vals:a,layer:h,transFn:o,labelFns:p.makeLabelFns(i,c)}));var O=[v].concat(u.gauge.steps),P=f.selectAll("g.bg-bullet").data(O);P.enter().append("g").classed("bg-bullet",!0).append("rect"),P.select("rect").call(M).call(k),P.exit().remove();var L=f.selectAll("g.value-bullet").data([u.gauge.bar]);L.enter().append("g").classed("value-bullet",!0).append("rect"),L.select("rect").attr("height",A).attr("y",(T-A)/2).call(k),_(x)?L.select("rect").transition().duration(x.duration).ease(x.easing).each("end",(function(){w&&w()})).each("interrupt",(function(){w&&w()})).attr("width",Math.max(0,i.c2p(Math.min(u.gauge.axis.range[1],n[0].y)))):L.select("rect").attr("width","number"===typeof n[0].y?Math.max(0,i.c2p(Math.min(u.gauge.axis.range[1],n[0].y))):0),L.exit().remove();var I=n.filter((function(){return u.gauge.threshold.value||0===u.gauge.threshold.value})),R=f.selectAll("g.threshold-bullet").data(I);R.enter().append("g").classed("threshold-bullet",!0).append("line"),R.select("line").attr("x1",i.c2p(u.gauge.threshold.value)).attr("x2",i.c2p(u.gauge.threshold.value)).attr("y1",(1-u.gauge.threshold.thickness)/2*T).attr("y2",(1-(1-u.gauge.threshold.thickness)/2)*T).call(y.stroke,u.gauge.threshold.line.color).style("stroke-width",u.gauge.threshold.line.width),R.exit().remove();var D=f.selectAll("g.gauge-outline").data([m]);D.enter().append("g").classed("gauge-outline",!0).append("rect"),D.select("rect").call(M).call(k),D.exit().remove()}(e,0,t,{gauge:Z,layer:Y,size:z,gaugeBg:O,gaugeOutline:P,transitionOpts:n,onComplete:m});var K=I.selectAll("text.title").data(t);K.exit().remove(),K.enter().append("text").classed("title",!0),K.attr("text-anchor",(function(){return F?b.right:b[L.title.align]})).text(L.title.text).call(f.font,L.title.font).call(h.convertToTspans,e),K.attr("transform",(function(){var e,t=z.l+z.w*x[L.title.align],n=d.titlePadding,r=f.bBox(K.node());return R?(D&&(e=L.gauge.axis.visible?f.bBox(G.node()).top-n-r.bottom:z.t+z.h/2-U/2-r.bottom-n),F&&(e=C-(r.top+r.bottom)/2,t=z.l-d.bulletPadding*z.w)):e=L._numbersTop-n-r.bottom,l(t,e)}))}))}},16249:function(e,t,n){"use strict";var r=n(50693),i=n(12663).axisHoverFormat,a=n(5386).fF,o=n(2418),s=n(9012),l=n(1426).extendFlat,c=n(30962).overrideAll,u=e.exports=c(l({x:{valType:"data_array"},y:{valType:"data_array"},z:{valType:"data_array"},value:{valType:"data_array"},isomin:{valType:"number"},isomax:{valType:"number"},surface:{show:{valType:"boolean",dflt:!0},count:{valType:"integer",dflt:2,min:1},fill:{valType:"number",min:0,max:1,dflt:1},pattern:{valType:"flaglist",flags:["A","B","C","D","E"],extras:["all","odd","even"],dflt:"all"}},spaceframe:{show:{valType:"boolean",dflt:!1},fill:{valType:"number",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}}},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:a(),xhoverformat:i("x"),yhoverformat:i("y"),zhoverformat:i("z"),valuehoverformat:i("value",1),showlegend:l({},s.showlegend,{dflt:!1})},r("",{colorAttr:"`value`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:o.opacity,lightposition:o.lightposition,lighting:o.lighting,flatshading:o.flatshading,contour:o.contour,hoverinfo:l({},s.hoverinfo)}),"calc","nested");u.flatshading.dflt=!0,u.lighting.facenormalsepsilon.dflt=0,u.x.editType=u.y.editType=u.z.editType=u.value.editType="calc+clearAxisTypes",u.transforms=void 0},56959:function(e,t,n){"use strict";var r=n(78803),i=n(88489).processGrid,a=n(88489).filter;e.exports=function(e,t){t._len=Math.min(t.x.length,t.y.length,t.z.length,t.value.length),t._x=a(t.x,t._len),t._y=a(t.y,t._len),t._z=a(t.z,t._len),t._value=a(t.value,t._len);var n=i(t);t._gridFill=n.fill,t._Xs=n.Xs,t._Ys=n.Ys,t._Zs=n.Zs,t._len=n.len;for(var o=1/0,s=-1/0,l=0;l0;n--){var r=Math.min(t[n],t[n-1]),i=Math.max(t[n],t[n-1]);if(i>r&&r-1}function N(e,t){return null===e?t:e}function z(e,t,n){O();var r=[t],i=[n];if(s>=1)r=[t],i=[n];else if(s>0){var a=function(e,t){var n=e[0],r=e[1],i=e[2],a=function(e,t,n){for(var r=[],i=0;i-1?n[c]:M(u,f,d);l[c]=p>-1?p:L(u,f,d,N(e,h))}I(l[0],l[1],l[2])}}function j(e,t,n,r){var i=e[3];ir&&(i=r);for(var a=(e[3]-i)/(e[3]-t[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-a)*e[s]+a*t[s];return o}function B(e,t,n){return e>=t&&e<=n}function U(e){var t=.001*(C-E);return e>=E-t&&e<=C+t}function H(t){for(var n=[],r=0;r<4;r++){var i=t[r];n.push([e._x[i],e._y[i],e._z[i],e._value[i]])}return n}var $=3;function V(e,t,n,r,i,a){a||(a=1),n=[-1,-1,-1];var o=!1,s=[B(t[0][3],r,i),B(t[1][3],r,i),B(t[2][3],r,i)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(e,t,n){return U(t[0][3])&&U(t[1][3])&&U(t[2][3])?(z(e,t,n),!0):a<$&&V(e,t,n,E,C,++a)};if(s[0]&&s[1]&&s[2])return l(e,t,n)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach((function(a){if(s[a[0]]&&s[a[1]]&&!s[a[2]]){var u=t[a[0]],f=t[a[1]],d=t[a[2]],h=j(d,u,r,i),p=j(d,f,r,i);o=l(e,[p,h,u],[-1,-1,n[a[0]]])||o,o=l(e,[u,f,p],[n[a[0]],n[a[1]],-1])||o,c=!0}})),c||[[0,1,2],[1,2,0],[2,0,1]].forEach((function(a){if(s[a[0]]&&!s[a[1]]&&!s[a[2]]){var u=t[a[0]],f=t[a[1]],d=t[a[2]],h=j(f,u,r,i),p=j(d,u,r,i);o=l(e,[p,h,u],[-1,-1,n[a[0]]])||o,c=!0}})),o}function W(e,t,n,r){var i=!1,a=H(t),o=[B(a[0][3],n,r),B(a[1][3],n,r),B(a[2][3],n,r),B(a[3][3],n,r)];if(!o[0]&&!o[1]&&!o[2]&&!o[3])return i;if(o[0]&&o[1]&&o[2]&&o[3])return v&&(i=function(e,t,n){var r=function(r,i,a){z(e,[t[r],t[i],t[a]],[n[r],n[i],n[a]])};r(0,1,2),r(3,0,1),r(2,3,0),r(1,2,3)}(e,a,t)||i),i;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],d=a[l[3]];if(v)i=z(e,[c,u,f],[t[l[0]],t[l[1]],t[l[2]]])||i;else{var h=j(d,c,n,r),p=j(d,u,n,r),m=j(d,f,n,r);i=z(null,[h,p,m],[-1,-1,-1])||i}s=!0}})),s||([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],d=a[l[3]],h=j(f,c,n,r),p=j(f,u,n,r),m=j(d,u,n,r),g=j(d,c,n,r);v?(i=z(e,[c,g,h],[t[l[0]],-1,-1])||i,i=z(e,[u,p,m],[t[l[1]],-1,-1])||i):i=function(e,t,n){var r=function(r,i,a){z(e,[t[r],t[i],t[a]],[n[r],n[i],n[a]])};r(0,1,2),r(2,3,0)}(null,[h,p,m,g],[-1,-1,-1,-1])||i,s=!0}})),s||[[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach((function(l){if(o[l[0]]&&!o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],d=a[l[3]],h=j(u,c,n,r),p=j(f,c,n,r),m=j(d,c,n,r);v?(i=z(e,[c,h,p],[t[l[0]],-1,-1])||i,i=z(e,[c,p,m],[t[l[0]],-1,-1])||i,i=z(e,[c,m,h],[t[l[0]],-1,-1])||i):i=z(null,[h,p,m],[-1,-1,-1])||i,s=!0}}))),i}function q(e,t,n,r,i,a,o,s,l,c,u){var f=!1;return p&&(F(e,"A")&&(f=W(null,[t,n,r,a],c,u)||f),F(e,"B")&&(f=W(null,[n,r,i,l],c,u)||f),F(e,"C")&&(f=W(null,[n,a,o,l],c,u)||f),F(e,"D")&&(f=W(null,[r,a,s,l],c,u)||f),F(e,"E")&&(f=W(null,[n,r,a,l],c,u)||f)),v&&(f=W(e,[n,r,a,l],c,u)||f),f}function G(e,t,n,r,i,a,o,s){return[!0===s[0]||V(e,H([t,n,r]),[t,n,r],a,o),!0===s[1]||V(e,H([r,i,t]),[r,i,t],a,o)]}function Z(e,t,n,r,i,a,o,s,l){return s?G(e,t,n,i,r,a,o,l):G(e,n,i,r,t,a,o,l)}function Y(e,t,n,r,i,a,o){var s,l,c,u,f=!1,d=function(){f=V(e,[s,l,c],[-1,-1,-1],i,a)||f,f=V(e,[c,u,s],[-1,-1,-1],i,a)||f},h=o[0],p=o[1],v=o[2];return h&&(s=R(H([S(t,n-0,r-0)])[0],H([S(t-1,n-0,r-0)])[0],h),l=R(H([S(t,n-0,r-1)])[0],H([S(t-1,n-0,r-1)])[0],h),c=R(H([S(t,n-1,r-1)])[0],H([S(t-1,n-1,r-1)])[0],h),u=R(H([S(t,n-1,r-0)])[0],H([S(t-1,n-1,r-0)])[0],h),d()),p&&(s=R(H([S(t-0,n,r-0)])[0],H([S(t-0,n-1,r-0)])[0],p),l=R(H([S(t-0,n,r-1)])[0],H([S(t-0,n-1,r-1)])[0],p),c=R(H([S(t-1,n,r-1)])[0],H([S(t-1,n-1,r-1)])[0],p),u=R(H([S(t-1,n,r-0)])[0],H([S(t-1,n-1,r-0)])[0],p),d()),v&&(s=R(H([S(t-0,n-0,r)])[0],H([S(t-0,n-0,r-1)])[0],v),l=R(H([S(t-0,n-1,r)])[0],H([S(t-0,n-1,r-1)])[0],v),c=R(H([S(t-1,n-1,r)])[0],H([S(t-1,n-1,r-1)])[0],v),u=R(H([S(t-1,n-0,r)])[0],H([S(t-1,n-0,r-1)])[0],v),d()),f}function K(e,t,n,r,i,a,o,s,l,c,u,f){var d=e;return f?(p&&"even"===e&&(d=null),q(d,t,n,r,i,a,o,s,l,c,u)):(p&&"odd"===e&&(d=null),q(d,l,s,o,a,i,r,n,t,c,u))}function X(e,t,n,r,i){for(var a=[],o=0,s=0;sMath.abs(k-A)?[T,k]:[k,A];te(n,M[0],M[1])}}var O=[[Math.min(E,A),Math.max(E,A)],[Math.min(T,C),Math.max(T,C)]];["x","y","z"].forEach((function(n){for(var r=[],i=0;i0&&(f.push(p.id),"x"===n?d.push([p.distRatio,0,0]):"y"===n?d.push([0,p.distRatio,0]):d.push([0,0,p.distRatio]))}else u=ae(1,"x"===n?x-1:"y"===n?w-1:_-1);f.length>0&&(r[a]="x"===n?ne(t,f,o,s,d,r[a]):"y"===n?re(t,f,o,s,d,r[a]):ie(t,f,o,s,d,r[a]),a++),u.length>0&&(r[a]="x"===n?X(t,u,o,s,r[a]):"y"===n?J(t,u,o,s,r[a]):Q(t,u,o,s,r[a]),a++)}var v=e.caps[n];v.show&&v.fill&&(D(v.fill),r[a]="x"===n?X(t,[0,x-1],o,s,r[a]):"y"===n?J(t,[0,w-1],o,s,r[a]):Q(t,[0,_-1],o,s,r[a]),a++)}})),0===m&&P(),e._meshX=r,e._meshY=i,e._meshZ=a,e._meshIntensity=o,e._Xs=g,e._Ys=y,e._Zs=b}(),e}e.exports={findNearestOnAxis:l,generateIsoMeshes:d,createIsosurfaceTrace:function(e,t){var n=e.glplot.gl,i=r({gl:n}),a=new c(e,i,t.uid);return i._trace=a,a.update(t),e.glplot.add(i),a}}},82738:function(e,t,n){"use strict";var r=n(71828),i=n(73972),a=n(16249),o=n(1586);function s(e,t,n,r,a){var s=a("isomin"),l=a("isomax");void 0!==l&&null!==l&&void 0!==s&&null!==s&&s>l&&(t.isomin=null,t.isomax=null);var c=a("x"),u=a("y"),f=a("z"),d=a("value");c&&c.length&&u&&u.length&&f&&f.length&&d&&d.length?(i.getComponentMethod("calendars","handleTraceDefaults")(e,t,["x","y","z"],r),a("valuehoverformat"),["x","y","z"].forEach((function(e){a(e+"hoverformat");var t="caps."+e;a(t+".show")&&a(t+".fill");var n="slices."+e;a(n+".show")&&(a(n+".fill"),a(n+".locations"))})),a("spaceframe.show")&&a("spaceframe.fill"),a("surface.show")&&(a("surface.count"),a("surface.fill"),a("surface.pattern")),a("contour.show")&&(a("contour.color"),a("contour.width")),["text","hovertext","hovertemplate","lighting.ambient","lighting.diffuse","lighting.specular","lighting.roughness","lighting.fresnel","lighting.vertexnormalsepsilon","lighting.facenormalsepsilon","lightposition.x","lightposition.y","lightposition.z","flatshading","opacity"].forEach((function(e){a(e)})),o(e,t,r,a,{prefix:"",cLetter:"c"}),t._length=null):t.visible=!1}e.exports={supplyDefaults:function(e,t,n,i){s(e,t,0,i,(function(n,i){return r.coerce(e,t,a,n,i)}))},supplyIsoDefaults:s}},64943:function(e,t,n){"use strict";e.exports={attributes:n(16249),supplyDefaults:n(82738).supplyDefaults,calc:n(56959),colorbar:{min:"cmin",max:"cmax"},plot:n(22674).createIsosurfaceTrace,moduleType:"trace",name:"isosurface",basePlotModule:n(58547),categories:["gl3d","showLegend"],meta:{}}},2418:function(e,t,n){"use strict";var r=n(50693),i=n(12663).axisHoverFormat,a=n(5386).fF,o=n(54532),s=n(9012),l=n(1426).extendFlat;e.exports=l({x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},i:{valType:"data_array",editType:"calc"},j:{valType:"data_array",editType:"calc"},k:{valType:"data_array",editType:"calc"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:a({editType:"calc"}),xhoverformat:i("x"),yhoverformat:i("y"),zhoverformat:i("z"),delaunayaxis:{valType:"enumerated",values:["x","y","z"],dflt:"z",editType:"calc"},alphahull:{valType:"number",dflt:-1,editType:"calc"},intensity:{valType:"data_array",editType:"calc"},intensitymode:{valType:"enumerated",values:["vertex","cell"],dflt:"vertex",editType:"calc"},color:{valType:"color",editType:"calc"},vertexcolor:{valType:"data_array",editType:"calc"},facecolor:{valType:"data_array",editType:"calc"},transforms:void 0},r("",{colorAttr:"`intensity`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:o.opacity,flatshading:{valType:"boolean",dflt:!1,editType:"calc"},contour:{show:l({},o.contours.x.show,{}),color:o.contours.x.color,width:o.contours.x.width,editType:"calc"},lightposition:{x:l({},o.lightposition.x,{dflt:1e5}),y:l({},o.lightposition.y,{dflt:1e5}),z:l({},o.lightposition.z,{dflt:0}),editType:"calc"},lighting:l({vertexnormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-12,editType:"calc"},facenormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-6,editType:"calc"},editType:"calc"},o.lighting),hoverinfo:l({},s.hoverinfo,{editType:"calc"}),showlegend:l({},s.showlegend,{dflt:!1})})},82932:function(e,t,n){"use strict";var r=n(78803);e.exports=function(e,t){t.intensity&&r(e,t,{vals:t.intensity,containerStr:"",cLetter:"c"})}},91134:function(e,t,n){"use strict";var r=n(9330).gl_mesh3d,i=n(9330).delaunay_triangulate,a=n(9330).alpha_shape,o=n(9330).convex_hull,s=n(81697).parseColorScale,l=n(78614),c=n(21081).extractOpts,u=n(90060);function f(e,t,n){this.scene=e,this.uid=n,this.mesh=t,this.name="",this.color="#fff",this.data=null,this.showContour=!1}var d=f.prototype;function h(e){for(var t=[],n=e.length,r=0;r=t-.5)return!1;return!0}d.handlePick=function(e){if(e.object===this.mesh){var t=e.index=e.data.index;e.data._cellCenter?e.traceCoordinate=e.data.dataCoordinate:e.traceCoordinate=[this.data.x[t],this.data.y[t],this.data.z[t]];var n=this.data.hovertext||this.data.text;return Array.isArray(n)&&void 0!==n[t]?e.textLabel=n[t]:n&&(e.textLabel=n),!0}},d.update=function(e){var t=this.scene,n=t.fullSceneLayout;this.data=e;var r,f=e.x.length,d=u(p(n.xaxis,e.x,t.dataScale[0],e.xcalendar),p(n.yaxis,e.y,t.dataScale[1],e.ycalendar),p(n.zaxis,e.z,t.dataScale[2],e.zcalendar));if(e.i&&e.j&&e.k){if(e.i.length!==e.j.length||e.j.length!==e.k.length||!m(e.i,f)||!m(e.j,f)||!m(e.k,f))return;r=u(v(e.i),v(e.j),v(e.k))}else r=0===e.alphahull?o(d):e.alphahull>0?a(e.alphahull,d):function(e,t){for(var n=["x","y","z"].indexOf(e),r=[],a=t.length,o=0;og):m=T>_,g=T;var A=c(_,k,S,T);A.pos=w,A.yc=(_+T)/2,A.i=x,A.dir=m?"increasing":"decreasing",A.x=A.pos,A.y=[S,k],y&&(A.orig_p=n[x]),p&&(A.tx=t.text[x]),v&&(A.htx=t.hovertext[x]),b.push(A)}else b.push({pos:w,empty:!0})}return t._extremes[l._id]=a.findExtremes(l,r.concat(d,f),{padded:!0}),b.length&&(b[0].t={labels:{open:i(e,"open:")+" ",high:i(e,"high:")+" ",low:i(e,"low:")+" ",close:i(e,"close:")+" "}}),b}e.exports={calc:function(e,t){var n=a.getFromId(e,t.xaxis),i=a.getFromId(e,t.yaxis),s=function(e,t,n){var i=n._minDiff;if(!i){var a,s=e._fullData,l=[];for(i=1/0,a=0;a"+c.labels[b]+r.hoverLabelText(s,x,l.yhoverformat):((y=i.extendFlat({},d)).y0=y.y1=w,y.yLabelVal=x,y.yLabel=c.labels[b]+r.hoverLabelText(s,x,l.yhoverformat),y.name="",f.push(y),m[x]=y)}return f}function d(e,t,n,i){var a=e.cd,o=e.ya,l=a[0].trace,f=a[0].t,d=u(e,t,n,i);if(!d)return[];var h=a[d.index],p=d.index=h.i,v=h.dir;function m(e){return f.labels[e]+r.hoverLabelText(o,l[e][p],l.yhoverformat)}var g=h.hi||l.hoverinfo,y=g.split("+"),b="all"===g,x=b||-1!==y.indexOf("y"),w=b||-1!==y.indexOf("text"),_=x?[m("open"),m("high"),m("low"),m("close")+" "+c[v]]:[];return w&&s(h,l,_),d.extraText=_.join("
"),d.y0=d.y1=o.c2p(h.yc,!0),[d]}e.exports={hoverPoints:function(e,t,n,r){return e.cd[0].trace.hoverlabel.split?f(e,t,n,r):d(e,t,n,r)},hoverSplit:f,hoverOnPoints:d}},54186:function(e,t,n){"use strict";e.exports={moduleType:"trace",name:"ohlc",basePlotModule:n(93612),categories:["cartesian","svg","showLegend"],meta:{},attributes:n(2522),supplyDefaults:n(16169),calc:n(3485).calc,plot:n(72314),style:n(53101),hoverPoints:n(66449).hoverPoints,selectPoints:n(67324)}},14555:function(e,t,n){"use strict";var r=n(73972),i=n(71828);e.exports=function(e,t,n,a){var o=n("x"),s=n("open"),l=n("high"),c=n("low"),u=n("close");if(n("hoverlabel.split"),r.getComponentMethod("calendars","handleTraceDefaults")(e,t,["x"],a),s&&l&&c&&u){var f=Math.min(s.length,l.length,c.length,u.length);return o&&(f=Math.min(f,i.minRowLength(o))),t._length=f,f}}},72314:function(e,t,n){"use strict";var r=n(39898),i=n(71828);e.exports=function(e,t,n,a){var o=t.yaxis,s=t.xaxis,l=!!s.rangebreaks;i.makeTraceGroups(a,n,"trace ohlc").each((function(e){var t=r.select(this),n=e[0],a=n.t;if(!0!==n.trace.visible||a.empty)t.remove();else{var c=a.tickLen,u=t.selectAll("path").data(i.identity);u.enter().append("path"),u.exit().remove(),u.attr("d",(function(e){if(e.empty)return"M0,0Z";var t=s.c2p(e.pos-c,!0),n=s.c2p(e.pos+c,!0),r=l?(t+n)/2:s.c2p(e.pos,!0);return"M"+t+","+o.c2p(e.o,!0)+"H"+r+"M"+r+","+o.c2p(e.h,!0)+"V"+o.c2p(e.l,!0)+"M"+n+","+o.c2p(e.c,!0)+"H"+r}))}}))}},67324:function(e){"use strict";e.exports=function(e,t){var n,r=e.cd,i=e.xaxis,a=e.yaxis,o=[],s=r[0].t.bPos||0;if(!1===t)for(n=0;n=e.length)return!1;if(void 0!==t[e[n]])return!1;t[e[n]]=!0}return!0}(n))for(t=0;t0;c&&(o="array");var u=n("categoryorder",o);"array"===u?(n("categoryarray"),n("ticktext")):(delete e.categoryarray,delete e.ticktext),c||"array"!==u||(t.categoryorder="trace")}}e.exports=function(e,t,n,f){function d(n,i){return r.coerce(e,t,l,n,i)}var h=s(e,t,{name:"dimensions",handleItemDefaults:u}),p=function(e,t,n,o,s){s("line.shape"),s("line.hovertemplate");var l=s("line.color",o.colorway[0]);if(i(e,"line")&&r.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(e,t,o,s,{prefix:"line.",cLetter:"c"}),l.length;t.line.color=n}return 1/0}(e,t,n,f,d);o(t,f,d),Array.isArray(h)&&h.length||(t.visible=!1),c(t,h,"values",p),d("hoveron"),d("hovertemplate"),d("arrangement"),d("bundlecolors"),d("sortpaths"),d("counts");var v={family:f.font.family,size:Math.round(f.font.size),color:f.font.color};r.coerceFont(d,"labelfont",v);var m={family:f.font.family,size:Math.round(f.font.size/1.2),color:f.font.color};r.coerceFont(d,"tickfont",m)}},94873:function(e,t,n){"use strict";e.exports={attributes:n(99506),supplyDefaults:n(14647),calc:n(28699),plot:n(45784),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcats",basePlotModule:n(27677),categories:["noOpacity"],meta:{}}},45460:function(e,t,n){"use strict";var r=n(39898),i=n(81684).k4,a=n(72391),o=n(30211),s=n(71828),l=s.strTranslate,c=n(91424),u=n(84267),f=n(63893);function d(e,t,n,i){var a=t._context.staticPlot,o=e.map(N.bind(0,t,n)),u=i.selectAll("g.parcatslayer").data([null]);u.enter().append("g").attr("class","parcatslayer").style("pointer-events",a?"none":"all");var d=u.selectAll("g.trace.parcats").data(o,h),y=d.enter().append("g").attr("class","trace parcats");d.attr("transform",(function(e){return l(e.x,e.y)})),y.append("g").attr("class","paths");var b=d.select("g.paths").selectAll("path.path").data((function(e){return e.paths}),h);b.attr("fill",(function(e){return e.model.color}));var _=b.enter().append("path").attr("class","path").attr("stroke-opacity",0).attr("fill",(function(e){return e.model.color})).attr("fill-opacity",0);w(_),b.attr("d",(function(e){return e.svgD})),_.empty()||b.sort(v),b.exit().remove(),b.on("mouseover",m).on("mouseout",g).on("click",x),y.append("g").attr("class","dimensions");var T=d.select("g.dimensions").selectAll("g.dimension").data((function(e){return e.dimensions}),h);T.enter().append("g").attr("class","dimension"),T.attr("transform",(function(e){return l(e.x,0)})),T.exit().remove();var A=T.selectAll("g.category").data((function(e){return e.categories}),h),E=A.enter().append("g").attr("class","category");A.attr("transform",(function(e){return l(0,e.y)})),E.append("rect").attr("class","catrect").attr("pointer-events","none"),A.select("rect.catrect").attr("fill","none").attr("width",(function(e){return e.width})).attr("height",(function(e){return e.height})),k(E);var C=A.selectAll("rect.bandrect").data((function(e){return e.bands}),h);C.each((function(){s.raiseToTop(this)})),C.attr("fill",(function(e){return e.color}));var R=C.enter().append("rect").attr("class","bandrect").attr("stroke-opacity",0).attr("fill",(function(e){return e.color})).attr("fill-opacity",0);C.attr("fill",(function(e){return e.color})).attr("width",(function(e){return e.width})).attr("height",(function(e){return e.height})).attr("y",(function(e){return e.y})).attr("cursor",(function(e){return"fixed"===e.parcatsViewModel.arrangement?"default":"perpendicular"===e.parcatsViewModel.arrangement?"ns-resize":"move"})),S(R),C.exit().remove(),E.append("text").attr("class","catlabel").attr("pointer-events","none");var D=t._fullLayout.paper_bgcolor;A.select("text.catlabel").attr("text-anchor",(function(e){return p(e)?"start":"end"})).attr("alignment-baseline","middle").style("text-shadow",f.makeTextShadow(D)).style("fill","rgb(0, 0, 0)").attr("x",(function(e){return p(e)?e.width+5:-5})).attr("y",(function(e){return e.height/2})).text((function(e){return e.model.categoryLabel})).each((function(e){c.font(r.select(this),e.parcatsViewModel.categorylabelfont),f.convertToTspans(r.select(this),t)})),E.append("text").attr("class","dimlabel"),A.select("text.dimlabel").attr("text-anchor","middle").attr("alignment-baseline","baseline").attr("cursor",(function(e){return"fixed"===e.parcatsViewModel.arrangement?"default":"ew-resize"})).attr("x",(function(e){return e.width/2})).attr("y",-5).text((function(e,t){return 0===t?e.parcatsViewModel.model.dimensions[e.model.dimensionInd].dimensionLabel:null})).each((function(e){c.font(r.select(this),e.parcatsViewModel.labelfont)})),A.selectAll("rect.bandrect").on("mouseover",M).on("mouseout",O),A.exit().remove(),T.call(r.behavior.drag().origin((function(e){return{x:e.x,y:0}})).on("dragstart",P).on("drag",L).on("dragend",I)),d.each((function(e){e.traceSelection=r.select(this),e.pathSelection=r.select(this).selectAll("g.paths").selectAll("path.path"),e.dimensionSelection=r.select(this).selectAll("g.dimensions").selectAll("g.dimension")})),d.exit().remove()}function h(e){return e.key}function p(e){var t=e.parcatsViewModel.dimensions.length,n=e.parcatsViewModel.dimensions[t-1].model.dimensionInd;return e.model.dimensionInd===n}function v(e,t){return e.model.rawColor>t.model.rawColor?1:e.model.rawColor"),M=r.mouse(f)[0];o.loneHover({trace:d,x:x-p.left+v.left,y:w-p.top+v.top,text:C,color:e.model.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:10,fontColor:k,idealAlign:M1&&d.displayInd===f.dimensions.length-1?(i=c.left,a="left"):(i=c.left+c.width,a="right");var v=u.model.count,m=u.model.categoryLabel,g=v/u.parcatsViewModel.model.count,y={countLabel:v,categoryLabel:m,probabilityLabel:g.toFixed(3)},b=[];-1!==u.parcatsViewModel.hoverinfoItems.indexOf("count")&&b.push(["Count:",y.countLabel].join(" ")),-1!==u.parcatsViewModel.hoverinfoItems.indexOf("probability")&&b.push(["P("+y.categoryLabel+"):",y.probabilityLabel].join(" "));var x=b.join("
");return{trace:h,x:o*(i-t.left),y:s*(p-t.top),text:x,color:"lightgray",borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:12,fontColor:"black",idealAlign:a,hovertemplate:h.hovertemplate,hovertemplateLabels:y,eventData:[{data:h._input,fullData:h,count:v,category:m,probability:g}]}}function M(e){if(!e.parcatsViewModel.dragDimension&&-1===e.parcatsViewModel.hoverinfoItems.indexOf("skip")){if(r.mouse(this)[1]<-1)return;var t,n=e.parcatsViewModel.graphDiv,i=n._fullLayout,a=i._paperdiv.node().getBoundingClientRect(),l=e.parcatsViewModel.hoveron,c=this;"color"===l?(function(e){var t=r.select(e).datum(),n=T(t);_(n),n.each((function(){s.raiseToTop(this)})),r.select(e.parentNode).selectAll("rect.bandrect").filter((function(e){return e.color===t.color})).each((function(){s.raiseToTop(this),r.select(this).attr("stroke","black").attr("stroke-width",1.5)}))}(c),E(c,"plotly_hover",r.event)):(function(e){r.select(e.parentNode).selectAll("rect.bandrect").each((function(e){var t=T(e);_(t),t.each((function(){s.raiseToTop(this)}))})),r.select(e.parentNode).select("rect.catrect").attr("stroke","black").attr("stroke-width",2.5)}(c),A(c,"plotly_hover",r.event)),-1===e.parcatsViewModel.hoverinfoItems.indexOf("none")&&("category"===l?t=C(n,a,c):"color"===l?t=function(e,t,n){e._fullLayout._calcInverseTransform(e);var i,a,o=e._fullLayout._invScaleX,s=e._fullLayout._invScaleY,l=n.getBoundingClientRect(),c=r.select(n).datum(),f=c.categoryViewModel,d=f.parcatsViewModel,h=d.model.dimensions[f.model.dimensionInd],p=d.trace,v=l.y+l.height/2;d.dimensions.length>1&&h.displayInd===d.dimensions.length-1?(i=l.left,a="left"):(i=l.left+l.width,a="right");var m=f.model.categoryLabel,g=c.parcatsViewModel.model.count,y=0;c.categoryViewModel.bands.forEach((function(e){e.color===c.color&&(y+=e.count)}));var b=f.model.count,x=0;d.pathSelection.each((function(e){e.model.color===c.color&&(x+=e.model.count)}));var w=y/g,_=y/x,k=y/b,S={countLabel:g,categoryLabel:m,probabilityLabel:w.toFixed(3)},T=[];-1!==f.parcatsViewModel.hoverinfoItems.indexOf("count")&&T.push(["Count:",S.countLabel].join(" ")),-1!==f.parcatsViewModel.hoverinfoItems.indexOf("probability")&&(T.push("P(color \u2229 "+m+"): "+S.probabilityLabel),T.push("P("+m+" | color): "+_.toFixed(3)),T.push("P(color | "+m+"): "+k.toFixed(3)));var A=T.join("
"),E=u.mostReadable(c.color,["black","white"]);return{trace:p,x:o*(i-t.left),y:s*(v-t.top),text:A,color:c.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontColor:E,fontSize:10,idealAlign:a,hovertemplate:p.hovertemplate,hovertemplateLabels:S,eventData:[{data:p._input,fullData:p,category:m,count:g,probability:w,categorycount:b,colorcount:x,bandcolorcount:y}]}}(n,a,c):"dimension"===l&&(t=function(e,t,n){var i=[];return r.select(n.parentNode.parentNode).selectAll("g.category").select("rect.catrect").each((function(){i.push(C(e,t,this))})),i}(n,a,c)),t&&o.loneHover(t,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:n}))}}function O(e){var t=e.parcatsViewModel;t.dragDimension||(w(t.pathSelection),k(t.dimensionSelection.selectAll("g.category")),S(t.dimensionSelection.selectAll("g.category").selectAll("rect.bandrect")),o.loneUnhover(t.graphDiv._fullLayout._hoverlayer.node()),t.pathSelection.sort(v),-1!==t.hoverinfoItems.indexOf("skip"))||("color"===e.parcatsViewModel.hoveron?E(this,"plotly_unhover",r.event):A(this,"plotly_unhover",r.event))}function P(e){"fixed"!==e.parcatsViewModel.arrangement&&(e.dragDimensionDisplayInd=e.model.displayInd,e.initialDragDimensionDisplayInds=e.parcatsViewModel.model.dimensions.map((function(e){return e.displayInd})),e.dragHasMoved=!1,e.dragCategoryDisplayInd=null,r.select(this).selectAll("g.category").select("rect.catrect").each((function(t){var n=r.mouse(this)[0],i=r.mouse(this)[1];-2<=n&&n<=t.width+2&&-2<=i&&i<=t.height+2&&(e.dragCategoryDisplayInd=t.model.displayInd,e.initialDragCategoryDisplayInds=e.model.categories.map((function(e){return e.displayInd})),t.model.dragY=t.y,s.raiseToTop(this.parentNode),r.select(this.parentNode).selectAll("rect.bandrect").each((function(t){t.yf.y+f.height/2&&(o.model.displayInd=f.model.displayInd,f.model.displayInd=l),e.dragCategoryDisplayInd=o.model.displayInd}if(null===e.dragCategoryDisplayInd||"freeform"===e.parcatsViewModel.arrangement){a.model.dragX=r.event.x;var d=e.parcatsViewModel.dimensions[n],h=e.parcatsViewModel.dimensions[i];void 0!==d&&a.model.dragXh.x&&(a.model.displayInd=h.model.displayInd,h.model.displayInd=e.dragDimensionDisplayInd),e.dragDimensionDisplayInd=a.model.displayInd}B(e.parcatsViewModel),j(e.parcatsViewModel),F(e.parcatsViewModel),D(e.parcatsViewModel)}}function I(e){if("fixed"!==e.parcatsViewModel.arrangement&&null!==e.dragDimensionDisplayInd){r.select(this).selectAll("text").attr("font-weight","normal");var t={},n=R(e.parcatsViewModel),i=e.parcatsViewModel.model.dimensions.map((function(e){return e.displayInd})),o=e.initialDragDimensionDisplayInds.some((function(e,t){return e!==i[t]}));o&&i.forEach((function(n,r){var i=e.parcatsViewModel.model.dimensions[r].containerInd;t["dimensions["+i+"].displayindex"]=n}));var s=!1;if(null!==e.dragCategoryDisplayInd){var l=e.model.categories.map((function(e){return e.displayInd}));if(s=e.initialDragCategoryDisplayInds.some((function(e,t){return e!==l[t]}))){var c=e.model.categories.slice().sort((function(e,t){return e.displayInd-t.displayInd})),u=c.map((function(e){return e.categoryValue})),f=c.map((function(e){return e.categoryLabel}));t["dimensions["+e.model.containerInd+"].categoryarray"]=[u],t["dimensions["+e.model.containerInd+"].ticktext"]=[f],t["dimensions["+e.model.containerInd+"].categoryorder"]="array"}}-1===e.parcatsViewModel.hoverinfoItems.indexOf("skip")&&!e.dragHasMoved&&e.potentialClickBand&&("color"===e.parcatsViewModel.hoveron?E(e.potentialClickBand,"plotly_click",r.event.sourceEvent):A(e.potentialClickBand,"plotly_click",r.event.sourceEvent)),e.model.dragX=null,null!==e.dragCategoryDisplayInd&&(e.parcatsViewModel.dimensions[e.dragDimensionDisplayInd].categories[e.dragCategoryDisplayInd].model.dragY=null,e.dragCategoryDisplayInd=null),e.dragDimensionDisplayInd=null,e.parcatsViewModel.dragDimension=null,e.dragHasMoved=null,e.potentialClickBand=null,B(e.parcatsViewModel),j(e.parcatsViewModel),r.transition().duration(300).ease("cubic-in-out").each((function(){F(e.parcatsViewModel,!0),D(e.parcatsViewModel,!0)})).each("end",(function(){(o||s)&&a.restyle(e.parcatsViewModel.graphDiv,t,[n])}))}}function R(e){for(var t,n=e.graphDiv._fullData,r=0;r=0;s--)u+="C"+c[s]+","+(t[s+1]+r)+" "+l[s]+","+(t[s]+r)+" "+(e[s]+n[s])+","+(t[s]+r),u+="l-"+n[s]+",0 ";return u+="Z"}function j(e){var t=e.dimensions,n=e.model,r=t.map((function(e){return e.categories.map((function(e){return e.y}))})),i=e.model.dimensions.map((function(e){return e.categories.map((function(e){return e.displayInd}))})),a=e.model.dimensions.map((function(e){return e.displayInd})),o=e.dimensions.map((function(e){return e.model.dimensionInd})),s=t.map((function(e){return e.x})),l=t.map((function(e){return e.width})),c=[];for(var u in n.paths)n.paths.hasOwnProperty(u)&&c.push(n.paths[u]);function f(e){var t=e.categoryInds.map((function(e,t){return i[t][e]}));return o.map((function(e){return t[e]}))}c.sort((function(t,n){var r=f(t),i=f(n);return"backward"===e.sortpaths&&(r.reverse(),i.reverse()),r.push(t.valueInds[0]),i.push(n.valueInds[0]),e.bundlecolors&&(r.unshift(t.rawColor),i.unshift(n.rawColor)),ri?1:0}));for(var d=new Array(c.length),h=t[0].model.count,p=t[0].categories.map((function(e){return e.height})).reduce((function(e,t){return e+t})),v=0;v0?p*(g.count/h):0;for(var y,b=new Array(r.length),x=0;x1?(e.width-80-16)/(r-1):0)*i;var a,o,s,l,c,u=[],f=e.model.maxCats,d=t.categories.length,h=t.count,p=e.height-8*(f-1),v=8*(f-d)/2,m=t.categories.map((function(e){return{displayInd:e.displayInd,categoryInd:e.categoryInd}}));for(m.sort((function(e,t){return e.displayInd-t.displayInd})),c=0;c0?o.count/h*p:0,s={key:o.valueInds[0],model:o,width:16,height:a,y:null!==o.dragY?o.dragY:v,bands:[],parcatsViewModel:e},v=v+a+8,u.push(s);return{key:t.dimensionInd,x:null!==t.dragX?t.dragX:n,y:0,width:16,model:t,categories:u,parcatsViewModel:e,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(e,t,n,r){d(n,e,r,t)}},45784:function(e,t,n){"use strict";var r=n(45460);e.exports=function(e,t,n,i){var a=e._fullLayout,o=a._paper,s=a._size;r(e,o,t,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},n,i)}},73362:function(e,t,n){"use strict";var r=n(50693),i=n(13838),a=n(41940),o=n(27670).Y,s=n(1426).extendFlat,l=n(44467).templatedArray;e.exports={domain:o({name:"parcoords",trace:!0,editType:"plot"}),labelangle:{valType:"angle",dflt:0,editType:"plot"},labelside:{valType:"enumerated",values:["top","bottom"],dflt:"top",editType:"plot"},labelfont:a({editType:"plot"}),tickfont:a({editType:"plot"}),rangefont:a({editType:"plot"}),dimensions:l("dimension",{label:{valType:"string",editType:"plot"},tickvals:s({},i.tickvals,{editType:"plot"}),ticktext:s({},i.ticktext,{editType:"plot"}),tickformat:s({},i.tickformat,{editType:"plot"}),visible:{valType:"boolean",dflt:!0,editType:"plot"},range:{valType:"info_array",items:[{valType:"number",editType:"plot"},{valType:"number",editType:"plot"}],editType:"plot"},constraintrange:{valType:"info_array",freeLength:!0,dimensions:"1-2",items:[{valType:"any",editType:"plot"},{valType:"any",editType:"plot"}],editType:"plot"},multiselect:{valType:"boolean",dflt:!0,editType:"plot"},values:{valType:"data_array",editType:"calc"},editType:"calc"}),line:s({editType:"calc"},r("line",{colorscaleDflt:"Viridis",autoColorDflt:!1,editTypeOverride:"calc"})),unselected:{line:{color:{valType:"color",dflt:"#7f7f7f",editType:"plot"},opacity:{valType:"number",min:0,max:1,dflt:"auto",editType:"plot"},editType:"plot"},editType:"plot"}}},57920:function(e,t,n){"use strict";var r=n(25706),i=n(39898),a=n(28984).keyFun,o=n(28984).repeat,s=n(71828).sorterAsc,l=n(71828).strTranslate,c=r.bar.snapRatio;function u(e,t){return e*(1-c)+t*c}var f=r.bar.snapClose;function d(e,t){return e*(1-f)+t*f}function h(e,t,n,r){if(function(e,t){for(var n=0;n=t[n][0]&&e<=t[n][1])return!0;return!1}(n,r))return n;var i=e?-1:1,a=0,o=t.length-1;if(i<0){var s=a;a=o,o=s}for(var l=t[a],c=l,f=a;i*ft){d=n;break}}if(a=u,isNaN(a)&&(a=isNaN(f)||isNaN(d)?isNaN(f)?d:f:t-c[f][1]e[1]+n||t=.9*e[1]+.1*e[0]?"n":t<=.9*e[0]+.1*e[1]?"s":"ns"}(p,t);v&&(o.interval=l[a],o.intervalPix=p,o.region=v)}}if(e.ordinal&&!o.region){var m=e.unitTickvals,y=e.unitToPaddedPx.invert(t);for(n=0;n=b[0]&&y<=b[1]){o.clickableOrdinalRange=b;break}}}return o}function _(e,t){i.event.sourceEvent.stopPropagation();var n=t.height-i.mouse(e)[1]-2*r.verticalPadding,a=t.brush.svgBrush;a.wasDragged=!0,a._dragging=!0,a.grabbingBar?a.newExtent=[n-a.grabPoint,n+a.barLength-a.grabPoint].map(t.unitToPaddedPx.invert):a.newExtent=[a.startExtent,t.unitToPaddedPx.invert(n)].sort(s),t.brush.filterSpecified=!0,a.extent=a.stayingIntervals.concat([a.newExtent]),a.brushCallback(t),x(e.parentNode)}function k(e,t){var n=w(t,t.height-i.mouse(e)[1]-2*r.verticalPadding),a="crosshair";n.clickableOrdinalRange?a="pointer":n.region&&(a=n.region+"-resize"),i.select(document.body).style("cursor",a)}function S(e){e.on("mousemove",(function(e){i.event.preventDefault(),e.parent.inBrushDrag||k(this,e)})).on("mouseleave",(function(e){e.parent.inBrushDrag||y()})).call(i.behavior.drag().on("dragstart",(function(e){!function(e,t){i.event.sourceEvent.stopPropagation();var n=t.height-i.mouse(e)[1]-2*r.verticalPadding,a=t.unitToPaddedPx.invert(n),o=t.brush,s=w(t,n),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar="ns"===s.region,c.grabbingBar){var u=l.map(t.unitToPaddedPx);c.grabPoint=n-u[0]-r.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=t.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter((function(e){return e[0]!==l[0]&&e[1]!==l[1]}))),c.startExtent=s.region?l["s"===s.region?1:0]:a,t.parent.inBrushDrag=!0,c.brushStartCallback()}(this,e)})).on("drag",(function(e){_(this,e)})).on("dragend",(function(e){!function(e,t){var n=t.brush,r=n.filter,a=n.svgBrush;a._dragging||(k(e,t),_(e,t),t.brush.svgBrush.wasDragged=!1),a._dragging=!1,i.event.sourceEvent.stopPropagation();var o=a.grabbingBar;if(a.grabbingBar=!1,a.grabLocation=void 0,t.parent.inBrushDrag=!1,y(),!a.wasDragged)return a.wasDragged=void 0,a.clickableOrdinalRange?n.filterSpecified&&t.multiselect?a.extent.push(a.clickableOrdinalRange):(a.extent=[a.clickableOrdinalRange],n.filterSpecified=!0):o?(a.extent=a.stayingIntervals,0===a.extent.length&&A(n)):A(n),a.brushCallback(t),x(e.parentNode),void a.brushEndCallback(n.filterSpecified?r.getConsolidated():[]);var s=function(){r.set(r.getConsolidated())};if(t.ordinal){var l=t.unitTickvals;l[l.length-1]a.newExtent[0];a.extent=a.stayingIntervals.concat(c?[a.newExtent]:[]),a.extent.length||A(n),a.brushCallback(t),c?x(e.parentNode,s):(s(),x(e.parentNode))}else s();a.brushEndCallback(n.filterSpecified?r.getConsolidated():[])}(this,e)})))}function T(e,t){return e[0]-t[0]}function A(e){e.filterSpecified=!1,e.svgBrush.extent=[[-1/0,1/0]]}function E(e){for(var t,n=e.slice(),r=[],i=n.shift();i;){for(t=i.slice();(i=n.shift())&&i[0]<=t[1];)t[1]=Math.max(t[1],i[1]);r.push(t)}return 1===r.length&&r[0][0]>r[0][1]&&(r=[]),r}e.exports={makeBrush:function(e,t,n,r,i,a){var o,l=function(){var e,t,n=[];return{set:function(r){1===(n=r.map((function(e){return e.slice().sort(s)})).sort(T)).length&&n[0][0]===-1/0&&n[0][1]===1/0&&(n=[[0,-1]]),e=E(n),t=n.reduce((function(e,t){return[Math.min(e[0],t[0]),Math.max(e[1],t[1])]}),[1/0,-1/0])},get:function(){return n.slice()},getConsolidated:function(){return e},getBounds:function(){return t}}}();return l.set(n),{filter:l,filterSpecified:t,svgBrush:{extent:[],brushStartCallback:r,brushCallback:(o=i,function(e){var t=e.brush,n=function(e){return e.svgBrush.extent.map((function(e){return e.slice()}))}(t),r=n.slice();t.filter.set(r),o()}),brushEndCallback:a}}},ensureAxisBrush:function(e,t,n){var i=e.selectAll("."+r.cn.axisBrush).data(o,a);i.enter().append("g").classed(r.cn.axisBrush,!0),function(e,t,n){var i=n._context.staticPlot,a=e.selectAll(".background").data(o);a.enter().append("rect").classed("background",!0).call(p).call(v).style("pointer-events",i?"none":"auto").attr("transform",l(0,r.verticalPadding)),a.call(S).attr("height",(function(e){return e.height-r.verticalPadding}));var s=e.selectAll(".highlight-shadow").data(o);s.enter().append("line").classed("highlight-shadow",!0).attr("x",-r.bar.width/2).attr("stroke-width",r.bar.width+r.bar.strokeWidth).attr("stroke",t).attr("opacity",r.bar.strokeOpacity).attr("stroke-linecap","butt"),s.attr("y1",(function(e){return e.height})).call(b);var c=e.selectAll(".highlight").data(o);c.enter().append("line").classed("highlight",!0).attr("x",-r.bar.width/2).attr("stroke-width",r.bar.width-r.bar.strokeWidth).attr("stroke",r.bar.fillColor).attr("opacity",r.bar.fillOpacity).attr("stroke-linecap","butt"),c.attr("y1",(function(e){return e.height})).call(b)}(i,t,n)},cleanRanges:function(e,t){if(Array.isArray(e[0])?(e=e.map((function(e){return e.sort(s)})),e=t.multiselect?E(e.sort(T)):[e[0]]):e=[e.sort(s)],t.tickvals){var n=t.tickvals.slice().sort(s);if(!(e=e.map((function(e){var t=[h(0,n,e[0],[]),h(1,n,e[1],[])];if(t[1]>t[0])return t})).filter((function(e){return e}))).length)return}return e.length>1?e:e[0]}}},71791:function(e,t,n){"use strict";e.exports={attributes:n(73362),supplyDefaults:n(3633),calc:n(24639),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcoords",basePlotModule:n(49351),categories:["gl","regl","noOpacity","noHover"],meta:{}}},49351:function(e,t,n){"use strict";var r=n(39898),i=n(27659).a0,a=n(21341),o=n(77922);t.name="parcoords",t.plot=function(e){var t=i(e.calcdata,"parcoords")[0];t.length&&a(e,t)},t.clean=function(e,t,n,r){var i=r._has&&r._has("parcoords"),a=t._has&&t._has("parcoords");i&&!a&&(r._paperdiv.selectAll(".parcoords").remove(),r._glimages.selectAll("*").remove())},t.toSVG=function(e){var t=e._fullLayout._glimages,n=r.select(e).selectAll(".svg-container");n.filter((function(e,t){return t===n.size()-1})).selectAll(".gl-canvas-context, .gl-canvas-focus").each((function(){var e=this,n=e.toDataURL("image/png");t.append("svg:image").attr({xmlns:o.svg,"xlink:href":n,preserveAspectRatio:"none",x:0,y:0,width:e.style.width,height:e.style.height})})),window.setTimeout((function(){r.selectAll("#filterBarPattern").attr("id","filterBarPattern")}),60)}},24639:function(e,t,n){"use strict";var r=n(71828).isArrayOrTypedArray,i=n(21081),a=n(28984).wrap;e.exports=function(e,t){var n,o;return i.hasColorscale(t,"line")&&r(t.line.color)?(n=t.line.color,o=i.extractOpts(t.line).colorscale,i.calc(e,t,{vals:n,containerStr:"line",cLetter:"c"})):(n=function(e){for(var t=new Array(e),n=0;nf&&(r.log("parcoords traces support up to "+f+" dimensions at the moment"),p.splice(f));var v=s(e,t,{name:"dimensions",layout:l,handleItemDefaults:h}),m=function(e,t,n,o,s){var l=s("line.color",n);if(i(e,"line")&&r.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(e,t,o,s,{prefix:"line.",cLetter:"c"}),l.length;t.line.color=n}return 1/0}(e,t,n,l,u);o(t,l,u),Array.isArray(v)&&v.length||(t.visible=!1),d(t,v,"values",m);var g={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};r.coerceFont(u,"labelfont",g),r.coerceFont(u,"tickfont",g),r.coerceFont(u,"rangefont",g),u("labelangle"),u("labelside"),u("unselected.line.color"),u("unselected.line.opacity")}},1602:function(e,t,n){"use strict";var r=n(71828).isTypedArray;t.convertTypedArray=function(e){return r(e)?Array.prototype.slice.call(e):e},t.isOrdinal=function(e){return!!e.tickvals},t.isVisible=function(e){return e.visible||!("visible"in e)}},67618:function(e,t,n){"use strict";var r=n(71791);r.plot=n(21341),e.exports=r},83398:function(e,t,n){"use strict";var r=n(56068),i=r(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\n p17_20, p21_24, p25_28, p29_32,\n p33_36, p37_40, p41_44, p45_48,\n p49_52, p53_56, p57_60, colors;\n\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\n loA, hiA, loB, hiB, loC, hiC, loD, hiD;\n\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\nuniform float maskHeight;\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\nuniform vec4 contextColor;\nuniform sampler2D maskTexture, palette;\n\nbool isPick = (drwLayer > 1.5);\nbool isContext = (drwLayer < 0.5);\n\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\n\nfloat val(mat4 p, mat4 v) {\n return dot(matrixCompMult(p, v) * UNITS, UNITS);\n}\n\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\n float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\n float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\n return y1 * (1.0 - ratio) + y2 * ratio;\n}\n\nint iMod(int a, int b) {\n return a - b * (a / b);\n}\n\nbool fOutside(float p, float lo, float hi) {\n return (lo < hi) && (lo > p || p > hi);\n}\n\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\n return (\n fOutside(p[0], lo[0], hi[0]) ||\n fOutside(p[1], lo[1], hi[1]) ||\n fOutside(p[2], lo[2], hi[2]) ||\n fOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\n return (\n vOutside(p[0], lo[0], hi[0]) ||\n vOutside(p[1], lo[1], hi[1]) ||\n vOutside(p[2], lo[2], hi[2]) ||\n vOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\n return mOutside(A, loA, hiA) ||\n mOutside(B, loB, hiB) ||\n mOutside(C, loC, hiC) ||\n mOutside(D, loD, hiD);\n}\n\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\n mat4 pnts[4];\n pnts[0] = A;\n pnts[1] = B;\n pnts[2] = C;\n pnts[3] = D;\n\n for(int i = 0; i < 4; ++i) {\n for(int j = 0; j < 4; ++j) {\n for(int k = 0; k < 4; ++k) {\n if(0 == iMod(\n int(255.0 * texture2D(maskTexture,\n vec2(\n (float(i * 2 + j / 2) + 0.5) / 8.0,\n (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\n ))[3]\n ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\n 2\n )) return true;\n }\n }\n }\n return false;\n}\n\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\n float x = 0.5 * sign(v) + 0.5;\n float y = axisY(x, A, B, C, D);\n float z = 1.0 - abs(v);\n\n z += isContext ? 0.0 : 2.0 * float(\n outsideBoundingBox(A, B, C, D) ||\n outsideRasterMask(A, B, C, D)\n );\n\n return vec4(\n 2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\n z,\n 1.0\n );\n}\n\nvoid main() {\n mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\n mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\n mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\n mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\n\n float v = colors[3];\n\n gl_Position = position(isContext, v, A, B, C, D);\n\n fragColor =\n isContext ? vec4(contextColor) :\n isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\n}\n"]),a=r(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nvoid main() {\n gl_FragColor = fragColor;\n}\n"]),o=n(25706).maxDimensionCount,s=n(71828),l=1e-6,c=2048,u=new Uint8Array(4),f=new Uint8Array(4),d={shape:[256,1],format:"rgba",type:"uint8",mag:"nearest",min:"nearest"};function h(e,t,n,r,i){var a=e._gl;a.enable(a.SCISSOR_TEST),a.scissor(t,n,r,i),e.clear({color:[0,0,0,0],depth:1})}function p(e,t,n,r,i,a){var o=a.key;n.drawCompleted||(function(e){e.read({x:0,y:0,width:1,height:1,data:u})}(e),n.drawCompleted=!0),function s(l){var c=Math.min(r,i-l*r);0===l&&(window.cancelAnimationFrame(n.currentRafs[o]),delete n.currentRafs[o],h(e,a.scissorX,a.scissorY,a.scissorWidth,a.viewBoxSize[1])),n.clearOnly||(a.count=2*c,a.offset=2*l*r,t(a),l*r+c>>8*t)%256/255}function g(e,t,n){for(var r=new Array(8*t),i=0,a=0;af&&(f=e[i].dim1.canvasX,o=i);0===s&&h(T,0,0,n.canvasWidth,n.canvasHeight);var d=function(e){var t,n,r,i=[[],[]];for(r=0;r<64;r++){var a=!e&&ro._length&&(E=E.slice(0,o._length));var M,O=o.tickvals;function P(e,t){return{val:e,text:M[t]}}function L(e,t){return e.val-t.val}if(Array.isArray(O)&&O.length){M=o.ticktext,Array.isArray(M)&&M.length?M.length>O.length?M=M.slice(0,O.length):O.length>M.length&&(O=O.slice(0,M.length)):M=O.map(a(o.tickformat));for(var I=1;I=n||l>=i)return;var c=e.lineLayer.readPixel(s,i-1-l),u=0!==c[3],f=u?c[2]+256*(c[1]+256*c[0]):null,d={x:s,y:l,clientX:t.clientX,clientY:t.clientY,dataIndex:e.model.key,curveNumber:f};f!==N&&(u?a.hover(d):a.unhover&&a.unhover(d),N=f)}})),F.style("opacity",(function(e){return e.pick?0:1})),h.style("background","rgba(255, 255, 255, 0)");var z=h.selectAll("."+y.cn.parcoords).data(E,p);z.exit().remove(),z.enter().append("g").classed(y.cn.parcoords,!0).style("shape-rendering","crispEdges").style("pointer-events","none"),z.attr("transform",(function(e){return c(e.model.translateX,e.model.translateY)}));var j=z.selectAll("."+y.cn.parcoordsControlView).data(v,p);j.enter().append("g").classed(y.cn.parcoordsControlView,!0),j.attr("transform",(function(e){return c(e.model.pad.l,e.model.pad.t)}));var B=j.selectAll("."+y.cn.yAxis).data((function(e){return e.dimensions}),p);B.enter().append("g").classed(y.cn.yAxis,!0),j.each((function(e){I(B,e,k)})),F.each((function(e){if(e.viewModel){!e.lineLayer||a?e.lineLayer=x(this,e):e.lineLayer.update(e),(e.key||0===e.key)&&(e.viewModel[e.key]=e.lineLayer);var t=!e.context||a;e.lineLayer.render(e.viewModel.panels,t)}})),B.attr("transform",(function(e){return c(e.xScale(e.xIndex),0)})),B.call(r.behavior.drag().origin((function(e){return e})).on("drag",(function(e){var t=e.parent;A.linePickActive(!1),e.x=Math.max(-y.overdrag,Math.min(e.model.width+y.overdrag,r.event.x)),e.canvasX=e.x*e.model.canvasPixelRatio,B.sort((function(e,t){return e.x-t.x})).each((function(t,n){t.xIndex=n,t.x=e===t?t.x:t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio})),I(B,t,k),B.filter((function(t){return 0!==Math.abs(e.xIndex-t.xIndex)})).attr("transform",(function(e){return c(e.xScale(e.xIndex),0)})),r.select(this).attr("transform",c(e.x,0)),B.each((function(n,r,i){i===e.parent.key&&(t.dimensions[r]=n)})),t.contextLayer&&t.contextLayer.render(t.panels,!1,!C(t)),t.focusLayer.render&&t.focusLayer.render(t.panels)})).on("dragend",(function(e){var t=e.parent;e.x=e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio,I(B,t,k),r.select(this).attr("transform",(function(e){return c(e.x,0)})),t.contextLayer&&t.contextLayer.render(t.panels,!1,!C(t)),t.focusLayer&&t.focusLayer.render(t.panels),t.pickLayer&&t.pickLayer.render(t.panels,!0),A.linePickActive(!0),a&&a.axesMoved&&a.axesMoved(t.key,t.dimensions.map((function(e){return e.crossfilterDimensionIndex})))}))),B.exit().remove();var U=B.selectAll("."+y.cn.axisOverlays).data(v,p);U.enter().append("g").classed(y.cn.axisOverlays,!0),U.selectAll("."+y.cn.axis).remove();var H=U.selectAll("."+y.cn.axis).data(v,p);H.enter().append("g").classed(y.cn.axis,!0),H.each((function(e){var t=e.model.height/e.model.tickDistance,n=e.domainScale,i=n.domain();r.select(this).call(r.svg.axis().orient("left").tickSize(4).outerTickSize(2).ticks(t,e.tickFormat).tickValues(e.ordinal?i:null).tickFormat((function(t){return g.isOrdinal(e)?t:R(e.model.dimensions[e.visibleIndex],t)})).scale(n)),f.font(H.selectAll("text"),e.model.tickFont)})),H.selectAll(".domain, .tick>line").attr("fill","none").attr("stroke","black").attr("stroke-opacity",.25).attr("stroke-width","1px"),H.selectAll("text").style("text-shadow",u.makeTextShadow(T)).style("cursor","default");var $=U.selectAll("."+y.cn.axisHeading).data(v,p);$.enter().append("g").classed(y.cn.axisHeading,!0);var V=$.selectAll("."+y.cn.axisTitle).data(v,p);V.enter().append("text").classed(y.cn.axisTitle,!0).attr("text-anchor","middle").style("cursor","ew-resize").style("pointer-events",o?"none":"auto"),V.text((function(e){return e.label})).each((function(t){var n=r.select(this);f.font(n,t.model.labelFont),u.convertToTspans(n,e)})).attr("transform",(function(e){var t=L(e.model.labelAngle,e.model.labelSide),n=y.axisTitleOffset;return(t.dir>0?"":c(0,2*n+e.model.height))+l(t.degrees)+c(-n*t.dx,-n*t.dy)})).attr("text-anchor",(function(e){var t=L(e.model.labelAngle,e.model.labelSide);return 2*Math.abs(t.dx)>Math.abs(t.dy)?t.dir*t.dx<0?"start":"end":"middle"}));var W=U.selectAll("."+y.cn.axisExtent).data(v,p);W.enter().append("g").classed(y.cn.axisExtent,!0);var q=W.selectAll("."+y.cn.axisExtentTop).data(v,p);q.enter().append("g").classed(y.cn.axisExtentTop,!0),q.attr("transform",c(0,-y.axisExtentOffset));var G=q.selectAll("."+y.cn.axisExtentTopText).data(v,p);G.enter().append("text").classed(y.cn.axisExtentTopText,!0).call(P),G.text((function(e){return D(e,!0)})).each((function(e){f.font(r.select(this),e.model.rangeFont)}));var Z=W.selectAll("."+y.cn.axisExtentBottom).data(v,p);Z.enter().append("g").classed(y.cn.axisExtentBottom,!0),Z.attr("transform",(function(e){return c(0,e.model.height+y.axisExtentOffset)}));var Y=Z.selectAll("."+y.cn.axisExtentBottomText).data(v,p);Y.enter().append("text").classed(y.cn.axisExtentBottomText,!0).attr("dy","0.75em").call(P),Y.text((function(e){return D(e,!1)})).each((function(e){f.font(r.select(this),e.model.rangeFont)})),b.ensureAxisBrush(U,T,e)}},21341:function(e,t,n){"use strict";var r=n(17171),i=n(79749),a=n(1602).isVisible,o={};function s(e,t,n){var r=t.indexOf(n),i=e.indexOf(r);return-1===i&&(i+=t.length),i}(e.exports=function(e,t){var n=e._fullLayout;if(i(e,[],o)){var l={},c={},u={},f={},d=n._size;t.forEach((function(t,n){var r=t[0].trace;u[n]=r.index;var i=f[n]=r._fullInput.index;l[n]=e.data[i].dimensions,c[n]=e.data[i].dimensions.slice()})),r(e,t,{width:d.w,height:d.h,margin:{t:d.t,r:d.r,b:d.b,l:d.l}},{filterChanged:function(t,r,i){var a=c[t][r],o=i.map((function(e){return e.slice()})),s="dimensions["+r+"].constraintrange",l=n._tracePreGUI[e._fullData[u[t]]._fullInput.uid];if(void 0===l[s]){var d=a.constraintrange;l[s]=d||null}var h=e._fullData[u[t]].dimensions[r];o.length?(1===o.length&&(o=o[0]),a.constraintrange=o,h.constraintrange=o.slice(),o=[o]):(delete a.constraintrange,delete h.constraintrange,o=null);var p={};p[s]=o,e.emit("plotly_restyle",[p,[f[t]]])},hover:function(t){e.emit("plotly_hover",t)},unhover:function(t){e.emit("plotly_unhover",t)},axesMoved:function(t,n){var r=function(e,t){return function(n,r){return s(e,t,n)-s(e,t,r)}}(n,c[t].filter(a));l[t].sort(r),c[t].filter((function(e){return!a(e)})).sort((function(e){return c[t].indexOf(e)})).forEach((function(e){l[t].splice(l[t].indexOf(e),1),l[t].splice(c[t].indexOf(e),0,e)})),e.emit("plotly_restyle",[{dimensions:[l[t]]},[f[t]]])}})}}).reglPrecompiled=o},34e3:function(e,t,n){"use strict";var r=n(9012),i=n(27670).Y,a=n(41940),o=n(22399),s=n(5386).fF,l=n(5386).si,c=n(1426).extendFlat,u=n(79952).u,f=a({editType:"plot",arrayOk:!0,colorEditType:"plot"});e.exports={labels:{valType:"data_array",editType:"calc"},label0:{valType:"number",dflt:0,editType:"calc"},dlabel:{valType:"number",dflt:1,editType:"calc"},values:{valType:"data_array",editType:"calc"},marker:{colors:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:o.defaultLine,arrayOk:!0,editType:"style"},width:{valType:"number",min:0,dflt:0,arrayOk:!0,editType:"style"},editType:"calc"},pattern:u,editType:"calc"},text:{valType:"data_array",editType:"plot"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"style"},scalegroup:{valType:"string",dflt:"",editType:"calc"},textinfo:{valType:"flaglist",flags:["label","text","value","percent"],extras:["none"],editType:"calc"},hoverinfo:c({},r.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:s({},{keys:["label","color","value","percent","text"]}),texttemplate:l({editType:"plot"},{keys:["label","color","value","percent","text"]}),textposition:{valType:"enumerated",values:["inside","outside","auto","none"],dflt:"auto",arrayOk:!0,editType:"plot"},textfont:c({},f,{}),insidetextorientation:{valType:"enumerated",values:["horizontal","radial","tangential","auto"],dflt:"auto",editType:"plot"},insidetextfont:c({},f,{}),outsidetextfont:c({},f,{}),automargin:{valType:"boolean",dflt:!1,editType:"plot"},title:{text:{valType:"string",dflt:"",editType:"plot"},font:c({},f,{}),position:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"plot"},editType:"plot"},domain:i({name:"pie",trace:!0,editType:"calc"}),hole:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},sort:{valType:"boolean",dflt:!0,editType:"calc"},direction:{valType:"enumerated",values:["clockwise","counterclockwise"],dflt:"counterclockwise",editType:"calc"},rotation:{valType:"angle",dflt:0,editType:"calc"},pull:{valType:"number",min:0,max:1,dflt:0,arrayOk:!0,editType:"calc"},_deprecated:{title:{valType:"string",dflt:"",editType:"calc"},titlefont:c({},f,{}),titleposition:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"calc"}}}},13584:function(e,t,n){"use strict";var r=n(74875);t.name="pie",t.plot=function(e,n,i,a){r.plotBasePlot(t.name,e,n,i,a)},t.clean=function(e,n,i,a){r.cleanBasePlot(t.name,e,n,i,a)}},32354:function(e,t,n){"use strict";var r=n(92770),i=n(84267),a=n(7901),o={};function s(e){return function(t,n){return!!t&&!!(t=i(t)).isValid()&&(t=a.addOpacity(t,t.getAlpha()),e[n]||(e[n]=t),t)}}function l(e,t){var n,r=JSON.stringify(e),a=t[r];if(!a){for(a=e.slice(),n=0;n=0})),("funnelarea"===t.type?g:t.sort)&&a.sort((function(e,t){return t.v-e.v})),a[0]&&(a[0].vTotal=m),a},crossTraceCalc:function(e,t){var n=(t||{}).type;n||(n="pie");var r=e._fullLayout,i=e.calcdata,a=r[n+"colorway"],s=r["_"+n+"colormap"];r["extend"+n+"colors"]&&(a=l(a,o));for(var c=0,u=0;u0){s=!0;break}}s||(o=0)}return{hasLabels:n,hasValues:a,len:o}}function u(e,t,n,r,i){r("marker.line.width")&&r("marker.line.color",i?void 0:n.paper_bgcolor);var a=r("marker.colors");l(r,"marker.pattern",a),e.marker&&!t.marker.pattern.fgcolor&&(t.marker.pattern.fgcolor=e.marker.colors),t.marker.pattern.bgcolor||(t.marker.pattern.bgcolor=n.paper_bgcolor)}e.exports={handleLabelsAndValues:c,handleMarkerDefaults:u,supplyDefaults:function(e,t,n,r){function l(n,r){return i.coerce(e,t,a,n,r)}var f=c(l("labels"),l("values")),d=f.len;if(t._hasLabels=f.hasLabels,t._hasValues=f.hasValues,!t._hasLabels&&t._hasValues&&(l("label0"),l("dlabel")),d){t._length=d,u(e,t,r,l,!0),l("scalegroup");var h,p=l("text"),v=l("texttemplate");if(v||(h=l("textinfo",Array.isArray(p)?"text+percent":"percent")),l("hovertext"),l("hovertemplate"),v||h&&"none"!==h){var m=l("textposition");s(e,t,r,l,m,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),(Array.isArray(m)||"auto"===m||"outside"===m)&&l("automargin"),("inside"===m||"auto"===m||Array.isArray(m))&&l("insidetextorientation")}o(t,r,l);var g=l("hole");if(l("title.text")){var y=l("title.position",g?"middle center":"top center");g||"middle center"!==y||(t.title.position="top center"),i.coerceFont(l,"title.font",r.font)}l("sort"),l("direction"),l("rotation"),l("pull")}else t.visible=!1}}},20007:function(e,t,n){"use strict";var r=n(23469).appendArrayMultiPointValues;e.exports=function(e,t){var n={curveNumber:t.index,pointNumbers:e.pts,data:t._input,fullData:t,label:e.label,color:e.color,value:e.v,percent:e.percent,text:e.text,bbox:e.bbox,v:e.v};return 1===e.pts.length&&(n.pointNumber=n.i=e.pts[0]),r(n,t,e.pts),"funnelarea"===t.type&&(delete n.v,delete n.i),n}},22209:function(e,t,n){"use strict";var r=n(91424),i=n(7901);e.exports=function(e,t,n,a){var o=n.marker.pattern;o&&o.shape?r.pointStyle(e,n,a,t):i.fill(e,t.color)}},53581:function(e,t,n){"use strict";var r=n(71828);function i(e){return-1!==e.indexOf("e")?e.replace(/[.]?0+e/,"e"):-1!==e.indexOf(".")?e.replace(/[.]?0+$/,""):e}t.formatPiePercent=function(e,t){var n=i((100*e).toPrecision(3));return r.numSeparate(n,t)+"%"},t.formatPieValue=function(e,t){var n=i(e.toPrecision(10));return r.numSeparate(n,t)},t.getFirstFilled=function(e,t){if(Array.isArray(e))for(var n=0;n"),name:f.hovertemplate||-1!==d.indexOf("name")?f.name:void 0,idealAlign:e.pxmid[0]<0?"left":"right",color:m.castOption(w.bgcolor,e.pts)||e.color,borderColor:m.castOption(w.bordercolor,e.pts),fontFamily:m.castOption(_.family,e.pts),fontSize:m.castOption(_.size,e.pts),fontColor:m.castOption(_.color,e.pts),nameLength:m.castOption(w.namelength,e.pts),textAlign:m.castOption(w.align,e.pts),hovertemplate:m.castOption(f.hovertemplate,e.pts),hovertemplateLabels:e,eventData:[g(e,f)]},{container:n._hoverlayer.node(),outerContainer:n._paper.node(),gd:t,inOut_bbox:k}),e.bbox=k[0],c._hasHoverLabel=!0}c._hasHoverEvent=!0,t.emit("plotly_hover",{points:[g(e,f)],event:r.event})}})),e.on("mouseout",(function(e){var n=t._fullLayout,i=t._fullData[c.index],o=r.select(this).datum();c._hasHoverEvent&&(e.originalEvent=r.event,t.emit("plotly_unhover",{points:[g(o,i)],event:r.event}),c._hasHoverEvent=!1),c._hasHoverLabel&&(a.loneUnhover(n._hoverlayer.node()),c._hasHoverLabel=!1)})),e.on("click",(function(e){var n=t._fullLayout,i=t._fullData[c.index];t._dragging||!1===n.hovermode||(t._hoverdata=[g(e,i)],a.click(t,r.event))}))}function x(e,t,n){var r=m.castOption(e.insidetextfont.color,t.pts);!r&&e._input.textfont&&(r=m.castOption(e._input.textfont.color,t.pts));var i=m.castOption(e.insidetextfont.family,t.pts)||m.castOption(e.textfont.family,t.pts)||n.family,a=m.castOption(e.insidetextfont.size,t.pts)||m.castOption(e.textfont.size,t.pts)||n.size;return{color:r||o.contrast(t.color),family:i,size:a}}function w(e,t){for(var n,r,i=0;it&&t>r||n=-4;m-=2)g(Math.PI*m,"tan");for(m=4;m>=-4;m-=2)g(Math.PI*(m+1),"tan")}if(f||h){for(m=4;m>=-4;m-=2)g(Math.PI*(m+1.5),"rad");for(m=4;m>=-4;m-=2)g(Math.PI*(m+.5),"rad")}}if(s||p||f){var y=Math.sqrt(e.width*e.width+e.height*e.height);if((a={scale:i*r*2/y,rCenter:1-i,rotate:0}).textPosAngle=(t.startangle+t.stopangle)/2,a.scale>=1)return a;v.push(a)}(p||h)&&((a=k(e,r,o,l,c)).textPosAngle=(t.startangle+t.stopangle)/2,v.push(a)),(p||d)&&((a=S(e,r,o,l,c)).textPosAngle=(t.startangle+t.stopangle)/2,v.push(a));for(var b=0,x=0,w=0;w=1)break}return v[b]}function k(e,t,n,r,i){t=Math.max(0,t-2*v);var a=e.width/e.height,o=E(a,r,t,n);return{scale:2*o/e.height,rCenter:T(a,o/t),rotate:A(i)}}function S(e,t,n,r,i){t=Math.max(0,t-2*v);var a=e.height/e.width,o=E(a,r,t,n);return{scale:2*o/e.width,rCenter:T(a,o/t),rotate:A(i+Math.PI/2)}}function T(e,t){return Math.cos(t)-e*t}function A(e){return(180/Math.PI*e+720)%180-90}function E(e,t,n,r){var i=e+1/(2*Math.tan(t));return n*Math.min(1/(Math.sqrt(i*i+.5)+i),r/(Math.sqrt(e*e+r/2)+e))}function C(e,t){return e.v!==t.vTotal||t.trace.hole?Math.min(1/(1+1/Math.sin(e.halfangle)),e.ring/2):1}function M(e,t){var n=t.pxmid[0],r=t.pxmid[1],i=e.width/2,a=e.height/2;return n<0&&(i*=-1),r<0&&(a*=-1),{scale:1,rCenter:1,rotate:0,x:i+Math.abs(a)*(i>0?1:-1)/2,y:a/(1+n*n/(r*r)),outside:!0}}function O(e,t){var n,r,i,a=e.trace,o={x:e.cx,y:e.cy},s={tx:0,ty:0};s.ty+=a.title.font.size,i=L(a),-1!==a.title.position.indexOf("top")?(o.y-=(1+i)*e.r,s.ty-=e.titleBox.height):-1!==a.title.position.indexOf("bottom")&&(o.y+=(1+i)*e.r);var l,c,u=(l=e.r,c=e.trace.aspectratio,l/(void 0===c?1:c)),f=t.w*(a.domain.x[1]-a.domain.x[0])/2;return-1!==a.title.position.indexOf("left")?(f+=u,o.x-=(1+i)*u,s.tx+=e.titleBox.width/2):-1!==a.title.position.indexOf("center")?f*=2:-1!==a.title.position.indexOf("right")&&(f+=u,o.x+=(1+i)*u,s.tx-=e.titleBox.width/2),n=f/e.titleBox.width,r=P(e,t)/e.titleBox.height,{x:o.x,y:o.y,scale:Math.min(n,r),tx:s.tx,ty:s.ty}}function P(e,t){var n=e.trace,r=t.h*(n.domain.y[1]-n.domain.y[0]);return Math.min(e.titleBox.height,r/2)}function L(e){var t,n=e.pull;if(!n)return 0;if(Array.isArray(n))for(n=0,t=0;tn&&(n=e.pull[t]);return n}function I(e,t){for(var n=[],r=0;r1?u=(c=n.r)/i.aspectratio:c=(u=n.r)*i.aspectratio,l=(c*=(1+i.baseratio)/2)*u}o=Math.min(o,l/n.vTotal)}for(r=0;r")}if(a){var b=l.castOption(i,t.i,"texttemplate");if(b){var x=function(e){return{label:e.label,value:e.v,valueLabel:m.formatPieValue(e.v,r.separators),percent:e.v/n.vTotal,percentLabel:m.formatPiePercent(e.v/n.vTotal,r.separators),color:e.color,text:e.text,customdata:l.castOption(i,e.i,"customdata")}}(t),w=m.getFirstFilled(i.text,t.pts);(y(w)||""===w)&&(x.text=w),t.text=l.texttemplateString(b,x,e._fullLayout._d3locale,x,i._meta||{})}else t.text=""}}function F(e,t){var n=e.rotate*Math.PI/180,r=Math.cos(n),i=Math.sin(n),a=(t.left+t.right)/2,o=(t.top+t.bottom)/2;e.textX=a*r-o*i,e.textY=a*i+o*r,e.noCenter=!0}e.exports={plot:function(e,t){var n=e._context.staticPlot,a=e._fullLayout,d=a._size;p("pie",a),w(t,e),I(t,d);var v=l.makeTraceGroups(a._pielayer,t,"trace").each((function(t){var p=r.select(this),v=t[0],g=v.trace;!function(e){var t,n,r,i=e[0],a=i.r,o=i.trace,s=m.getRotationAngle(o.rotation),l=2*Math.PI/i.vTotal,c="px0",u="px1";if("counterclockwise"===o.direction){for(t=0;ti.vTotal/2?1:0,n.halfangle=Math.PI*Math.min(n.v/i.vTotal,.5),n.ring=1-o.hole,n.rInscribed=C(n,i))}(t),p.attr("stroke-linejoin","round"),p.each((function(){var y=r.select(this).selectAll("g.slice").data(t);y.enter().append("g").classed("slice",!0),y.exit().remove();var w=[[[],[]],[[],[]]],k=!1;y.each((function(i,o){if(i.hidden)r.select(this).selectAll("path,g").remove();else{i.pointNumber=i.i,i.curveNumber=g.index,w[i.pxmid[1]<0?0:1][i.pxmid[0]<0?0:1].push(i);var c=v.cx,u=v.cy,d=r.select(this),p=d.selectAll("path.surface").data([i]);if(p.enter().append("path").classed("surface",!0).style({"pointer-events":n?"none":"all"}),d.call(b,e,t),g.pull){var y=+m.castOption(g.pull,i.pts)||0;y>0&&(c+=y*i.pxmid[0],u+=y*i.pxmid[1])}i.cxFinal=c,i.cyFinal=u;var S=g.hole;if(i.v===v.vTotal){var T="M"+(c+i.px0[0])+","+(u+i.px0[1])+P(i.px0,i.pxmid,!0,1)+P(i.pxmid,i.px0,!0,1)+"Z";S?p.attr("d","M"+(c+S*i.px0[0])+","+(u+S*i.px0[1])+P(i.px0,i.pxmid,!1,S)+P(i.pxmid,i.px0,!1,S)+"Z"+T):p.attr("d",T)}else{var A=P(i.px0,i.px1,!0,1);if(S){var E=1-S;p.attr("d","M"+(c+S*i.px1[0])+","+(u+S*i.px1[1])+P(i.px1,i.px0,!1,S)+"l"+E*i.px0[0]+","+E*i.px0[1]+A+"Z")}else p.attr("d","M"+c+","+u+"l"+i.px0[0]+","+i.px0[1]+A+"Z")}D(e,i,v);var C=m.castOption(g.textposition,i.pts),O=d.selectAll("g.slicetext").data(i.text&&"none"!==C?[0]:[]);O.enter().append("g").classed("slicetext",!0),O.exit().remove(),O.each((function(){var n=l.ensureSingle(r.select(this),"text","",(function(e){e.attr("data-notex",1)})),d=l.ensureUniformFontSize(e,"outside"===C?function(e,t,n){var r=m.castOption(e.outsidetextfont.color,t.pts)||m.castOption(e.textfont.color,t.pts)||n.color,i=m.castOption(e.outsidetextfont.family,t.pts)||m.castOption(e.textfont.family,t.pts)||n.family,a=m.castOption(e.outsidetextfont.size,t.pts)||m.castOption(e.textfont.size,t.pts)||n.size;return{color:r,family:i,size:a}}(g,i,a.font):x(g,i,a.font));n.text(i.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(s.font,d).call(f.convertToTspans,e);var p,y=s.bBox(n.node());if("outside"===C)p=M(y,i);else if(p=_(y,i,v),"auto"===C&&p.scale<1){var b=l.ensureUniformFontSize(e,g.outsidetextfont);n.call(s.font,b),p=M(y=s.bBox(n.node()),i)}var w=p.textPosAngle,S=void 0===w?i.pxmid:R(v.r,w);if(p.targetX=c+S[0]*p.rCenter+(p.x||0),p.targetY=u+S[1]*p.rCenter+(p.y||0),F(p,y),p.outside){var T=p.targetY;i.yLabelMin=T-y.height/2,i.yLabelMid=T,i.yLabelMax=T+y.height/2,i.labelExtraX=0,i.labelExtraY=0,k=!0}p.fontSize=d.size,h(g.type,p,a),t[o].transform=p,l.setTransormAndDisplay(n,p)}))}function P(e,t,n,r){var a=r*(t[0]-e[0]),o=r*(t[1]-e[1]);return"a"+r*v.r+","+r*v.r+" 0 "+i.largeArc+(n?" 1 ":" 0 ")+a+","+o}}));var S=r.select(this).selectAll("g.titletext").data(g.title.text?[0]:[]);if(S.enter().append("g").classed("titletext",!0),S.exit().remove(),S.each((function(){var t,n=l.ensureSingle(r.select(this),"text","",(function(e){e.attr("data-notex",1)})),i=g.title.text;g._meta&&(i=l.templateString(i,g._meta)),n.text(i).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(s.font,g.title.font).call(f.convertToTspans,e),t="middle center"===g.title.position?function(e){var t=Math.sqrt(e.titleBox.width*e.titleBox.width+e.titleBox.height*e.titleBox.height);return{x:e.cx,y:e.cy,scale:e.trace.hole*e.r*2/t,tx:0,ty:-e.titleBox.height/2+e.trace.title.font.size}}(v):O(v,d),n.attr("transform",u(t.x,t.y)+c(Math.min(1,t.scale))+u(t.tx,t.ty))})),k&&function(e,t){var n,r,i,a,o,s,l,c,u,f,d,h,p;function v(e,t){return e.pxmid[1]-t.pxmid[1]}function g(e,t){return t.pxmid[1]-e.pxmid[1]}function y(e,n){n||(n={});var i,c,u,d,h=n.labelExtraY+(r?n.yLabelMax:n.yLabelMin),p=r?e.yLabelMin:e.yLabelMax,v=r?e.yLabelMax:e.yLabelMin,g=e.cyFinal+o(e.px0[1],e.px1[1]),y=h-p;if(y*l>0&&(e.labelExtraY=y),Array.isArray(t.pull))for(c=0;c=(m.castOption(t.pull,u.pts)||0)||((e.pxmid[1]-u.pxmid[1])*l>0?(y=u.cyFinal+o(u.px0[1],u.px1[1])-p-e.labelExtraY)*l>0&&(e.labelExtraY+=y):(v+e.labelExtraY-g)*l>0&&(i=3*s*Math.abs(c-f.indexOf(e)),(d=u.cxFinal+a(u.px0[0],u.px1[0])+i-(e.cxFinal+e.pxmid[0])-e.labelExtraX)*s>0&&(e.labelExtraX+=d)))}for(r=0;r<2;r++)for(i=r?v:g,o=r?Math.max:Math.min,l=r?1:-1,n=0;n<2;n++){for(a=n?Math.max:Math.min,s=n?1:-1,(c=e[r][n]).sort(i),u=e[1-r][n],f=u.concat(c),h=[],d=0;dMath.abs(f)?s+="l"+f*e.pxmid[0]/e.pxmid[1]+","+f+"H"+(a+e.labelExtraX+c):s+="l"+e.labelExtraX+","+u+"v"+(f-u)+"h"+c}else s+="V"+(e.yLabelMid+e.labelExtraY)+"h"+c;l.ensureSingle(n,"path","textline").call(o.stroke,t.outsidetextfont.color).attr({"stroke-width":Math.min(2,t.outsidetextfont.size/8),d:s,fill:"none"})}else n.select("path.textline").remove()}))}(y,g),k&&g.automargin){var T=s.bBox(p.node()),A=g.domain,E=d.w*(A.x[1]-A.x[0]),C=d.h*(A.y[1]-A.y[0]),P=(.5*E-v.r)/d.w,L=(.5*C-v.r)/d.h;i.autoMargin(e,"pie."+g.uid+".automargin",{xl:A.x[0]-P,xr:A.x[1]+P,yb:A.y[0]-L,yt:A.y[1]+L,l:Math.max(v.cx-v.r-T.left,0),r:Math.max(T.right-(v.cx+v.r),0),b:Math.max(T.bottom-(v.cy+v.r),0),t:Math.max(v.cy-v.r-T.top,0),pad:5})}}))}));setTimeout((function(){v.selectAll("tspan").each((function(){var e=r.select(this);e.attr("dy")&&e.attr("dy",e.attr("dy"))}))}),0)},formatSliceLabel:D,transformInsideText:_,determineInsideTextFont:x,positionTitleOutside:O,prerenderTitles:w,layoutAreas:I,attachFxHandlers:b,computeTransform:F}},68357:function(e,t,n){"use strict";var r=n(39898),i=n(63463),a=n(72597).resizeText;e.exports=function(e){var t=e._fullLayout._pielayer.selectAll(".trace");a(e,t,"pie"),t.each((function(t){var n=t[0].trace,a=r.select(this);a.style({opacity:n.opacity}),a.selectAll("path.surface").each((function(t){r.select(this).call(i,t,n,e)}))}))}},63463:function(e,t,n){"use strict";var r=n(7901),i=n(53581).castOption,a=n(22209);e.exports=function(e,t,n,o){var s=n.marker.line,l=i(s.color,t.pts)||r.defaultLine,c=i(s.width,t.pts)||0;e.call(a,t,n,o).style("stroke-width",c).call(r.stroke,l)}},10959:function(e,t,n){"use strict";var r=n(82196);e.exports={x:r.x,y:r.y,xy:{valType:"data_array",editType:"calc"},indices:{valType:"data_array",editType:"calc"},xbounds:{valType:"data_array",editType:"calc"},ybounds:{valType:"data_array",editType:"calc"},text:r.text,marker:{color:{valType:"color",arrayOk:!1,editType:"calc"},opacity:{valType:"number",min:0,max:1,dflt:1,arrayOk:!1,editType:"calc"},blend:{valType:"boolean",dflt:null,editType:"calc"},sizemin:{valType:"number",min:.1,max:2,dflt:.5,editType:"calc"},sizemax:{valType:"number",min:.1,dflt:20,editType:"calc"},border:{color:{valType:"color",arrayOk:!1,editType:"calc"},arearatio:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},editType:"calc"},editType:"calc"},transforms:void 0}},42743:function(e,t,n){"use strict";var r=n(9330).gl_pointcloud2d,i=n(78614),a=n(71739).findExtremes,o=n(34603);function s(e,t){this.scene=e,this.uid=t,this.type="pointcloud",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color="rgb(0, 0, 0)",this.name="",this.hoverinfo="all",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=r(e.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(e){var t=this.idToIndex[e.pointId];return{trace:this,dataCoord:e.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*t],this.pickXYData[2*t+1]]:[this.pickXData[t],this.pickYData[t]],textLabel:Array.isArray(this.textLabels)?this.textLabels[t]:this.textLabels,color:this.color,name:this.name,pointIndex:t,hoverinfo:this.hoverinfo}},l.update=function(e){this.index=e.index,this.textLabels=e.text,this.name=e.name,this.hoverinfo=e.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(e),this.color=o(e,{})},l.updateFast=function(e){var t,n,r,o,s,l,c=this.xData=this.pickXData=e.x,u=this.yData=this.pickYData=e.y,f=this.pickXYData=e.xy,d=e.xbounds&&e.ybounds,h=e.indices,p=this.bounds;if(f){if(r=f,t=f.length>>>1,d)p[0]=e.xbounds[0],p[2]=e.xbounds[1],p[1]=e.ybounds[0],p[3]=e.ybounds[1];else for(l=0;lp[2]&&(p[2]=o),sp[3]&&(p[3]=s);if(h)n=h;else for(n=new Int32Array(t),l=0;lp[2]&&(p[2]=o),sp[3]&&(p[3]=s);this.idToIndex=n,this.pointcloudOptions.idToIndex=n,this.pointcloudOptions.positions=r;var v=i(e.marker.color),m=i(e.marker.border.color),g=e.opacity*e.marker.opacity;v[3]*=g,this.pointcloudOptions.color=v;var y=e.marker.blend;null===y&&(y=c.length<100||u.length<100),this.pointcloudOptions.blend=y,m[3]*=g,this.pointcloudOptions.borderColor=m;var b=e.marker.sizemin,x=Math.max(e.marker.sizemax,e.marker.sizemin);this.pointcloudOptions.sizeMin=b,this.pointcloudOptions.sizeMax=x,this.pointcloudOptions.areaRatio=e.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var w=this.scene.xaxis,_=this.scene.yaxis,k=x/2||.5;e._extremes[w._id]=a(w,[p[0],p[2]],{ppad:k}),e._extremes[_._id]=a(_,[p[1],p[3]],{ppad:k})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(e,t){var n=new s(e,t.uid);return n.update(t),n}},33876:function(e,t,n){"use strict";var r=n(71828),i=n(10959);e.exports=function(e,t,n){function a(n,a){return r.coerce(e,t,i,n,a)}a("x"),a("y"),a("xbounds"),a("ybounds"),e.xy&&e.xy instanceof Float32Array&&(t.xy=e.xy),e.indices&&e.indices instanceof Int32Array&&(t.indices=e.indices),a("text"),a("marker.color",n),a("marker.opacity"),a("marker.blend"),a("marker.sizemin"),a("marker.sizemax"),a("marker.border.color",n),a("marker.border.arearatio"),t._length=null}},20593:function(e,t,n){"use strict";["*pointcloud* trace is deprecated!","Please consider switching to the *scattergl* trace type."].join(" "),e.exports={attributes:n(10959),supplyDefaults:n(33876),calc:n(36563),plot:n(42743),moduleType:"trace",name:"pointcloud",basePlotModule:n(4796),categories:["gl","gl2d","showLegend"],meta:{}}},39953:function(e,t,n){"use strict";var r=n(41940),i=n(9012),a=n(22399),o=n(77914),s=n(27670).Y,l=n(5386).fF,c=n(50693),u=n(44467).templatedArray,f=n(12663).descriptionOnlyNumbers,d=n(1426).extendFlat,h=n(30962).overrideAll;(e.exports=h({hoverinfo:d({},i.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:"sankey",trace:!0}),orientation:{valType:"enumerated",values:["v","h"],dflt:"h"},valueformat:{valType:"string",dflt:".3s",description:f("value")},valuesuffix:{valType:"string",dflt:""},arrangement:{valType:"enumerated",values:["snap","perpendicular","freeform","fixed"],dflt:"snap"},textfont:r({}),customdata:void 0,node:{label:{valType:"data_array",dflt:[]},groups:{valType:"info_array",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:"number",editType:"calc"}},x:{valType:"data_array",dflt:[]},y:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:.5,arrayOk:!0}},pad:{valType:"number",arrayOk:!1,min:0,dflt:20},thickness:{valType:"number",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]})},link:{arrowlen:{valType:"number",min:0,dflt:0},label:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:0,arrayOk:!0}},source:{valType:"data_array",dflt:[]},target:{valType:"data_array",dflt:[]},value:{valType:"data_array",dflt:[]},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]}),colorscales:u("concentrationscales",{editType:"calc",label:{valType:"string",editType:"calc",dflt:""},cmax:{valType:"number",editType:"calc",dflt:1},cmin:{valType:"number",editType:"calc",dflt:0},colorscale:d(c().colorscale,{dflt:[[0,"white"],[1,"black"]]})})}},"calc","nested")).transforms=void 0},75536:function(e,t,n){"use strict";var r=n(30962).overrideAll,i=n(27659).a0,a=n(60436),o=n(528),s=n(6964),l=n(28569),c=n(47322).prepSelect,u=n(71828),f=n(73972),d="sankey";function h(e,t){var n=e._fullData[t],r=e._fullLayout,i=r.dragmode,a="pan"===r.dragmode?"move":"crosshair",o=n._bgRect;if(o&&"pan"!==i&&"zoom"!==i){s(o,a);var d={_id:"x",c2p:u.identity,_offset:n._sankey.translateX,_length:n._sankey.width},h={_id:"y",c2p:u.identity,_offset:n._sankey.translateY,_length:n._sankey.height},p={gd:e,element:o.node(),plotinfo:{id:t,xaxis:d,yaxis:h,fillRangeItems:u.noop},subplot:t,xaxes:[d],yaxes:[h],doneFnCompleted:function(n){var r,i=e._fullData[t],a=i.node.groups.slice(),o=[];function s(e){for(var t=i._sankey.graph.nodes,n=0;ny&&(y=a.source[t]),a.target[t]>y&&(y=a.target[t]);var b,x=y+1;e.node._count=x;var w=e.node.groups,_={};for(t=0;t0&&s(C,x)&&s(M,x)&&(!_.hasOwnProperty(C)||!_.hasOwnProperty(M)||_[C]!==_[M])){_.hasOwnProperty(M)&&(M=_[M]),_.hasOwnProperty(C)&&(C=_[C]),M=+M,d[C=+C]=d[M]=!0;var O="";a.label&&a.label[t]&&(O=a.label[t]);var P=null;O&&h.hasOwnProperty(O)&&(P=h[O]),c.push({pointNumber:t,label:O,color:u?a.color[t]:a.color,customdata:f?a.customdata[t]:a.customdata,concentrationscale:P,source:C,target:M,value:+E}),A.source.push(C),A.target.push(M)}}var L=x+w.length,I=o(n.color),R=o(n.customdata),D=[];for(t=0;tx-1,childrenNodes:[],pointNumber:t,label:F,color:I?n.color[t]:n.color,customdata:R?n.customdata[t]:n.customdata})}var N=!1;return function(e,t,n){for(var a=i.init2dArray(e,0),o=0;o1}))}(L,A.source,A.target)&&(N=!0),{circular:N,links:c,nodes:D,groups:w,groupLookup:_}}e.exports=function(e,t){var n=c(t);return a({circular:n.circular,_nodes:n.nodes,_links:n.links,_groups:n.groups,_groupLookup:n.groupLookup})}},85247:function(e){"use strict";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:"linear",cn:{sankey:"sankey",sankeyLinks:"sankey-links",sankeyLink:"sankey-link",sankeyNodeSet:"sankey-node-set",sankeyNode:"sankey-node",nodeRect:"node-rect",nodeLabel:"node-label"}}},26857:function(e,t,n){"use strict";var r=n(71828),i=n(39953),a=n(7901),o=n(84267),s=n(27670).c,l=n(38048),c=n(44467),u=n(85501);function f(e,t){function n(n,a){return r.coerce(e,t,i.link.colorscales,n,a)}n("label"),n("cmin"),n("cmax"),n("colorscale")}e.exports=function(e,t,n,d){function h(n,a){return r.coerce(e,t,i,n,a)}var p=r.extendDeep(d.hoverlabel,e.hoverlabel),v=e.node,m=c.newContainer(t,"node");function g(e,t){return r.coerce(v,m,i.node,e,t)}g("label"),g("groups"),g("x"),g("y"),g("pad"),g("thickness"),g("line.color"),g("line.width"),g("hoverinfo",e.hoverinfo),l(v,m,g,p),g("hovertemplate");var y=d.colorway;g("color",m.label.map((function(e,t){return a.addOpacity(function(e){return y[e%y.length]}(t),.8)}))),g("customdata");var b=e.link||{},x=c.newContainer(t,"link");function w(e,t){return r.coerce(b,x,i.link,e,t)}w("label"),w("arrowlen"),w("source"),w("target"),w("value"),w("line.color"),w("line.width"),w("hoverinfo",e.hoverinfo),l(b,x,w,p),w("hovertemplate");var _,k=o(d.paper_bgcolor).getLuminance()<.333?"rgba(255, 255, 255, 0.6)":"rgba(0, 0, 0, 0.2)";w("color",r.repeat(k,x.value.length)),w("customdata"),u(b,x,{name:"colorscales",handleItemDefaults:f}),s(t,d,h),h("orientation"),h("valueformat"),h("valuesuffix"),m.x.length&&m.y.length&&(_="freeform"),h("arrangement",_),r.coerceFont(h,"textfont",r.extendFlat({},d.font)),t._length=null}},29396:function(e,t,n){"use strict";e.exports={attributes:n(39953),supplyDefaults:n(26857),calc:n(92930),plot:n(60436),moduleType:"trace",name:"sankey",basePlotModule:n(75536),selectPoints:n(84564),categories:["noOpacity"],meta:{}}},60436:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=i.numberFormat,o=n(3393),s=n(30211),l=n(7901),c=n(85247).cn,u=i._;function f(e){return""!==e}function d(e,t){return e.filter((function(e){return e.key===t.traceId}))}function h(e,t){r.select(e).select("path").style("fill-opacity",t),r.select(e).select("rect").style("fill-opacity",t)}function p(e){r.select(e).select("text.name").style("fill","black")}function v(e){return function(t){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function m(e){return function(t){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(e,t,n){t&&n&&d(n,t).selectAll("."+c.sankeyLink).filter(v(t)).call(b.bind(0,t,n,!1))}function y(e,t,n){t&&n&&d(n,t).selectAll("."+c.sankeyLink).filter(v(t)).call(x.bind(0,t,n,!1))}function b(e,t,n,r){var i=r.datum().link.label;r.style("fill-opacity",(function(e){if(!e.link.concentrationscale)return.4})),i&&d(t,e).selectAll("."+c.sankeyLink).filter((function(e){return e.link.label===i})).style("fill-opacity",(function(e){if(!e.link.concentrationscale)return.4})),n&&d(t,e).selectAll("."+c.sankeyNode).filter(m(e)).call(g)}function x(e,t,n,r){var i=r.datum().link.label;r.style("fill-opacity",(function(e){return e.tinyColorAlpha})),i&&d(t,e).selectAll("."+c.sankeyLink).filter((function(e){return e.link.label===i})).style("fill-opacity",(function(e){return e.tinyColorAlpha})),n&&d(t,e).selectAll(c.sankeyNode).filter(m(e)).call(y)}function w(e,t){var n=e.hoverlabel||{},r=i.nestedProperty(n,t).get();return!Array.isArray(r)&&r}e.exports=function(e,t){for(var n=e._fullLayout,i=n._paper,d=n._size,v=0;v"),color:w(o,"bgcolor")||l.addOpacity(v.color,1),borderColor:w(o,"bordercolor"),fontFamily:w(o,"font.family"),fontSize:w(o,"font.size"),fontColor:w(o,"font.color"),nameLength:w(o,"namelength"),textAlign:w(o,"align"),idealAlign:r.event.x"),color:w(o,"bgcolor")||i.tinyColorHue,borderColor:w(o,"bordercolor"),fontFamily:w(o,"font.family"),fontSize:w(o,"font.size"),fontColor:w(o,"font.color"),nameLength:w(o,"namelength"),textAlign:w(o,"align"),idealAlign:"left",hovertemplate:o.hovertemplate,hovertemplateLabels:y,eventData:[i.node]},{container:n._hoverlayer.node(),outerContainer:n._paper.node(),gd:e});h(_,.85),p(_)}}},unhover:function(t,i,a){!1!==e._fullLayout.hovermode&&(r.select(t).call(y,i,a),"skip"!==i.node.trace.node.hoverinfo&&(i.node.fullData=i.node.trace,e.emit("plotly_unhover",{event:r.event,points:[i.node]})),s.loneUnhover(n._hoverlayer.node()))},select:function(t,n,i){var a=n.node;a.originalEvent=r.event,e._hoverdata=[a],r.select(t).call(y,n,i),s.click(e,{target:!0})}}})}},3393:function(e,t,n){"use strict";var r=n(49887),i=n(81684).k4,a=n(39898),o=n(30838),s=n(86781),l=n(85247),c=n(84267),u=n(7901),f=n(91424),d=n(71828),h=d.strTranslate,p=d.strRotate,v=n(28984),m=v.keyFun,g=v.repeat,y=v.unwrap,b=n(63893),x=n(73972),w=n(18783),_=w.CAP_SHIFT,k=w.LINE_SPACING;function S(e,t,n){var r,i=y(t),a=i.trace,u=a.domain,f="h"===a.orientation,h=a.node.pad,p=a.node.thickness,v=e.width*(u.x[1]-u.x[0]),m=e.height*(u.y[1]-u.y[0]),g=i._nodes,b=i._links,x=i.circular;(r=x?s.sankeyCircular().circularLinkGap(0):o.sankey()).iterations(l.sankeyIterations).size(f?[v,m]:[m,v]).nodeWidth(p).nodePadding(h).nodeId((function(e){return e.pointNumber})).nodes(g).links(b);var w,_,k,S=r();for(var T in r.nodePadding()=i||(n=i-t.y0)>1e-6&&(t.y0+=n,t.y1+=n),i=t.y1+h}))}(function(e){var t,n,r=e.map((function(e,t){return{x0:e.x0,index:t}})).sort((function(e,t){return e.x0-t.x0})),i=[],a=-1,o=-1/0;for(w=0;wo+p&&(a+=1,t=s.x0),o=s.x0,i[a]||(i[a]=[]),i[a].push(s),n=t-s.x0,s.x0+=n,s.x1+=n}return i}(g=S.nodes)),r.update(S)}return{circular:x,key:n,trace:a,guid:d.randstr(),horizontal:f,width:v,height:m,nodePad:a.node.pad,nodeLineColor:a.node.line.color,nodeLineWidth:a.node.line.width,linkLineColor:a.link.line.color,linkLineWidth:a.link.line.width,linkArrowLength:a.link.arrowlen,valueFormat:a.valueformat,valueSuffix:a.valuesuffix,textFont:a.textfont,translateX:u.x[0]*e.width+e.margin.l,translateY:e.height-u.y[1]*e.height+e.margin.t,dragParallel:f?m:v,dragPerpendicular:f?v:m,arrangement:a.arrangement,sankey:r,graph:S,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}function T(e,t,n){var r=c(t.color),i=t.source.label+"|"+t.target.label+"__"+n;return t.trace=e.trace,t.curveNumber=e.trace.index,{circular:e.circular,key:i,traceId:e.key,pointNumber:t.pointNumber,link:t,tinyColorHue:u.tinyRGB(r),tinyColorAlpha:r.getAlpha(),linkPath:A,linkLineColor:e.linkLineColor,linkLineWidth:e.linkLineWidth,linkArrowLength:e.linkArrowLength,valueFormat:e.valueFormat,valueSuffix:e.valueSuffix,sankey:e.sankey,parent:e,interactionState:e.interactionState,flow:t.flow}}function A(){return function(e){var t=e.linkArrowLength;if(e.link.circular)return function(e,t){var n=e.width/2,r=e.circularPathData;return"top"===e.circularLinkType?"M "+(r.targetX-t)+" "+(r.targetY+n)+" L"+(r.rightInnerExtent-t)+" "+(r.targetY+n)+"A"+(r.rightLargeArcRadius+n)+" "+(r.rightSmallArcRadius+n)+" 0 0 1 "+(r.rightFullExtent-n-t)+" "+(r.targetY-r.rightSmallArcRadius)+"L"+(r.rightFullExtent-n-t)+" "+r.verticalRightInnerExtent+"A"+(r.rightLargeArcRadius+n)+" "+(r.rightLargeArcRadius+n)+" 0 0 1 "+(r.rightInnerExtent-t)+" "+(r.verticalFullExtent-n)+"L"+r.leftInnerExtent+" "+(r.verticalFullExtent-n)+"A"+(r.leftLargeArcRadius+n)+" "+(r.leftLargeArcRadius+n)+" 0 0 1 "+(r.leftFullExtent+n)+" "+r.verticalLeftInnerExtent+"L"+(r.leftFullExtent+n)+" "+(r.sourceY-r.leftSmallArcRadius)+"A"+(r.leftLargeArcRadius+n)+" "+(r.leftSmallArcRadius+n)+" 0 0 1 "+r.leftInnerExtent+" "+(r.sourceY+n)+"L"+r.sourceX+" "+(r.sourceY+n)+"L"+r.sourceX+" "+(r.sourceY-n)+"L"+r.leftInnerExtent+" "+(r.sourceY-n)+"A"+(r.leftLargeArcRadius-n)+" "+(r.leftSmallArcRadius-n)+" 0 0 0 "+(r.leftFullExtent-n)+" "+(r.sourceY-r.leftSmallArcRadius)+"L"+(r.leftFullExtent-n)+" "+r.verticalLeftInnerExtent+"A"+(r.leftLargeArcRadius-n)+" "+(r.leftLargeArcRadius-n)+" 0 0 0 "+r.leftInnerExtent+" "+(r.verticalFullExtent+n)+"L"+(r.rightInnerExtent-t)+" "+(r.verticalFullExtent+n)+"A"+(r.rightLargeArcRadius-n)+" "+(r.rightLargeArcRadius-n)+" 0 0 0 "+(r.rightFullExtent+n-t)+" "+r.verticalRightInnerExtent+"L"+(r.rightFullExtent+n-t)+" "+(r.targetY-r.rightSmallArcRadius)+"A"+(r.rightLargeArcRadius-n)+" "+(r.rightSmallArcRadius-n)+" 0 0 0 "+(r.rightInnerExtent-t)+" "+(r.targetY-n)+"L"+(r.targetX-t)+" "+(r.targetY-n)+(t>0?"L"+r.targetX+" "+r.targetY:"")+"Z":"M "+(r.targetX-t)+" "+(r.targetY-n)+" L"+(r.rightInnerExtent-t)+" "+(r.targetY-n)+"A"+(r.rightLargeArcRadius+n)+" "+(r.rightSmallArcRadius+n)+" 0 0 0 "+(r.rightFullExtent-n-t)+" "+(r.targetY+r.rightSmallArcRadius)+"L"+(r.rightFullExtent-n-t)+" "+r.verticalRightInnerExtent+"A"+(r.rightLargeArcRadius+n)+" "+(r.rightLargeArcRadius+n)+" 0 0 0 "+(r.rightInnerExtent-t)+" "+(r.verticalFullExtent+n)+"L"+r.leftInnerExtent+" "+(r.verticalFullExtent+n)+"A"+(r.leftLargeArcRadius+n)+" "+(r.leftLargeArcRadius+n)+" 0 0 0 "+(r.leftFullExtent+n)+" "+r.verticalLeftInnerExtent+"L"+(r.leftFullExtent+n)+" "+(r.sourceY+r.leftSmallArcRadius)+"A"+(r.leftLargeArcRadius+n)+" "+(r.leftSmallArcRadius+n)+" 0 0 0 "+r.leftInnerExtent+" "+(r.sourceY-n)+"L"+r.sourceX+" "+(r.sourceY-n)+"L"+r.sourceX+" "+(r.sourceY+n)+"L"+r.leftInnerExtent+" "+(r.sourceY+n)+"A"+(r.leftLargeArcRadius-n)+" "+(r.leftSmallArcRadius-n)+" 0 0 1 "+(r.leftFullExtent-n)+" "+(r.sourceY+r.leftSmallArcRadius)+"L"+(r.leftFullExtent-n)+" "+r.verticalLeftInnerExtent+"A"+(r.leftLargeArcRadius-n)+" "+(r.leftLargeArcRadius-n)+" 0 0 1 "+r.leftInnerExtent+" "+(r.verticalFullExtent-n)+"L"+(r.rightInnerExtent-t)+" "+(r.verticalFullExtent-n)+"A"+(r.rightLargeArcRadius-n)+" "+(r.rightLargeArcRadius-n)+" 0 0 1 "+(r.rightFullExtent+n-t)+" "+r.verticalRightInnerExtent+"L"+(r.rightFullExtent+n-t)+" "+(r.targetY+r.rightSmallArcRadius)+"A"+(r.rightLargeArcRadius-n)+" "+(r.rightSmallArcRadius-n)+" 0 0 1 "+(r.rightInnerExtent-t)+" "+(r.targetY+n)+"L"+(r.targetX-t)+" "+(r.targetY+n)+(t>0?"L"+r.targetX+" "+r.targetY:"")+"Z"}(e.link,t);var n=Math.abs((e.link.target.x0-e.link.source.x1)/2);t>n&&(t=n);var r=e.link.source.x1,a=e.link.target.x0-t,o=i(r,a),s=o(.5),l=o(.5),c=e.link.y0-e.link.width/2,u=e.link.y0+e.link.width/2,f=e.link.y1-e.link.width/2,d=e.link.y1+e.link.width/2,h="M"+r+","+c,p="C"+s+","+c+" "+l+","+f+" "+a+","+f,v="C"+l+","+d+" "+s+","+u+" "+r+","+u,m=t>0?"L"+(a+t)+","+(f+e.link.width/2):"";return h+p+(m+="L"+a+","+d)+v+"Z"}}function E(e,t){var n=c(t.color),r=l.nodePadAcross,i=e.nodePad/2;t.dx=t.x1-t.x0,t.dy=t.y1-t.y0;var a=t.dx,o=Math.max(.5,t.dy),s="node_"+t.pointNumber;return t.group&&(s=d.randstr()),t.trace=e.trace,t.curveNumber=e.trace.index,{index:t.pointNumber,key:s,partOfGroup:t.partOfGroup||!1,group:t.group,traceId:e.key,trace:e.trace,node:t,nodePad:e.nodePad,nodeLineColor:e.nodeLineColor,nodeLineWidth:e.nodeLineWidth,textFont:e.textFont,size:e.horizontal?e.height:e.width,visibleWidth:Math.ceil(a),visibleHeight:o,zoneX:-r,zoneY:-i,zoneWidth:a+2*r,zoneHeight:o+2*i,labelY:e.horizontal?t.dy/2+1:t.dx/2+1,left:1===t.originalLayer,sizeAcross:e.width,forceLayouts:e.forceLayouts,horizontal:e.horizontal,darkBackground:n.getBrightness()<=128,tinyColorHue:u.tinyRGB(n),tinyColorAlpha:n.getAlpha(),valueFormat:e.valueFormat,valueSuffix:e.valueSuffix,sankey:e.sankey,graph:e.graph,arrangement:e.arrangement,uniqueNodeLabelPathId:[e.guid,e.key,s].join("_"),interactionState:e.interactionState,figure:e}}function C(e){e.attr("transform",(function(e){return h(e.node.x0.toFixed(3),e.node.y0.toFixed(3))}))}function M(e){e.call(C)}function O(e,t){e.call(M),t.attr("d",A())}function P(e){e.attr("width",(function(e){return e.node.x1-e.node.x0})).attr("height",(function(e){return e.visibleHeight}))}function L(e){return e.link.width>1||e.linkLineWidth>0}function I(e){return h(e.translateX,e.translateY)+(e.horizontal?"matrix(1 0 0 1 0 0)":"matrix(0 1 1 0 0 0)")}function R(e,t,n){e.on(".basic",null).on("mouseover.basic",(function(e){e.interactionState.dragInProgress||e.partOfGroup||(n.hover(this,e,t),e.interactionState.hovered=[this,e])})).on("mousemove.basic",(function(e){e.interactionState.dragInProgress||e.partOfGroup||(n.follow(this,e),e.interactionState.hovered=[this,e])})).on("mouseout.basic",(function(e){e.interactionState.dragInProgress||e.partOfGroup||(n.unhover(this,e,t),e.interactionState.hovered=!1)})).on("click.basic",(function(e){e.interactionState.hovered&&(n.unhover(this,e,t),e.interactionState.hovered=!1),e.interactionState.dragInProgress||e.partOfGroup||n.select(this,e,t)}))}function D(e,t,n,i){var o=a.behavior.drag().origin((function(e){return{x:e.node.x0+e.visibleWidth/2,y:e.node.y0+e.visibleHeight/2}})).on("dragstart",(function(a){if("fixed"!==a.arrangement&&(d.ensureSingle(i._fullLayout._infolayer,"g","dragcover",(function(e){i._fullLayout._dragCover=e})),d.raiseToTop(this),a.interactionState.dragInProgress=a.node,N(a.node),a.interactionState.hovered&&(n.nodeEvents.unhover.apply(0,a.interactionState.hovered),a.interactionState.hovered=!1),"snap"===a.arrangement)){var o=a.traceId+"|"+a.key;a.forceLayouts[o]?a.forceLayouts[o].alpha(1):function(e,t,n,i){!function(e){for(var t=0;t0&&r.forceLayouts[t].alpha(0)}}(0,t,a,n)).stop()}(0,o,a),function(e,t,n,r,i){window.requestAnimationFrame((function a(){var o;for(o=0;o0)window.requestAnimationFrame(a);else{var s=n.node.originalX;n.node.x0=s-n.visibleWidth/2,n.node.x1=s+n.visibleWidth/2,F(n,i)}}))}(e,t,a,o,i)}})).on("drag",(function(n){if("fixed"!==n.arrangement){var r=a.event.x,i=a.event.y;"snap"===n.arrangement?(n.node.x0=r-n.visibleWidth/2,n.node.x1=r+n.visibleWidth/2,n.node.y0=i-n.visibleHeight/2,n.node.y1=i+n.visibleHeight/2):("freeform"===n.arrangement&&(n.node.x0=r-n.visibleWidth/2,n.node.x1=r+n.visibleWidth/2),i=Math.max(0,Math.min(n.size-n.visibleHeight/2,i)),n.node.y0=i-n.visibleHeight/2,n.node.y1=i+n.visibleHeight/2),N(n.node),"snap"!==n.arrangement&&(n.sankey.update(n.graph),O(e.filter(z(n)),t))}})).on("dragend",(function(e){if("fixed"!==e.arrangement){e.interactionState.dragInProgress=!1;for(var t=0;tl&&O[g].gap;)g--;for(b=O[g].s,v=O.length-1;v>g;v--)O[v].s=b;for(;lE[f]&&f=0;f--){var d=e[f];if("scatter"===d.type&&d.xaxis===c.xaxis&&d.yaxis===c.yaxis){d.opacity=void 0;break}}}}}},17438:function(e,t,n){"use strict";var r=n(71828),i=n(73972),a=n(82196),o=n(47581),s=n(34098),l=n(67513),c=n(73927),u=n(565),f=n(49508),d=n(11058),h=n(94039),p=n(82410),v=n(28908),m=n(71828).coercePattern;e.exports=function(e,t,n,g){function y(n,i){return r.coerce(e,t,a,n,i)}var b=l(e,t,g,y);if(b||(t.visible=!1),t.visible){c(e,t,g,y),y("xhoverformat"),y("yhoverformat");var x=u(e,t,g,y);"group"===g.scattermode&&void 0===t.orientation&&y("orientation","v");var w=!x&&b=Math.min(t,n)&&p<=Math.max(t,n)?0:1/0}var r=Math.max(3,e.mrc||0),i=1-1/r,a=Math.abs(d.c2p(e.x)-p);return a=Math.min(t,n)&&v<=Math.max(t,n)?0:1/0}var r=Math.max(3,e.mrc||0),i=1-1/r,a=Math.abs(h.c2p(e.y)-v);return aG!==(j=R[L][1])>=G&&(F=R[L-1][0],N=R[L][0],j-z&&(D=F+(N-F)*(G-z)/(j-z),$=Math.min($,D),V=Math.max(V,D)));$=Math.max($,0),V=Math.min(V,d._length);var Z=s.defaultLine;return s.opacity(f.fillcolor)?Z=f.fillcolor:s.opacity((f.line||{}).color)&&(Z=f.line.color),r.extendFlat(e,{distance:e.maxHoverDistance,x0:$,x1:V,y0:G,y1:G,color:Z,hovertemplate:!1}),delete e.index,f.text&&!Array.isArray(f.text)?e.text=String(f.text):e.text=f.name,[e]}}}},67368:function(e,t,n){"use strict";var r=n(34098);e.exports={hasLines:r.hasLines,hasMarkers:r.hasMarkers,hasText:r.hasText,isBubble:r.isBubble,attributes:n(82196),layoutAttributes:n(21479),supplyDefaults:n(17438),crossTraceDefaults:n(34936),supplyLayoutDefaults:n(79334),calc:n(47761).calc,crossTraceCalc:n(72626),arraysToCalcdata:n(75225),plot:n(32663),colorbar:n(4898),formatLabels:n(8225),style:n(16296).style,styleOnSelect:n(16296).styleOnSelect,hoverPoints:n(33720),selectPoints:n(98002),animatable:!0,moduleType:"trace",name:"scatter",basePlotModule:n(93612),categories:["cartesian","svg","symbols","errorBarsOK","showLegend","scatter-like","zoomScale"],meta:{}}},21479:function(e){"use strict";e.exports={scattermode:{valType:"enumerated",values:["group","overlay"],dflt:"overlay",editType:"calc"},scattergap:{valType:"number",min:0,max:1,editType:"calc"}}},79334:function(e,t,n){"use strict";var r=n(71828),i=n(21479);e.exports=function(e,t){var n,a,o="group"===t.barmode;"group"===t.scattermode&&(n="scattergap",a=o?t.bargap:.2,r.coerce(e,t,i,n,a))}},11058:function(e,t,n){"use strict";var r=n(71828).isArrayOrTypedArray,i=n(52075).hasColorscale,a=n(1586);e.exports=function(e,t,n,o,s,l){l||(l={});var c=(e.marker||{}).color;s("line.color",n),i(e,"line")?a(e,t,o,s,{prefix:"line.",cLetter:"c"}):s("line.color",!r(c)&&c||n),s("line.width"),l.noDash||s("line.dash"),l.backoff&&s("line.backoff")}},34621:function(e,t,n){"use strict";var r=n(91424),i=n(50606),a=i.BADNUM,o=i.LOG_CLIP,s=o+.5,l=o-.5,c=n(71828),u=c.segmentsIntersect,f=c.constrain,d=n(47581);e.exports=function(e,t){var n,i,o,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E,C=t.trace||{},M=t.xaxis,O=t.yaxis,P="log"===M.type,L="log"===O.type,I=M._length,R=O._length,D=t.backoff,F=C.marker,N=t.connectGaps,z=t.baseTolerance,j=t.shape,B="linear"===j,U=C.fill&&"none"!==C.fill,H=[],$=d.minTolerance,V=e.length,W=new Array(V),q=0;function G(n){var r=e[n];if(!r)return!1;var i=t.linearized?M.l2p(r.x):M.c2p(r.x),o=t.linearized?O.l2p(r.y):O.c2p(r.y);if(i===a){if(P&&(i=M.c2p(r.x,!0)),i===a)return!1;L&&o===a&&(i*=Math.abs(M._m*R*(M._m>0?s:l)/(O._m*I*(O._m>0?s:l)))),i*=1e3}if(o===a){if(L&&(o=O.c2p(r.y,!0)),o===a)return!1;o*=1e3}return[i,o]}function Z(e,t,n,r){var i=n-e,a=r-t,o=.5-e,s=.5-t,l=i*i+a*a,c=i*o+a*s;if(c>0&&coe||e[1]le)return[f(e[0],ae,oe),f(e[1],se,le)]}function fe(e,t){return e[0]===t[0]&&(e[0]===ae||e[0]===oe)||e[1]===t[1]&&(e[1]===se||e[1]===le)||void 0}function de(e,t,n){return function(r,i){var a=ue(r),o=ue(i),s=[];if(a&&o&&fe(a,o))return s;a&&s.push(a),o&&s.push(o);var l=2*c.constrain((r[e]+i[e])/2,t,n)-((a||r)[e]+(o||i)[e]);return l&&((a&&o?l>0===a[e]>o[e]?a:o:a||o)[e]+=l),s}}function he(e){var t=e[0],n=e[1],r=t===W[q-1][0],i=n===W[q-1][1];if(!r||!i)if(q>1){var a=t===W[q-2][0],o=n===W[q-2][1];r&&(t===ae||t===oe)&&a?o?q--:W[q-1]=e:i&&(n===se||n===le)&&o?a?q--:W[q-1]=e:W[q++]=e}else W[q++]=e}function pe(e){W[q-1][0]!==e[0]&&W[q-1][1]!==e[1]&&he([Q,ee]),he(e),te=null,Q=ee=0}"linear"===j||"spline"===j?re=function(e,t){for(var n=[],r=0,i=0;i<4;i++){var a=ce[i],o=u(e[0],e[1],t[0],t[1],a[0],a[1],a[2],a[3]);o&&(!r||Math.abs(o.x-n[0][0])>1||Math.abs(o.y-n[0][1])>1)&&(o=[o.x,o.y],r&&K(o,e)oe?oe:0,J=t[1]le?le:0,X||J){if(q)if(te){var r=re(te,t);r.length>1&&(pe(r[0]),W[q++]=r[1])}else ne=re(W[q-1],t)[0],W[q++]=ne;else W[q++]=[X||t[0],J||t[1]];var i=W[q-1];X&&J&&(i[0]!==X||i[1]!==J)?(te&&(Q!==X&&ee!==J?he(Q&&ee?function(e,t){var n=t[0]-e[0],r=(t[1]-e[1])/n;return(e[1]*t[0]-t[1]*e[0])/n>0?[r>0?ae:oe,le]:[r>0?oe:ae,se]}(te,t):[Q||X,ee||J]):Q&&ee&&he([Q,ee])),he([X,J])):Q-X&&ee-J&&he([X||Q,J||ee]),te=t,Q=X,ee=J}else te&&pe(re(te,t)[0]),W[q++]=t}for(n=0;nY(v,ge))break;o=v,(_=y[0]*g[0]+y[1]*g[1])>x?(x=_,h=v,m=!1):_=e.length||!v)break;me(v),i=v}}else me(h)}te&&he([Q||te[0],ee||te[1]]),H.push(W.slice(0,q))}var ye=j.slice(j.length-1);if(D&&"h"!==ye&&"v"!==ye){for(var be=!1,xe=-1,we=[],_e=0;_e=0?l=h:(l=h=d,d++),l0?Math.max(n,a):0}}},4898:function(e){"use strict";e.exports={container:"marker",min:"cmin",max:"cmax"}},49508:function(e,t,n){"use strict";var r=n(7901),i=n(52075).hasColorscale,a=n(1586),o=n(34098);e.exports=function(e,t,n,s,l,c){var u=o.isBubble(e),f=(e.line||{}).color;c=c||{},f&&(n=f),l("marker.symbol"),l("marker.opacity",u?.7:1),l("marker.size"),c.noAngle||(l("marker.angle"),c.noAngleRef||l("marker.angleref"),c.noStandOff||l("marker.standoff")),l("marker.color",n),i(e,"marker")&&a(e,t,s,l,{prefix:"marker.",cLetter:"c"}),c.noSelect||(l("selected.marker.color"),l("unselected.marker.color"),l("selected.marker.size"),l("unselected.marker.size")),c.noLine||(l("marker.line.color",f&&!Array.isArray(f)&&t.marker.color!==f?f:u?r.background:r.defaultLine),i(e,"marker.line")&&a(e,t,s,l,{prefix:"marker.line.",cLetter:"c"}),l("marker.line.width",u?1:0)),u&&(l("marker.sizeref"),l("marker.sizemin"),l("marker.sizemode")),c.gradient&&"none"!==l("marker.gradient.type")&&l("marker.gradient.color")}},73927:function(e,t,n){"use strict";var r=n(71828).dateTick0,i=n(50606).ONEWEEK;function a(e,t){return r(t,e%i===0?1:0)}e.exports=function(e,t,n,r,i){if(i||(i={x:!0,y:!0}),i.x){var o=r("xperiod");o&&(r("xperiod0",a(o,t.xcalendar)),r("xperiodalignment"))}if(i.y){var s=r("yperiod");s&&(r("yperiod0",a(s,t.ycalendar)),r("yperiodalignment"))}}},32663:function(e,t,n){"use strict";var r=n(39898),i=n(73972),a=n(71828),o=a.ensureSingle,s=a.identity,l=n(91424),c=n(34098),u=n(34621),f=n(68687),d=n(61082).tester;function h(e,t,n,f,h,p,v){var m,g=e._context.staticPlot;!function(e,t,n,i,o){var s=n.xaxis,l=n.yaxis,u=r.extent(a.simpleMap(s.range,s.r2c)),f=r.extent(a.simpleMap(l.range,l.r2c)),d=i[0].trace;if(c.hasMarkers(d)){var h=d.marker.maxdisplayed;if(0!==h){var p=i.filter((function(e){return e.x>=u[0]&&e.x<=u[1]&&e.y>=f[0]&&e.y<=f[1]})),v=Math.ceil(p.length/h),m=0;o.forEach((function(e,n){var r=e[0].trace;c.hasMarkers(r)&&r.marker.maxdisplayed>0&&n0;function b(e){return y?e.transition():e}var x=n.xaxis,w=n.yaxis,_=f[0].trace,k=_.line,S=r.select(p),T=o(S,"g","errorbars"),A=o(S,"g","lines"),E=o(S,"g","points"),C=o(S,"g","text");if(i.getComponentMethod("errorbars","plot")(e,T,n,v),!0===_.visible){var M,O;b(S).style("opacity",_.opacity);var P=_.fill.charAt(_.fill.length-1);"x"!==P&&"y"!==P&&(P=""),f[0][n.isRangePlot?"nodeRangePlot3":"node3"]=S;var L,I,R="",D=[],F=_._prevtrace;F&&(R=F._prevRevpath||"",O=F._nextFill,D=F._polygons);var N,z,j,B,U,H,$,V="",W="",q=[],G=a.noop;if(M=_._ownFill,c.hasLines(_)||"none"!==_.fill){for(O&&O.datum(f),-1!==["hv","vh","hvh","vhv"].indexOf(k.shape)?(N=l.steps(k.shape),z=l.steps(k.shape.split("").reverse().join(""))):N=z="spline"===k.shape?function(e){var t=e[e.length-1];return e.length>1&&e[0][0]===t[0]&&e[0][1]===t[1]?l.smoothclosed(e.slice(1),k.smoothing):l.smoothopen(e,k.smoothing)}:function(e){return"M"+e.join("L")},j=function(e){return z(e.reverse())},q=u(f,{xaxis:x,yaxis:w,trace:_,connectGaps:_.connectgaps,baseTolerance:Math.max(k.width||1,3)/4,shape:k.shape,backoff:k.backoff,simplify:k.simplify,fill:_.fill}),$=_._polygons=new Array(q.length),m=0;m0,m=f(e,t,n);(u=i.selectAll("g.trace").data(m,(function(e){return e[0].trace.uid}))).enter().append("g").attr("class",(function(e){return"trace scatter trace"+e[0].trace.uid})).style("stroke-miterlimit",2),u.order(),function(e,t,n){t.each((function(t){var i=o(r.select(this),"g","fills");l.setClipUrl(i,n.layerClipId,e);var a=t[0].trace,c=[];a._ownfill&&c.push("_ownFill"),a._nexttrace&&c.push("_nextFill");var u=i.selectAll("g").data(c,s);u.enter().append("g"),u.exit().each((function(e){a[e]=null})).remove(),u.order().each((function(e){a[e]=o(r.select(this),"path","js-fill")}))}))}(e,u,t),v?(c&&(d=c()),r.transition().duration(a.duration).ease(a.easing).each("end",(function(){d&&d()})).each("interrupt",(function(){d&&d()})).each((function(){i.selectAll("g.trace").each((function(n,r){h(e,r,t,n,m,this,a)}))}))):u.each((function(n,r){h(e,r,t,n,m,this,a)})),p&&u.exit().remove(),i.selectAll("path:not([d])").remove()}},98002:function(e,t,n){"use strict";var r=n(34098);e.exports=function(e,t){var n,i,a,o,s=e.cd,l=e.xaxis,c=e.yaxis,u=[],f=s[0].trace;if(!r.hasMarkers(f)&&!r.hasText(f))return[];if(!1===t)for(n=0;n0){var d=i.c2l(u);i._lowerLogErrorBound||(i._lowerLogErrorBound=d),i._lowerErrorBound=Math.min(i._lowerLogErrorBound,d)}}else o[s]=[-l[0]*n,l[1]*n]}return o}e.exports=function(e,t,n){var r=[i(e.x,e.error_x,t[0],n.xaxis),i(e.y,e.error_y,t[1],n.yaxis),i(e.z,e.error_z,t[2],n.zaxis)],a=function(e){for(var t=0;t-1?-1:e.indexOf("right")>-1?1:0}function x(e){return null===e||void 0===e?0:e.indexOf("top")>-1?-1:e.indexOf("bottom")>-1?1:0}function w(e,t){return t(4*e)}function _(e){return h[e]}function k(e,t,n,r,i){var a=null;if(l.isArrayOrTypedArray(e)){a=[];for(var o=0;o=0){var v=function(e,t,n){var r,i=(n+1)%3,a=(n+2)%3,o=[],l=[];for(r=0;r=0&&f("surfacecolor",h||p);for(var v=["x","y","z"],m=0;m<3;++m){var g="projection."+v[m];f(g+".show")&&(f(g+".opacity"),f(g+".scale"))}var y=r.getComponentMethod("errorbars","supplyDefaults");y(e,t,h||p||n,{axis:"z"}),y(e,t,h||p||n,{axis:"y",inherit:"z"}),y(e,t,h||p||n,{axis:"x",inherit:"z"})}else t.visible=!1}},13551:function(e,t,n){"use strict";e.exports={plot:n(58925),attributes:n(44542),markerSymbols:n(87381),supplyDefaults:n(21428),colorbar:[{container:"marker",min:"cmin",max:"cmax"},{container:"line",min:"cmin",max:"cmax"}],calc:n(36563),moduleType:"trace",name:"scatter3d",basePlotModule:n(58547),categories:["gl3d","symbols","showLegend","scatter-like"],meta:{}}},97001:function(e,t,n){"use strict";var r=n(82196),i=n(9012),a=n(5386).fF,o=n(5386).si,s=n(50693),l=n(1426).extendFlat,c=r.marker,u=r.line,f=c.line;e.exports={carpet:{valType:"string",editType:"calc"},a:{valType:"data_array",editType:"calc"},b:{valType:"data_array",editType:"calc"},mode:l({},r.mode,{dflt:"markers"}),text:l({},r.text,{}),texttemplate:o({editType:"plot"},{keys:["a","b","text"]}),hovertext:l({},r.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,backoff:u.backoff,shape:l({},u.shape,{values:["linear","spline"]}),smoothing:u.smoothing,editType:"calc"},connectgaps:r.connectgaps,fill:l({},r.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:r.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,angle:c.angle,angleref:c.angleref,standoff:c.standoff,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:f.width,editType:"calc"},s("marker.line")),gradient:c.gradient,editType:"calc"},s("marker")),textfont:r.textfont,textposition:r.textposition,selected:r.selected,unselected:r.unselected,hoverinfo:l({},i.hoverinfo,{flags:["a","b","text","name"]}),hoveron:r.hoveron,hovertemplate:a()}},34618:function(e,t,n){"use strict";var r=n(92770),i=n(36922),a=n(75225),o=n(66279),s=n(47761).calcMarkerSize,l=n(22882);e.exports=function(e,t){var n=t._carpetTrace=l(e,t);if(n&&n.visible&&"legendonly"!==n.visible){var c;t.xaxis=n.xaxis,t.yaxis=n.yaxis;var u,f,d=t._length,h=new Array(d),p=!1;for(c=0;c")}return o}function y(e,t){var n;n=e.labelprefix&&e.labelprefix.length>0?e.labelprefix.replace(/ = $/,""):e._hovertitle,m.push(n+": "+t.toFixed(3)+e.labelsuffix)}}},46858:function(e,t,n){"use strict";e.exports={attributes:n(97001),supplyDefaults:n(98965),colorbar:n(4898),formatLabels:n(48953),calc:n(34618),plot:n(1913),style:n(16296).style,styleOnSelect:n(16296).styleOnSelect,hoverPoints:n(22931),selectPoints:n(98002),eventData:n(16165),moduleType:"trace",name:"scattercarpet",basePlotModule:n(93612),categories:["svg","carpet","symbols","showLegend","carpetDependent","zoomScale"],meta:{}}},1913:function(e,t,n){"use strict";var r=n(32663),i=n(89298),a=n(91424);e.exports=function(e,t,n,o){var s,l,c,u=n[0][0].carpet,f=i.getFromId(e,u.xaxis||"x"),d=i.getFromId(e,u.yaxis||"y"),h={xaxis:f,yaxis:d,plot:t.plot};for(s=0;s")}function h(e){return e+"\xb0"}}(c,v,e,l[0].t.labels),e.hovertemplate=c.hovertemplate,[e]}}},17988:function(e,t,n){"use strict";e.exports={attributes:n(19316),supplyDefaults:n(10659),colorbar:n(4898),formatLabels:n(82719),calc:n(84622),calcGeoJSON:n(89171).calcGeoJSON,plot:n(89171).plot,style:n(33095),styleOnSelect:n(16296).styleOnSelect,hoverPoints:n(14977),eventData:n(84084),selectPoints:n(20548),moduleType:"trace",name:"scattergeo",basePlotModule:n(44622),categories:["geo","symbols","showLegend","scatter-like"],meta:{}}},89171:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=n(90973).getTopojsonFeatures,o=n(18214),s=n(41327),l=n(71739).findExtremes,c=n(50606).BADNUM,u=n(47761).calcMarkerSize,f=n(34098),d=n(33095);e.exports={calcGeoJSON:function(e,t){var n,r,i=e[0].trace,o=t[i.geo],f=o._subplot,d=i._length;if(Array.isArray(i.locations)){var h=i.locationmode,p="geojson-id"===h?s.extractTraceFeature(e):a(i,f.topojson);for(n=0;n=m,_=2*x,k={},S=l.makeCalcdata(t,"x"),T=y.makeCalcdata(t,"y"),A=s(t,l,"x",S),E=s(t,y,"y",T),C=A.vals,M=E.vals;t._x=C,t._y=M,t.xperiodalignment&&(t._origX=S,t._xStarts=A.starts,t._xEnds=A.ends),t.yperiodalignment&&(t._origY=T,t._yStarts=E.starts,t._yEnds=E.ends);var O=new Array(_),P=new Array(x);for(n=0;n1&&i.extendFlat(s.line,h.linePositions(e,n,r)),s.errorX||s.errorY){var l=h.errorBarPositions(e,n,r,a,o);s.errorX&&i.extendFlat(s.errorX,l.x),s.errorY&&i.extendFlat(s.errorY,l.y)}return s.text&&(i.extendFlat(s.text,{positions:r},h.textPosition(e,n,s.text,s.marker)),i.extendFlat(s.textSel,{positions:r},h.textPosition(e,n,s.text,s.markerSel)),i.extendFlat(s.textUnsel,{positions:r},h.textPosition(e,n,s.text,s.markerUnsel))),s}(e,0,t,O,C,M),R=p(e,b);return f(o,t),w?I.marker&&(L=I.marker.sizeAvg||Math.max(I.marker.size,3)):L=c(t,x),u(e,t,l,y,C,M,L),I.errorX&&g(t,l,I.errorX),I.errorY&&g(t,y,I.errorY),I.fill&&!R.fill2d&&(R.fill2d=!0),I.marker&&!R.scatter2d&&(R.scatter2d=!0),I.line&&!R.line2d&&(R.line2d=!0),!I.errorX&&!I.errorY||R.error2d||(R.error2d=!0),I.text&&!R.glText&&(R.glText=!0),I.marker&&(I.marker.snap=x),R.lineOptions.push(I.line),R.errorXOptions.push(I.errorX),R.errorYOptions.push(I.errorY),R.fillOptions.push(I.fill),R.markerOptions.push(I.marker),R.markerSelectedOptions.push(I.markerSel),R.markerUnselectedOptions.push(I.markerUnsel),R.textOptions.push(I.text),R.textSelectedOptions.push(I.textSel),R.textUnselectedOptions.push(I.textUnsel),R.selectBatch.push([]),R.unselectBatch.push([]),k._scene=R,k.index=R.count,k.x=C,k.y=M,k.positions=O,R.count++,[{x:!1,y:!1,t:k,trace:t}]}},78232:function(e){"use strict";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},19635:function(e,t,n){"use strict";var r=n(92770),i=n(82019),a=n(25075),o=n(73972),s=n(71828),l=n(91424),c=n(41675),u=n(81697).formatColor,f=n(34098),d=n(39984),h=n(68645),p=n(78232),v=n(37822).DESELECTDIM,m={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},g=n(23469).appendArrayPointValue;function y(e,t){var n,i=e._fullLayout,a=t._length,o=t.textfont,l=t.textposition,c=Array.isArray(l)?l:[l],u=o.color,f=o.size,d=o.family,h={},p=e._context.plotGlPixelRatio,v=t.texttemplate;if(v){h.text=[];var m=i._d3locale,y=Array.isArray(v),b=y?Math.min(v.length,a):a,x=y?function(e){return v[e]}:function(){return v};for(n=0;np.TOO_MANY_POINTS||f.hasMarkers(t)?"rect":"round";if(c&&t.connectgaps){var d=r[0],h=r[1];for(i=0;i1?l[i]:l[0]:l,p=Array.isArray(c)?c.length>1?c[i]:c[0]:c,v=m[h],g=m[p],y=u?u/.8+1:0,b=-g*y-.5*g;o.offset[i]=[v*y/d,b/d]}}return o}}},47148:function(e,t,n){"use strict";var r=n(71828),i=n(73972),a=n(68645),o=n(42341),s=n(47581),l=n(34098),c=n(67513),u=n(73927),f=n(49508),d=n(11058),h=n(28908),p=n(82410);e.exports=function(e,t,n,v){function m(n,i){return r.coerce(e,t,o,n,i)}var g=!!e.marker&&a.isOpenSymbol(e.marker.symbol),y=l.isBubble(e),b=c(e,t,v,m);if(b){u(e,t,v,m),m("xhoverformat"),m("yhoverformat");var x=b100},t.isDotSymbol=function(e){return"string"===typeof e?r.DOT_RE.test(e):e>200}},20794:function(e,t,n){"use strict";var r=n(73972),i=n(71828),a=n(34603);function o(e,t,n,o){var s=e.xa,l=e.ya,c=e.distance,u=e.dxy,f=e.index,d={pointNumber:f,x:t[f],y:n[f]};d.tx=Array.isArray(o.text)?o.text[f]:o.text,d.htx=Array.isArray(o.hovertext)?o.hovertext[f]:o.hovertext,d.data=Array.isArray(o.customdata)?o.customdata[f]:o.customdata,d.tp=Array.isArray(o.textposition)?o.textposition[f]:o.textposition;var h=o.textfont;h&&(d.ts=i.isArrayOrTypedArray(h.size)?h.size[f]:h.size,d.tc=Array.isArray(h.color)?h.color[f]:h.color,d.tf=Array.isArray(h.family)?h.family[f]:h.family);var p=o.marker;p&&(d.ms=i.isArrayOrTypedArray(p.size)?p.size[f]:p.size,d.mo=i.isArrayOrTypedArray(p.opacity)?p.opacity[f]:p.opacity,d.mx=i.isArrayOrTypedArray(p.symbol)?p.symbol[f]:p.symbol,d.ma=i.isArrayOrTypedArray(p.angle)?p.angle[f]:p.angle,d.mc=i.isArrayOrTypedArray(p.color)?p.color[f]:p.color);var v=p&&p.line;v&&(d.mlc=Array.isArray(v.color)?v.color[f]:v.color,d.mlw=i.isArrayOrTypedArray(v.width)?v.width[f]:v.width);var m=p&&p.gradient;m&&"none"!==m.type&&(d.mgt=Array.isArray(m.type)?m.type[f]:m.type,d.mgc=Array.isArray(m.color)?m.color[f]:m.color);var g=s.c2p(d.x,!0),y=l.c2p(d.y,!0),b=d.mrc||1,x=o.hoverlabel;x&&(d.hbg=Array.isArray(x.bgcolor)?x.bgcolor[f]:x.bgcolor,d.hbc=Array.isArray(x.bordercolor)?x.bordercolor[f]:x.bordercolor,d.hts=i.isArrayOrTypedArray(x.font.size)?x.font.size[f]:x.font.size,d.htc=Array.isArray(x.font.color)?x.font.color[f]:x.font.color,d.htf=Array.isArray(x.font.family)?x.font.family[f]:x.font.family,d.hnl=i.isArrayOrTypedArray(x.namelength)?x.namelength[f]:x.namelength);var w=o.hoverinfo;w&&(d.hi=Array.isArray(w)?w[f]:w);var _=o.hovertemplate;_&&(d.ht=Array.isArray(_)?_[f]:_);var k={};k[e.index]=d;var S=o._origX,T=o._origY,A=i.extendFlat({},e,{color:a(o,d),x0:g-b,x1:g+b,xLabelVal:S?S[f]:d.x,y0:y-b,y1:y+b,yLabelVal:T?T[f]:d.y,cd:k,distance:c,spikeDistance:u,hovertemplate:d.ht});return d.htx?A.text=d.htx:d.tx?A.text=d.tx:o.text&&(A.text=o.text),i.fillText(d,o,A),r.getComponentMethod("errorbars","hoverInfo")(d,o,A),A}e.exports={hoverPoints:function(e,t,n,r){var i,a,s,l,c,u,f,d,h,p,v=e.cd,m=v[0].t,g=v[0].trace,y=e.xa,b=e.ya,x=m.x,w=m.y,_=y.c2p(t),k=b.c2p(n),S=e.distance;if(m.tree){var T=y.p2c(_-S),A=y.p2c(_+S),E=b.p2c(k-S),C=b.p2c(k+S);i="x"===r?m.tree.range(Math.min(T,A),Math.min(b._rl[0],b._rl[1]),Math.max(T,A),Math.max(b._rl[0],b._rl[1])):m.tree.range(Math.min(T,A),Math.min(E,C),Math.max(T,A),Math.max(E,C))}else i=m.ids;var M=S;if("x"===r){var O=!!g.xperiodalignment,P=!!g.yperiodalignment;for(u=0;u=Math.min(L,I)&&_<=Math.max(L,I)?0:1/0}if(f=Math.min(R,D)&&k<=Math.max(R,D)?0:1/0}p=Math.sqrt(f*f+d*d),s=i[u]}}}else for(u=i.length-1;u>-1;u--)l=x[a=i[u]],c=w[a],f=y.c2p(l)-_,d=b.c2p(c)-k,(h=Math.sqrt(f*f+d*d))y.glText.length){var k=w-y.glText.length;for(v=0;vn&&(isNaN(t[r])||isNaN(t[r+1]));)r-=2;e.positions=t.slice(n,r+2)}return e})),y.line2d.update(y.lineOptions)),y.error2d){var T=(y.errorXOptions||[]).concat(y.errorYOptions||[]);y.error2d.update(T)}y.scatter2d&&y.scatter2d.update(y.markerOptions),y.fillOrder=s.repeat(null,w),y.fill2d&&(y.fillOptions=y.fillOptions.map((function(e,t){var r=n[t];if(e&&r&&r[0]&&r[0].trace){var i,a,o=r[0],s=o.trace,l=o.t,c=y.lineOptions[t],u=[];s._ownfill&&u.push(t),s._nexttrace&&u.push(t+1),u.length&&(y.fillOrder[t]=u);var f,d,h=[],p=c&&c.positions||l.positions;if("tozeroy"===s.fill){for(f=0;ff&&isNaN(p[d+1]);)d-=2;0!==p[f+1]&&(h=[p[f],0]),h=h.concat(p.slice(f,d+2)),0!==p[d+1]&&(h=h.concat([p[d],0]))}else if("tozerox"===s.fill){for(f=0;ff&&isNaN(p[d]);)d-=2;0!==p[f]&&(h=[0,p[f+1]]),h=h.concat(p.slice(f,d+2)),0!==p[d]&&(h=h.concat([0,p[d+1]]))}else if("toself"===s.fill||"tonext"===s.fill){for(h=[],i=0,e.splitNull=!0,a=0;a-1;for(v=0;v")}function u(e){return e+"\xb0"}}e.exports={hoverPoints:function(e,t,n){var o=e.cd,u=o[0].trace,f=e.xa,d=e.ya,h=e.subplot,p=[],v=l+u.uid+"-circle",m=u.cluster&&u.cluster.enabled;if(m){var g=h.map.queryRenderedFeatures(null,{layers:[v]});p=g.map((function(e){return e.id}))}var y=360*(t>=0?Math.floor((t+180)/360):Math.ceil((t-180)/360)),b=t-y;if(r.getClosest(o,(function(e){var t=e.lonlat;if(t[0]===s)return 1/0;if(m&&-1===p.indexOf(e.i+1))return 1/0;var r=i.modHalf(t[0],360),a=t[1],o=h.project([r,a]),l=o.x-f.c2p([b,a]),c=o.y-d.c2p([r,n]),u=Math.max(3,e.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-u,1-3/u)}),e),!1!==e.index){var x=o[e.index],w=x.lonlat,_=[i.modHalf(w[0],360)+y,w[1]],k=f.c2p(_),S=d.c2p(_),T=x.mrc||1;e.x0=k-T,e.x1=k+T,e.y0=S-T,e.y1=S+T;var A={};A[u.subplot]={_subplot:h};var E=u._module.formatLabels(x,u,A);return e.lonLabel=E.lonLabel,e.latLabel=E.latLabel,e.color=a(u,x),e.extraText=c(u,x,o[0].t.labels),e.hovertemplate=u.hovertemplate,[e]}},getExtraText:c}},20467:function(e,t,n){"use strict";e.exports={attributes:n(99181),supplyDefaults:n(76645),colorbar:n(4898),formatLabels:n(15636),calc:n(84622),plot:n(86951),hoverPoints:n(28178).hoverPoints,eventData:n(53353),selectPoints:n(86387),styleOnSelect:function(e,t){t&&t[0].trace._glTrace.update(t)},moduleType:"trace",name:"scattermapbox",basePlotModule:n(50101),categories:["mapbox","gl","symbols","showLegend","scatter-like"],meta:{}}},86951:function(e,t,n){"use strict";var r=n(71828),i=n(15790),a=n(77734).traceLayerPrefix,o={cluster:["cluster","clusterCount","circle"],nonCluster:["fill","line","circle","symbol"]};function s(e,t,n,r){this.type="scattermapbox",this.subplot=e,this.uid=t,this.clusterEnabled=n,this.isHidden=r,this.sourceIds={fill:"source-"+t+"-fill",line:"source-"+t+"-line",circle:"source-"+t+"-circle",symbol:"source-"+t+"-symbol",cluster:"source-"+t+"-circle",clusterCount:"source-"+t+"-circle"},this.layerIds={fill:a+t+"-fill",line:a+t+"-line",circle:a+t+"-circle",symbol:a+t+"-symbol",cluster:a+t+"-cluster",clusterCount:a+t+"-cluster-count"},this.below=null}var l=s.prototype;l.addSource=function(e,t,n){var i={type:"geojson",data:t.geojson};n&&n.enabled&&r.extendFlat(i,{cluster:!0,clusterMaxZoom:n.maxzoom});var a=this.subplot.map.getSource(this.sourceIds[e]);a?a.setData(t.geojson):this.subplot.map.addSource(this.sourceIds[e],i)},l.setSourceData=function(e,t){this.subplot.map.getSource(this.sourceIds[e]).setData(t.geojson)},l.addLayer=function(e,t,n){var r={type:t.type,id:this.layerIds[e],source:this.sourceIds[e],layout:t.layout,paint:t.paint};t.filter&&(r.filter=t.filter);for(var i,a=this.layerIds[e],o=this.subplot.getMapLayers(),s=0;s=0;n--){var i=t[n];r.removeLayer(u.layerIds[i])}e||r.removeSource(u.sourceIds.circle)}(e):function(e){for(var t=o.nonCluster,n=t.length-1;n>=0;n--){var i=t[n];r.removeLayer(u.layerIds[i]),e||r.removeSource(u.sourceIds[i])}}(e)}function d(e){l?function(e){e||u.addSource("circle",a.circle,t.cluster);for(var n=o.cluster,r=0;r=0;n--){var r=t[n];e.removeLayer(this.layerIds[r]),e.removeSource(this.sourceIds[r])}},e.exports=function(e,t){var n,r,a,l=t[0].trace,c=l.cluster&&l.cluster.enabled,u=!0!==l.visible,f=new s(e,l.uid,c,u),d=i(e.gd,t),h=f.below=e.belowLookup["trace-"+l.uid];if(c)for(f.addSource("circle",d.circle,l.cluster),n=0;n")}}e.exports={hoverPoints:function(e,t,n,a){var o=r(e,t,n,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=e.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},91271:function(e,t,n){"use strict";e.exports={moduleType:"trace",name:"scatterpolar",basePlotModule:n(23580),categories:["polar","symbols","showLegend","scatter-like"],attributes:n(81245),supplyDefaults:n(22184).supplyDefaults,colorbar:n(4898),formatLabels:n(98608),calc:n(26442),plot:n(45162),style:n(16296).style,styleOnSelect:n(16296).styleOnSelect,hoverPoints:n(59150).hoverPoints,selectPoints:n(98002),meta:{}}},45162:function(e,t,n){"use strict";var r=n(32663),i=n(50606).BADNUM;e.exports=function(e,t,n){for(var a=t.layers.frontplot.select("g.scatterlayer"),o=t.xaxis,s=t.yaxis,l={xaxis:o,yaxis:s,plot:t.framework,layerClipId:t._hasClipOnAxisFalse?t.clipIds.forTraces:null},c=t.radialAxis,u=t.angularAxis,f=0;f=c&&(y.marker.cluster=p.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=w),y.line&&w.length>1&&l.extendFlat(y.line,s.linePositions(e,h,w)),y.text&&(l.extendFlat(y.text,{positions:w},s.textPosition(e,h,y.text,y.marker)),l.extendFlat(y.textSel,{positions:w},s.textPosition(e,h,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:w},s.textPosition(e,h,y.text,y.markerUnsel))),y.fill&&!d.fill2d&&(d.fill2d=!0),y.marker&&!d.scatter2d&&(d.scatter2d=!0),y.line&&!d.line2d&&(d.line2d=!0),y.text&&!d.glText&&(d.glText=!0),d.lineOptions.push(y.line),d.fillOptions.push(y.fill),d.markerOptions.push(y.marker),d.markerSelectedOptions.push(y.markerSel),d.markerUnselectedOptions.push(y.markerUnsel),d.textOptions.push(y.text),d.textSelectedOptions.push(y.textSel),d.textUnselectedOptions.push(y.textUnsel),d.selectBatch.push([]),d.unselectBatch.push([]),p.x=_,p.y=k,p.rawx=_,p.rawy=k,p.r=m,p.theta=g,p.positions=w,p._scene=d,p.index=d.count,d.count++}})),a(e,t,n)}},e.exports.reglPrecompiled={}},48300:function(e,t,n){"use strict";var r=n(5386).fF,i=n(5386).si,a=n(1426).extendFlat,o=n(82196),s=n(9012),l=o.line;e.exports={mode:o.mode,real:{valType:"data_array",editType:"calc+clearAxisTypes"},imag:{valType:"data_array",editType:"calc+clearAxisTypes"},text:o.text,texttemplate:i({editType:"plot"},{keys:["real","imag","text"]}),hovertext:o.hovertext,line:{color:l.color,width:l.width,dash:l.dash,backoff:l.backoff,shape:a({},l.shape,{values:["linear","spline"]}),smoothing:l.smoothing,editType:"calc"},connectgaps:o.connectgaps,marker:o.marker,cliponaxis:a({},o.cliponaxis,{dflt:!1}),textposition:o.textposition,textfont:o.textfont,fill:a({},o.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:o.fillcolor,hoverinfo:a({},s.hoverinfo,{flags:["real","imag","text","name"]}),hoveron:o.hoveron,hovertemplate:r(),selected:o.selected,unselected:o.unselected}},30621:function(e,t,n){"use strict";var r=n(92770),i=n(50606).BADNUM,a=n(36922),o=n(75225),s=n(66279),l=n(47761).calcMarkerSize;e.exports=function(e,t){for(var n=e._fullLayout,c=t.subplot,u=n[c].realaxis,f=n[c].imaginaryaxis,d=u.makeCalcdata(t,"real"),h=f.makeCalcdata(t,"imag"),p=t._length,v=new Array(p),m=0;m")}}e.exports={hoverPoints:function(e,t,n,a){var o=r(e,t,n,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=e.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},85956:function(e,t,n){"use strict";e.exports={moduleType:"trace",name:"scattersmith",basePlotModule:n(7504),categories:["smith","symbols","showLegend","scatter-like"],attributes:n(48300),supplyDefaults:n(65269),colorbar:n(4898),formatLabels:n(62047),calc:n(30621),plot:n(12480),style:n(16296).style,styleOnSelect:n(16296).styleOnSelect,hoverPoints:n(11350).hoverPoints,selectPoints:n(98002),meta:{}}},12480:function(e,t,n){"use strict";var r=n(32663),i=n(50606).BADNUM,a=n(23893).smith;e.exports=function(e,t,n){for(var o=t.layers.frontplot.select("g.scatterlayer"),s=t.xaxis,l=t.yaxis,c={xaxis:s,yaxis:l,plot:t.framework,layerClipId:t._hasClipOnAxisFalse?t.clipIds.forTraces:null},u=0;u"),o.hovertemplate=d.hovertemplate,a}function b(e,t){g.push(e._hovertitle+": "+t)}}},52979:function(e,t,n){"use strict";e.exports={attributes:n(50413),supplyDefaults:n(46008),colorbar:n(4898),formatLabels:n(93645),calc:n(54337),plot:n(7507),style:n(16296).style,styleOnSelect:n(16296).styleOnSelect,hoverPoints:n(47250),selectPoints:n(98002),eventData:n(4524),moduleType:"trace",name:"scatterternary",basePlotModule:n(61639),categories:["ternary","symbols","showLegend","scatter-like"],meta:{}}},7507:function(e,t,n){"use strict";var r=n(32663);e.exports=function(e,t,n){var i=t.plotContainer;i.select(".scatterlayer").selectAll("*").remove();for(var a=t.xaxis,o=t.yaxis,s={xaxis:a,yaxis:o,plot:i,layerClipId:t._hasClipOnAxisFalse?t.clipIdRelative:null},l=t.layers.frontplot.select("g.scatterlayer"),c=0;cd?x.sizeAvg||Math.max(x.size,3):a(t,b),h=0;ha&&l||i-1,P=!0;if(o(b)||h.selectedpoints||O){var L=h._length;if(h.selectedpoints){v.selectBatch=h.selectedpoints;var I=h.selectedpoints,R={};for(l=0;l1&&(u=v[y-1],d=m[y-1],p=g[y-1]),t=0;tu?"-":"+")+"x")).replace("y",(f>d?"-":"+")+"y")).replace("z",(h>p?"-":"+")+"z");var M=function(){y=0,A=[],E=[],C=[]};(!y||y2?e.slice(1,t-1):2===t?[(e[0]+e[1])/2]:e}function h(e){var t=e.length;return 1===t?[.5,.5]:[e[1]-e[0],e[t-1]-e[t-2]]}function p(e,t){var n=e.fullSceneLayout,i=e.dataScale,u=t._len,f={};function p(e,t){var r=n[t],o=i[c[t]];return a.simpleMap(e,(function(e){return r.d2l(e)*o}))}if(f.vectors=l(p(t._u,"xaxis"),p(t._v,"yaxis"),p(t._w,"zaxis"),u),!u)return{positions:[],cells:[]};var v=p(t._Xs,"xaxis"),m=p(t._Ys,"yaxis"),g=p(t._Zs,"zaxis");if(f.meshgrid=[v,m,g],f.gridFill=t._gridFill,t._slen)f.startingPositions=l(p(t._startsX,"xaxis"),p(t._startsY,"yaxis"),p(t._startsZ,"zaxis"));else{for(var y=m[0],b=d(v),x=d(g),w=new Array(b.length*x.length),_=0,k=0;k=0};y?(n=Math.min(g.length,x.length),l=function(e){return A(g[e])&&E(e)},f=function(e){return String(g[e])}):(n=Math.min(b.length,x.length),l=function(e){return A(b[e])&&E(e)},f=function(e){return String(b[e])}),_&&(n=Math.min(n,w.length));for(var C=0;C1){for(var L=a.randstr(),I=0;I=0){t.i=s.i;var u=n.marker;u.pattern&&u.colors&&u.pattern.shape||(u.color=c,t.color=c),r.pointStyle(e,n,a,t)}else i.fill(e,c)}},83523:function(e,t,n){"use strict";var r=n(39898),i=n(73972),a=n(23469).appendArrayPointValue,o=n(30211),s=n(71828),l=n(11086),c=n(2791),u=n(53581).formatPieValue;function f(e,t,n){for(var r=e.data.data,i={curveNumber:t.index,pointNumber:r.i,data:t._input,fullData:t},o=0;o"),name:T||R("name")?y.name:void 0,color:S("hoverlabel.bgcolor")||b.color,borderColor:S("hoverlabel.bordercolor"),fontFamily:S("hoverlabel.font.family"),fontSize:S("hoverlabel.font.size"),fontColor:S("hoverlabel.font.color"),nameLength:S("hoverlabel.namelength"),textAlign:S("hoverlabel.align"),hovertemplate:T,hovertemplateLabels:P,eventData:l};m&&(N.x0=C-i.rInscribed*i.rpx1,N.x1=C+i.rInscribed*i.rpx1,N.idealAlign=i.pxmid[0]<0?"left":"right"),g&&(N.x=C,N.idealAlign=C<0?"left":"right");var z=[];o.loneHover(N,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:n,inOut_bbox:z}),l[0].bbox=z[0],p._hasHoverLabel=!0}if(g){var j=e.select("path.surface");d.styleOne(j,i,y,n,{hovered:!0})}p._hasHoverEvent=!0,n.emit("plotly_hover",{points:l||[f(i,y,d.eventDataKeys)],event:r.event})}})),e.on("mouseout",(function(t){var i=n._fullLayout,a=n._fullData[p.index],s=r.select(this).datum();if(p._hasHoverEvent&&(t.originalEvent=r.event,n.emit("plotly_unhover",{points:[f(s,a,d.eventDataKeys)],event:r.event}),p._hasHoverEvent=!1),p._hasHoverLabel&&(o.loneUnhover(i._hoverlayer.node()),p._hasHoverLabel=!1),g){var l=e.select("path.surface");d.styleOne(l,s,a,n,{hovered:!1})}})),e.on("click",(function(e){var t=n._fullLayout,a=n._fullData[p.index],s=m&&(c.isHierarchyRoot(e)||c.isLeaf(e)),u=c.getPtId(e),h=c.isEntry(e)?c.findEntryWithChild(v,u):c.findEntryWithLevel(v,u),g=c.getPtId(h),y={points:[f(e,a,d.eventDataKeys)],event:r.event};s||(y.nextLevel=g);var b=l.triggerHandler(n,"plotly_"+p.type+"click",y);if(!1!==b&&t.hovermode&&(n._hoverdata=[f(e,a,d.eventDataKeys)],o.click(n,r.event)),!s&&!1!==b&&!n._dragging&&!n._transitioning){i.call("_storeDirectGUIEdit",a,t._tracePreGUI[a.uid],{level:a.level});var x={data:[{level:g}],traces:[p.index]},w={frame:{redraw:!1,duration:d.transitionTime},transition:{duration:d.transitionTime,easing:d.transitionEasing},mode:"immediate",fromcurrent:!0};o.loneUnhover(t._hoverlayer.node()),i.call("animate",n,x,w)}}))}},2791:function(e,t,n){"use strict";var r=n(71828),i=n(7901),a=n(6964),o=n(53581);function s(e){return e.data.data.pid}t.findEntryWithLevel=function(e,n){var r;return n&&e.eachAfter((function(e){if(t.getPtId(e)===n)return r=e.copy()})),r||e},t.findEntryWithChild=function(e,n){var r;return e.eachAfter((function(e){for(var i=e.children||[],a=0;a0)},t.getMaxDepth=function(e){return e.maxdepth>=0?e.maxdepth:1/0},t.isHeader=function(e,n){return!(t.isLeaf(e)||e.depth===n._maxDepth-1)},t.getParent=function(e,n){return t.findEntryWithLevel(e,s(n))},t.listPath=function(e,n){var r=e.parent;if(!r)return[];var i=n?[r.data[n]]:[r];return t.listPath(r,n).concat(i)},t.getPath=function(e){return t.listPath(e,"label").join("/")+"/"},t.formatValue=o.formatPieValue,t.formatPercent=function(e,t){var n=r.formatPercent(e,0);return"0%"===n&&(n=o.formatPiePercent(e,t)),n}},87619:function(e,t,n){"use strict";e.exports={moduleType:"trace",name:"sunburst",basePlotModule:n(66888),categories:[],animatable:!0,attributes:n(57564),layoutAttributes:n(2654),supplyDefaults:n(17094),supplyLayoutDefaults:n(57034),calc:n(52147).calc,crossTraceCalc:n(52147).crossTraceCalc,plot:n(24714).plot,style:n(29969).style,colorbar:n(4898),meta:{}}},2654:function(e){"use strict";e.exports={sunburstcolorway:{valType:"colorlist",editType:"calc"},extendsunburstcolors:{valType:"boolean",dflt:!0,editType:"calc"}}},57034:function(e,t,n){"use strict";var r=n(71828),i=n(2654);e.exports=function(e,t){function n(n,a){return r.coerce(e,t,i,n,a)}n("sunburstcolorway",t.colorway),n("extendsunburstcolors")}},24714:function(e,t,n){"use strict";var r=n(39898),i=n(674),a=n(81684).sX,o=n(91424),s=n(71828),l=n(63893),c=n(72597),u=c.recordMinTextSize,f=c.clearMinTextSize,d=n(14575),h=n(53581).getRotationAngle,p=d.computeTransform,v=d.transformInsideText,m=n(29969).styleOne,g=n(16688).resizeText,y=n(83523),b=n(7055),x=n(2791);function w(e,n,c,f){var d=e._context.staticPlot,g=e._fullLayout,w=!g.uniformtext.mode&&x.hasTransition(f),k=r.select(c).selectAll("g.slice"),S=n[0],T=S.trace,A=S.hierarchy,E=x.findEntryWithLevel(A,T.level),C=x.getMaxDepth(T),M=g._size,O=T.domain,P=M.w*(O.x[1]-O.x[0]),L=M.h*(O.y[1]-O.y[0]),I=.5*Math.min(P,L),R=S.cx=M.l+M.w*(O.x[1]+O.x[0])/2,D=S.cy=M.t+M.h*(1-O.y[0])-L/2;if(!E)return k.remove();var F=null,N={};w&&k.each((function(e){N[x.getPtId(e)]={rpx0:e.rpx0,rpx1:e.rpx1,x0:e.x0,x1:e.x1,transform:e.transform},!F&&x.isEntry(e)&&(F=e)}));var z=function(e){return i.partition().size([2*Math.PI,e.height+1])(e)}(E).descendants(),j=E.height+1,B=0,U=C;S.hasMultipleRoots&&x.isHierarchyRoot(E)&&(z=z.slice(1),j-=1,B=1,U+=1),z=z.filter((function(e){return e.y1<=U}));var H=h(T.rotation);H&&z.forEach((function(e){e.x0+=H,e.x1+=H}));var $=Math.min(j,C),V=function(e){return(e-B)/$*I},W=function(e,t){return[e*Math.cos(t),-e*Math.sin(t)]},q=function(e){return s.pathAnnulus(e.rpx0,e.rpx1,e.x0,e.x1,R,D)},G=function(e){return R+_(e)[0]*(e.transform.rCenter||0)+(e.transform.x||0)},Z=function(e){return D+_(e)[1]*(e.transform.rCenter||0)+(e.transform.y||0)};(k=k.data(z,x.getPtId)).enter().append("g").classed("slice",!0),w?k.exit().transition().each((function(){var e=r.select(this);e.select("path.surface").transition().attrTween("d",(function(e){var t=function(e){var t,n=x.getPtId(e),r=N[n],i=N[x.getPtId(E)];if(i){var o=(e.x1>i.x1?2*Math.PI:0)+H;t=e.rpx1Y?2*Math.PI:0)+H;t={x0:i,x1:i}}else t={rpx0:I,rpx1:I},s.extendFlat(t,J(e));else t={rpx0:0,rpx1:0};else t={x0:H,x1:H};return a(t,r)}(e);return function(e){return q(t(e))}})):f.attr("d",q),c.call(y,E,e,n,{eventDataKeys:b.eventDataKeys,transitionTime:b.CLICK_TRANSITION_TIME,transitionEasing:b.CLICK_TRANSITION_EASING}).call(x.setSliceCursor,e,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:e._transitioning}),f.call(m,i,T,e);var h=s.ensureSingle(c,"g","slicetext"),_=s.ensureSingle(h,"text","",(function(e){e.attr("data-notex",1)})),k=s.ensureUniformFontSize(e,x.determineTextFont(T,i,g.font));_.text(t.formatSliceLabel(i,E,T,n,g)).classed("slicetext",!0).attr("text-anchor","middle").call(o.font,k).call(l.convertToTspans,e);var A=o.bBox(_.node());i.transform=v(A,i,S),i.transform.targetX=G(i),i.transform.targetY=Z(i);var C=function(e,t){var n=e.transform;return p(n,t),n.fontSize=k.size,u(T.type,n,g),s.getTextTransform(n)};w?_.transition().attrTween("transform",(function(e){var t=function(e){var t,n=N[x.getPtId(e)],r=e.transform;if(n)t=n;else if(t={rpx1:e.rpx1,transform:{textPosAngle:r.textPosAngle,scale:0,rotate:r.rotate,rCenter:r.rCenter,x:r.x,y:r.y}},F)if(e.parent)if(Y){var i=e.x1>Y?2*Math.PI:0;t.x0=t.x1=i}else s.extendFlat(t,J(e));else t.x0=t.x1=H;else t.x0=t.x1=H;var o=a(t.transform.textPosAngle,e.transform.textPosAngle),l=a(t.rpx1,e.rpx1),c=a(t.x0,e.x0),f=a(t.x1,e.x1),d=a(t.transform.scale,r.scale),h=a(t.transform.rotate,r.rotate),p=0===r.rCenter?3:0===t.transform.rCenter?1/3:1,v=a(t.transform.rCenter,r.rCenter),m=function(e){return v(Math.pow(e,p))};return function(e){var t=l(e),n=c(e),i=f(e),a=m(e),s={pxmid:W(t,(n+i)/2),rpx1:t,transform:{textPosAngle:o(e),rCenter:a,x:r.x,y:r.y}};return u(T.type,r,g),{transform:{targetX:G(s),targetY:Z(s),scale:d(e),rotate:h(e),rCenter:a}}}}(e);return function(e){return C(t(e),A)}})):_.attr("transform",C(i,A))}))}function _(e){return function(e,t){return[e*Math.sin(t),-e*Math.cos(t)]}(e.rpx1,e.transform.textPosAngle)}t.plot=function(e,t,n,i){var a,o,s=e._fullLayout,l=s._sunburstlayer,c=!n,u=!s.uniformtext.mode&&x.hasTransition(n);f("sunburst",s),(a=l.selectAll("g.trace.sunburst").data(t,(function(e){return e[0].trace.uid}))).enter().append("g").classed("trace",!0).classed("sunburst",!0).attr("stroke-linejoin","round"),a.order(),u?(i&&(o=i()),r.transition().duration(n.duration).ease(n.easing).each("end",(function(){o&&o()})).each("interrupt",(function(){o&&o()})).each((function(){l.selectAll("g.trace").each((function(t){w(e,t,this,n)}))}))):(a.each((function(t){w(e,t,this,n)})),s.uniformtext.mode&&g(e,s._sunburstlayer.selectAll(".trace"),"sunburst")),c&&a.exit().remove()},t.formatSliceLabel=function(e,t,n,r,i){var a=n.texttemplate,o=n.textinfo;if(!a&&(!o||"none"===o))return"";var l=i.separators,c=r[0],u=e.data.data,f=c.hierarchy,d=x.isHierarchyRoot(e),h=x.getParent(f,e),p=x.getValue(e);if(!a){var v,m=o.split("+"),g=function(e){return-1!==m.indexOf(e)},y=[];if(g("label")&&u.label&&y.push(u.label),u.hasOwnProperty("v")&&g("value")&&y.push(x.formatValue(u.v,l)),!d){g("current path")&&y.push(x.getPath(e.data));var b=0;g("percent parent")&&b++,g("percent entry")&&b++,g("percent root")&&b++;var w=b>1;if(b){var _,k=function(e){v=x.formatPercent(_,l),w&&(v+=" of "+e),y.push(v)};g("percent parent")&&!d&&(_=p/x.getValue(h),k("parent")),g("percent entry")&&(_=p/x.getValue(t),k("entry")),g("percent root")&&(_=p/x.getValue(f),k("root"))}}return g("text")&&(v=s.castOption(n,u.i,"text"),s.isValidTextValue(v)&&y.push(v)),y.join("
")}var S=s.castOption(n,u.i,"texttemplate");if(!S)return"";var T={};u.label&&(T.label=u.label),u.hasOwnProperty("v")&&(T.value=u.v,T.valueLabel=x.formatValue(u.v,l)),T.currentPath=x.getPath(e.data),d||(T.percentParent=p/x.getValue(h),T.percentParentLabel=x.formatPercent(T.percentParent,l),T.parent=x.getPtLabel(h)),T.percentEntry=p/x.getValue(t),T.percentEntryLabel=x.formatPercent(T.percentEntry,l),T.entry=x.getPtLabel(t),T.percentRoot=p/x.getValue(f),T.percentRootLabel=x.formatPercent(T.percentRoot,l),T.root=x.getPtLabel(f),u.hasOwnProperty("color")&&(T.color=u.color);var A=s.castOption(n,u.i,"text");return(s.isValidTextValue(A)||""===A)&&(T.text=A),T.customdata=s.castOption(n,u.i,"customdata"),s.texttemplateString(S,T,i._d3locale,T,n._meta||{})}},29969:function(e,t,n){"use strict";var r=n(39898),i=n(7901),a=n(71828),o=n(72597).resizeText,s=n(43467);function l(e,t,n,r){var o=t.data.data,l=!t.children,c=o.i,u=a.castOption(n,c,"marker.line.color")||i.defaultLine,f=a.castOption(n,c,"marker.line.width")||0;e.call(s,t,n,r).style("stroke-width",f).call(i.stroke,u).style("opacity",l?n.leaf.opacity:null)}e.exports={style:function(e){var t=e._fullLayout._sunburstlayer.selectAll(".trace");o(e,t,"sunburst"),t.each((function(t){var n=r.select(this),i=t[0].trace;n.style("opacity",i.opacity),n.selectAll("path.surface").each((function(t){r.select(this).call(l,t,i,e)}))}))},styleOne:l}},54532:function(e,t,n){"use strict";var r=n(7901),i=n(50693),a=n(12663).axisHoverFormat,o=n(5386).fF,s=n(9012),l=n(1426).extendFlat,c=n(30962).overrideAll;function u(e){return{show:{valType:"boolean",dflt:!1},start:{valType:"number",dflt:null,editType:"plot"},end:{valType:"number",dflt:null,editType:"plot"},size:{valType:"number",dflt:null,min:0,editType:"plot"},project:{x:{valType:"boolean",dflt:!1},y:{valType:"boolean",dflt:!1},z:{valType:"boolean",dflt:!1}},color:{valType:"color",dflt:r.defaultLine},usecolormap:{valType:"boolean",dflt:!1},width:{valType:"number",min:1,max:16,dflt:2},highlight:{valType:"boolean",dflt:!0},highlightcolor:{valType:"color",dflt:r.defaultLine},highlightwidth:{valType:"number",min:1,max:16,dflt:2}}}var f=e.exports=c(l({z:{valType:"data_array"},x:{valType:"data_array"},y:{valType:"data_array"},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:o(),xhoverformat:a("x"),yhoverformat:a("y"),zhoverformat:a("z"),connectgaps:{valType:"boolean",dflt:!1,editType:"calc"},surfacecolor:{valType:"data_array"}},i("",{colorAttr:"z or surfacecolor",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:"calc"}),{contours:{x:u(),y:u(),z:u()},hidesurface:{valType:"boolean",dflt:!1},lightposition:{x:{valType:"number",min:-1e5,max:1e5,dflt:10},y:{valType:"number",min:-1e5,max:1e5,dflt:1e4},z:{valType:"number",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:"number",min:0,max:1,dflt:.8},diffuse:{valType:"number",min:0,max:1,dflt:.8},specular:{valType:"number",min:0,max:2,dflt:.05},roughness:{valType:"number",min:0,max:1,dflt:.5},fresnel:{valType:"number",min:0,max:5,dflt:.2}},opacity:{valType:"number",min:0,max:1,dflt:1},opacityscale:{valType:"any",editType:"calc"},_deprecated:{zauto:l({},i.zauto,{}),zmin:l({},i.zmin,{}),zmax:l({},i.zmax,{})},hoverinfo:l({},s.hoverinfo),showlegend:l({},s.showlegend,{dflt:!1})}),"calc","nested");f.x.editType=f.y.editType=f.z.editType="calc+clearAxisTypes",f.transforms=void 0},18396:function(e,t,n){"use strict";var r=n(78803);e.exports=function(e,t){t.surfacecolor?r(e,t,{vals:t.surfacecolor,containerStr:"",cLetter:"c"}):r(e,t,{vals:t.z,containerStr:"",cLetter:"c"})}},43768:function(e,t,n){"use strict";var r=n(9330).gl_surface3d,i=n(9330).ndarray,a=n(9330).ndarray_linear_interpolate.d2,o=n(824),s=n(43907),l=n(71828).isArrayOrTypedArray,c=n(81697).parseColorScale,u=n(78614),f=n(21081).extractOpts;function d(e,t,n){this.scene=e,this.uid=n,this.surface=t,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var h=d.prototype;h.getXat=function(e,t,n,r){var i=l(this.data.x)?l(this.data.x[0])?this.data.x[t][e]:this.data.x[e]:e;return void 0===n?i:r.d2l(i,0,n)},h.getYat=function(e,t,n,r){var i=l(this.data.y)?l(this.data.y[0])?this.data.y[t][e]:this.data.y[t]:t;return void 0===n?i:r.d2l(i,0,n)},h.getZat=function(e,t,n,r){var i=this.data.z[t][e];return null===i&&this.data.connectgaps&&this.data._interpolatedZ&&(i=this.data._interpolatedZ[t][e]),void 0===n?i:r.d2l(i,0,n)},h.handlePick=function(e){if(e.object===this.surface){var t=(e.data.index[0]-1)/this.dataScaleX-1,n=(e.data.index[1]-1)/this.dataScaleY-1,r=Math.max(Math.min(Math.round(t),this.data.z[0].length-1),0),i=Math.max(Math.min(Math.round(n),this.data._ylength-1),0);e.index=[r,i],e.traceCoordinate=[this.getXat(r,i),this.getYat(r,i),this.getZat(r,i)],e.dataCoordinate=[this.getXat(r,i,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(r,i,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(r,i,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var a=0;a<3;a++){var o=e.dataCoordinate[a];null!==o&&void 0!==o&&(e.dataCoordinate[a]*=this.scene.dataScale[a])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[i]&&void 0!==s[i][r]?e.textLabel=s[i][r]:e.textLabel=s||"",e.data.dataCoordinate=e.dataCoordinate.slice(),this.surface.highlight(e.data),this.scene.glplot.spikes.position=e.dataCoordinate,!0}};var p=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function v(e,t){if(e0){n=p[r];break}return n}function y(e,t){if(!(e<1||t<1)){for(var n=m(e),r=m(t),i=1,a=0;aw;)n--,n/=g(n),++n1?r:1},h.refineCoords=function(e){for(var t=this.dataScaleX,n=this.dataScaleY,r=e[0].shape[0],a=e[0].shape[1],o=0|Math.floor(e[0].shape[0]*t+1),s=0|Math.floor(e[0].shape[1]*n+1),l=1+r+1,c=1+a+1,u=i(new Float32Array(l*c),[l,c]),f=[1/t,0,0,0,1/n,0,0,0,1],d=0;d0&&null!==this.contourStart[e]&&null!==this.contourEnd[e]&&this.contourEnd[e]>this.contourStart[e]))for(i[e]=!0,t=this.contourStart[e];ta&&(this.minValues[t]=a),this.maxValues[t]",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:"cubic-out",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:"cubic-out",uplift:5,wrapSpacer:" ",wrapSplitCharacter:" ",cn:{table:"table",tableControlView:"table-control-view",scrollBackground:"scroll-background",yColumn:"y-column",columnBlock:"column-block",scrollAreaClip:"scroll-area-clip",scrollAreaClipRect:"scroll-area-clip-rect",columnBoundary:"column-boundary",columnBoundaryClippath:"column-boundary-clippath",columnBoundaryRect:"column-boundary-rect",columnCells:"column-cells",columnCell:"column-cell",cellRect:"cell-rect",cellText:"cell-text",cellTextHolder:"cell-text-holder",scrollbarKit:"scrollbar-kit",scrollbar:"scrollbar",scrollbarSlider:"scrollbar-slider",scrollbarGlyph:"scrollbar-glyph",scrollbarCaptureZone:"scrollbar-capture-zone"}}},51018:function(e,t,n){"use strict";var r=n(49850),i=n(1426).extendFlat,a=n(92770);function o(e){if(Array.isArray(e)){for(var t=0,n=0;n=t||c===e.length-1)&&(r[i]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},i+=a,s=c+1,a=0);return r}e.exports=function(e,t){var n=l(t.cells.values),h=function(e){return e.slice(t.header.values.length,e.length)},p=l(t.header.values);p.length&&!p[0].length&&(p[0]=[""],p=l(p));var v=p.concat(h(n).map((function(){return c((p[0]||[""]).length)}))),m=t.domain,g=Math.floor(e._fullLayout._size.w*(m.x[1]-m.x[0])),y=Math.floor(e._fullLayout._size.h*(m.y[1]-m.y[0])),b=t.header.values.length?v[0].map((function(){return t.header.height})):[r.emptyHeaderHeight],x=n.length?n[0].map((function(){return t.cells.height})):[],w=b.reduce(s,0),_=d(x,y-w+r.uplift),k=f(d(b,w),[]),S=f(_,k),T={},A=t._fullInput.columnorder.concat(h(n.map((function(e,t){return t})))),E=v.map((function(e,n){var r=Array.isArray(t.columnwidth)?t.columnwidth[Math.min(n,t.columnwidth.length-1)]:t.columnwidth;return a(r)?Number(r):1})),C=E.reduce(s,0);E=E.map((function(e){return e/C*g}));var M=Math.max(o(t.header.line.width),o(t.cells.line.width)),O={key:t.uid+e._context.staticPlot,translateX:m.x[0]*e._fullLayout._size.w,translateY:e._fullLayout._size.h*(1-m.y[1]),size:e._fullLayout._size,width:g,maxLineWidth:M,height:y,columnOrder:A,groupHeight:y,rowBlocks:S,headerRowBlocks:k,scrollY:0,cells:i({},t.cells,{values:n}),headerCells:i({},t.header,{values:v}),gdColumns:v.map((function(e){return e[0]})),gdColumnsOriginalOrder:v.map((function(e){return e[0]})),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:v.map((function(e,t){var n=T[e];return T[e]=(n||0)+1,{key:e+"__"+T[e],label:e,specIndex:t,xIndex:A[t],xScale:u,x:void 0,calcdata:void 0,columnWidth:E[t]}}))};return O.columns.forEach((function(e){e.calcdata=O,e.x=u(e)})),O}},56269:function(e,t,n){"use strict";var r=n(1426).extendFlat;t.splitToPanels=function(e){var t=[0,0],n=r({},e,{key:"header",type:"header",page:0,prevPages:t,currentRepaint:[null,null],dragHandle:!0,values:e.calcdata.headerCells.values[e.specIndex],rowBlocks:e.calcdata.headerRowBlocks,calcdata:r({},e.calcdata,{cells:e.calcdata.headerCells})});return[r({},e,{key:"cells1",type:"cells",page:0,prevPages:t,currentRepaint:[null,null],dragHandle:!1,values:e.calcdata.cells.values[e.specIndex],rowBlocks:e.calcdata.rowBlocks}),r({},e,{key:"cells2",type:"cells",page:1,prevPages:t,currentRepaint:[null,null],dragHandle:!1,values:e.calcdata.cells.values[e.specIndex],rowBlocks:e.calcdata.rowBlocks}),n]},t.splitToCells=function(e){var t=function(e){var t=e.rowBlocks[e.page],n=t?t.rows[0].rowIndex:0,r=t?n+t.rows.length:0;return[n,r]}(e);return(e.values||[]).slice(t[0],t[1]).map((function(n,r){return{keyWithinBlock:r+("string"===typeof n&&n.match(/[<$&> ]/)?"_keybuster_"+Math.random():""),key:t[0]+r,column:e,calcdata:e.calcdata,page:e.page,rowBlocks:e.rowBlocks,value:n}}))}},39754:function(e,t,n){"use strict";var r=n(71828),i=n(44464),a=n(27670).c;e.exports=function(e,t,n,o){function s(n,a){return r.coerce(e,t,i,n,a)}a(t,o,s),s("columnwidth"),s("header.values"),s("header.format"),s("header.align"),s("header.prefix"),s("header.suffix"),s("header.height"),s("header.line.width"),s("header.line.color"),s("header.fill.color"),r.coerceFont(s,"header.font",r.extendFlat({},o.font)),function(e,t){for(var n=e.columnorder||[],r=e.header.values.length,i=n.slice(0,r),a=i.slice().sort((function(e,t){return e-t})),o=i.map((function(e){return a.indexOf(e)})),s=o.length;s/i),l=!o||s;e.mayHaveMarkup=o&&i.match(/[<&>]/);var c,u="string"===typeof(c=i)&&c.match(r.latexCheck);e.latex=u;var f,d,h=u?"":k(e.calcdata.cells.prefix,t,n)||"",p=u?"":k(e.calcdata.cells.suffix,t,n)||"",v=u?null:k(e.calcdata.cells.format,t,n)||null,m=h+(v?a(v)(e.value):e.value)+p;if(e.wrappingNeeded=!e.wrapped&&!l&&!u&&(f=_(m)),e.cellHeightMayIncrease=s||u||e.mayHaveMarkup||(void 0===f?_(m):f),e.needsConvertToTspans=e.mayHaveMarkup||e.wrappingNeeded||e.latex,e.wrappingNeeded){var g=(" "===r.wrapSplitCharacter?m.replace(/i&&r.push(a),i+=l}return r}(i,l,s);1===c.length&&(c[0]===i.length-1?c.unshift(c[0]-1):c.push(c[0]+1)),c[0]%2&&c.reverse(),t.each((function(e,t){e.page=c[t],e.scrollY=l})),t.attr("transform",(function(e){var t=D(e.rowBlocks,e.page)-e.scrollY;return u(0,t)})),e&&(O(e,n,t,c,r.prevPages,r,0),O(e,n,t,c,r.prevPages,r,1),b(n,e))}}function M(e,t,n,a){return function(o){var s=o.calcdata?o.calcdata:o,l=t.filter((function(e){return s.key===e.key})),c=n||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===a?s.scrollY+c*i.event.dy:a;var f=l.selectAll("."+r.cn.yColumn).selectAll("."+r.cn.columnBlock).filter(T);return C(e,f,l),s.scrollY===u}}function O(e,t,n,r,i,a,o){r[o]!==i[o]&&(clearTimeout(a.currentRepaint[o]),a.currentRepaint[o]=setTimeout((function(){var a=n.filter((function(e,t){return t===o&&r[t]!==i[t]}));x(e,t,a,n),i[o]=r[o]})))}function P(e,t,n,a){return function(){var o=i.select(t.parentNode);o.each((function(e){var t=e.fragments;o.selectAll("tspan.line").each((function(e,n){t[n].width=this.getComputedTextLength()}));var n,i,a=t[t.length-1].width,s=t.slice(0,-1),l=[],c=0,u=e.column.columnWidth-2*r.cellPad;for(e.value="";s.length;)c+(i=(n=s.shift()).width+a)>u&&(e.value+=l.join(r.wrapSpacer)+r.lineBreaker,l=[],c=0),l.push(n.text),c+=i;c&&(e.value+=l.join(r.wrapSpacer)),e.wrapped=!0})),o.selectAll("tspan.line").remove(),w(o.select("."+r.cn.cellText),n,e,a),i.select(t.parentNode.parentNode).call(R)}}function L(e,t,n,a,o){return function(){if(!o.settledY){var s=i.select(t.parentNode),l=z(o),c=o.key-l.firstRowIndex,f=l.rows[c].rowHeight,d=o.cellHeightMayIncrease?t.parentNode.getBoundingClientRect().height+2*r.cellPad:f,h=Math.max(d,f);h-l.rows[c].rowHeight&&(l.rows[c].rowHeight=h,e.selectAll("."+r.cn.columnCell).call(R),C(null,e.filter(T),0),b(n,a,!0)),s.attr("transform",(function(){var e=this,t=e.parentNode.getBoundingClientRect(),n=i.select(e.parentNode).select("."+r.cn.cellRect).node().getBoundingClientRect(),a=e.transform.baseVal.consolidate(),s=n.top-t.top+(a?a.matrix.f:r.cellPad);return u(I(o,i.select(e.parentNode).select("."+r.cn.cellTextHolder).node().getBoundingClientRect().width),s)})),o.settledY=!0}}}function I(e,t){switch(e.align){case"left":default:return r.cellPad;case"right":return e.column.columnWidth-(t||0)-r.cellPad;case"center":return(e.column.columnWidth-(t||0))/2}}function R(e){e.attr("transform",(function(e){var t=e.rowBlocks[0].auxiliaryBlocks.reduce((function(e,t){return e+F(t,1/0)}),0),n=F(z(e),e.key);return u(0,n+t)})).selectAll("."+r.cn.cellRect).attr("height",(function(e){return function(e,t){return e.rows[t-e.firstRowIndex]}(z(e),e.key).rowHeight}))}function D(e,t){for(var n=0,r=t-1;r>=0;r--)n+=N(e[r]);return n}function F(e,t){for(var n=0,r=0;r","<","|","/","\\"],dflt:">",editType:"plot"},thickness:{valType:"number",min:12,editType:"plot"},textfont:u({},s.textfont,{}),editType:"calc"},text:s.text,textinfo:l.textinfo,texttemplate:i({editType:"plot"},{keys:c.eventDataKeys.concat(["label","value"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:r({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:u({},s.outsidetextfont,{}),textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right"],dflt:"top left",editType:"plot"},sort:s.sort,root:l.root,domain:o({name:"treemap",trace:!0,editType:"calc"})}},78018:function(e,t,n){"use strict";var r=n(74875);t.name="treemap",t.plot=function(e,n,i,a){r.plotBasePlot(t.name,e,n,i,a)},t.clean=function(e,n,i,a){r.cleanBasePlot(t.name,e,n,i,a)}},65039:function(e,t,n){"use strict";var r=n(52147);t.y=function(e,t){return r.calc(e,t)},t.T=function(e){return r._runCrossTraceCalc("treemap",e)}},43473:function(e){"use strict";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:"poly",eventDataKeys:["currentPath","root","entry","percentRoot","percentEntry","percentParent"],gapWithPathbar:1}},91174:function(e,t,n){"use strict";var r=n(71828),i=n(45802),a=n(7901),o=n(27670).c,s=n(90769).handleText,l=n(97313).TEXTPAD,c=n(37434).handleMarkerDefaults,u=n(21081),f=u.hasColorscale,d=u.handleDefaults;e.exports=function(e,t,n,u){function h(n,a){return r.coerce(e,t,i,n,a)}var p=h("labels"),v=h("parents");if(p&&p.length&&v&&v.length){var m=h("values");m&&m.length?h("branchvalues"):h("count"),h("level"),h("maxdepth"),"squarify"===h("tiling.packing")&&h("tiling.squarifyratio"),h("tiling.flip"),h("tiling.pad");var g=h("text");h("texttemplate"),t.texttemplate||h("textinfo",Array.isArray(g)?"text+label":"label"),h("hovertext"),h("hovertemplate");var y=h("pathbar.visible");s(e,t,u,h,"auto",{hasPathbar:y,moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),h("textposition");var b=-1!==t.textposition.indexOf("bottom");c(e,t,u,h),(t._hasColorscale=f(e,"marker","colors")||(e.marker||{}).coloraxis)?d(e,t,u,h,{prefix:"marker.",cLetter:"c"}):h("marker.depthfade",!(t.marker.colors||[]).length);var x=2*t.textfont.size;h("marker.pad.t",b?x/4:x),h("marker.pad.l",x/4),h("marker.pad.r",x/4),h("marker.pad.b",b?x:x/4),h("marker.cornerradius"),t._hovered={marker:{line:{width:2,color:a.contrast(u.paper_bgcolor)}}},y&&(h("pathbar.thickness",t.pathbar.textfont.size+2*l),h("pathbar.side"),h("pathbar.edgeshape")),h("sort"),h("root.color"),o(t,u,h),t._length=null}else t.visible=!1}},80694:function(e,t,n){"use strict";var r=n(39898),i=n(2791),a=n(72597).clearMinTextSize,o=n(16688).resizeText,s=n(46650);e.exports=function(e,t,n,l,c){var u,f,d=c.type,h=c.drawDescendants,p=e._fullLayout,v=p["_"+d+"layer"],m=!n;a(d,p),(u=v.selectAll("g.trace."+d).data(t,(function(e){return e[0].trace.uid}))).enter().append("g").classed("trace",!0).classed(d,!0),u.order(),!p.uniformtext.mode&&i.hasTransition(n)?(l&&(f=l()),r.transition().duration(n.duration).ease(n.easing).each("end",(function(){f&&f()})).each("interrupt",(function(){f&&f()})).each((function(){v.selectAll("g.trace").each((function(t){s(e,t,this,n,h)}))}))):(u.each((function(t){s(e,t,this,n,h)})),p.uniformtext.mode&&o(e,v.selectAll(".trace"),d)),m&&u.exit().remove()}},66209:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=n(91424),o=n(63893),s=n(37210),l=n(96362).styleOne,c=n(43473),u=n(2791),f=n(83523),d=!0;e.exports=function(e,t,n,h,p){var v=p.barDifY,m=p.width,g=p.height,y=p.viewX,b=p.viewY,x=p.pathSlice,w=p.toMoveInsideSlice,_=p.strTransform,k=p.hasTransition,S=p.handleSlicesExit,T=p.makeUpdateSliceInterpolator,A=p.makeUpdateTextInterpolator,E={},C=e._context.staticPlot,M=e._fullLayout,O=t[0],P=O.trace,L=O.hierarchy,I=m/P._entryDepth,R=u.listPath(n.data,"id"),D=s(L.copy(),[m,g],{packing:"dice",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(D=D.filter((function(e){var t=R.indexOf(e.data.id);return-1!==t&&(e.x0=I*t,e.x1=I*(t+1),e.y0=v,e.y1=v+g,e.onPathbar=!0,!0)}))).reverse(),(h=h.data(D,u.getPtId)).enter().append("g").classed("pathbar",!0),S(h,d,E,[m,g],x),h.order();var F=h;k&&(F=F.transition().each("end",(function(){var t=r.select(this);u.setSliceCursor(t,e,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})}))),F.each((function(s){s._x0=y(s.x0),s._x1=y(s.x1),s._y0=b(s.y0),s._y1=b(s.y1),s._hoverX=y(s.x1-Math.min(m,g)/2),s._hoverY=b(s.y1-g/2);var h=r.select(this),p=i.ensureSingle(h,"path","surface",(function(e){e.style("pointer-events",C?"none":"all")}));k?p.transition().attrTween("d",(function(e){var t=T(e,d,E,[m,g]);return function(e){return x(t(e))}})):p.attr("d",x),h.call(f,n,e,t,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,e,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:e._transitioning}),p.call(l,s,P,e,{hovered:!1}),s._text=(u.getPtLabel(s)||"").split("
").join(" ")||"";var v=i.ensureSingle(h,"g","slicetext"),S=i.ensureSingle(v,"text","",(function(e){e.attr("data-notex",1)})),O=i.ensureUniformFontSize(e,u.determineTextFont(P,s,M.font,{onPathbar:!0}));S.text(s._text||" ").classed("slicetext",!0).attr("text-anchor","start").call(a.font,O).call(o.convertToTspans,e),s.textBB=a.bBox(S.node()),s.transform=w(s,{fontSize:O.size,onPathbar:!0}),s.transform.fontSize=O.size,k?S.transition().attrTween("transform",(function(e){var t=A(e,d,E,[m,g]);return function(e){return _(t(e))}})):S.attr("transform",_(s))}))}},52583:function(e,t,n){"use strict";var r=n(39898),i=n(71828),a=n(91424),o=n(63893),s=n(37210),l=n(96362).styleOne,c=n(43473),u=n(2791),f=n(83523),d=n(24714).formatSliceLabel,h=!1;e.exports=function(e,t,n,p,v){var m=v.width,g=v.height,y=v.viewX,b=v.viewY,x=v.pathSlice,w=v.toMoveInsideSlice,_=v.strTransform,k=v.hasTransition,S=v.handleSlicesExit,T=v.makeUpdateSliceInterpolator,A=v.makeUpdateTextInterpolator,E=v.prevEntry,C=e._context.staticPlot,M=e._fullLayout,O=t[0].trace,P=-1!==O.textposition.indexOf("left"),L=-1!==O.textposition.indexOf("right"),I=-1!==O.textposition.indexOf("bottom"),R=!I&&!O.marker.pad.t||I&&!O.marker.pad.b,D=s(n,[m,g],{packing:O.tiling.packing,squarifyratio:O.tiling.squarifyratio,flipX:O.tiling.flip.indexOf("x")>-1,flipY:O.tiling.flip.indexOf("y")>-1,pad:{inner:O.tiling.pad,top:O.marker.pad.t,left:O.marker.pad.l,right:O.marker.pad.r,bottom:O.marker.pad.b}}).descendants(),F=1/0,N=-1/0;D.forEach((function(e){var t=e.depth;t>=O._maxDepth?(e.x0=e.x1=(e.x0+e.x1)/2,e.y0=e.y1=(e.y0+e.y1)/2):(F=Math.min(F,t),N=Math.max(N,t))})),p=p.data(D,u.getPtId),O._maxVisibleLayers=isFinite(N)?N-F+1:0,p.enter().append("g").classed("slice",!0),S(p,h,{},[m,g],x),p.order();var z=null;if(k&&E){var j=u.getPtId(E);p.each((function(e){null===z&&u.getPtId(e)===j&&(z={x0:e.x0,x1:e.x1,y0:e.y0,y1:e.y1})}))}var B=function(){return z||{x0:0,x1:m,y0:0,y1:g}},U=p;return k&&(U=U.transition().each("end",(function(){var t=r.select(this);u.setSliceCursor(t,e,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),U.each((function(s){var p=u.isHeader(s,O);s._x0=y(s.x0),s._x1=y(s.x1),s._y0=b(s.y0),s._y1=b(s.y1),s._hoverX=y(s.x1-O.marker.pad.r),s._hoverY=b(I?s.y1-O.marker.pad.b/2:s.y0+O.marker.pad.t/2);var v=r.select(this),S=i.ensureSingle(v,"path","surface",(function(e){e.style("pointer-events",C?"none":"all")}));k?S.transition().attrTween("d",(function(e){var t=T(e,h,B(),[m,g]);return function(e){return x(t(e))}})):S.attr("d",x),v.call(f,n,e,t,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,e,{isTransitioning:e._transitioning}),S.call(l,s,O,e,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text="":s._text=p?R?"":u.getPtLabel(s)||"":d(s,n,O,t,M)||"";var E=i.ensureSingle(v,"g","slicetext"),D=i.ensureSingle(E,"text","",(function(e){e.attr("data-notex",1)})),F=i.ensureUniformFontSize(e,u.determineTextFont(O,s,M.font));D.text(s._text||" ").classed("slicetext",!0).attr("text-anchor",L?"end":P||p?"start":"middle").call(a.font,F).call(o.convertToTspans,e),s.textBB=a.bBox(D.node()),s.transform=w(s,{fontSize:F.size,isHeader:p}),s.transform.fontSize=F.size,k?D.transition().attrTween("transform",(function(e){var t=A(e,h,B(),[m,g]);return function(e){return _(t(e))}})):D.attr("transform",_(s))})),z}},14102:function(e){"use strict";e.exports=function e(t,n,r){var i;r.swapXY&&(i=t.x0,t.x0=t.y0,t.y0=i,i=t.x1,t.x1=t.y1,t.y1=i),r.flipX&&(i=t.x0,t.x0=n[0]-t.x1,t.x1=n[0]-i),r.flipY&&(i=t.y0,t.y0=n[1]-t.y1,t.y1=n[1]-i);var a=t.children;if(a)for(var o=0;o-1?O+I:-(L+I):0,D={x0:P,x1:P,y0:R,y1:R+L},F=function(e,t,n){var r=g.tiling.pad,i=function(e){return e-r<=t.x0},a=function(e){return e+r>=t.x1},o=function(e){return e-r<=t.y0},s=function(e){return e+r>=t.y1};return e.x0===t.x0&&e.x1===t.x1&&e.y0===t.y0&&e.y1===t.y1?{x0:e.x0,x1:e.x1,y0:e.y0,y1:e.y1}:{x0:i(e.x0-r)?0:a(e.x0-r)?n[0]:e.x0,x1:i(e.x1+r)?0:a(e.x1+r)?n[0]:e.x1,y0:o(e.y0-r)?0:s(e.y0-r)?n[1]:e.y0,y1:o(e.y1+r)?0:s(e.y1+r)?n[1]:e.y1}},N=null,z={},j={},B=null,U=function(e,t){return t?z[d(e)]:j[d(e)]},H=function(e,t,n,r){if(t)return z[d(b)]||D;var i=j[g.level]||n;return function(e){return e.data.depth-x.data.depth=(r-=(y?te:te.r)-s)){var h=(n+r)/2;n=h,r=h}var p;oe?i<(p=a-(y?te:te.b))&&p"===ee?(l.x-=a,c.x-=a,u.x-=a,f.x-=a):"/"===ee?(u.x-=a,f.x-=a,o.x-=a/2,s.x-=a/2):"\\"===ee?(l.x-=a,c.x-=a,o.x-=a/2,s.x-=a/2):"<"===ee&&(o.x-=a,s.x-=a),Q(l),Q(f),Q(o),Q(c),Q(u),Q(s),"M"+X(l.x,l.y)+"L"+X(c.x,c.y)+"L"+X(s.x,s.y)+"L"+X(u.x,u.y)+"L"+X(f.x,f.y)+"L"+X(o.x,o.y)+"Z"},toMoveInsideSlice:se,makeUpdateSliceInterpolator:ce,makeUpdateTextInterpolator:ue,handleSlicesExit:fe,hasTransition:T,strTransform:de}):_.remove()}},96362:function(e,t,n){"use strict";var r=n(39898),i=n(7901),a=n(71828),o=n(2791),s=n(72597).resizeText,l=n(43467);function c(e,t,n,r,s){var c,u,f=(s||{}).hovered,d=t.data.data,h=d.i,p=d.color,v=o.isHierarchyRoot(t),m=1;if(f)c=n._hovered.marker.line.color,u=n._hovered.marker.line.width;else if(v&&p===n.root.color)m=100,c="rgba(0,0,0,0)",u=0;else if(c=a.castOption(n,h,"marker.line.color")||i.defaultLine,u=a.castOption(n,h,"marker.line.width")||0,!n._hasColorscale&&!t.onPathbar){var g=n.marker.depthfade;if(g){var y,b=i.combine(i.addOpacity(n._backgroundColor,.75),p);if(!0===g){var x=o.getMaxDepth(n);y=isFinite(x)?o.isLeaf(t)?0:n._maxVisibleLayers-(t.data.depth-n._entryDepth):t.data.height+1}else y=t.data.depth-n._entryDepth,n._atRootLevel||y++;if(y>0)for(var w=0;w0){var x,w,_,k,S,T=e.xa,A=e.ya;"h"===p.orientation?(S=t,x="y",_=A,w="x",k=T):(S=n,x="x",_=T,w="y",k=A);var E=h[e.index];if(S>=E.span[0]&&S<=E.span[1]){var C=i.extendFlat({},e),M=k.c2p(S,!0),O=s.getKdeValue(E,p,S),P=s.getPositionOnKdePath(E,p,M),L=_._offset,I=_._length;C[x+"0"]=P[0],C[x+"1"]=P[1],C[w+"0"]=C[w+"1"]=M,C[w+"Label"]=w+": "+a.hoverLabelText(k,S,p[w+"hoverformat"])+", "+h[0].t.labels.kde+" "+O.toFixed(3);for(var R=0,D=0;D")),u.color=function(e,t){var n=e[t.dir].marker,r=n.color,a=n.line.color,o=n.line.width;return i(r)?r:i(a)&&o?a:void 0}(d,m),[u]}function S(e){return r(v,e,d[p+"hoverformat"])}}},19990:function(e,t,n){"use strict";e.exports={attributes:n(43037),layoutAttributes:n(13494),supplyDefaults:n(83266).supplyDefaults,crossTraceDefaults:n(83266).crossTraceDefaults,supplyLayoutDefaults:n(5176),calc:n(52752),crossTraceCalc:n(70766),plot:n(30436),style:n(55750).style,hoverPoints:n(61326),eventData:n(58593),selectPoints:n(81974),moduleType:"trace",name:"waterfall",basePlotModule:n(93612),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},13494:function(e){"use strict";e.exports={waterfallmode:{valType:"enumerated",values:["group","overlay"],dflt:"group",editType:"calc"},waterfallgap:{valType:"number",min:0,max:1,editType:"calc"},waterfallgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},5176:function(e,t,n){"use strict";var r=n(71828),i=n(13494);e.exports=function(e,t,n){var a=!1;function o(n,a){return r.coerce(e,t,i,n,a)}for(var s=0;s0&&(m+=d?"M"+f[0]+","+p[1]+"V"+p[0]:"M"+f[1]+","+p[0]+"H"+f[0]),"between"!==h&&(n.isSum||s path").each((function(e){if(!e.isBlank){var t=s[e.dir].marker;r.select(this).call(a.fill,t.color).call(a.stroke,t.line.color).call(i.dashLine,t.line.dash,t.line.width).style("opacity",s.selectedpoints&&!e.selected?o:1)}})),c(n,s,e),n.selectAll(".lines").each((function(){var e=s.connector.line;i.lineGroupStyle(r.select(this).selectAll("path"),e.width,e.color,e.dash)}))}))}}},82887:function(e,t,n){"use strict";var r=n(89298),i=n(71828),a=n(86281),o=n(79344).p,s=n(50606).BADNUM;t.moduleType="transform",t.name="aggregate";var l=t.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc"},groups:{valType:"string",strict:!0,noBlank:!0,arrayOk:!0,dflt:"x",editType:"calc"},aggregations:{_isLinkedToArray:"aggregation",target:{valType:"string",editType:"calc"},func:{valType:"enumerated",values:["count","sum","avg","median","mode","rms","stddev","min","max","first","last","change","range"],dflt:"first",editType:"calc"},funcmode:{valType:"enumerated",values:["sample","population"],dflt:"sample",editType:"calc"},enabled:{valType:"boolean",dflt:!0,editType:"calc"},editType:"calc"},editType:"calc"},c=l.aggregations;function u(e,t,n,a){if(a.enabled){for(var o=a.target,l=i.nestedProperty(t,o),c=l.get(),u=function(e,t){var n=e.func,r=t.d2c,a=t.c2d;switch(n){case"count":return f;case"first":return d;case"last":return h;case"sum":return function(e,t){for(var n=0,i=0;ii&&(i=u,o=c)}}return i?a(o):s};case"rms":return function(e,t){for(var n=0,i=0,o=0;o":return function(e){return d(e)>s};case">=":return function(e){return d(e)>=s};case"[]":return function(e){var t=d(e);return t>=s[0]&&t<=s[1]};case"()":return function(e){var t=d(e);return t>s[0]&&t=s[0]&&ts[0]&&t<=s[1]};case"][":return function(e){var t=d(e);return t<=s[0]||t>=s[1]};case")(":return function(e){var t=d(e);return ts[1]};case"](":return function(e){var t=d(e);return t<=s[0]||t>s[1]};case")[":return function(e){var t=d(e);return t=s[1]};case"{}":return function(e){return-1!==s.indexOf(d(e))};case"}{":return function(e){return-1===s.indexOf(d(e))}}}(n,a.getDataToCoordFunc(e,t,s,i),d),b={},x={},w=0;p?(m=function(e){b[e.astr]=r.extendDeep([],e.get()),e.set(new Array(f))},g=function(e,t){var n=b[e.astr][t];e.get()[t]=n}):(m=function(e){b[e.astr]=r.extendDeep([],e.get()),e.set([])},g=function(e,t){var n=b[e.astr][t];e.get().push(n)}),S(m);for(var _=o(t.transforms,n),k=0;k1?"%{group} (%{trace})":"%{group}");var l=e.styles,c=o.styles=[];if(l)for(a=0;ad)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,p.prototype),t}function p(e,t,n){if("number"===typeof e){if("string"===typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return g(e)}return v(e,t,n)}function v(e,t,n){if("string"===typeof e)return function(e,t){if("string"===typeof t&&""!==t||(t="utf8"),!p.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var n=0|w(e,t),r=h(n),i=r.write(e,t);return i!==n&&(r=r.slice(0,i)),r}(e,t);if(ArrayBuffer.isView(e))return function(e){if(te(e,Uint8Array)){var t=new Uint8Array(e);return b(t.buffer,t.byteOffset,t.byteLength)}return y(e)}(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+l(e));if(te(e,ArrayBuffer)||e&&te(e.buffer,ArrayBuffer))return b(e,t,n);if("undefined"!==typeof SharedArrayBuffer&&(te(e,SharedArrayBuffer)||e&&te(e.buffer,SharedArrayBuffer)))return b(e,t,n);if("number"===typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=e.valueOf&&e.valueOf();if(null!=r&&r!==e)return p.from(r,t,n);var i=function(e){if(p.isBuffer(e)){var t=0|x(e.length),n=h(t);return 0===n.length||e.copy(n,0,0,t),n}return void 0!==e.length?"number"!==typeof e.length||ne(e.length)?h(0):y(e):"Buffer"===e.type&&Array.isArray(e.data)?y(e.data):void 0}(e);if(i)return i;if("undefined"!==typeof Symbol&&null!=Symbol.toPrimitive&&"function"===typeof e[Symbol.toPrimitive])return p.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+l(e))}function m(e){if("number"!==typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function g(e){return m(e),h(e<0?0:0|x(e))}function y(e){for(var t=e.length<0?0:0|x(e.length),n=h(t),r=0;r=d)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+d.toString(16)+" bytes");return 0|e}function w(e,t){if(p.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||te(e,ArrayBuffer))return e.byteLength;if("string"!==typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+l(e));var n=e.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return J(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return Q(e).length;default:if(i)return r?-1:J(e).length;t=(""+t).toLowerCase(),i=!0}}function _(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return F(this,t,n);case"utf8":case"utf-8":return L(this,t,n);case"ascii":return R(this,t,n);case"latin1":case"binary":return D(this,t,n);case"base64":return P(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return N(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function k(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function S(e,t,n,r,i){if(0===e.length)return-1;if("string"===typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),ne(n=+n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"===typeof t&&(t=p.from(t,r)),p.isBuffer(t))return 0===t.length?-1:T(e,t,n,r,i);if("number"===typeof t)return t&=255,"function"===typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):T(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function T(e,t,n,r,i){var a,o=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;o=2,s/=2,l/=2,n/=2}function c(e,t){return 1===o?e[t]:e.readUInt16BE(t*o)}if(i){var u=-1;for(a=n;as&&(n=s-l),a=n;a>=0;a--){for(var f=!0,d=0;di&&(r=i):r=i;var a,o=t.length;for(r>o/2&&(r=o/2),a=0;a>8,i=n%256,a.push(i),a.push(r);return a}(t,e.length-n),e,n,r)}function P(e,t,n){return 0===t&&n===e.length?c.fromByteArray(e):c.fromByteArray(e.slice(t,n))}function L(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i239?4:a>223?3:a>191?2:1;if(i+s<=n){var l=void 0,c=void 0,u=void 0,f=void 0;switch(s){case 1:a<128&&(o=a);break;case 2:128===(192&(l=e[i+1]))&&(f=(31&a)<<6|63&l)>127&&(o=f);break;case 3:l=e[i+1],c=e[i+2],128===(192&l)&&128===(192&c)&&(f=(15&a)<<12|(63&l)<<6|63&c)>2047&&(f<55296||f>57343)&&(o=f);break;case 4:l=e[i+1],c=e[i+2],u=e[i+3],128===(192&l)&&128===(192&c)&&128===(192&u)&&(f=(15&a)<<18|(63&l)<<12|(63&c)<<6|63&u)>65535&&f<1114112&&(o=f)}}null===o?(o=65533,s=1):o>65535&&(o-=65536,r.push(o>>>10&1023|55296),o=56320|1023&o),r.push(o),i+=s}return function(e){var t=e.length;if(t<=I)return String.fromCharCode.apply(String,e);for(var n="",r=0;rr.length?(p.isBuffer(a)||(a=p.from(a)),a.copy(r,i)):Uint8Array.prototype.set.call(r,a,i);else{if(!p.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,i)}i+=a.length}return r},p.byteLength=w,p.prototype._isBuffer=!0,p.prototype.swap16=function(){var e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tn&&(e+=" ... "),""},f&&(p.prototype[f]=p.prototype.inspect),p.prototype.compare=function(e,t,n,r,i){if(te(e,Uint8Array)&&(e=p.from(e,e.offset,e.byteLength)),!p.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+l(e));if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var a=(i>>>=0)-(r>>>=0),o=(n>>>=0)-(t>>>=0),s=Math.min(a,o),c=this.slice(r,i),u=e.slice(t,n),f=0;f>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-t;if((void 0===n||n>i)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var a=!1;;)switch(r){case"hex":return A(this,e,t,n);case"utf8":case"utf-8":return E(this,e,t,n);case"ascii":case"latin1":case"binary":return C(this,e,t,n);case"base64":return M(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return O(this,e,t,n);default:if(a)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),a=!0}},p.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var I=4096;function R(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;ir)&&(n=r);for(var i="",a=t;an)throw new RangeError("Trying to access beyond buffer length")}function j(e,t,n,r,i,a){if(!p.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}function B(e,t,n,r,i){Z(t,r,i,e,n,7);var a=Number(t&BigInt(4294967295));e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a;var o=Number(t>>BigInt(32)&BigInt(4294967295));return e[n++]=o,o>>=8,e[n++]=o,o>>=8,e[n++]=o,o>>=8,e[n++]=o,n}function U(e,t,n,r,i){Z(t,r,i,e,n,7);var a=Number(t&BigInt(4294967295));e[n+7]=a,a>>=8,e[n+6]=a,a>>=8,e[n+5]=a,a>>=8,e[n+4]=a;var o=Number(t>>BigInt(32)&BigInt(4294967295));return e[n+3]=o,o>>=8,e[n+2]=o,o>>=8,e[n+1]=o,o>>=8,e[n]=o,n+8}function H(e,t,n,r,i,a){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function $(e,t,n,r,i){return t=+t,n>>>=0,i||H(e,0,n,4),u.write(e,t,n,r,23,4),n+4}function V(e,t,n,r,i){return t=+t,n>>>=0,i||H(e,0,n,8),u.write(e,t,n,r,52,8),n+8}p.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||z(e,t,this.length);for(var r=this[e],i=1,a=0;++a>>=0,t>>>=0,n||z(e,t,this.length);for(var r=this[e+--t],i=1;t>0&&(i*=256);)r+=this[e+--t]*i;return r},p.prototype.readUint8=p.prototype.readUInt8=function(e,t){return e>>>=0,t||z(e,1,this.length),this[e]},p.prototype.readUint16LE=p.prototype.readUInt16LE=function(e,t){return e>>>=0,t||z(e,2,this.length),this[e]|this[e+1]<<8},p.prototype.readUint16BE=p.prototype.readUInt16BE=function(e,t){return e>>>=0,t||z(e,2,this.length),this[e]<<8|this[e+1]},p.prototype.readUint32LE=p.prototype.readUInt32LE=function(e,t){return e>>>=0,t||z(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},p.prototype.readUint32BE=p.prototype.readUInt32BE=function(e,t){return e>>>=0,t||z(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},p.prototype.readBigUInt64LE=ie((function(e){Y(e>>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||K(e,this.length-8);var r=t+this[++e]*Math.pow(2,8)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,24),i=this[++e]+this[++e]*Math.pow(2,8)+this[++e]*Math.pow(2,16)+n*Math.pow(2,24);return BigInt(r)+(BigInt(i)<>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||K(e,this.length-8);var r=t*Math.pow(2,24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+this[++e],i=this[++e]*Math.pow(2,24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+n;return(BigInt(r)<>>=0,t>>>=0,n||z(e,t,this.length);for(var r=this[e],i=1,a=0;++a=(i*=128)&&(r-=Math.pow(2,8*t)),r},p.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||z(e,t,this.length);for(var r=t,i=1,a=this[e+--r];r>0&&(i*=256);)a+=this[e+--r]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*t)),a},p.prototype.readInt8=function(e,t){return e>>>=0,t||z(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},p.prototype.readInt16LE=function(e,t){e>>>=0,t||z(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},p.prototype.readInt16BE=function(e,t){e>>>=0,t||z(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},p.prototype.readInt32LE=function(e,t){return e>>>=0,t||z(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},p.prototype.readInt32BE=function(e,t){return e>>>=0,t||z(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},p.prototype.readBigInt64LE=ie((function(e){Y(e>>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||K(e,this.length-8);var r=this[e+4]+this[e+5]*Math.pow(2,8)+this[e+6]*Math.pow(2,16)+(n<<24);return(BigInt(r)<>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||K(e,this.length-8);var r=(t<<24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+this[++e];return(BigInt(r)<>>=0,t||z(e,4,this.length),u.read(this,e,!0,23,4)},p.prototype.readFloatBE=function(e,t){return e>>>=0,t||z(e,4,this.length),u.read(this,e,!1,23,4)},p.prototype.readDoubleLE=function(e,t){return e>>>=0,t||z(e,8,this.length),u.read(this,e,!0,52,8)},p.prototype.readDoubleBE=function(e,t){return e>>>=0,t||z(e,8,this.length),u.read(this,e,!1,52,8)},p.prototype.writeUintLE=p.prototype.writeUIntLE=function(e,t,n,r){e=+e,t>>>=0,n>>>=0,r||j(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,a=0;for(this[t]=255&e;++a>>=0,n>>>=0,r||j(this,e,t,n,Math.pow(2,8*n)-1,0);var i=n-1,a=1;for(this[t+i]=255&e;--i>=0&&(a*=256);)this[t+i]=e/a&255;return t+n},p.prototype.writeUint8=p.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,1,255,0),this[t]=255&e,t+1},p.prototype.writeUint16LE=p.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},p.prototype.writeUint16BE=p.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},p.prototype.writeUint32LE=p.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},p.prototype.writeUint32BE=p.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},p.prototype.writeBigUInt64LE=ie((function(e){return B(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,BigInt(0),BigInt("0xffffffffffffffff"))})),p.prototype.writeBigUInt64BE=ie((function(e){return U(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,BigInt(0),BigInt("0xffffffffffffffff"))})),p.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);j(this,e,t,n,i-1,-i)}var a=0,o=1,s=0;for(this[t]=255&e;++a>0)-s&255;return t+n},p.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);j(this,e,t,n,i-1,-i)}var a=n-1,o=1,s=0;for(this[t+a]=255&e;--a>=0&&(o*=256);)e<0&&0===s&&0!==this[t+a+1]&&(s=1),this[t+a]=(e/o>>0)-s&255;return t+n},p.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},p.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},p.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},p.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},p.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||j(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},p.prototype.writeBigInt64LE=ie((function(e){return B(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),p.prototype.writeBigInt64BE=ie((function(e){return U(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),p.prototype.writeFloatLE=function(e,t,n){return $(this,e,t,!0,n)},p.prototype.writeFloatBE=function(e,t,n){return $(this,e,t,!1,n)},p.prototype.writeDoubleLE=function(e,t,n){return V(this,e,t,!0,n)},p.prototype.writeDoubleBE=function(e,t,n){return V(this,e,t,!1,n)},p.prototype.copy=function(e,t,n,r){if(!p.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"===typeof e)for(a=t;a=r+4;n-=3)t="_".concat(e.slice(n-3,n)).concat(t);return"".concat(e.slice(0,n)).concat(t)}function Z(e,t,n,r,i,a){if(e>n||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat(8*(a+1)).concat(s):">= -(2".concat(s," ** ").concat(8*(a+1)-1).concat(s,") and < 2 ** ")+"".concat(8*(a+1)-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(n).concat(s),new W.ERR_OUT_OF_RANGE("value",o,e)}!function(e,t,n){Y(t,"offset"),void 0!==e[t]&&void 0!==e[t+n]||K(t,e.length-(n+1))}(r,i,a)}function Y(e,t){if("number"!==typeof e)throw new W.ERR_INVALID_ARG_TYPE(t,"number",e)}function K(e,t,n){if(Math.floor(e)!==e)throw Y(e,n),new W.ERR_OUT_OF_RANGE(n||"offset","an integer",e);if(t<0)throw new W.ERR_BUFFER_OUT_OF_BOUNDS;throw new W.ERR_OUT_OF_RANGE(n||"offset",">= ".concat(n?1:0," and <= ").concat(t),e)}q("ERR_BUFFER_OUT_OF_BOUNDS",(function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"}),RangeError),q("ERR_INVALID_ARG_TYPE",(function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(l(t))}),TypeError),q("ERR_OUT_OF_RANGE",(function(e,t,n){var r='The value of "'.concat(e,'" is out of range.'),i=n;return Number.isInteger(n)&&Math.abs(n)>Math.pow(2,32)?i=G(String(n)):"bigint"===typeof n&&(i=String(n),(n>Math.pow(BigInt(2),BigInt(32))||n<-Math.pow(BigInt(2),BigInt(32)))&&(i=G(i)),i+="n"),r+=" It must be ".concat(t,". Received ").concat(i)}),RangeError);var X=/[^+/0-9A-Za-z-_]/g;function J(e,t){var n;t=t||1/0;for(var r=e.length,i=null,a=[],o=0;o55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(o+1===r){(t-=3)>-1&&a.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&a.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&a.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;a.push(n)}else if(n<2048){if((t-=2)<0)break;a.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;a.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return a}function Q(e){return c.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(X,"")).length<2)return"";for(;e.length%4!==0;)e+="=";return e}(e))}function ee(e,t,n,r){var i;for(i=0;i=t.length||i>=e.length);++i)t[i+n]=e[i];return i}function te(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function ne(e){return e!==e}var re=function(){for(var e="0123456789abcdef",t=new Array(256),n=0;n<16;++n)for(var r=16*n,i=0;i<16;++i)t[r+i]=e[n]+e[i];return t}();function ie(e){return"undefined"===typeof BigInt?ae:e}function ae(){throw new Error("BigInt not supported")}},2321:function(e){"use strict";e.exports=i,e.exports.isMobile=i,e.exports.default=i;var t=/(android|bb\d+|meego).+mobile|armv7l|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series[46]0|samsungbrowser.*mobile|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,n=/CrOS/,r=/android|ipad|playbook|silk/i;function i(e){e||(e={});var i=e.ua;if(i||"undefined"===typeof navigator||(i=navigator.userAgent),i&&i.headers&&"string"===typeof i.headers["user-agent"]&&(i=i.headers["user-agent"]),"string"!==typeof i)return!1;var a=t.test(i)&&!n.test(i)||!!e.tablet&&r.test(i);return!a&&e.tablet&&e.featureDetect&&navigator&&navigator.maxTouchPoints>1&&-1!==i.indexOf("Macintosh")&&-1!==i.indexOf("Safari")&&(a=!0),a}},3910:function(e,t){"use strict";t.byteLength=function(e){var t=s(e),n=t[0],r=t[1];return 3*(n+r)/4-r},t.toByteArray=function(e){var t,n,a=s(e),o=a[0],l=a[1],c=new i(function(e,t,n){return 3*(t+n)/4-n}(0,o,l)),u=0,f=l>0?o-4:o;for(n=0;n>16&255,c[u++]=t>>8&255,c[u++]=255&t;return 2===l&&(t=r[e.charCodeAt(n)]<<2|r[e.charCodeAt(n+1)]>>4,c[u++]=255&t),1===l&&(t=r[e.charCodeAt(n)]<<10|r[e.charCodeAt(n+1)]<<4|r[e.charCodeAt(n+2)]>>2,c[u++]=t>>8&255,c[u++]=255&t),c},t.fromByteArray=function(e){for(var t,r=e.length,i=r%3,a=[],o=16383,s=0,c=r-i;sc?c:s+o));return 1===i?(t=e[r-1],a.push(n[t>>2]+n[t<<4&63]+"==")):2===i&&(t=(e[r-2]<<8)+e[r-1],a.push(n[t>>10]+n[t>>4&63]+n[t<<2&63]+"=")),a.join("")};for(var n=[],r=[],i="undefined"!==typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)n[o]=a[o],r[a.charCodeAt(o)]=o;function s(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function l(e,t,r){for(var i,a,o=[],s=t;s>18&63]+n[a>>12&63]+n[a>>6&63]+n[63&a]);return o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},3187:function(e,t){t.read=function(e,t,n,r,i){var a,o,s=8*i-r-1,l=(1<>1,u=-7,f=n?i-1:0,d=n?-1:1,h=e[t+f];for(f+=d,a=h&(1<<-u)-1,h>>=-u,u+=s;u>0;a=256*a+e[t+f],f+=d,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=r;u>0;o=256*o+e[t+f],f+=d,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(h?-1:1);o+=Math.pow(2,r),a-=c}return(h?-1:1)*o*Math.pow(2,a-r)},t.write=function(e,t,n,r,i,a){var o,s,l,c=8*a-i-1,u=(1<>1,d=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:a-1,p=r?1:-1,v=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,o=u):(o=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-o))<1&&(o--,l*=2),(t+=o+f>=1?d/l:d*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(t*l-1)*Math.pow(2,i),o+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;e[n+h]=255&s,h+=p,s/=256,i-=8);for(o=o<0;e[n+h]=255&o,h+=p,o/=256,c-=8);e[n+h-p]|=128*v}},1152:function(e,t,n){"use strict";e.exports=function(e){var t=(e=e||{}).eye||[0,0,1],n=e.center||[0,0,0],s=e.up||[0,1,0],l=e.distanceLimits||[0,1/0],c=e.mode||"turntable",u=r(),f=i(),d=a();return u.setDistanceLimits(l[0],l[1]),u.lookAt(0,t,n,s),f.setDistanceLimits(l[0],l[1]),f.lookAt(0,t,n,s),d.setDistanceLimits(l[0],l[1]),d.lookAt(0,t,n,s),new o({turntable:u,orbit:f,matrix:d},c)};var r=n(3440),i=n(7774),a=n(9298);function o(e,t){this._controllerNames=Object.keys(e),this._controllerList=this._controllerNames.map((function(t){return e[t]})),this._mode=t,this._active=e[t],this._active||(this._mode="turntable",this._active=e.turntable),this.modes=this._controllerNames,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}var s=o.prototype;s.flush=function(e){for(var t=this._controllerList,n=0;n0?c=c.ushln(f):f<0&&(u=u.ushln(-f)),s(c,u)}},234:function(e,t,n){"use strict";var r=n(3218);e.exports=function(e){return Array.isArray(e)&&2===e.length&&r(e[0])&&r(e[1])}},4275:function(e,t,n){"use strict";var r=n(1928);e.exports=function(e){return e.cmp(new r(0))}},9958:function(e,t,n){"use strict";var r=n(4275);e.exports=function(e){var t=e.length,n=e.words,i=0;if(1===t)i=n[0];else if(2===t)i=n[0]+67108864*n[1];else for(var a=0;a20?52:n+32}},3218:function(e,t,n){"use strict";n(1928),e.exports=function(e){return e&&"object"===typeof e&&Boolean(e.words)}},5514:function(e,t,n){"use strict";var r=n(1928),i=n(8362);e.exports=function(e){var t=i.exponent(e);return t<52?new r(e):new r(e*Math.pow(2,52-t)).ushln(t-52)}},8524:function(e,t,n){"use strict";var r=n(5514),i=n(4275);e.exports=function(e,t){var n=i(e),a=i(t);if(0===n)return[r(0),r(1)];if(0===a)return[r(0),r(0)];a<0&&(e=e.neg(),t=t.neg());var o=e.gcd(t);return o.cmpn(1)?[e.div(o),t.div(o)]:[e,t]}},2813:function(e,t,n){"use strict";var r=n(1928);e.exports=function(e){return new r(e)}},3962:function(e,t,n){"use strict";var r=n(8524);e.exports=function(e,t){return r(e[0].mul(t[0]),e[1].mul(t[1]))}},4951:function(e,t,n){"use strict";var r=n(4275);e.exports=function(e){return r(e[0])*r(e[1])}},4354:function(e,t,n){"use strict";var r=n(8524);e.exports=function(e,t){return r(e[0].mul(t[1]).sub(e[1].mul(t[0])),e[1].mul(t[1]))}},7999:function(e,t,n){"use strict";var r=n(9958),i=n(1112);e.exports=function(e){var t=e[0],n=e[1];if(0===t.cmpn(0))return 0;var a=t.abs().divmod(n.abs()),o=a.div,s=r(o),l=a.mod,c=t.negative!==n.negative?-1:1;if(0===l.cmpn(0))return c*s;if(s){var u=i(s)+4;return c*(s+(d=r(l.ushln(u).divRound(n)))*Math.pow(2,-u))}var f=n.bitLength()-l.bitLength()+53,d=r(l.ushln(f).divRound(n));return f<1023?c*d*Math.pow(2,-f):c*(d*=Math.pow(2,-1023))*Math.pow(2,1023-f)}},5070:function(e){"use strict";function t(e,t,n,r,i){for(var a=i+1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)>=0?(a=o,i=o-1):r=o+1}return a}function n(e,t,n,r,i){for(var a=i+1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)>0?(a=o,i=o-1):r=o+1}return a}function r(e,t,n,r,i){for(var a=r-1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)<0?(a=o,r=o+1):i=o-1}return a}function i(e,t,n,r,i){for(var a=r-1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)<=0?(a=o,r=o+1):i=o-1}return a}function a(e,t,n,r,i){for(;r<=i;){var a=r+i>>>1,o=e[a],s=void 0!==n?n(o,t):o-t;if(0===s)return a;s<=0?r=a+1:i=a-1}return-1}function o(e,t,n,r,i,a){return"function"===typeof n?a(e,t,n,void 0===r?0:0|r,void 0===i?e.length-1:0|i):a(e,t,void 0,void 0===n?0:0|n,void 0===r?e.length-1:0|r)}e.exports={ge:function(e,n,r,i,a){return o(e,n,r,i,a,t)},gt:function(e,t,r,i,a){return o(e,t,r,i,a,n)},lt:function(e,t,n,i,a){return o(e,t,n,i,a,r)},le:function(e,t,n,r,a){return o(e,t,n,r,a,i)},eq:function(e,t,n,r,i){return o(e,t,n,r,i,a)}}},2288:function(e,t){"use strict";function n(e){var t=32;return(e&=-e)&&t--,65535&e&&(t-=16),16711935&e&&(t-=8),252645135&e&&(t-=4),858993459&e&&(t-=2),1431655765&e&&(t-=1),t}t.INT_BITS=32,t.INT_MAX=2147483647,t.INT_MIN=-1<<31,t.sign=function(e){return(e>0)-(e<0)},t.abs=function(e){var t=e>>31;return(e^t)-t},t.min=function(e,t){return t^(e^t)&-(e65535)<<4,t|=n=((e>>>=t)>255)<<3,t|=n=((e>>>=n)>15)<<2,(t|=n=((e>>>=n)>3)<<1)|(e>>>=n)>>1},t.log10=function(e){return e>=1e9?9:e>=1e8?8:e>=1e7?7:e>=1e6?6:e>=1e5?5:e>=1e4?4:e>=1e3?3:e>=100?2:e>=10?1:0},t.popCount=function(e){return 16843009*((e=(858993459&(e-=e>>>1&1431655765))+(e>>>2&858993459))+(e>>>4)&252645135)>>>24},t.countTrailingZeros=n,t.nextPow2=function(e){return e+=0===e,--e,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,1+(e|=e>>>16)},t.prevPow2=function(e){return e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,(e|=e>>>16)-(e>>>1)},t.parity=function(e){return e^=e>>>16,e^=e>>>8,e^=e>>>4,27030>>>(e&=15)&1};var r=new Array(256);!function(e){for(var t=0;t<256;++t){var n=t,r=t,i=7;for(n>>>=1;n;n>>>=1)r<<=1,r|=1&n,--i;e[t]=r<>>8&255]<<16|r[e>>>16&255]<<8|r[e>>>24&255]},t.interleave2=function(e,t){return(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))|(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))<<1},t.deinterleave2=function(e,t){return(e=65535&((e=16711935&((e=252645135&((e=858993459&((e=e>>>t&1431655765)|e>>>1))|e>>>2))|e>>>4))|e>>>16))<<16>>16},t.interleave3=function(e,t,n){return e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2),(e|=(t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2))<<1)|(n=1227133513&((n=3272356035&((n=251719695&((n=4278190335&((n&=1023)|n<<16))|n<<8))|n<<4))|n<<2))<<2},t.deinterleave3=function(e,t){return(e=1023&((e=4278190335&((e=251719695&((e=3272356035&((e=e>>>t&1227133513)|e>>>2))|e>>>4))|e>>>8))|e>>>16))<<22>>22},t.nextCombination=function(e){var t=e|e-1;return t+1|(~t&-~t)-1>>>n(e)+1}},1928:function(e,t,n){!function(e,t){"use strict";function r(e,t){if(!e)throw new Error(t||"Assertion failed")}function i(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}function a(e,t,n){if(a.isBN(e))return e;this.negative=0,this.words=null,this.length=0,this.red=null,null!==e&&("le"!==t&&"be"!==t||(n=t,t=10),this._init(e||0,t||10,n||"be"))}var o;"object"===typeof e?e.exports=a:t.BN=a,a.BN=a,a.wordSize=26;try{o="undefined"!==typeof window&&"undefined"!==typeof window.Buffer?window.Buffer:n(6601).Buffer}catch(T){}function s(e,t){var n=e.charCodeAt(t);return n>=65&&n<=70?n-55:n>=97&&n<=102?n-87:n-48&15}function l(e,t,n){var r=s(e,n);return n-1>=t&&(r|=s(e,n-1)<<4),r}function c(e,t,n,r){for(var i=0,a=Math.min(e.length,n),o=t;o=49?s-49+10:s>=17?s-17+10:s}return i}a.isBN=function(e){return e instanceof a||null!==e&&"object"===typeof e&&e.constructor.wordSize===a.wordSize&&Array.isArray(e.words)},a.max=function(e,t){return e.cmp(t)>0?e:t},a.min=function(e,t){return e.cmp(t)<0?e:t},a.prototype._init=function(e,t,n){if("number"===typeof e)return this._initNumber(e,t,n);if("object"===typeof e)return this._initArray(e,t,n);"hex"===t&&(t=16),r(t===(0|t)&&t>=2&&t<=36);var i=0;"-"===(e=e.toString().replace(/\s+/g,""))[0]&&(i++,this.negative=1),i=0;i-=3)o=e[i]|e[i-1]<<8|e[i-2]<<16,this.words[a]|=o<>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);else if("le"===n)for(i=0,a=0;i>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);return this.strip()},a.prototype._parseHex=function(e,t,n){this.length=Math.ceil((e.length-t)/6),this.words=new Array(this.length);for(var r=0;r=t;r-=2)i=l(e,t,r)<=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;else for(r=(e.length-t)%2===0?t+1:t;r=18?(a-=18,o+=1,this.words[o]|=i>>>26):a+=8;this.strip()},a.prototype._parseBase=function(e,t,n){this.words=[0],this.length=1;for(var r=0,i=1;i<=67108863;i*=t)r++;r--,i=i/t|0;for(var a=e.length-n,o=a%r,s=Math.min(a,a-o)+n,l=0,u=n;u1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?""};var u=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],f=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],d=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function h(e,t,n){n.negative=t.negative^e.negative;var r=e.length+t.length|0;n.length=r,r=r-1|0;var i=0|e.words[0],a=0|t.words[0],o=i*a,s=67108863&o,l=o/67108864|0;n.words[0]=s;for(var c=1;c>>26,f=67108863&l,d=Math.min(c,t.length-1),h=Math.max(0,c-e.length+1);h<=d;h++){var p=c-h|0;u+=(o=(i=0|e.words[p])*(a=0|t.words[h])+f)/67108864|0,f=67108863&o}n.words[c]=0|f,l=0|u}return 0!==l?n.words[c]=0|l:n.length--,n.strip()}a.prototype.toString=function(e,t){var n;if(t=0|t||1,16===(e=e||10)||"hex"===e){n="";for(var i=0,a=0,o=0;o>>24-i&16777215)||o!==this.length-1?u[6-l.length]+l+n:l+n,(i+=2)>=26&&(i-=26,o--)}for(0!==a&&(n=a.toString(16)+n);n.length%t!==0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}if(e===(0|e)&&e>=2&&e<=36){var c=f[e],h=d[e];n="";var p=this.clone();for(p.negative=0;!p.isZero();){var v=p.modn(h).toString(e);n=(p=p.idivn(h)).isZero()?v+n:u[c-v.length]+v+n}for(this.isZero()&&(n="0"+n);n.length%t!==0;)n="0"+n;return 0!==this.negative&&(n="-"+n),n}r(!1,"Base should be between 2 and 36")},a.prototype.toNumber=function(){var e=this.words[0];return 2===this.length?e+=67108864*this.words[1]:3===this.length&&1===this.words[2]?e+=4503599627370496+67108864*this.words[1]:this.length>2&&r(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-e:e},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(e,t){return r("undefined"!==typeof o),this.toArrayLike(o,e,t)},a.prototype.toArray=function(e,t){return this.toArrayLike(Array,e,t)},a.prototype.toArrayLike=function(e,t,n){var i=this.byteLength(),a=n||Math.max(1,i);r(i<=a,"byte array longer than desired length"),r(a>0,"Requested array length <= 0"),this.strip();var o,s,l="le"===t,c=new e(a),u=this.clone();if(l){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[s]=o;for(;s=4096&&(n+=13,t>>>=13),t>=64&&(n+=7,t>>>=7),t>=8&&(n+=4,t>>>=4),t>=2&&(n+=2,t>>>=2),n+t},a.prototype._zeroBits=function(e){if(0===e)return 26;var t=e,n=0;return 0===(8191&t)&&(n+=13,t>>>=13),0===(127&t)&&(n+=7,t>>>=7),0===(15&t)&&(n+=4,t>>>=4),0===(3&t)&&(n+=2,t>>>=2),0===(1&t)&&n++,n},a.prototype.bitLength=function(){var e=this.words[this.length-1],t=this._countBits(e);return 26*(this.length-1)+t},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var e=0,t=0;te.length?this.clone().ior(e):e.clone().ior(this)},a.prototype.uor=function(e){return this.length>e.length?this.clone().iuor(e):e.clone().iuor(this)},a.prototype.iuand=function(e){var t;t=this.length>e.length?e:this;for(var n=0;ne.length?this.clone().iand(e):e.clone().iand(this)},a.prototype.uand=function(e){return this.length>e.length?this.clone().iuand(e):e.clone().iuand(this)},a.prototype.iuxor=function(e){var t,n;this.length>e.length?(t=this,n=e):(t=e,n=this);for(var r=0;re.length?this.clone().ixor(e):e.clone().ixor(this)},a.prototype.uxor=function(e){return this.length>e.length?this.clone().iuxor(e):e.clone().iuxor(this)},a.prototype.inotn=function(e){r("number"===typeof e&&e>=0);var t=0|Math.ceil(e/26),n=e%26;this._expand(t),n>0&&t--;for(var i=0;i0&&(this.words[i]=~this.words[i]&67108863>>26-n),this.strip()},a.prototype.notn=function(e){return this.clone().inotn(e)},a.prototype.setn=function(e,t){r("number"===typeof e&&e>=0);var n=e/26|0,i=e%26;return this._expand(n+1),this.words[n]=t?this.words[n]|1<e.length?(n=this,r=e):(n=e,r=this);for(var i=0,a=0;a>>26;for(;0!==i&&a>>26;if(this.length=n.length,0!==i)this.words[this.length]=i,this.length++;else if(n!==this)for(;ae.length?this.clone().iadd(e):e.clone().iadd(this)},a.prototype.isub=function(e){if(0!==e.negative){e.negative=0;var t=this.iadd(e);return e.negative=1,t._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(e),this.negative=1,this._normSign();var n,r,i=this.cmp(e);if(0===i)return this.negative=0,this.length=1,this.words[0]=0,this;i>0?(n=this,r=e):(n=e,r=this);for(var a=0,o=0;o>26,this.words[o]=67108863&t;for(;0!==a&&o>26,this.words[o]=67108863&t;if(0===a&&o>>13,h=0|o[1],p=8191&h,v=h>>>13,m=0|o[2],g=8191&m,y=m>>>13,b=0|o[3],x=8191&b,w=b>>>13,_=0|o[4],k=8191&_,S=_>>>13,T=0|o[5],A=8191&T,E=T>>>13,C=0|o[6],M=8191&C,O=C>>>13,P=0|o[7],L=8191&P,I=P>>>13,R=0|o[8],D=8191&R,F=R>>>13,N=0|o[9],z=8191&N,j=N>>>13,B=0|s[0],U=8191&B,H=B>>>13,$=0|s[1],V=8191&$,W=$>>>13,q=0|s[2],G=8191&q,Z=q>>>13,Y=0|s[3],K=8191&Y,X=Y>>>13,J=0|s[4],Q=8191&J,ee=J>>>13,te=0|s[5],ne=8191&te,re=te>>>13,ie=0|s[6],ae=8191&ie,oe=ie>>>13,se=0|s[7],le=8191&se,ce=se>>>13,ue=0|s[8],fe=8191&ue,de=ue>>>13,he=0|s[9],pe=8191&he,ve=he>>>13;n.negative=e.negative^t.negative,n.length=19;var me=(c+(r=Math.imul(f,U))|0)+((8191&(i=(i=Math.imul(f,H))+Math.imul(d,U)|0))<<13)|0;c=((a=Math.imul(d,H))+(i>>>13)|0)+(me>>>26)|0,me&=67108863,r=Math.imul(p,U),i=(i=Math.imul(p,H))+Math.imul(v,U)|0,a=Math.imul(v,H);var ge=(c+(r=r+Math.imul(f,V)|0)|0)+((8191&(i=(i=i+Math.imul(f,W)|0)+Math.imul(d,V)|0))<<13)|0;c=((a=a+Math.imul(d,W)|0)+(i>>>13)|0)+(ge>>>26)|0,ge&=67108863,r=Math.imul(g,U),i=(i=Math.imul(g,H))+Math.imul(y,U)|0,a=Math.imul(y,H),r=r+Math.imul(p,V)|0,i=(i=i+Math.imul(p,W)|0)+Math.imul(v,V)|0,a=a+Math.imul(v,W)|0;var ye=(c+(r=r+Math.imul(f,G)|0)|0)+((8191&(i=(i=i+Math.imul(f,Z)|0)+Math.imul(d,G)|0))<<13)|0;c=((a=a+Math.imul(d,Z)|0)+(i>>>13)|0)+(ye>>>26)|0,ye&=67108863,r=Math.imul(x,U),i=(i=Math.imul(x,H))+Math.imul(w,U)|0,a=Math.imul(w,H),r=r+Math.imul(g,V)|0,i=(i=i+Math.imul(g,W)|0)+Math.imul(y,V)|0,a=a+Math.imul(y,W)|0,r=r+Math.imul(p,G)|0,i=(i=i+Math.imul(p,Z)|0)+Math.imul(v,G)|0,a=a+Math.imul(v,Z)|0;var be=(c+(r=r+Math.imul(f,K)|0)|0)+((8191&(i=(i=i+Math.imul(f,X)|0)+Math.imul(d,K)|0))<<13)|0;c=((a=a+Math.imul(d,X)|0)+(i>>>13)|0)+(be>>>26)|0,be&=67108863,r=Math.imul(k,U),i=(i=Math.imul(k,H))+Math.imul(S,U)|0,a=Math.imul(S,H),r=r+Math.imul(x,V)|0,i=(i=i+Math.imul(x,W)|0)+Math.imul(w,V)|0,a=a+Math.imul(w,W)|0,r=r+Math.imul(g,G)|0,i=(i=i+Math.imul(g,Z)|0)+Math.imul(y,G)|0,a=a+Math.imul(y,Z)|0,r=r+Math.imul(p,K)|0,i=(i=i+Math.imul(p,X)|0)+Math.imul(v,K)|0,a=a+Math.imul(v,X)|0;var xe=(c+(r=r+Math.imul(f,Q)|0)|0)+((8191&(i=(i=i+Math.imul(f,ee)|0)+Math.imul(d,Q)|0))<<13)|0;c=((a=a+Math.imul(d,ee)|0)+(i>>>13)|0)+(xe>>>26)|0,xe&=67108863,r=Math.imul(A,U),i=(i=Math.imul(A,H))+Math.imul(E,U)|0,a=Math.imul(E,H),r=r+Math.imul(k,V)|0,i=(i=i+Math.imul(k,W)|0)+Math.imul(S,V)|0,a=a+Math.imul(S,W)|0,r=r+Math.imul(x,G)|0,i=(i=i+Math.imul(x,Z)|0)+Math.imul(w,G)|0,a=a+Math.imul(w,Z)|0,r=r+Math.imul(g,K)|0,i=(i=i+Math.imul(g,X)|0)+Math.imul(y,K)|0,a=a+Math.imul(y,X)|0,r=r+Math.imul(p,Q)|0,i=(i=i+Math.imul(p,ee)|0)+Math.imul(v,Q)|0,a=a+Math.imul(v,ee)|0;var we=(c+(r=r+Math.imul(f,ne)|0)|0)+((8191&(i=(i=i+Math.imul(f,re)|0)+Math.imul(d,ne)|0))<<13)|0;c=((a=a+Math.imul(d,re)|0)+(i>>>13)|0)+(we>>>26)|0,we&=67108863,r=Math.imul(M,U),i=(i=Math.imul(M,H))+Math.imul(O,U)|0,a=Math.imul(O,H),r=r+Math.imul(A,V)|0,i=(i=i+Math.imul(A,W)|0)+Math.imul(E,V)|0,a=a+Math.imul(E,W)|0,r=r+Math.imul(k,G)|0,i=(i=i+Math.imul(k,Z)|0)+Math.imul(S,G)|0,a=a+Math.imul(S,Z)|0,r=r+Math.imul(x,K)|0,i=(i=i+Math.imul(x,X)|0)+Math.imul(w,K)|0,a=a+Math.imul(w,X)|0,r=r+Math.imul(g,Q)|0,i=(i=i+Math.imul(g,ee)|0)+Math.imul(y,Q)|0,a=a+Math.imul(y,ee)|0,r=r+Math.imul(p,ne)|0,i=(i=i+Math.imul(p,re)|0)+Math.imul(v,ne)|0,a=a+Math.imul(v,re)|0;var _e=(c+(r=r+Math.imul(f,ae)|0)|0)+((8191&(i=(i=i+Math.imul(f,oe)|0)+Math.imul(d,ae)|0))<<13)|0;c=((a=a+Math.imul(d,oe)|0)+(i>>>13)|0)+(_e>>>26)|0,_e&=67108863,r=Math.imul(L,U),i=(i=Math.imul(L,H))+Math.imul(I,U)|0,a=Math.imul(I,H),r=r+Math.imul(M,V)|0,i=(i=i+Math.imul(M,W)|0)+Math.imul(O,V)|0,a=a+Math.imul(O,W)|0,r=r+Math.imul(A,G)|0,i=(i=i+Math.imul(A,Z)|0)+Math.imul(E,G)|0,a=a+Math.imul(E,Z)|0,r=r+Math.imul(k,K)|0,i=(i=i+Math.imul(k,X)|0)+Math.imul(S,K)|0,a=a+Math.imul(S,X)|0,r=r+Math.imul(x,Q)|0,i=(i=i+Math.imul(x,ee)|0)+Math.imul(w,Q)|0,a=a+Math.imul(w,ee)|0,r=r+Math.imul(g,ne)|0,i=(i=i+Math.imul(g,re)|0)+Math.imul(y,ne)|0,a=a+Math.imul(y,re)|0,r=r+Math.imul(p,ae)|0,i=(i=i+Math.imul(p,oe)|0)+Math.imul(v,ae)|0,a=a+Math.imul(v,oe)|0;var ke=(c+(r=r+Math.imul(f,le)|0)|0)+((8191&(i=(i=i+Math.imul(f,ce)|0)+Math.imul(d,le)|0))<<13)|0;c=((a=a+Math.imul(d,ce)|0)+(i>>>13)|0)+(ke>>>26)|0,ke&=67108863,r=Math.imul(D,U),i=(i=Math.imul(D,H))+Math.imul(F,U)|0,a=Math.imul(F,H),r=r+Math.imul(L,V)|0,i=(i=i+Math.imul(L,W)|0)+Math.imul(I,V)|0,a=a+Math.imul(I,W)|0,r=r+Math.imul(M,G)|0,i=(i=i+Math.imul(M,Z)|0)+Math.imul(O,G)|0,a=a+Math.imul(O,Z)|0,r=r+Math.imul(A,K)|0,i=(i=i+Math.imul(A,X)|0)+Math.imul(E,K)|0,a=a+Math.imul(E,X)|0,r=r+Math.imul(k,Q)|0,i=(i=i+Math.imul(k,ee)|0)+Math.imul(S,Q)|0,a=a+Math.imul(S,ee)|0,r=r+Math.imul(x,ne)|0,i=(i=i+Math.imul(x,re)|0)+Math.imul(w,ne)|0,a=a+Math.imul(w,re)|0,r=r+Math.imul(g,ae)|0,i=(i=i+Math.imul(g,oe)|0)+Math.imul(y,ae)|0,a=a+Math.imul(y,oe)|0,r=r+Math.imul(p,le)|0,i=(i=i+Math.imul(p,ce)|0)+Math.imul(v,le)|0,a=a+Math.imul(v,ce)|0;var Se=(c+(r=r+Math.imul(f,fe)|0)|0)+((8191&(i=(i=i+Math.imul(f,de)|0)+Math.imul(d,fe)|0))<<13)|0;c=((a=a+Math.imul(d,de)|0)+(i>>>13)|0)+(Se>>>26)|0,Se&=67108863,r=Math.imul(z,U),i=(i=Math.imul(z,H))+Math.imul(j,U)|0,a=Math.imul(j,H),r=r+Math.imul(D,V)|0,i=(i=i+Math.imul(D,W)|0)+Math.imul(F,V)|0,a=a+Math.imul(F,W)|0,r=r+Math.imul(L,G)|0,i=(i=i+Math.imul(L,Z)|0)+Math.imul(I,G)|0,a=a+Math.imul(I,Z)|0,r=r+Math.imul(M,K)|0,i=(i=i+Math.imul(M,X)|0)+Math.imul(O,K)|0,a=a+Math.imul(O,X)|0,r=r+Math.imul(A,Q)|0,i=(i=i+Math.imul(A,ee)|0)+Math.imul(E,Q)|0,a=a+Math.imul(E,ee)|0,r=r+Math.imul(k,ne)|0,i=(i=i+Math.imul(k,re)|0)+Math.imul(S,ne)|0,a=a+Math.imul(S,re)|0,r=r+Math.imul(x,ae)|0,i=(i=i+Math.imul(x,oe)|0)+Math.imul(w,ae)|0,a=a+Math.imul(w,oe)|0,r=r+Math.imul(g,le)|0,i=(i=i+Math.imul(g,ce)|0)+Math.imul(y,le)|0,a=a+Math.imul(y,ce)|0,r=r+Math.imul(p,fe)|0,i=(i=i+Math.imul(p,de)|0)+Math.imul(v,fe)|0,a=a+Math.imul(v,de)|0;var Te=(c+(r=r+Math.imul(f,pe)|0)|0)+((8191&(i=(i=i+Math.imul(f,ve)|0)+Math.imul(d,pe)|0))<<13)|0;c=((a=a+Math.imul(d,ve)|0)+(i>>>13)|0)+(Te>>>26)|0,Te&=67108863,r=Math.imul(z,V),i=(i=Math.imul(z,W))+Math.imul(j,V)|0,a=Math.imul(j,W),r=r+Math.imul(D,G)|0,i=(i=i+Math.imul(D,Z)|0)+Math.imul(F,G)|0,a=a+Math.imul(F,Z)|0,r=r+Math.imul(L,K)|0,i=(i=i+Math.imul(L,X)|0)+Math.imul(I,K)|0,a=a+Math.imul(I,X)|0,r=r+Math.imul(M,Q)|0,i=(i=i+Math.imul(M,ee)|0)+Math.imul(O,Q)|0,a=a+Math.imul(O,ee)|0,r=r+Math.imul(A,ne)|0,i=(i=i+Math.imul(A,re)|0)+Math.imul(E,ne)|0,a=a+Math.imul(E,re)|0,r=r+Math.imul(k,ae)|0,i=(i=i+Math.imul(k,oe)|0)+Math.imul(S,ae)|0,a=a+Math.imul(S,oe)|0,r=r+Math.imul(x,le)|0,i=(i=i+Math.imul(x,ce)|0)+Math.imul(w,le)|0,a=a+Math.imul(w,ce)|0,r=r+Math.imul(g,fe)|0,i=(i=i+Math.imul(g,de)|0)+Math.imul(y,fe)|0,a=a+Math.imul(y,de)|0;var Ae=(c+(r=r+Math.imul(p,pe)|0)|0)+((8191&(i=(i=i+Math.imul(p,ve)|0)+Math.imul(v,pe)|0))<<13)|0;c=((a=a+Math.imul(v,ve)|0)+(i>>>13)|0)+(Ae>>>26)|0,Ae&=67108863,r=Math.imul(z,G),i=(i=Math.imul(z,Z))+Math.imul(j,G)|0,a=Math.imul(j,Z),r=r+Math.imul(D,K)|0,i=(i=i+Math.imul(D,X)|0)+Math.imul(F,K)|0,a=a+Math.imul(F,X)|0,r=r+Math.imul(L,Q)|0,i=(i=i+Math.imul(L,ee)|0)+Math.imul(I,Q)|0,a=a+Math.imul(I,ee)|0,r=r+Math.imul(M,ne)|0,i=(i=i+Math.imul(M,re)|0)+Math.imul(O,ne)|0,a=a+Math.imul(O,re)|0,r=r+Math.imul(A,ae)|0,i=(i=i+Math.imul(A,oe)|0)+Math.imul(E,ae)|0,a=a+Math.imul(E,oe)|0,r=r+Math.imul(k,le)|0,i=(i=i+Math.imul(k,ce)|0)+Math.imul(S,le)|0,a=a+Math.imul(S,ce)|0,r=r+Math.imul(x,fe)|0,i=(i=i+Math.imul(x,de)|0)+Math.imul(w,fe)|0,a=a+Math.imul(w,de)|0;var Ee=(c+(r=r+Math.imul(g,pe)|0)|0)+((8191&(i=(i=i+Math.imul(g,ve)|0)+Math.imul(y,pe)|0))<<13)|0;c=((a=a+Math.imul(y,ve)|0)+(i>>>13)|0)+(Ee>>>26)|0,Ee&=67108863,r=Math.imul(z,K),i=(i=Math.imul(z,X))+Math.imul(j,K)|0,a=Math.imul(j,X),r=r+Math.imul(D,Q)|0,i=(i=i+Math.imul(D,ee)|0)+Math.imul(F,Q)|0,a=a+Math.imul(F,ee)|0,r=r+Math.imul(L,ne)|0,i=(i=i+Math.imul(L,re)|0)+Math.imul(I,ne)|0,a=a+Math.imul(I,re)|0,r=r+Math.imul(M,ae)|0,i=(i=i+Math.imul(M,oe)|0)+Math.imul(O,ae)|0,a=a+Math.imul(O,oe)|0,r=r+Math.imul(A,le)|0,i=(i=i+Math.imul(A,ce)|0)+Math.imul(E,le)|0,a=a+Math.imul(E,ce)|0,r=r+Math.imul(k,fe)|0,i=(i=i+Math.imul(k,de)|0)+Math.imul(S,fe)|0,a=a+Math.imul(S,de)|0;var Ce=(c+(r=r+Math.imul(x,pe)|0)|0)+((8191&(i=(i=i+Math.imul(x,ve)|0)+Math.imul(w,pe)|0))<<13)|0;c=((a=a+Math.imul(w,ve)|0)+(i>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,r=Math.imul(z,Q),i=(i=Math.imul(z,ee))+Math.imul(j,Q)|0,a=Math.imul(j,ee),r=r+Math.imul(D,ne)|0,i=(i=i+Math.imul(D,re)|0)+Math.imul(F,ne)|0,a=a+Math.imul(F,re)|0,r=r+Math.imul(L,ae)|0,i=(i=i+Math.imul(L,oe)|0)+Math.imul(I,ae)|0,a=a+Math.imul(I,oe)|0,r=r+Math.imul(M,le)|0,i=(i=i+Math.imul(M,ce)|0)+Math.imul(O,le)|0,a=a+Math.imul(O,ce)|0,r=r+Math.imul(A,fe)|0,i=(i=i+Math.imul(A,de)|0)+Math.imul(E,fe)|0,a=a+Math.imul(E,de)|0;var Me=(c+(r=r+Math.imul(k,pe)|0)|0)+((8191&(i=(i=i+Math.imul(k,ve)|0)+Math.imul(S,pe)|0))<<13)|0;c=((a=a+Math.imul(S,ve)|0)+(i>>>13)|0)+(Me>>>26)|0,Me&=67108863,r=Math.imul(z,ne),i=(i=Math.imul(z,re))+Math.imul(j,ne)|0,a=Math.imul(j,re),r=r+Math.imul(D,ae)|0,i=(i=i+Math.imul(D,oe)|0)+Math.imul(F,ae)|0,a=a+Math.imul(F,oe)|0,r=r+Math.imul(L,le)|0,i=(i=i+Math.imul(L,ce)|0)+Math.imul(I,le)|0,a=a+Math.imul(I,ce)|0,r=r+Math.imul(M,fe)|0,i=(i=i+Math.imul(M,de)|0)+Math.imul(O,fe)|0,a=a+Math.imul(O,de)|0;var Oe=(c+(r=r+Math.imul(A,pe)|0)|0)+((8191&(i=(i=i+Math.imul(A,ve)|0)+Math.imul(E,pe)|0))<<13)|0;c=((a=a+Math.imul(E,ve)|0)+(i>>>13)|0)+(Oe>>>26)|0,Oe&=67108863,r=Math.imul(z,ae),i=(i=Math.imul(z,oe))+Math.imul(j,ae)|0,a=Math.imul(j,oe),r=r+Math.imul(D,le)|0,i=(i=i+Math.imul(D,ce)|0)+Math.imul(F,le)|0,a=a+Math.imul(F,ce)|0,r=r+Math.imul(L,fe)|0,i=(i=i+Math.imul(L,de)|0)+Math.imul(I,fe)|0,a=a+Math.imul(I,de)|0;var Pe=(c+(r=r+Math.imul(M,pe)|0)|0)+((8191&(i=(i=i+Math.imul(M,ve)|0)+Math.imul(O,pe)|0))<<13)|0;c=((a=a+Math.imul(O,ve)|0)+(i>>>13)|0)+(Pe>>>26)|0,Pe&=67108863,r=Math.imul(z,le),i=(i=Math.imul(z,ce))+Math.imul(j,le)|0,a=Math.imul(j,ce),r=r+Math.imul(D,fe)|0,i=(i=i+Math.imul(D,de)|0)+Math.imul(F,fe)|0,a=a+Math.imul(F,de)|0;var Le=(c+(r=r+Math.imul(L,pe)|0)|0)+((8191&(i=(i=i+Math.imul(L,ve)|0)+Math.imul(I,pe)|0))<<13)|0;c=((a=a+Math.imul(I,ve)|0)+(i>>>13)|0)+(Le>>>26)|0,Le&=67108863,r=Math.imul(z,fe),i=(i=Math.imul(z,de))+Math.imul(j,fe)|0,a=Math.imul(j,de);var Ie=(c+(r=r+Math.imul(D,pe)|0)|0)+((8191&(i=(i=i+Math.imul(D,ve)|0)+Math.imul(F,pe)|0))<<13)|0;c=((a=a+Math.imul(F,ve)|0)+(i>>>13)|0)+(Ie>>>26)|0,Ie&=67108863;var Re=(c+(r=Math.imul(z,pe))|0)+((8191&(i=(i=Math.imul(z,ve))+Math.imul(j,pe)|0))<<13)|0;return c=((a=Math.imul(j,ve))+(i>>>13)|0)+(Re>>>26)|0,Re&=67108863,l[0]=me,l[1]=ge,l[2]=ye,l[3]=be,l[4]=xe,l[5]=we,l[6]=_e,l[7]=ke,l[8]=Se,l[9]=Te,l[10]=Ae,l[11]=Ee,l[12]=Ce,l[13]=Me,l[14]=Oe,l[15]=Pe,l[16]=Le,l[17]=Ie,l[18]=Re,0!==c&&(l[19]=c,n.length++),n};function v(e,t,n){return(new m).mulp(e,t,n)}function m(e,t){this.x=e,this.y=t}Math.imul||(p=h),a.prototype.mulTo=function(e,t){var n,r=this.length+e.length;return n=10===this.length&&10===e.length?p(this,e,t):r<63?h(this,e,t):r<1024?function(e,t,n){n.negative=t.negative^e.negative,n.length=e.length+t.length;for(var r=0,i=0,a=0;a>>26)|0)>>>26,o&=67108863}n.words[a]=s,r=o,o=i}return 0!==r?n.words[a]=r:n.length--,n.strip()}(this,e,t):v(this,e,t),n},m.prototype.makeRBT=function(e){for(var t=new Array(e),n=a.prototype._countBits(e)-1,r=0;r>=1;return r},m.prototype.permute=function(e,t,n,r,i,a){for(var o=0;o>>=1)i++;return 1<>>=13,n[2*o+1]=8191&a,a>>>=13;for(o=2*t;o>=26,t+=i/67108864|0,t+=a>>>26,this.words[n]=67108863&a}return 0!==t&&(this.words[n]=t,this.length++),this},a.prototype.muln=function(e){return this.clone().imuln(e)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(e){var t=function(e){for(var t=new Array(e.bitLength()),n=0;n>>i}return t}(e);if(0===t.length)return new a(1);for(var n=this,r=0;r=0);var t,n=e%26,i=(e-n)/26,a=67108863>>>26-n<<26-n;if(0!==n){var o=0;for(t=0;t>>26-n}o&&(this.words[t]=o,this.length++)}if(0!==i){for(t=this.length-1;t>=0;t--)this.words[t+i]=this.words[t];for(t=0;t=0),i=t?(t-t%26)/26:0;var a=e%26,o=Math.min((e-a)/26,this.length),s=67108863^67108863>>>a<o)for(this.length-=o,c=0;c=0&&(0!==u||c>=i);c--){var f=0|this.words[c];this.words[c]=u<<26-a|f>>>a,u=f&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(e,t,n){return r(0===this.negative),this.iushrn(e,t,n)},a.prototype.shln=function(e){return this.clone().ishln(e)},a.prototype.ushln=function(e){return this.clone().iushln(e)},a.prototype.shrn=function(e){return this.clone().ishrn(e)},a.prototype.ushrn=function(e){return this.clone().iushrn(e)},a.prototype.testn=function(e){r("number"===typeof e&&e>=0);var t=e%26,n=(e-t)/26,i=1<=0);var t=e%26,n=(e-t)/26;if(r(0===this.negative,"imaskn works only with positive numbers"),this.length<=n)return this;if(0!==t&&n++,this.length=Math.min(n,this.length),0!==t){var i=67108863^67108863>>>t<=67108864;t++)this.words[t]-=67108864,t===this.length-1?this.words[t+1]=1:this.words[t+1]++;return this.length=Math.max(this.length,t+1),this},a.prototype.isubn=function(e){if(r("number"===typeof e),r(e<67108864),e<0)return this.iaddn(-e);if(0!==this.negative)return this.negative=0,this.iaddn(e),this.negative=1,this;if(this.words[0]-=e,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var t=0;t>26)-(l/67108864|0),this.words[i+n]=67108863&a}for(;i>26,this.words[i+n]=67108863&a;if(0===s)return this.strip();for(r(-1===s),s=0,i=0;i>26,this.words[i]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(e,t){var n=(this.length,e.length),r=this.clone(),i=e,o=0|i.words[i.length-1];0!==(n=26-this._countBits(o))&&(i=i.ushln(n),r.iushln(n),o=0|i.words[i.length-1]);var s,l=r.length-i.length;if("mod"!==t){(s=new a(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c=0;f--){var d=67108864*(0|r.words[i.length+f])+(0|r.words[i.length+f-1]);for(d=Math.min(d/o|0,67108863),r._ishlnsubmul(i,d,f);0!==r.negative;)d--,r.negative=0,r._ishlnsubmul(i,1,f),r.isZero()||(r.negative^=1);s&&(s.words[f]=d)}return s&&s.strip(),r.strip(),"div"!==t&&0!==n&&r.iushrn(n),{div:s||null,mod:r}},a.prototype.divmod=function(e,t,n){return r(!e.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===e.negative?(s=this.neg().divmod(e,t),"mod"!==t&&(i=s.div.neg()),"div"!==t&&(o=s.mod.neg(),n&&0!==o.negative&&o.iadd(e)),{div:i,mod:o}):0===this.negative&&0!==e.negative?(s=this.divmod(e.neg(),t),"mod"!==t&&(i=s.div.neg()),{div:i,mod:s.mod}):0!==(this.negative&e.negative)?(s=this.neg().divmod(e.neg(),t),"div"!==t&&(o=s.mod.neg(),n&&0!==o.negative&&o.isub(e)),{div:s.div,mod:o}):e.length>this.length||this.cmp(e)<0?{div:new a(0),mod:this}:1===e.length?"div"===t?{div:this.divn(e.words[0]),mod:null}:"mod"===t?{div:null,mod:new a(this.modn(e.words[0]))}:{div:this.divn(e.words[0]),mod:new a(this.modn(e.words[0]))}:this._wordDiv(e,t);var i,o,s},a.prototype.div=function(e){return this.divmod(e,"div",!1).div},a.prototype.mod=function(e){return this.divmod(e,"mod",!1).mod},a.prototype.umod=function(e){return this.divmod(e,"mod",!0).mod},a.prototype.divRound=function(e){var t=this.divmod(e);if(t.mod.isZero())return t.div;var n=0!==t.div.negative?t.mod.isub(e):t.mod,r=e.ushrn(1),i=e.andln(1),a=n.cmp(r);return a<0||1===i&&0===a?t.div:0!==t.div.negative?t.div.isubn(1):t.div.iaddn(1)},a.prototype.modn=function(e){r(e<=67108863);for(var t=(1<<26)%e,n=0,i=this.length-1;i>=0;i--)n=(t*n+(0|this.words[i]))%e;return n},a.prototype.idivn=function(e){r(e<=67108863);for(var t=0,n=this.length-1;n>=0;n--){var i=(0|this.words[n])+67108864*t;this.words[n]=i/e|0,t=i%e}return this.strip()},a.prototype.divn=function(e){return this.clone().idivn(e)},a.prototype.egcd=function(e){r(0===e.negative),r(!e.isZero());var t=this,n=e.clone();t=0!==t.negative?t.umod(e):t.clone();for(var i=new a(1),o=new a(0),s=new a(0),l=new a(1),c=0;t.isEven()&&n.isEven();)t.iushrn(1),n.iushrn(1),++c;for(var u=n.clone(),f=t.clone();!t.isZero();){for(var d=0,h=1;0===(t.words[0]&h)&&d<26;++d,h<<=1);if(d>0)for(t.iushrn(d);d-- >0;)(i.isOdd()||o.isOdd())&&(i.iadd(u),o.isub(f)),i.iushrn(1),o.iushrn(1);for(var p=0,v=1;0===(n.words[0]&v)&&p<26;++p,v<<=1);if(p>0)for(n.iushrn(p);p-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(f)),s.iushrn(1),l.iushrn(1);t.cmp(n)>=0?(t.isub(n),i.isub(s),o.isub(l)):(n.isub(t),s.isub(i),l.isub(o))}return{a:s,b:l,gcd:n.iushln(c)}},a.prototype._invmp=function(e){r(0===e.negative),r(!e.isZero());var t=this,n=e.clone();t=0!==t.negative?t.umod(e):t.clone();for(var i,o=new a(1),s=new a(0),l=n.clone();t.cmpn(1)>0&&n.cmpn(1)>0;){for(var c=0,u=1;0===(t.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(t.iushrn(c);c-- >0;)o.isOdd()&&o.iadd(l),o.iushrn(1);for(var f=0,d=1;0===(n.words[0]&d)&&f<26;++f,d<<=1);if(f>0)for(n.iushrn(f);f-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);t.cmp(n)>=0?(t.isub(n),o.isub(s)):(n.isub(t),s.isub(o))}return(i=0===t.cmpn(1)?o:s).cmpn(0)<0&&i.iadd(e),i},a.prototype.gcd=function(e){if(this.isZero())return e.abs();if(e.isZero())return this.abs();var t=this.clone(),n=e.clone();t.negative=0,n.negative=0;for(var r=0;t.isEven()&&n.isEven();r++)t.iushrn(1),n.iushrn(1);for(;;){for(;t.isEven();)t.iushrn(1);for(;n.isEven();)n.iushrn(1);var i=t.cmp(n);if(i<0){var a=t;t=n,n=a}else if(0===i||0===n.cmpn(1))break;t.isub(n)}return n.iushln(r)},a.prototype.invm=function(e){return this.egcd(e).a.umod(e)},a.prototype.isEven=function(){return 0===(1&this.words[0])},a.prototype.isOdd=function(){return 1===(1&this.words[0])},a.prototype.andln=function(e){return this.words[0]&e},a.prototype.bincn=function(e){r("number"===typeof e);var t=e%26,n=(e-t)/26,i=1<>>26,s&=67108863,this.words[o]=s}return 0!==a&&(this.words[o]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(e){var t,n=e<0;if(0!==this.negative&&!n)return-1;if(0===this.negative&&n)return 1;if(this.strip(),this.length>1)t=1;else{n&&(e=-e),r(e<=67108863,"Number is too big");var i=0|this.words[0];t=i===e?0:ie.length)return 1;if(this.length=0;n--){var r=0|this.words[n],i=0|e.words[n];if(r!==i){ri&&(t=1);break}}return t},a.prototype.gtn=function(e){return 1===this.cmpn(e)},a.prototype.gt=function(e){return 1===this.cmp(e)},a.prototype.gten=function(e){return this.cmpn(e)>=0},a.prototype.gte=function(e){return this.cmp(e)>=0},a.prototype.ltn=function(e){return-1===this.cmpn(e)},a.prototype.lt=function(e){return-1===this.cmp(e)},a.prototype.lten=function(e){return this.cmpn(e)<=0},a.prototype.lte=function(e){return this.cmp(e)<=0},a.prototype.eqn=function(e){return 0===this.cmpn(e)},a.prototype.eq=function(e){return 0===this.cmp(e)},a.red=function(e){return new k(e)},a.prototype.toRed=function(e){return r(!this.red,"Already a number in reduction context"),r(0===this.negative,"red works only with positives"),e.convertTo(this)._forceRed(e)},a.prototype.fromRed=function(){return r(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},a.prototype._forceRed=function(e){return this.red=e,this},a.prototype.forceRed=function(e){return r(!this.red,"Already a number in reduction context"),this._forceRed(e)},a.prototype.redAdd=function(e){return r(this.red,"redAdd works only with red numbers"),this.red.add(this,e)},a.prototype.redIAdd=function(e){return r(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,e)},a.prototype.redSub=function(e){return r(this.red,"redSub works only with red numbers"),this.red.sub(this,e)},a.prototype.redISub=function(e){return r(this.red,"redISub works only with red numbers"),this.red.isub(this,e)},a.prototype.redShl=function(e){return r(this.red,"redShl works only with red numbers"),this.red.shl(this,e)},a.prototype.redMul=function(e){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.mul(this,e)},a.prototype.redIMul=function(e){return r(this.red,"redMul works only with red numbers"),this.red._verify2(this,e),this.red.imul(this,e)},a.prototype.redSqr=function(){return r(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return r(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return r(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return r(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return r(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(e){return r(this.red&&!e.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,e)};var g={k256:null,p224:null,p192:null,p25519:null};function y(e,t){this.name=e,this.p=new a(t,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function b(){y.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function x(){y.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function w(){y.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function _(){y.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function k(e){if("string"===typeof e){var t=a._prime(e);this.m=t.p,this.prime=t}else r(e.gtn(1),"modulus must be greater than 1"),this.m=e,this.prime=null}function S(e){k.call(this,e),this.shift=this.m.bitLength(),this.shift%26!==0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}y.prototype._tmp=function(){var e=new a(null);return e.words=new Array(Math.ceil(this.n/13)),e},y.prototype.ireduce=function(e){var t,n=e;do{this.split(n,this.tmp),t=(n=(n=this.imulK(n)).iadd(this.tmp)).bitLength()}while(t>this.n);var r=t0?n.isub(this.p):void 0!==n.strip?n.strip():n._strip(),n},y.prototype.split=function(e,t){e.iushrn(this.n,0,t)},y.prototype.imulK=function(e){return e.imul(this.k)},i(b,y),b.prototype.split=function(e,t){for(var n=4194303,r=Math.min(e.length,9),i=0;i>>22,a=o}a>>>=22,e.words[i-10]=a,0===a&&e.length>10?e.length-=10:e.length-=9},b.prototype.imulK=function(e){e.words[e.length]=0,e.words[e.length+1]=0,e.length+=2;for(var t=0,n=0;n>>=26,e.words[n]=i,t=r}return 0!==t&&(e.words[e.length++]=t),e},a._prime=function(e){if(g[e])return g[e];var t;if("k256"===e)t=new b;else if("p224"===e)t=new x;else if("p192"===e)t=new w;else{if("p25519"!==e)throw new Error("Unknown prime "+e);t=new _}return g[e]=t,t},k.prototype._verify1=function(e){r(0===e.negative,"red works only with positives"),r(e.red,"red works only with red numbers")},k.prototype._verify2=function(e,t){r(0===(e.negative|t.negative),"red works only with positives"),r(e.red&&e.red===t.red,"red works only with red numbers")},k.prototype.imod=function(e){return this.prime?this.prime.ireduce(e)._forceRed(this):e.umod(this.m)._forceRed(this)},k.prototype.neg=function(e){return e.isZero()?e.clone():this.m.sub(e)._forceRed(this)},k.prototype.add=function(e,t){this._verify2(e,t);var n=e.add(t);return n.cmp(this.m)>=0&&n.isub(this.m),n._forceRed(this)},k.prototype.iadd=function(e,t){this._verify2(e,t);var n=e.iadd(t);return n.cmp(this.m)>=0&&n.isub(this.m),n},k.prototype.sub=function(e,t){this._verify2(e,t);var n=e.sub(t);return n.cmpn(0)<0&&n.iadd(this.m),n._forceRed(this)},k.prototype.isub=function(e,t){this._verify2(e,t);var n=e.isub(t);return n.cmpn(0)<0&&n.iadd(this.m),n},k.prototype.shl=function(e,t){return this._verify1(e),this.imod(e.ushln(t))},k.prototype.imul=function(e,t){return this._verify2(e,t),this.imod(e.imul(t))},k.prototype.mul=function(e,t){return this._verify2(e,t),this.imod(e.mul(t))},k.prototype.isqr=function(e){return this.imul(e,e.clone())},k.prototype.sqr=function(e){return this.mul(e,e)},k.prototype.sqrt=function(e){if(e.isZero())return e.clone();var t=this.m.andln(3);if(r(t%2===1),3===t){var n=this.m.add(new a(1)).iushrn(2);return this.pow(e,n)}for(var i=this.m.subn(1),o=0;!i.isZero()&&0===i.andln(1);)o++,i.iushrn(1);r(!i.isZero());var s=new a(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new a(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var f=this.pow(u,i),d=this.pow(e,i.addn(1).iushrn(1)),h=this.pow(e,i),p=o;0!==h.cmp(s);){for(var v=h,m=0;0!==v.cmp(s);m++)v=v.redSqr();r(m=0;r--){for(var c=t.words[r],u=l-1;u>=0;u--){var f=c>>u&1;i!==n[0]&&(i=this.sqr(i)),0!==f||0!==o?(o<<=1,o|=f,(4===++s||0===r&&0===u)&&(i=this.mul(i,n[o]),s=0,o=0)):s=0}l=26}return i},k.prototype.convertTo=function(e){var t=e.umod(this.m);return t===e?t.clone():t},k.prototype.convertFrom=function(e){var t=e.clone();return t.red=null,t},a.mont=function(e){return new S(e)},i(S,k),S.prototype.convertTo=function(e){return this.imod(e.ushln(this.shift))},S.prototype.convertFrom=function(e){var t=this.imod(e.mul(this.rinv));return t.red=null,t},S.prototype.imul=function(e,t){if(e.isZero()||t.isZero())return e.words[0]=0,e.length=1,e;var n=e.imul(t),r=n.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=n.isub(r).iushrn(this.shift),a=i;return i.cmp(this.m)>=0?a=i.isub(this.m):i.cmpn(0)<0&&(a=i.iadd(this.m)),a._forceRed(this)},S.prototype.mul=function(e,t){if(e.isZero()||t.isZero())return new a(0)._forceRed(this);var n=e.mul(t),r=n.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=n.isub(r).iushrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},S.prototype.invm=function(e){return this.imod(e._invmp(this.m).mul(this.r2))._forceRed(this)}}(e=n.nmd(e),this)},2692:function(e){"use strict";e.exports=function(e){var t,n,r,i=e.length,a=0;for(t=0;t>>1;if(!(u<=0)){var f,d=i.mallocDouble(2*u*s),h=i.mallocInt32(s);if((s=l(e,u,d,h))>0){if(1===u&&r)a.init(s),f=a.sweepComplete(u,n,0,s,d,h,0,s,d,h);else{var p=i.mallocDouble(2*u*c),v=i.mallocInt32(c);(c=l(t,u,p,v))>0&&(a.init(s+c),f=1===u?a.sweepBipartite(u,n,0,s,d,h,0,c,p,v):o(u,n,r,s,d,h,c,p,v),i.free(p),i.free(v))}i.free(d),i.free(h)}return f}}}function u(e,t){r.push([e,t])}},7333:function(e,t){"use strict";function n(e){return e?function(e,t,n,r,i,a,o,s,l,c,u){return i-r>l-s?function(e,t,n,r,i,a,o,s,l,c,u){for(var f=2*e,d=r,h=f*r;dc-l?r?function(e,t,n,r,i,a,o,s,l,c,u){for(var f=2*e,d=r,h=f*r;d0;){var R=(L-=1)*x,D=_[R],F=_[R+1],N=_[R+2],z=_[R+3],j=_[R+4],B=_[R+5],U=L*w,H=k[U],$=k[U+1],V=1&B,W=!!(16&B),q=u,G=E,Z=M,Y=O;if(V&&(q=M,G=O,Z=u,Y=E),!(2&B&&F>=(N=m(e,D,F,N,q,G,$)))&&!(4&B&&(F=g(e,D,F,N,q,G,H))>=N)){var K=N-F,X=j-z;if(W){if(e*K*(K+X)=p0)&&!(p1>=hi)"),v=u("lo===p0"),m=u("lo>>1,d=2*e,h=f,p=s[d*f+t];c=b?(h=y,p=b):g>=w?(h=m,p=g):(h=x,p=w):b>=w?(h=y,p=b):w>=g?(h=m,p=g):(h=x,p=w);for(var _=d*(u-1),k=d*h,S=0;Sn&&i[f+t]>c;--u,f-=o){for(var d=f,h=f+o,p=0;pd;++d,l+=s)if(i[l+f]===o)if(u===d)u+=1,c+=s;else{for(var h=0;s>h;++h){var p=i[l+h];i[l+h]=i[c],i[c++]=p}var v=a[d];a[d]=a[u],a[u++]=v}return u},"lod;++d,l+=s)if(i[l+f]h;++h){var p=i[l+h];i[l+h]=i[c],i[c++]=p}var v=a[d];a[d]=a[u],a[u++]=v}return u},"lo<=p0":function(e,t,n,r,i,a,o){for(var s=2*e,l=s*n,c=l,u=n,f=e+t,d=n;r>d;++d,l+=s)if(i[l+f]<=o)if(u===d)u+=1,c+=s;else{for(var h=0;s>h;++h){var p=i[l+h];i[l+h]=i[c],i[c++]=p}var v=a[d];a[d]=a[u],a[u++]=v}return u},"hi<=p0":function(e,t,n,r,i,a,o){for(var s=2*e,l=s*n,c=l,u=n,f=e+t,d=n;r>d;++d,l+=s)if(i[l+f]<=o)if(u===d)u+=1,c+=s;else{for(var h=0;s>h;++h){var p=i[l+h];i[l+h]=i[c],i[c++]=p}var v=a[d];a[d]=a[u],a[u++]=v}return u},"loh;++h,l+=s){var p=i[l+f],v=i[l+d];if(pm;++m){var g=i[l+m];i[l+m]=i[c],i[c++]=g}var y=a[h];a[h]=a[u],a[u++]=y}}return u},"lo<=p0&&p0<=hi":function(e,t,n,r,i,a,o){for(var s=2*e,l=s*n,c=l,u=n,f=t,d=e+t,h=n;r>h;++h,l+=s){var p=i[l+f],v=i[l+d];if(p<=o&&o<=v)if(u===h)u+=1,c+=s;else{for(var m=0;s>m;++m){var g=i[l+m];i[l+m]=i[c],i[c++]=g}var y=a[h];a[h]=a[u],a[u++]=y}}return u},"!(lo>=p0)&&!(p1>=hi)":function(e,t,n,r,i,a,o,s){for(var l=2*e,c=l*n,u=c,f=n,d=t,h=e+t,p=n;r>p;++p,c+=l){var v=i[c+d],m=i[c+h];if(!(v>=o)&&!(s>=m))if(f===p)f+=1,u+=l;else{for(var g=0;l>g;++g){var y=i[c+g];i[c+g]=i[u],i[u++]=y}var b=a[p];a[p]=a[f],a[f++]=b}}return f}}},309:function(e){"use strict";e.exports=function(e,r){r<=4*t?n(0,r-1,e):c(0,r-1,e)};var t=32;function n(e,t,n){for(var r=2*(e+1),i=e+1;i<=t;++i){for(var a=n[r++],o=n[r++],s=i,l=r-2;s-- >e;){var c=n[l-2],u=n[l-1];if(cn[t+1])}function l(e,t,n,r){var i=r[e*=2];return i>1,m=v-d,g=v+d,y=h,b=m,x=v,w=g,_=p,k=e+1,S=u-1,T=0;s(y,b,f)&&(T=y,y=b,b=T),s(w,_,f)&&(T=w,w=_,_=T),s(y,x,f)&&(T=y,y=x,x=T),s(b,x,f)&&(T=b,b=x,x=T),s(y,w,f)&&(T=y,y=w,w=T),s(x,w,f)&&(T=x,x=w,w=T),s(b,_,f)&&(T=b,b=_,_=T),s(b,x,f)&&(T=b,b=x,x=T),s(w,_,f)&&(T=w,w=_,_=T);for(var A=f[2*b],E=f[2*b+1],C=f[2*w],M=f[2*w+1],O=2*y,P=2*x,L=2*_,I=2*h,R=2*v,D=2*p,F=0;F<2;++F){var N=f[O+F],z=f[P+F],j=f[L+F];f[I+F]=N,f[R+F]=z,f[D+F]=j}i(m,e,f),i(g,u,f);for(var B=k;B<=S;++B)if(l(B,A,E,f))B!==k&&r(B,k,f),++k;else if(!l(B,C,M,f))for(;;){if(l(S,C,M,f)){l(S,A,E,f)?(a(B,k,S,f),++k,--S):(r(B,S,f),--S);break}if(--S>>1;a(p,E);var C=0,M=0;for(k=0;k=o)v(u,f,M--,O=O-o|0);else if(O>=0)v(l,c,C--,O);else if(O<=-o){O=-O-o|0;for(var P=0;P>>1;a(p,C);var M=0,O=0,P=0;for(S=0;S>1===p[2*S+3]>>1&&(I=2,S+=1),L<0){for(var R=-(L>>1)-1,D=0;D>1)-1,0===I?v(l,c,M--,R):1===I?v(u,f,O--,R):2===I&&v(d,h,P--,R)}},scanBipartite:function(e,t,n,r,i,s,u,f,d,h,g,y){var b=0,x=2*e,w=t,_=t+e,k=1,S=1;r?S=o:k=o;for(var T=i;T>>1;a(p,M);var O=0;for(T=0;T=o?(L=!r,A-=o):(L=!!r,A-=1),L)m(l,c,O++,A);else{var I=y[A],R=x*A,D=g[R+t+1],F=g[R+t+1+e];e:for(var N=0;N>>1;a(p,k);var S=0;for(b=0;b=o)l[S++]=x-o;else{var A=h[x-=1],E=m*x,C=d[E+t+1],M=d[E+t+1+e];e:for(var O=0;O=0;--O)if(l[O]===x){for(R=O+1;R0;){for(var h=n.pop(),p=(u=-1,f=-1,l=o[s=n.pop()],1);p=0||(t.flip(s,h),i(e,t,n,u,s,f),i(e,t,n,s,f,u),i(e,t,n,f,h,u),i(e,t,n,h,u,f))}}},7098:function(e,t,n){"use strict";var r=n(5070);function i(e,t,n,r,i,a,o){this.cells=e,this.neighbor=t,this.flags=r,this.constraint=n,this.active=i,this.next=a,this.boundary=o}function a(e,t){return e[0]-t[0]||e[1]-t[1]||e[2]-t[2]}e.exports=function(e,t,n){var r=function(e,t){for(var n=e.cells(),r=n.length,o=0;o0||l.length>0;){for(;s.length>0;){var h=s.pop();if(c[h]!==-o){c[h]=o,u[h];for(var p=0;p<3;++p){var v=d[3*h+p];v>=0&&0===c[v]&&(f[3*h+p]?l.push(v):(s.push(v),c[v]=o))}}}var m=l;l=s,s=m,l.length=0,o=-o}var g=function(e,t,n){for(var r=0,i=0;i1&&i(n[d[h-2]],n[d[h-1]],a)>0;)e.push([d[h-1],d[h-2],o]),h-=1;d.length=h,d.push(o);var p=f.upperIds;for(h=p.length;h>1&&i(n[p[h-2]],n[p[h-1]],a)<0;)e.push([p[h-2],p[h-1],o]),h-=1;p.length=h,p.push(o)}}function f(e,t){var n;return(n=e.a[0]v[0]&&i.push(new s(v,p,2,c),new s(p,v,1,c))}i.sort(l);for(var m=i[0].a[0]-(1+Math.abs(i[0].a[0]))*Math.pow(2,-52),g=[new o([m,1],[m,0],-1,[],[],[],[])],y=[],b=(c=0,i.length);c=0}}(),a.removeTriangle=function(e,t,n){var r=this.stars;o(r[e],t,n),o(r[t],n,e),o(r[n],e,t)},a.addTriangle=function(e,t,n){var r=this.stars;r[e].push(t,n),r[t].push(n,e),r[n].push(e,t)},a.opposite=function(e,t){for(var n=this.stars[t],r=1,i=n.length;rt[2]?1:0)}function g(e,t,n){if(0!==e.length){if(t)for(var r=0;r=0;--a){var b=t[u=(E=r[a])[0]],x=b[0],w=b[1],_=e[x],k=e[w];if((_[0]-k[0]||_[1]-k[1])<0){var S=x;x=w,w=S}b[0]=x;var T,A=b[1]=E[1];for(i&&(T=b[2]);a>0&&r[a-1][0]===u;){var E,C=(E=r[--a])[1];i?t.push([A,C,T]):t.push([A,C]),A=C}i?t.push([A,w,T]):t.push([A,w])}return d}(e,t,d,m,n),b=p(e,y);return g(t,b,n),!!b||d.length>0||m.length>0}},5528:function(e,t,n){"use strict";e.exports=function(e,t,n,r){var a=s(t,e),f=s(r,n),d=u(a,f);if(0===o(d))return null;var h=s(e,n),p=u(f,h),v=i(p,d),m=c(a,v);return l(e,m)};var r=n(3962),i=n(9189),a=n(4354),o=n(4951),s=n(6695),l=n(7584),c=n(4469);function u(e,t){return a(r(e[0],t[1]),r(e[1],t[0]))}},5692:function(e){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],"rainbow-soft":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],"freesurface-blue":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],"freesurface-red":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],"velocity-blue":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],"velocity-green":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},9156:function(e,t,n){"use strict";var r=n(5692),i=n(3578);function a(e){return[e[0]/255,e[1]/255,e[2]/255,e[3]]}function o(e){for(var t,n="#",r=0;r<3;++r)n+=("00"+(t=(t=e[r]).toString(16))).substr(t.length);return n}function s(e){return"rgba("+e.join(",")+")"}e.exports=function(e){var t,n,l,c,u,f,d,h,p,v;if(e||(e={}),h=(e.nshades||72)-1,d=e.format||"hex",(f=e.colormap)||(f="jet"),"string"===typeof f){if(f=f.toLowerCase(),!r[f])throw Error(f+" not a supported colorscale");u=r[f]}else{if(!Array.isArray(f))throw Error("unsupported colormap option",f);u=f.slice()}if(u.length>h+1)throw new Error(f+" map requires nshades to be at least size "+u.length);p=Array.isArray(e.alpha)?2!==e.alpha.length?[1,1]:e.alpha.slice():"number"===typeof e.alpha?[e.alpha,e.alpha]:[1,1],t=u.map((function(e){return Math.round(e.index*h)})),p[0]=Math.min(Math.max(p[0],0),1),p[1]=Math.min(Math.max(p[1],0),1);var m=u.map((function(e,t){var n=u[t].index,r=u[t].rgb.slice();return 4===r.length&&r[3]>=0&&r[3]<=1||(r[3]=p[0]+(p[1]-p[0])*n),r})),g=[];for(v=0;v0||l(e,t,a)?-1:1:0===s?c>0||l(e,t,n)?1:-1:i(c-s)}var f=r(e,t,n);return f>0?o>0&&r(e,t,a)>0?1:-1:f<0?o>0||r(e,t,a)>0?1:-1:r(e,t,a)>0||l(e,t,n)?1:-1};var r=n(417),i=n(7538),a=n(87),o=n(2019),s=n(9662);function l(e,t,n){var r=a(e[0],-t[0]),i=a(e[1],-t[1]),l=a(n[0],-t[0]),c=a(n[1],-t[1]),u=s(o(r,l),o(i,c));return u[u.length-1]>=0}},7538:function(e){"use strict";e.exports=function(e){return e<0?-1:e>0?1:0}},9209:function(e){e.exports=function(e,r){var i=e.length,a=e.length-r.length;if(a)return a;switch(i){case 0:return 0;case 1:return e[0]-r[0];case 2:return e[0]+e[1]-r[0]-r[1]||t(e[0],e[1])-t(r[0],r[1]);case 3:var o=e[0]+e[1],s=r[0]+r[1];if(a=o+e[2]-(s+r[2]))return a;var l=t(e[0],e[1]),c=t(r[0],r[1]);return t(l,e[2])-t(c,r[2])||t(l+e[2],o)-t(c+r[2],s);case 4:var u=e[0],f=e[1],d=e[2],h=e[3],p=r[0],v=r[1],m=r[2],g=r[3];return u+f+d+h-(p+v+m+g)||t(u,f,d,h)-t(p,v,m,g,p)||t(u+f,u+d,u+h,f+d,f+h,d+h)-t(p+v,p+m,p+g,v+m,v+g,m+g)||t(u+f+d,u+f+h,u+d+h,f+d+h)-t(p+v+m,p+v+g,p+m+g,v+m+g);default:for(var y=e.slice().sort(n),b=r.slice().sort(n),x=0;xe[n][0]&&(n=r);return tn?[[n],[t]]:[[t]]}},8722:function(e,t,n){"use strict";e.exports=function(e){var t=r(e),n=t.length;if(n<=2)return[];for(var i=new Array(n),a=t[n-1],o=0;o=t[l]&&(s+=1);a[o]=s}}return e}(r(a,!0),n)}};var r=n(2183),i=n(2153)},9680:function(e){"use strict";e.exports=function(e,t,n,r,i,a){var o=i-1,s=i*i,l=o*o,c=(1+2*i)*l,u=i*l,f=s*(3-2*i),d=s*o;if(e.length){a||(a=new Array(e.length));for(var h=e.length-1;h>=0;--h)a[h]=c*e[h]+u*t[h]+f*n[h]+d*r[h];return a}return c*e+u*t+f*n+d*r},e.exports.derivative=function(e,t,n,r,i,a){var o=6*i*i-6*i,s=3*i*i-4*i+1,l=-6*i*i+6*i,c=3*i*i-2*i;if(e.length){a||(a=new Array(e.length));for(var u=e.length-1;u>=0;--u)a[u]=o*e[u]+s*t[u]+l*n[u]+c*r[u];return a}return o*e+s*t+l*n[u]+c*r}},4419:function(e,t,n){"use strict";var r=n(2183),i=n(1215);function a(e,t){this.point=e,this.index=t}function o(e,t){for(var n=e.point,r=t.point,i=n.length,a=0;a=2)return!1;e[n]=r}return!0})):w.filter((function(e){for(var t=0;t<=s;++t){var n=g[e[t]];if(n<0)return!1;e[t]=n}return!0})),1&s)for(u=0;u>>31},e.exports.exponent=function(t){return(e.exports.hi(t)<<1>>>21)-1023},e.exports.fraction=function(t){var n=e.exports.lo(t),r=e.exports.hi(t),i=1048575&r;return 2146435072&r&&(i+=1<<20),[n,i]},e.exports.denormalized=function(t){return!(2146435072&e.exports.hi(t))}},3094:function(e){"use strict";function t(e,n,r){var i=0|e[r];if(i<=0)return[];var a,o=new Array(i);if(r===e.length-1)for(a=0;a0)return function(e,t){var n,r;for(n=new Array(e),r=0;r=n-1){d=l.length-1;var p=e-t[n-1];for(h=0;h=n-1)for(var u=s.length-1,f=(t[n-1],0);f=0;--n)if(e[--t])return!1;return!0},s.jump=function(e){var t=this.lastT(),n=this.dimension;if(!(e0;--f)r.push(a(l[f-1],c[f-1],arguments[f])),i.push(0)}},s.push=function(e){var t=this.lastT(),n=this.dimension;if(!(e1e-6?1/s:0;this._time.push(e);for(var d=n;d>0;--d){var h=a(c[d-1],u[d-1],arguments[d]);r.push(h),i.push((h-r[o++])*f)}}},s.set=function(e){var t=this.dimension;if(!(e0;--l)n.push(a(o[l-1],s[l-1],arguments[l])),r.push(0)}},s.move=function(e){var t=this.lastT(),n=this.dimension;if(!(e<=t||arguments.length!==n+1)){var r=this._state,i=this._velocity,o=r.length-this.dimension,s=this.bounds,l=s[0],c=s[1],u=e-t,f=u>1e-6?1/u:0;this._time.push(e);for(var d=n;d>0;--d){var h=arguments[d];r.push(a(l[d-1],c[d-1],r[o++]+h)),i.push(h*f)}}},s.idle=function(e){var t=this.lastT();if(!(e=0;--f)r.push(a(l[f],c[f],r[o]+u*i[o])),i.push(0),o+=1}}},7080:function(e){"use strict";function t(e,t,n,r,i,a){this._color=e,this.key=t,this.value=n,this.left=r,this.right=i,this._count=a}function n(e){return new t(e._color,e.key,e.value,e.left,e.right,e._count)}function r(e,n){return new t(e,n.key,n.value,n.left,n.right,n._count)}function i(e){e._count=1+(e.left?e.left._count:0)+(e.right?e.right._count:0)}function a(e,t){this._compare=e,this.root=t}e.exports=function(e){return new a(e||h,null)};var o=a.prototype;function s(e,t){var n;return t.left&&(n=s(e,t.left))?n:(n=e(t.key,t.value))||(t.right?s(e,t.right):void 0)}function l(e,t,n,r){if(t(e,r.key)<=0){var i;if(r.left&&(i=l(e,t,n,r.left)))return i;if(i=n(r.key,r.value))return i}if(r.right)return l(e,t,n,r.right)}function c(e,t,n,r,i){var a,o=n(e,i.key),s=n(t,i.key);if(o<=0){if(i.left&&(a=c(e,t,n,r,i.left)))return a;if(s>0&&(a=r(i.key,i.value)))return a}if(s>0&&i.right)return c(e,t,n,r,i.right)}function u(e,t){this.tree=e,this._stack=t}Object.defineProperty(o,"keys",{get:function(){var e=[];return this.forEach((function(t,n){e.push(t)})),e}}),Object.defineProperty(o,"values",{get:function(){var e=[];return this.forEach((function(t,n){e.push(n)})),e}}),Object.defineProperty(o,"length",{get:function(){return this.root?this.root._count:0}}),o.insert=function(e,n){for(var o=this._compare,s=this.root,l=[],c=[];s;){var u=o(e,s.key);l.push(s),c.push(u),s=u<=0?s.left:s.right}l.push(new t(0,e,n,null,null,1));for(var f=l.length-2;f>=0;--f)s=l[f],c[f]<=0?l[f]=new t(s._color,s.key,s.value,l[f+1],s.right,s._count+1):l[f]=new t(s._color,s.key,s.value,s.left,l[f+1],s._count+1);for(f=l.length-1;f>1;--f){var d=l[f-1];if(s=l[f],1===d._color||1===s._color)break;var h=l[f-2];if(h.left===d)if(d.left===s){if(!(p=h.right)||0!==p._color){h._color=0,h.left=d.right,d._color=1,d.right=h,l[f-2]=d,l[f-1]=s,i(h),i(d),f>=3&&((v=l[f-3]).left===h?v.left=d:v.right=d);break}d._color=1,h.right=r(1,p),h._color=0,f-=1}else{if(!(p=h.right)||0!==p._color){d.right=s.left,h._color=0,h.left=s.right,s._color=1,s.left=d,s.right=h,l[f-2]=s,l[f-1]=d,i(h),i(d),i(s),f>=3&&((v=l[f-3]).left===h?v.left=s:v.right=s);break}d._color=1,h.right=r(1,p),h._color=0,f-=1}else if(d.right===s){if(!(p=h.left)||0!==p._color){h._color=0,h.right=d.left,d._color=1,d.left=h,l[f-2]=d,l[f-1]=s,i(h),i(d),f>=3&&((v=l[f-3]).right===h?v.right=d:v.left=d);break}d._color=1,h.left=r(1,p),h._color=0,f-=1}else{var p;if(!(p=h.left)||0!==p._color){var v;d.left=s.right,h._color=0,h.right=s.left,s._color=1,s.right=d,s.left=h,l[f-2]=s,l[f-1]=d,i(h),i(d),i(s),f>=3&&((v=l[f-3]).right===h?v.right=s:v.left=s);break}d._color=1,h.left=r(1,p),h._color=0,f-=1}}return l[0]._color=1,new a(o,l[0])},o.forEach=function(e,t,n){if(this.root)switch(arguments.length){case 1:return s(e,this.root);case 2:return l(t,this._compare,e,this.root);case 3:if(this._compare(t,n)>=0)return;return c(t,n,this._compare,e,this.root)}},Object.defineProperty(o,"begin",{get:function(){for(var e=[],t=this.root;t;)e.push(t),t=t.left;return new u(this,e)}}),Object.defineProperty(o,"end",{get:function(){for(var e=[],t=this.root;t;)e.push(t),t=t.right;return new u(this,e)}}),o.at=function(e){if(e<0)return new u(this,[]);for(var t=this.root,n=[];;){if(n.push(t),t.left){if(e=t.right._count)break;t=t.right}return new u(this,[])},o.ge=function(e){for(var t=this._compare,n=this.root,r=[],i=0;n;){var a=t(e,n.key);r.push(n),a<=0&&(i=r.length),n=a<=0?n.left:n.right}return r.length=i,new u(this,r)},o.gt=function(e){for(var t=this._compare,n=this.root,r=[],i=0;n;){var a=t(e,n.key);r.push(n),a<0&&(i=r.length),n=a<0?n.left:n.right}return r.length=i,new u(this,r)},o.lt=function(e){for(var t=this._compare,n=this.root,r=[],i=0;n;){var a=t(e,n.key);r.push(n),a>0&&(i=r.length),n=a<=0?n.left:n.right}return r.length=i,new u(this,r)},o.le=function(e){for(var t=this._compare,n=this.root,r=[],i=0;n;){var a=t(e,n.key);r.push(n),a>=0&&(i=r.length),n=a<0?n.left:n.right}return r.length=i,new u(this,r)},o.find=function(e){for(var t=this._compare,n=this.root,r=[];n;){var i=t(e,n.key);if(r.push(n),0===i)return new u(this,r);n=i<=0?n.left:n.right}return new u(this,[])},o.remove=function(e){var t=this.find(e);return t?t.remove():this},o.get=function(e){for(var t=this._compare,n=this.root;n;){var r=t(e,n.key);if(0===r)return n.value;n=r<=0?n.left:n.right}};var f=u.prototype;function d(e,t){e.key=t.key,e.value=t.value,e.left=t.left,e.right=t.right,e._color=t._color,e._count=t._count}function h(e,t){return et?1:0}Object.defineProperty(f,"valid",{get:function(){return this._stack.length>0}}),Object.defineProperty(f,"node",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1]:null},enumerable:!0}),f.clone=function(){return new u(this.tree,this._stack.slice())},f.remove=function(){var e=this._stack;if(0===e.length)return this.tree;var o=new Array(e.length),s=e[e.length-1];o[o.length-1]=new t(s._color,s.key,s.value,s.left,s.right,s._count);for(var l=e.length-2;l>=0;--l)(s=e[l]).left===e[l+1]?o[l]=new t(s._color,s.key,s.value,o[l+1],s.right,s._count):o[l]=new t(s._color,s.key,s.value,s.left,o[l+1],s._count);if((s=o[o.length-1]).left&&s.right){var c=o.length;for(s=s.left;s.right;)o.push(s),s=s.right;var u=o[c-1];for(o.push(new t(s._color,u.key,u.value,s.left,s.right,s._count)),o[c-1].key=s.key,o[c-1].value=s.value,l=o.length-2;l>=c;--l)s=o[l],o[l]=new t(s._color,s.key,s.value,s.left,o[l+1],s._count);o[c-1].left=o[c]}if(0===(s=o[o.length-1])._color){var f=o[o.length-2];for(f.left===s?f.left=null:f.right===s&&(f.right=null),o.pop(),l=0;l=0;--l){if(t=e[l],0===l)return void(t._color=1);if((a=e[l-1]).left===t){if((o=a.right).right&&0===o.right._color)return s=(o=a.right=n(o)).right=n(o.right),a.right=o.left,o.left=a,o.right=s,o._color=a._color,t._color=1,a._color=1,s._color=1,i(a),i(o),l>1&&((c=e[l-2]).left===a?c.left=o:c.right=o),void(e[l-1]=o);if(o.left&&0===o.left._color)return s=(o=a.right=n(o)).left=n(o.left),a.right=s.left,o.left=s.right,s.left=a,s.right=o,s._color=a._color,a._color=1,o._color=1,t._color=1,i(a),i(o),i(s),l>1&&((c=e[l-2]).left===a?c.left=s:c.right=s),void(e[l-1]=s);if(1===o._color){if(0===a._color)return a._color=1,void(a.right=r(0,o));a.right=r(0,o);continue}o=n(o),a.right=o.left,o.left=a,o._color=a._color,a._color=0,i(a),i(o),l>1&&((c=e[l-2]).left===a?c.left=o:c.right=o),e[l-1]=o,e[l]=a,l+11&&((c=e[l-2]).right===a?c.right=o:c.left=o),void(e[l-1]=o);if(o.right&&0===o.right._color)return s=(o=a.left=n(o)).right=n(o.right),a.left=s.right,o.right=s.left,s.right=a,s.left=o,s._color=a._color,a._color=1,o._color=1,t._color=1,i(a),i(o),i(s),l>1&&((c=e[l-2]).right===a?c.right=s:c.left=s),void(e[l-1]=s);if(1===o._color){if(0===a._color)return a._color=1,void(a.left=r(0,o));a.left=r(0,o);continue}var c;o=n(o),a.left=o.right,o.right=a,o._color=a._color,a._color=0,i(a),i(o),l>1&&((c=e[l-2]).right===a?c.right=o:c.left=o),e[l-1]=o,e[l]=a,l+10)return this._stack[this._stack.length-1].key},enumerable:!0}),Object.defineProperty(f,"value",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].value},enumerable:!0}),Object.defineProperty(f,"index",{get:function(){var e=0,t=this._stack;if(0===t.length){var n=this.tree.root;return n?n._count:0}t[t.length-1].left&&(e=t[t.length-1].left._count);for(var r=t.length-2;r>=0;--r)t[r+1]===t[r].right&&(++e,t[r].left&&(e+=t[r].left._count));return e},enumerable:!0}),f.next=function(){var e=this._stack;if(0!==e.length){var t=e[e.length-1];if(t.right)for(t=t.right;t;)e.push(t),t=t.left;else for(e.pop();e.length>0&&e[e.length-1].right===t;)t=e[e.length-1],e.pop()}},Object.defineProperty(f,"hasNext",{get:function(){var e=this._stack;if(0===e.length)return!1;if(e[e.length-1].right)return!0;for(var t=e.length-1;t>0;--t)if(e[t-1].left===e[t])return!0;return!1}}),f.update=function(e){var n=this._stack;if(0===n.length)throw new Error("Can't update empty node!");var r=new Array(n.length),i=n[n.length-1];r[r.length-1]=new t(i._color,i.key,e,i.left,i.right,i._count);for(var o=n.length-2;o>=0;--o)(i=n[o]).left===n[o+1]?r[o]=new t(i._color,i.key,i.value,r[o+1],i.right,i._count):r[o]=new t(i._color,i.key,i.value,i.left,r[o+1],i._count);return new a(this.tree._compare,r[0])},f.prev=function(){var e=this._stack;if(0!==e.length){var t=e[e.length-1];if(t.left)for(t=t.left;t;)e.push(t),t=t.right;else for(e.pop();e.length>0&&e[e.length-1].left===t;)t=e[e.length-1],e.pop()}},Object.defineProperty(f,"hasPrev",{get:function(){var e=this._stack;if(0===e.length)return!1;if(e[e.length-1].left)return!0;for(var t=e.length-1;t>0;--t)if(e[t-1].right===e[t])return!0;return!1}})},7453:function(e,t,n){"use strict";e.exports=function(e,t){var n=new u(e);return n.update(t),n};var r=n(9557),i=n(1681),a=n(1011),o=n(2864),s=n(8468),l=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);function c(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}function u(e){this.gl=e,this.pixelRatio=1,this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.autoTicks=!0,this.tickSpacing=[1,1,1],this.tickEnable=[!0,!0,!0],this.tickFont=["sans-serif","sans-serif","sans-serif"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickAlign=["auto","auto","auto"],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[10,10,10],this.lastCubeProps={cubeEdges:[0,0,0],axis:[0,0,0]},this.labels=["x","y","z"],this.labelEnable=[!0,!0,!0],this.labelFont="sans-serif",this.labelSize=[20,20,20],this.labelAngle=[0,0,0],this.labelAlign=["auto","auto","auto"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[10,10,10],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[0,0,0],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!1,!1,!1],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._firstInit=!0,this._text=null,this._lines=null,this._background=a(e)}var f=u.prototype;function d(){this.primalOffset=[0,0,0],this.primalMinor=[0,0,0],this.mirrorOffset=[0,0,0],this.mirrorMinor=[0,0,0]}f.update=function(e){function t(t,n,r){if(r in e){var i,a=e[r],o=this[r];(t?Array.isArray(a)&&Array.isArray(a[0]):Array.isArray(a))?this[r]=i=[n(a[0]),n(a[1]),n(a[2])]:this[r]=i=[n(a),n(a),n(a)];for(var s=0;s<3;++s)if(i[s]!==o[s])return!0}return!1}e=e||{};var n,a=t.bind(this,!1,Number),o=t.bind(this,!1,Boolean),l=t.bind(this,!1,String),c=t.bind(this,!0,(function(e){if(Array.isArray(e)){if(3===e.length)return[+e[0],+e[1],+e[2],1];if(4===e.length)return[+e[0],+e[1],+e[2],+e[3]]}return[0,0,0,1]})),u=!1,f=!1;if("bounds"in e)for(var d=e.bounds,h=0;h<2;++h)for(var p=0;p<3;++p)d[h][p]!==this.bounds[h][p]&&(f=!0),this.bounds[h][p]=d[h][p];if("ticks"in e)for(n=e.ticks,u=!0,this.autoTicks=!1,h=0;h<3;++h)this.tickSpacing[h]=0;else a("tickSpacing")&&(this.autoTicks=!0,f=!0);if(this._firstInit&&("ticks"in e||"tickSpacing"in e||(this.autoTicks=!0),f=!0,u=!0,this._firstInit=!1),f&&this.autoTicks&&(n=s.create(this.bounds,this.tickSpacing),u=!0),u){for(h=0;h<3;++h)n[h].sort((function(e,t){return e.x-t.x}));s.equal(n,this.ticks)?u=!1:this.ticks=n}o("tickEnable"),l("tickFont")&&(u=!0),a("tickSize"),a("tickAngle"),a("tickPad"),c("tickColor");var v=l("labels");l("labelFont")&&(v=!0),o("labelEnable"),a("labelSize"),a("labelPad"),c("labelColor"),o("lineEnable"),o("lineMirror"),a("lineWidth"),c("lineColor"),o("lineTickEnable"),o("lineTickMirror"),a("lineTickLength"),a("lineTickWidth"),c("lineTickColor"),o("gridEnable"),a("gridWidth"),c("gridColor"),o("zeroEnable"),c("zeroLineColor"),a("zeroLineWidth"),o("backgroundEnable"),c("backgroundColor"),this._text?this._text&&(v||u)&&this._text.update(this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont):this._text=r(this.gl,this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont),this._lines&&u&&(this._lines.dispose(),this._lines=null),this._lines||(this._lines=i(this.gl,this.bounds,this.ticks))};var h=[new d,new d,new d];function p(e,t,n,r,i){for(var a=e.primalOffset,o=e.primalMinor,s=e.mirrorOffset,l=e.mirrorMinor,c=r[t],u=0;u<3;++u)if(t!==u){var f=a,d=s,h=o,p=l;c&1<0?(h[u]=-1,p[u]=0):(h[u]=0,p[u]=1)}}var v=[0,0,0],m={model:l,view:l,projection:l,_ortho:!1};f.isOpaque=function(){return!0},f.isTransparent=function(){return!1},f.drawTransparent=function(e){};var g=[0,0,0],y=[0,0,0],b=[0,0,0];f.draw=function(e){e=e||m;for(var t=this.gl,n=e.model||l,r=e.view||l,i=e.projection||l,a=this.bounds,s=e._ortho||!1,u=o(n,r,i,a,s),f=u.cubeEdges,d=u.axis,x=r[12],w=r[13],_=r[14],k=r[15],S=(s?2:1)*this.pixelRatio*(i[3]*x+i[7]*w+i[11]*_+i[15]*k)/t.drawingBufferHeight,T=0;T<3;++T)this.lastCubeProps.cubeEdges[T]=f[T],this.lastCubeProps.axis[T]=d[T];var A=h;for(T=0;T<3;++T)p(h[T],T,this.bounds,f,d);t=this.gl;var E,C,M,O=v;for(T=0;T<3;++T)this.backgroundEnable[T]?O[T]=d[T]:O[T]=0;for(this._background.draw(n,r,i,a,O,this.backgroundColor),this._lines.bind(n,r,i,this),T=0;T<3;++T){var P=[0,0,0];d[T]>0?P[T]=a[1][T]:P[T]=a[0][T];for(var L=0;L<2;++L){var I=(T+1+L)%3,R=(T+1+(1^L))%3;this.gridEnable[I]&&this._lines.drawGrid(I,R,this.bounds,P,this.gridColor[I],this.gridWidth[I]*this.pixelRatio)}for(L=0;L<2;++L)I=(T+1+L)%3,R=(T+1+(1^L))%3,this.zeroEnable[R]&&Math.min(a[0][R],a[1][R])<=0&&Math.max(a[0][R],a[1][R])>=0&&this._lines.drawZero(I,R,this.bounds,P,this.zeroLineColor[R],this.zeroLineWidth[R]*this.pixelRatio)}for(T=0;T<3;++T){this.lineEnable[T]&&this._lines.drawAxisLine(T,this.bounds,A[T].primalOffset,this.lineColor[T],this.lineWidth[T]*this.pixelRatio),this.lineMirror[T]&&this._lines.drawAxisLine(T,this.bounds,A[T].mirrorOffset,this.lineColor[T],this.lineWidth[T]*this.pixelRatio);var D=c(g,A[T].primalMinor),F=c(y,A[T].mirrorMinor),N=this.lineTickLength;for(L=0;L<3;++L){var z=S/n[5*L];D[L]*=N[L]*z,F[L]*=N[L]*z}this.lineTickEnable[T]&&this._lines.drawAxisTicks(T,A[T].primalOffset,D,this.lineTickColor[T],this.lineTickWidth[T]*this.pixelRatio),this.lineTickMirror[T]&&this._lines.drawAxisTicks(T,A[T].mirrorOffset,F,this.lineTickColor[T],this.lineTickWidth[T]*this.pixelRatio)}function j(e){(M=[0,0,0])[e]=1}function B(e,t,n){var r=(e+1)%3,i=(e+2)%3,a=t[r],o=t[i],s=n[r],l=n[i];a>0&&l>0||a>0&&l<0||a<0&&l>0||a<0&&l<0?j(r):(o>0&&s>0||o>0&&s<0||o<0&&s>0||o<0&&s<0)&&j(i)}for(this._lines.unbind(),this._text.bind(n,r,i,this.pixelRatio),T=0;T<3;++T){var U=A[T].primalMinor,H=A[T].mirrorMinor,$=c(b,A[T].primalOffset);for(L=0;L<3;++L)this.lineTickEnable[T]&&($[L]+=S*U[L]*Math.max(this.lineTickLength[L],0)/n[5*L]);var V=[0,0,0];if(V[T]=1,this.tickEnable[T]){for(-3600===this.tickAngle[T]?(this.tickAngle[T]=0,this.tickAlign[T]="auto"):this.tickAlign[T]=-1,C=1,"auto"===(E=[this.tickAlign[T],.5,C])[0]?E[0]=0:E[0]=parseInt(""+E[0]),M=[0,0,0],B(T,U,H),L=0;L<3;++L)$[L]+=S*U[L]*this.tickPad[L]/n[5*L];this._text.drawTicks(T,this.tickSize[T],this.tickAngle[T],$,this.tickColor[T],V,M,E)}if(this.labelEnable[T]){for(C=0,M=[0,0,0],this.labels[T].length>4&&(j(T),C=1),"auto"===(E=[this.labelAlign[T],.5,C])[0]?E[0]=0:E[0]=parseInt(""+E[0]),L=0;L<3;++L)$[L]+=S*U[L]*this.labelPad[L]/n[5*L];$[T]+=.5*(a[0][T]+a[1][T]),this._text.drawLabel(T,this.labelSize[T],this.labelAngle[T],$,this.labelColor[T],[0,0,0],M,E)}}this._text.unbind()},f.dispose=function(){this._text.dispose(),this._lines.dispose(),this._background.dispose(),this._lines=null,this._text=null,this._background=null,this.gl=null}},1011:function(e,t,n){"use strict";e.exports=function(e){for(var t=[],n=[],s=0,l=0;l<3;++l)for(var c=(l+1)%3,u=(l+2)%3,f=[0,0,0],d=[0,0,0],h=-1;h<=1;h+=2){n.push(s,s+2,s+1,s+1,s+2,s+3),f[l]=h,d[l]=h;for(var p=-1;p<=1;p+=2){f[c]=p;for(var v=-1;v<=1;v+=2)f[u]=v,t.push(f[0],f[1],f[2],d[0],d[1],d[2]),s+=1}var m=c;c=u,u=m}var g=r(e,new Float32Array(t)),y=r(e,new Uint16Array(n),e.ELEMENT_ARRAY_BUFFER),b=i(e,[{buffer:g,type:e.FLOAT,size:3,offset:0,stride:24},{buffer:g,type:e.FLOAT,size:3,offset:12,stride:24}],y),x=a(e);return x.attributes.position.location=0,x.attributes.normal.location=1,new o(e,g,b,x)};var r=n(5827),i=n(2944),a=n(1943).bg;function o(e,t,n,r){this.gl=e,this.buffer=t,this.vao=n,this.shader=r}var s=o.prototype;s.draw=function(e,t,n,r,i,a){for(var o=!1,s=0;s<3;++s)o=o||i[s];if(o){var l=this.gl;l.enable(l.POLYGON_OFFSET_FILL),l.polygonOffset(1,2),this.shader.bind(),this.shader.uniforms={model:e,view:t,projection:n,bounds:r,enable:i,colors:a},this.vao.bind(),this.vao.draw(this.gl.TRIANGLES,36),this.vao.unbind(),l.disable(l.POLYGON_OFFSET_FILL)}},s.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},2864:function(e,t,n){"use strict";e.exports=function(e,t,n,a,h){i(s,t,e),i(s,n,s);for(var y=0,b=0;b<2;++b){u[2]=a[b][2];for(var x=0;x<2;++x){u[1]=a[x][1];for(var w=0;w<2;++w)u[0]=a[w][0],d(l[y],u,s),y+=1}}var _=-1;for(b=0;b<8;++b){for(var k=l[b][3],S=0;S<3;++S)c[b][S]=l[b][S]/k;h&&(c[b][2]*=-1),k<0&&(_<0||c[b][2]C&&(_|=1<C&&(_|=1<c[b][1])&&(F=b);var N=-1;for(b=0;b<3;++b)(j=F^1<c[z][0]&&(z=j))}var B=v;B[0]=B[1]=B[2]=0,B[r.log2(N^F)]=F&N,B[r.log2(F^z)]=F&z;var U=7^z;U===_||U===D?(U=7^N,B[r.log2(z^U)]=U&z):B[r.log2(N^U)]=U&N;var H=m,$=_;for(T=0;T<3;++T)H[T]=$&1< HALF_PI) && (b <= ONE_AND_HALF_PI)) ?\n b - PI :\n b;\n}\n\nfloat look_horizontal_or_vertical(float a, float ratio) {\n // ratio controls the ratio between being horizontal to (vertical + horizontal)\n // if ratio is set to 0.5 then it is 50%, 50%.\n // when using a higher ratio e.g. 0.75 the result would\n // likely be more horizontal than vertical.\n\n float b = positive_angle(a);\n\n return\n (b < ( ratio) * HALF_PI) ? 0.0 :\n (b < (2.0 - ratio) * HALF_PI) ? -HALF_PI :\n (b < (2.0 + ratio) * HALF_PI) ? 0.0 :\n (b < (4.0 - ratio) * HALF_PI) ? HALF_PI :\n 0.0;\n}\n\nfloat roundTo(float a, float b) {\n return float(b * floor((a + 0.5 * b) / b));\n}\n\nfloat look_round_n_directions(float a, int n) {\n float b = positive_angle(a);\n float div = TWO_PI / float(n);\n float c = roundTo(b, div);\n return look_upwards(c);\n}\n\nfloat applyAlignOption(float rawAngle, float delta) {\n return\n (option > 2) ? look_round_n_directions(rawAngle + delta, option) : // option 3-n: round to n directions\n (option == 2) ? look_horizontal_or_vertical(rawAngle + delta, hv_ratio) : // horizontal or vertical\n (option == 1) ? rawAngle + delta : // use free angle, and flip to align with one direction of the axis\n (option == 0) ? look_upwards(rawAngle) : // use free angle, and stay upwards\n (option ==-1) ? 0.0 : // useful for backward compatibility, all texts remains horizontal\n rawAngle; // otherwise return back raw input angle\n}\n\nbool isAxisTitle = (axis.x == 0.0) &&\n (axis.y == 0.0) &&\n (axis.z == 0.0);\n\nvoid main() {\n //Compute world offset\n float axisDistance = position.z;\n vec3 dataPosition = axisDistance * axis + offset;\n\n float beta = angle; // i.e. user defined attributes for each tick\n\n float axisAngle;\n float clipAngle;\n float flip;\n\n if (enableAlign) {\n axisAngle = (isAxisTitle) ? HALF_PI :\n computeViewAngle(dataPosition, dataPosition + axis);\n clipAngle = computeViewAngle(dataPosition, dataPosition + alignDir);\n\n axisAngle += (sin(axisAngle) < 0.0) ? PI : 0.0;\n clipAngle += (sin(clipAngle) < 0.0) ? PI : 0.0;\n\n flip = (dot(vec2(cos(axisAngle), sin(axisAngle)),\n vec2(sin(clipAngle),-cos(clipAngle))) > 0.0) ? 1.0 : 0.0;\n\n beta += applyAlignOption(clipAngle, flip * PI);\n }\n\n //Compute plane offset\n vec2 planeCoord = position.xy * pixelScale;\n\n mat2 planeXform = scale * mat2(\n cos(beta), sin(beta),\n -sin(beta), cos(beta)\n );\n\n vec2 viewOffset = 2.0 * planeXform * planeCoord / resolution;\n\n //Compute clip position\n vec3 clipPosition = project(dataPosition);\n\n //Apply text offset in clip coordinates\n clipPosition += vec3(viewOffset, 0.0);\n\n //Done\n gl_Position = vec4(clipPosition, 1.0);\n}"]),l=r(["precision highp float;\n#define GLSLIFY 1\n\nuniform vec4 color;\nvoid main() {\n gl_FragColor = color;\n}"]);t.f=function(e){return i(e,s,l,null,[{name:"position",type:"vec3"}])};var c=r(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\nattribute vec3 normal;\n\nuniform mat4 model, view, projection;\nuniform vec3 enable;\nuniform vec3 bounds[2];\n\nvarying vec3 colorChannel;\n\nvoid main() {\n\n vec3 signAxis = sign(bounds[1] - bounds[0]);\n\n vec3 realNormal = signAxis * normal;\n\n if(dot(realNormal, enable) > 0.0) {\n vec3 minRange = min(bounds[0], bounds[1]);\n vec3 maxRange = max(bounds[0], bounds[1]);\n vec3 nPosition = mix(minRange, maxRange, 0.5 * (position + 1.0));\n gl_Position = projection * view * model * vec4(nPosition, 1.0);\n } else {\n gl_Position = vec4(0,0,0,0);\n }\n\n colorChannel = abs(realNormal);\n}"]),u=r(["precision highp float;\n#define GLSLIFY 1\n\nuniform vec4 colors[3];\n\nvarying vec3 colorChannel;\n\nvoid main() {\n gl_FragColor = colorChannel.x * colors[0] +\n colorChannel.y * colors[1] +\n colorChannel.z * colors[2];\n}"]);t.bg=function(e){return i(e,c,u,null,[{name:"position",type:"vec3"},{name:"normal",type:"vec3"}])}},9557:function(e,t,n){"use strict";e.exports=function(e,t,n,a,o,l){var c=r(e),f=i(e,[{buffer:c,size:3}]),d=s(e);d.attributes.position.location=0;var h=new u(e,d,c,f);return h.update(t,n,a,o,l),h};var r=n(5827),i=n(2944),o=n(875),s=n(1943).f,l=window||a.global||{},c=l.__TEXT_CACHE||{};function u(e,t,n,r){this.gl=e,this.shader=t,this.buffer=n,this.vao=r,this.tickOffset=this.tickCount=this.labelOffset=this.labelCount=null}l.__TEXT_CACHE={};var f=u.prototype,d=[0,0];f.bind=function(e,t,n,r){this.vao.bind(),this.shader.bind();var i=this.shader.uniforms;i.model=e,i.view=t,i.projection=n,i.pixelScale=r,d[0]=this.gl.drawingBufferWidth,d[1]=this.gl.drawingBufferHeight,this.shader.uniforms.resolution=d},f.unbind=function(){this.vao.unbind()},f.update=function(e,t,n,r,i){var a=[];function s(e,t,n,r,i,s){var l=c[n];l||(l=c[n]={});var u=l[t];u||(u=l[t]=function(e,t){try{return o(e,t)}catch(n){return console.warn('error vectorizing text:"'+e+'" error:',n),{cells:[],positions:[]}}}(t,{triangles:!0,font:n,textAlign:"center",textBaseline:"middle",lineSpacing:i,styletags:s}));for(var f=(r||12)/12,d=u.positions,h=u.cells,p=0,v=h.length;p=0;--g){var y=d[m[g]];a.push(f*y[0],-f*y[1],e)}}for(var l=[0,0,0],u=[0,0,0],f=[0,0,0],d=[0,0,0],h={breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},p=0;p<3;++p){f[p]=a.length/3|0,s(.5*(e[0][p]+e[1][p]),t[p],n[p],12,1.25,h),d[p]=(a.length/3|0)-f[p],l[p]=a.length/3|0;for(var v=0;v=0&&(i=n.length-r-1);var a=Math.pow(10,i),o=Math.round(e*t*a),s=o+"";if(s.indexOf("e")>=0)return s;var l=o/a,c=o%a;o<0?(l=0|-Math.ceil(l),c=0|-c):(l=0|Math.floor(l),c|=0);var u=""+l;if(o<0&&(u="-"+u),i){for(var f=""+c;f.length=e[0][i];--o)a.push({x:o*t[i],text:n(t[i],o)});r.push(a)}return r},t.equal=function(e,t){for(var n=0;n<3;++n){if(e[n].length!==t[n].length)return!1;for(var r=0;rn)throw new Error("gl-buffer: If resizing buffer, must not specify offset");return e.bufferSubData(t,a,i),n}function u(e,t){for(var n=r.malloc(e.length,t),i=e.length,a=0;a=0;--r){if(t[r]!==n)return!1;n*=e[r]}return!0}(e.shape,e.stride))0===e.offset&&e.data.length===e.shape[0]?this.length=c(this.gl,this.type,this.length,this.usage,e.data,t):this.length=c(this.gl,this.type,this.length,this.usage,e.data.subarray(e.offset,e.shape[0]),t);else{var s=r.malloc(e.size,n),l=a(s,e.shape);i.assign(l,e),this.length=c(this.gl,this.type,this.length,this.usage,t<0?s:s.subarray(0,e.size),t),r.free(s)}}else if(Array.isArray(e)){var f;f=this.type===this.gl.ELEMENT_ARRAY_BUFFER?u(e,"uint16"):u(e,"float32"),this.length=c(this.gl,this.type,this.length,this.usage,t<0?f:f.subarray(0,e.length),t),r.free(f)}else if("object"===typeof e&&"number"===typeof e.length)this.length=c(this.gl,this.type,this.length,this.usage,e,t);else{if("number"!==typeof e&&void 0!==e)throw new Error("gl-buffer: Invalid data type");if(t>=0)throw new Error("gl-buffer: Cannot specify offset when resizing buffer");(e|=0)<=0&&(e=1),this.gl.bufferData(this.type,0|e,this.usage),this.length=e}},e.exports=function(e,t,n,r){if(n=n||e.ARRAY_BUFFER,r=r||e.DYNAMIC_DRAW,n!==e.ARRAY_BUFFER&&n!==e.ELEMENT_ARRAY_BUFFER)throw new Error("gl-buffer: Invalid type for webgl buffer, must be either gl.ARRAY_BUFFER or gl.ELEMENT_ARRAY_BUFFER");if(r!==e.DYNAMIC_DRAW&&r!==e.STATIC_DRAW&&r!==e.STREAM_DRAW)throw new Error("gl-buffer: Invalid usage for buffer, must be either gl.DYNAMIC_DRAW, gl.STATIC_DRAW or gl.STREAM_DRAW");var i=e.createBuffer(),a=new s(e,n,i,0,r);return a.update(t),a}},1140:function(e,t,n){"use strict";var r=n(2858);e.exports=function(e,t){var n=e.positions,i=e.vectors,a={positions:[],vertexIntensity:[],vertexIntensityBounds:e.vertexIntensityBounds,vectors:[],cells:[],coneOffset:e.coneOffset,colormap:e.colormap};if(0===e.positions.length)return t&&(t[0]=[0,0,0],t[1]=[0,0,0]),a;for(var o=0,s=1/0,l=-1/0,c=1/0,u=-1/0,f=1/0,d=-1/0,h=null,p=null,v=[],m=1/0,g=!1,y=0;yo&&(o=r.length(x)),y){var w=2*r.distance(h,b)/(r.length(p)+r.length(x));w?(m=Math.min(m,w),g=!1):g=!0}g||(h=b,p=x),v.push(x)}var _=[s,c,f],k=[l,u,d];t&&(t[0]=_,t[1]=k),0===o&&(o=1);var S=1/o;isFinite(m)||(m=1),a.vectorScale=m;var T=e.coneSize||.5;e.absoluteConeSize&&(T=e.absoluteConeSize*S),a.coneScale=T,y=0;for(var A=0;y=1},h.isTransparent=function(){return this.opacity<1},h.pickSlots=1,h.setPickBase=function(e){this.pickId=e},h.update=function(e){e=e||{};var t=this.gl;this.dirty=!0,"lightPosition"in e&&(this.lightPosition=e.lightPosition),"opacity"in e&&(this.opacity=e.opacity),"ambient"in e&&(this.ambientLight=e.ambient),"diffuse"in e&&(this.diffuseLight=e.diffuse),"specular"in e&&(this.specularLight=e.specular),"roughness"in e&&(this.roughness=e.roughness),"fresnel"in e&&(this.fresnel=e.fresnel),void 0!==e.tubeScale&&(this.tubeScale=e.tubeScale),void 0!==e.vectorScale&&(this.vectorScale=e.vectorScale),void 0!==e.coneScale&&(this.coneScale=e.coneScale),void 0!==e.coneOffset&&(this.coneOffset=e.coneOffset),e.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=t.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=t.LINEAR,this.texture.setPixels(function(e){for(var t=u({colormap:e,nshades:256,format:"rgba"}),n=new Uint8Array(1024),r=0;r<256;++r){for(var i=t[r],a=0;a<3;++a)n[4*r+a]=i[a];n[4*r+3]=255*i[3]}return c(n,[256,256,4],[4,0,1])}(e.colormap)),this.texture.generateMipmap());var n=e.cells,r=e.positions,i=e.vectors;if(r&&n&&i){var a=[],o=[],s=[],l=[],f=[];this.cells=n,this.positions=r,this.vectors=i;var d=e.meshColor||[1,1,1,1],h=e.vertexIntensity,p=1/0,v=-1/0;if(h)if(e.vertexIntensityBounds)p=+e.vertexIntensityBounds[0],v=+e.vertexIntensityBounds[1];else for(var m=0;m0){var v=this.triShader;v.bind(),v.uniforms=c,this.triangleVAO.bind(),t.drawArrays(t.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},h.drawPick=function(e){e=e||{};for(var t=this.gl,n=e.model||f,r=e.view||f,i=e.projection||f,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(n),this._view=[].slice.call(r),this._projection=[].slice.call(i),this._resolution=[t.drawingBufferWidth,t.drawingBufferHeight];var s={model:n,view:r,projection:i,clipBounds:a,tubeScale:this.tubeScale,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),t.drawArrays(t.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind())},h.pick=function(e){if(!e)return null;if(e.id!==this.pickId)return null;var t=e.value[0]+256*e.value[1]+65536*e.value[2],n=this.cells[t],r=this.positions[n[1]].slice(0,3),i={position:r,dataCoordinate:r,index:Math.floor(n[1]/48)};return"cone"===this.traceType?i.index=Math.floor(n[1]/48):"streamtube"===this.traceType&&(i.intensity=this.intensity[n[1]],i.velocity=this.vectors[n[1]].slice(0,3),i.divergence=this.vectors[n[1]][3],i.index=t),i},h.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleIds.dispose()},e.exports=function(e,t,n){var s=n.shaders;1===arguments.length&&(e=(t=e).gl);var l=function(e,t){var n=r(e,t.meshShader.vertex,t.meshShader.fragment,null,t.meshShader.attributes);return n.attributes.position.location=0,n.attributes.color.location=2,n.attributes.uv.location=3,n.attributes.vector.location=4,n}(e,s),u=function(e,t){var n=r(e,t.pickShader.vertex,t.pickShader.fragment,null,t.pickShader.attributes);return n.attributes.position.location=0,n.attributes.id.location=1,n.attributes.vector.location=4,n}(e,s),f=o(e,c(new Uint8Array([255,255,255,255]),[1,1,4]));f.generateMipmap(),f.minFilter=e.LINEAR_MIPMAP_LINEAR,f.magFilter=e.LINEAR;var h=i(e),p=i(e),v=i(e),m=i(e),g=i(e),y=new d(e,f,l,u,h,p,g,v,m,a(e,[{buffer:h,type:e.FLOAT,size:4},{buffer:g,type:e.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:v,type:e.FLOAT,size:4},{buffer:m,type:e.FLOAT,size:2},{buffer:p,type:e.FLOAT,size:4}]),n.traceType||"cone");return y.update(t),y}},7234:function(e,t,n){var r=n(6832),i=r(["precision highp float;\n\nprecision highp float;\n#define GLSLIFY 1\n\nvec3 getOrthogonalVector(vec3 v) {\n // Return up-vector for only-z vector.\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the cone vertex and normal at the given index.\n//\n// The returned vertex is for a cone with its top at origin and height of 1.0,\n// pointing in the direction of the vector attribute.\n//\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\n// These vertices are used to make up the triangles of the cone by the following:\n// segment + 0 top vertex\n// segment + 1 perimeter vertex a+1\n// segment + 2 perimeter vertex a\n// segment + 3 center base vertex\n// segment + 4 perimeter vertex a\n// segment + 5 perimeter vertex a+1\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\n// To go from index to segment, floor(index / 6)\n// To go from segment to angle, 2*pi * (segment/segmentCount)\n// To go from index to segment index, index - (segment*6)\n//\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\n\n const float segmentCount = 8.0;\n\n float index = rawIndex - floor(rawIndex /\n (segmentCount * 6.0)) *\n (segmentCount * 6.0);\n\n float segment = floor(0.001 + index/6.0);\n float segmentIndex = index - (segment*6.0);\n\n normal = -normalize(d);\n\n if (segmentIndex > 2.99 && segmentIndex < 3.01) {\n return mix(vec3(0.0), -d, coneOffset);\n }\n\n float nextAngle = (\n (segmentIndex > 0.99 && segmentIndex < 1.01) ||\n (segmentIndex > 4.99 && segmentIndex < 5.01)\n ) ? 1.0 : 0.0;\n float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\n\n vec3 v1 = mix(d, vec3(0.0), coneOffset);\n vec3 v2 = v1 - d;\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d)*0.25;\n vec3 y = v * sin(angle) * length(d)*0.25;\n vec3 v3 = v2 + x + y;\n if (segmentIndex < 3.0) {\n vec3 tx = u * sin(angle);\n vec3 ty = v * -cos(angle);\n vec3 tangent = tx + ty;\n normal = normalize(cross(v3 - v1, tangent));\n }\n\n if (segmentIndex == 0.0) {\n return mix(d, vec3(0.0), coneOffset);\n }\n return v3;\n}\n\nattribute vec3 vector;\nattribute vec4 color, position;\nattribute vec2 uv;\n\nuniform float vectorScale, coneScale, coneOffset;\nuniform mat4 model, view, projection, inverseModel;\nuniform vec3 eyePosition, lightPosition;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n // Scale the vector magnitude to stay constant with\n // model & view changes.\n vec3 normal;\n vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\n vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * conePosition;\n cameraCoordinate.xyz /= cameraCoordinate.w;\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\n\n // vec4 m_position = model * vec4(conePosition, 1.0);\n vec4 t_position = view * conePosition;\n gl_Position = projection * t_position;\n\n f_color = color;\n f_data = conePosition.xyz;\n f_position = position.xyz;\n f_uv = uv;\n}\n"]),a=r(["#extension GL_OES_standard_derivatives : enable\n\nprecision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat cookTorranceSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness,\n float fresnel) {\n\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\n\n //Half angle vector\n vec3 H = normalize(lightDirection + viewDirection);\n\n //Geometric term\n float NdotH = max(dot(surfaceNormal, H), 0.0);\n float VdotH = max(dot(viewDirection, H), 0.000001);\n float LdotH = max(dot(lightDirection, H), 0.000001);\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\n float G = min(1.0, min(G1, G2));\n \n //Distribution term\n float D = beckmannDistribution(NdotH, roughness);\n\n //Fresnel term\n float F = pow(1.0 - VdotN, fresnel);\n\n //Multiply terms and done\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\nuniform sampler2D texture;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n vec3 N = normalize(f_normal);\n vec3 L = normalize(f_lightDirection);\n vec3 V = normalize(f_eyeDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n vec4 surfaceColor = f_color * texture2D(texture, f_uv);\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = litColor * opacity;\n}\n"]),o=r(["precision highp float;\n\nprecision highp float;\n#define GLSLIFY 1\n\nvec3 getOrthogonalVector(vec3 v) {\n // Return up-vector for only-z vector.\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the cone vertex and normal at the given index.\n//\n// The returned vertex is for a cone with its top at origin and height of 1.0,\n// pointing in the direction of the vector attribute.\n//\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\n// These vertices are used to make up the triangles of the cone by the following:\n// segment + 0 top vertex\n// segment + 1 perimeter vertex a+1\n// segment + 2 perimeter vertex a\n// segment + 3 center base vertex\n// segment + 4 perimeter vertex a\n// segment + 5 perimeter vertex a+1\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\n// To go from index to segment, floor(index / 6)\n// To go from segment to angle, 2*pi * (segment/segmentCount)\n// To go from index to segment index, index - (segment*6)\n//\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\n\n const float segmentCount = 8.0;\n\n float index = rawIndex - floor(rawIndex /\n (segmentCount * 6.0)) *\n (segmentCount * 6.0);\n\n float segment = floor(0.001 + index/6.0);\n float segmentIndex = index - (segment*6.0);\n\n normal = -normalize(d);\n\n if (segmentIndex > 2.99 && segmentIndex < 3.01) {\n return mix(vec3(0.0), -d, coneOffset);\n }\n\n float nextAngle = (\n (segmentIndex > 0.99 && segmentIndex < 1.01) ||\n (segmentIndex > 4.99 && segmentIndex < 5.01)\n ) ? 1.0 : 0.0;\n float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\n\n vec3 v1 = mix(d, vec3(0.0), coneOffset);\n vec3 v2 = v1 - d;\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d)*0.25;\n vec3 y = v * sin(angle) * length(d)*0.25;\n vec3 v3 = v2 + x + y;\n if (segmentIndex < 3.0) {\n vec3 tx = u * sin(angle);\n vec3 ty = v * -cos(angle);\n vec3 tangent = tx + ty;\n normal = normalize(cross(v3 - v1, tangent));\n }\n\n if (segmentIndex == 0.0) {\n return mix(d, vec3(0.0), coneOffset);\n }\n return v3;\n}\n\nattribute vec4 vector;\nattribute vec4 position;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform float vectorScale, coneScale, coneOffset;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n vec3 normal;\n vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector.xyz), position.w, coneOffset, normal);\n vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n gl_Position = projection * view * conePosition;\n f_id = id;\n f_position = position.xyz;\n}\n"]),s=r(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n\n gl_FragColor = vec4(pickId, f_id.xyz);\n}"]);t.meshShader={vertex:i,fragment:a,attributes:[{name:"position",type:"vec4"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"},{name:"vector",type:"vec3"}]},t.pickShader={vertex:o,fragment:s,attributes:[{name:"position",type:"vec4"},{name:"id",type:"vec4"},{name:"vector",type:"vec3"}]}},1950:function(e){e.exports={0:"NONE",1:"ONE",2:"LINE_LOOP",3:"LINE_STRIP",4:"TRIANGLES",5:"TRIANGLE_STRIP",6:"TRIANGLE_FAN",256:"DEPTH_BUFFER_BIT",512:"NEVER",513:"LESS",514:"EQUAL",515:"LEQUAL",516:"GREATER",517:"NOTEQUAL",518:"GEQUAL",519:"ALWAYS",768:"SRC_COLOR",769:"ONE_MINUS_SRC_COLOR",770:"SRC_ALPHA",771:"ONE_MINUS_SRC_ALPHA",772:"DST_ALPHA",773:"ONE_MINUS_DST_ALPHA",774:"DST_COLOR",775:"ONE_MINUS_DST_COLOR",776:"SRC_ALPHA_SATURATE",1024:"STENCIL_BUFFER_BIT",1028:"FRONT",1029:"BACK",1032:"FRONT_AND_BACK",1280:"INVALID_ENUM",1281:"INVALID_VALUE",1282:"INVALID_OPERATION",1285:"OUT_OF_MEMORY",1286:"INVALID_FRAMEBUFFER_OPERATION",2304:"CW",2305:"CCW",2849:"LINE_WIDTH",2884:"CULL_FACE",2885:"CULL_FACE_MODE",2886:"FRONT_FACE",2928:"DEPTH_RANGE",2929:"DEPTH_TEST",2930:"DEPTH_WRITEMASK",2931:"DEPTH_CLEAR_VALUE",2932:"DEPTH_FUNC",2960:"STENCIL_TEST",2961:"STENCIL_CLEAR_VALUE",2962:"STENCIL_FUNC",2963:"STENCIL_VALUE_MASK",2964:"STENCIL_FAIL",2965:"STENCIL_PASS_DEPTH_FAIL",2966:"STENCIL_PASS_DEPTH_PASS",2967:"STENCIL_REF",2968:"STENCIL_WRITEMASK",2978:"VIEWPORT",3024:"DITHER",3042:"BLEND",3088:"SCISSOR_BOX",3089:"SCISSOR_TEST",3106:"COLOR_CLEAR_VALUE",3107:"COLOR_WRITEMASK",3317:"UNPACK_ALIGNMENT",3333:"PACK_ALIGNMENT",3379:"MAX_TEXTURE_SIZE",3386:"MAX_VIEWPORT_DIMS",3408:"SUBPIXEL_BITS",3410:"RED_BITS",3411:"GREEN_BITS",3412:"BLUE_BITS",3413:"ALPHA_BITS",3414:"DEPTH_BITS",3415:"STENCIL_BITS",3553:"TEXTURE_2D",4352:"DONT_CARE",4353:"FASTEST",4354:"NICEST",5120:"BYTE",5121:"UNSIGNED_BYTE",5122:"SHORT",5123:"UNSIGNED_SHORT",5124:"INT",5125:"UNSIGNED_INT",5126:"FLOAT",5386:"INVERT",5890:"TEXTURE",6401:"STENCIL_INDEX",6402:"DEPTH_COMPONENT",6406:"ALPHA",6407:"RGB",6408:"RGBA",6409:"LUMINANCE",6410:"LUMINANCE_ALPHA",7680:"KEEP",7681:"REPLACE",7682:"INCR",7683:"DECR",7936:"VENDOR",7937:"RENDERER",7938:"VERSION",9728:"NEAREST",9729:"LINEAR",9984:"NEAREST_MIPMAP_NEAREST",9985:"LINEAR_MIPMAP_NEAREST",9986:"NEAREST_MIPMAP_LINEAR",9987:"LINEAR_MIPMAP_LINEAR",10240:"TEXTURE_MAG_FILTER",10241:"TEXTURE_MIN_FILTER",10242:"TEXTURE_WRAP_S",10243:"TEXTURE_WRAP_T",10497:"REPEAT",10752:"POLYGON_OFFSET_UNITS",16384:"COLOR_BUFFER_BIT",32769:"CONSTANT_COLOR",32770:"ONE_MINUS_CONSTANT_COLOR",32771:"CONSTANT_ALPHA",32772:"ONE_MINUS_CONSTANT_ALPHA",32773:"BLEND_COLOR",32774:"FUNC_ADD",32777:"BLEND_EQUATION_RGB",32778:"FUNC_SUBTRACT",32779:"FUNC_REVERSE_SUBTRACT",32819:"UNSIGNED_SHORT_4_4_4_4",32820:"UNSIGNED_SHORT_5_5_5_1",32823:"POLYGON_OFFSET_FILL",32824:"POLYGON_OFFSET_FACTOR",32854:"RGBA4",32855:"RGB5_A1",32873:"TEXTURE_BINDING_2D",32926:"SAMPLE_ALPHA_TO_COVERAGE",32928:"SAMPLE_COVERAGE",32936:"SAMPLE_BUFFERS",32937:"SAMPLES",32938:"SAMPLE_COVERAGE_VALUE",32939:"SAMPLE_COVERAGE_INVERT",32968:"BLEND_DST_RGB",32969:"BLEND_SRC_RGB",32970:"BLEND_DST_ALPHA",32971:"BLEND_SRC_ALPHA",33071:"CLAMP_TO_EDGE",33170:"GENERATE_MIPMAP_HINT",33189:"DEPTH_COMPONENT16",33306:"DEPTH_STENCIL_ATTACHMENT",33635:"UNSIGNED_SHORT_5_6_5",33648:"MIRRORED_REPEAT",33901:"ALIASED_POINT_SIZE_RANGE",33902:"ALIASED_LINE_WIDTH_RANGE",33984:"TEXTURE0",33985:"TEXTURE1",33986:"TEXTURE2",33987:"TEXTURE3",33988:"TEXTURE4",33989:"TEXTURE5",33990:"TEXTURE6",33991:"TEXTURE7",33992:"TEXTURE8",33993:"TEXTURE9",33994:"TEXTURE10",33995:"TEXTURE11",33996:"TEXTURE12",33997:"TEXTURE13",33998:"TEXTURE14",33999:"TEXTURE15",34e3:"TEXTURE16",34001:"TEXTURE17",34002:"TEXTURE18",34003:"TEXTURE19",34004:"TEXTURE20",34005:"TEXTURE21",34006:"TEXTURE22",34007:"TEXTURE23",34008:"TEXTURE24",34009:"TEXTURE25",34010:"TEXTURE26",34011:"TEXTURE27",34012:"TEXTURE28",34013:"TEXTURE29",34014:"TEXTURE30",34015:"TEXTURE31",34016:"ACTIVE_TEXTURE",34024:"MAX_RENDERBUFFER_SIZE",34041:"DEPTH_STENCIL",34055:"INCR_WRAP",34056:"DECR_WRAP",34067:"TEXTURE_CUBE_MAP",34068:"TEXTURE_BINDING_CUBE_MAP",34069:"TEXTURE_CUBE_MAP_POSITIVE_X",34070:"TEXTURE_CUBE_MAP_NEGATIVE_X",34071:"TEXTURE_CUBE_MAP_POSITIVE_Y",34072:"TEXTURE_CUBE_MAP_NEGATIVE_Y",34073:"TEXTURE_CUBE_MAP_POSITIVE_Z",34074:"TEXTURE_CUBE_MAP_NEGATIVE_Z",34076:"MAX_CUBE_MAP_TEXTURE_SIZE",34338:"VERTEX_ATTRIB_ARRAY_ENABLED",34339:"VERTEX_ATTRIB_ARRAY_SIZE",34340:"VERTEX_ATTRIB_ARRAY_STRIDE",34341:"VERTEX_ATTRIB_ARRAY_TYPE",34342:"CURRENT_VERTEX_ATTRIB",34373:"VERTEX_ATTRIB_ARRAY_POINTER",34466:"NUM_COMPRESSED_TEXTURE_FORMATS",34467:"COMPRESSED_TEXTURE_FORMATS",34660:"BUFFER_SIZE",34661:"BUFFER_USAGE",34816:"STENCIL_BACK_FUNC",34817:"STENCIL_BACK_FAIL",34818:"STENCIL_BACK_PASS_DEPTH_FAIL",34819:"STENCIL_BACK_PASS_DEPTH_PASS",34877:"BLEND_EQUATION_ALPHA",34921:"MAX_VERTEX_ATTRIBS",34922:"VERTEX_ATTRIB_ARRAY_NORMALIZED",34930:"MAX_TEXTURE_IMAGE_UNITS",34962:"ARRAY_BUFFER",34963:"ELEMENT_ARRAY_BUFFER",34964:"ARRAY_BUFFER_BINDING",34965:"ELEMENT_ARRAY_BUFFER_BINDING",34975:"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING",35040:"STREAM_DRAW",35044:"STATIC_DRAW",35048:"DYNAMIC_DRAW",35632:"FRAGMENT_SHADER",35633:"VERTEX_SHADER",35660:"MAX_VERTEX_TEXTURE_IMAGE_UNITS",35661:"MAX_COMBINED_TEXTURE_IMAGE_UNITS",35663:"SHADER_TYPE",35664:"FLOAT_VEC2",35665:"FLOAT_VEC3",35666:"FLOAT_VEC4",35667:"INT_VEC2",35668:"INT_VEC3",35669:"INT_VEC4",35670:"BOOL",35671:"BOOL_VEC2",35672:"BOOL_VEC3",35673:"BOOL_VEC4",35674:"FLOAT_MAT2",35675:"FLOAT_MAT3",35676:"FLOAT_MAT4",35678:"SAMPLER_2D",35680:"SAMPLER_CUBE",35712:"DELETE_STATUS",35713:"COMPILE_STATUS",35714:"LINK_STATUS",35715:"VALIDATE_STATUS",35716:"INFO_LOG_LENGTH",35717:"ATTACHED_SHADERS",35718:"ACTIVE_UNIFORMS",35719:"ACTIVE_UNIFORM_MAX_LENGTH",35720:"SHADER_SOURCE_LENGTH",35721:"ACTIVE_ATTRIBUTES",35722:"ACTIVE_ATTRIBUTE_MAX_LENGTH",35724:"SHADING_LANGUAGE_VERSION",35725:"CURRENT_PROGRAM",36003:"STENCIL_BACK_REF",36004:"STENCIL_BACK_VALUE_MASK",36005:"STENCIL_BACK_WRITEMASK",36006:"FRAMEBUFFER_BINDING",36007:"RENDERBUFFER_BINDING",36048:"FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE",36049:"FRAMEBUFFER_ATTACHMENT_OBJECT_NAME",36050:"FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL",36051:"FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE",36053:"FRAMEBUFFER_COMPLETE",36054:"FRAMEBUFFER_INCOMPLETE_ATTACHMENT",36055:"FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT",36057:"FRAMEBUFFER_INCOMPLETE_DIMENSIONS",36061:"FRAMEBUFFER_UNSUPPORTED",36064:"COLOR_ATTACHMENT0",36096:"DEPTH_ATTACHMENT",36128:"STENCIL_ATTACHMENT",36160:"FRAMEBUFFER",36161:"RENDERBUFFER",36162:"RENDERBUFFER_WIDTH",36163:"RENDERBUFFER_HEIGHT",36164:"RENDERBUFFER_INTERNAL_FORMAT",36168:"STENCIL_INDEX8",36176:"RENDERBUFFER_RED_SIZE",36177:"RENDERBUFFER_GREEN_SIZE",36178:"RENDERBUFFER_BLUE_SIZE",36179:"RENDERBUFFER_ALPHA_SIZE",36180:"RENDERBUFFER_DEPTH_SIZE",36181:"RENDERBUFFER_STENCIL_SIZE",36194:"RGB565",36336:"LOW_FLOAT",36337:"MEDIUM_FLOAT",36338:"HIGH_FLOAT",36339:"LOW_INT",36340:"MEDIUM_INT",36341:"HIGH_INT",36346:"SHADER_COMPILER",36347:"MAX_VERTEX_UNIFORM_VECTORS",36348:"MAX_VARYING_VECTORS",36349:"MAX_FRAGMENT_UNIFORM_VECTORS",37440:"UNPACK_FLIP_Y_WEBGL",37441:"UNPACK_PREMULTIPLY_ALPHA_WEBGL",37442:"CONTEXT_LOST_WEBGL",37443:"UNPACK_COLORSPACE_CONVERSION_WEBGL",37444:"BROWSER_DEFAULT_WEBGL"}},6603:function(e,t,n){var r=n(1950);e.exports=function(e){return r[e]}},3110:function(e,t,n){"use strict";e.exports=function(e){var t=e.gl,n=r(t),o=i(t,[{buffer:n,type:t.FLOAT,size:3,offset:0,stride:40},{buffer:n,type:t.FLOAT,size:4,offset:12,stride:40},{buffer:n,type:t.FLOAT,size:3,offset:28,stride:40}]),l=a(t);l.attributes.position.location=0,l.attributes.color.location=1,l.attributes.offset.location=2;var c=new s(t,n,o,l);return c.update(e),c};var r=n(5827),i=n(2944),a=n(7667),o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(e,t,n,r){this.gl=e,this.shader=r,this.buffer=t,this.vao=n,this.pixelRatio=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lineWidth=[1,1,1],this.capSize=[10,10,10],this.lineCount=[0,0,0],this.lineOffset=[0,0,0],this.opacity=1,this.hasAlpha=!1}var l=s.prototype;function c(e,t){for(var n=0;n<3;++n)e[0][n]=Math.min(e[0][n],t[n]),e[1][n]=Math.max(e[1][n],t[n])}l.isOpaque=function(){return!this.hasAlpha},l.isTransparent=function(){return this.hasAlpha},l.drawTransparent=l.draw=function(e){var t=this.gl,n=this.shader.uniforms;this.shader.bind();var r=n.view=e.view||o,i=n.projection=e.projection||o;n.model=e.model||o,n.clipBounds=this.clipBounds,n.opacity=this.opacity;var a=r[12],s=r[13],l=r[14],c=r[15],u=(e._ortho?2:1)*this.pixelRatio*(i[3]*a+i[7]*s+i[11]*l+i[15]*c)/t.drawingBufferHeight;this.vao.bind();for(var f=0;f<3;++f)t.lineWidth(this.lineWidth[f]*this.pixelRatio),n.capSize=this.capSize[f]*u,this.lineCount[f]&&t.drawArrays(t.LINES,this.lineOffset[f],this.lineCount[f]);this.vao.unbind()};var u=function(){for(var e=new Array(3),t=0;t<3;++t){for(var n=[],r=1;r<=2;++r)for(var i=-1;i<=1;i+=2){var a=[0,0,0];a[(r+t)%3]=i,n.push(a)}e[t]=n}return e}();function f(e,t,n,r){for(var i=u[r],a=0;a0&&((h=u.slice())[s]+=p[1][s],i.push(u[0],u[1],u[2],v[0],v[1],v[2],v[3],0,0,0,h[0],h[1],h[2],v[0],v[1],v[2],v[3],0,0,0),c(this.bounds,h),o+=2+f(i,h,v,s)))}this.lineCount[s]=o-this.lineOffset[s]}this.buffer.update(i)}},l.dispose=function(){this.shader.dispose(),this.buffer.dispose(),this.vao.dispose()}},7667:function(e,t,n){"use strict";var r=n(6832),i=n(5158),a=r(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position, offset;\nattribute vec4 color;\nuniform mat4 model, view, projection;\nuniform float capSize;\nvarying vec4 fragColor;\nvarying vec3 fragPosition;\n\nvoid main() {\n vec4 worldPosition = model * vec4(position, 1.0);\n worldPosition = (worldPosition / worldPosition.w) + vec4(capSize * offset, 0.0);\n gl_Position = projection * view * worldPosition;\n fragColor = color;\n fragPosition = position;\n}"]),o=r(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float opacity;\nvarying vec3 fragPosition;\nvarying vec4 fragColor;\n\nvoid main() {\n if (\n outOfRange(clipBounds[0], clipBounds[1], fragPosition) ||\n fragColor.a * opacity == 0.\n ) discard;\n\n gl_FragColor = opacity * fragColor;\n}"]);e.exports=function(e){return i(e,a,o,null,[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"offset",type:"vec3"}])}},4234:function(e,t,n){"use strict";var r=n(8931);e.exports=function(e,t,n,r){i||(i=e.FRAMEBUFFER_UNSUPPORTED,a=e.FRAMEBUFFER_INCOMPLETE_ATTACHMENT,o=e.FRAMEBUFFER_INCOMPLETE_DIMENSIONS,s=e.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT);var c=e.getExtension("WEBGL_draw_buffers");if(!l&&c&&function(e,t){var n=e.getParameter(t.MAX_COLOR_ATTACHMENTS_WEBGL);l=new Array(n+1);for(var r=0;r<=n;++r){for(var i=new Array(n),a=0;au||n<0||n>u)throw new Error("gl-fbo: Parameters are too large for FBO");var f=1;if("color"in(r=r||{})){if((f=Math.max(0|r.color,0))<0)throw new Error("gl-fbo: Must specify a nonnegative number of colors");if(f>1){if(!c)throw new Error("gl-fbo: Multiple draw buffer extension not supported");if(f>e.getParameter(c.MAX_COLOR_ATTACHMENTS_WEBGL))throw new Error("gl-fbo: Context does not support "+f+" draw buffers")}}var d=e.UNSIGNED_BYTE,h=e.getExtension("OES_texture_float");if(r.float&&f>0){if(!h)throw new Error("gl-fbo: Context does not support floating point textures");d=e.FLOAT}else r.preferFloat&&f>0&&h&&(d=e.FLOAT);var v=!0;"depth"in r&&(v=!!r.depth);var m=!1;return"stencil"in r&&(m=!!r.stencil),new p(e,t,n,d,f,v,m,c)};var i,a,o,s,l=null;function c(e){return[e.getParameter(e.FRAMEBUFFER_BINDING),e.getParameter(e.RENDERBUFFER_BINDING),e.getParameter(e.TEXTURE_BINDING_2D)]}function u(e,t){e.bindFramebuffer(e.FRAMEBUFFER,t[0]),e.bindRenderbuffer(e.RENDERBUFFER,t[1]),e.bindTexture(e.TEXTURE_2D,t[2])}function f(e){switch(e){case i:throw new Error("gl-fbo: Framebuffer unsupported");case a:throw new Error("gl-fbo: Framebuffer incomplete attachment");case o:throw new Error("gl-fbo: Framebuffer incomplete dimensions");case s:throw new Error("gl-fbo: Framebuffer incomplete missing attachment");default:throw new Error("gl-fbo: Framebuffer failed for unspecified reason")}}function d(e,t,n,i,a,o){if(!i)return null;var s=r(e,t,n,a,i);return s.magFilter=e.NEAREST,s.minFilter=e.NEAREST,s.mipSamples=1,s.bind(),e.framebufferTexture2D(e.FRAMEBUFFER,o,e.TEXTURE_2D,s.handle,0),s}function h(e,t,n,r,i){var a=e.createRenderbuffer();return e.bindRenderbuffer(e.RENDERBUFFER,a),e.renderbufferStorage(e.RENDERBUFFER,r,t,n),e.framebufferRenderbuffer(e.FRAMEBUFFER,i,e.RENDERBUFFER,a),a}function p(e,t,n,r,i,a,o,s){this.gl=e,this._shape=[0|t,0|n],this._destroyed=!1,this._ext=s,this.color=new Array(i);for(var p=0;p1&&s.drawBuffersWEBGL(l[o]);var y=n.getExtension("WEBGL_depth_texture");y?p?e.depth=d(n,i,a,y.UNSIGNED_INT_24_8_WEBGL,n.DEPTH_STENCIL,n.DEPTH_STENCIL_ATTACHMENT):v&&(e.depth=d(n,i,a,n.UNSIGNED_SHORT,n.DEPTH_COMPONENT,n.DEPTH_ATTACHMENT)):v&&p?e._depth_rb=h(n,i,a,n.DEPTH_STENCIL,n.DEPTH_STENCIL_ATTACHMENT):v?e._depth_rb=h(n,i,a,n.DEPTH_COMPONENT16,n.DEPTH_ATTACHMENT):p&&(e._depth_rb=h(n,i,a,n.STENCIL_INDEX,n.STENCIL_ATTACHMENT));var b=n.checkFramebufferStatus(n.FRAMEBUFFER);if(b!==n.FRAMEBUFFER_COMPLETE){for(e._destroyed=!0,n.bindFramebuffer(n.FRAMEBUFFER,null),n.deleteFramebuffer(e.handle),e.handle=null,e.depth&&(e.depth.dispose(),e.depth=null),e._depth_rb&&(n.deleteRenderbuffer(e._depth_rb),e._depth_rb=null),g=0;gi||n<0||n>i)throw new Error("gl-fbo: Can't resize FBO, invalid dimensions");e._shape[0]=t,e._shape[1]=n;for(var a=c(r),o=0;o>8*h&255;this.pickOffset=n,i.bind();var p=i.uniforms;p.viewTransform=e,p.pickOffset=t,p.shape=this.shape;var v=i.attributes;return this.positionBuffer.bind(),v.position.pointer(),this.weightBuffer.bind(),v.weight.pointer(s.UNSIGNED_BYTE,!1),this.idBuffer.bind(),v.pickId.pointer(s.UNSIGNED_BYTE,!1),s.drawArrays(s.TRIANGLES,0,o),n+this.shape[0]*this.shape[1]}}}(),u.pick=function(e,t,n){var r=this.pickOffset,i=this.shape[0]*this.shape[1];if(n=r+i)return null;var a=n-r,o=this.xData,s=this.yData;return{object:this,pointId:a,dataCoord:[o[a%this.shape[0]],s[a/this.shape[0]|0]]}},u.update=function(e){var t=(e=e||{}).shape||[0,0],n=e.x||i(t[0]),o=e.y||i(t[1]),s=e.z||new Float32Array(t[0]*t[1]),l=!1!==e.zsmooth;this.xData=n,this.yData=o;var c,u,d,h,p=e.colorLevels||[0],v=e.colorValues||[0,0,0,1],m=p.length,g=this.bounds;l?(c=g[0]=n[0],u=g[1]=o[0],d=g[2]=n[n.length-1],h=g[3]=o[o.length-1]):(c=g[0]=n[0]+(n[1]-n[0])/2,u=g[1]=o[0]+(o[1]-o[0])/2,d=g[2]=n[n.length-1]+(n[n.length-1]-n[n.length-2])/2,h=g[3]=o[o.length-1]+(o[o.length-1]-o[o.length-2])/2);var y=1/(d-c),b=1/(h-u),x=t[0],w=t[1];this.shape=[x,w];var _=(l?(x-1)*(w-1):x*w)*(f.length>>>1);this.numVertices=_;for(var k=a.mallocUint8(4*_),S=a.mallocFloat32(2*_),T=a.mallocUint8(2*_),A=a.mallocUint32(_),E=0,C=l?x-1:x,M=l?w-1:w,O=0;O max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform sampler2D dashTexture;\nuniform float dashScale;\nuniform float opacity;\n\nvarying vec3 worldPosition;\nvarying float pixelArcLength;\nvarying vec4 fragColor;\n\nvoid main() {\n if (\n outOfRange(clipBounds[0], clipBounds[1], worldPosition) ||\n fragColor.a * opacity == 0.\n ) discard;\n\n float dashWeight = texture2D(dashTexture, vec2(dashScale * pixelArcLength, 0)).r;\n if(dashWeight < 0.5) {\n discard;\n }\n gl_FragColor = fragColor * opacity;\n}\n"]),s=r(["precision highp float;\n#define GLSLIFY 1\n\n#define FLOAT_MAX 1.70141184e38\n#define FLOAT_MIN 1.17549435e-38\n\n// https://github.com/mikolalysenko/glsl-read-float/blob/master/index.glsl\nvec4 packFloat(float v) {\n float av = abs(v);\n\n //Handle special cases\n if(av < FLOAT_MIN) {\n return vec4(0.0, 0.0, 0.0, 0.0);\n } else if(v > FLOAT_MAX) {\n return vec4(127.0, 128.0, 0.0, 0.0) / 255.0;\n } else if(v < -FLOAT_MAX) {\n return vec4(255.0, 128.0, 0.0, 0.0) / 255.0;\n }\n\n vec4 c = vec4(0,0,0,0);\n\n //Compute exponent and mantissa\n float e = floor(log2(av));\n float m = av * pow(2.0, -e) - 1.0;\n\n //Unpack mantissa\n c[1] = floor(128.0 * m);\n m -= c[1] / 128.0;\n c[2] = floor(32768.0 * m);\n m -= c[2] / 32768.0;\n c[3] = floor(8388608.0 * m);\n\n //Unpack exponent\n float ebias = e + 127.0;\n c[0] = floor(ebias / 2.0);\n ebias -= c[0] * 2.0;\n c[1] += floor(ebias) * 128.0;\n\n //Unpack sign bit\n c[0] += 128.0 * step(0.0, -v);\n\n //Scale back to range\n return c / 255.0;\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform float pickId;\nuniform vec3 clipBounds[2];\n\nvarying vec3 worldPosition;\nvarying float pixelArcLength;\nvarying vec4 fragColor;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], worldPosition)) discard;\n\n gl_FragColor = vec4(pickId/255.0, packFloat(pixelArcLength).xyz);\n}"]),l=[{name:"position",type:"vec3"},{name:"nextPosition",type:"vec3"},{name:"arcLength",type:"float"},{name:"lineWidth",type:"float"},{name:"color",type:"vec4"}];t.createShader=function(e){return i(e,a,o,null,l)},t.createPickShader=function(e){return i(e,a,s,null,l)}},6086:function(e,t,n){"use strict";e.exports=function(e){var t=e.gl||e.scene&&e.scene.gl,n=f(t);n.attributes.position.location=0,n.attributes.nextPosition.location=1,n.attributes.arcLength.location=2,n.attributes.lineWidth.location=3,n.attributes.color.location=4;var o=d(t);o.attributes.position.location=0,o.attributes.nextPosition.location=1,o.attributes.arcLength.location=2,o.attributes.lineWidth.location=3,o.attributes.color.location=4;for(var s=r(t),l=i(t,[{buffer:s,size:3,offset:0,stride:48},{buffer:s,size:3,offset:12,stride:48},{buffer:s,size:1,offset:24,stride:48},{buffer:s,size:1,offset:28,stride:48},{buffer:s,size:4,offset:32,stride:48}]),u=c(new Array(1024),[256,1,4]),h=0;h<1024;++h)u.data[h]=255;var p=a(t,u);p.wrap=t.REPEAT;var v=new g(t,n,o,s,l,p);return v.update(e),v};var r=n(5827),i=n(2944),a=n(8931),o=new Uint8Array(4),s=new Float32Array(o.buffer),l=n(5070),c=n(5050),u=n(248),f=u.createShader,d=u.createPickShader,h=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function p(e,t){for(var n=0,r=0;r<3;++r){var i=e[r]-t[r];n+=i*i}return Math.sqrt(n)}function v(e){for(var t=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],n=0;n<3;++n)t[0][n]=Math.max(e[0][n],t[0][n]),t[1][n]=Math.min(e[1][n],t[1][n]);return t}function m(e,t,n,r){this.arcLength=e,this.position=t,this.index=n,this.dataCoordinate=r}function g(e,t,n,r,i,a){this.gl=e,this.shader=t,this.pickShader=n,this.buffer=r,this.vao=i,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.points=[],this.arcLength=[],this.vertexCount=0,this.bounds=[[0,0,0],[0,0,0]],this.pickId=0,this.lineWidth=1,this.texture=a,this.dashScale=1,this.opacity=1,this.hasAlpha=!1,this.dirty=!0,this.pixelRatio=1}var y=g.prototype;y.isTransparent=function(){return this.hasAlpha},y.isOpaque=function(){return!this.hasAlpha},y.pickSlots=1,y.setPickBase=function(e){this.pickId=e},y.drawTransparent=y.draw=function(e){if(this.vertexCount){var t=this.gl,n=this.shader,r=this.vao;n.bind(),n.uniforms={model:e.model||h,view:e.view||h,projection:e.projection||h,clipBounds:v(this.clipBounds),dashTexture:this.texture.bind(),dashScale:this.dashScale/this.arcLength[this.arcLength.length-1],opacity:this.opacity,screenShape:[t.drawingBufferWidth,t.drawingBufferHeight],pixelRatio:this.pixelRatio},r.bind(),r.draw(t.TRIANGLE_STRIP,this.vertexCount),r.unbind()}},y.drawPick=function(e){if(this.vertexCount){var t=this.gl,n=this.pickShader,r=this.vao;n.bind(),n.uniforms={model:e.model||h,view:e.view||h,projection:e.projection||h,pickId:this.pickId,clipBounds:v(this.clipBounds),screenShape:[t.drawingBufferWidth,t.drawingBufferHeight],pixelRatio:this.pixelRatio},r.bind(),r.draw(t.TRIANGLE_STRIP,this.vertexCount),r.unbind()}},y.update=function(e){var t,n;this.dirty=!0;var r=!!e.connectGaps;"dashScale"in e&&(this.dashScale=e.dashScale),this.hasAlpha=!1,"opacity"in e&&(this.opacity=+e.opacity,this.opacity<1&&(this.hasAlpha=!0));var i=[],a=[],o=[],s=0,u=0,f=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],d=e.position||e.positions;if(d){var h=e.color||e.colors||[0,0,0,1],v=e.lineWidth||1,m=!1;e:for(t=1;t0){for(var _=0;_<24;++_)i.push(i[i.length-12]);u+=2,m=!0}continue e}f[0][n]=Math.min(f[0][n],x[n],w[n]),f[1][n]=Math.max(f[1][n],x[n],w[n])}Array.isArray(h[0])?(g=h.length>t-1?h[t-1]:h.length>0?h[h.length-1]:[0,0,0,1],y=h.length>t?h[t]:h.length>0?h[h.length-1]:[0,0,0,1]):g=y=h,3===g.length&&(g=[g[0],g[1],g[2],1]),3===y.length&&(y=[y[0],y[1],y[2],1]),!this.hasAlpha&&g[3]<1&&(this.hasAlpha=!0),b=Array.isArray(v)?v.length>t-1?v[t-1]:v.length>0?v[v.length-1]:[0,0,0,1]:v;var k=s;if(s+=p(x,w),m){for(n=0;n<2;++n)i.push(x[0],x[1],x[2],w[0],w[1],w[2],k,b,g[0],g[1],g[2],g[3]);u+=2,m=!1}i.push(x[0],x[1],x[2],w[0],w[1],w[2],k,b,g[0],g[1],g[2],g[3],x[0],x[1],x[2],w[0],w[1],w[2],k,-b,g[0],g[1],g[2],g[3],w[0],w[1],w[2],x[0],x[1],x[2],s,-b,y[0],y[1],y[2],y[3],w[0],w[1],w[2],x[0],x[1],x[2],s,b,y[0],y[1],y[2],y[3]),u+=4}}if(this.buffer.update(i),a.push(s),o.push(d[d.length-1].slice()),this.bounds=f,this.vertexCount=u,this.points=o,this.arcLength=a,"dashes"in e){var S=e.dashes.slice();for(S.unshift(0),t=1;t1.0001)return null;g+=m[f]}return Math.abs(g-1)>.001?null:[d,s(e,m),m]}},2056:function(e,t,n){var r=n(6832),i=r(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position, normal;\nattribute vec4 color;\nattribute vec2 uv;\n\nuniform mat4 model\n , view\n , projection\n , inverseModel;\nuniform vec3 eyePosition\n , lightPosition;\n\nvarying vec3 f_normal\n , f_lightDirection\n , f_eyeDirection\n , f_data;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvec4 project(vec3 p) {\n return projection * view * model * vec4(p, 1.0);\n}\n\nvoid main() {\n gl_Position = project(position);\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * vec4(position , 1.0);\n cameraCoordinate.xyz /= cameraCoordinate.w;\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\n\n f_color = color;\n f_data = position;\n f_uv = uv;\n}\n"]),a=r(["#extension GL_OES_standard_derivatives : enable\n\nprecision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat cookTorranceSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness,\n float fresnel) {\n\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\n\n //Half angle vector\n vec3 H = normalize(lightDirection + viewDirection);\n\n //Geometric term\n float NdotH = max(dot(surfaceNormal, H), 0.0);\n float VdotH = max(dot(viewDirection, H), 0.000001);\n float LdotH = max(dot(lightDirection, H), 0.000001);\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\n float G = min(1.0, min(G1, G2));\n \n //Distribution term\n float D = beckmannDistribution(NdotH, roughness);\n\n //Fresnel term\n float F = pow(1.0 - VdotN, fresnel);\n\n //Multiply terms and done\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\n}\n\n//#pragma glslify: beckmann = require(glsl-specular-beckmann) // used in gl-surface3d\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float roughness\n , fresnel\n , kambient\n , kdiffuse\n , kspecular;\nuniform sampler2D texture;\n\nvarying vec3 f_normal\n , f_lightDirection\n , f_eyeDirection\n , f_data;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (f_color.a == 0.0 ||\n outOfRange(clipBounds[0], clipBounds[1], f_data)\n ) discard;\n\n vec3 N = normalize(f_normal);\n vec3 L = normalize(f_lightDirection);\n vec3 V = normalize(f_eyeDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\n //float specular = max(0.0, beckmann(L, V, N, roughness)); // used in gl-surface3d\n\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n vec4 surfaceColor = vec4(f_color.rgb, 1.0) * texture2D(texture, f_uv);\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = litColor * f_color.a;\n}\n"]),o=r(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 uv;\n\nuniform mat4 model, view, projection;\n\nvarying vec4 f_color;\nvarying vec3 f_data;\nvarying vec2 f_uv;\n\nvoid main() {\n gl_Position = projection * view * model * vec4(position, 1.0);\n f_color = color;\n f_data = position;\n f_uv = uv;\n}"]),s=r(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform sampler2D texture;\nuniform float opacity;\n\nvarying vec4 f_color;\nvarying vec3 f_data;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_data)) discard;\n\n gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\n}"]),l=r(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 uv;\nattribute float pointSize;\n\nuniform mat4 model, view, projection;\nuniform vec3 clipBounds[2];\n\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0.0, 0.0 ,0.0 ,0.0);\n } else {\n gl_Position = projection * view * model * vec4(position, 1.0);\n }\n gl_PointSize = pointSize;\n f_color = color;\n f_uv = uv;\n}"]),c=r(["precision highp float;\n#define GLSLIFY 1\n\nuniform sampler2D texture;\nuniform float opacity;\n\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n vec2 pointR = gl_PointCoord.xy - vec2(0.5, 0.5);\n if(dot(pointR, pointR) > 0.25) {\n discard;\n }\n gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\n}"]),u=r(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n gl_Position = projection * view * model * vec4(position, 1.0);\n f_id = id;\n f_position = position;\n}"]),f=r(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n\n gl_FragColor = vec4(pickId, f_id.xyz);\n}"]),d=r(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute float pointSize;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform vec3 clipBounds[2];\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0.0, 0.0, 0.0, 0.0);\n } else {\n gl_Position = projection * view * model * vec4(position, 1.0);\n gl_PointSize = pointSize;\n }\n f_id = id;\n f_position = position;\n}"]),h=r(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec3 position;\n\nuniform mat4 model, view, projection;\n\nvoid main() {\n gl_Position = projection * view * model * vec4(position, 1.0);\n}"]),p=r(["precision highp float;\n#define GLSLIFY 1\n\nuniform vec3 contourColor;\n\nvoid main() {\n gl_FragColor = vec4(contourColor, 1.0);\n}\n"]);t.meshShader={vertex:i,fragment:a,attributes:[{name:"position",type:"vec3"},{name:"normal",type:"vec3"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"}]},t.wireShader={vertex:o,fragment:s,attributes:[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"}]},t.pointShader={vertex:l,fragment:c,attributes:[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"},{name:"pointSize",type:"float"}]},t.pickShader={vertex:u,fragment:f,attributes:[{name:"position",type:"vec3"},{name:"id",type:"vec4"}]},t.pointPickShader={vertex:d,fragment:f,attributes:[{name:"position",type:"vec3"},{name:"pointSize",type:"float"},{name:"id",type:"vec4"}]},t.contourShader={vertex:h,fragment:p,attributes:[{name:"position",type:"vec3"}]}},8116:function(e,t,n){"use strict";var r=n(5158),i=n(5827),a=n(2944),o=n(8931),s=n(115),l=n(104),c=n(7437),u=n(5050),f=n(9156),d=n(7212),h=n(5306),p=n(2056),v=n(4340),m=p.meshShader,g=p.wireShader,y=p.pointShader,b=p.pickShader,x=p.pointPickShader,w=p.contourShader,_=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function k(e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,k,S,T,A,E){this.gl=e,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=t,this.dirty=!0,this.triShader=n,this.lineShader=r,this.pointShader=i,this.pickShader=a,this.pointPickShader=o,this.contourShader=s,this.trianglePositions=l,this.triangleColors=u,this.triangleNormals=d,this.triangleUVs=f,this.triangleIds=c,this.triangleVAO=h,this.triangleCount=0,this.lineWidth=1,this.edgePositions=p,this.edgeColors=m,this.edgeUVs=g,this.edgeIds=v,this.edgeVAO=y,this.edgeCount=0,this.pointPositions=b,this.pointColors=w,this.pointUVs=k,this.pointSizes=S,this.pointIds=x,this.pointVAO=T,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=A,this.contourVAO=E,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickVertex=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.hasAlpha=!1,this.opacityscale=!1,this._model=_,this._view=_,this._projection=_,this._resolution=[1,1]}var S=k.prototype;function T(e,t){if(!t)return 1;if(!t.length)return 1;for(var n=0;ne&&n>0){var r=(t[n][0]-e)/(t[n][0]-t[n-1][0]);return t[n][1]*(1-r)+r*t[n-1][1]}}return 1}function A(e){var t=r(e,y.vertex,y.fragment);return t.attributes.position.location=0,t.attributes.color.location=2,t.attributes.uv.location=3,t.attributes.pointSize.location=4,t}function E(e){var t=r(e,b.vertex,b.fragment);return t.attributes.position.location=0,t.attributes.id.location=1,t}function C(e){var t=r(e,x.vertex,x.fragment);return t.attributes.position.location=0,t.attributes.id.location=1,t.attributes.pointSize.location=4,t}function M(e){var t=r(e,w.vertex,w.fragment);return t.attributes.position.location=0,t}S.isOpaque=function(){return!this.hasAlpha},S.isTransparent=function(){return this.hasAlpha},S.pickSlots=1,S.setPickBase=function(e){this.pickId=e},S.highlight=function(e){if(e&&this.contourEnable){for(var t=d(this.cells,this.intensity,e.intensity),n=t.cells,r=t.vertexIds,i=t.vertexWeights,a=n.length,o=h.mallocFloat32(6*a),s=0,l=0;l0&&((f=this.triShader).bind(),f.uniforms=s,this.triangleVAO.bind(),t.drawArrays(t.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&this.lineWidth>0&&((f=this.lineShader).bind(),f.uniforms=s,this.edgeVAO.bind(),t.lineWidth(this.lineWidth*this.pixelRatio),t.drawArrays(t.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0&&((f=this.pointShader).bind(),f.uniforms=s,this.pointVAO.bind(),t.drawArrays(t.POINTS,0,this.pointCount),this.pointVAO.unbind()),this.contourEnable&&this.contourCount>0&&this.contourLineWidth>0&&((f=this.contourShader).bind(),f.uniforms=s,this.contourVAO.bind(),t.drawArrays(t.LINES,0,this.contourCount),this.contourVAO.unbind())},S.drawPick=function(e){e=e||{};for(var t=this.gl,n=e.model||_,r=e.view||_,i=e.projection||_,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(n),this._view=[].slice.call(r),this._projection=[].slice.call(i),this._resolution=[t.drawingBufferWidth,t.drawingBufferHeight];var s,l={model:n,view:r,projection:i,clipBounds:a,pickId:this.pickId/255};(s=this.pickShader).bind(),s.uniforms=l,this.triangleCount>0&&(this.triangleVAO.bind(),t.drawArrays(t.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),t.lineWidth(this.lineWidth*this.pixelRatio),t.drawArrays(t.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0&&((s=this.pointPickShader).bind(),s.uniforms=l,this.pointVAO.bind(),t.drawArrays(t.POINTS,0,this.pointCount),this.pointVAO.unbind())},S.pick=function(e){if(!e)return null;if(e.id!==this.pickId)return null;for(var t=e.value[0]+256*e.value[1]+65536*e.value[2],n=this.cells[t],r=this.positions,i=new Array(n.length),a=0;al[S]&&(a.uniforms.dataAxis=e,a.uniforms.screenOffset=t,a.uniforms.color=m[r],a.uniforms.angle=g[r],c.drawArrays(c.TRIANGLES,l[S],l[T]-l[S]))),y[r]&&k&&(t[1^r]-=A*h*b[r],a.uniforms.dataAxis=n,a.uniforms.screenOffset=t,a.uniforms.color=x[r],a.uniforms.angle=w[r],c.drawArrays(c.TRIANGLES,_,k)),t[1^r]=A*u[2+(1^r)]-1,p[r+2]&&(t[1^r]+=A*h*v[r+2],Sl[S]&&(a.uniforms.dataAxis=e,a.uniforms.screenOffset=t,a.uniforms.color=m[r+2],a.uniforms.angle=g[r+2],c.drawArrays(c.TRIANGLES,l[S],l[T]-l[S]))),y[r+2]&&k&&(t[1^r]+=A*h*b[r+2],a.uniforms.dataAxis=n,a.uniforms.screenOffset=t,a.uniforms.color=x[r+2],a.uniforms.angle=w[r+2],c.drawArrays(c.TRIANGLES,_,k))}}(),c.drawTitle=function(){var e=[0,0],t=[0,0];return function(){var n=this.plot,r=this.shader,i=n.gl,a=n.screenBox,o=n.titleCenter,s=n.titleAngle,l=n.titleColor,c=n.pixelRatio;if(this.titleCount){for(var u=0;u<2;++u)t[u]=2*(o[u]*c-a[u])/(a[2+u]-a[u])-1;r.bind(),r.uniforms.dataAxis=e,r.uniforms.screenOffset=t,r.uniforms.angle=s,r.uniforms.color=l,i.drawArrays(i.TRIANGLES,this.titleOffset,this.titleCount)}}}(),c.bind=function(){var e=[0,0],t=[0,0],n=[0,0];return function(){var r=this.plot,i=this.shader,a=r._tickBounds,o=r.dataBox,s=r.screenBox,l=r.viewBox;i.bind();for(var c=0;c<2;++c){var u=a[c],f=a[c+2]-u,d=.5*(o[c+2]+o[c]),h=o[c+2]-o[c],p=l[c],v=l[c+2]-p,m=s[c],g=s[c+2]-m;t[c]=2*f/h*v/g,e[c]=2*(u-d)/h*v/g}n[1]=2*r.pixelRatio/(s[3]-s[1]),n[0]=n[1]*(s[3]-s[1])/(s[2]-s[0]),i.uniforms.dataScale=t,i.uniforms.dataShift=e,i.uniforms.textScale=n,this.vbo.bind(),i.attributes.textCoordinate.pointer()}}(),c.update=function(e){var t,n,r,i,o,s=[],l=e.ticks,c=e.bounds;for(o=0;o<2;++o){var u=[Math.floor(s.length/3)],f=[-1/0],d=l[o];for(t=0;t=0){var v=t[p]-r[p]*(t[p+2]-t[p])/(r[p+2]-r[p]);0===p?o.drawLine(v,t[1],v,t[3],h[p],d[p]):o.drawLine(t[0],v,t[2],v,h[p],d[p])}}for(p=0;p=0;--e)this.objects[e].dispose();for(this.objects.length=0,e=this.overlays.length-1;e>=0;--e)this.overlays[e].dispose();this.overlays.length=0,this.gl=null},c.addObject=function(e){this.objects.indexOf(e)<0&&(this.objects.push(e),this.setDirty())},c.removeObject=function(e){for(var t=this.objects,n=0;nMath.abs(t))c.rotate(a,0,0,-e*n*Math.PI*p.rotateSpeed/window.innerWidth);else if(!p._ortho){var o=-p.zoomSpeed*i*t/window.innerHeight*(a-c.lastT())/20;c.pan(a,0,0,f*(Math.exp(o)-1))}}}),!0)},p.enableMouseListeners(),p};var r=n(8161),i=n(1152),a=n(6145),o=n(6475),s=n(2565),l=n(5233)},8245:function(e,t,n){var r=n(6832),i=n(5158),a=r(["precision mediump float;\n#define GLSLIFY 1\nattribute vec2 position;\nvarying vec2 uv;\nvoid main() {\n uv = position;\n gl_Position = vec4(position, 0, 1);\n}"]),o=r(["precision mediump float;\n#define GLSLIFY 1\n\nuniform sampler2D accumBuffer;\nvarying vec2 uv;\n\nvoid main() {\n vec4 accum = texture2D(accumBuffer, 0.5 * (uv + 1.0));\n gl_FragColor = min(vec4(1,1,1,1), accum);\n}"]);e.exports=function(e){return i(e,a,o,null,[{name:"position",type:"vec2"}])}},1059:function(e,t,n){"use strict";var r=n(4296),i=n(7453),a=n(2771),o=n(6496),s=n(2611),l=n(4234),c=n(8126),u=n(6145),f=n(1120),d=n(5268),h=n(8245),p=n(2321)({tablet:!0,featureDetect:!0});function v(){this.mouse=[-1,-1],this.screen=null,this.distance=1/0,this.index=null,this.dataCoordinate=null,this.dataPosition=null,this.object=null,this.data=null}function m(e){var t=Math.round(Math.log(Math.abs(e))/Math.log(10));if(t<0){var n=Math.round(Math.pow(10,-t));return Math.ceil(e*n)/n}return t>0?(n=Math.round(Math.pow(10,t)),Math.ceil(e/n)*n):Math.ceil(e)}function g(e){return"boolean"!==typeof e||e}e.exports={createScene:function(e){(e=e||{}).camera=e.camera||{};var t=e.canvas;t||(t=document.createElement("canvas"),e.container?e.container.appendChild(t):document.body.appendChild(t));var n=e.gl;if(n||(e.glOptions&&(p=!!e.glOptions.preserveDrawingBuffer),n=function(e,t){var n=null;try{(n=e.getContext("webgl",t))||(n=e.getContext("experimental-webgl",t))}catch(r){return null}return n}(t,e.glOptions||{premultipliedAlpha:!0,antialias:!0,preserveDrawingBuffer:p})),!n)throw new Error("webgl not supported");var y=e.bounds||[[-10,-10,-10],[10,10,10]],b=new v,x=l(n,n.drawingBufferWidth,n.drawingBufferHeight,{preferFloat:!p}),w=h(n),_=e.cameraObject&&!0===e.cameraObject._ortho||e.camera.projection&&"orthographic"===e.camera.projection.type||!1,k={eye:e.camera.eye||[2,0,0],center:e.camera.center||[0,0,0],up:e.camera.up||[0,1,0],zoomMin:e.camera.zoomMax||.1,zoomMax:e.camera.zoomMin||100,mode:e.camera.mode||"turntable",_ortho:_},S=e.axes||{},T=i(n,S);T.enable=!S.disable;var A=e.spikes||{},E=o(n,A),C=[],M=[],O=[],P=[],L=!0,I=!0,R=new Array(16),D=new Array(16),F={view:null,projection:R,model:D,_ortho:!1},N=(I=!0,[n.drawingBufferWidth,n.drawingBufferHeight]),z=e.cameraObject||r(t,k),j={gl:n,contextLost:!1,pixelRatio:e.pixelRatio||1,canvas:t,selection:b,camera:z,axes:T,axesPixels:null,spikes:E,bounds:y,objects:C,shape:N,aspect:e.aspectRatio||[1,1,1],pickRadius:e.pickRadius||10,zNear:e.zNear||.01,zFar:e.zFar||1e3,fovy:e.fovy||Math.PI/4,clearColor:e.clearColor||[0,0,0,0],autoResize:g(e.autoResize),autoBounds:g(e.autoBounds),autoScale:!!e.autoScale,autoCenter:g(e.autoCenter),clipToBounds:g(e.clipToBounds),snapToData:!!e.snapToData,onselect:e.onselect||null,onrender:e.onrender||null,onclick:e.onclick||null,cameraParams:F,oncontextloss:null,mouseListener:null,_stopped:!1,getAspectratio:function(){return{x:this.aspect[0],y:this.aspect[1],z:this.aspect[2]}},setAspectratio:function(e){this.aspect[0]=e.x,this.aspect[1]=e.y,this.aspect[2]=e.z,I=!0},setBounds:function(e,t){this.bounds[0][e]=t.min,this.bounds[1][e]=t.max},setClearColor:function(e){this.clearColor=e},clearRGBA:function(){this.gl.clearColor(this.clearColor[0],this.clearColor[1],this.clearColor[2],this.clearColor[3]),this.gl.clear(this.gl.COLOR_BUFFER_BIT|this.gl.DEPTH_BUFFER_BIT)}},B=[n.drawingBufferWidth/j.pixelRatio|0,n.drawingBufferHeight/j.pixelRatio|0];function U(){if(!j._stopped&&j.autoResize){var e=t.parentNode,n=1,r=1;e&&e!==document.body?(n=e.clientWidth,r=e.clientHeight):(n=window.innerWidth,r=window.innerHeight);var i=0|Math.ceil(n*j.pixelRatio),a=0|Math.ceil(r*j.pixelRatio);if(i!==t.width||a!==t.height){t.width=i,t.height=a;var o=t.style;o.position=o.position||"absolute",o.left="0px",o.top="0px",o.width=n+"px",o.height=r+"px",L=!0}}}function H(){for(var e=C.length,t=P.length,r=0;r0&&0===O[t-1];)O.pop(),P.pop().dispose()}function $(){if(j.contextLost)return!0;n.isContextLost()&&(j.contextLost=!0,j.mouseListener.enabled=!1,j.selection.object=null,j.oncontextloss&&j.oncontextloss())}j.autoResize&&U(),window.addEventListener("resize",U),j.update=function(e){j._stopped||(e=e||{},L=!0,I=!0)},j.add=function(e){j._stopped||(e.axes=T,C.push(e),M.push(-1),L=!0,I=!0,H())},j.remove=function(e){if(!j._stopped){var t=C.indexOf(e);t<0||(C.splice(t,1),M.pop(),L=!0,I=!0,H())}},j.dispose=function(){if(!j._stopped&&(j._stopped=!0,window.removeEventListener("resize",U),t.removeEventListener("webglcontextlost",$),j.mouseListener.enabled=!1,!j.contextLost)){T.dispose(),E.dispose();for(var e=0;eb.distance)continue;for(var c=0;c 1.0) {\n discard;\n }\n baseColor = mix(borderColor, color, step(radius, centerFraction));\n gl_FragColor = vec4(baseColor.rgb * baseColor.a, baseColor.a);\n }\n}\n"]),t.pickVertex=r(["precision mediump float;\n#define GLSLIFY 1\n\nattribute vec2 position;\nattribute vec4 pickId;\n\nuniform mat3 matrix;\nuniform float pointSize;\nuniform vec4 pickOffset;\n\nvarying vec4 fragId;\n\nvoid main() {\n vec3 hgPosition = matrix * vec3(position, 1);\n gl_Position = vec4(hgPosition.xy, 0, hgPosition.z);\n gl_PointSize = pointSize;\n\n vec4 id = pickId + pickOffset;\n id.y += floor(id.x / 256.0);\n id.x -= floor(id.x / 256.0) * 256.0;\n\n id.z += floor(id.y / 256.0);\n id.y -= floor(id.y / 256.0) * 256.0;\n\n id.w += floor(id.z / 256.0);\n id.z -= floor(id.z / 256.0) * 256.0;\n\n fragId = id;\n}\n"]),t.pickFragment=r(["precision mediump float;\n#define GLSLIFY 1\n\nvarying vec4 fragId;\n\nvoid main() {\n float radius = length(2.0 * gl_PointCoord.xy - 1.0);\n if(radius > 1.0) {\n discard;\n }\n gl_FragColor = fragId / 255.0;\n}\n"])},8271:function(e,t,n){"use strict";var r=n(5158),i=n(5827),a=n(5306),o=n(8023);function s(e,t,n,r,i){this.plot=e,this.offsetBuffer=t,this.pickBuffer=n,this.shader=r,this.pickShader=i,this.sizeMin=.5,this.sizeMinCap=2,this.sizeMax=20,this.areaRatio=1,this.pointCount=0,this.color=[1,0,0,1],this.borderColor=[0,0,0,1],this.blend=!1,this.pickOffset=0,this.points=null}e.exports=function(e,t){var n=e.gl,a=i(n),l=i(n),c=r(n,o.pointVertex,o.pointFragment),u=r(n,o.pickVertex,o.pickFragment),f=new s(e,a,l,c,u);return f.update(t),e.addObject(f),f};var l=s.prototype;l.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.offsetBuffer.dispose(),this.pickBuffer.dispose(),this.plot.removeObject(this)},l.update=function(e){var t;function n(t,n){return t in e?e[t]:n}e=e||{},this.sizeMin=n("sizeMin",.5),this.sizeMax=n("sizeMax",20),this.color=n("color",[1,0,0,1]).slice(),this.areaRatio=n("areaRatio",1),this.borderColor=n("borderColor",[0,0,0,1]).slice(),this.blend=n("blend",!1);var r=e.positions.length>>>1,i=e.positions instanceof Float32Array,o=e.idToIndex instanceof Int32Array&&e.idToIndex.length>=r,s=e.positions,l=i?s:a.mallocFloat32(s.length),c=o?e.idToIndex:a.mallocInt32(r);if(i||l.set(s),!o)for(l.set(s),t=0;t>>1;for(n=0;n=t[0]&&a<=t[2]&&o>=t[1]&&o<=t[3]&&r++}return r}(this.points,o),u=this.plot.pickPixelRatio*Math.max(Math.min(this.sizeMinCap,this.sizeMin),Math.min(this.sizeMax,this.sizeMax/Math.pow(c,.33333)));e[0]=2/s,e[4]=2/l,e[6]=-2*o[0]/s-1,e[7]=-2*o[1]/l-1,this.offsetBuffer.bind(),i.bind(),i.attributes.position.pointer(),i.uniforms.matrix=e,i.uniforms.color=this.color,i.uniforms.borderColor=this.borderColor,i.uniforms.pointCloud=u<5,i.uniforms.pointSize=u,i.uniforms.centerFraction=Math.min(1,Math.max(0,Math.sqrt(1-this.areaRatio))),r&&(t[0]=255&n,t[1]=n>>8&255,t[2]=n>>16&255,t[3]=n>>24&255,this.pickBuffer.bind(),i.attributes.pickId.pointer(a.UNSIGNED_BYTE),i.uniforms.pickOffset=t,this.pickOffset=n);var f=a.getParameter(a.BLEND),d=a.getParameter(a.DITHER);return f&&!this.blend&&a.disable(a.BLEND),d&&a.disable(a.DITHER),a.drawArrays(a.POINTS,0,this.pointCount),f&&!this.blend&&a.enable(a.BLEND),d&&a.enable(a.DITHER),n+this.pointCount}}(),l.draw=l.unifiedDraw,l.drawPick=l.unifiedDraw,l.pick=function(e,t,n){var r=this.pickOffset,i=this.pointCount;if(n=r+i)return null;var a=n-r,o=this.points;return{object:this,pointId:a,dataCoord:[o[2*a],o[2*a+1]]}}},6093:function(e){e.exports=function(e,t,n,r){var i,a,o,s,l,c=t[0],u=t[1],f=t[2],d=t[3],h=n[0],p=n[1],v=n[2],m=n[3];return(a=c*h+u*p+f*v+d*m)<0&&(a=-a,h=-h,p=-p,v=-v,m=-m),1-a>1e-6?(i=Math.acos(a),o=Math.sin(i),s=Math.sin((1-r)*i)/o,l=Math.sin(r*i)/o):(s=1-r,l=r),e[0]=s*c+l*h,e[1]=s*u+l*p,e[2]=s*f+l*v,e[3]=s*d+l*m,e}},8240:function(e){"use strict";e.exports=function(e){return e||0===e?e.toString():""}},4123:function(e,t,n){"use strict";var r=n(875);e.exports=function(e,t,n){var a=i[t];if(a||(a=i[t]={}),e in a)return a[e];var o={textAlign:"center",textBaseline:"middle",lineHeight:1,font:t,lineSpacing:1.25,styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},triangles:!0},s=r(e,o);o.triangles=!1;var l,c,u=r(e,o);if(n&&1!==n){for(l=0;l max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 glyph;\nattribute vec4 id;\n\nuniform vec4 highlightId;\nuniform float highlightScale;\nuniform mat4 model, view, projection;\nuniform vec3 clipBounds[2];\n\nvarying vec4 interpColor;\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0,0,0,0);\n } else {\n float scale = 1.0;\n if(distance(highlightId, id) < 0.0001) {\n scale = highlightScale;\n }\n\n vec4 worldPosition = model * vec4(position, 1);\n vec4 viewPosition = view * worldPosition;\n viewPosition = viewPosition / viewPosition.w;\n vec4 clipPosition = projection * (viewPosition + scale * vec4(glyph.x, -glyph.y, 0, 0));\n\n gl_Position = clipPosition;\n interpColor = color;\n pickId = id;\n dataCoordinate = position;\n }\n}"]),o=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 glyph;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform vec2 screenSize;\nuniform vec3 clipBounds[2];\nuniform float highlightScale, pixelRatio;\nuniform vec4 highlightId;\n\nvarying vec4 interpColor;\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0,0,0,0);\n } else {\n float scale = pixelRatio;\n if(distance(highlightId.bgr, id.bgr) < 0.001) {\n scale *= highlightScale;\n }\n\n vec4 worldPosition = model * vec4(position, 1.0);\n vec4 viewPosition = view * worldPosition;\n vec4 clipPosition = projection * viewPosition;\n clipPosition /= clipPosition.w;\n\n gl_Position = clipPosition + vec4(screenSize * scale * vec2(glyph.x, -glyph.y), 0.0, 0.0);\n interpColor = color;\n pickId = id;\n dataCoordinate = position;\n }\n}"]),s=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nattribute vec3 position;\nattribute vec4 color;\nattribute vec2 glyph;\nattribute vec4 id;\n\nuniform float highlightScale;\nuniform vec4 highlightId;\nuniform vec3 axes[2];\nuniform mat4 model, view, projection;\nuniform vec2 screenSize;\nuniform vec3 clipBounds[2];\nuniform float scale, pixelRatio;\n\nvarying vec4 interpColor;\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], position)) {\n\n gl_Position = vec4(0,0,0,0);\n } else {\n float lscale = pixelRatio * scale;\n if(distance(highlightId, id) < 0.0001) {\n lscale *= highlightScale;\n }\n\n vec4 clipCenter = projection * view * model * vec4(position, 1);\n vec3 dataPosition = position + 0.5*lscale*(axes[0] * glyph.x + axes[1] * glyph.y) * clipCenter.w * screenSize.y;\n vec4 clipPosition = projection * view * model * vec4(dataPosition, 1);\n\n gl_Position = clipPosition;\n interpColor = color;\n pickId = id;\n dataCoordinate = dataPosition;\n }\n}\n"]),l=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 fragClipBounds[2];\nuniform float opacity;\n\nvarying vec4 interpColor;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (\n outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate) ||\n interpColor.a * opacity == 0.\n ) discard;\n gl_FragColor = interpColor * opacity;\n}\n"]),c=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 fragClipBounds[2];\nuniform float pickGroup;\n\nvarying vec4 pickId;\nvarying vec3 dataCoordinate;\n\nvoid main() {\n if (outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate)) discard;\n\n gl_FragColor = vec4(pickGroup, pickId.bgr);\n}"]),u=[{name:"position",type:"vec3"},{name:"color",type:"vec4"},{name:"glyph",type:"vec2"},{name:"id",type:"vec4"}],f={vertex:a,fragment:l,attributes:u},d={vertex:o,fragment:l,attributes:u},h={vertex:s,fragment:l,attributes:u},p={vertex:a,fragment:c,attributes:u},v={vertex:o,fragment:c,attributes:u},m={vertex:s,fragment:c,attributes:u};function g(e,t){var n=r(e,t),i=n.attributes;return i.position.location=0,i.color.location=1,i.glyph.location=2,i.id.location=3,n}t.createPerspective=function(e){return g(e,f)},t.createOrtho=function(e){return g(e,d)},t.createProject=function(e){return g(e,h)},t.createPickPerspective=function(e){return g(e,p)},t.createPickOrtho=function(e){return g(e,v)},t.createPickProject=function(e){return g(e,m)}},2182:function(e,t,n){"use strict";var r=n(3596),i=n(5827),a=n(2944),o=n(5306),s=n(104),l=n(9282),c=n(4123),u=n(8240),f=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function d(e,t){var n=e[0],r=e[1],i=e[2],a=e[3];return e[0]=t[0]*n+t[4]*r+t[8]*i+t[12]*a,e[1]=t[1]*n+t[5]*r+t[9]*i+t[13]*a,e[2]=t[2]*n+t[6]*r+t[10]*i+t[14]*a,e[3]=t[3]*n+t[7]*r+t[11]*i+t[15]*a,e}function h(e,t,n,r){return d(r,r),d(r,r),d(r,r)}function p(e,t){this.index=e,this.dataCoordinate=this.position=t}function v(e){return!0===e||e>1?1:e}function m(e,t,n,r,i,a,o,s,l,c,u,f){this.gl=e,this.pixelRatio=1,this.shader=t,this.orthoShader=n,this.projectShader=r,this.pointBuffer=i,this.colorBuffer=a,this.glyphBuffer=o,this.idBuffer=s,this.vao=l,this.vertexCount=0,this.lineVertexCount=0,this.opacity=1,this.hasAlpha=!1,this.lineWidth=0,this.projectScale=[2/3,2/3,2/3],this.projectOpacity=[1,1,1],this.projectHasAlpha=!1,this.pickId=0,this.pickPerspectiveShader=c,this.pickOrthoShader=u,this.pickProjectShader=f,this.points=[],this._selectResult=new p(0,[0,0,0]),this.useOrtho=!0,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.axesProject=[!0,!0,!0],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.highlightId=[1,1,1,1],this.highlightScale=2,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.dirty=!0}e.exports=function(e){var t=e.gl,n=l.createPerspective(t),r=l.createOrtho(t),o=l.createProject(t),s=l.createPickPerspective(t),c=l.createPickOrtho(t),u=l.createPickProject(t),f=i(t),d=i(t),h=i(t),p=i(t),v=a(t,[{buffer:f,size:3,type:t.FLOAT},{buffer:d,size:4,type:t.FLOAT},{buffer:h,size:2,type:t.FLOAT},{buffer:p,size:4,type:t.UNSIGNED_BYTE,normalized:!0}]),g=new m(t,n,r,o,f,d,h,p,v,s,c,u);return g.update(e),g};var g=m.prototype;g.pickSlots=1,g.setPickBase=function(e){this.pickId=e},g.isTransparent=function(){if(this.hasAlpha)return!0;for(var e=0;e<3;++e)if(this.axesProject[e]&&this.projectHasAlpha)return!0;return!1},g.isOpaque=function(){if(!this.hasAlpha)return!0;for(var e=0;e<3;++e)if(this.axesProject[e]&&!this.projectHasAlpha)return!0;return!1};var y=[0,0],b=[0,0,0],x=[0,0,0],w=[0,0,0,1],_=[0,0,0,1],k=f.slice(),S=[0,0,0],T=[[0,0,0],[0,0,0]];function A(e){return e[0]=e[1]=e[2]=0,e}function E(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=1,e}function C(e,t,n,r){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[n]=r,e}function M(e,t,n,r){var i,a=t.axesProject,o=t.gl,l=e.uniforms,c=n.model||f,u=n.view||f,d=n.projection||f,p=t.axesBounds,v=function(e){for(var t=T,n=0;n<2;++n)for(var r=0;r<3;++r)t[n][r]=Math.max(Math.min(e[n][r],1e8),-1e8);return t}(t.clipBounds);i=t.axes&&t.axes.lastCubeProps?t.axes.lastCubeProps.axis:[1,1,1],y[0]=2/o.drawingBufferWidth,y[1]=2/o.drawingBufferHeight,e.bind(),l.view=u,l.projection=d,l.screenSize=y,l.highlightId=t.highlightId,l.highlightScale=t.highlightScale,l.clipBounds=v,l.pickGroup=t.pickId/255,l.pixelRatio=r;for(var m=0;m<3;++m)if(a[m]){l.scale=t.projectScale[m],l.opacity=t.projectOpacity[m];for(var g=k,M=0;M<16;++M)g[M]=0;for(M=0;M<4;++M)g[5*M]=1;g[5*m]=0,i[m]<0?g[12+m]=p[0][m]:g[12+m]=p[1][m],s(g,c,g),l.model=g;var O=(m+1)%3,P=(m+2)%3,L=A(b),I=A(x);L[O]=1,I[P]=1;var R=h(0,0,0,E(w,L)),D=h(0,0,0,E(_,I));if(Math.abs(R[1])>Math.abs(D[1])){var F=R;R=D,D=F,F=L,L=I,I=F;var N=O;O=P,P=N}R[0]<0&&(L[O]=-1),D[1]>0&&(I[P]=-1);var z=0,j=0;for(M=0;M<4;++M)z+=Math.pow(c[4*O+M],2),j+=Math.pow(c[4*P+M],2);L[O]/=Math.sqrt(z),I[P]/=Math.sqrt(j),l.axes[0]=L,l.axes[1]=I,l.fragClipBounds[0]=C(S,v[0],m,-1e8),l.fragClipBounds[1]=C(S,v[1],m,1e8),t.vao.bind(),t.vao.draw(o.TRIANGLES,t.vertexCount),t.lineWidth>0&&(o.lineWidth(t.lineWidth*r),t.vao.draw(o.LINES,t.lineVertexCount,t.vertexCount)),t.vao.unbind()}}var O=[[-1e8,-1e8,-1e8],[1e8,1e8,1e8]];function P(e,t,n,r,i,a,o){var s=n.gl;if((a===n.projectHasAlpha||o)&&M(t,n,r,i),a===n.hasAlpha||o){e.bind();var l=e.uniforms;l.model=r.model||f,l.view=r.view||f,l.projection=r.projection||f,y[0]=2/s.drawingBufferWidth,y[1]=2/s.drawingBufferHeight,l.screenSize=y,l.highlightId=n.highlightId,l.highlightScale=n.highlightScale,l.fragClipBounds=O,l.clipBounds=n.axes.bounds,l.opacity=n.opacity,l.pickGroup=n.pickId/255,l.pixelRatio=i,n.vao.bind(),n.vao.draw(s.TRIANGLES,n.vertexCount),n.lineWidth>0&&(s.lineWidth(n.lineWidth*i),n.vao.draw(s.LINES,n.lineVertexCount,n.vertexCount)),n.vao.unbind()}}function L(e,t,n,i){var a;a=Array.isArray(e)?t=this.pointCount||t<0)return null;var n=this.points[t],r=this._selectResult;r.index=t;for(var i=0;i<3;++i)r.position[i]=r.dataCoordinate[i]=n[i];return r},g.highlight=function(e){if(e){var t=e.index,n=255&t,r=t>>8&255,i=t>>16&255;this.highlightId=[n/255,r/255,i/255,0]}else this.highlightId=[1,1,1,1]},g.update=function(e){if("perspective"in(e=e||{})&&(this.useOrtho=!e.perspective),"orthographic"in e&&(this.useOrtho=!!e.orthographic),"lineWidth"in e&&(this.lineWidth=e.lineWidth),"project"in e)if(Array.isArray(e.project))this.axesProject=e.project;else{var t=!!e.project;this.axesProject=[t,t,t]}if("projectScale"in e)if(Array.isArray(e.projectScale))this.projectScale=e.projectScale.slice();else{var n=+e.projectScale;this.projectScale=[n,n,n]}if(this.projectHasAlpha=!1,"projectOpacity"in e){Array.isArray(e.projectOpacity)?this.projectOpacity=e.projectOpacity.slice():(n=+e.projectOpacity,this.projectOpacity=[n,n,n]);for(var r=0;r<3;++r)this.projectOpacity[r]=v(this.projectOpacity[r]),this.projectOpacity[r]<1&&(this.projectHasAlpha=!0)}this.hasAlpha=!1,"opacity"in e&&(this.opacity=v(e.opacity),this.opacity<1&&(this.hasAlpha=!0)),this.dirty=!0;var i,a,s=e.position,l=e.font||"normal",c=e.alignment||[0,0];if(2===c.length)i=c[0],a=c[1];else for(i=[],a=[],r=0;r0){var I=0,R=b,D=[0,0,0,1],F=[0,0,0,1],N=Array.isArray(h)&&Array.isArray(h[0]),z=Array.isArray(g)&&Array.isArray(g[0]);e:for(r=0;r0?1-A[0][0]:q<0?1+A[1][0]:1,G*=G>0?1-A[0][1]:G<0?1+A[1][1]:1],Y=S.cells||[],K=S.positions||[];for(k=0;k0){var g=n*u;o.drawBox(f-g,d-g,h+g,d+g,a),o.drawBox(f-g,p-g,h+g,p+g,a),o.drawBox(f-g,d-g,f+g,p+g,a),o.drawBox(h-g,d-g,h+g,p+g,a)}}}},s.update=function(e){e=e||{},this.innerFill=!!e.innerFill,this.outerFill=!!e.outerFill,this.innerColor=(e.innerColor||[0,0,0,.5]).slice(),this.outerColor=(e.outerColor||[0,0,0,.5]).slice(),this.borderColor=(e.borderColor||[0,0,0,1]).slice(),this.borderWidth=e.borderWidth||0,this.selectBox=(e.selectBox||this.selectBox).slice()},s.dispose=function(){this.boxBuffer.dispose(),this.boxShader.dispose(),this.plot.removeOverlay(this)}},2611:function(e,t,n){"use strict";e.exports=function(e,t){var n=t[0],a=t[1],o=r(e,n,a,{}),s=i.mallocUint8(n*a*4);return new l(e,o,s)};var r=n(4234),i=n(5306),a=n(5050),o=n(2288).nextPow2;function s(e,t,n,r,i){this.coord=[e,t],this.id=n,this.value=r,this.distance=i}function l(e,t,n){this.gl=e,this.fbo=t,this.buffer=n,this._readTimeout=null;var r=this;this._readCallback=function(){r.gl&&(t.bind(),e.readPixels(0,0,t.shape[0],t.shape[1],e.RGBA,e.UNSIGNED_BYTE,r.buffer),r._readTimeout=null)}}var c=l.prototype;Object.defineProperty(c,"shape",{get:function(){return this.gl?this.fbo.shape.slice():[0,0]},set:function(e){if(this.gl){this.fbo.shape=e;var t=this.fbo.shape[0],n=this.fbo.shape[1];if(n*t*4>this.buffer.length){i.free(this.buffer);for(var r=this.buffer=i.mallocUint8(o(n*t*4)),a=0;an)for(e=n;et)for(e=t;e=0){for(var k=0|_.type.charAt(_.type.length-1),S=new Array(k),T=0;T=0;)A+=1;w[y]=A}var E=new Array(n.length);function C(){d.program=o.program(h,d._vref,d._fref,x,w);for(var e=0;e=0){if((p=d.charCodeAt(d.length-1)-48)<2||p>4)throw new r("","Invalid data type for attribute "+f+": "+d);s(e,t,h[0],i,p,a,f)}else{if(!(d.indexOf("mat")>=0))throw new r("","Unknown data type for attribute "+f+": "+d);var p;if((p=d.charCodeAt(d.length-1)-48)<2||p>4)throw new r("","Invalid data type for attribute "+f+": "+d);l(e,t,h,i,p,a,f)}}}return a};var r=n(9068);function i(e,t,n,r,i,a){this._gl=e,this._wrapper=t,this._index=n,this._locations=r,this._dimension=i,this._constFunc=a}var a=i.prototype;a.pointer=function(e,t,n,r){var i=this,a=i._gl,o=i._locations[i._index];a.vertexAttribPointer(o,i._dimension,e||a.FLOAT,!!t,n||0,r||0),a.enableVertexAttribArray(o)},a.set=function(e,t,n,r){return this._constFunc(this._locations[this._index],e,t,n,r)},Object.defineProperty(a,"location",{get:function(){return this._locations[this._index]},set:function(e){return e!==this._locations[this._index]&&(this._locations[this._index]=0|e,this._wrapper.program=null),0|e}});var o=[function(e,t,n){return void 0===n.length?e.vertexAttrib1f(t,n):e.vertexAttrib1fv(t,n)},function(e,t,n,r){return void 0===n.length?e.vertexAttrib2f(t,n,r):e.vertexAttrib2fv(t,n)},function(e,t,n,r,i){return void 0===n.length?e.vertexAttrib3f(t,n,r,i):e.vertexAttrib3fv(t,n)},function(e,t,n,r,i,a){return void 0===n.length?e.vertexAttrib4f(t,n,r,i,a):e.vertexAttrib4fv(t,n)}];function s(e,t,n,r,a,s,l){var c=o[a],u=new i(e,t,n,r,a,c);Object.defineProperty(s,l,{set:function(t){return e.disableVertexAttribArray(r[n]),c(e,r[n],t),t},get:function(){return u},enumerable:!0})}function l(e,t,n,r,i,a,o){for(var l=new Array(i),c=new Array(i),u=0;u4)throw new i("","Invalid uniform dimension type for matrix "+name+": "+y);e["uniformMatrix"+g+"fv"](s[f],!1,d);break}throw new i("","Unknown uniform data type for "+name+": "+y)}if((g=y.charCodeAt(y.length-1)-48)<2||g>4)throw new i("","Invalid data type");switch(y.charAt(0)){case"b":case"i":e["uniform"+g+"iv"](s[f],d);break;case"v":e["uniform"+g+"fv"](s[f],d);break;default:throw new i("","Unrecognized data type for vector "+name+": "+y)}}}}}}function c(e,t){if("object"!==typeof t)return[[e,t]];var n=[];for(var r in t){var i=t[r],a=e;parseInt(r)+""===r?a+="["+r+"]":a+="."+r,"object"===typeof i?n.push.apply(n,c(a,i)):n.push([a,i])}return n}function u(e,t,r){if("object"===typeof r){var c=f(r);Object.defineProperty(e,t,{get:a(c),set:l(r),enumerable:!0,configurable:!1})}else s[r]?Object.defineProperty(e,t,{get:(u=r,function(e,t,n){return e.getUniform(t.program,n[u])}),set:l(r),enumerable:!0,configurable:!1}):e[t]=function(e){switch(e){case"bool":return!1;case"int":case"sampler2D":case"samplerCube":case"float":return 0;default:var t=e.indexOf("vec");if(0<=t&&t<=1&&e.length===4+t){if((n=e.charCodeAt(e.length-1)-48)<2||n>4)throw new i("","Invalid data type");return"b"===e.charAt(0)?o(n,!1):o(n,0)}if(0===e.indexOf("mat")&&4===e.length){var n;if((n=e.charCodeAt(e.length-1)-48)<2||n>4)throw new i("","Invalid uniform dimension type for matrix "+name+": "+e);return o(n*n,0)}throw new i("","Unknown uniform data type for "+name+": "+e)}}(n[r].type);var u}function f(e){var t;if(Array.isArray(e)){t=new Array(e.length);for(var n=0;n1){s[0]in a||(a[s[0]]=[]),a=a[s[0]];for(var l=1;l1)for(var l=0;l 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the tube vertex and normal at the given index.\n//\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\n//\n// Each tube segment is made up of a ring of vertices.\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\n// The indexes of tube segments run from 0 to 8.\n//\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\n float segmentCount = 8.0;\n\n float angle = 2.0 * 3.14159 * (index / segmentCount);\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d);\n vec3 y = v * sin(angle) * length(d);\n vec3 v3 = x + y;\n\n normal = normalize(v3);\n\n return v3;\n}\n\nattribute vec4 vector;\nattribute vec4 color, position;\nattribute vec2 uv;\n\nuniform float vectorScale, tubeScale;\nuniform mat4 model, view, projection, inverseModel;\nuniform vec3 eyePosition, lightPosition;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n // Scale the vector magnitude to stay constant with\n // model & view changes.\n vec3 normal;\n vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\n vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * tubePosition;\n cameraCoordinate.xyz /= cameraCoordinate.w;\n f_lightDirection = lightPosition - cameraCoordinate.xyz;\n f_eyeDirection = eyePosition - cameraCoordinate.xyz;\n f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\n\n // vec4 m_position = model * vec4(tubePosition, 1.0);\n vec4 t_position = view * tubePosition;\n gl_Position = projection * t_position;\n\n f_color = color;\n f_data = tubePosition.xyz;\n f_position = position.xyz;\n f_uv = uv;\n}\n"]),a=r(["#extension GL_OES_standard_derivatives : enable\n\nprecision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat cookTorranceSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness,\n float fresnel) {\n\n float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\n float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\n\n //Half angle vector\n vec3 H = normalize(lightDirection + viewDirection);\n\n //Geometric term\n float NdotH = max(dot(surfaceNormal, H), 0.0);\n float VdotH = max(dot(viewDirection, H), 0.000001);\n float LdotH = max(dot(lightDirection, H), 0.000001);\n float G1 = (2.0 * NdotH * VdotN) / VdotH;\n float G2 = (2.0 * NdotH * LdotN) / LdotH;\n float G = min(1.0, min(G1, G2));\n \n //Distribution term\n float D = beckmannDistribution(NdotH, roughness);\n\n //Fresnel term\n float F = pow(1.0 - VdotN, fresnel);\n\n //Multiply terms and done\n return G * F * D / max(3.14159265 * VdotN, 0.000001);\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\nuniform sampler2D texture;\n\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\nvarying vec4 f_color;\nvarying vec2 f_uv;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n vec3 N = normalize(f_normal);\n vec3 L = normalize(f_lightDirection);\n vec3 V = normalize(f_eyeDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n vec4 surfaceColor = f_color * texture2D(texture, f_uv);\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = litColor * opacity;\n}\n"]),o=r(["precision highp float;\n\nprecision highp float;\n#define GLSLIFY 1\n\nvec3 getOrthogonalVector(vec3 v) {\n // Return up-vector for only-z vector.\n // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\n // From the above if-statement we have ||a|| > 0 U ||b|| > 0.\n // Assign z = 0, x = -b, y = a:\n // a*-b + b*a + c*0 = -ba + ba + 0 = 0\n if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\n return normalize(vec3(-v.y, v.x, 0.0));\n } else {\n return normalize(vec3(0.0, v.z, -v.y));\n }\n}\n\n// Calculate the tube vertex and normal at the given index.\n//\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\n//\n// Each tube segment is made up of a ring of vertices.\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\n// The indexes of tube segments run from 0 to 8.\n//\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\n float segmentCount = 8.0;\n\n float angle = 2.0 * 3.14159 * (index / segmentCount);\n\n vec3 u = getOrthogonalVector(d);\n vec3 v = normalize(cross(u, d));\n\n vec3 x = u * cos(angle) * length(d);\n vec3 y = v * sin(angle) * length(d);\n vec3 v3 = x + y;\n\n normal = normalize(v3);\n\n return v3;\n}\n\nattribute vec4 vector;\nattribute vec4 position;\nattribute vec4 id;\n\nuniform mat4 model, view, projection;\nuniform float tubeScale;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n vec3 normal;\n vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\n vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\n\n gl_Position = projection * view * tubePosition;\n f_id = id;\n f_position = position.xyz;\n}\n"]),s=r(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying vec3 f_position;\nvarying vec4 f_id;\n\nvoid main() {\n if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\n\n gl_FragColor = vec4(pickId, f_id.xyz);\n}"]);t.meshShader={vertex:i,fragment:a,attributes:[{name:"position",type:"vec4"},{name:"color",type:"vec4"},{name:"uv",type:"vec2"},{name:"vector",type:"vec4"}]},t.pickShader={vertex:o,fragment:s,attributes:[{name:"position",type:"vec4"},{name:"id",type:"vec4"},{name:"vector",type:"vec4"}]}},7307:function(e,t,n){"use strict";var r=n(2858),i=n(4020),a=["xyz","xzy","yxz","yzx","zxy","zyx"],o=function(e,t,n,a){for(var o=0,s=0;s0)for(k=0;k<8;k++){var S=(k+1)%8;c.push(d[k],h[k],h[S],h[S],d[S],d[k]),f.push(y,g,g,g,y,y),p.push(v,m,m,m,v,v);var T=c.length;u.push([T-6,T-5,T-4],[T-3,T-2,T-1])}var A=d;d=h,h=A;var E=y;y=g,g=E;var C=v;v=m,m=C}return{positions:c,cells:u,vectors:f,vertexIntensity:p}}(e,n,a,o)})),f=[],d=[],h=[],p=[];for(s=0;st)return n-1}return n},l=function(e,t,n){return en?n:e},c=function(e){var t=1/0;e.sort((function(e,t){return e-t}));for(var n=e.length,r=1;rf-1||y>d-1||b>h-1)return r.create();var x,w,_,k,S,T,A=a[0][p],E=a[0][g],C=a[1][v],M=a[1][y],O=a[2][m],P=(o-A)/(E-A),L=(c-C)/(M-C),I=(u-O)/(a[2][b]-O);switch(isFinite(P)||(P=.5),isFinite(L)||(L=.5),isFinite(I)||(I=.5),n.reversedX&&(p=f-1-p,g=f-1-g),n.reversedY&&(v=d-1-v,y=d-1-y),n.reversedZ&&(m=h-1-m,b=h-1-b),n.filled){case 5:S=m,T=b,_=v*h,k=y*h,x=p*h*d,w=g*h*d;break;case 4:S=m,T=b,x=p*h,w=g*h,_=v*h*f,k=y*h*f;break;case 3:_=v,k=y,S=m*d,T=b*d,x=p*d*h,w=g*d*h;break;case 2:_=v,k=y,x=p*d,w=g*d,S=m*d*f,T=b*d*f;break;case 1:x=p,w=g,S=m*f,T=b*f,_=v*f*h,k=y*f*h;break;default:x=p,w=g,_=v*f,k=y*f,S=m*f*d,T=b*f*d}var R=i[x+_+S],D=i[x+_+T],F=i[x+k+S],N=i[x+k+T],z=i[w+_+S],j=i[w+_+T],B=i[w+k+S],U=i[w+k+T],H=r.create(),$=r.create(),V=r.create(),W=r.create();r.lerp(H,R,z,P),r.lerp($,D,j,P),r.lerp(V,F,B,P),r.lerp(W,N,U,P);var q=r.create(),G=r.create();r.lerp(q,H,V,L),r.lerp(G,$,W,L);var Z=r.create();return r.lerp(Z,q,G,I),Z}(t,e,h)},v=e.getDivergence||function(e,t){var n=r.create(),i=1e-4;r.add(n,e,[i,0,0]);var a=p(n);r.subtract(a,a,t),r.scale(a,a,1/i),r.add(n,e,[0,i,0]);var o=p(n);r.subtract(o,o,t),r.scale(o,o,1/i),r.add(n,e,[0,0,i]);var s=p(n);return r.subtract(s,s,t),r.scale(s,s,1/i),r.add(n,a,o),r.add(n,n,s),n},m=[],g=t[0][0],y=t[0][1],b=t[0][2],x=t[1][0],w=t[1][1],_=t[1][2],k=function(e){var t=e[0],n=e[1],r=e[2];return!(tx||nw||r_)},S=10*r.distance(t[0],t[1])/i,T=S*S,A=1,E=0,C=n.length;C>1&&(A=function(e){for(var t=[],n=[],r=[],i={},a={},o={},s=e.length,l=0;lE&&(E=N),D.push(N),m.push({points:P,velocities:L,divergences:D});for(var z=0;z<100*i&&P.lengthT&&r.scale(j,j,S/Math.sqrt(B)),r.add(j,j,O),I=p(j),r.squaredDistance(R,j)-T>-1e-4*T&&(P.push(j),R=j,L.push(I),F=v(j,I),N=r.length(F),isFinite(N)&&N>E&&(E=N),D.push(N)),O=j}}var U=o(m,e.colormap,E,A);return f?U.tubeScale=f:(0===E&&(E=1),U.tubeScale=.5*u*A/E),U};var u=n(9578),f=n(1140).createMesh;e.exports.createTubeMesh=function(e,t){return f(e,t,{shaders:u,traceType:"streamtube"})}},9054:function(e,t,n){var r=n(5158),i=n(6832),a=i(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec4 uv;\nattribute vec3 f;\nattribute vec3 normal;\n\nuniform vec3 objectOffset;\nuniform mat4 model, view, projection, inverseModel;\nuniform vec3 lightPosition, eyePosition;\nuniform sampler2D colormap;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec2 planeCoordinate;\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\nvarying vec4 vColor;\n\nvoid main() {\n vec3 localCoordinate = vec3(uv.zw, f.x);\n worldCoordinate = objectOffset + localCoordinate;\n vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\n vec4 clipPosition = projection * view * worldPosition;\n gl_Position = clipPosition;\n kill = f.y;\n value = f.z;\n planeCoordinate = uv.xy;\n\n vColor = texture2D(colormap, vec2(value, value));\n\n //Lighting geometry parameters\n vec4 cameraCoordinate = view * worldPosition;\n cameraCoordinate.xyz /= cameraCoordinate.w;\n lightDirection = lightPosition - cameraCoordinate.xyz;\n eyeDirection = eyePosition - cameraCoordinate.xyz;\n surfaceNormal = normalize((vec4(normal,0) * inverseModel).xyz);\n}\n"]),o=i(["precision highp float;\n#define GLSLIFY 1\n\nfloat beckmannDistribution(float x, float roughness) {\n float NdotH = max(x, 0.0001);\n float cos2Alpha = NdotH * NdotH;\n float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\n float roughness2 = roughness * roughness;\n float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\n return exp(tan2Alpha / roughness2) / denom;\n}\n\nfloat beckmannSpecular(\n vec3 lightDirection,\n vec3 viewDirection,\n vec3 surfaceNormal,\n float roughness) {\n return beckmannDistribution(dot(surfaceNormal, normalize(lightDirection + viewDirection)), roughness);\n}\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec3 lowerBound, upperBound;\nuniform float contourTint;\nuniform vec4 contourColor;\nuniform sampler2D colormap;\nuniform vec3 clipBounds[2];\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\nuniform float vertexColor;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\nvarying vec4 vColor;\n\nvoid main() {\n if (\n kill > 0.0 ||\n vColor.a == 0.0 ||\n outOfRange(clipBounds[0], clipBounds[1], worldCoordinate)\n ) discard;\n\n vec3 N = normalize(surfaceNormal);\n vec3 V = normalize(eyeDirection);\n vec3 L = normalize(lightDirection);\n\n if(gl_FrontFacing) {\n N = -N;\n }\n\n float specular = max(beckmannSpecular(L, V, N, roughness), 0.);\n float diffuse = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\n\n //decide how to interpolate color \u2014 in vertex or in fragment\n vec4 surfaceColor =\n step(vertexColor, .5) * texture2D(colormap, vec2(value, value)) +\n step(.5, vertexColor) * vColor;\n\n vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular, 1.0);\n\n gl_FragColor = mix(litColor, contourColor, contourTint) * opacity;\n}\n"]),s=i(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec4 uv;\nattribute float f;\n\nuniform vec3 objectOffset;\nuniform mat3 permutation;\nuniform mat4 model, view, projection;\nuniform float height, zOffset;\nuniform sampler2D colormap;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec2 planeCoordinate;\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\nvarying vec4 vColor;\n\nvoid main() {\n vec3 dataCoordinate = permutation * vec3(uv.xy, height);\n worldCoordinate = objectOffset + dataCoordinate;\n vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\n\n vec4 clipPosition = projection * view * worldPosition;\n clipPosition.z += zOffset;\n\n gl_Position = clipPosition;\n value = f + objectOffset.z;\n kill = -1.0;\n planeCoordinate = uv.zw;\n\n vColor = texture2D(colormap, vec2(value, value));\n\n //Don't do lighting for contours\n surfaceNormal = vec3(1,0,0);\n eyeDirection = vec3(0,1,0);\n lightDirection = vec3(0,0,1);\n}\n"]),l=i(["precision highp float;\n#define GLSLIFY 1\n\nbool outOfRange(float a, float b, float p) {\n return ((p > max(a, b)) || \n (p < min(a, b)));\n}\n\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y));\n}\n\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\n return (outOfRange(a.x, b.x, p.x) ||\n outOfRange(a.y, b.y, p.y) ||\n outOfRange(a.z, b.z, p.z));\n}\n\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\n return outOfRange(a.xyz, b.xyz, p.xyz);\n}\n\nuniform vec2 shape;\nuniform vec3 clipBounds[2];\nuniform float pickId;\n\nvarying float value, kill;\nvarying vec3 worldCoordinate;\nvarying vec2 planeCoordinate;\nvarying vec3 surfaceNormal;\n\nvec2 splitFloat(float v) {\n float vh = 255.0 * v;\n float upper = floor(vh);\n float lower = fract(vh);\n return vec2(upper / 255.0, floor(lower * 16.0) / 16.0);\n}\n\nvoid main() {\n if ((kill > 0.0) ||\n (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\n\n vec2 ux = splitFloat(planeCoordinate.x / shape.x);\n vec2 uy = splitFloat(planeCoordinate.y / shape.y);\n gl_FragColor = vec4(pickId, ux.x, uy.x, ux.y + (uy.y/16.0));\n}\n"]);t.createShader=function(e){var t=r(e,a,o,null,[{name:"uv",type:"vec4"},{name:"f",type:"vec3"},{name:"normal",type:"vec3"}]);return t.attributes.uv.location=0,t.attributes.f.location=1,t.attributes.normal.location=2,t},t.createPickShader=function(e){var t=r(e,a,l,null,[{name:"uv",type:"vec4"},{name:"f",type:"vec3"},{name:"normal",type:"vec3"}]);return t.attributes.uv.location=0,t.attributes.f.location=1,t.attributes.normal.location=2,t},t.createContourShader=function(e){var t=r(e,s,o,null,[{name:"uv",type:"vec4"},{name:"f",type:"float"}]);return t.attributes.uv.location=0,t.attributes.f.location=1,t},t.createPickContourShader=function(e){var t=r(e,s,l,null,[{name:"uv",type:"vec4"},{name:"f",type:"float"}]);return t.attributes.uv.location=0,t.attributes.f.location=1,t}},3754:function(e,t,n){"use strict";e.exports=function(e){var t=e.gl,n=y(t),r=x(t),s=b(t),l=w(t),c=i(t),u=a(t,[{buffer:c,size:4,stride:_,offset:0},{buffer:c,size:3,stride:_,offset:16},{buffer:c,size:3,stride:_,offset:28}]),f=i(t),d=a(t,[{buffer:f,size:4,stride:20,offset:0},{buffer:f,size:1,stride:20,offset:16}]),h=i(t),p=a(t,[{buffer:h,size:2,type:t.FLOAT}]),v=o(t,1,E,t.RGBA,t.UNSIGNED_BYTE);v.minFilter=t.LINEAR,v.magFilter=t.LINEAR;var m=new C(t,[0,0],[[0,0,0],[0,0,0]],n,r,c,u,v,s,l,f,d,h,p,[0,0,0]),g={levels:[[],[],[]]};for(var k in e)g[k]=e[k];return g.colormap=g.colormap||"jet",m.update(g),m};var r=n(2288),i=n(5827),a=n(2944),o=n(8931),s=n(5306),l=n(9156),c=n(7498),u=n(7382),f=n(5050),d=n(4162),h=n(104),p=n(7437),v=n(5070),m=n(9144),g=n(9054),y=g.createShader,b=g.createContourShader,x=g.createPickShader,w=g.createPickContourShader,_=40,k=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],S=[[0,0],[0,1],[1,0],[1,1],[1,0],[0,1]],T=[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]];function A(e,t,n,r,i){this.position=e,this.index=t,this.uv=n,this.level=r,this.dataCoordinate=i}!function(){for(var e=0;e<3;++e){var t=T[e],n=(e+2)%3;t[(e+1)%3+0]=1,t[n+3]=1,t[e+6]=1}}();var E=256;function C(e,t,n,r,i,a,o,l,c,u,d,h,p,v,m){this.gl=e,this.shape=t,this.bounds=n,this.objectOffset=m,this.intensityBounds=[],this._shader=r,this._pickShader=i,this._coordinateBuffer=a,this._vao=o,this._colorMap=l,this._contourShader=c,this._contourPickShader=u,this._contourBuffer=d,this._contourVAO=h,this._contourOffsets=[[],[],[]],this._contourCounts=[[],[],[]],this._vertexCount=0,this._pickResult=new A([0,0,0],[0,0],[0,0],[0,0,0],[0,0,0]),this._dynamicBuffer=p,this._dynamicVAO=v,this._dynamicOffsets=[0,0,0],this._dynamicCounts=[0,0,0],this.contourWidth=[1,1,1],this.contourLevels=[[1],[1],[1]],this.contourTint=[0,0,0],this.contourColor=[[.5,.5,.5,1],[.5,.5,.5,1],[.5,.5,.5,1]],this.showContour=!0,this.showSurface=!0,this.enableHighlight=[!0,!0,!0],this.highlightColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.highlightTint=[1,1,1],this.highlightLevel=[-1,-1,-1],this.enableDynamic=[!0,!0,!0],this.dynamicLevel=[NaN,NaN,NaN],this.dynamicColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.dynamicTint=[1,1,1],this.dynamicWidth=[1,1,1],this.axesBounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.surfaceProject=[!1,!1,!1],this.contourProject=[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],this.colorBounds=[!1,!1],this._field=[f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0])],this.pickId=1,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.snapToData=!1,this.pixelRatio=1,this.opacity=1,this.lightPosition=[10,1e4,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.vertexColor=0,this.dirty=!0}var M=C.prototype;M.genColormap=function(e,t){var n=!1,r=u([l({colormap:e,nshades:E,format:"rgba"}).map((function(e,r){var i=t?function(e,t){if(!t)return 1;if(!t.length)return 1;for(var n=0;ne&&n>0){var r=(t[n][0]-e)/(t[n][0]-t[n-1][0]);return t[n][1]*(1-r)+r*t[n-1][1]}}return 1}(r/255,t):e[3];return i<1&&(n=!0),[e[0],e[1],e[2],255*i]}))]);return c.divseq(r,255),this.hasAlphaScale=n,r},M.isTransparent=function(){return this.opacity<1||this.hasAlphaScale},M.isOpaque=function(){return!this.isTransparent()},M.pickSlots=1,M.setPickBase=function(e){this.pickId=e};var O=[0,0,0],P={showSurface:!1,showContour:!1,projections:[k.slice(),k.slice(),k.slice()],clipBounds:[[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]]]};function L(e,t){var n,r,i,a=t.axes&&t.axes.lastCubeProps.axis||O,o=t.showSurface,s=t.showContour;for(n=0;n<3;++n)for(o=o||t.surfaceProject[n],r=0;r<3;++r)s=s||t.contourProject[n][r];for(n=0;n<3;++n){var l=P.projections[n];for(r=0;r<16;++r)l[r]=0;for(r=0;r<4;++r)l[5*r]=1;l[5*n]=0,l[12+n]=t.axesBounds[+(a[n]>0)][n],h(l,e.model,l);var c=P.clipBounds[n];for(i=0;i<2;++i)for(r=0;r<3;++r)c[i][r]=e.clipBounds[i][r];c[0][n]=-1e8,c[1][n]=1e8}return P.showSurface=o,P.showContour=s,P}var I={model:k,view:k,projection:k,inverseModel:k.slice(),lowerBound:[0,0,0],upperBound:[0,0,0],colorMap:0,clipBounds:[[0,0,0],[0,0,0]],height:0,contourTint:0,contourColor:[0,0,0,1],permutation:[1,0,0,0,1,0,0,0,1],zOffset:-1e-4,objectOffset:[0,0,0],kambient:1,kdiffuse:1,kspecular:1,lightPosition:[1e3,1e3,1e3],eyePosition:[0,0,0],roughness:1,fresnel:1,opacity:1,vertexColor:0},R=k.slice(),D=[1,0,0,0,1,0,0,0,1];function F(e,t){e=e||{};var n=this.gl;n.disable(n.CULL_FACE),this._colorMap.bind(0);var r=I;r.model=e.model||k,r.view=e.view||k,r.projection=e.projection||k,r.lowerBound=[this.bounds[0][0],this.bounds[0][1],this.colorBounds[0]||this.bounds[0][2]],r.upperBound=[this.bounds[1][0],this.bounds[1][1],this.colorBounds[1]||this.bounds[1][2]],r.objectOffset=this.objectOffset,r.contourColor=this.contourColor[0],r.inverseModel=p(r.inverseModel,r.model);for(var i=0;i<2;++i)for(var a=r.clipBounds[i],o=0;o<3;++o)a[o]=Math.min(Math.max(this.clipBounds[i][o],-1e8),1e8);r.kambient=this.ambientLight,r.kdiffuse=this.diffuseLight,r.kspecular=this.specularLight,r.roughness=this.roughness,r.fresnel=this.fresnel,r.opacity=this.opacity,r.height=0,r.permutation=D,r.vertexColor=this.vertexColor;var s=R;for(h(s,r.view,r.model),h(s,r.projection,s),p(s,s),i=0;i<3;++i)r.eyePosition[i]=s[12+i]/s[15];var l=s[15];for(i=0;i<3;++i)l+=this.lightPosition[i]*s[4*i+3];for(i=0;i<3;++i){var c=s[12+i];for(o=0;o<3;++o)c+=s[4*o+i]*this.lightPosition[o];r.lightPosition[i]=c/l}var u=L(r,this);if(u.showSurface){for(this._shader.bind(),this._shader.uniforms=r,this._vao.bind(),this.showSurface&&this._vertexCount&&this._vao.draw(n.TRIANGLES,this._vertexCount),i=0;i<3;++i)this.surfaceProject[i]&&this.vertexCount&&(this._shader.uniforms.model=u.projections[i],this._shader.uniforms.clipBounds=u.clipBounds[i],this._vao.draw(n.TRIANGLES,this._vertexCount));this._vao.unbind()}if(u.showContour){var f=this._contourShader;r.kambient=1,r.kdiffuse=0,r.kspecular=0,r.opacity=1,f.bind(),f.uniforms=r;var d=this._contourVAO;for(d.bind(),i=0;i<3;++i)for(f.uniforms.permutation=T[i],n.lineWidth(this.contourWidth[i]*this.pixelRatio),o=0;o>4)/16)/255,i=Math.floor(r),a=r-i,o=t[1]*(e.value[1]+(15&e.value[2])/16)/255,s=Math.floor(o),l=o-s;i+=1,s+=1;var c=n.position;c[0]=c[1]=c[2]=0;for(var u=0;u<2;++u)for(var f=u?a:1-a,d=0;d<2;++d)for(var h=i+u,p=s+d,m=f*(d?l:1-l),g=0;g<3;++g)c[g]+=this._field[g].get(h,p)*m;for(var y=this._pickResult.level,b=0;b<3;++b)if(y[b]=v.le(this.contourLevels[b],c[b]),y[b]<0)this.contourLevels[b].length>0&&(y[b]=0);else if(y[b]Math.abs(w-c[b])&&(y[b]+=1)}for(n.index[0]=a<.5?i:i+1,n.index[1]=l<.5?s:s+1,n.uv[0]=r/t[0],n.uv[1]=o/t[1],g=0;g<3;++g)n.dataCoordinate[g]=this._field[g].get(n.index[0],n.index[1]);return n},M.padField=function(e,t){var n=t.shape.slice(),r=e.shape.slice();c.assign(e.lo(1,1).hi(n[0],n[1]),t),c.assign(e.lo(1).hi(n[0],1),t.hi(n[0],1)),c.assign(e.lo(1,r[1]-1).hi(n[0],1),t.lo(0,n[1]-1).hi(n[0],1)),c.assign(e.lo(0,1).hi(1,n[1]),t.hi(1)),c.assign(e.lo(r[0]-1,1).hi(1,n[1]),t.lo(n[0]-1)),e.set(0,0,t.get(0,0)),e.set(0,r[1]-1,t.get(0,n[1]-1)),e.set(r[0]-1,0,t.get(n[0]-1,0)),e.set(r[0]-1,r[1]-1,t.get(n[0]-1,n[1]-1))},M.update=function(e){e=e||{},this.objectOffset=e.objectOffset||this.objectOffset,this.dirty=!0,"contourWidth"in e&&(this.contourWidth=z(e.contourWidth,Number)),"showContour"in e&&(this.showContour=z(e.showContour,Boolean)),"showSurface"in e&&(this.showSurface=!!e.showSurface),"contourTint"in e&&(this.contourTint=z(e.contourTint,Boolean)),"contourColor"in e&&(this.contourColor=B(e.contourColor)),"contourProject"in e&&(this.contourProject=z(e.contourProject,(function(e){return z(e,Boolean)}))),"surfaceProject"in e&&(this.surfaceProject=e.surfaceProject),"dynamicColor"in e&&(this.dynamicColor=B(e.dynamicColor)),"dynamicTint"in e&&(this.dynamicTint=z(e.dynamicTint,Number)),"dynamicWidth"in e&&(this.dynamicWidth=z(e.dynamicWidth,Number)),"opacity"in e&&(this.opacity=e.opacity),"opacityscale"in e&&(this.opacityscale=e.opacityscale),"colorBounds"in e&&(this.colorBounds=e.colorBounds),"vertexColor"in e&&(this.vertexColor=e.vertexColor?1:0),"colormap"in e&&this._colorMap.setPixels(this.genColormap(e.colormap,this.opacityscale));var t=e.field||e.coords&&e.coords[2]||null,n=!1;if(t||(t=this._field[2].shape[0]||this._field[2].shape[2]?this._field[2].lo(1,1).hi(this._field[2].shape[0]-2,this._field[2].shape[1]-2):this._field[2].hi(0,0)),"field"in e||"coords"in e){var i=(t.shape[0]+2)*(t.shape[1]+2);i>this._field[2].data.length&&(s.freeFloat(this._field[2].data),this._field[2].data=s.mallocFloat(r.nextPow2(i))),this._field[2]=f(this._field[2].data,[t.shape[0]+2,t.shape[1]+2]),this.padField(this._field[2],t),this.shape=t.shape.slice();for(var a=this.shape,o=0;o<2;++o)this._field[2].size>this._field[o].data.length&&(s.freeFloat(this._field[o].data),this._field[o].data=s.mallocFloat(this._field[2].size)),this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2]);if(e.coords){var l=e.coords;if(!Array.isArray(l)||3!==l.length)throw new Error("gl-surface: invalid coordinates for x/y");for(o=0;o<2;++o){var c=l[o];for(g=0;g<2;++g)if(c.shape[g]!==a[g])throw new Error("gl-surface: coords have incorrect shape");this.padField(this._field[o],c)}}else if(e.ticks){var u=e.ticks;if(!Array.isArray(u)||2!==u.length)throw new Error("gl-surface: invalid ticks");for(o=0;o<2;++o){var h=u[o];if((Array.isArray(h)||h.length)&&(h=f(h)),h.shape[0]!==a[o])throw new Error("gl-surface: invalid tick length");var p=f(h.data,a);p.stride[o]=h.stride[0],p.stride[1^o]=0,this.padField(this._field[o],p)}}else{for(o=0;o<2;++o){var v=[0,0];v[o]=1,this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2],v,0)}this._field[0].set(0,0,0);for(var g=0;g0){for(var be=0;be<5;++be)J.pop();U-=1}continue e}J.push(re[0],re[1],oe[0],oe[1],re[2]),U+=1}}ne.push(U)}this._contourOffsets[Q]=te,this._contourCounts[Q]=ne}var xe=s.mallocFloat(J.length);for(o=0;os||o[1]<0||o[1]>s)throw new Error("gl-texture2d: Invalid texture size");var l=p(o,t.stride.slice()),c=0;"float32"===n?c=e.FLOAT:"float64"===n?(c=e.FLOAT,l=!1,n="float32"):"uint8"===n?c=e.UNSIGNED_BYTE:(c=e.UNSIGNED_BYTE,l=!1,n="uint8");var f,h,m=0;if(2===o.length)m=e.LUMINANCE,o=[o[0],o[1],1],t=r(t.data,o,[t.stride[0],t.stride[1],1],t.offset);else{if(3!==o.length)throw new Error("gl-texture2d: Invalid shape for texture");if(1===o[2])m=e.ALPHA;else if(2===o[2])m=e.LUMINANCE_ALPHA;else if(3===o[2])m=e.RGB;else{if(4!==o[2])throw new Error("gl-texture2d: Invalid shape for pixel coords");m=e.RGBA}}c!==e.FLOAT||e.getExtension("OES_texture_float")||(c=e.UNSIGNED_BYTE,l=!1);var g=t.size;if(l)f=0===t.offset&&t.data.length===g?t.data:t.data.subarray(t.offset,t.offset+g);else{var y=[o[2],o[2]*o[0],1];h=a.malloc(g,n);var b=r(h,o,y,0);"float32"!==n&&"float64"!==n||c!==e.UNSIGNED_BYTE?i.assign(b,t):u(b,t),f=h.subarray(0,g)}var x=v(e);return e.texImage2D(e.TEXTURE_2D,0,m,o[0],o[1],0,m,c,f),l||a.free(h),new d(e,x,o[0],o[1],m,c)}(e,t)}throw new Error("gl-texture2d: Invalid arguments for texture2d constructor")};var o=null,s=null,l=null;function c(e){return"undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement||"undefined"!=typeof HTMLImageElement&&e instanceof HTMLImageElement||"undefined"!=typeof HTMLVideoElement&&e instanceof HTMLVideoElement||"undefined"!=typeof ImageData&&e instanceof ImageData}var u=function(e,t){i.muls(e,t,255)};function f(e,t,n){var r=e.gl,i=r.getParameter(r.MAX_TEXTURE_SIZE);if(t<0||t>i||n<0||n>i)throw new Error("gl-texture2d: Invalid texture size");return e._shape=[t,n],e.bind(),r.texImage2D(r.TEXTURE_2D,0,e.format,t,n,0,e.format,e.type,null),e._mipLevels=[0],e}function d(e,t,n,r,i,a){this.gl=e,this.handle=t,this.format=i,this.type=a,this._shape=[n,r],this._mipLevels=[0],this._magFilter=e.NEAREST,this._minFilter=e.NEAREST,this._wrapS=e.CLAMP_TO_EDGE,this._wrapT=e.CLAMP_TO_EDGE,this._anisoSamples=1;var o=this,s=[this._wrapS,this._wrapT];Object.defineProperties(s,[{get:function(){return o._wrapS},set:function(e){return o.wrapS=e}},{get:function(){return o._wrapT},set:function(e){return o.wrapT=e}}]),this._wrapVector=s;var l=[this._shape[0],this._shape[1]];Object.defineProperties(l,[{get:function(){return o._shape[0]},set:function(e){return o.width=e}},{get:function(){return o._shape[1]},set:function(e){return o.height=e}}]),this._shapeVector=l}var h=d.prototype;function p(e,t){return 3===e.length?1===t[2]&&t[1]===e[0]*e[2]&&t[0]===e[2]:1===t[0]&&t[1]===e[0]}function v(e){var t=e.createTexture();return e.bindTexture(e.TEXTURE_2D,t),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.NEAREST),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.CLAMP_TO_EDGE),t}function m(e,t,n,r,i){var a=e.getParameter(e.MAX_TEXTURE_SIZE);if(t<0||t>a||n<0||n>a)throw new Error("gl-texture2d: Invalid texture shape");if(i===e.FLOAT&&!e.getExtension("OES_texture_float"))throw new Error("gl-texture2d: Floating point textures not supported on this platform");var o=v(e);return e.texImage2D(e.TEXTURE_2D,0,r,t,n,0,r,i,null),new d(e,o,t,n,r,i)}Object.defineProperties(h,{minFilter:{get:function(){return this._minFilter},set:function(e){this.bind();var t=this.gl;if(this.type===t.FLOAT&&o.indexOf(e)>=0&&(t.getExtension("OES_texture_float_linear")||(e=t.NEAREST)),s.indexOf(e)<0)throw new Error("gl-texture2d: Unknown filter mode "+e);return t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,e),this._minFilter=e}},magFilter:{get:function(){return this._magFilter},set:function(e){this.bind();var t=this.gl;if(this.type===t.FLOAT&&o.indexOf(e)>=0&&(t.getExtension("OES_texture_float_linear")||(e=t.NEAREST)),s.indexOf(e)<0)throw new Error("gl-texture2d: Unknown filter mode "+e);return t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,e),this._magFilter=e}},mipSamples:{get:function(){return this._anisoSamples},set:function(e){var t=this._anisoSamples;if(this._anisoSamples=0|Math.max(e,1),t!==this._anisoSamples){var n=this.gl.getExtension("EXT_texture_filter_anisotropic");n&&this.gl.texParameterf(this.gl.TEXTURE_2D,n.TEXTURE_MAX_ANISOTROPY_EXT,this._anisoSamples)}return this._anisoSamples}},wrapS:{get:function(){return this._wrapS},set:function(e){if(this.bind(),l.indexOf(e)<0)throw new Error("gl-texture2d: Unknown wrap mode "+e);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,e),this._wrapS=e}},wrapT:{get:function(){return this._wrapT},set:function(e){if(this.bind(),l.indexOf(e)<0)throw new Error("gl-texture2d: Unknown wrap mode "+e);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,e),this._wrapT=e}},wrap:{get:function(){return this._wrapVector},set:function(e){if(Array.isArray(e)||(e=[e,e]),2!==e.length)throw new Error("gl-texture2d: Must specify wrap mode for rows and columns");for(var t=0;t<2;++t)if(l.indexOf(e[t])<0)throw new Error("gl-texture2d: Unknown wrap mode "+e);this._wrapS=e[0],this._wrapT=e[1];var n=this.gl;return this.bind(),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_S,this._wrapS),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_T,this._wrapT),e}},shape:{get:function(){return this._shapeVector},set:function(e){if(Array.isArray(e)){if(2!==e.length)throw new Error("gl-texture2d: Invalid texture shape")}else e=[0|e,0|e];return f(this,0|e[0],0|e[1]),[0|e[0],0|e[1]]}},width:{get:function(){return this._shape[0]},set:function(e){return f(this,e|=0,this._shape[1]),e}},height:{get:function(){return this._shape[1]},set:function(e){return e|=0,f(this,this._shape[0],e),e}}}),h.bind=function(e){var t=this.gl;return void 0!==e&&t.activeTexture(t.TEXTURE0+(0|e)),t.bindTexture(t.TEXTURE_2D,this.handle),void 0!==e?0|e:t.getParameter(t.ACTIVE_TEXTURE)-t.TEXTURE0},h.dispose=function(){this.gl.deleteTexture(this.handle)},h.generateMipmap=function(){this.bind(),this.gl.generateMipmap(this.gl.TEXTURE_2D);for(var e=Math.min(this._shape[0],this._shape[1]),t=0;e>0;++t,e>>>=1)this._mipLevels.indexOf(t)<0&&this._mipLevels.push(t)},h.setPixels=function(e,t,n,o){var s=this.gl;this.bind(),Array.isArray(t)?(o=n,n=0|t[1],t=0|t[0]):(t=t||0,n=n||0),o=o||0;var l=c(e)?e:e.raw;if(l)this._mipLevels.indexOf(o)<0?(s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,this.type,l),this._mipLevels.push(o)):s.texSubImage2D(s.TEXTURE_2D,o,t,n,this.format,this.type,l);else{if(!(e.shape&&e.stride&&e.data))throw new Error("gl-texture2d: Unsupported data type");if(e.shape.length<2||t+e.shape[1]>this._shape[1]>>>o||n+e.shape[0]>this._shape[0]>>>o||t<0||n<0)throw new Error("gl-texture2d: Texture dimensions are out of bounds");!function(e,t,n,o,s,l,c,f){var d=f.dtype,h=f.shape.slice();if(h.length<2||h.length>3)throw new Error("gl-texture2d: Invalid ndarray, must be 2d or 3d");var v=0,m=0,g=p(h,f.stride.slice());if("float32"===d?v=e.FLOAT:"float64"===d?(v=e.FLOAT,g=!1,d="float32"):"uint8"===d?v=e.UNSIGNED_BYTE:(v=e.UNSIGNED_BYTE,g=!1,d="uint8"),2===h.length)m=e.LUMINANCE,h=[h[0],h[1],1],f=r(f.data,h,[f.stride[0],f.stride[1],1],f.offset);else{if(3!==h.length)throw new Error("gl-texture2d: Invalid shape for texture");if(1===h[2])m=e.ALPHA;else if(2===h[2])m=e.LUMINANCE_ALPHA;else if(3===h[2])m=e.RGB;else{if(4!==h[2])throw new Error("gl-texture2d: Invalid shape for pixel coords");m=e.RGBA}h[2]}if(m!==e.LUMINANCE&&m!==e.ALPHA||s!==e.LUMINANCE&&s!==e.ALPHA||(m=s),m!==s)throw new Error("gl-texture2d: Incompatible texture format for setPixels");var y=f.size,b=c.indexOf(o)<0;if(b&&c.push(o),v===l&&g)0===f.offset&&f.data.length===y?b?e.texImage2D(e.TEXTURE_2D,o,s,h[0],h[1],0,s,l,f.data):e.texSubImage2D(e.TEXTURE_2D,o,t,n,h[0],h[1],s,l,f.data):b?e.texImage2D(e.TEXTURE_2D,o,s,h[0],h[1],0,s,l,f.data.subarray(f.offset,f.offset+y)):e.texSubImage2D(e.TEXTURE_2D,o,t,n,h[0],h[1],s,l,f.data.subarray(f.offset,f.offset+y));else{var x;x=l===e.FLOAT?a.mallocFloat32(y):a.mallocUint8(y);var w=r(x,h,[h[2],h[2]*h[0],1]);v===e.FLOAT&&l===e.UNSIGNED_BYTE?u(w,f):i.assign(w,f),b?e.texImage2D(e.TEXTURE_2D,o,s,h[0],h[1],0,s,l,x.subarray(0,y)):e.texSubImage2D(e.TEXTURE_2D,o,t,n,h[0],h[1],s,l,x.subarray(0,y)),l===e.FLOAT?a.freeFloat32(x):a.freeUint8(x)}}(s,t,n,o,this.format,this.type,this._mipLevels,e)}}},3056:function(e){"use strict";e.exports=function(e,t,n){t?t.bind():e.bindBuffer(e.ELEMENT_ARRAY_BUFFER,null);var r=0|e.getParameter(e.MAX_VERTEX_ATTRIBS);if(n){if(n.length>r)throw new Error("gl-vao: Too many vertex attributes");for(var i=0;i1?0:Math.acos(s)};var r=n(5415),i=n(899),a=n(9305)},8827:function(e){e.exports=function(e,t){return e[0]=Math.ceil(t[0]),e[1]=Math.ceil(t[1]),e[2]=Math.ceil(t[2]),e}},7622:function(e){e.exports=function(e){var t=new Float32Array(3);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}},8782:function(e){e.exports=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}},8501:function(e){e.exports=function(){var e=new Float32Array(3);return e[0]=0,e[1]=0,e[2]=0,e}},903:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2],o=n[0],s=n[1],l=n[2];return e[0]=i*l-a*s,e[1]=a*o-r*l,e[2]=r*s-i*o,e}},5981:function(e,t,n){e.exports=n(8288)},8288:function(e){e.exports=function(e,t){var n=t[0]-e[0],r=t[1]-e[1],i=t[2]-e[2];return Math.sqrt(n*n+r*r+i*i)}},8629:function(e,t,n){e.exports=n(7979)},7979:function(e){e.exports=function(e,t,n){return e[0]=t[0]/n[0],e[1]=t[1]/n[1],e[2]=t[2]/n[2],e}},9305:function(e){e.exports=function(e,t){return e[0]*t[0]+e[1]*t[1]+e[2]*t[2]}},154:function(e){e.exports=1e-6},4932:function(e,t,n){e.exports=function(e,t){var n=e[0],i=e[1],a=e[2],o=t[0],s=t[1],l=t[2];return Math.abs(n-o)<=r*Math.max(1,Math.abs(n),Math.abs(o))&&Math.abs(i-s)<=r*Math.max(1,Math.abs(i),Math.abs(s))&&Math.abs(a-l)<=r*Math.max(1,Math.abs(a),Math.abs(l))};var r=n(154)},5777:function(e){e.exports=function(e,t){return e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]}},3306:function(e){e.exports=function(e,t){return e[0]=Math.floor(t[0]),e[1]=Math.floor(t[1]),e[2]=Math.floor(t[2]),e}},7447:function(e,t,n){e.exports=function(e,t,n,i,a,o){var s,l;for(t||(t=3),n||(n=0),l=i?Math.min(i*t+n,e.length):e.length,s=n;s0&&(a=1/Math.sqrt(a),e[0]=t[0]*a,e[1]=t[1]*a,e[2]=t[2]*a),e}},6660:function(e){e.exports=function(e,t){t=t||1;var n=2*Math.random()*Math.PI,r=2*Math.random()-1,i=Math.sqrt(1-r*r)*t;return e[0]=Math.cos(n)*i,e[1]=Math.sin(n)*i,e[2]=r*t,e}},392:function(e){e.exports=function(e,t,n,r){var i=n[1],a=n[2],o=t[1]-i,s=t[2]-a,l=Math.sin(r),c=Math.cos(r);return e[0]=t[0],e[1]=i+o*c-s*l,e[2]=a+o*l+s*c,e}},3222:function(e){e.exports=function(e,t,n,r){var i=n[0],a=n[2],o=t[0]-i,s=t[2]-a,l=Math.sin(r),c=Math.cos(r);return e[0]=i+s*l+o*c,e[1]=t[1],e[2]=a+s*c-o*l,e}},3388:function(e){e.exports=function(e,t,n,r){var i=n[0],a=n[1],o=t[0]-i,s=t[1]-a,l=Math.sin(r),c=Math.cos(r);return e[0]=i+o*c-s*l,e[1]=a+o*l+s*c,e[2]=t[2],e}},1624:function(e){e.exports=function(e,t){return e[0]=Math.round(t[0]),e[1]=Math.round(t[1]),e[2]=Math.round(t[2]),e}},5685:function(e){e.exports=function(e,t,n){return e[0]=t[0]*n,e[1]=t[1]*n,e[2]=t[2]*n,e}},6722:function(e){e.exports=function(e,t,n,r){return e[0]=t[0]+n[0]*r,e[1]=t[1]+n[1]*r,e[2]=t[2]+n[2]*r,e}},831:function(e){e.exports=function(e,t,n,r){return e[0]=t,e[1]=n,e[2]=r,e}},5294:function(e,t,n){e.exports=n(6403)},3303:function(e,t,n){e.exports=n(4337)},6403:function(e){e.exports=function(e,t){var n=t[0]-e[0],r=t[1]-e[1],i=t[2]-e[2];return n*n+r*r+i*i}},4337:function(e){e.exports=function(e){var t=e[0],n=e[1],r=e[2];return t*t+n*n+r*r}},8921:function(e,t,n){e.exports=n(911)},911:function(e){e.exports=function(e,t,n){return e[0]=t[0]-n[0],e[1]=t[1]-n[1],e[2]=t[2]-n[2],e}},9908:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2];return e[0]=r*n[0]+i*n[3]+a*n[6],e[1]=r*n[1]+i*n[4]+a*n[7],e[2]=r*n[2]+i*n[5]+a*n[8],e}},3255:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2],o=n[3]*r+n[7]*i+n[11]*a+n[15];return o=o||1,e[0]=(n[0]*r+n[4]*i+n[8]*a+n[12])/o,e[1]=(n[1]*r+n[5]*i+n[9]*a+n[13])/o,e[2]=(n[2]*r+n[6]*i+n[10]*a+n[14])/o,e}},6568:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2],o=n[0],s=n[1],l=n[2],c=n[3],u=c*r+s*a-l*i,f=c*i+l*r-o*a,d=c*a+o*i-s*r,h=-o*r-s*i-l*a;return e[0]=u*c+h*-o+f*-l-d*-s,e[1]=f*c+h*-s+d*-o-u*-l,e[2]=d*c+h*-l+u*-s-f*-o,e}},3433:function(e){e.exports=function(e,t,n){return e[0]=t[0]+n[0],e[1]=t[1]+n[1],e[2]=t[2]+n[2],e[3]=t[3]+n[3],e}},1413:function(e){e.exports=function(e){var t=new Float32Array(4);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}},3470:function(e){e.exports=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}},5313:function(e){e.exports=function(){var e=new Float32Array(4);return e[0]=0,e[1]=0,e[2]=0,e[3]=0,e}},5446:function(e){e.exports=function(e,t){var n=t[0]-e[0],r=t[1]-e[1],i=t[2]-e[2],a=t[3]-e[3];return Math.sqrt(n*n+r*r+i*i+a*a)}},205:function(e){e.exports=function(e,t,n){return e[0]=t[0]/n[0],e[1]=t[1]/n[1],e[2]=t[2]/n[2],e[3]=t[3]/n[3],e}},4242:function(e){e.exports=function(e,t){return e[0]*t[0]+e[1]*t[1]+e[2]*t[2]+e[3]*t[3]}},5680:function(e){e.exports=function(e,t,n,r){var i=new Float32Array(4);return i[0]=e,i[1]=t,i[2]=n,i[3]=r,i}},4020:function(e,t,n){e.exports={create:n(5313),clone:n(1413),fromValues:n(5680),copy:n(3470),set:n(6453),add:n(3433),subtract:n(2705),multiply:n(746),divide:n(205),min:n(2170),max:n(3030),scale:n(5510),scaleAndAdd:n(4224),distance:n(5446),squaredDistance:n(1542),length:n(8177),squaredLength:n(9037),negate:n(6459),inverse:n(8057),normalize:n(381),dot:n(4242),lerp:n(8746),random:n(3770),transformMat4:n(6342),transformQuat:n(5022)}},8057:function(e){e.exports=function(e,t){return e[0]=1/t[0],e[1]=1/t[1],e[2]=1/t[2],e[3]=1/t[3],e}},8177:function(e){e.exports=function(e){var t=e[0],n=e[1],r=e[2],i=e[3];return Math.sqrt(t*t+n*n+r*r+i*i)}},8746:function(e){e.exports=function(e,t,n,r){var i=t[0],a=t[1],o=t[2],s=t[3];return e[0]=i+r*(n[0]-i),e[1]=a+r*(n[1]-a),e[2]=o+r*(n[2]-o),e[3]=s+r*(n[3]-s),e}},3030:function(e){e.exports=function(e,t,n){return e[0]=Math.max(t[0],n[0]),e[1]=Math.max(t[1],n[1]),e[2]=Math.max(t[2],n[2]),e[3]=Math.max(t[3],n[3]),e}},2170:function(e){e.exports=function(e,t,n){return e[0]=Math.min(t[0],n[0]),e[1]=Math.min(t[1],n[1]),e[2]=Math.min(t[2],n[2]),e[3]=Math.min(t[3],n[3]),e}},746:function(e){e.exports=function(e,t,n){return e[0]=t[0]*n[0],e[1]=t[1]*n[1],e[2]=t[2]*n[2],e[3]=t[3]*n[3],e}},6459:function(e){e.exports=function(e,t){return e[0]=-t[0],e[1]=-t[1],e[2]=-t[2],e[3]=-t[3],e}},381:function(e){e.exports=function(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=n*n+r*r+i*i+a*a;return o>0&&(o=1/Math.sqrt(o),e[0]=n*o,e[1]=r*o,e[2]=i*o,e[3]=a*o),e}},3770:function(e,t,n){var r=n(381),i=n(5510);e.exports=function(e,t){return t=t||1,e[0]=Math.random(),e[1]=Math.random(),e[2]=Math.random(),e[3]=Math.random(),r(e,e),i(e,e,t),e}},5510:function(e){e.exports=function(e,t,n){return e[0]=t[0]*n,e[1]=t[1]*n,e[2]=t[2]*n,e[3]=t[3]*n,e}},4224:function(e){e.exports=function(e,t,n,r){return e[0]=t[0]+n[0]*r,e[1]=t[1]+n[1]*r,e[2]=t[2]+n[2]*r,e[3]=t[3]+n[3]*r,e}},6453:function(e){e.exports=function(e,t,n,r,i){return e[0]=t,e[1]=n,e[2]=r,e[3]=i,e}},1542:function(e){e.exports=function(e,t){var n=t[0]-e[0],r=t[1]-e[1],i=t[2]-e[2],a=t[3]-e[3];return n*n+r*r+i*i+a*a}},9037:function(e){e.exports=function(e){var t=e[0],n=e[1],r=e[2],i=e[3];return t*t+n*n+r*r+i*i}},2705:function(e){e.exports=function(e,t,n){return e[0]=t[0]-n[0],e[1]=t[1]-n[1],e[2]=t[2]-n[2],e[3]=t[3]-n[3],e}},6342:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2],o=t[3];return e[0]=n[0]*r+n[4]*i+n[8]*a+n[12]*o,e[1]=n[1]*r+n[5]*i+n[9]*a+n[13]*o,e[2]=n[2]*r+n[6]*i+n[10]*a+n[14]*o,e[3]=n[3]*r+n[7]*i+n[11]*a+n[15]*o,e}},5022:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2],o=n[0],s=n[1],l=n[2],c=n[3],u=c*r+s*a-l*i,f=c*i+l*r-o*a,d=c*a+o*i-s*r,h=-o*r-s*i-l*a;return e[0]=u*c+h*-o+f*-l-d*-s,e[1]=f*c+h*-s+d*-o-u*-l,e[2]=d*c+h*-l+u*-s-f*-o,e[3]=t[3],e}},9365:function(e,t,n){var r=n(8096),i=n(7896);e.exports=function(e){for(var t=Array.isArray(e)?e:r(e),n=0;n0)continue;n=e.slice(0,1).join("")}return j(n),P+=n.length,(E=E.slice(n.length)).length}}function G(){return/[^a-fA-F0-9]/.test(t)?(j(E.join("")),A=l,S):(E.push(t),n=t,S+1)}function Z(){return"."===t||/[eE]/.test(t)?(E.push(t),A=v,n=t,S+1):"x"===t&&1===E.length&&"0"===E[0]?(A=w,E.push(t),n=t,S+1):/[^\d]/.test(t)?(j(E.join("")),A=l,S):(E.push(t),n=t,S+1)}function Y(){return"f"===t&&(E.push(t),n=t,S+=1),/[eE]/.test(t)?(E.push(t),n=t,S+1):("-"!==t&&"+"!==t||!/[eE]/.test(n))&&/[^\d]/.test(t)?(j(E.join("")),A=l,S):(E.push(t),n=t,S+1)}function K(){if(/[^\d\w_]/.test(t)){var e=E.join("");return A=z[e]?y:N[e]?g:m,j(E.join("")),A=l,S}return E.push(t),n=t,S+1}};var r=n(399),i=n(9746),a=n(9525),o=n(9458),s=n(3585),l=999,c=9999,u=0,f=1,d=2,h=3,p=4,v=5,m=6,g=7,y=8,b=9,x=10,w=11,_=["block-comment","line-comment","preprocessor","operator","integer","float","ident","builtin","keyword","whitespace","eof","integer"]},3585:function(e,t,n){var r=n(9525);r=r.slice().filter((function(e){return!/^(gl\_|texture)/.test(e)})),e.exports=r.concat(["gl_VertexID","gl_InstanceID","gl_Position","gl_PointSize","gl_FragCoord","gl_FrontFacing","gl_FragDepth","gl_PointCoord","gl_MaxVertexAttribs","gl_MaxVertexUniformVectors","gl_MaxVertexOutputVectors","gl_MaxFragmentInputVectors","gl_MaxVertexTextureImageUnits","gl_MaxCombinedTextureImageUnits","gl_MaxTextureImageUnits","gl_MaxFragmentUniformVectors","gl_MaxDrawBuffers","gl_MinProgramTexelOffset","gl_MaxProgramTexelOffset","gl_DepthRangeParameters","gl_DepthRange","trunc","round","roundEven","isnan","isinf","floatBitsToInt","floatBitsToUint","intBitsToFloat","uintBitsToFloat","packSnorm2x16","unpackSnorm2x16","packUnorm2x16","unpackUnorm2x16","packHalf2x16","unpackHalf2x16","outerProduct","transpose","determinant","inverse","texture","textureSize","textureProj","textureLod","textureOffset","texelFetch","texelFetchOffset","textureProjOffset","textureLodOffset","textureProjLod","textureProjLodOffset","textureGrad","textureGradOffset","textureProjGrad","textureProjGradOffset"])},9525:function(e){e.exports=["abs","acos","all","any","asin","atan","ceil","clamp","cos","cross","dFdx","dFdy","degrees","distance","dot","equal","exp","exp2","faceforward","floor","fract","gl_BackColor","gl_BackLightModelProduct","gl_BackLightProduct","gl_BackMaterial","gl_BackSecondaryColor","gl_ClipPlane","gl_ClipVertex","gl_Color","gl_DepthRange","gl_DepthRangeParameters","gl_EyePlaneQ","gl_EyePlaneR","gl_EyePlaneS","gl_EyePlaneT","gl_Fog","gl_FogCoord","gl_FogFragCoord","gl_FogParameters","gl_FragColor","gl_FragCoord","gl_FragData","gl_FragDepth","gl_FragDepthEXT","gl_FrontColor","gl_FrontFacing","gl_FrontLightModelProduct","gl_FrontLightProduct","gl_FrontMaterial","gl_FrontSecondaryColor","gl_LightModel","gl_LightModelParameters","gl_LightModelProducts","gl_LightProducts","gl_LightSource","gl_LightSourceParameters","gl_MaterialParameters","gl_MaxClipPlanes","gl_MaxCombinedTextureImageUnits","gl_MaxDrawBuffers","gl_MaxFragmentUniformComponents","gl_MaxLights","gl_MaxTextureCoords","gl_MaxTextureImageUnits","gl_MaxTextureUnits","gl_MaxVaryingFloats","gl_MaxVertexAttribs","gl_MaxVertexTextureImageUnits","gl_MaxVertexUniformComponents","gl_ModelViewMatrix","gl_ModelViewMatrixInverse","gl_ModelViewMatrixInverseTranspose","gl_ModelViewMatrixTranspose","gl_ModelViewProjectionMatrix","gl_ModelViewProjectionMatrixInverse","gl_ModelViewProjectionMatrixInverseTranspose","gl_ModelViewProjectionMatrixTranspose","gl_MultiTexCoord0","gl_MultiTexCoord1","gl_MultiTexCoord2","gl_MultiTexCoord3","gl_MultiTexCoord4","gl_MultiTexCoord5","gl_MultiTexCoord6","gl_MultiTexCoord7","gl_Normal","gl_NormalMatrix","gl_NormalScale","gl_ObjectPlaneQ","gl_ObjectPlaneR","gl_ObjectPlaneS","gl_ObjectPlaneT","gl_Point","gl_PointCoord","gl_PointParameters","gl_PointSize","gl_Position","gl_ProjectionMatrix","gl_ProjectionMatrixInverse","gl_ProjectionMatrixInverseTranspose","gl_ProjectionMatrixTranspose","gl_SecondaryColor","gl_TexCoord","gl_TextureEnvColor","gl_TextureMatrix","gl_TextureMatrixInverse","gl_TextureMatrixInverseTranspose","gl_TextureMatrixTranspose","gl_Vertex","greaterThan","greaterThanEqual","inversesqrt","length","lessThan","lessThanEqual","log","log2","matrixCompMult","max","min","mix","mod","normalize","not","notEqual","pow","radians","reflect","refract","sign","sin","smoothstep","sqrt","step","tan","texture2D","texture2DLod","texture2DProj","texture2DProjLod","textureCube","textureCubeLod","texture2DLodEXT","texture2DProjLodEXT","textureCubeLodEXT","texture2DGradEXT","texture2DProjGradEXT","textureCubeGradEXT"]},9458:function(e,t,n){var r=n(399);e.exports=r.slice().concat(["layout","centroid","smooth","case","mat2x2","mat2x3","mat2x4","mat3x2","mat3x3","mat3x4","mat4x2","mat4x3","mat4x4","uvec2","uvec3","uvec4","samplerCubeShadow","sampler2DArray","sampler2DArrayShadow","isampler2D","isampler3D","isamplerCube","isampler2DArray","usampler2D","usampler3D","usamplerCube","usampler2DArray","coherent","restrict","readonly","writeonly","resource","atomic_uint","noperspective","patch","sample","subroutine","common","partition","active","filter","image1D","image2D","image3D","imageCube","iimage1D","iimage2D","iimage3D","iimageCube","uimage1D","uimage2D","uimage3D","uimageCube","image1DArray","image2DArray","iimage1DArray","iimage2DArray","uimage1DArray","uimage2DArray","image1DShadow","image2DShadow","image1DArrayShadow","image2DArrayShadow","imageBuffer","iimageBuffer","uimageBuffer","sampler1DArray","sampler1DArrayShadow","isampler1D","isampler1DArray","usampler1D","usampler1DArray","isampler2DRect","usampler2DRect","samplerBuffer","isamplerBuffer","usamplerBuffer","sampler2DMS","isampler2DMS","usampler2DMS","sampler2DMSArray","isampler2DMSArray","usampler2DMSArray"])},399:function(e){e.exports=["precision","highp","mediump","lowp","attribute","const","uniform","varying","break","continue","do","for","while","if","else","in","out","inout","float","int","uint","void","bool","true","false","discard","return","mat2","mat3","mat4","vec2","vec3","vec4","ivec2","ivec3","ivec4","bvec2","bvec3","bvec4","sampler1D","sampler2D","sampler3D","samplerCube","sampler1DShadow","sampler2DShadow","struct","asm","class","union","enum","typedef","template","this","packed","goto","switch","default","inline","noinline","volatile","public","static","extern","external","interface","long","short","double","half","fixed","unsigned","input","output","hvec2","hvec3","hvec4","dvec2","dvec3","dvec4","fvec2","fvec3","fvec4","sampler2DRect","sampler3DRect","sampler2DRectShadow","sizeof","cast","namespace","using"]},9746:function(e){e.exports=["<<=",">>=","++","--","<<",">>","<=",">=","==","!=","&&","||","+=","-=","*=","/=","%=","&=","^^","^=","|=","(",")","[","]",".","!","~","*","/","%","+","-","<",">","&","^","|","?",":","=",",",";","{","}"]},8096:function(e,t,n){var r=n(3193);e.exports=function(e,t){var n=r(t),i=[];return i=(i=i.concat(n(e))).concat(n(null))}},6832:function(e){e.exports=function(e){"string"===typeof e&&(e=[e]);for(var t=[].slice.call(arguments,1),n=[],r=0;r0;)for(var s=(e=o.pop()).adjacent,l=0;l<=n;++l){var c=s[l];if(c.boundary&&!(c.lastVisited<=-r)){for(var u=c.vertices,f=0;f<=n;++f){var d=u[f];i[f]=d<0?t:a[d]}var h=this.orient();if(h>0)return c;c.lastVisited=-r,0===h&&o.push(c)}}return null},u.walk=function(e,t){var n=this.vertices.length-1,r=this.dimension,i=this.vertices,a=this.tuple,o=t?this.interior.length*Math.random()|0:this.interior.length-1,s=this.interior[o];e:for(;!s.boundary;){for(var l=s.vertices,c=s.adjacent,u=0;u<=r;++u)a[u]=i[l[u]];for(s.lastVisited=n,u=0;u<=r;++u){var f=c[u];if(!(f.lastVisited>=n)){var d=a[u];a[u]=e;var h=this.orient();if(a[u]=d,h<0){s=f;continue e}f.boundary?f.lastVisited=-n:f.lastVisited=n}}return}return s},u.addPeaks=function(e,t){var n=this.vertices.length-1,r=this.dimension,i=this.vertices,l=this.tuple,c=this.interior,u=this.simplices,f=[t];t.lastVisited=n,t.vertices[t.vertices.indexOf(-1)]=n,t.boundary=!1,c.push(t);for(var d=[];f.length>0;){var h=(t=f.pop()).vertices,p=t.adjacent,v=h.indexOf(n);if(!(v<0))for(var m=0;m<=r;++m)if(m!==v){var g=p[m];if(g.boundary&&!(g.lastVisited>=n)){var y=g.vertices;if(g.lastVisited!==-n){for(var b=0,x=0;x<=r;++x)y[x]<0?(b=x,l[x]=e):l[x]=i[y[x]];if(this.orient()>0){y[b]=n,g.boundary=!1,c.push(g),f.push(g),g.lastVisited=n;continue}g.lastVisited=-n}var w=g.adjacent,_=h.slice(),k=p.slice(),S=new a(_,k,!0);u.push(S);var T=w.indexOf(t);if(!(T<0))for(w[T]=S,k[v]=g,_[m]=-1,k[m]=t,p[m]=S,S.flip(),x=0;x<=r;++x){var A=_[x];if(!(A<0||A===n)){for(var E=new Array(r-1),C=0,M=0;M<=r;++M){var O=_[M];O<0||M===x||(E[C++]=O)}d.push(new o(E,S,x))}}}}}for(d.sort(s),m=0;m+1=0?o[l++]=s[u]:c=1&u;if(c===(1&e)){var f=o[0];o[0]=o[1],o[1]=f}t.push(o)}}return t}},9014:function(e,t,n){"use strict";var r=n(5070);function i(e,t,n,r,i){this.mid=e,this.left=t,this.right=n,this.leftPoints=r,this.rightPoints=i,this.count=(t?t.count:0)+(n?n.count:0)+r.length}e.exports=function(e){return e&&0!==e.length?new g(m(e)):new g(null)};var a=i.prototype;function o(e,t){e.mid=t.mid,e.left=t.left,e.right=t.right,e.leftPoints=t.leftPoints,e.rightPoints=t.rightPoints,e.count=t.count}function s(e,t){var n=m(t);e.mid=n.mid,e.left=n.left,e.right=n.right,e.leftPoints=n.leftPoints,e.rightPoints=n.rightPoints,e.count=n.count}function l(e,t){var n=e.intervals([]);n.push(t),s(e,n)}function c(e,t){var n=e.intervals([]),r=n.indexOf(t);return r<0?0:(n.splice(r,1),s(e,n),1)}function u(e,t,n){for(var r=0;r=0&&e[r][1]>=t;--r){var i=n(e[r]);if(i)return i}}function d(e,t){for(var n=0;n>1],a=[],o=[],s=[];for(n=0;n3*(t+1)?l(this,e):this.left.insert(e):this.left=m([e]);else if(e[0]>this.mid)this.right?4*(this.right.count+1)>3*(t+1)?l(this,e):this.right.insert(e):this.right=m([e]);else{var n=r.ge(this.leftPoints,e,p),i=r.ge(this.rightPoints,e,v);this.leftPoints.splice(n,0,e),this.rightPoints.splice(i,0,e)}},a.remove=function(e){var t=this.count-this.leftPoints;if(e[1]3*(t-1)?c(this,e):2===(s=this.left.remove(e))?(this.left=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(e[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(t-1)?c(this,e):2===(s=this.right.remove(e))?(this.right=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(1===this.count)return this.leftPoints[0]===e?2:0;if(1===this.leftPoints.length&&this.leftPoints[0]===e){if(this.left&&this.right){for(var n=this,i=this.left;i.right;)n=i,i=i.right;if(n===this)i.right=this.right;else{var a=this.left,s=this.right;n.count-=i.count,n.right=i.left,i.left=a,i.right=s}o(this,i),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?o(this,this.left):o(this,this.right);return 1}for(a=r.ge(this.leftPoints,e,p);athis.mid?this.right&&(n=this.right.queryPoint(e,t))?n:f(this.rightPoints,e,t):d(this.leftPoints,t);var n},a.queryInterval=function(e,t,n){var r;return ethis.mid&&this.right&&(r=this.right.queryInterval(e,t,n))?r:tthis.mid?f(this.rightPoints,e,n):d(this.leftPoints,n)};var y=g.prototype;y.insert=function(e){this.root?this.root.insert(e):this.root=new i(e[0],null,null,[e],[e])},y.remove=function(e){if(this.root){var t=this.root.remove(e);return 2===t&&(this.root=null),0!==t}return!1},y.queryPoint=function(e,t){if(this.root)return this.root.queryPoint(e,t)},y.queryInterval=function(e,t,n){if(e<=t&&this.root)return this.root.queryInterval(e,t,n)},Object.defineProperty(y,"count",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(y,"intervals",{get:function(){return this.root?this.root.intervals([]):[]}})},9560:function(e){"use strict";e.exports=function(e){for(var t=new Array(e),n=0;n13)&&32!==t&&133!==t&&160!==t&&5760!==t&&6158!==t&&(t<8192||t>8205)&&8232!==t&&8233!==t&&8239!==t&&8287!==t&&8288!==t&&12288!==t&&65279!==t)return!1;return!0}},3578:function(e){e.exports=function(e,t,n){return e*(1-n)+t*n}},7191:function(e,t,n){var r=n(4690),i=n(9823),a=n(7332),o=n(7787),s=n(7437),l=n(2142),c={length:n(4693),normalize:n(899),dot:n(9305),cross:n(903)},u=i(),f=i(),d=[0,0,0,0],h=[[0,0,0],[0,0,0],[0,0,0]],p=[0,0,0];function v(e,t,n,r,i){e[0]=t[0]*r+n[0]*i,e[1]=t[1]*r+n[1]*i,e[2]=t[2]*r+n[2]*i}e.exports=function(e,t,n,i,m,g){if(t||(t=[0,0,0]),n||(n=[0,0,0]),i||(i=[0,0,0]),m||(m=[0,0,0,1]),g||(g=[0,0,0,1]),!r(u,e))return!1;if(a(f,u),f[3]=0,f[7]=0,f[11]=0,f[15]=1,Math.abs(o(f)<1e-8))return!1;var y,b,x=u[3],w=u[7],_=u[11],k=u[12],S=u[13],T=u[14],A=u[15];if(0!==x||0!==w||0!==_){if(d[0]=x,d[1]=w,d[2]=_,d[3]=A,!s(f,f))return!1;l(f,f),function(e,t,n){var r=t[0],i=t[1],a=t[2],o=t[3];e[0]=n[0]*r+n[4]*i+n[8]*a+n[12]*o,e[1]=n[1]*r+n[5]*i+n[9]*a+n[13]*o,e[2]=n[2]*r+n[6]*i+n[10]*a+n[14]*o,e[3]=n[3]*r+n[7]*i+n[11]*a+n[15]*o}(m,d,f)}else m[0]=m[1]=m[2]=0,m[3]=1;if(t[0]=k,t[1]=S,t[2]=T,b=u,(y=h)[0][0]=b[0],y[0][1]=b[1],y[0][2]=b[2],y[1][0]=b[4],y[1][1]=b[5],y[1][2]=b[6],y[2][0]=b[8],y[2][1]=b[9],y[2][2]=b[10],n[0]=c.length(h[0]),c.normalize(h[0],h[0]),i[0]=c.dot(h[0],h[1]),v(h[1],h[1],h[0],1,-i[0]),n[1]=c.length(h[1]),c.normalize(h[1],h[1]),i[0]/=n[1],i[1]=c.dot(h[0],h[2]),v(h[2],h[2],h[0],1,-i[1]),i[2]=c.dot(h[1],h[2]),v(h[2],h[2],h[1],1,-i[2]),n[2]=c.length(h[2]),c.normalize(h[2],h[2]),i[1]/=n[2],i[2]/=n[2],c.cross(p,h[1],h[2]),c.dot(h[0],p)<0)for(var E=0;E<3;E++)n[E]*=-1,h[E][0]*=-1,h[E][1]*=-1,h[E][2]*=-1;return g[0]=.5*Math.sqrt(Math.max(1+h[0][0]-h[1][1]-h[2][2],0)),g[1]=.5*Math.sqrt(Math.max(1-h[0][0]+h[1][1]-h[2][2],0)),g[2]=.5*Math.sqrt(Math.max(1-h[0][0]-h[1][1]+h[2][2],0)),g[3]=.5*Math.sqrt(Math.max(1+h[0][0]+h[1][1]+h[2][2],0)),h[2][1]>h[1][2]&&(g[0]=-g[0]),h[0][2]>h[2][0]&&(g[1]=-g[1]),h[1][0]>h[0][1]&&(g[2]=-g[2]),!0}},4690:function(e){e.exports=function(e,t){var n=t[15];if(0===n)return!1;for(var r=1/n,i=0;i<16;i++)e[i]=t[i]*r;return!0}},7649:function(e,t,n){var r=n(1868),i=n(1102),a=n(7191),o=n(7787),s=n(1116),l=f(),c=f(),u=f();function f(){return{translate:d(),scale:d(1),skew:d(),perspective:[0,0,0,1],quaternion:[0,0,0,1]}}function d(e){return[e||0,e||0,e||0]}e.exports=function(e,t,n,f){if(0===o(t)||0===o(n))return!1;var d=a(t,l.translate,l.scale,l.skew,l.perspective,l.quaternion),h=a(n,c.translate,c.scale,c.skew,c.perspective,c.quaternion);return!(!d||!h)&&(r(u.translate,l.translate,c.translate,f),r(u.skew,l.skew,c.skew,f),r(u.scale,l.scale,c.scale,f),r(u.perspective,l.perspective,c.perspective,f),s(u.quaternion,l.quaternion,c.quaternion,f),i(e,u.translate,u.scale,u.skew,u.perspective,u.quaternion),!0)}},1102:function(e,t,n){var r={identity:n(9947),translate:n(998),multiply:n(104),create:n(9823),scale:n(3668),fromRotationTranslation:n(7280)},i=(r.create(),r.create());e.exports=function(e,t,n,a,o,s){return r.identity(e),r.fromRotationTranslation(e,s,t),e[3]=o[0],e[7]=o[1],e[11]=o[2],e[15]=o[3],r.identity(i),0!==a[2]&&(i[9]=a[2],r.multiply(e,e,i)),0!==a[1]&&(i[9]=0,i[8]=a[1],r.multiply(e,e,i)),0!==a[0]&&(i[8]=0,i[4]=a[0],r.multiply(e,e,i)),r.scale(e,e,n),e}},9298:function(e,t,n){"use strict";var r=n(5070),i=n(7649),a=n(7437),o=n(6109),s=n(7115),l=n(5240),c=n(3012),u=n(998),f=(n(3668),n(899)),d=[0,0,0];function h(e){this._components=e.slice(),this._time=[0],this.prevMatrix=e.slice(),this.nextMatrix=e.slice(),this.computedMatrix=e.slice(),this.computedInverse=e.slice(),this.computedEye=[0,0,0],this.computedUp=[0,0,0],this.computedCenter=[0,0,0],this.computedRadius=[0],this._limits=[-1/0,1/0]}e.exports=function(e){return new h((e=e||{}).matrix||[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])};var p=h.prototype;p.recalcMatrix=function(e){var t=this._time,n=r.le(t,e),o=this.computedMatrix;if(!(n<0)){var s=this._components;if(n===t.length-1)for(var l=16*n,c=0;c<16;++c)o[c]=s[l++];else{var u=t[n+1]-t[n],d=(l=16*n,this.prevMatrix),h=!0;for(c=0;c<16;++c)d[c]=s[l++];var p=this.nextMatrix;for(c=0;c<16;++c)p[c]=s[l++],h=h&&d[c]===p[c];if(u<1e-6||h)for(c=0;c<16;++c)o[c]=d[c];else i(o,d,p,(e-t[n])/u)}var v=this.computedUp;v[0]=o[1],v[1]=o[5],v[2]=o[9],f(v,v);var m=this.computedInverse;a(m,o);var g=this.computedEye,y=m[15];g[0]=m[12]/y,g[1]=m[13]/y,g[2]=m[14]/y;var b=this.computedCenter,x=Math.exp(this.computedRadius[0]);for(c=0;c<3;++c)b[c]=g[c]-o[2+4*c]*x}},p.idle=function(e){if(!(e1&&r(e[o[u-2]],e[o[u-1]],c)<=0;)u-=1,o.pop();for(o.push(l),u=s.length;u>1&&r(e[s[u-2]],e[s[u-1]],c)>=0;)u-=1,s.pop();s.push(l)}n=new Array(s.length+o.length-2);for(var f=0,d=(i=0,o.length);i0;--h)n[f++]=s[h];return n};var r=n(417)[3]},6145:function(e,t,n){"use strict";e.exports=function(e,t){t||(t=e,e=window);var n=0,i=0,a=0,o={shift:!1,alt:!1,control:!1,meta:!1},s=!1;function l(e){var t=!1;return"altKey"in e&&(t=t||e.altKey!==o.alt,o.alt=!!e.altKey),"shiftKey"in e&&(t=t||e.shiftKey!==o.shift,o.shift=!!e.shiftKey),"ctrlKey"in e&&(t=t||e.ctrlKey!==o.control,o.control=!!e.ctrlKey),"metaKey"in e&&(t=t||e.metaKey!==o.meta,o.meta=!!e.metaKey),t}function c(e,s){var c=r.x(s),u=r.y(s);"buttons"in s&&(e=0|s.buttons),(e!==n||c!==i||u!==a||l(s))&&(n=0|e,i=c||0,a=u||0,t&&t(n,i,a,o))}function u(e){c(0,e)}function f(){(n||i||a||o.shift||o.alt||o.meta||o.control)&&(i=a=0,n=0,o.shift=o.alt=o.control=o.meta=!1,t&&t(0,0,0,o))}function d(e){l(e)&&t&&t(n,i,a,o)}function h(e){0===r.buttons(e)?c(0,e):c(n,e)}function p(e){c(n|r.buttons(e),e)}function v(e){c(n&~r.buttons(e),e)}function m(){s||(s=!0,e.addEventListener("mousemove",h),e.addEventListener("mousedown",p),e.addEventListener("mouseup",v),e.addEventListener("mouseleave",u),e.addEventListener("mouseenter",u),e.addEventListener("mouseout",u),e.addEventListener("mouseover",u),e.addEventListener("blur",f),e.addEventListener("keyup",d),e.addEventListener("keydown",d),e.addEventListener("keypress",d),e!==window&&(window.addEventListener("blur",f),window.addEventListener("keyup",d),window.addEventListener("keydown",d),window.addEventListener("keypress",d)))}m();var g={element:e};return Object.defineProperties(g,{enabled:{get:function(){return s},set:function(t){t?m():s&&(s=!1,e.removeEventListener("mousemove",h),e.removeEventListener("mousedown",p),e.removeEventListener("mouseup",v),e.removeEventListener("mouseleave",u),e.removeEventListener("mouseenter",u),e.removeEventListener("mouseout",u),e.removeEventListener("mouseover",u),e.removeEventListener("blur",f),e.removeEventListener("keyup",d),e.removeEventListener("keydown",d),e.removeEventListener("keypress",d),e!==window&&(window.removeEventListener("blur",f),window.removeEventListener("keyup",d),window.removeEventListener("keydown",d),window.removeEventListener("keypress",d)))},enumerable:!0},buttons:{get:function(){return n},enumerable:!0},x:{get:function(){return i},enumerable:!0},y:{get:function(){return a},enumerable:!0},mods:{get:function(){return o},enumerable:!0}}),g};var r=n(4110)},2565:function(e){var t={left:0,top:0};e.exports=function(e,n,r){n=n||e.currentTarget||e.srcElement,Array.isArray(r)||(r=[0,0]);var i,a=e.clientX||0,o=e.clientY||0,s=(i=n)===window||i===document||i===document.body?t:i.getBoundingClientRect();return r[0]=a-s.left,r[1]=o-s.top,r}},4110:function(e,t){"use strict";function n(e){return e.target||e.srcElement||window}t.buttons=function(e){if("object"===typeof e){if("buttons"in e)return e.buttons;if("which"in e){if(2===(t=e.which))return 4;if(3===t)return 2;if(t>0)return 1<=0)return 1< 0"),"function"!==typeof e.vertex&&t("Must specify vertex creation function"),"function"!==typeof e.cell&&t("Must specify cell creation function"),"function"!==typeof e.phase&&t("Must specify phase function");for(var s=e.getters||[],l=new Array(a),c=0;c=0?l[c]=!0:l[c]=!1;return function(e,t,n,a,o,s){var l=[s,o].join(",");return(0,i[l])(e,t,n,r.mallocUint32,r.freeUint32)}(e.vertex,e.cell,e.phase,0,n,l)};var i={"false,0,1":function(e,t,n,r,i){return function(a,o,s,l){var c,u=0|a.shape[0],f=0|a.shape[1],d=a.data,h=0|a.offset,p=0|a.stride[0],v=0|a.stride[1],m=h,g=0|-p,y=0,b=0|-v,x=0,w=-p-v|0,_=0,k=0|p,S=v-p*u|0,T=0,A=0,E=0,C=2*u|0,M=r(C),O=r(C),P=0,L=0,I=-1,R=-1,D=0,F=0|-u,N=0|u,z=0,j=-u-1|0,B=u-1|0,U=0,H=0,$=0;for(T=0;T0){if(A=1,M[P++]=n(d[m],o,s,l),m+=k,u>0)for(T=1,c=d[m],L=M[P]=n(c,o,s,l),D=M[P+I],z=M[P+F],U=M[P+j],L===D&&L===z&&L===U||(y=d[m+g],x=d[m+b],_=d[m+w],e(T,A,c,y,x,_,L,D,z,U,o,s,l),H=O[P]=E++),P+=1,m+=k,T=2;T0)for(T=1,c=d[m],L=M[P]=n(c,o,s,l),D=M[P+I],z=M[P+F],U=M[P+j],L===D&&L===z&&L===U||(y=d[m+g],x=d[m+b],_=d[m+w],e(T,A,c,y,x,_,L,D,z,U,o,s,l),H=O[P]=E++,U!==z&&t(O[P+F],H,x,_,z,U,o,s,l)),P+=1,m+=k,T=2;T0){if(T=1,M[P++]=n(d[m],o,s,l),m+=k,f>0)for(A=1,c=d[m],L=M[P]=n(c,o,s,l),z=M[P+F],D=M[P+I],U=M[P+j],L===z&&L===D&&L===U||(y=d[m+g],x=d[m+b],_=d[m+w],e(T,A,c,y,x,_,L,z,D,U,o,s,l),H=O[P]=E++),P+=1,m+=k,A=2;A0)for(A=1,c=d[m],L=M[P]=n(c,o,s,l),z=M[P+F],D=M[P+I],U=M[P+j],L===z&&L===D&&L===U||(y=d[m+g],x=d[m+b],_=d[m+w],e(T,A,c,y,x,_,L,z,D,U,o,s,l),H=O[P]=E++,U!==z&&t(O[P+F],H,_,y,U,z,o,s,l)),P+=1,m+=k,A=2;A2&&a[1]>2&&r(i.pick(-1,-1).lo(1,1).hi(a[0]-2,a[1]-2),e.pick(-1,-1,0).lo(1,1).hi(a[0]-2,a[1]-2),e.pick(-1,-1,1).lo(1,1).hi(a[0]-2,a[1]-2)),a[1]>2&&(n(i.pick(0,-1).lo(1).hi(a[1]-2),e.pick(0,-1,1).lo(1).hi(a[1]-2)),t(e.pick(0,-1,0).lo(1).hi(a[1]-2))),a[1]>2&&(n(i.pick(a[0]-1,-1).lo(1).hi(a[1]-2),e.pick(a[0]-1,-1,1).lo(1).hi(a[1]-2)),t(e.pick(a[0]-1,-1,0).lo(1).hi(a[1]-2))),a[0]>2&&(n(i.pick(-1,0).lo(1).hi(a[0]-2),e.pick(-1,0,0).lo(1).hi(a[0]-2)),t(e.pick(-1,0,1).lo(1).hi(a[0]-2))),a[0]>2&&(n(i.pick(-1,a[1]-1).lo(1).hi(a[0]-2),e.pick(-1,a[1]-1,0).lo(1).hi(a[0]-2)),t(e.pick(-1,a[1]-1,1).lo(1).hi(a[0]-2))),e.set(0,0,0,0),e.set(0,0,1,0),e.set(a[0]-1,0,0,0),e.set(a[0]-1,0,1,0),e.set(0,a[1]-1,0,0),e.set(0,a[1]-1,1,0),e.set(a[0]-1,a[1]-1,0,0),e.set(a[0]-1,a[1]-1,1,0),e}}e.exports=function(e,t,n){return Array.isArray(n)||(n=r(t.dimension,"string"===typeof n?n:"clamp")),0===t.size?e:0===t.dimension?(e.set(0),e):function(e){var t=e.join();if(a=u[t])return a;for(var n=e.length,r=[f,d],i=1;i<=n;++i)r.push(h(i));var a=p.apply(void 0,r);return u[t]=a,a}(n)(e,t)}},3581:function(e){"use strict";function t(e,t){var n=Math.floor(t),r=t-n,i=0<=n&&n0;){b<64?(l=b,b=0):(l=64,b-=64);for(var x=0|e[1];x>0;){x<64?(c=x,x=0):(c=64,x-=64),r=g+b*f+x*d,o=y+b*p+x*v;var w=0,_=0,k=0,S=h,T=f-u*h,A=d-l*f,E=m,C=p-u*m,M=v-l*p;for(k=0;k0;){v<64?(l=v,v=0):(l=64,v-=64);for(var m=0|e[0];m>0;){m<64?(s=m,m=0):(s=64,m-=64),r=h+v*u+m*c,o=p+v*d+m*f;var g=0,y=0,b=u,x=c-l*u,w=d,_=f-l*d;for(y=0;y0;){y<64?(c=y,y=0):(c=64,y-=64);for(var b=0|e[0];b>0;){b<64?(s=b,b=0):(s=64,b-=64);for(var x=0|e[1];x>0;){x<64?(l=x,x=0):(l=64,x-=64),r=m+y*d+b*u+x*f,o=g+y*v+b*h+x*p;var w=0,_=0,k=0,S=d,T=u-c*d,A=f-s*u,E=v,C=h-c*v,M=p-s*h;for(k=0;kn;){g=0,y=v-o;t:for(m=0;mx)break t;y+=f,g+=d}for(g=v,y=v-o,m=0;m>1,V=$-B,W=$+B,q=U,G=V,Z=$,Y=W,K=H,X=i+1,J=a-1,Q=!0,ee=0,te=0,ne=0,re=f,ie=t(re),ae=t(re);T=l*q,A=l*G,j=s;e:for(S=0;S0){m=q,q=G,G=m;break e}if(ne<0)break e;j+=h}T=l*Y,A=l*K,j=s;e:for(S=0;S0){m=Y,Y=K,K=m;break e}if(ne<0)break e;j+=h}T=l*q,A=l*Z,j=s;e:for(S=0;S0){m=q,q=Z,Z=m;break e}if(ne<0)break e;j+=h}T=l*G,A=l*Z,j=s;e:for(S=0;S0){m=G,G=Z,Z=m;break e}if(ne<0)break e;j+=h}T=l*q,A=l*Y,j=s;e:for(S=0;S0){m=q,q=Y,Y=m;break e}if(ne<0)break e;j+=h}T=l*Z,A=l*Y,j=s;e:for(S=0;S0){m=Z,Z=Y,Y=m;break e}if(ne<0)break e;j+=h}T=l*G,A=l*K,j=s;e:for(S=0;S0){m=G,G=K,K=m;break e}if(ne<0)break e;j+=h}T=l*G,A=l*Z,j=s;e:for(S=0;S0){m=G,G=Z,Z=m;break e}if(ne<0)break e;j+=h}T=l*Y,A=l*K,j=s;e:for(S=0;S0){m=Y,Y=K,K=m;break e}if(ne<0)break e;j+=h}for(T=l*q,A=l*G,E=l*Z,C=l*Y,M=l*K,O=l*U,P=l*$,L=l*H,z=0,j=s,S=0;S0)){if(ne<0){for(T=l*x,A=l*X,E=l*J,j=s,S=0;S0)for(;;){for(w=s+J*l,z=0,S=0;S0)){for(w=s+J*l,z=0,S=0;SH){e:for(;;){for(w=s+X*l,z=0,j=s,S=0;S1&&r?s(n,r[0],r[1]):s(n)}(e,t,l);return r(l,c)}},8729:function(e,t,n){"use strict";var r=n(8139),i={};e.exports=function(e){var t=e.order,n=e.dtype,a=[t,n].join(":"),o=i[a];return o||(i[a]=o=r(t,n)),o(e),e}},5050:function(e,t,n){var r=n(4780),i="undefined"!==typeof Float64Array;function a(e,t){return e[0]-t[0]}function o(){var e,t=this.stride,n=new Array(t.length);for(e=0;e=0&&(t+=a*(n=0|e),i-=n),new r(this.data,i,a,t)},i.step=function(e){var t=this.shape[0],n=this.stride[0],i=this.offset,a=0,o=Math.ceil;return"number"===typeof e&&((a=0|e)<0?(i+=n*(t-1),t=o(-t/a)):t=o(t/a),n*=a),new r(this.data,t,n,i)},i.transpose=function(e){e=void 0===e?0:0|e;var t=this.shape,n=this.stride;return new r(this.data,t[e],n[e],this.offset)},i.pick=function(e){var n=[],r=[],i=this.offset;return"number"===typeof e&&e>=0?i=i+this.stride[0]*e|0:(n.push(this.shape[0]),r.push(this.stride[0])),(0,t[n.length+1])(this.data,n,r,i)},function(e,t,n,i){return new r(e,t[0],n[0],i)}},2:function(e,t,n){function r(e,t,n,r,i,a){this.data=e,this.shape=[t,n],this.stride=[r,i],this.offset=0|a}var i=r.prototype;return i.dtype=e,i.dimension=2,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]}}),Object.defineProperty(i,"order",{get:function(){return Math.abs(this.stride[0])>Math.abs(this.stride[1])?[1,0]:[0,1]}}),i.set=function(t,n,r){return"generic"===e?this.data.set(this.offset+this.stride[0]*t+this.stride[1]*n,r):this.data[this.offset+this.stride[0]*t+this.stride[1]*n]=r},i.get=function(t,n){return"generic"===e?this.data.get(this.offset+this.stride[0]*t+this.stride[1]*n):this.data[this.offset+this.stride[0]*t+this.stride[1]*n]},i.index=function(e,t){return this.offset+this.stride[0]*e+this.stride[1]*t},i.hi=function(e,t){return new r(this.data,"number"!==typeof e||e<0?this.shape[0]:0|e,"number"!==typeof t||t<0?this.shape[1]:0|t,this.stride[0],this.stride[1],this.offset)},i.lo=function(e,t){var n=this.offset,i=0,a=this.shape[0],o=this.shape[1],s=this.stride[0],l=this.stride[1];return"number"===typeof e&&e>=0&&(n+=s*(i=0|e),a-=i),"number"===typeof t&&t>=0&&(n+=l*(i=0|t),o-=i),new r(this.data,a,o,s,l,n)},i.step=function(e,t){var n=this.shape[0],i=this.shape[1],a=this.stride[0],o=this.stride[1],s=this.offset,l=0,c=Math.ceil;return"number"===typeof e&&((l=0|e)<0?(s+=a*(n-1),n=c(-n/l)):n=c(n/l),a*=l),"number"===typeof t&&((l=0|t)<0?(s+=o*(i-1),i=c(-i/l)):i=c(i/l),o*=l),new r(this.data,n,i,a,o,s)},i.transpose=function(e,t){e=void 0===e?0:0|e,t=void 0===t?1:0|t;var n=this.shape,i=this.stride;return new r(this.data,n[e],n[t],i[e],i[t],this.offset)},i.pick=function(e,n){var r=[],i=[],a=this.offset;return"number"===typeof e&&e>=0?a=a+this.stride[0]*e|0:(r.push(this.shape[0]),i.push(this.stride[0])),"number"===typeof n&&n>=0?a=a+this.stride[1]*n|0:(r.push(this.shape[1]),i.push(this.stride[1])),(0,t[r.length+1])(this.data,r,i,a)},function(e,t,n,i){return new r(e,t[0],t[1],n[0],n[1],i)}},3:function(e,t,n){function r(e,t,n,r,i,a,o,s){this.data=e,this.shape=[t,n,r],this.stride=[i,a,o],this.offset=0|s}var i=r.prototype;return i.dtype=e,i.dimension=3,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]}}),Object.defineProperty(i,"order",{get:function(){var e=Math.abs(this.stride[0]),t=Math.abs(this.stride[1]),n=Math.abs(this.stride[2]);return e>t?t>n?[2,1,0]:e>n?[1,2,0]:[1,0,2]:e>n?[2,0,1]:n>t?[0,1,2]:[0,2,1]}}),i.set=function(t,n,r,i){return"generic"===e?this.data.set(this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r,i):this.data[this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r]=i},i.get=function(t,n,r){return"generic"===e?this.data.get(this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r):this.data[this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r]},i.index=function(e,t,n){return this.offset+this.stride[0]*e+this.stride[1]*t+this.stride[2]*n},i.hi=function(e,t,n){return new r(this.data,"number"!==typeof e||e<0?this.shape[0]:0|e,"number"!==typeof t||t<0?this.shape[1]:0|t,"number"!==typeof n||n<0?this.shape[2]:0|n,this.stride[0],this.stride[1],this.stride[2],this.offset)},i.lo=function(e,t,n){var i=this.offset,a=0,o=this.shape[0],s=this.shape[1],l=this.shape[2],c=this.stride[0],u=this.stride[1],f=this.stride[2];return"number"===typeof e&&e>=0&&(i+=c*(a=0|e),o-=a),"number"===typeof t&&t>=0&&(i+=u*(a=0|t),s-=a),"number"===typeof n&&n>=0&&(i+=f*(a=0|n),l-=a),new r(this.data,o,s,l,c,u,f,i)},i.step=function(e,t,n){var i=this.shape[0],a=this.shape[1],o=this.shape[2],s=this.stride[0],l=this.stride[1],c=this.stride[2],u=this.offset,f=0,d=Math.ceil;return"number"===typeof e&&((f=0|e)<0?(u+=s*(i-1),i=d(-i/f)):i=d(i/f),s*=f),"number"===typeof t&&((f=0|t)<0?(u+=l*(a-1),a=d(-a/f)):a=d(a/f),l*=f),"number"===typeof n&&((f=0|n)<0?(u+=c*(o-1),o=d(-o/f)):o=d(o/f),c*=f),new r(this.data,i,a,o,s,l,c,u)},i.transpose=function(e,t,n){e=void 0===e?0:0|e,t=void 0===t?1:0|t,n=void 0===n?2:0|n;var i=this.shape,a=this.stride;return new r(this.data,i[e],i[t],i[n],a[e],a[t],a[n],this.offset)},i.pick=function(e,n,r){var i=[],a=[],o=this.offset;return"number"===typeof e&&e>=0?o=o+this.stride[0]*e|0:(i.push(this.shape[0]),a.push(this.stride[0])),"number"===typeof n&&n>=0?o=o+this.stride[1]*n|0:(i.push(this.shape[1]),a.push(this.stride[1])),"number"===typeof r&&r>=0?o=o+this.stride[2]*r|0:(i.push(this.shape[2]),a.push(this.stride[2])),(0,t[i.length+1])(this.data,i,a,o)},function(e,t,n,i){return new r(e,t[0],t[1],t[2],n[0],n[1],n[2],i)}},4:function(e,t,n){function r(e,t,n,r,i,a,o,s,l,c){this.data=e,this.shape=[t,n,r,i],this.stride=[a,o,s,l],this.offset=0|c}var i=r.prototype;return i.dtype=e,i.dimension=4,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]*this.shape[3]}}),Object.defineProperty(i,"order",{get:n}),i.set=function(t,n,r,i,a){return"generic"===e?this.data.set(this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i,a):this.data[this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i]=a},i.get=function(t,n,r,i){return"generic"===e?this.data.get(this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i):this.data[this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i]},i.index=function(e,t,n,r){return this.offset+this.stride[0]*e+this.stride[1]*t+this.stride[2]*n+this.stride[3]*r},i.hi=function(e,t,n,i){return new r(this.data,"number"!==typeof e||e<0?this.shape[0]:0|e,"number"!==typeof t||t<0?this.shape[1]:0|t,"number"!==typeof n||n<0?this.shape[2]:0|n,"number"!==typeof i||i<0?this.shape[3]:0|i,this.stride[0],this.stride[1],this.stride[2],this.stride[3],this.offset)},i.lo=function(e,t,n,i){var a=this.offset,o=0,s=this.shape[0],l=this.shape[1],c=this.shape[2],u=this.shape[3],f=this.stride[0],d=this.stride[1],h=this.stride[2],p=this.stride[3];return"number"===typeof e&&e>=0&&(a+=f*(o=0|e),s-=o),"number"===typeof t&&t>=0&&(a+=d*(o=0|t),l-=o),"number"===typeof n&&n>=0&&(a+=h*(o=0|n),c-=o),"number"===typeof i&&i>=0&&(a+=p*(o=0|i),u-=o),new r(this.data,s,l,c,u,f,d,h,p,a)},i.step=function(e,t,n,i){var a=this.shape[0],o=this.shape[1],s=this.shape[2],l=this.shape[3],c=this.stride[0],u=this.stride[1],f=this.stride[2],d=this.stride[3],h=this.offset,p=0,v=Math.ceil;return"number"===typeof e&&((p=0|e)<0?(h+=c*(a-1),a=v(-a/p)):a=v(a/p),c*=p),"number"===typeof t&&((p=0|t)<0?(h+=u*(o-1),o=v(-o/p)):o=v(o/p),u*=p),"number"===typeof n&&((p=0|n)<0?(h+=f*(s-1),s=v(-s/p)):s=v(s/p),f*=p),"number"===typeof i&&((p=0|i)<0?(h+=d*(l-1),l=v(-l/p)):l=v(l/p),d*=p),new r(this.data,a,o,s,l,c,u,f,d,h)},i.transpose=function(e,t,n,i){e=void 0===e?0:0|e,t=void 0===t?1:0|t,n=void 0===n?2:0|n,i=void 0===i?3:0|i;var a=this.shape,o=this.stride;return new r(this.data,a[e],a[t],a[n],a[i],o[e],o[t],o[n],o[i],this.offset)},i.pick=function(e,n,r,i){var a=[],o=[],s=this.offset;return"number"===typeof e&&e>=0?s=s+this.stride[0]*e|0:(a.push(this.shape[0]),o.push(this.stride[0])),"number"===typeof n&&n>=0?s=s+this.stride[1]*n|0:(a.push(this.shape[1]),o.push(this.stride[1])),"number"===typeof r&&r>=0?s=s+this.stride[2]*r|0:(a.push(this.shape[2]),o.push(this.stride[2])),"number"===typeof i&&i>=0?s=s+this.stride[3]*i|0:(a.push(this.shape[3]),o.push(this.stride[3])),(0,t[a.length+1])(this.data,a,o,s)},function(e,t,n,i){return new r(e,t[0],t[1],t[2],t[3],n[0],n[1],n[2],n[3],i)}},5:function(e,t,n){function r(e,t,n,r,i,a,o,s,l,c,u,f){this.data=e,this.shape=[t,n,r,i,a],this.stride=[o,s,l,c,u],this.offset=0|f}var i=r.prototype;return i.dtype=e,i.dimension=5,Object.defineProperty(i,"size",{get:function(){return this.shape[0]*this.shape[1]*this.shape[2]*this.shape[3]*this.shape[4]}}),Object.defineProperty(i,"order",{get:n}),i.set=function(t,n,r,i,a,o){return"generic"===e?this.data.set(this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i+this.stride[4]*a,o):this.data[this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i+this.stride[4]*a]=o},i.get=function(t,n,r,i,a){return"generic"===e?this.data.get(this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i+this.stride[4]*a):this.data[this.offset+this.stride[0]*t+this.stride[1]*n+this.stride[2]*r+this.stride[3]*i+this.stride[4]*a]},i.index=function(e,t,n,r,i){return this.offset+this.stride[0]*e+this.stride[1]*t+this.stride[2]*n+this.stride[3]*r+this.stride[4]*i},i.hi=function(e,t,n,i,a){return new r(this.data,"number"!==typeof e||e<0?this.shape[0]:0|e,"number"!==typeof t||t<0?this.shape[1]:0|t,"number"!==typeof n||n<0?this.shape[2]:0|n,"number"!==typeof i||i<0?this.shape[3]:0|i,"number"!==typeof a||a<0?this.shape[4]:0|a,this.stride[0],this.stride[1],this.stride[2],this.stride[3],this.stride[4],this.offset)},i.lo=function(e,t,n,i,a){var o=this.offset,s=0,l=this.shape[0],c=this.shape[1],u=this.shape[2],f=this.shape[3],d=this.shape[4],h=this.stride[0],p=this.stride[1],v=this.stride[2],m=this.stride[3],g=this.stride[4];return"number"===typeof e&&e>=0&&(o+=h*(s=0|e),l-=s),"number"===typeof t&&t>=0&&(o+=p*(s=0|t),c-=s),"number"===typeof n&&n>=0&&(o+=v*(s=0|n),u-=s),"number"===typeof i&&i>=0&&(o+=m*(s=0|i),f-=s),"number"===typeof a&&a>=0&&(o+=g*(s=0|a),d-=s),new r(this.data,l,c,u,f,d,h,p,v,m,g,o)},i.step=function(e,t,n,i,a){var o=this.shape[0],s=this.shape[1],l=this.shape[2],c=this.shape[3],u=this.shape[4],f=this.stride[0],d=this.stride[1],h=this.stride[2],p=this.stride[3],v=this.stride[4],m=this.offset,g=0,y=Math.ceil;return"number"===typeof e&&((g=0|e)<0?(m+=f*(o-1),o=y(-o/g)):o=y(o/g),f*=g),"number"===typeof t&&((g=0|t)<0?(m+=d*(s-1),s=y(-s/g)):s=y(s/g),d*=g),"number"===typeof n&&((g=0|n)<0?(m+=h*(l-1),l=y(-l/g)):l=y(l/g),h*=g),"number"===typeof i&&((g=0|i)<0?(m+=p*(c-1),c=y(-c/g)):c=y(c/g),p*=g),"number"===typeof a&&((g=0|a)<0?(m+=v*(u-1),u=y(-u/g)):u=y(u/g),v*=g),new r(this.data,o,s,l,c,u,f,d,h,p,v,m)},i.transpose=function(e,t,n,i,a){e=void 0===e?0:0|e,t=void 0===t?1:0|t,n=void 0===n?2:0|n,i=void 0===i?3:0|i,a=void 0===a?4:0|a;var o=this.shape,s=this.stride;return new r(this.data,o[e],o[t],o[n],o[i],o[a],s[e],s[t],s[n],s[i],s[a],this.offset)},i.pick=function(e,n,r,i,a){var o=[],s=[],l=this.offset;return"number"===typeof e&&e>=0?l=l+this.stride[0]*e|0:(o.push(this.shape[0]),s.push(this.stride[0])),"number"===typeof n&&n>=0?l=l+this.stride[1]*n|0:(o.push(this.shape[1]),s.push(this.stride[1])),"number"===typeof r&&r>=0?l=l+this.stride[2]*r|0:(o.push(this.shape[2]),s.push(this.stride[2])),"number"===typeof i&&i>=0?l=l+this.stride[3]*i|0:(o.push(this.shape[3]),s.push(this.stride[3])),"number"===typeof a&&a>=0?l=l+this.stride[4]*a|0:(o.push(this.shape[4]),s.push(this.stride[4])),(0,t[o.length+1])(this.data,o,s,l)},function(e,t,n,i){return new r(e,t[0],t[1],t[2],t[3],t[4],n[0],n[1],n[2],n[3],n[4],i)}}};function l(e,t){var n=-1===t?"T":String(t),r=s[n];return-1===t?r(e):0===t?r(e,c[e][0]):r(e,c[e],o)}var c={generic:[],buffer:[],array:[],float32:[],float64:[],int8:[],int16:[],int32:[],uint8_clamped:[],uint8:[],uint16:[],uint32:[],bigint64:[],biguint64:[]};e.exports=function(e,t,n,a){if(void 0===e)return(0,c.array[0])([]);"number"===typeof e&&(e=[e]),void 0===t&&(t=[e.length]);var o=t.length;if(void 0===n){n=new Array(o);for(var s=o-1,u=1;s>=0;--s)n[s]=u,u*=t[s]}if(void 0===a)for(a=0,s=0;s>>0;e.exports=function(e,t){if(isNaN(e)||isNaN(t))return NaN;if(e===t)return e;if(0===e)return t<0?-i:i;var n=r.hi(e),o=r.lo(e);return t>e===e>0?o===a?(n+=1,o=0):o+=1:0===o?(o=a,n-=1):o-=1,r.pack(o,n)}},115:function(e,t){t.vertexNormals=function(e,t,n){for(var r=t.length,i=new Array(r),a=void 0===n?1e-6:n,o=0;oa){var x=i[c],w=1/Math.sqrt(m*y);for(b=0;b<3;++b){var _=(b+1)%3,k=(b+2)%3;x[b]+=w*(g[_]*v[k]-g[k]*v[_])}}}for(o=0;oa)for(w=1/Math.sqrt(S),b=0;b<3;++b)x[b]*=w;else for(b=0;b<3;++b)x[b]=0}return i},t.faceNormals=function(e,t,n){for(var r=e.length,i=new Array(r),a=void 0===n?1e-6:n,o=0;oa?1/Math.sqrt(h):0,c=0;c<3;++c)d[c]*=h;i[o]=d}return i}},567:function(e){"use strict";e.exports=function(e,t,n,r,i,a,o,s,l,c){var u=t+a+c;if(f>0){var f=Math.sqrt(u+1);e[0]=.5*(o-l)/f,e[1]=.5*(s-r)/f,e[2]=.5*(n-a)/f,e[3]=.5*f}else{var d=Math.max(t,a,c);f=Math.sqrt(2*d-u+1),t>=d?(e[0]=.5*f,e[1]=.5*(i+n)/f,e[2]=.5*(s+r)/f,e[3]=.5*(o-l)/f):a>=d?(e[0]=.5*(n+i)/f,e[1]=.5*f,e[2]=.5*(l+o)/f,e[3]=.5*(s-r)/f):(e[0]=.5*(r+s)/f,e[1]=.5*(o+l)/f,e[2]=.5*f,e[3]=.5*(n-i)/f)}return e}},7774:function(e,t,n){"use strict";e.exports=function(e){var t=(e=e||{}).center||[0,0,0],n=e.rotation||[0,0,0,1],r=e.radius||1;t=[].slice.call(t,0,3),u(n=[].slice.call(n,0,4),n);var i=new f(n,t,Math.log(r));return i.setDistanceLimits(e.zoomMin,e.zoomMax),("eye"in e||"up"in e)&&i.lookAt(0,e.eye,e.center,e.up),i};var r=n(8444),i=n(3012),a=n(5950),o=n(7437),s=n(567);function l(e,t,n){return Math.sqrt(Math.pow(e,2)+Math.pow(t,2)+Math.pow(n,2))}function c(e,t,n,r){return Math.sqrt(Math.pow(e,2)+Math.pow(t,2)+Math.pow(n,2)+Math.pow(r,2))}function u(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=c(n,r,i,a);o>1e-6?(e[0]=n/o,e[1]=r/o,e[2]=i/o,e[3]=a/o):(e[0]=e[1]=e[2]=0,e[3]=1)}function f(e,t,n){this.radius=r([n]),this.center=r(t),this.rotation=r(e),this.computedRadius=this.radius.curve(0),this.computedCenter=this.center.curve(0),this.computedRotation=this.rotation.curve(0),this.computedUp=[.1,0,0],this.computedEye=[.1,0,0],this.computedMatrix=[.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.recalcMatrix(0)}var d=f.prototype;d.lastT=function(){return Math.max(this.radius.lastT(),this.center.lastT(),this.rotation.lastT())},d.recalcMatrix=function(e){this.radius.curve(e),this.center.curve(e),this.rotation.curve(e);var t=this.computedRotation;u(t,t);var n=this.computedMatrix;a(n,t);var r=this.computedCenter,i=this.computedEye,o=this.computedUp,s=Math.exp(this.computedRadius[0]);i[0]=r[0]+s*n[2],i[1]=r[1]+s*n[6],i[2]=r[2]+s*n[10],o[0]=n[1],o[1]=n[5],o[2]=n[9];for(var l=0;l<3;++l){for(var c=0,f=0;f<3;++f)c+=n[l+4*f]*i[f];n[12+l]=-c}},d.getMatrix=function(e,t){this.recalcMatrix(e);var n=this.computedMatrix;if(t){for(var r=0;r<16;++r)t[r]=n[r];return t}return n},d.idle=function(e){this.center.idle(e),this.radius.idle(e),this.rotation.idle(e)},d.flush=function(e){this.center.flush(e),this.radius.flush(e),this.rotation.flush(e)},d.pan=function(e,t,n,r){t=t||0,n=n||0,r=r||0,this.recalcMatrix(e);var i=this.computedMatrix,a=i[1],o=i[5],s=i[9],c=l(a,o,s);a/=c,o/=c,s/=c;var u=i[0],f=i[4],d=i[8],h=u*a+f*o+d*s,p=l(u-=a*h,f-=o*h,d-=s*h);u/=p,f/=p,d/=p;var v=i[2],m=i[6],g=i[10],y=v*a+m*o+g*s,b=v*u+m*f+g*d,x=l(v-=y*a+b*u,m-=y*o+b*f,g-=y*s+b*d);v/=x,m/=x,g/=x;var w=u*t+a*n,_=f*t+o*n,k=d*t+s*n;this.center.move(e,w,_,k);var S=Math.exp(this.computedRadius[0]);S=Math.max(1e-4,S+r),this.radius.set(e,Math.log(S))},d.rotate=function(e,t,n,r){this.recalcMatrix(e),t=t||0,n=n||0;var i=this.computedMatrix,a=i[0],o=i[4],s=i[8],u=i[1],f=i[5],d=i[9],h=i[2],p=i[6],v=i[10],m=t*a+n*u,g=t*o+n*f,y=t*s+n*d,b=-(p*y-v*g),x=-(v*m-h*y),w=-(h*g-p*m),_=Math.sqrt(Math.max(0,1-Math.pow(b,2)-Math.pow(x,2)-Math.pow(w,2))),k=c(b,x,w,_);k>1e-6?(b/=k,x/=k,w/=k,_/=k):(b=x=w=0,_=1);var S=this.computedRotation,T=S[0],A=S[1],E=S[2],C=S[3],M=T*_+C*b+A*w-E*x,O=A*_+C*x+E*b-T*w,P=E*_+C*w+T*x-A*b,L=C*_-T*b-A*x-E*w;if(r){b=h,x=p,w=v;var I=Math.sin(r)/l(b,x,w);b*=I,x*=I,w*=I,L=L*(_=Math.cos(t))-(M=M*_+L*b+O*w-P*x)*b-(O=O*_+L*x+P*b-M*w)*x-(P=P*_+L*w+M*x-O*b)*w}var R=c(M,O,P,L);R>1e-6?(M/=R,O/=R,P/=R,L/=R):(M=O=P=0,L=1),this.rotation.set(e,M,O,P,L)},d.lookAt=function(e,t,n,r){this.recalcMatrix(e),n=n||this.computedCenter,t=t||this.computedEye,r=r||this.computedUp;var a=this.computedMatrix;i(a,t,n,r);var o=this.computedRotation;s(o,a[0],a[1],a[2],a[4],a[5],a[6],a[8],a[9],a[10]),u(o,o),this.rotation.set(e,o[0],o[1],o[2],o[3]);for(var l=0,c=0;c<3;++c)l+=Math.pow(n[c]-t[c],2);this.radius.set(e,.5*Math.log(Math.max(l,1e-6))),this.center.set(e,n[0],n[1],n[2])},d.translate=function(e,t,n,r){this.center.move(e,t||0,n||0,r||0)},d.setMatrix=function(e,t){var n=this.computedRotation;s(n,t[0],t[1],t[2],t[4],t[5],t[6],t[8],t[9],t[10]),u(n,n),this.rotation.set(e,n[0],n[1],n[2],n[3]);var r=this.computedMatrix;o(r,t);var i=r[15];if(Math.abs(i)>1e-6){var a=r[12]/i,l=r[13]/i,c=r[14]/i;this.recalcMatrix(e);var f=Math.exp(this.computedRadius[0]);this.center.set(e,a-r[2]*f,l-r[6]*f,c-r[10]*f),this.radius.idle(e)}else this.center.idle(e),this.radius.idle(e)},d.setDistance=function(e,t){t>0&&this.radius.set(e,Math.log(t))},d.setDistanceLimits=function(e,t){e=e>0?Math.log(e):-1/0,t=t>0?Math.log(t):1/0,t=Math.max(t,e),this.radius.bounds[0][0]=e,this.radius.bounds[1][0]=t},d.getDistanceLimits=function(e){var t=this.radius.bounds;return e?(e[0]=Math.exp(t[0][0]),e[1]=Math.exp(t[1][0]),e):[Math.exp(t[0][0]),Math.exp(t[1][0])]},d.toJSON=function(){return this.recalcMatrix(this.lastT()),{center:this.computedCenter.slice(),rotation:this.computedRotation.slice(),distance:Math.log(this.computedRadius[0]),zoomMin:this.radius.bounds[0][0],zoomMax:this.radius.bounds[1][0]}},d.fromJSON=function(e){var t=this.lastT(),n=e.center;n&&this.center.set(t,n[0],n[1],n[2]);var r=e.rotation;r&&this.rotation.set(t,r[0],r[1],r[2],r[3]);var i=e.distance;i&&i>0&&this.radius.set(t,Math.log(i)),this.setDistanceLimits(e.zoomMin,e.zoomMax)}},4930:function(e,t,n){"use strict";var r=n(6184);e.exports=function(e,t,n){return r(n="undefined"!==typeof n?n+"":" ",t)+e}},4405:function(e){e.exports=function(e,t){t||(t=[0,""]),e=String(e);var n=parseFloat(e,10);return t[0]=n,t[1]=e.match(/[\d.\-\+]*\s*(.*)/)[1]||"",t}},4166:function(e,t,n){"use strict";e.exports=function(e,t){for(var n=0|t.length,i=e.length,a=[new Array(n),new Array(n)],o=0;o0){o=a[u][n][0],l=u;break}s=o[1^l];for(var f=0;f<2;++f)for(var d=a[f][n],h=0;h0&&(o=p,s=v,l=f)}return i||o&&c(o,l),s}function f(e,n){var i=a[n][e][0],o=[e];c(i,n);for(var s=i[1^n];;){for(;s!==e;)o.push(s),s=u(o[o.length-2],s,!1);if(a[0][e].length+a[1][e].length===0)break;var l=o[o.length-1],f=e,d=o[1],h=u(l,f,!0);if(r(t[l],t[f],t[d],t[h])<0)break;o.push(e),s=u(l,f)}return o}function d(e,t){return t[1]===t[t.length-1]}for(o=0;o0;){a[0][o].length;var v=f(o,h);d(0,v)?p.push.apply(p,v):(p.length>0&&l.push(p),p=v)}p.length>0&&l.push(p)}return l};var r=n(9398)},3959:function(e,t,n){"use strict";e.exports=function(e,t){for(var n=r(e,t.length),i=new Array(t.length),a=new Array(t.length),o=[],s=0;s0;){i[h=o.pop()]=!1;var c=n[h];for(s=0;s0}))).length,m=new Array(v),g=new Array(v);for(h=0;h0;){var z=F.pop(),j=C[z];l(j,(function(e,t){return e-t}));var B,U=j.length,H=N[z];for(0===H&&(B=[$=p[z]]),h=0;h=0||(N[V]=1^H,F.push(V),0===H&&(D($=p[V])||($.reverse(),B.push($))))}0===H&&n.push(B)}return n};var r=n(8348),i=n(4166),a=n(211),o=n(9660),s=n(9662),l=n(1215),c=n(3959);function u(e,t){for(var n=new Array(e),r=0;r0&&t[i]===n[0]))return 1;a=e[i-1]}for(var s=1;a;){var l=a.key,c=r(n,l[0],l[1]);if(l[0][0]0))return 0;s=-1,a=a.right}else if(c>0)a=a.left;else{if(!(c<0))return 0;s=1,a=a.right}}return s}}(g.slabs,g.coordinates);return 0===a.length?y:function(e,t){return function(n){return e(n[0],n[1])?0:t(n)}}(l(a),y)};var r=n(417)[3],i=n(4385),a=n(9014),o=n(5070);function s(){return!0}function l(e){for(var t={},n=0;n=c?(S=1,y=c+2*d+p):y=d*(S=-d/c)+p):(S=0,h>=0?(T=0,y=p):-h>=f?(T=1,y=f+2*h+p):y=h*(T=-h/f)+p);else if(T<0)T=0,d>=0?(S=0,y=p):-d>=c?(S=1,y=c+2*d+p):y=d*(S=-d/c)+p;else{var A=1/k;y=(S*=A)*(c*S+u*(T*=A)+2*d)+T*(u*S+f*T+2*h)+p}else S<0?(x=f+h)>(b=u+d)?(w=x-b)>=(_=c-2*u+f)?(S=1,T=0,y=c+2*d+p):y=(S=w/_)*(c*S+u*(T=1-S)+2*d)+T*(u*S+f*T+2*h)+p:(S=0,x<=0?(T=1,y=f+2*h+p):h>=0?(T=0,y=p):y=h*(T=-h/f)+p):T<0?(x=c+d)>(b=u+h)?(w=x-b)>=(_=c-2*u+f)?(T=1,S=0,y=f+2*h+p):y=(S=1-(T=w/_))*(c*S+u*T+2*d)+T*(u*S+f*T+2*h)+p:(T=0,x<=0?(S=1,y=c+2*d+p):d>=0?(S=0,y=p):y=d*(S=-d/c)+p):(w=f+h-u-d)<=0?(S=0,T=1,y=f+2*h+p):w>=(_=c-2*u+f)?(S=1,T=0,y=c+2*d+p):y=(S=w/_)*(c*S+u*(T=1-S)+2*d)+T*(u*S+f*T+2*h)+p;var E=1-S-T;for(l=0;l0){var c=e[n-1];if(0===r(s,c)&&a(c)!==l){n-=1;continue}}e[n++]=s}}return e.length=n,e}},6184:function(e){"use strict";var t,n="";e.exports=function(e,r){if("string"!==typeof e)throw new TypeError("expected a string");if(1===r)return e;if(2===r)return e+e;var i=e.length*r;if(t!==e||"undefined"===typeof t)t=e,n="";else if(n.length>=i)return n.substr(0,i);for(;i>n.length&&r>1;)1&r&&(n+=e),r>>=1,e+=e;return n=(n+=e).substr(0,i)}},8161:function(e,t,n){e.exports=n.g.performance&&n.g.performance.now?function(){return performance.now()}:Date.now||function(){return+new Date}},402:function(e){"use strict";e.exports=function(e){for(var t=e.length,n=e[e.length-1],r=t,i=t-2;i>=0;--i){var a=n;(l=(s=e[i])-((n=a+s)-a))&&(e[--r]=n,n=l)}var o=0;for(i=r;i0){if(a<=0)return o;r=i+a}else{if(!(i<0))return o;if(a>=0)return o;r=-(i+a)}var s=33306690738754716e-32*r;return o>=s||o<=-s?o:f(e,t,n)},function(e,t,n,r){var i=e[0]-r[0],a=t[0]-r[0],o=n[0]-r[0],s=e[1]-r[1],l=t[1]-r[1],c=n[1]-r[1],u=e[2]-r[2],f=t[2]-r[2],h=n[2]-r[2],p=a*c,v=o*l,m=o*s,g=i*c,y=i*l,b=a*s,x=u*(p-v)+f*(m-g)+h*(y-b),w=7771561172376103e-31*((Math.abs(p)+Math.abs(v))*Math.abs(u)+(Math.abs(m)+Math.abs(g))*Math.abs(f)+(Math.abs(y)+Math.abs(b))*Math.abs(h));return x>w||-x>w?x:d(e,t,n,r)}];function p(e){var t=h[e.length];return t||(t=h[e.length]=u(e.length)),t.apply(void 0,e)}function v(e,t,n,r,i,a,o){return function(t,n,s,l,c){switch(arguments.length){case 0:case 1:return 0;case 2:return r(t,n);case 3:return i(t,n,s);case 4:return a(t,n,s,l);case 5:return o(t,n,s,l,c)}for(var u=new Array(arguments.length),f=0;f0&&o>0||a<0&&o<0)return!1;var s=r(n,e,t),l=r(i,e,t);return!(s>0&&l>0||s<0&&l<0)&&(0!==a||0!==o||0!==s||0!==l||function(e,t,n,r){for(var i=0;i<2;++i){var a=e[i],o=t[i],s=Math.min(a,o),l=Math.max(a,o),c=n[i],u=r[i],f=Math.min(c,u);if(Math.max(c,u)=r?(i=f,(l+=1)=r?(i=f,(l+=1)>1,c=t[2*l+1];if(c===a)return l;a>1,c=t[2*l+1];if(c===a)return l;a>1,c=t[2*l+1];if(c===a)return l;a0)-(e<0)},t.abs=function(e){var t=e>>31;return(e^t)-t},t.min=function(e,t){return t^(e^t)&-(e65535)<<4,t|=n=((e>>>=t)>255)<<3,t|=n=((e>>>=n)>15)<<2,(t|=n=((e>>>=n)>3)<<1)|(e>>>=n)>>1},t.log10=function(e){return e>=1e9?9:e>=1e8?8:e>=1e7?7:e>=1e6?6:e>=1e5?5:e>=1e4?4:e>=1e3?3:e>=100?2:e>=10?1:0},t.popCount=function(e){return 16843009*((e=(858993459&(e-=e>>>1&1431655765))+(e>>>2&858993459))+(e>>>4)&252645135)>>>24},t.countTrailingZeros=n,t.nextPow2=function(e){return e+=0===e,--e,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,1+(e|=e>>>16)},t.prevPow2=function(e){return e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,(e|=e>>>16)-(e>>>1)},t.parity=function(e){return e^=e>>>16,e^=e>>>8,e^=e>>>4,27030>>>(e&=15)&1};var r=new Array(256);!function(e){for(var t=0;t<256;++t){var n=t,r=t,i=7;for(n>>>=1;n;n>>>=1)r<<=1,r|=1&n,--i;e[t]=r<>>8&255]<<16|r[e>>>16&255]<<8|r[e>>>24&255]},t.interleave2=function(e,t){return(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))|(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))<<1},t.deinterleave2=function(e,t){return(e=65535&((e=16711935&((e=252645135&((e=858993459&((e=e>>>t&1431655765)|e>>>1))|e>>>2))|e>>>4))|e>>>16))<<16>>16},t.interleave3=function(e,t,n){return e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2),(e|=(t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2))<<1)|(n=1227133513&((n=3272356035&((n=251719695&((n=4278190335&((n&=1023)|n<<16))|n<<8))|n<<4))|n<<2))<<2},t.deinterleave3=function(e,t){return(e=1023&((e=4278190335&((e=251719695&((e=3272356035&((e=e>>>t&1227133513)|e>>>2))|e>>>4))|e>>>8))|e>>>16))<<22>>22},t.nextCombination=function(e){var t=e|e-1;return t+1|(~t&-~t)-1>>>n(e)+1}},6656:function(e,t,n){"use strict";var r=n(9392),i=n(9521);function a(e,t){var n=e.length,r=e.length-t.length,i=Math.min;if(r)return r;switch(n){case 0:return 0;case 1:return e[0]-t[0];case 2:return(s=e[0]+e[1]-t[0]-t[1])||i(e[0],e[1])-i(t[0],t[1]);case 3:var a=e[0]+e[1],o=t[0]+t[1];if(s=a+e[2]-(o+t[2]))return s;var s,l=i(e[0],e[1]),c=i(t[0],t[1]);return(s=i(l,e[2])-i(c,t[2]))||i(l+e[2],a)-i(c+t[2],o);default:var u=e.slice(0);u.sort();var f=t.slice(0);f.sort();for(var d=0;d>1,s=a(e[o],t);s<=0?(0===s&&(i=o),n=o+1):s>0&&(r=o-1)}return i}function u(e,t){for(var n=new Array(e.length),i=0,o=n.length;i=e.length||0!==a(e[m],s)););}return n}function f(e,t){if(t<0)return[];for(var n=[],i=(1<>>u&1&&c.push(i[u]);t.push(c)}return s(t)},t.skeleton=f,t.boundary=function(e){for(var t=[],n=0,r=e.length;n>1:(e>>1)-1}function b(e){for(var t=g(e);;){var n=t,r=2*e+1,i=2*(e+1),a=e;if(r0;){var n=y(e);if(!(n>=0&&t0){var e=S[0];return m(0,A-1),A-=1,b(0),e}return-1}function _(e,t){var n=S[e];return c[n]===t?e:(c[n]=-1/0,x(e),w(),c[n]=t,x((A+=1)-1))}function k(e){if(!u[e]){u[e]=!0;var t=s[e],n=l[e];s[n]>=0&&(s[n]=t),l[t]>=0&&(l[t]=n),T[t]>=0&&_(T[t],v(t)),T[n]>=0&&_(T[n],v(n))}}var S=[],T=new Array(a);for(f=0;f>1;f>=0;--f)b(f);for(;;){var E=w();if(E<0||c[E]>n)break;k(E)}var C=[];for(f=0;f=0&&n>=0&&t!==n){var r=T[t],i=T[n];r!==i&&O.push([r,i])}})),i.unique(i.normalize(O)),{positions:C,edges:O}};var r=n(417),i=n(6656)},6638:function(e,t,n){"use strict";e.exports=function(e,t){var n,a,o,s;if(t[0][0]t[1][0]))return i(t,e);n=t[1],a=t[0]}if(e[0][0]e[1][0]))return-i(e,t);o=e[1],s=e[0]}var l=r(n,a,s),c=r(n,a,o);if(l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;if(l=r(s,o,a),c=r(s,o,n),l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;return a[0]-s[0]};var r=n(417);function i(e,t){var n,i,a,o;if(t[0][0]t[1][0])){var s=Math.min(e[0][1],e[1][1]),l=Math.max(e[0][1],e[1][1]),c=Math.min(t[0][1],t[1][1]),u=Math.max(t[0][1],t[1][1]);return lu?s-u:l-u}n=t[1],i=t[0]}e[0][1]0)if(t[0]!==o[1][0])n=e,e=e.right;else{if(l=c(e.right,t))return l;e=e.left}else{if(t[0]!==o[1][0])return e;var l;if(l=c(e.right,t))return l;e=e.left}}return n}function u(e,t,n,r){this.y=e,this.index=t,this.start=n,this.closed=r}function f(e,t,n,r){this.x=e,this.segment=t,this.create=n,this.index=r}s.prototype.castUp=function(e){var t=r.le(this.coordinates,e[0]);if(t<0)return-1;this.slabs[t];var n=c(this.slabs[t],e),i=-1;if(n&&(i=n.value),this.coordinates[t]===e[0]){var s=null;if(n&&(s=n.key),t>0){var u=c(this.slabs[t-1],e);u&&(s?o(u.key,s)>0&&(s=u.key,i=u.value):(i=u.value,s=u.key))}var f=this.horizontal[t];if(f.length>0){var d=r.ge(f,e[1],l);if(d=f.length)return i;h=f[d]}}if(h.start)if(s){var p=a(s[0],s[1],[e[0],h.y]);s[0][0]>s[1][0]&&(p=-p),p>0&&(i=h.index)}else i=h.index;else h.y!==e[1]&&(i=h.index)}}}return i}},4670:function(e,t,n){"use strict";var r=n(9130),i=n(9662);function a(e,t){var n=i(r(e,t),[t[t.length-1]]);return n[n.length-1]}function o(e,t,n,r){var i=-t/(r-t);i<0?i=0:i>1&&(i=1);for(var a=1-i,o=e.length,s=new Array(o),l=0;l0||i>0&&u<0){var f=o(s,u,l,i);n.push(f),r.push(f.slice())}u<0?r.push(l.slice()):u>0?n.push(l.slice()):(n.push(l.slice()),r.push(l.slice())),i=u}return{positive:n,negative:r}},e.exports.positive=function(e,t){for(var n=[],r=a(e[e.length-1],t),i=e[e.length-1],s=e[0],l=0;l0||r>0&&c<0)&&n.push(o(i,c,s,r)),c>=0&&n.push(s.slice()),r=c}return n},e.exports.negative=function(e,t){for(var n=[],r=a(e[e.length-1],t),i=e[e.length-1],s=e[0],l=0;l0||r>0&&c<0)&&n.push(o(i,c,s,r)),c<=0&&n.push(s.slice()),r=c}return n}},8974:function(e,t,n){var r;!function(){"use strict";var i={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function a(e){return function(e,t){var n,r,o,s,l,c,u,f,d,h=1,p=e.length,v="";for(r=0;r=0),s.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,s.width?parseInt(s.width):0);break;case"e":n=s.precision?parseFloat(n).toExponential(s.precision):parseFloat(n).toExponential();break;case"f":n=s.precision?parseFloat(n).toFixed(s.precision):parseFloat(n);break;case"g":n=s.precision?String(Number(n.toPrecision(s.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=s.precision?n.substring(0,s.precision):n;break;case"t":n=String(!!n),n=s.precision?n.substring(0,s.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=s.precision?n.substring(0,s.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=s.precision?n.substring(0,s.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}i.json.test(s.type)?v+=n:(!i.number.test(s.type)||f&&!s.sign?d="":(d=f?"+":"-",n=n.toString().replace(i.sign,"")),c=s.pad_char?"0"===s.pad_char?"0":s.pad_char.charAt(1):" ",u=s.width-(d+n).length,l=s.width&&u>0?c.repeat(u):"",v+=s.align?d+n+l:"0"===c?d+l+n:l+d+n)}return v}(function(e){if(s[e])return s[e];for(var t,n=e,r=[],a=0;n;){if(null!==(t=i.text.exec(n)))r.push(t[0]);else if(null!==(t=i.modulo.exec(n)))r.push("%");else{if(null===(t=i.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){a|=1;var o=[],l=t[2],c=[];if(null===(c=i.key.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(o.push(c[1]);""!==(l=l.substring(c[0].length));)if(null!==(c=i.key_access.exec(l)))o.push(c[1]);else{if(null===(c=i.index_access.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return s[e]=r}(e),arguments)}function o(e,t){return a.apply(null,[e].concat(t||[]))}var s=Object.create(null);t.sprintf=a,t.vsprintf=o,"undefined"!==typeof window&&(window.sprintf=a,window.vsprintf=o,void 0===(r=function(){return{sprintf:a,vsprintf:o}}.call(t,n,t,e))||(e.exports=r))}()},4162:function(e,t,n){"use strict";e.exports=function(e,t){if(e.dimension<=0)return{positions:[],cells:[]};if(1===e.dimension)return function(e,t){for(var n=i(e,t),r=n.length,a=new Array(r),o=new Array(r),s=0;sr|0},vertex:function(e,t,n,r,i,a,o,s,l,c,u,f,d){var h=(o<<0)+(s<<1)+(l<<2)+(c<<3)|0;if(0!==h&&15!==h)switch(h){case 0:case 15:u.push([e-.5,t-.5]);break;case 1:u.push([e-.25-.25*(r+n-2*d)/(n-r),t-.25-.25*(i+n-2*d)/(n-i)]);break;case 2:u.push([e-.75-.25*(-r-n+2*d)/(r-n),t-.25-.25*(a+r-2*d)/(r-a)]);break;case 3:u.push([e-.5,t-.5-.5*(i+n+a+r-4*d)/(n-i+r-a)]);break;case 4:u.push([e-.25-.25*(a+i-2*d)/(i-a),t-.75-.25*(-i-n+2*d)/(i-n)]);break;case 5:u.push([e-.5-.5*(r+n+a+i-4*d)/(n-r+i-a),t-.5]);break;case 6:u.push([e-.5-.25*(-r-n+a+i)/(r-n+i-a),t-.5-.25*(-i-n+a+r)/(i-n+r-a)]);break;case 7:u.push([e-.75-.25*(a+i-2*d)/(i-a),t-.75-.25*(a+r-2*d)/(r-a)]);break;case 8:u.push([e-.75-.25*(-a-i+2*d)/(a-i),t-.75-.25*(-a-r+2*d)/(a-r)]);break;case 9:u.push([e-.5-.25*(r+n+-a-i)/(n-r+a-i),t-.5-.25*(i+n+-a-r)/(n-i+a-r)]);break;case 10:u.push([e-.5-.5*(-r-n-a-i+4*d)/(r-n+a-i),t-.5]);break;case 11:u.push([e-.25-.25*(-a-i+2*d)/(a-i),t-.75-.25*(i+n-2*d)/(n-i)]);break;case 12:u.push([e-.5,t-.5-.5*(-i-n-a-r+4*d)/(i-n+a-r)]);break;case 13:u.push([e-.75-.25*(r+n-2*d)/(n-r),t-.25-.25*(-a-r+2*d)/(a-r)]);break;case 14:u.push([e-.25-.25*(-r-n+2*d)/(r-n),t-.25-.25*(-i-n+2*d)/(i-n)])}},cell:function(e,t,n,r,i,a,o,s,l){i?s.push([e,t]):s.push([t,e])}});return function(e,t){var n=[],i=[];return r(e,n,i,t),{positions:n,cells:i}}}},o={}},6946:function(e,t,n){"use strict";e.exports=function e(t,n,i){i=i||{};var a=o[t];a||(a=o[t]={" ":{data:new Float32Array(0),shape:.2}});var s=a[n];if(!s)if(n.length<=1||!/\d/.test(n))s=a[n]=function(e){for(var t=e.cells,n=e.positions,r=new Float32Array(6*t.length),i=0,a=0,o=0;o0&&(f+=.02);var h=new Float32Array(u),p=0,v=-.5*f;for(d=0;dMath.max(n,r)?i[2]=1:n>Math.max(t,r)?i[0]=1:i[1]=1;for(var a=0,o=0,l=0;l<3;++l)a+=e[l]*e[l],o+=i[l]*e[l];for(l=0;l<3;++l)i[l]-=o/a*e[l];return s(i,i),i}function d(e,t,n,i,a,o,s,l){this.center=r(n),this.up=r(i),this.right=r(a),this.radius=r([o]),this.angle=r([s,l]),this.angle.bounds=[[-1/0,-Math.PI/2],[1/0,Math.PI/2]],this.setDistanceLimits(e,t),this.computedCenter=this.center.curve(0),this.computedUp=this.up.curve(0),this.computedRight=this.right.curve(0),this.computedRadius=this.radius.curve(0),this.computedAngle=this.angle.curve(0),this.computedToward=[0,0,0],this.computedEye=[0,0,0],this.computedMatrix=new Array(16);for(var c=0;c<16;++c)this.computedMatrix[c]=.5;this.recalcMatrix(0)}var h=d.prototype;h.setDistanceLimits=function(e,t){e=e>0?Math.log(e):-1/0,t=t>0?Math.log(t):1/0,t=Math.max(t,e),this.radius.bounds[0][0]=e,this.radius.bounds[1][0]=t},h.getDistanceLimits=function(e){var t=this.radius.bounds[0];return e?(e[0]=Math.exp(t[0][0]),e[1]=Math.exp(t[1][0]),e):[Math.exp(t[0][0]),Math.exp(t[1][0])]},h.recalcMatrix=function(e){this.center.curve(e),this.up.curve(e),this.right.curve(e),this.radius.curve(e),this.angle.curve(e);for(var t=this.computedUp,n=this.computedRight,r=0,i=0,a=0;a<3;++a)i+=t[a]*n[a],r+=t[a]*t[a];var l=Math.sqrt(r),u=0;for(a=0;a<3;++a)n[a]-=t[a]*i/r,u+=n[a]*n[a],t[a]/=l;var f=Math.sqrt(u);for(a=0;a<3;++a)n[a]/=f;var d=this.computedToward;o(d,t,n),s(d,d);var h=Math.exp(this.computedRadius[0]),p=this.computedAngle[0],v=this.computedAngle[1],m=Math.cos(p),g=Math.sin(p),y=Math.cos(v),b=Math.sin(v),x=this.computedCenter,w=m*y,_=g*y,k=b,S=-m*b,T=-g*b,A=y,E=this.computedEye,C=this.computedMatrix;for(a=0;a<3;++a){var M=w*n[a]+_*d[a]+k*t[a];C[4*a+1]=S*n[a]+T*d[a]+A*t[a],C[4*a+2]=M,C[4*a+3]=0}var O=C[1],P=C[5],L=C[9],I=C[2],R=C[6],D=C[10],F=P*D-L*R,N=L*I-O*D,z=O*R-P*I,j=c(F,N,z);for(F/=j,N/=j,z/=j,C[0]=F,C[4]=N,C[8]=z,a=0;a<3;++a)E[a]=x[a]+C[2+4*a]*h;for(a=0;a<3;++a){u=0;for(var B=0;B<3;++B)u+=C[a+4*B]*E[B];C[12+a]=-u}C[15]=1},h.getMatrix=function(e,t){this.recalcMatrix(e);var n=this.computedMatrix;if(t){for(var r=0;r<16;++r)t[r]=n[r];return t}return n};var p=[0,0,0];h.rotate=function(e,t,n,r){if(this.angle.move(e,t,n),r){this.recalcMatrix(e);var i=this.computedMatrix;p[0]=i[2],p[1]=i[6],p[2]=i[10];for(var o=this.computedUp,s=this.computedRight,l=this.computedToward,c=0;c<3;++c)i[4*c]=o[c],i[4*c+1]=s[c],i[4*c+2]=l[c];for(a(i,i,r,p),c=0;c<3;++c)o[c]=i[4*c],s[c]=i[4*c+1];this.up.set(e,o[0],o[1],o[2]),this.right.set(e,s[0],s[1],s[2])}},h.pan=function(e,t,n,r){t=t||0,n=n||0,r=r||0,this.recalcMatrix(e);var i=this.computedMatrix,a=(Math.exp(this.computedRadius[0]),i[1]),o=i[5],s=i[9],l=c(a,o,s);a/=l,o/=l,s/=l;var u=i[0],f=i[4],d=i[8],h=u*a+f*o+d*s,p=c(u-=a*h,f-=o*h,d-=s*h),v=(u/=p)*t+a*n,m=(f/=p)*t+o*n,g=(d/=p)*t+s*n;this.center.move(e,v,m,g);var y=Math.exp(this.computedRadius[0]);y=Math.max(1e-4,y+r),this.radius.set(e,Math.log(y))},h.translate=function(e,t,n,r){this.center.move(e,t||0,n||0,r||0)},h.setMatrix=function(e,t,n,r){var a=1;"number"===typeof n&&(a=0|n),(a<0||a>3)&&(a=1);var o=(a+2)%3;t||(this.recalcMatrix(e),t=this.computedMatrix);var s=t[a],l=t[a+4],f=t[a+8];if(r){var d=Math.abs(s),h=Math.abs(l),p=Math.abs(f),v=Math.max(d,h,p);d===v?(s=s<0?-1:1,l=f=0):p===v?(f=f<0?-1:1,s=l=0):(l=l<0?-1:1,s=f=0)}else{var m=c(s,l,f);s/=m,l/=m,f/=m}var g,y,b=t[o],x=t[o+4],w=t[o+8],_=b*s+x*l+w*f,k=c(b-=s*_,x-=l*_,w-=f*_),S=l*(w/=k)-f*(x/=k),T=f*(b/=k)-s*w,A=s*x-l*b,E=c(S,T,A);if(S/=E,T/=E,A/=E,this.center.jump(e,V,W,q),this.radius.idle(e),this.up.jump(e,s,l,f),this.right.jump(e,b,x,w),2===a){var C=t[1],M=t[5],O=t[9],P=C*b+M*x+O*w,L=C*S+M*T+O*A;g=F<0?-Math.PI/2:Math.PI/2,y=Math.atan2(L,P)}else{var I=t[2],R=t[6],D=t[10],F=I*s+R*l+D*f,N=I*b+R*x+D*w,z=I*S+R*T+D*A;g=Math.asin(u(F)),y=Math.atan2(z,N)}this.angle.jump(e,y,g),this.recalcMatrix(e);var j=t[2],B=t[6],U=t[10],H=this.computedMatrix;i(H,t);var $=H[15],V=H[12]/$,W=H[13]/$,q=H[14]/$,G=Math.exp(this.computedRadius[0]);this.center.jump(e,V-j*G,W-B*G,q-U*G)},h.lastT=function(){return Math.max(this.center.lastT(),this.up.lastT(),this.right.lastT(),this.radius.lastT(),this.angle.lastT())},h.idle=function(e){this.center.idle(e),this.up.idle(e),this.right.idle(e),this.radius.idle(e),this.angle.idle(e)},h.flush=function(e){this.center.flush(e),this.up.flush(e),this.right.flush(e),this.radius.flush(e),this.angle.flush(e)},h.setDistance=function(e,t){t>0&&this.radius.set(e,Math.log(t))},h.lookAt=function(e,t,n,r){this.recalcMatrix(e),t=t||this.computedEye,n=n||this.computedCenter;var i=(r=r||this.computedUp)[0],a=r[1],o=r[2],s=c(i,a,o);if(!(s<1e-6)){i/=s,a/=s,o/=s;var l=t[0]-n[0],f=t[1]-n[1],d=t[2]-n[2],h=c(l,f,d);if(!(h<1e-6)){l/=h,f/=h,d/=h;var p=this.computedRight,v=p[0],m=p[1],g=p[2],y=i*v+a*m+o*g,b=c(v-=y*i,m-=y*a,g-=y*o);if(!(b<.01&&(b=c(v=a*d-o*f,m=o*l-i*d,g=i*f-a*l))<1e-6)){v/=b,m/=b,g/=b,this.up.set(e,i,a,o),this.right.set(e,v,m,g),this.center.set(e,n[0],n[1],n[2]),this.radius.set(e,Math.log(h));var x=a*g-o*m,w=o*v-i*g,_=i*m-a*v,k=c(x,w,_),S=i*l+a*f+o*d,T=v*l+m*f+g*d,A=(x/=k)*l+(w/=k)*f+(_/=k)*d,E=Math.asin(u(S)),C=Math.atan2(A,T),M=this.angle._state,O=M[M.length-1],P=M[M.length-2];O%=2*Math.PI;var L=Math.abs(O+2*Math.PI-C),I=Math.abs(O-C),R=Math.abs(O-2*Math.PI-C);L0?n.pop():new ArrayBuffer(e)}function p(e){return new Uint8Array(h(e),0,e)}function v(e){return new Uint16Array(h(2*e),0,e)}function m(e){return new Uint32Array(h(4*e),0,e)}function g(e){return new Int8Array(h(e),0,e)}function y(e){return new Int16Array(h(2*e),0,e)}function b(e){return new Int32Array(h(4*e),0,e)}function x(e){return new Float32Array(h(4*e),0,e)}function w(e){return new Float64Array(h(8*e),0,e)}function _(e){return o?new Uint8ClampedArray(h(e),0,e):p(e)}function k(e){return s?new BigUint64Array(h(8*e),0,e):null}function S(e){return l?new BigInt64Array(h(8*e),0,e):null}function T(e){return new DataView(h(e),0,e)}function A(e){e=r.nextPow2(e);var t=r.log2(e),n=f[t];return n.length>0?n.pop():new a(e)}t.free=function(e){if(a.isBuffer(e))f[r.log2(e.length)].push(e);else{if("[object ArrayBuffer]"!==Object.prototype.toString.call(e)&&(e=e.buffer),!e)return;var t=e.length||e.byteLength,n=0|r.log2(t);u[n].push(e)}},t.freeUint8=t.freeUint16=t.freeUint32=t.freeBigUint64=t.freeInt8=t.freeInt16=t.freeInt32=t.freeBigInt64=t.freeFloat32=t.freeFloat=t.freeFloat64=t.freeDouble=t.freeUint8Clamped=t.freeDataView=function(e){d(e.buffer)},t.freeArrayBuffer=d,t.freeBuffer=function(e){f[r.log2(e.length)].push(e)},t.malloc=function(e,t){if(void 0===t||"arraybuffer"===t)return h(e);switch(t){case"uint8":return p(e);case"uint16":return v(e);case"uint32":return m(e);case"int8":return g(e);case"int16":return y(e);case"int32":return b(e);case"float":case"float32":return x(e);case"double":case"float64":return w(e);case"uint8_clamped":return _(e);case"bigint64":return S(e);case"biguint64":return k(e);case"buffer":return A(e);case"data":case"dataview":return T(e);default:return null}return null},t.mallocArrayBuffer=h,t.mallocUint8=p,t.mallocUint16=v,t.mallocUint32=m,t.mallocInt8=g,t.mallocInt16=y,t.mallocInt32=b,t.mallocFloat32=t.mallocFloat=x,t.mallocFloat64=t.mallocDouble=w,t.mallocUint8Clamped=_,t.mallocBigUint64=k,t.mallocBigInt64=S,t.mallocDataView=T,t.mallocBuffer=A,t.clearCache=function(){for(var e=0;e<32;++e)c.UINT8[e].length=0,c.UINT16[e].length=0,c.UINT32[e].length=0,c.INT8[e].length=0,c.INT16[e].length=0,c.INT32[e].length=0,c.FLOAT[e].length=0,c.DOUBLE[e].length=0,c.BIGUINT64[e].length=0,c.BIGINT64[e].length=0,c.UINT8C[e].length=0,u[e].length=0,f[e].length=0}},1731:function(e){"use strict";function t(e){this.roots=new Array(e),this.ranks=new Array(e);for(var t=0;t0&&(a=r.size),r.lineSpacing&&r.lineSpacing>0&&(o=r.lineSpacing),r.styletags&&r.styletags.breaklines&&(s.breaklines=!!r.styletags.breaklines),r.styletags&&r.styletags.bolds&&(s.bolds=!!r.styletags.bolds),r.styletags&&r.styletags.italics&&(s.italics=!!r.styletags.italics),r.styletags&&r.styletags.subscripts&&(s.subscripts=!!r.styletags.subscripts),r.styletags&&r.styletags.superscripts&&(s.superscripts=!!r.styletags.superscripts)),n.font=[r.fontStyle,r.fontVariant,r.fontWeight,a+"px",r.font].filter((function(e){return e})).join(" "),n.textAlign="start",n.textBaseline="alphabetic",n.direction="ltr",_(function(e,t,n,r,a,o){n=n.replace(/\n/g,""),n=!0===o.breaklines?n.replace(/\/g,"\n"):n.replace(/\/g," ");var s="",l=[];for(k=0;k-1?parseInt(e[1+i]):0,l=a>-1?parseInt(n[1+a]):0;s!==l&&(r=r.replace(N(),"?px "),A*=Math.pow(.75,l-s),r=r.replace("?px ",N())),T+=.25*M*(l-s)}if(!0===o.superscripts){var c=e.indexOf(p),f=n.indexOf(p),h=c>-1?parseInt(e[1+c]):0,v=f>-1?parseInt(n[1+f]):0;h!==v&&(r=r.replace(N(),"?px "),A*=Math.pow(.75,v-h),r=r.replace("?px ",N())),T-=.25*M*(v-h)}if(!0===o.bolds){var m=e.indexOf(u)>-1,y=n.indexOf(u)>-1;!m&&y&&(r=b?r.replace("italic ","italic bold "):"bold "+r),m&&!y&&(r=r.replace("bold ",""))}if(!0===o.italics){var b=e.indexOf(d)>-1,x=n.indexOf(d)>-1;!b&&x&&(r="italic "+r),b&&!x&&(r=r.replace("italic ",""))}t.font=r}for(_=0;_",a="",o=i.length,s=a.length,l=t[0]===p||t[0]===g,c=0,u=-s;c>-1&&-1!==(c=n.indexOf(i,c))&&-1!==(u=n.indexOf(a,c+o))&&!(u<=c);){for(var f=c;f=u)r[f]=null,n=n.substr(0,f)+" "+n.substr(f+1);else if(null!==r[f]){var d=r[f].indexOf(t[0]);-1===d?r[f]+=t:l&&(r[f]=r[f].substr(0,d+1)+(1+parseInt(r[f][d+1]))+r[f].substr(d+2))}var h=c+o,v=n.substr(h,u-h).indexOf(i);c=-1!==v?v:u+s}return r}function x(e,t){var n=r(e,128);return t?a(n.cells,n.positions,.25):{edges:n.cells,positions:n.positions}}function w(e,t,n,r){var i=x(e,r),a=function(e,t,n){for(var r=t.textAlign||"start",i=t.textBaseline||"alphabetic",a=[1<<30,1<<30],o=[0,0],s=e.length,l=0;l=0?n[a]:i}))},has___:{value:b((function(e){var n=y(e);return n?r in n:t.indexOf(e)>=0}))},set___:{value:b((function(e,i){var a,o=y(e);return o?o[r]=i:(a=t.indexOf(e))>=0?n[a]=i:(a=t.length,n[a]=i,t[a]=e),this}))},delete___:{value:b((function(e){var i,a,o=y(e);return o?r in o&&delete o[r]:!((i=t.indexOf(e))<0)&&(a=t.length-1,t[i]=void 0,n[i]=n[a],t[i]=t[a],t.length=a,n.length=a,!0)}))}})};v.prototype=Object.create(Object.prototype,{get:{value:function(e,t){return this.get___(e,t)},writable:!0,configurable:!0},has:{value:function(e){return this.has___(e)},writable:!0,configurable:!0},set:{value:function(e,t){return this.set___(e,t)},writable:!0,configurable:!0},delete:{value:function(e){return this.delete___(e)},writable:!0,configurable:!0}}),"function"===typeof n?function(){function r(){this instanceof v||x();var e,r=new n,i=void 0,a=!1;return e=t?function(e,t){return r.set(e,t),r.has(e)||(i||(i=new v),i.set(e,t)),this}:function(e,t){if(a)try{r.set(e,t)}catch(n){i||(i=new v),i.set___(e,t)}else r.set(e,t);return this},Object.create(v.prototype,{get___:{value:b((function(e,t){return i?r.has(e)?r.get(e):i.get___(e,t):r.get(e,t)}))},has___:{value:b((function(e){return r.has(e)||!!i&&i.has___(e)}))},set___:{value:b(e)},delete___:{value:b((function(e){var t=!!r.delete(e);return i&&i.delete___(e)||t}))},permitHostObjects___:{value:b((function(e){if(e!==m)throw new Error("bogus call to permitHostObjects___");a=!0}))}})}t&&"undefined"!==typeof Proxy&&(Proxy=void 0),r.prototype=v.prototype,e.exports=r,Object.defineProperty(WeakMap.prototype,"constructor",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():("undefined"!==typeof Proxy&&(Proxy=void 0),e.exports=v)}function m(e){e.permitHostObjects___&&e.permitHostObjects___(m)}function g(e){return!(e.substr(0,8)==l&&"___"===e.substr(e.length-3))}function y(e){if(e!==Object(e))throw new TypeError("Not an object: "+e);var t=e[c];if(t&&t.key===e)return t;if(s(e)){t={key:e};try{return o(e,c,{value:t,writable:!1,enumerable:!1,configurable:!1}),t}catch(n){return}}}function b(e){return e.prototype=null,Object.freeze(e)}function x(){h||"undefined"===typeof console||(h=!0,console.warn("WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future."))}}()},9222:function(e,t,n){var r=n(7178);e.exports=function(){var e={};return function(t){if(("object"!==typeof t||null===t)&&"function"!==typeof t)throw new Error("Weakmap-shim: Key must be object");var n=t.valueOf(e);return n&&n.identity===e?n:r(t,e)}}},7178:function(e){e.exports=function(e,t){var n={identity:t},r=e.valueOf;return Object.defineProperty(e,"valueOf",{value:function(e){return e!==t?r.apply(this,arguments):n},writable:!0}),n}},4037:function(e,t,n){var r=n(9222);e.exports=function(){var e=r();return{get:function(t,n){var r=e(t);return r.hasOwnProperty("value")?r.value:n},set:function(t,n){return e(t).value=n,this},has:function(t){return"value"in e(t)},delete:function(t){return delete e(t).value}}}},6183:function(e){"use strict";var t=function(){return function(e,t,n,r,i,a){var o=e[0],s=n[0],l=[0],c=s;r|=0;var u=0,f=s;for(u=0;u=0!==h>=0&&i.push(l[0]+.5+.5*(d+h)/(d-h)),r+=f,++l[0]}}};e.exports=function(e){return n={funcName:e.funcName},function(e){var t={};return function(n,r,i){var a=n.dtype,o=n.order,s=[a,o.join()].join(),l=t[s];return l||(t[s]=l=e([a,o])),l(n.shape.slice(0),n.data,n.stride,0|n.offset,r,i)}}(t.bind(void 0,n));var n}({funcName:"zeroCrossings"})},9584:function(e,t,n){"use strict";e.exports=function(e,t){var n=[];return t=+t||0,r(e.hi(e.shape[0]-1),n,t),n};var r=n(6183)},6601:function(){}},t={};function n(r){var i=t[r];if(void 0!==i)return i.exports;var a=t[r]={id:r,loaded:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.loaded=!0,a.exports}return n.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}(),n.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e},n(7386)}()},e.exports=r()},12856:function(e,t,n){"use strict";function r(e,t){for(var n=0;nh)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,v.prototype),t}function v(e,t,n){if("number"===typeof e){if("string"===typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return y(e)}return m(e,t,n)}function m(e,t,n){if("string"===typeof e)return function(e,t){if("string"===typeof t&&""!==t||(t="utf8"),!v.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var n=0|_(e,t),r=p(n),i=r.write(e,t);return i!==n&&(r=r.slice(0,i)),r}(e,t);if(ArrayBuffer.isView(e))return function(e){if(ne(e,Uint8Array)){var t=new Uint8Array(e);return x(t.buffer,t.byteOffset,t.byteLength)}return b(e)}(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+c(e));if(ne(e,ArrayBuffer)||e&&ne(e.buffer,ArrayBuffer))return x(e,t,n);if("undefined"!==typeof SharedArrayBuffer&&(ne(e,SharedArrayBuffer)||e&&ne(e.buffer,SharedArrayBuffer)))return x(e,t,n);if("number"===typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=e.valueOf&&e.valueOf();if(null!=r&&r!==e)return v.from(r,t,n);var i=function(e){if(v.isBuffer(e)){var t=0|w(e.length),n=p(t);return 0===n.length||e.copy(n,0,0,t),n}return void 0!==e.length?"number"!==typeof e.length||re(e.length)?p(0):b(e):"Buffer"===e.type&&Array.isArray(e.data)?b(e.data):void 0}(e);if(i)return i;if("undefined"!==typeof Symbol&&null!=Symbol.toPrimitive&&"function"===typeof e[Symbol.toPrimitive])return v.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+c(e))}function g(e){if("number"!==typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function y(e){return g(e),p(e<0?0:0|w(e))}function b(e){for(var t=e.length<0?0:0|w(e.length),n=p(t),r=0;r=h)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+h.toString(16)+" bytes");return 0|e}function _(e,t){if(v.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||ne(e,ArrayBuffer))return e.byteLength;if("string"!==typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+c(e));var n=e.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return Q(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return ee(e).length;default:if(i)return r?-1:Q(e).length;t=(""+t).toLowerCase(),i=!0}}function k(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return N(this,t,n);case"utf8":case"utf-8":return I(this,t,n);case"ascii":return D(this,t,n);case"latin1":case"binary":return F(this,t,n);case"base64":return L(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return z(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function S(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function T(e,t,n,r,i){if(0===e.length)return-1;if("string"===typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),re(n=+n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"===typeof t&&(t=v.from(t,r)),v.isBuffer(t))return 0===t.length?-1:A(e,t,n,r,i);if("number"===typeof t)return t&=255,"function"===typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):A(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function A(e,t,n,r,i){var a,o=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;o=2,s/=2,l/=2,n/=2}function c(e,t){return 1===o?e[t]:e.readUInt16BE(t*o)}if(i){var u=-1;for(a=n;as&&(n=s-l),a=n;a>=0;a--){for(var f=!0,d=0;di&&(r=i):r=i;var a,o=t.length;for(r>o/2&&(r=o/2),a=0;a>8,i=n%256,a.push(i),a.push(r);return a}(t,e.length-n),e,n,r)}function L(e,t,n){return 0===t&&n===e.length?u.fromByteArray(e):u.fromByteArray(e.slice(t,n))}function I(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i239?4:a>223?3:a>191?2:1;if(i+s<=n){var l=void 0,c=void 0,u=void 0,f=void 0;switch(s){case 1:a<128&&(o=a);break;case 2:128===(192&(l=e[i+1]))&&(f=(31&a)<<6|63&l)>127&&(o=f);break;case 3:l=e[i+1],c=e[i+2],128===(192&l)&&128===(192&c)&&(f=(15&a)<<12|(63&l)<<6|63&c)>2047&&(f<55296||f>57343)&&(o=f);break;case 4:l=e[i+1],c=e[i+2],u=e[i+3],128===(192&l)&&128===(192&c)&&128===(192&u)&&(f=(15&a)<<18|(63&l)<<12|(63&c)<<6|63&u)>65535&&f<1114112&&(o=f)}}null===o?(o=65533,s=1):o>65535&&(o-=65536,r.push(o>>>10&1023|55296),o=56320|1023&o),r.push(o),i+=s}return function(e){var t=e.length;if(t<=R)return String.fromCharCode.apply(String,e);for(var n="",r=0;rr.length?(v.isBuffer(a)||(a=v.from(a)),a.copy(r,i)):Uint8Array.prototype.set.call(r,a,i);else{if(!v.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,i)}i+=a.length}return r},v.byteLength=_,v.prototype._isBuffer=!0,v.prototype.swap16=function(){var e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tn&&(e+=" ... "),""},d&&(v.prototype[d]=v.prototype.inspect),v.prototype.compare=function(e,t,n,r,i){if(ne(e,Uint8Array)&&(e=v.from(e,e.offset,e.byteLength)),!v.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+c(e));if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var a=(i>>>=0)-(r>>>=0),o=(n>>>=0)-(t>>>=0),s=Math.min(a,o),l=this.slice(r,i),u=e.slice(t,n),f=0;f>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-t;if((void 0===n||n>i)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var a=!1;;)switch(r){case"hex":return E(this,e,t,n);case"utf8":case"utf-8":return C(this,e,t,n);case"ascii":case"latin1":case"binary":return M(this,e,t,n);case"base64":return O(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return P(this,e,t,n);default:if(a)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),a=!0}},v.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var R=4096;function D(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;ir)&&(n=r);for(var i="",a=t;an)throw new RangeError("Trying to access beyond buffer length")}function B(e,t,n,r,i,a){if(!v.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw new RangeError("Index out of range")}function U(e,t,n,r,i){Y(t,r,i,e,n,7);var a=Number(t&BigInt(4294967295));e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a,a>>=8,e[n++]=a;var o=Number(t>>BigInt(32)&BigInt(4294967295));return e[n++]=o,o>>=8,e[n++]=o,o>>=8,e[n++]=o,o>>=8,e[n++]=o,n}function H(e,t,n,r,i){Y(t,r,i,e,n,7);var a=Number(t&BigInt(4294967295));e[n+7]=a,a>>=8,e[n+6]=a,a>>=8,e[n+5]=a,a>>=8,e[n+4]=a;var o=Number(t>>BigInt(32)&BigInt(4294967295));return e[n+3]=o,o>>=8,e[n+2]=o,o>>=8,e[n+1]=o,o>>=8,e[n]=o,n+8}function $(e,t,n,r,i,a){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function V(e,t,n,r,i){return t=+t,n>>>=0,i||$(e,0,n,4),f.write(e,t,n,r,23,4),n+4}function W(e,t,n,r,i){return t=+t,n>>>=0,i||$(e,0,n,8),f.write(e,t,n,r,52,8),n+8}v.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||j(e,t,this.length);for(var r=this[e],i=1,a=0;++a>>=0,t>>>=0,n||j(e,t,this.length);for(var r=this[e+--t],i=1;t>0&&(i*=256);)r+=this[e+--t]*i;return r},v.prototype.readUint8=v.prototype.readUInt8=function(e,t){return e>>>=0,t||j(e,1,this.length),this[e]},v.prototype.readUint16LE=v.prototype.readUInt16LE=function(e,t){return e>>>=0,t||j(e,2,this.length),this[e]|this[e+1]<<8},v.prototype.readUint16BE=v.prototype.readUInt16BE=function(e,t){return e>>>=0,t||j(e,2,this.length),this[e]<<8|this[e+1]},v.prototype.readUint32LE=v.prototype.readUInt32LE=function(e,t){return e>>>=0,t||j(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},v.prototype.readUint32BE=v.prototype.readUInt32BE=function(e,t){return e>>>=0,t||j(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},v.prototype.readBigUInt64LE=ae((function(e){K(e>>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||X(e,this.length-8);var r=t+this[++e]*Math.pow(2,8)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,24),i=this[++e]+this[++e]*Math.pow(2,8)+this[++e]*Math.pow(2,16)+n*Math.pow(2,24);return BigInt(r)+(BigInt(i)<>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||X(e,this.length-8);var r=t*Math.pow(2,24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+this[++e],i=this[++e]*Math.pow(2,24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+n;return(BigInt(r)<>>=0,t>>>=0,n||j(e,t,this.length);for(var r=this[e],i=1,a=0;++a=(i*=128)&&(r-=Math.pow(2,8*t)),r},v.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||j(e,t,this.length);for(var r=t,i=1,a=this[e+--r];r>0&&(i*=256);)a+=this[e+--r]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*t)),a},v.prototype.readInt8=function(e,t){return e>>>=0,t||j(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},v.prototype.readInt16LE=function(e,t){e>>>=0,t||j(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},v.prototype.readInt16BE=function(e,t){e>>>=0,t||j(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},v.prototype.readInt32LE=function(e,t){return e>>>=0,t||j(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},v.prototype.readInt32BE=function(e,t){return e>>>=0,t||j(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},v.prototype.readBigInt64LE=ae((function(e){K(e>>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||X(e,this.length-8);var r=this[e+4]+this[e+5]*Math.pow(2,8)+this[e+6]*Math.pow(2,16)+(n<<24);return(BigInt(r)<>>=0,"offset");var t=this[e],n=this[e+7];void 0!==t&&void 0!==n||X(e,this.length-8);var r=(t<<24)+this[++e]*Math.pow(2,16)+this[++e]*Math.pow(2,8)+this[++e];return(BigInt(r)<>>=0,t||j(e,4,this.length),f.read(this,e,!0,23,4)},v.prototype.readFloatBE=function(e,t){return e>>>=0,t||j(e,4,this.length),f.read(this,e,!1,23,4)},v.prototype.readDoubleLE=function(e,t){return e>>>=0,t||j(e,8,this.length),f.read(this,e,!0,52,8)},v.prototype.readDoubleBE=function(e,t){return e>>>=0,t||j(e,8,this.length),f.read(this,e,!1,52,8)},v.prototype.writeUintLE=v.prototype.writeUIntLE=function(e,t,n,r){e=+e,t>>>=0,n>>>=0,r||B(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,a=0;for(this[t]=255&e;++a>>=0,n>>>=0,r||B(this,e,t,n,Math.pow(2,8*n)-1,0);var i=n-1,a=1;for(this[t+i]=255&e;--i>=0&&(a*=256);)this[t+i]=e/a&255;return t+n},v.prototype.writeUint8=v.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,1,255,0),this[t]=255&e,t+1},v.prototype.writeUint16LE=v.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},v.prototype.writeUint16BE=v.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},v.prototype.writeUint32LE=v.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},v.prototype.writeUint32BE=v.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},v.prototype.writeBigUInt64LE=ae((function(e){return U(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,BigInt(0),BigInt("0xffffffffffffffff"))})),v.prototype.writeBigUInt64BE=ae((function(e){return H(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,BigInt(0),BigInt("0xffffffffffffffff"))})),v.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);B(this,e,t,n,i-1,-i)}var a=0,o=1,s=0;for(this[t]=255&e;++a>0)-s&255;return t+n},v.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);B(this,e,t,n,i-1,-i)}var a=n-1,o=1,s=0;for(this[t+a]=255&e;--a>=0&&(o*=256);)e<0&&0===s&&0!==this[t+a+1]&&(s=1),this[t+a]=(e/o>>0)-s&255;return t+n},v.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},v.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},v.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},v.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},v.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||B(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},v.prototype.writeBigInt64LE=ae((function(e){return U(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),v.prototype.writeBigInt64BE=ae((function(e){return H(this,e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))})),v.prototype.writeFloatLE=function(e,t,n){return V(this,e,t,!0,n)},v.prototype.writeFloatBE=function(e,t,n){return V(this,e,t,!1,n)},v.prototype.writeDoubleLE=function(e,t,n){return W(this,e,t,!0,n)},v.prototype.writeDoubleBE=function(e,t,n){return W(this,e,t,!1,n)},v.prototype.copy=function(e,t,n,r){if(!v.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"===typeof e)for(a=t;a=r+4;n-=3)t="_".concat(e.slice(n-3,n)).concat(t);return"".concat(e.slice(0,n)).concat(t)}function Y(e,t,n,r,i,a){if(e>n||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat(8*(a+1)).concat(s):">= -(2".concat(s," ** ").concat(8*(a+1)-1).concat(s,") and < 2 ** ")+"".concat(8*(a+1)-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(n).concat(s),new q.ERR_OUT_OF_RANGE("value",o,e)}!function(e,t,n){K(t,"offset"),void 0!==e[t]&&void 0!==e[t+n]||X(t,e.length-(n+1))}(r,i,a)}function K(e,t){if("number"!==typeof e)throw new q.ERR_INVALID_ARG_TYPE(t,"number",e)}function X(e,t,n){if(Math.floor(e)!==e)throw K(e,n),new q.ERR_OUT_OF_RANGE(n||"offset","an integer",e);if(t<0)throw new q.ERR_BUFFER_OUT_OF_BOUNDS;throw new q.ERR_OUT_OF_RANGE(n||"offset",">= ".concat(n?1:0," and <= ").concat(t),e)}G("ERR_BUFFER_OUT_OF_BOUNDS",(function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"}),RangeError),G("ERR_INVALID_ARG_TYPE",(function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(c(t))}),TypeError),G("ERR_OUT_OF_RANGE",(function(e,t,n){var r='The value of "'.concat(e,'" is out of range.'),i=n;return Number.isInteger(n)&&Math.abs(n)>Math.pow(2,32)?i=Z(String(n)):"bigint"===typeof n&&(i=String(n),(n>Math.pow(BigInt(2),BigInt(32))||n<-Math.pow(BigInt(2),BigInt(32)))&&(i=Z(i)),i+="n"),r+=" It must be ".concat(t,". Received ").concat(i)}),RangeError);var J=/[^+/0-9A-Za-z-_]/g;function Q(e,t){var n;t=t||1/0;for(var r=e.length,i=null,a=[],o=0;o55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(o+1===r){(t-=3)>-1&&a.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&a.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&a.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;a.push(n)}else if(n<2048){if((t-=2)<0)break;a.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;a.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return a}function ee(e){return u.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(J,"")).length<2)return"";for(;e.length%4!==0;)e+="=";return e}(e))}function te(e,t,n,r){var i;for(i=0;i=t.length||i>=e.length);++i)t[i+n]=e[i];return i}function ne(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function re(e){return e!==e}var ie=function(){for(var e="0123456789abcdef",t=new Array(256),n=0;n<16;++n)for(var r=16*n,i=0;i<16;++i)t[r+i]=e[n]+e[i];return t}();function ae(e){return"undefined"===typeof BigInt?oe:e}function oe(){throw new Error("BigInt not supported")}},35791:function(e){"use strict";e.exports=i,e.exports.isMobile=i,e.exports.default=i;var t=/(android|bb\d+|meego).+mobile|armv7l|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series[46]0|samsungbrowser.*mobile|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,n=/CrOS/,r=/android|ipad|playbook|silk/i;function i(e){e||(e={});var i=e.ua;if(i||"undefined"===typeof navigator||(i=navigator.userAgent),i&&i.headers&&"string"===typeof i.headers["user-agent"]&&(i=i.headers["user-agent"]),"string"!==typeof i)return!1;var a=t.test(i)&&!n.test(i)||!!e.tablet&&r.test(i);return!a&&e.tablet&&e.featureDetect&&navigator&&navigator.maxTouchPoints>1&&-1!==i.indexOf("Macintosh")&&-1!==i.indexOf("Safari")&&(a=!0),a}},86781:function(e,t,n){"use strict";n.r(t),n.d(t,{sankeyCenter:function(){return d},sankeyCircular:function(){return O},sankeyJustify:function(){return f},sankeyLeft:function(){return c},sankeyRight:function(){return u}});var r=n(33064),i=n(15140),a=n(45879),o=n(2502),s=n.n(o);function l(e){return e.target.depth}function c(e){return e.depth}function u(e,t){return t-1-e.height}function f(e,t){return e.sourceLinks.length?e.depth:t-1}function d(e){return e.targetLinks.length?e.depth:e.sourceLinks.length?(0,r.VV)(e.sourceLinks,l)-1:0}function h(e){return function(){return e}}var p="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function v(e,t){return g(e.source,t.source)||e.index-t.index}function m(e,t){return g(e.target,t.target)||e.index-t.index}function g(e,t){return e.partOfCycle===t.partOfCycle?e.y0-t.y0:"top"===e.circularLinkType||"bottom"===t.circularLinkType?-1:1}function y(e){return e.value}function b(e){return(e.y0+e.y1)/2}function x(e){return b(e.source)}function w(e){return b(e.target)}function _(e){return e.index}function k(e){return e.nodes}function S(e){return e.links}function T(e,t){var n=e.get(t);if(!n)throw new Error("missing: "+t);return n}function A(e,t){return t(e)}var E=25,C=10,M=.3;function O(){var e,t,n=0,a=0,o=1,l=1,c=24,u=_,d=f,A=k,O=S,L=32,R=2,D=null;function N(){var f={nodes:A.apply(null,arguments),links:O.apply(null,arguments)};!function(e){e.nodes.forEach((function(e,t){e.index=t,e.sourceLinks=[],e.targetLinks=[]}));var t=(0,i.UI)(e.nodes,u);e.links.forEach((function(e,n){e.index=n;var r=e.source,i=e.target;"object"!==("undefined"===typeof r?"undefined":p(r))&&(r=e.source=T(t,r)),"object"!==("undefined"===typeof i?"undefined":p(i))&&(i=e.target=T(t,i)),r.sourceLinks.push(e),i.targetLinks.push(e)}))}(f),function(e,t,n){var r=0;if(null===n){for(var i=[],a=0;a0;--p)m(h*=.99,f),_();function v(i){if(t){var u=1/0;d.forEach((function(e){var n=l*t/(e.length+1);u=n0?t+E+C:t,bottom:n=n>0?n+E+C:n,left:a=a>0?a+E+C:a,right:i=i>0?i+E+C:i}}(s),p=function(e,t){var i=(0,r.Fp)(e.nodes,(function(e){return e.column})),s=o-n,u=l-a,f=s+t.right+t.left,d=u+t.top+t.bottom,h=s/f,p=u/d;return n=n*h+t.left,o=0==t.right?o:o*h,a=a*p+t.top,l*=p,e.nodes.forEach((function(e){e.x0=n+e.column*((o-n-c)/i),e.x1=e.x0+c})),p}(s,h);f*=p,s.links.forEach((function(e){e.width=e.value*f})),d.forEach((function(e){var t=e.length;e.forEach((function(e,n){e.depth==d.length-1&&1==t||0==e.depth&&1==t?(e.y0=l/2-e.value*f,e.y1=e.y0+e.value*f):e.partOfCycle?0==I(e,i)?(e.y0=l/2+n,e.y1=e.y0+e.value*f):"top"==e.circularLinkType?(e.y0=a+n,e.y1=e.y0+e.value*f):(e.y0=l-e.value*f-n,e.y1=e.y0+e.value*f):0==h.top||0==h.bottom?(e.y0=(l-a)/t*n,e.y1=e.y0+e.value*f):(e.y0=(l-a)/2-t/2+n,e.y1=e.y0+e.value*f)}))}))}function m(e,t){var n=d.length;d.forEach((function(i){var a=i.length,o=i[0].depth;i.forEach((function(i){var s;if(i.sourceLinks.length||i.targetLinks.length)if(i.partOfCycle&&I(i,t)>0);else if(0==o&&1==a)s=i.y1-i.y0,i.y0=l/2-s/2,i.y1=l/2+s/2;else if(o==n-1&&1==a)s=i.y1-i.y0,i.y0=l/2-s/2,i.y1=l/2+s/2;else{var c=(0,r.J6)(i.sourceLinks,w),u=(0,r.J6)(i.targetLinks,x),f=((c&&u?(c+u)/2:c||u)-b(i))*e;i.y0+=f,i.y1+=f}}))}))}function _(){d.forEach((function(t){var n,r,i,o=a,s=t.length;for(t.sort(g),i=0;i0&&(n.y0+=r,n.y1+=r),o=n.y1+e;if((r=o-e-l)>0)for(o=n.y0-=r,n.y1-=r,i=s-2;i>=0;--i)(r=(n=t[i]).y1+e-o)>0&&(n.y0-=r,n.y1-=r),o=n.y0}))}}(f,L,u),z(f);for(var h=0;h<4;h++)Z(f,l,u),Y(f,0,u),q(f,a,l,u),Z(f,l,u),Y(f,0,u);return function(e,t,n){var i=e.nodes,a=e.links,o=!1,s=!1;if(a.forEach((function(e){"top"==e.circularLinkType?o=!0:"bottom"==e.circularLinkType&&(s=!0)})),0==o||0==s){var l=(0,r.VV)(i,(function(e){return e.y0})),c=(n-t)/((0,r.Fp)(i,(function(e){return e.y1}))-l);i.forEach((function(e){var t=(e.y1-e.y0)*c;e.y0=(e.y0-l)*c,e.y1=e.y0+t})),a.forEach((function(e){e.y0=(e.y0-l)*c,e.y1=(e.y1-l)*c,e.width=e.width*c}))}}(f,a,l),F(f,R,l,u),f}function z(e){e.nodes.forEach((function(e){e.sourceLinks.sort(m),e.targetLinks.sort(v)})),e.nodes.forEach((function(e){var t=e.y0,n=t,r=e.y1,i=r;e.sourceLinks.forEach((function(e){e.circular?(e.y0=r-e.width/2,r-=e.width):(e.y0=t+e.width/2,t+=e.width)})),e.targetLinks.forEach((function(e){e.circular?(e.y1=i-e.width/2,i-=e.width):(e.y1=n+e.width/2,n+=e.width)}))}))}return N.nodeId=function(e){return arguments.length?(u="function"===typeof e?e:h(e),N):u},N.nodeAlign=function(e){return arguments.length?(d="function"===typeof e?e:h(e),N):d},N.nodeWidth=function(e){return arguments.length?(c=+e,N):c},N.nodePadding=function(t){return arguments.length?(e=+t,N):e},N.nodes=function(e){return arguments.length?(A="function"===typeof e?e:h(e),N):A},N.links=function(e){return arguments.length?(O="function"===typeof e?e:h(e),N):O},N.size=function(e){return arguments.length?(n=a=0,o=+e[0],l=+e[1],N):[o-n,l-a]},N.extent=function(e){return arguments.length?(n=+e[0][0],o=+e[1][0],a=+e[0][1],l=+e[1][1],N):[[n,a],[o,l]]},N.iterations=function(e){return arguments.length?(L=+e,N):L},N.circularLinkGap=function(e){return arguments.length?(R=+e,N):R},N.nodePaddingRatio=function(e){return arguments.length?(t=+e,N):t},N.sortNodes=function(e){return arguments.length?(D=e,N):D},N.update=function(e){return P(e,u),z(e),e.links.forEach((function(e){e.circular&&(e.circularLinkType=e.y0+e.y11||i>1)}function D(e,t,n){return e.sort(N),e.forEach((function(r,i){var a,o,s=0;if(J(r,n)&&R(r))r.circularPathData.verticalBuffer=s+r.width/2;else{for(var l=0;lo.source.column)){var c=e[l].circularPathData.verticalBuffer+e[l].width/2+t;s=c>s?c:s}r.circularPathData.verticalBuffer=s+r.width/2}})),e}function F(e,t,n,i){var o=(0,r.VV)(e.links,(function(e){return e.source.y0}));e.links.forEach((function(e){e.circular&&(e.circularPathData={})})),D(e.links.filter((function(e){return"top"==e.circularLinkType})),t,i),D(e.links.filter((function(e){return"bottom"==e.circularLinkType})),t,i),e.links.forEach((function(r){if(r.circular){if(r.circularPathData.arcRadius=r.width+C,r.circularPathData.leftNodeBuffer=5,r.circularPathData.rightNodeBuffer=5,r.circularPathData.sourceWidth=r.source.x1-r.source.x0,r.circularPathData.sourceX=r.source.x0+r.circularPathData.sourceWidth,r.circularPathData.targetX=r.target.x0,r.circularPathData.sourceY=r.y0,r.circularPathData.targetY=r.y1,J(r,i)&&R(r))r.circularPathData.leftSmallArcRadius=C+r.width/2,r.circularPathData.leftLargeArcRadius=C+r.width/2,r.circularPathData.rightSmallArcRadius=C+r.width/2,r.circularPathData.rightLargeArcRadius=C+r.width/2,"bottom"==r.circularLinkType?(r.circularPathData.verticalFullExtent=r.source.y1+E+r.circularPathData.verticalBuffer,r.circularPathData.verticalLeftInnerExtent=r.circularPathData.verticalFullExtent-r.circularPathData.leftLargeArcRadius,r.circularPathData.verticalRightInnerExtent=r.circularPathData.verticalFullExtent-r.circularPathData.rightLargeArcRadius):(r.circularPathData.verticalFullExtent=r.source.y0-E-r.circularPathData.verticalBuffer,r.circularPathData.verticalLeftInnerExtent=r.circularPathData.verticalFullExtent+r.circularPathData.leftLargeArcRadius,r.circularPathData.verticalRightInnerExtent=r.circularPathData.verticalFullExtent+r.circularPathData.rightLargeArcRadius);else{var s=r.source.column,l=r.circularLinkType,c=e.links.filter((function(e){return e.source.column==s&&e.circularLinkType==l}));"bottom"==r.circularLinkType?c.sort(j):c.sort(z);var u=0;c.forEach((function(e,n){e.circularLinkID==r.circularLinkID&&(r.circularPathData.leftSmallArcRadius=C+r.width/2+u,r.circularPathData.leftLargeArcRadius=C+r.width/2+n*t+u),u+=e.width})),s=r.target.column,c=e.links.filter((function(e){return e.target.column==s&&e.circularLinkType==l})),"bottom"==r.circularLinkType?c.sort(U):c.sort(B),u=0,c.forEach((function(e,n){e.circularLinkID==r.circularLinkID&&(r.circularPathData.rightSmallArcRadius=C+r.width/2+u,r.circularPathData.rightLargeArcRadius=C+r.width/2+n*t+u),u+=e.width})),"bottom"==r.circularLinkType?(r.circularPathData.verticalFullExtent=Math.max(n,r.source.y1,r.target.y1)+E+r.circularPathData.verticalBuffer,r.circularPathData.verticalLeftInnerExtent=r.circularPathData.verticalFullExtent-r.circularPathData.leftLargeArcRadius,r.circularPathData.verticalRightInnerExtent=r.circularPathData.verticalFullExtent-r.circularPathData.rightLargeArcRadius):(r.circularPathData.verticalFullExtent=o-E-r.circularPathData.verticalBuffer,r.circularPathData.verticalLeftInnerExtent=r.circularPathData.verticalFullExtent+r.circularPathData.leftLargeArcRadius,r.circularPathData.verticalRightInnerExtent=r.circularPathData.verticalFullExtent+r.circularPathData.rightLargeArcRadius)}r.circularPathData.leftInnerExtent=r.circularPathData.sourceX+r.circularPathData.leftNodeBuffer,r.circularPathData.rightInnerExtent=r.circularPathData.targetX-r.circularPathData.rightNodeBuffer,r.circularPathData.leftFullExtent=r.circularPathData.sourceX+r.circularPathData.leftLargeArcRadius+r.circularPathData.leftNodeBuffer,r.circularPathData.rightFullExtent=r.circularPathData.targetX-r.circularPathData.rightLargeArcRadius-r.circularPathData.rightNodeBuffer}if(r.circular)r.path=function(e){return"top"==e.circularLinkType?"M"+e.circularPathData.sourceX+" "+e.circularPathData.sourceY+" L"+e.circularPathData.leftInnerExtent+" "+e.circularPathData.sourceY+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftSmallArcRadius+" 0 0 0 "+e.circularPathData.leftFullExtent+" "+(e.circularPathData.sourceY-e.circularPathData.leftSmallArcRadius)+" L"+e.circularPathData.leftFullExtent+" "+e.circularPathData.verticalLeftInnerExtent+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftLargeArcRadius+" 0 0 0 "+e.circularPathData.leftInnerExtent+" "+e.circularPathData.verticalFullExtent+" L"+e.circularPathData.rightInnerExtent+" "+e.circularPathData.verticalFullExtent+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightLargeArcRadius+" 0 0 0 "+e.circularPathData.rightFullExtent+" "+e.circularPathData.verticalRightInnerExtent+" L"+e.circularPathData.rightFullExtent+" "+(e.circularPathData.targetY-e.circularPathData.rightSmallArcRadius)+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightSmallArcRadius+" 0 0 0 "+e.circularPathData.rightInnerExtent+" "+e.circularPathData.targetY+" L"+e.circularPathData.targetX+" "+e.circularPathData.targetY:"M"+e.circularPathData.sourceX+" "+e.circularPathData.sourceY+" L"+e.circularPathData.leftInnerExtent+" "+e.circularPathData.sourceY+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftSmallArcRadius+" 0 0 1 "+e.circularPathData.leftFullExtent+" "+(e.circularPathData.sourceY+e.circularPathData.leftSmallArcRadius)+" L"+e.circularPathData.leftFullExtent+" "+e.circularPathData.verticalLeftInnerExtent+" A"+e.circularPathData.leftLargeArcRadius+" "+e.circularPathData.leftLargeArcRadius+" 0 0 1 "+e.circularPathData.leftInnerExtent+" "+e.circularPathData.verticalFullExtent+" L"+e.circularPathData.rightInnerExtent+" "+e.circularPathData.verticalFullExtent+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightLargeArcRadius+" 0 0 1 "+e.circularPathData.rightFullExtent+" "+e.circularPathData.verticalRightInnerExtent+" L"+e.circularPathData.rightFullExtent+" "+(e.circularPathData.targetY+e.circularPathData.rightSmallArcRadius)+" A"+e.circularPathData.rightLargeArcRadius+" "+e.circularPathData.rightSmallArcRadius+" 0 0 1 "+e.circularPathData.rightInnerExtent+" "+e.circularPathData.targetY+" L"+e.circularPathData.targetX+" "+e.circularPathData.targetY}(r);else{var f=(0,a.h5)().source((function(e){return[e.source.x0+(e.source.x1-e.source.x0),e.y0]})).target((function(e){return[e.target.x0,e.y1]}));r.path=f(r)}}))}function N(e,t){return H(e)==H(t)?"bottom"==e.circularLinkType?j(e,t):z(e,t):H(t)-H(e)}function z(e,t){return e.y0-t.y0}function j(e,t){return t.y0-e.y0}function B(e,t){return e.y1-t.y1}function U(e,t){return t.y1-e.y1}function H(e){return e.target.column-e.source.column}function $(e){return e.target.x0-e.source.x1}function V(e,t){var n=L(e),r=$(t)/Math.tan(n);return"up"==X(e)?e.y1+r:e.y1-r}function W(e,t){var n=L(e),r=$(t)/Math.tan(n);return"up"==X(e)?e.y1-r:e.y1+r}function q(e,t,n,r){e.links.forEach((function(i){if(!i.circular&&i.target.column-i.source.column>1){var a=i.source.column+1,o=i.target.column-1,s=1,l=o-a+1;for(s=1;a<=o;a++,s++)e.nodes.forEach((function(o){if(o.column==a){var c,u=s/(l+1),f=Math.pow(1-u,3),d=3*u*Math.pow(1-u,2),h=3*Math.pow(u,2)*(1-u),p=Math.pow(u,3),v=f*i.y0+d*i.y0+h*i.y1+p*i.y1,m=v-i.width/2,g=v+i.width/2;m>o.y0&&ma.y0&&i.y0a.y0&&i.y1a.y1)&&G(e,c,t,n)}))):(g>o.y0&&go.y1)&&(c=g-o.y0+10,o=G(o,c,t,n),e.nodes.forEach((function(e){A(e,r)!=A(o,r)&&e.column==o.column&&e.y0o.y1&&G(e,c,t,n)})))}}))}}))}function G(e,t,n,r){return e.y0+t>=n&&e.y1+t<=r&&(e.y0=e.y0+t,e.y1=e.y1+t,e.targetLinks.forEach((function(e){e.y1=e.y1+t})),e.sourceLinks.forEach((function(e){e.y0=e.y0+t}))),e}function Z(e,t,n,r){e.nodes.forEach((function(i){r&&i.y+(i.y1-i.y0)>t&&(i.y=i.y-(i.y+(i.y1-i.y0)-t));var a=e.links.filter((function(e){return A(e.source,n)==A(i,n)})),o=a.length;o>1&&a.sort((function(e,t){if(!e.circular&&!t.circular){if(e.target.column==t.target.column)return e.y1-t.y1;if(!K(e,t))return e.y1-t.y1;if(e.target.column>t.target.column){var n=W(t,e);return e.y1-n}if(t.target.column>e.target.column)return W(e,t)-t.y1}return e.circular&&!t.circular?"top"==e.circularLinkType?-1:1:t.circular&&!e.circular?"top"==t.circularLinkType?1:-1:e.circular&&t.circular?e.circularLinkType===t.circularLinkType&&"top"==e.circularLinkType?e.target.column===t.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:e.circularLinkType===t.circularLinkType&&"bottom"==e.circularLinkType?e.target.column===t.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:"top"==e.circularLinkType?-1:1:void 0}));var s=i.y0;a.forEach((function(e){e.y0=s+e.width/2,s+=e.width})),a.forEach((function(e,t){if("bottom"==e.circularLinkType){for(var n=t+1,r=0;n1&&r.sort((function(e,t){if(!e.circular&&!t.circular){if(e.source.column==t.source.column)return e.y0-t.y0;if(!K(e,t))return e.y0-t.y0;if(t.source.column0?"up":"down"}function J(e,t){return A(e.source,t)==A(e.target,t)}},30838:function(e,t,n){"use strict";n.r(t),n.d(t,{sankey:function(){return _},sankeyCenter:function(){return c},sankeyJustify:function(){return l},sankeyLeft:function(){return o},sankeyLinkHorizontal:function(){return A},sankeyRight:function(){return s}});var r=n(33064),i=n(15140);function a(e){return e.target.depth}function o(e){return e.depth}function s(e,t){return t-1-e.height}function l(e,t){return e.sourceLinks.length?e.depth:t-1}function c(e){return e.targetLinks.length?e.depth:e.sourceLinks.length?(0,r.VV)(e.sourceLinks,a)-1:0}function u(e){return function(){return e}}function f(e,t){return h(e.source,t.source)||e.index-t.index}function d(e,t){return h(e.target,t.target)||e.index-t.index}function h(e,t){return e.y0-t.y0}function p(e){return e.value}function v(e){return(e.y0+e.y1)/2}function m(e){return v(e.source)*e.value}function g(e){return v(e.target)*e.value}function y(e){return e.index}function b(e){return e.nodes}function x(e){return e.links}function w(e,t){var n=e.get(t);if(!n)throw new Error("missing: "+t);return n}function _(){var e=0,t=0,n=1,a=1,o=24,s=8,c=y,_=l,k=b,S=x,T=32,A=2/3;function E(){var l={nodes:k.apply(null,arguments),links:S.apply(null,arguments)};return function(e){e.nodes.forEach((function(e,t){e.index=t,e.sourceLinks=[],e.targetLinks=[]}));var t=(0,i.UI)(e.nodes,c);e.links.forEach((function(e,n){e.index=n;var r=e.source,i=e.target;"object"!==typeof r&&(r=e.source=w(t,r)),"object"!==typeof i&&(i=e.target=w(t,i)),r.sourceLinks.push(e),i.targetLinks.push(e)}))}(l),function(e){e.nodes.forEach((function(e){e.value=Math.max((0,r.Sm)(e.sourceLinks,p),(0,r.Sm)(e.targetLinks,p))}))}(l),function(t){var r,i,a;for(r=t.nodes,i=[],a=0;r.length;++a,r=i,i=[])r.forEach((function(e){e.depth=a,e.sourceLinks.forEach((function(e){i.indexOf(e.target)<0&&i.push(e.target)}))}));for(r=t.nodes,i=[],a=0;r.length;++a,r=i,i=[])r.forEach((function(e){e.height=a,e.targetLinks.forEach((function(e){i.indexOf(e.source)<0&&i.push(e.source)}))}));var s=(n-e-o)/(a-1);t.nodes.forEach((function(t){t.x1=(t.x0=e+Math.max(0,Math.min(a-1,Math.floor(_.call(null,t,a))))*s)+o}))}(l),function(e){var n=(0,i.b1)().key((function(e){return e.x0})).sortKeys(r.j2).entries(e.nodes).map((function(e){return e.values}));c(),d();for(var o=1,l=T;l>0;--l)f(o*=.99),d(),u(o),d();function c(){var i=(0,r.Fp)(n,(function(e){return e.length})),o=A*(a-t)/(i-1);s>o&&(s=o);var l=(0,r.VV)(n,(function(e){return(a-t-(e.length-1)*s)/(0,r.Sm)(e,p)}));n.forEach((function(e){e.forEach((function(e,t){e.y1=(e.y0=t)+e.value*l}))})),e.links.forEach((function(e){e.width=e.value*l}))}function u(e){n.forEach((function(t){t.forEach((function(t){if(t.targetLinks.length){var n=((0,r.Sm)(t.targetLinks,m)/(0,r.Sm)(t.targetLinks,p)-v(t))*e;t.y0+=n,t.y1+=n}}))}))}function f(e){n.slice().reverse().forEach((function(t){t.forEach((function(t){if(t.sourceLinks.length){var n=((0,r.Sm)(t.sourceLinks,g)/(0,r.Sm)(t.sourceLinks,p)-v(t))*e;t.y0+=n,t.y1+=n}}))}))}function d(){n.forEach((function(e){var n,r,i,o=t,l=e.length;for(e.sort(h),i=0;i0&&(n.y0+=r,n.y1+=r),o=n.y1+s;if((r=o-s-a)>0)for(o=n.y0-=r,n.y1-=r,i=l-2;i>=0;--i)(r=(n=e[i]).y1+s-o)>0&&(n.y0-=r,n.y1-=r),o=n.y0}))}}(l),C(l),l}function C(e){e.nodes.forEach((function(e){e.sourceLinks.sort(d),e.targetLinks.sort(f)})),e.nodes.forEach((function(e){var t=e.y0,n=t;e.sourceLinks.forEach((function(e){e.y0=t+e.width/2,t+=e.width})),e.targetLinks.forEach((function(e){e.y1=n+e.width/2,n+=e.width}))}))}return E.update=function(e){return C(e),e},E.nodeId=function(e){return arguments.length?(c="function"===typeof e?e:u(e),E):c},E.nodeAlign=function(e){return arguments.length?(_="function"===typeof e?e:u(e),E):_},E.nodeWidth=function(e){return arguments.length?(o=+e,E):o},E.nodePadding=function(e){return arguments.length?(s=+e,E):s},E.nodes=function(e){return arguments.length?(k="function"===typeof e?e:u(e),E):k},E.links=function(e){return arguments.length?(S="function"===typeof e?e:u(e),E):S},E.size=function(r){return arguments.length?(e=t=0,n=+r[0],a=+r[1],E):[n-e,a-t]},E.extent=function(r){return arguments.length?(e=+r[0][0],n=+r[1][0],t=+r[0][1],a=+r[1][1],E):[[e,t],[n,a]]},E.iterations=function(e){return arguments.length?(T=+e,E):T},E}var k=n(45879);function S(e){return[e.source.x1,e.y0]}function T(e){return[e.target.x0,e.y1]}function A(){return(0,k.h5)().source(S).target(T)}},39898:function(e,t,n){var r,i;(function(){var a={version:"3.8.0"},o=[].slice,s=function(e){return o.call(e)},l=self.document;function c(e){return e&&(e.ownerDocument||e.document||e).documentElement}function u(e){return e&&(e.ownerDocument&&e.ownerDocument.defaultView||e.document&&e||e.defaultView)}if(l)try{s(l.documentElement.childNodes)[0].nodeType}catch(ba){s=function(e){for(var t=e.length,n=new Array(t);t--;)n[t]=e[t];return n}}if(Date.now||(Date.now=function(){return+new Date}),l)try{l.createElement("DIV").style.setProperty("opacity",0,"")}catch(xa){var f=this.Element.prototype,d=f.setAttribute,h=f.setAttributeNS,p=this.CSSStyleDeclaration.prototype,v=p.setProperty;f.setAttribute=function(e,t){d.call(this,e,t+"")},f.setAttributeNS=function(e,t,n){h.call(this,e,t,n+"")},p.setProperty=function(e,t,n){v.call(this,e,t+"",n)}}function m(e,t){return et?1:e>=t?0:NaN}function g(e){return null===e?NaN:+e}function y(e){return!isNaN(e)}function b(e){return{left:function(t,n,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);r>>1;e(t[a],n)<0?r=a+1:i=a}return r},right:function(t,n,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);r>>1;e(t[a],n)>0?i=a:r=a+1}return r}}}a.ascending=m,a.descending=function(e,t){return te?1:t>=e?0:NaN},a.min=function(e,t){var n,r,i=-1,a=e.length;if(1===arguments.length){for(;++i=r){n=r;break}for(;++ir&&(n=r)}else{for(;++i=r){n=r;break}for(;++ir&&(n=r)}return n},a.max=function(e,t){var n,r,i=-1,a=e.length;if(1===arguments.length){for(;++i=r){n=r;break}for(;++in&&(n=r)}else{for(;++i=r){n=r;break}for(;++in&&(n=r)}return n},a.extent=function(e,t){var n,r,i,a=-1,o=e.length;if(1===arguments.length){for(;++a=r){n=i=r;break}for(;++ar&&(n=r),i=r){n=i=r;break}for(;++ar&&(n=r),i1)return o/(l-1)},a.deviation=function(){var e=a.variance.apply(this,arguments);return e?Math.sqrt(e):e};var x=b(m);function w(e){return e.length}a.bisectLeft=x.left,a.bisect=a.bisectRight=x.right,a.bisector=function(e){return b(1===e.length?function(t,n){return m(e(t),n)}:e)},a.shuffle=function(e,t,n){(a=arguments.length)<3&&(n=e.length,a<2&&(t=0));for(var r,i,a=n-t;a;)i=Math.random()*a--|0,r=e[a+t],e[a+t]=e[i+t],e[i+t]=r;return e},a.permute=function(e,t){for(var n=t.length,r=new Array(n);n--;)r[n]=e[t[n]];return r},a.pairs=function(e){for(var t=0,n=e.length-1,r=e[0],i=new Array(n<0?0:n);t=0;)for(t=(r=e[i]).length;--t>=0;)n[--o]=r[t];return n};var _=Math.abs;function k(e,t){for(var n in t)Object.defineProperty(e.prototype,n,{value:t[n],enumerable:!1})}function S(){this._=Object.create(null)}a.range=function(e,t,n){if(arguments.length<3&&(n=1,arguments.length<2&&(t=e,e=0)),(t-e)/n===1/0)throw new Error("infinite range");var r,i=[],a=function(e){for(var t=1;e*t%1;)t*=10;return t}(_(n)),o=-1;if(e*=a,t*=a,(n*=a)<0)for(;(r=e+n*++o)>t;)i.push(r/a);else for(;(r=e+n*++o)=r.length)return t?t.call(n,a):e?a.sort(e):a;for(var l,c,u,f,d=-1,h=a.length,p=r[s++],v=new S;++d=r.length)return e;var n=[],a=i[t++];return e.forEach((function(e,r){n.push({key:e,values:s(r,t)})})),a?n.sort((function(e,t){return a(e.key,t.key)})):n}return n.map=function(e,t){return o(t,e,0)},n.entries=function(e){return s(o(a.map,e,0),0)},n.key=function(e){return r.push(e),n},n.sortKeys=function(e){return i[r.length-1]=e,n},n.sortValues=function(t){return e=t,n},n.rollup=function(e){return t=e,n},n},a.set=function(e){var t=new R;if(e)for(var n=0,r=e.length;n=0&&(r=e.slice(n+1),e=e.slice(0,n)),e)return arguments.length<2?this[e].on(r):this[e].on(r,t);if(2===arguments.length){if(null==t)for(e in this)this.hasOwnProperty(e)&&this[e].on(r,null);return this}},a.event=null,a.requote=function(e){return e.replace(W,"\\$&")};var W=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,q={}.__proto__?function(e,t){e.__proto__=t}:function(e,t){for(var n in t)e[n]=t[n]};function G(e){return q(e,X),e}var Z=function(e,t){return t.querySelector(e)},Y=function(e,t){return t.querySelectorAll(e)},K=function(e,t){var n=e.matches||e[N(e,"matchesSelector")];return K=function(e,t){return n.call(e,t)},K(e,t)};"function"===typeof Sizzle&&(Z=function(e,t){return Sizzle(e,t)[0]||null},Y=Sizzle,K=Sizzle.matchesSelector),a.selection=function(){return a.select(l.documentElement)};var X=a.selection.prototype=[];function J(e){return"function"===typeof e?e:function(){return Z(e,this)}}function Q(e){return"function"===typeof e?e:function(){return Y(e,this)}}X.select=function(e){var t,n,r,i,a=[];e=J(e);for(var o=-1,s=this.length;++o=0&&"xmlns"!==(n=e.slice(0,t))&&(e=e.slice(t+1)),te.hasOwnProperty(n)?{space:te[n],local:e}:e}},X.attr=function(e,t){if(arguments.length<2){if("string"===typeof e){var n=this.node();return(e=a.ns.qualify(e)).local?n.getAttributeNS(e.space,e.local):n.getAttribute(e)}for(t in e)this.each(ne(t,e[t]));return this}return this.each(ne(e,t))},X.classed=function(e,t){if(arguments.length<2){if("string"===typeof e){var n=this.node(),r=(e=ae(e)).length,i=-1;if(t=n.classList){for(;++i=0;)(n=r[i])&&(a&&a!==n.nextSibling&&a.parentNode.insertBefore(n,a),a=n);return this},X.sort=function(e){e=pe.apply(this,arguments);for(var t=-1,n=this.length;++t0&&(e=e.slice(0,i));var l=be.get(e);function c(){var t=this[r];t&&(this.removeEventListener(e,t,t.$),delete this[r])}return l&&(e=l,o=we),i?t?function(){var i=o(t,s(arguments));c.call(this),this.addEventListener(e,this[r]=i,i.$=n),i._=t}:c:t?j:function(){var t,n=new RegExp("^__on([^.]+)"+a.requote(e)+"$");for(var r in this)if(t=r.match(n)){var i=this[r];this.removeEventListener(t[1],i,i.$),delete this[r]}}}a.selection.enter=me,a.selection.enter.prototype=ge,ge.append=X.append,ge.empty=X.empty,ge.node=X.node,ge.call=X.call,ge.size=X.size,ge.select=function(e){for(var t,n,r,i,a,o=[],s=-1,l=this.length;++s=t&&(t=i+1);!(o=s[t])&&++t1?Ie:e<-1?-Ie:Math.asin(e)}function ze(e){return((e=Math.exp(e))+1/e)/2}var je=Math.SQRT2;a.interpolateZoom=function(e,t){var n,r,i=e[0],a=e[1],o=e[2],s=t[0],l=t[1],c=t[2],u=s-i,f=l-a,d=u*u+f*f;if(d0&&(e=e.transition().duration(v)),e.call(_.event)}function E(){s&&s.domain(o.range().map((function(e){return(e-d.x)/d.k})).map(o.invert)),f&&f.domain(c.range().map((function(e){return(e-d.y)/d.k})).map(c.invert))}function C(e){m++||e({type:"zoomstart"})}function M(e){E(),e({type:"zoom",scale:d.k,translate:[d.x,d.y]})}function O(e){--m||(e({type:"zoomend"}),t=null)}function P(){var e=this,t=w.of(e,arguments),n=0,r=a.select(u(e)).on(y,(function(){n=1,T(a.mouse(e),i),M(t)})).on(b,(function(){r.on(y,null).on(b,null),o(n),O(t)})),i=k(a.mouse(e)),o=Se(e);ea.call(e),C(t)}function L(){var e,t=this,n=w.of(t,arguments),r={},o=0,s=".zoom-"+a.event.changedTouches[0].identifier,l="touchmove"+s,c="touchend"+s,u=[],f=a.select(t),h=Se(t);function p(){var n=a.touches(t);return e=d.k,n.forEach((function(e){e.identifier in r&&(r[e.identifier]=k(e))})),n}function v(){var e=a.event.target;a.select(e).on(l,m).on(c,y),u.push(e);for(var n=a.event.changedTouches,s=0,f=n.length;s1){g=h[0];var b=h[1],x=g[0]-b[0],w=g[1]-b[1];o=x*x+w*w}}function m(){var s,l,c,u,f=a.touches(t);ea.call(t);for(var d=0,h=f.length;d360?e-=360:e<0&&(e+=360),e<60?r+(i-r)*e/60:e<180?i:e<240?r+(i-r)*(240-e)/60:r}(e))}return e=isNaN(e)?0:(e%=360)<0?e+360:e,t=isNaN(t)||t<0?0:t>1?1:t,r=2*(n=n<0?0:n>1?1:n)-(i=n<=.5?n*(1+t):n+t-n*t),new st(a(e+120),a(e),a(e-120))}function Ge(e,t,n){return this instanceof Ge?(this.h=+e,this.c=+t,void(this.l=+n)):arguments.length<2?e instanceof Ge?new Ge(e.h,e.c,e.l):rt(e instanceof Ke?e.l:(e=pt((e=a.rgb(e)).r,e.g,e.b)).l,e.a,e.b):new Ge(e,t,n)}We.brighter=function(e){return e=Math.pow(.7,arguments.length?e:1),new Ve(this.h,this.s,this.l/e)},We.darker=function(e){return e=Math.pow(.7,arguments.length?e:1),new Ve(this.h,this.s,e*this.l)},We.rgb=function(){return qe(this.h,this.s,this.l)},a.hcl=Ge;var Ze=Ge.prototype=new $e;function Ye(e,t,n){return isNaN(e)&&(e=0),isNaN(t)&&(t=0),new Ke(n,Math.cos(e*=Re)*t,Math.sin(e)*t)}function Ke(e,t,n){return this instanceof Ke?(this.l=+e,this.a=+t,void(this.b=+n)):arguments.length<2?e instanceof Ke?new Ke(e.l,e.a,e.b):e instanceof Ge?Ye(e.h,e.c,e.l):pt((e=st(e)).r,e.g,e.b):new Ke(e,t,n)}Ze.brighter=function(e){return new Ge(this.h,this.c,Math.min(100,this.l+Xe*(arguments.length?e:1)))},Ze.darker=function(e){return new Ge(this.h,this.c,Math.max(0,this.l-Xe*(arguments.length?e:1)))},Ze.rgb=function(){return Ye(this.h,this.c,this.l).rgb()},a.lab=Ke;var Xe=18,Je=.95047,Qe=1,et=1.08883,tt=Ke.prototype=new $e;function nt(e,t,n){var r=(e+16)/116,i=r+t/500,a=r-n/200;return new st(ot(3.2404542*(i=it(i)*Je)-1.5371385*(r=it(r)*Qe)-.4985314*(a=it(a)*et)),ot(-.969266*i+1.8760108*r+.041556*a),ot(.0556434*i-.2040259*r+1.0572252*a))}function rt(e,t,n){return e>0?new Ge(Math.atan2(n,t)*De,Math.sqrt(t*t+n*n),e):new Ge(NaN,NaN,e)}function it(e){return e>.206893034?e*e*e:(e-4/29)/7.787037}function at(e){return e>.008856?Math.pow(e,1/3):7.787037*e+4/29}function ot(e){return Math.round(255*(e<=.00304?12.92*e:1.055*Math.pow(e,1/2.4)-.055))}function st(e,t,n){return this instanceof st?(this.r=~~e,this.g=~~t,void(this.b=~~n)):arguments.length<2?e instanceof st?new st(e.r,e.g,e.b):dt(""+e,st,qe):new st(e,t,n)}function lt(e){return new st(e>>16,e>>8&255,255&e)}function ct(e){return lt(e)+""}tt.brighter=function(e){return new Ke(Math.min(100,this.l+Xe*(arguments.length?e:1)),this.a,this.b)},tt.darker=function(e){return new Ke(Math.max(0,this.l-Xe*(arguments.length?e:1)),this.a,this.b)},tt.rgb=function(){return nt(this.l,this.a,this.b)},a.rgb=st;var ut=st.prototype=new $e;function ft(e){return e<16?"0"+Math.max(0,e).toString(16):Math.min(255,e).toString(16)}function dt(e,t,n){var r,i,a,o=0,s=0,l=0;if(r=/([a-z]+)\((.*)\)/.exec(e=e.toLowerCase()))switch(i=r[2].split(","),r[1]){case"hsl":return n(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case"rgb":return t(mt(i[0]),mt(i[1]),mt(i[2]))}return(a=gt.get(e))?t(a.r,a.g,a.b):(null==e||"#"!==e.charAt(0)||isNaN(a=parseInt(e.slice(1),16))||(4===e.length?(o=(3840&a)>>4,o|=o>>4,s=240&a,s|=s>>4,l=15&a,l|=l<<4):7===e.length&&(o=(16711680&a)>>16,s=(65280&a)>>8,l=255&a)),t(o,s,l))}function ht(e,t,n){var r,i,a=Math.min(e/=255,t/=255,n/=255),o=Math.max(e,t,n),s=o-a,l=(o+a)/2;return s?(i=l<.5?s/(o+a):s/(2-o-a),r=e==o?(t-n)/s+(t0&&l<1?0:r),new Ve(r,i,l)}function pt(e,t,n){var r=at((.4124564*(e=vt(e))+.3575761*(t=vt(t))+.1804375*(n=vt(n)))/Je),i=at((.2126729*e+.7151522*t+.072175*n)/Qe);return Ke(116*i-16,500*(r-i),200*(i-at((.0193339*e+.119192*t+.9503041*n)/et)))}function vt(e){return(e/=255)<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)}function mt(e){var t=parseFloat(e);return"%"===e.charAt(e.length-1)?Math.round(2.55*t):t}ut.brighter=function(e){e=Math.pow(.7,arguments.length?e:1);var t=this.r,n=this.g,r=this.b,i=30;return t||n||r?(t&&t=200&&t<300||304===t){try{e=n.call(i,c)}catch(ba){return void o.error.call(i,ba)}o.load.call(i,e)}else o.error.call(i,c)}return self.XDomainRequest&&!("withCredentials"in c)&&/^(http(s)?:)?\/\//.test(e)&&(c=new XDomainRequest),"onload"in c?c.onload=c.onerror=f:c.onreadystatechange=function(){c.readyState>3&&f()},c.onprogress=function(e){var t=a.event;a.event=e;try{o.progress.call(i,c)}finally{a.event=t}},i.header=function(e,t){return e=(e+"").toLowerCase(),arguments.length<2?l[e]:(null==t?delete l[e]:l[e]=t+"",i)},i.mimeType=function(e){return arguments.length?(t=null==e?null:e+"",i):t},i.responseType=function(e){return arguments.length?(u=e,i):u},i.response=function(e){return n=e,i},["get","post"].forEach((function(e){i[e]=function(){return i.send.apply(i,[e].concat(s(arguments)))}})),i.send=function(n,r,a){if(2===arguments.length&&"function"===typeof r&&(a=r,r=null),c.open(n,e,!0),null==t||"accept"in l||(l.accept=t+",*/*"),c.setRequestHeader)for(var s in l)c.setRequestHeader(s,l[s]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=u&&(c.responseType=u),null!=a&&i.on("error",a).on("load",(function(e){a(null,e)})),o.beforesend.call(i,c),c.send(null==r?null:r),i},i.abort=function(){return c.abort(),i},a.rebind(i,o,"on"),null==r?i:i.get(function(e){return 1===e.length?function(t,n){e(null==t?n:null)}:e}(r))}gt.forEach((function(e,t){gt.set(e,lt(t))})),a.functor=yt,a.xhr=bt(D),a.dsv=function(e,t){var n=new RegExp('["'+e+"\n]"),r=e.charCodeAt(0);function i(e,n,r){arguments.length<3&&(r=n,n=null);var i=xt(e,t,null==n?a:o(n),r);return i.row=function(e){return arguments.length?i.response(null==(n=e)?a:o(e)):n},i}function a(e){return i.parse(e.responseText)}function o(e){return function(t){return i.parse(t.responseText,e)}}function s(t){return t.map(l).join(e)}function l(e){return n.test(e)?'"'+e.replace(/\"/g,'""')+'"':e}return i.parse=function(e,t){var n;return i.parseRows(e,(function(e,r){if(n)return n(e,r-1);var i=function(t){for(var n={},r=e.length,i=0;i=l)return o;if(i)return i=!1,a;var t=c;if(34===e.charCodeAt(t)){for(var n=t;n++24?(isFinite(t)&&(clearTimeout(St),St=setTimeout(Et,t)),kt=0):(kt=1,Tt(Et))}function Ct(){for(var e=Date.now(),t=wt;t;)e>=t.t&&t.c(e-t.t)&&(t.c=null),t=t.n;return e}function Mt(){for(var e,t=wt,n=1/0;t;)t.c?(t.t1&&Fe(e[n[r-2]],e[n[r-1]],e[i])<=0;)--r;n[r++]=i}return n.slice(0,r)}function It(e,t){return e[0]-t[0]||e[1]-t[1]}a.timer=function(){At.apply(this,arguments)},a.timer.flush=function(){Ct(),Mt()},a.round=function(e,t){return t?Math.round(e*(t=Math.pow(10,t)))/t:Math.round(e)},a.geom={},a.geom.hull=function(e){var t=Ot,n=Pt;if(arguments.length)return r(e);function r(e){if(e.length<3)return[];var r,i=yt(t),a=yt(n),o=e.length,s=[],l=[];for(r=0;r=0;--r)h.push(e[s[c[r]][2]]);for(r=+f;rCe)s=s.L;else{if(!((i=a-Xt(s,o))>Ce)){r>-Ce?(t=s.P,n=s):i>-Ce?(t=s,n=s.N):t=n=s;break}if(!s.R){t=s;break}s=s.R}var l=qt(e);if(Bt.insert(t,l),t||n){if(t===n)return nn(t),n=qt(t.site),Bt.insert(l,n),l.edge=n.edge=on(t.site,l.site),tn(t),void tn(n);if(n){nn(t),nn(n);var c=t.site,u=c.x,f=c.y,d=e.x-u,h=e.y-f,p=n.site,v=p.x-u,m=p.y-f,g=2*(d*m-h*v),y=d*d+h*h,b=v*v+m*m,x={x:(m*y-h*b)/g+u,y:(d*b-v*y)/g+f};ln(n.edge,c,p,x),l.edge=on(c,e,null,x),n.edge=on(e,p,null,x),tn(t),tn(n)}else l.edge=on(t.site,l.site)}}function Kt(e,t){var n=e.site,r=n.x,i=n.y,a=i-t;if(!a)return r;var o=e.P;if(!o)return-1/0;var s=(n=o.site).x,l=n.y,c=l-t;if(!c)return s;var u=s-r,f=1/a-1/c,d=u/c;return f?(-d+Math.sqrt(d*d-2*f*(u*u/(-2*c)-l+c/2+i-a/2)))/f+r:(r+s)/2}function Xt(e,t){var n=e.N;if(n)return Kt(n,t);var r=e.site;return r.y===t?r.x:1/0}function Jt(e){this.site=e,this.edges=[]}function Qt(e,t){return t.angle-e.angle}function en(){fn(this),this.x=this.y=this.arc=this.site=this.cy=null}function tn(e){var t=e.P,n=e.N;if(t&&n){var r=t.site,i=e.site,a=n.site;if(r!==a){var o=i.x,s=i.y,l=r.x-o,c=r.y-s,u=a.x-o,f=2*(l*(m=a.y-s)-c*u);if(!(f>=-Me)){var d=l*l+c*c,h=u*u+m*m,p=(m*d-c*h)/f,v=(l*h-u*d)/f,m=v+s,g=Vt.pop()||new en;g.arc=e,g.site=i,g.x=p+o,g.y=m+Math.sqrt(p*p+v*v),g.cy=m,e.circle=g;for(var y=null,b=Ht._;b;)if(g.y=s)return;if(d>p){if(a){if(a.y>=c)return}else a={x:m,y:l};n={x:m,y:c}}else{if(a){if(a.y1)if(d>p){if(a){if(a.y>=c)return}else a={x:(l-i)/r,y:l};n={x:(c-i)/r,y:c}}else{if(a){if(a.y=s)return}else a={x:o,y:r*o+i};n={x:s,y:r*s+i}}else{if(a){if(a.x0)){if(t/=d,d<0){if(t0){if(t>f)return;t>u&&(u=t)}if(t=i-l,d||!(t<0)){if(t/=d,d<0){if(t>f)return;t>u&&(u=t)}else if(d>0){if(t0)){if(t/=h,h<0){if(t0){if(t>f)return;t>u&&(u=t)}if(t=a-c,h||!(t<0)){if(t/=h,h<0){if(t>f)return;t>u&&(u=t)}else if(h>0){if(t0&&(e.a={x:l+u*d,y:c+u*h}),f<1&&(e.b={x:l+f*d,y:c+f*h}),e}}}}}),l=o.length;l--;)(!rn(t=o[l],e)||!s(t)||_(t.a.x-t.b.x)Ce||_(i-n)>Ce)&&(s.splice(o,0,new cn(sn(a.site,u,_(r-f)Ce?{x:f,y:_(t-f)Ce?{x:_(n-p)Ce?{x:d,y:_(t-d)Ce?{x:_(n-h)=n&&c.x<=i&&c.y>=r&&c.y<=o?[[n,o],[i,o],[i,r],[n,r]]:[]).point=e[s]})),t}function s(e){return e.map((function(e,t){return{x:Math.round(r(e,t)/Ce)*Ce,y:Math.round(i(e,t)/Ce)*Ce,i:t}}))}return o.links=function(e){return vn(s(e)).edges.filter((function(e){return e.l&&e.r})).map((function(t){return{source:e[t.l.i],target:e[t.r.i]}}))},o.triangles=function(e){var t=[];return vn(s(e)).cells.forEach((function(n,r){for(var i,a=n.site,o=n.edges.sort(Qt),s=-1,l=o.length,c=o[l-1].edge,u=c.l===a?c.r:c.l;++sa&&(i=t.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(n=n[0])===(r=r[0])?s[o]?s[o]+=r:s[++o]=r:(s[++o]=null,l.push({i:o,x:Sn(n,r)})),a=En.lastIndex;return av&&(v=l.x),l.y>m&&(m=l.y),c.push(l.x),u.push(l.y);else for(f=0;fv&&(v=b),x>m&&(m=x),c.push(b),u.push(x)}var w=v-h,k=m-p;function S(e,t,n,r,i,a,o,s){if(!isNaN(n)&&!isNaN(r))if(e.leaf){var l=e.x,c=e.y;if(null!=l)if(_(l-n)+_(c-r)<.01)T(e,t,n,r,i,a,o,s);else{var u=e.point;e.x=e.y=e.point=null,T(e,u,l,c,i,a,o,s),T(e,t,n,r,i,a,o,s)}else e.x=n,e.y=r,e.point=t}else T(e,t,n,r,i,a,o,s)}function T(e,t,n,r,i,a,o,s){var l=.5*(i+o),c=.5*(a+s),u=n>=l,f=r>=c,d=f<<1|u;e.leaf=!1,u?i=l:o=l,f?a=c:s=c,S(e=e.nodes[d]||(e.nodes[d]={leaf:!0,nodes:[],point:null,x:null,y:null}),t,n,r,i,a,o,s)}w>k?m=p+w:v=h+k;var A={leaf:!0,nodes:[],point:null,x:null,y:null,add:function(e){S(A,e,+g(e,++f),+y(e,f),h,p,v,m)},visit:function(e){wn(e,A,h,p,v,m)},find:function(e){return function(e,t,n,r,i,a,o){var s,l=1/0;return function e(c,u,f,d,h){if(!(u>a||f>o||d=w)<<1|t>=x,k=_+4;_=0&&!(n=a.interpolators[r](e,t)););return n}function Mn(e,t){var n,r=[],i=[],a=e.length,o=t.length,s=Math.min(e.length,t.length);for(n=0;n=1)return 1;var t=e*e,n=t*e;return 4*(e<.5?n:3*(e-t)+n-.75)}function zn(e){return 1-Math.cos(e*Ie)}function jn(e){return Math.pow(2,10*(e-1))}function Bn(e){return 1-Math.sqrt(1-e*e)}function Un(e){return e<1/2.75?7.5625*e*e:e<2/2.75?7.5625*(e-=1.5/2.75)*e+.75:e<2.5/2.75?7.5625*(e-=2.25/2.75)*e+.9375:7.5625*(e-=2.625/2.75)*e+.984375}function Hn(e,t){return t-=e,function(n){return Math.round(e+t*n)}}function $n(e){var t,n,r,i=[e.a,e.b],a=[e.c,e.d],o=Wn(i),s=Vn(i,a),l=Wn(((t=a)[0]+=(r=-s)*(n=i)[0],t[1]+=r*n[1],t))||0;i[0]*a[1]=0?e.slice(0,n):e,i=n>=0?e.slice(n+1):"in";return r=Pn.get(r)||On,i=Ln.get(i)||D,t=i(r.apply(null,o.call(arguments,1))),function(e){return e<=0?0:e>=1?1:t(e)}},a.interpolateHcl=function(e,t){e=a.hcl(e),t=a.hcl(t);var n=e.h,r=e.c,i=e.l,o=t.h-n,s=t.c-r,l=t.l-i;return isNaN(s)&&(s=0,r=isNaN(r)?t.c:r),isNaN(o)?(o=0,n=isNaN(n)?t.h:n):o>180?o-=360:o<-180&&(o+=360),function(e){return Ye(n+o*e,r+s*e,i+l*e)+""}},a.interpolateHsl=function(e,t){e=a.hsl(e),t=a.hsl(t);var n=e.h,r=e.s,i=e.l,o=t.h-n,s=t.s-r,l=t.l-i;return isNaN(s)&&(s=0,r=isNaN(r)?t.s:r),isNaN(o)?(o=0,n=isNaN(n)?t.h:n):o>180?o-=360:o<-180&&(o+=360),function(e){return qe(n+o*e,r+s*e,i+l*e)+""}},a.interpolateLab=function(e,t){e=a.lab(e),t=a.lab(t);var n=e.l,r=e.a,i=e.b,o=t.l-n,s=t.a-r,l=t.b-i;return function(e){return nt(n+o*e,r+s*e,i+l*e)+""}},a.interpolateRound=Hn,a.transform=function(e){var t=l.createElementNS(a.ns.prefix.svg,"g");return(a.transform=function(e){if(null!=e){t.setAttribute("transform",e);var n=t.transform.baseVal.consolidate()}return new $n(n?n.matrix:qn)})(e)},$n.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var qn={a:1,b:0,c:0,d:1,e:0,f:0};function Gn(e){return e.length?e.pop()+",":""}function Zn(e,t){var n=[],r=[];return e=a.transform(e),t=a.transform(t),function(e,t,n,r){if(e[0]!==t[0]||e[1]!==t[1]){var i=n.push("translate(",null,",",null,")");r.push({i:i-4,x:Sn(e[0],t[0])},{i:i-2,x:Sn(e[1],t[1])})}else(t[0]||t[1])&&n.push("translate("+t+")")}(e.translate,t.translate,n,r),function(e,t,n,r){e!==t?(e-t>180?t+=360:t-e>180&&(e+=360),r.push({i:n.push(Gn(n)+"rotate(",null,")")-2,x:Sn(e,t)})):t&&n.push(Gn(n)+"rotate("+t+")")}(e.rotate,t.rotate,n,r),function(e,t,n,r){e!==t?r.push({i:n.push(Gn(n)+"skewX(",null,")")-2,x:Sn(e,t)}):t&&n.push(Gn(n)+"skewX("+t+")")}(e.skew,t.skew,n,r),function(e,t,n,r){if(e[0]!==t[0]||e[1]!==t[1]){var i=n.push(Gn(n)+"scale(",null,",",null,")");r.push({i:i-4,x:Sn(e[0],t[0])},{i:i-2,x:Sn(e[1],t[1])})}else 1===t[0]&&1===t[1]||n.push(Gn(n)+"scale("+t+")")}(e.scale,t.scale,n,r),e=t=null,function(e){for(var t,i=-1,a=r.length;++i0?n=t:(e.c=null,e.t=NaN,e=null,l.end({type:"end",alpha:n=0})):t>0&&(l.start({type:"start",alpha:n=t}),e=At(s.tick)),s):n},s.start=function(){var e,t,n,a=g.length,l=y.length,u=c[0],p=c[1];for(e=0;e=0;)n.push(i[r])}function cr(e,t){for(var n=[e],r=[];null!=(e=n.pop());)if(r.push(e),(a=e.children)&&(i=a.length))for(var i,a,o=-1;++o=0;)o.push(u=c[l]),u.parent=a,u.depth=a.depth+1;n&&(a.value=0),a.children=c}else n&&(a.value=+n.call(r,a,a.depth)||0),delete a.children;return cr(i,(function(t){var r,i;e&&(r=t.children)&&r.sort(e),n&&(i=t.parent)&&(i.value+=t.value)})),s}return r.sort=function(t){return arguments.length?(e=t,r):e},r.children=function(e){return arguments.length?(t=e,r):t},r.value=function(e){return arguments.length?(n=e,r):n},r.revalue=function(e){return n&&(lr(e,(function(e){e.children&&(e.value=0)})),cr(e,(function(e){var t;e.children||(e.value=+n.call(r,e,e.depth)||0),(t=e.parent)&&(t.value+=e.value)}))),e},r},a.layout.partition=function(){var e=a.layout.hierarchy(),t=[1,1];function n(e,t,r,i){var a=e.children;if(e.x=t,e.y=e.depth*i,e.dx=r,e.dy=i,a&&(o=a.length)){var o,s,l,c=-1;for(r=e.value?r/e.value:0;++cs&&(s=r),o.push(r)}for(n=0;ni&&(r=n,i=t);return r}function kr(e){return e.reduce(Sr,0)}function Sr(e,t){return e+t[1]}function Tr(e,t){return Ar(e,Math.ceil(Math.log(t.length)/Math.LN2+1))}function Ar(e,t){for(var n=-1,r=+e[0],i=(e[1]-r)/t,a=[];++n<=t;)a[n]=i*n+r;return a}function Er(e){return[a.min(e),a.max(e)]}function Cr(e,t){return e.value-t.value}function Mr(e,t){var n=e._pack_next;e._pack_next=t,t._pack_prev=e,t._pack_next=n,n._pack_prev=t}function Or(e,t){e._pack_next=t,t._pack_prev=e}function Pr(e,t){var n=t.x-e.x,r=t.y-e.y,i=e.r+t.r;return.999*i*i>n*n+r*r}function Lr(e){if((t=e.children)&&(l=t.length)){var t,n,r,i,a,o,s,l,c=1/0,u=-1/0,f=1/0,d=-1/0;if(t.forEach(Ir),(n=t[0]).x=-n.r,n.y=0,b(n),l>1&&((r=t[1]).x=r.r,r.y=0,b(r),l>2))for(Fr(n,r,i=t[2]),b(i),Mr(n,i),n._pack_prev=i,Mr(i,r),r=n._pack_next,a=3;a0)for(o=-1;++o=f[0]&&l<=f[1]&&((s=c[a.bisect(d,l,1,p)-1]).y+=v,s.push(i[o]));return c}return i.value=function(e){return arguments.length?(t=e,i):t},i.range=function(e){return arguments.length?(n=yt(e),i):n},i.bins=function(e){return arguments.length?(r="number"===typeof e?function(t){return Ar(t,e)}:yt(e),i):r},i.frequency=function(t){return arguments.length?(e=!!t,i):e},i},a.layout.pack=function(){var e,t=a.layout.hierarchy().sort(Cr),n=0,r=[1,1];function i(i,a){var o=t.call(this,i,a),s=o[0],l=r[0],c=r[1],u=null==e?Math.sqrt:"function"===typeof e?e:function(){return e};if(s.x=s.y=0,cr(s,(function(e){e.r=+u(e.value)})),cr(s,Lr),n){var f=n*(e?1:Math.max(2*s.r/l,2*s.r/c))/2;cr(s,(function(e){e.r+=f})),cr(s,Lr),cr(s,(function(e){e.r-=f}))}return Dr(s,l/2,c/2,e?1:1/Math.max(2*s.r/l,2*s.r/c)),o}return i.size=function(e){return arguments.length?(r=e,i):r},i.radius=function(t){return arguments.length?(e=null==t||"function"===typeof t?t:+t,i):e},i.padding=function(e){return arguments.length?(n=+e,i):n},sr(i,t)},a.layout.tree=function(){var e=a.layout.hierarchy().sort(null).value(null),t=Nr,n=[1,1],r=null;function i(i,a){var c=e.call(this,i,a),u=c[0],f=function(e){for(var t,n={A:null,children:[e]},r=[n];null!=(t=r.pop());)for(var i,a=t.children,o=0,s=a.length;oh.x&&(h=e),e.depth>p.depth&&(p=e)}));var v=t(d,h)/2-d.x,m=n[0]/(h.x+t(h,d)/2+v),g=n[1]/(p.depth||1);lr(u,(function(e){e.x=(e.x+v)*m,e.y=e.depth*g}))}return c}function o(e){var n=e.children,r=e.parent.children,i=e.i?r[e.i-1]:null;if(n.length){!function(e){for(var t,n=0,r=0,i=e.children,a=i.length;--a>=0;)(t=i[a]).z+=n,t.m+=n,n+=t.s+(r+=t.c)}(e);var a=(n[0].z+n[n.length-1].z)/2;i?(e.z=i.z+t(e._,i._),e.m=e.z-a):e.z=a}else i&&(e.z=i.z+t(e._,i._));e.parent.A=function(e,n,r){if(n){for(var i,a=e,o=e,s=n,l=a.parent.children[0],c=a.m,u=o.m,f=s.m,d=l.m;s=jr(s),a=zr(a),s&&a;)l=zr(l),(o=jr(o)).a=e,(i=s.z+f-a.z-c+t(s._,a._))>0&&(Br(Ur(s,e,r),e,i),c+=i,u+=i),f+=s.m,c+=a.m,d+=l.m,u+=o.m;s&&!jr(o)&&(o.t=s,o.m+=f-u),a&&!zr(l)&&(l.t=a,l.m+=c-d,r=e)}return r}(e,i,e.parent.A||r[0])}function s(e){e._.x=e.z+e.parent.m,e.m+=e.parent.m}function l(e){e.x*=n[0],e.y=e.depth*n[1]}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(e){return arguments.length?(r=null==(n=e)?l:null,i):r?null:n},i.nodeSize=function(e){return arguments.length?(r=null==(n=e)?null:l,i):r?n:null},sr(i,e)},a.layout.cluster=function(){var e=a.layout.hierarchy().sort(null).value(null),t=Nr,n=[1,1],r=!1;function i(i,o){var s,l=e.call(this,i,o),c=l[0],u=0;cr(c,(function(e){var n=e.children;n&&n.length?(e.x=function(e){return e.reduce((function(e,t){return e+t.x}),0)/e.length}(n),e.y=function(e){return 1+a.max(e,(function(e){return e.y}))}(n)):(e.x=s?u+=t(e,s):0,e.y=0,s=e)}));var f=Hr(c),d=$r(c),h=f.x-t(f,d)/2,p=d.x+t(d,f)/2;return cr(c,r?function(e){e.x=(e.x-c.x)*n[0],e.y=(c.y-e.y)*n[1]}:function(e){e.x=(e.x-h)/(p-h)*n[0],e.y=(1-(c.y?e.y/c.y:1))*n[1]}),l}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(e){return arguments.length?(r=null==(n=e),i):r?null:n},i.nodeSize=function(e){return arguments.length?(r=null!=(n=e),i):r?n:null},sr(i,e)},a.layout.treemap=function(){var e,t=a.layout.hierarchy(),n=Math.round,r=[1,1],i=null,o=Vr,s=!1,l="squarify",c=.5*(1+Math.sqrt(5));function u(e,t){for(var n,r,i=-1,a=e.length;++i0;)s.push(n=c[i-1]),s.area+=n.area,"squarify"!==l||(r=h(s,v))<=d?(c.pop(),d=r):(s.area-=s.pop().area,p(s,v,a,!1),v=Math.min(a.dx,a.dy),s.length=s.area=0,d=1/0);s.length&&(p(s,v,a,!0),s.length=s.area=0),t.forEach(f)}}function d(e){var t=e.children;if(t&&t.length){var n,r=o(e),i=t.slice(),a=[];for(u(i,r.dx*r.dy/e.value),a.area=0;n=i.pop();)a.push(n),a.area+=n.area,null!=n.z&&(p(a,n.z?r.dx:r.dy,r,!i.length),a.length=a.area=0);t.forEach(d)}}function h(e,t){for(var n,r=e.area,i=0,a=1/0,o=-1,s=e.length;++oi&&(i=n));return t*=t,(r*=r)?Math.max(t*i*c/r,r/(t*a*c)):1/0}function p(e,t,r,i){var a,o=-1,s=e.length,l=r.x,c=r.y,u=t?n(e.area/t):0;if(t==r.dx){for((i||u>r.dy)&&(u=r.dy);++or.dx)&&(u=r.dx);++o1);return e+t*n*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(){var e=a.random.normal.apply(a,arguments);return function(){return Math.exp(e())}},bates:function(e){var t=a.random.irwinHall(e);return function(){return t()/e}},irwinHall:function(e){return function(){for(var t=0,n=0;n2?Jr:Zr,l=r?Kn:Yn;return i=o(e,t,l,n),a=o(t,e,l,Cn),s}function s(e){return i(e)}return s.invert=function(e){return a(e)},s.domain=function(t){return arguments.length?(e=t.map(Number),o()):e},s.range=function(e){return arguments.length?(t=e,o()):t},s.rangeRound=function(e){return s.range(e).interpolate(Hn)},s.clamp=function(e){return arguments.length?(r=e,o()):r},s.interpolate=function(e){return arguments.length?(n=e,o()):n},s.ticks=function(t){return ri(e,t)},s.tickFormat=function(t,n){return d3_scale_linearTickFormat(e,t,n)},s.nice=function(t){return ti(e,t),o()},s.copy=function(){return Qr(e,t,n,r)},o()}function ei(e,t){return a.rebind(e,t,"range","rangeRound","interpolate","clamp")}function ti(e,t){return Yr(e,Kr(ni(e,t)[2])),Yr(e,Kr(ni(e,t)[2])),e}function ni(e,t){null==t&&(t=10);var n=qr(e),r=n[1]-n[0],i=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),a=t/r*i;return a<=.15?i*=10:a<=.35?i*=5:a<=.75&&(i*=2),n[0]=Math.ceil(n[0]/i)*i,n[1]=Math.floor(n[1]/i)*i+.5*i,n[2]=i,n}function ri(e,t){return a.range.apply(a,ni(e,t))}function ii(e,t,n,r){function i(e){return(n?Math.log(e<0?0:e):-Math.log(e>0?0:-e))/Math.log(t)}function a(e){return n?Math.pow(t,e):-Math.pow(t,-e)}function o(t){return e(i(t))}return o.invert=function(t){return a(e.invert(t))},o.domain=function(t){return arguments.length?(n=t[0]>=0,e.domain((r=t.map(Number)).map(i)),o):r},o.base=function(n){return arguments.length?(t=+n,e.domain(r.map(i)),o):t},o.nice=function(){var t=Yr(r.map(i),n?Math:ai);return e.domain(t),r=t.map(a),o},o.ticks=function(){var e=qr(r),o=[],s=e[0],l=e[1],c=Math.floor(i(s)),u=Math.ceil(i(l)),f=t%1?2:t;if(isFinite(u-c)){if(n){for(;c0;d--)o.push(a(c)*d);for(c=0;o[c]l;u--);o=o.slice(c,u)}return o},o.copy=function(){return ii(e.copy(),t,n,r)},ei(o,e)}a.scale.linear=function(){return Qr([0,1],[0,1],Cn,!1)},a.scale.log=function(){return ii(a.scale.linear().domain([0,1]),10,!0,[1,10])};var ai={floor:function(e){return-Math.ceil(-e)},ceil:function(e){return-Math.floor(-e)}};function oi(e,t,n){var r=si(t),i=si(1/t);function a(t){return e(r(t))}return a.invert=function(t){return i(e.invert(t))},a.domain=function(t){return arguments.length?(e.domain((n=t.map(Number)).map(r)),a):n},a.ticks=function(e){return ri(n,e)},a.tickFormat=function(e,t){return d3_scale_linearTickFormat(n,e,t)},a.nice=function(e){return a.domain(ti(n,e))},a.exponent=function(o){return arguments.length?(r=si(t=o),i=si(1/t),e.domain(n.map(r)),a):t},a.copy=function(){return oi(e.copy(),t,n)},ei(a,e)}function si(e){return function(t){return t<0?-Math.pow(-t,e):Math.pow(t,e)}}function li(e,t){var n,r,i;function o(i){return r[((n.get(i)||("range"===t.t?n.set(i,e.push(i)):NaN))-1)%r.length]}function s(t,n){return a.range(e.length).map((function(e){return t+n*e}))}return o.domain=function(r){if(!arguments.length)return e;e=[],n=new S;for(var i,a=-1,s=r.length;++a0?n[r-1]:e[0],rf?0:1;if(c=Le)return l(c,h)+(s?l(s,1-h):"")+"Z";var p,v,m,g,y,b,x,w,_,k,S,T,A=0,E=0,C=[];if((g=(+o.apply(this,arguments)||0)/2)&&(m=r===yi?Math.sqrt(s*s+c*c):+r.apply(this,arguments),h||(E*=-1),c&&(E=Ne(m/c*Math.sin(g))),s&&(A=Ne(m/s*Math.sin(g)))),c){y=c*Math.cos(u+E),b=c*Math.sin(u+E),x=c*Math.cos(f-E),w=c*Math.sin(f-E);var M=Math.abs(f-u-2*E)<=Oe?0:1;if(E&&Si(y,b,x,w)===h^M){var O=(u+f)/2;y=c*Math.cos(O),b=c*Math.sin(O),x=w=null}}else y=b=0;if(s){_=s*Math.cos(f-A),k=s*Math.sin(f-A),S=s*Math.cos(u+A),T=s*Math.sin(u+A);var P=Math.abs(u-f+2*A)<=Oe?0:1;if(A&&Si(_,k,S,T)===1-h^P){var L=(u+f)/2;_=s*Math.cos(L),k=s*Math.sin(L),S=T=null}}else _=k=0;if(d>Ce&&(p=Math.min(Math.abs(c-s)/2,+n.apply(this,arguments)))>.001){v=s0?0:1}function Ti(e,t,n,r,i){var a=e[0]-t[0],o=e[1]-t[1],s=(i?r:-r)/Math.sqrt(a*a+o*o),l=s*o,c=-s*a,u=e[0]+l,f=e[1]+c,d=t[0]+l,h=t[1]+c,p=(u+d)/2,v=(f+h)/2,m=d-u,g=h-f,y=m*m+g*g,b=n-r,x=u*h-d*f,w=(g<0?-1:1)*Math.sqrt(Math.max(0,b*b*y-x*x)),_=(x*g-m*w)/y,k=(-x*m-g*w)/y,S=(x*g+m*w)/y,T=(-x*m+g*w)/y,A=_-p,E=k-v,C=S-p,M=T-v;return A*A+E*E>C*C+M*M&&(_=S,k=T),[[_-l,k-c],[_*n/b,k*n/b]]}function Ai(){return!0}function Ei(e){var t=Ot,n=Pt,r=Ai,i=Mi,a=i.key,o=.7;function s(a){var s,l=[],c=[],u=-1,f=a.length,d=yt(t),h=yt(n);function p(){l.push("M",i(e(c),o))}for(;++u1&&i.push("H",r[0]),i.join("")},"step-before":Pi,"step-after":Li,basis:Di,"basis-open":function(e){if(e.length<4)return Mi(e);for(var t,n=[],r=-1,i=e.length,a=[0],o=[0];++r<3;)t=e[r],a.push(t[0]),o.push(t[1]);for(n.push(Fi(ji,a)+","+Fi(ji,o)),--r;++r9&&(i=3*t/Math.sqrt(i),o[s]=i*n,o[s+1]=i*r);for(s=-1;++s<=l;)i=(e[Math.min(l,s+1)][0]-e[Math.max(0,s-1)][0])/(6*(1+o[s]*o[s])),a.push([i||0,o[s]*i||0]);return a}(e))}});function Mi(e){return e.length>1?e.join("L"):e+"Z"}function Oi(e){return e.join("L")+"Z"}function Pi(e){for(var t=0,n=e.length,r=e[0],i=[r[0],",",r[1]];++t1){s=t[1],a=e[l],l++,r+="C"+(i[0]+o[0])+","+(i[1]+o[1])+","+(a[0]-s[0])+","+(a[1]-s[1])+","+a[0]+","+a[1];for(var c=2;cOe)+",1 "+t}function l(e,t,n,r){return"Q 0,0 "+r}return a.radius=function(e){return arguments.length?(n=yt(e),a):n},a.source=function(t){return arguments.length?(e=yt(t),a):e},a.target=function(e){return arguments.length?(t=yt(e),a):t},a.startAngle=function(e){return arguments.length?(r=yt(e),a):r},a.endAngle=function(e){return arguments.length?(i=yt(e),a):i},a},a.svg.diagonal=function(){var e=Vi,t=Wi,n=Gi;function r(r,i){var a=e.call(this,r,i),o=t.call(this,r,i),s=(a.y+o.y)/2,l=[a,{x:a.x,y:s},{x:o.x,y:s},o];return"M"+(l=l.map(n))[0]+"C"+l[1]+" "+l[2]+" "+l[3]}return r.source=function(t){return arguments.length?(e=yt(t),r):e},r.target=function(e){return arguments.length?(t=yt(e),r):t},r.projection=function(e){return arguments.length?(n=e,r):n},r},a.svg.diagonal.radial=function(){var e=a.svg.diagonal(),t=Gi,n=e.projection;return e.projection=function(e){return arguments.length?n(function(e){return function(){var t=e.apply(this,arguments),n=t[0],r=t[1]-Ie;return[n*Math.cos(r),n*Math.sin(r)]}}(t=e)):t},e},a.svg.symbol=function(){var e=Yi,t=Zi;function n(n,r){return(Xi.get(e.call(this,n,r))||Ki)(t.call(this,n,r))}return n.type=function(t){return arguments.length?(e=yt(t),n):e},n.size=function(e){return arguments.length?(t=yt(e),n):t},n};var Xi=a.map({circle:Ki,cross:function(e){var t=Math.sqrt(e/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(e){var t=Math.sqrt(e/(2*Qi)),n=t*Qi;return"M0,"+-t+"L"+n+",0 0,"+t+" "+-n+",0Z"},square:function(e){var t=Math.sqrt(e)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(e){var t=Math.sqrt(e/Ji),n=t*Ji/2;return"M0,"+n+"L"+t+","+-n+" "+-t+","+-n+"Z"},"triangle-up":function(e){var t=Math.sqrt(e/Ji),n=t*Ji/2;return"M0,"+-n+"L"+t+","+n+" "+-t+","+n+"Z"}});a.svg.symbolTypes=Xi.keys();var Ji=Math.sqrt(3),Qi=Math.tan(30*Re);X.transition=function(e){for(var t,n,r=ra||++oa,i=ca(e),a=[],o=ia||{time:Date.now(),ease:Nn,delay:0,duration:250},s=-1,l=this.length;++s0;)c[--d].call(e,o);if(a>=1)return f.event&&f.event.end.call(e,e.__data__,t),--u.count?delete u[r]:delete e[n],1}f||(a=i.time,o=At((function(e){var t=f.delay;if(o.t=t+a,t<=e)return d(e-t);o.c=d}),0,a),f=u[r]={tween:new S,time:a,timer:o,delay:i.delay,duration:i.duration,ease:i.ease,index:t},i=null,++u.count)}aa.call=X.call,aa.empty=X.empty,aa.node=X.node,aa.size=X.size,a.transition=function(e,t){return e&&e.transition?ra?e.transition(t):e:a.selection().transition(e)},a.transition.prototype=aa,aa.select=function(e){var t,n,r,i=this.id,a=this.namespace,o=[];e=J(e);for(var s=-1,l=this.length;++srect,.s>rect").attr("width",o[1]-o[0])}function v(e){e.select(".extent").attr("y",s[0]),e.selectAll(".extent,.e>rect,.w>rect").attr("height",s[1]-s[0])}function m(){var f,m,g=this,y=a.select(a.event.target),b=n.of(g,arguments),x=a.select(g),w=y.datum(),_=!/^(n|s)$/.test(w)&&r,k=!/^(e|w)$/.test(w)&&i,S=y.classed("extent"),T=Se(g),A=a.mouse(g),E=a.select(u(g)).on("keydown.brush",(function(){32==a.event.keyCode&&(S||(f=null,A[0]-=o[1],A[1]-=s[1],S=2),H())})).on("keyup.brush",(function(){32==a.event.keyCode&&2==S&&(A[0]+=o[1],A[1]+=s[1],S=0,H())}));if(a.event.changedTouches?E.on("touchmove.brush",O).on("touchend.brush",L):E.on("mousemove.brush",O).on("mouseup.brush",L),x.interrupt().selectAll("*").interrupt(),S)A[0]=o[0]-A[0],A[1]=s[0]-A[1];else if(w){var C=+/w$/.test(w),M=+/^n/.test(w);m=[o[1-C]-A[0],s[1-M]-A[1]],A[0]=o[C],A[1]=s[M]}else a.event.altKey&&(f=A.slice());function O(){var e=a.mouse(g),t=!1;m&&(e[0]+=m[0],e[1]+=m[1]),S||(a.event.altKey?(f||(f=[(o[0]+o[1])/2,(s[0]+s[1])/2]),A[0]=o[+(e[0]>>1;t.dtype||(t.dtype="array"),"string"===typeof t.dtype?p=new(f(t.dtype))(m):t.dtype&&(p=t.dtype,Array.isArray(p)&&(p.length=m));for(var g=0;gn||s>1073741824){for(var d=0;dn+i||A>r+i||E=O)&&o!==s){var l=y[a];void 0===s&&(s=l.length);for(var c=o;c=m&&f<=_&&d>=g&&d<=k&&P.push(u)}var h=b[a],p=h[4*o+0],v=h[4*o+1],x=h[4*o+2],w=h[4*o+3],S=function(e,t){for(var n=null,r=0;null===n;)if(n=e[4*t+r],++r>e.length)return null;return n}(h,o+1),C=.5*i,L=a+1;t(n,r,C,L,p,v||x||w||S),t(n,r+C,C,L,v,x||w||S),t(n+C,r,C,L,x,w||S),t(n+C,r+C,C,L,w,S)}}(0,0,1,0,0,1),P},p;function C(e,t,n){for(var r=1,i=.5,a=.5,o=.5,s=0;s0){t+=Math.abs(o(e[0]));for(var n=1;n2){for(l=0;l=0))throw new Error("precision must be a positive number");var n=Math.pow(10,t||0);return Math.round(e*n)/n},t.radiansToLength=u,t.lengthToRadians=f,t.lengthToDegrees=function(e,t){return d(f(e,t))},t.bearingToAzimuth=function(e){var t=e%360;return t<0&&(t+=360),t},t.radiansToDegrees=d,t.degreesToRadians=function(e){return e%360*Math.PI/180},t.convertLength=function(e,t,n){if(void 0===t&&(t="kilometers"),void 0===n&&(n="kilometers"),!(e>=0))throw new Error("length must be a positive number");return u(f(e,t),n)},t.convertArea=function(e,n,r){if(void 0===n&&(n="meters"),void 0===r&&(r="kilometers"),!(e>=0))throw new Error("area must be a positive number");var i=t.areaFactors[n];if(!i)throw new Error("invalid original units");var a=t.areaFactors[r];if(!a)throw new Error("invalid final units");return e/i*a},t.isNumber=h,t.isObject=function(e){return!!e&&e.constructor===Object},t.validateBBox=function(e){if(!e)throw new Error("bbox is required");if(!Array.isArray(e))throw new Error("bbox must be an Array");if(4!==e.length&&6!==e.length)throw new Error("bbox must be an Array of 4 or 6 numbers");e.forEach((function(e){if(!h(e))throw new Error("bbox must only contain numbers")}))},t.validateId=function(e){if(!e)throw new Error("id is required");if(-1===["string","number"].indexOf(typeof e))throw new Error("id must be a number or a string")}},60302:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(23132);function i(e,t,n){if(null!==e)for(var r,a,o,s,l,c,u,f,d=0,h=0,p=e.type,v="FeatureCollection"===p,m="Feature"===p,g=v?e.features.length:1,y=0;yc||h>u||p>f)return l=i,c=n,u=h,f=p,void(o=0);var v=r.lineString([l,i],e.properties);if(!1===t(v,n,a,p,o))return!1;o++,l=i}))&&void 0}}}))}function u(e,t){if(!e)throw new Error("geojson is required");l(e,(function(e,n,i){if(null!==e.geometry){var a=e.geometry.type,o=e.geometry.coordinates;switch(a){case"LineString":if(!1===t(e,n,i,0,0))return!1;break;case"Polygon":for(var s=0;se[0]&&(t[0]=e[0]),t[1]>e[1]&&(t[1]=e[1]),t[2]=0))throw new Error("precision must be a positive number");var n=Math.pow(10,t||0);return Math.round(e*n)/n},t.radiansToLength=u,t.lengthToRadians=f,t.lengthToDegrees=function(e,t){return d(f(e,t))},t.bearingToAzimuth=function(e){var t=e%360;return t<0&&(t+=360),t},t.radiansToDegrees=d,t.degreesToRadians=function(e){return e%360*Math.PI/180},t.convertLength=function(e,t,n){if(void 0===t&&(t="kilometers"),void 0===n&&(n="kilometers"),!(e>=0))throw new Error("length must be a positive number");return u(f(e,t),n)},t.convertArea=function(e,n,r){if(void 0===n&&(n="meters"),void 0===r&&(r="kilometers"),!(e>=0))throw new Error("area must be a positive number");var i=t.areaFactors[n];if(!i)throw new Error("invalid original units");var a=t.areaFactors[r];if(!a)throw new Error("invalid final units");return e/i*a},t.isNumber=h,t.isObject=function(e){return!!e&&e.constructor===Object},t.validateBBox=function(e){if(!e)throw new Error("bbox is required");if(!Array.isArray(e))throw new Error("bbox must be an Array");if(4!==e.length&&6!==e.length)throw new Error("bbox must be an Array of 4 or 6 numbers");e.forEach((function(e){if(!h(e))throw new Error("bbox must only contain numbers")}))},t.validateId=function(e){if(!e)throw new Error("id is required");if(-1===["string","number"].indexOf(typeof e))throw new Error("id must be a number or a string")}},27138:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(94228);function i(e,t,n){if(null!==e)for(var r,a,o,s,l,c,u,f,d=0,h=0,p=e.type,v="FeatureCollection"===p,m="Feature"===p,g=v?e.features.length:1,y=0;yc||h>u||p>f)return l=i,c=n,u=h,f=p,void(o=0);var v=r.lineString([l,i],e.properties);if(!1===t(v,n,a,p,o))return!1;o++,l=i}))&&void 0}}}))}function u(e,t){if(!e)throw new Error("geojson is required");l(e,(function(e,n,i){if(null!==e.geometry){var a=e.geometry.type,o=e.geometry.coordinates;switch(a){case"LineString":if(!1===t(e,n,i,0,0))return!1;break;case"Polygon":for(var s=0;s=0))throw new Error("precision must be a positive number");var n=Math.pow(10,t||0);return Math.round(e*n)/n},t.radiansToLength=u,t.lengthToRadians=f,t.lengthToDegrees=function(e,t){return d(f(e,t))},t.bearingToAzimuth=function(e){var t=e%360;return t<0&&(t+=360),t},t.radiansToDegrees=d,t.degreesToRadians=function(e){return e%360*Math.PI/180},t.convertLength=function(e,t,n){if(void 0===t&&(t="kilometers"),void 0===n&&(n="kilometers"),!(e>=0))throw new Error("length must be a positive number");return u(f(e,t),n)},t.convertArea=function(e,n,r){if(void 0===n&&(n="meters"),void 0===r&&(r="kilometers"),!(e>=0))throw new Error("area must be a positive number");var i=t.areaFactors[n];if(!i)throw new Error("invalid original units");var a=t.areaFactors[r];if(!a)throw new Error("invalid final units");return e/i*a},t.isNumber=h,t.isObject=function(e){return!!e&&e.constructor===Object},t.validateBBox=function(e){if(!e)throw new Error("bbox is required");if(!Array.isArray(e))throw new Error("bbox must be an Array");if(4!==e.length&&6!==e.length)throw new Error("bbox must be an Array of 4 or 6 numbers");e.forEach((function(e){if(!h(e))throw new Error("bbox must only contain numbers")}))},t.validateId=function(e){if(!e)throw new Error("id is required");if(-1===["string","number"].indexOf(typeof e))throw new Error("id must be a number or a string")},t.radians2degrees=function(){throw new Error("method has been renamed to `radiansToDegrees`")},t.degrees2radians=function(){throw new Error("method has been renamed to `degreesToRadians`")},t.distanceToDegrees=function(){throw new Error("method has been renamed to `lengthToDegrees`")},t.distanceToRadians=function(){throw new Error("method has been renamed to `lengthToRadians`")},t.radiansToDistance=function(){throw new Error("method has been renamed to `radiansToLength`")},t.bearingToAngle=function(){throw new Error("method has been renamed to `bearingToAzimuth`")},t.convertDistance=function(){throw new Error("method has been renamed to `convertLength`")}},88553:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(64182);function i(e,t,n){if(null!==e)for(var r,a,o,s,l,c,u,f,d=0,h=0,p=e.type,v="FeatureCollection"===p,m="Feature"===p,g=v?e.features.length:1,y=0;yc||h>u||p>f)return l=i,c=n,u=h,f=p,void(o=0);var v=r.lineString([l,i],e.properties);if(!1===t(v,n,a,p,o))return!1;o++,l=i}))&&void 0}}}))}function u(e,t){if(!e)throw new Error("geojson is required");l(e,(function(e,n,i){if(null!==e.geometry){var a=e.geometry.type,o=e.geometry.coordinates;switch(a){case"LineString":if(!1===t(e,n,i,0,0))return!1;break;case"Polygon":for(var s=0;si&&(i=e[o]),e[o]1?n-1:0),i=1;i1?n-1:0),i=1;i1?n-1:0),i=1;i1?n-1:0),i=1;ie.length)&&(n=e.length),e.substring(n-t.length,n)===t}var m="",g="",y="",b="",x={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function w(e){var t=Object.keys(e),n=Object.create(Object.getPrototypeOf(e));return t.forEach((function(t){n[t]=e[t]})),Object.defineProperty(n,"message",{value:e.message}),n}function _(e){return h(e,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function k(e,t,n){var i="",a="",o=0,s="",l=!1,c=_(e),u=c.split("\n"),f=_(t).split("\n"),h=0,p="";if("strictEqual"===n&&"object"===d(e)&&"object"===d(t)&&null!==e&&null!==t&&(n="strictEqualObject"),1===u.length&&1===f.length&&u[0]!==f[0]){var w=u[0].length+f[0].length;if(w<=10){if(("object"!==d(e)||null===e)&&("object"!==d(t)||null===t)&&(0!==e||0!==t))return"".concat(x[n],"\n\n")+"".concat(u[0]," !== ").concat(f[0],"\n")}else if("strictEqualObject"!==n&&w<(r.stderr&&r.stderr.isTTY?r.stderr.columns:80)){for(;u[0][h]===f[0][h];)h++;h>2&&(p="\n ".concat(function(e,t){if(t=Math.floor(t),0==e.length||0==t)return"";var n=e.length*t;for(t=Math.floor(Math.log(t)/Math.log(2));t;)e+=e,t--;return e+e.substring(0,n-e.length)}(" ",h),"^"),h=0)}}for(var k=u[u.length-1],S=f[f.length-1];k===S&&(h++<2?s="\n ".concat(k).concat(s):i=k,u.pop(),f.pop(),0!==u.length&&0!==f.length);)k=u[u.length-1],S=f[f.length-1];var T=Math.max(u.length,f.length);if(0===T){var A=c.split("\n");if(A.length>30)for(A[26]="".concat(m,"...").concat(b);A.length>27;)A.pop();return"".concat(x.notIdentical,"\n\n").concat(A.join("\n"),"\n")}h>3&&(s="\n".concat(m,"...").concat(b).concat(s),l=!0),""!==i&&(s="\n ".concat(i).concat(s),i="");var E=0,C=x[n]+"\n".concat(g,"+ actual").concat(b," ").concat(y,"- expected").concat(b),M=" ".concat(m,"...").concat(b," Lines skipped");for(h=0;h1&&h>2&&(O>4?(a+="\n".concat(m,"...").concat(b),l=!0):O>3&&(a+="\n ".concat(f[h-2]),E++),a+="\n ".concat(f[h-1]),E++),o=h,i+="\n".concat(y,"-").concat(b," ").concat(f[h]),E++;else if(f.length1&&h>2&&(O>4?(a+="\n".concat(m,"...").concat(b),l=!0):O>3&&(a+="\n ".concat(u[h-2]),E++),a+="\n ".concat(u[h-1]),E++),o=h,a+="\n".concat(g,"+").concat(b," ").concat(u[h]),E++;else{var P=f[h],L=u[h],I=L!==P&&(!v(L,",")||L.slice(0,-1)!==P);I&&v(P,",")&&P.slice(0,-1)===L&&(I=!1,L+=","),I?(O>1&&h>2&&(O>4?(a+="\n".concat(m,"...").concat(b),l=!0):O>3&&(a+="\n ".concat(u[h-2]),E++),a+="\n ".concat(u[h-1]),E++),o=h,a+="\n".concat(g,"+").concat(b," ").concat(L),i+="\n".concat(y,"-").concat(b," ").concat(P),E+=2):(a+=i,i="",1!==O&&0!==h||(a+="\n ".concat(L),E++))}if(E>20&&h30)for(S[26]="".concat(m,"...").concat(b);S.length>27;)S.pop();n=1===S.length?o(this,f(t).call(this,"".concat(v," ").concat(S[0]))):o(this,f(t).call(this,"".concat(v,"\n\n").concat(S.join("\n"),"\n")))}else{var T=_(c),A="",E=x[a];"notDeepEqual"===a||"notEqual"===a?(T="".concat(x[a],"\n\n").concat(T)).length>1024&&(T="".concat(T.slice(0,1021),"...")):(A="".concat(_(u)),T.length>512&&(T="".concat(T.slice(0,509),"...")),A.length>512&&(A="".concat(A.slice(0,509),"...")),"deepEqual"===a||"equal"===a?T="".concat(E,"\n\n").concat(T,"\n\nshould equal\n\n"):A=" ".concat(a," ").concat(A)),n=o(this,f(t).call(this,"".concat(T).concat(A)))}return Error.stackTraceLimit=h,n.generatedMessage=!i,Object.defineProperty(s(n),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),n.code="ERR_ASSERTION",n.actual=c,n.expected=u,n.operator=a,Error.captureStackTrace&&Error.captureStackTrace(s(n),l),n.stack,n.name="AssertionError",o(n)}var n,l,c;return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(t,e),n=t,l=[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:h.custom,value:function(e,t){return h(this,function(e){for(var t=1;t2?"one of ".concat(t," ").concat(e.slice(0,n-1).join(", "),", or ")+e[n-1]:2===n?"one of ".concat(t," ").concat(e[0]," or ").concat(e[1]):"of ".concat(t," ").concat(e[0])}return"of ".concat(t," ").concat(String(e))}u("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),u("ERR_INVALID_ARG_TYPE",(function(e,t,i){var a,o,l,c;if(void 0===s&&(s=n(32791)),s("string"===typeof e,"'name' must be a string"),"string"===typeof t&&(o="not ",t.substr(!l||l<0?0:+l,o.length)===o)?(a="must not be",t=t.replace(/^not /,"")):a="must be",function(e,t,n){return(void 0===n||n>e.length)&&(n=e.length),e.substring(n-t.length,n)===t}(e," argument"))c="The ".concat(e," ").concat(a," ").concat(f(t,"type"));else{var u=function(e,t,n){return"number"!==typeof n&&(n=0),!(n+t.length>e.length)&&-1!==e.indexOf(t,n)}(e,".")?"property":"argument";c='The "'.concat(e,'" ').concat(u," ").concat(a," ").concat(f(t,"type"))}return c+=". Received type ".concat(r(i))}),TypeError),u("ERR_INVALID_ARG_VALUE",(function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===l&&(l=n(43827));var i=l.inspect(t);return i.length>128&&(i="".concat(i.slice(0,128),"...")),"The argument '".concat(e,"' ").concat(r,". Received ").concat(i)}),TypeError,RangeError),u("ERR_INVALID_RETURN_VALUE",(function(e,t,n){var i;return i=n&&n.constructor&&n.constructor.name?"instance of ".concat(n.constructor.name):"type ".concat(r(n)),"Expected ".concat(e,' to be returned from the "').concat(t,'"')+" function but got ".concat(i,".")}),TypeError),u("ERR_MISSING_ARGS",(function(){for(var e=arguments.length,t=new Array(e),r=0;r0,"At least one arg needs to be specified");var i="The ",a=t.length;switch(t=t.map((function(e){return'"'.concat(e,'"')})),a){case 1:i+="".concat(t[0]," argument");break;case 2:i+="".concat(t[0]," and ").concat(t[1]," arguments");break;default:i+=t.slice(0,a-1).join(", "),i+=", and ".concat(t[a-1]," arguments")}return"".concat(i," must be specified")}),TypeError),e.exports.codes=c},74061:function(e,t,n){"use strict";function r(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=[],r=!0,i=!1,a=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(l){i=!0,a=l}finally{try{r||null==s.return||s.return()}finally{if(i)throw a}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}function i(e){return i="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var a=void 0!==/a/g.flags,o=function(e){var t=[];return e.forEach((function(e){return t.push(e)})),t},s=function(e){var t=[];return e.forEach((function(e,n){return t.push([n,e])})),t},l=Object.is?Object.is:n(64003),c=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},u=Number.isNaN?Number.isNaN:n(15567);function f(e){return e.call.bind(e)}var d=f(Object.prototype.hasOwnProperty),h=f(Object.prototype.propertyIsEnumerable),p=f(Object.prototype.toString),v=n(43827).types,m=v.isAnyArrayBuffer,g=v.isArrayBufferView,y=v.isDate,b=v.isMap,x=v.isRegExp,w=v.isSet,_=v.isNativeError,k=v.isBoxedPrimitive,S=v.isNumberObject,T=v.isStringObject,A=v.isBooleanObject,E=v.isBigIntObject,C=v.isSymbolObject,M=v.isFloat32Array,O=v.isFloat64Array;function P(e){if(0===e.length||e.length>10)return!0;for(var t=0;t57)return!0}return 10===e.length&&e>=Math.pow(2,32)}function L(e){return Object.keys(e).filter(P).concat(c(e).filter(Object.prototype.propertyIsEnumerable.bind(e)))}function I(e,t){if(e===t)return 0;for(var n=e.length,r=t.length,i=0,a=Math.min(n,r);i0?o-4:o;for(n=0;n>16&255,c[u++]=t>>8&255,c[u++]=255&t;return 2===l&&(t=r[e.charCodeAt(n)]<<2|r[e.charCodeAt(n+1)]>>4,c[u++]=255&t),1===l&&(t=r[e.charCodeAt(n)]<<10|r[e.charCodeAt(n+1)]<<4|r[e.charCodeAt(n+2)]>>2,c[u++]=t>>8&255,c[u++]=255&t),c},t.fromByteArray=function(e){for(var t,r=e.length,i=r%3,a=[],o=16383,s=0,c=r-i;sc?c:s+o));return 1===i?(t=e[r-1],a.push(n[t>>2]+n[t<<4&63]+"==")):2===i&&(t=(e[r-2]<<8)+e[r-1],a.push(n[t>>10]+n[t>>4&63]+n[t<<2&63]+"=")),a.join("")};for(var n=[],r=[],i="undefined"!==typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)n[o]=a[o],r[a.charCodeAt(o)]=o;function s(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function l(e,t,r){for(var i,a,o=[],s=t;s>18&63]+n[a>>12&63]+n[a>>6&63]+n[63&a]);return o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},91358:function(e){"use strict";function t(e,t,n,r,i){for(var a=i+1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)>=0?(a=o,i=o-1):r=o+1}return a}function n(e,t,n,r,i){for(var a=i+1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)>0?(a=o,i=o-1):r=o+1}return a}function r(e,t,n,r,i){for(var a=r-1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)<0?(a=o,r=o+1):i=o-1}return a}function i(e,t,n,r,i){for(var a=r-1;r<=i;){var o=r+i>>>1,s=e[o];(void 0!==n?n(s,t):s-t)<=0?(a=o,r=o+1):i=o-1}return a}function a(e,t,n,r,i){for(;r<=i;){var a=r+i>>>1,o=e[a],s=void 0!==n?n(o,t):o-t;if(0===s)return a;s<=0?r=a+1:i=a-1}return-1}function o(e,t,n,r,i,a){return"function"===typeof n?a(e,t,n,void 0===r?0:0|r,void 0===i?e.length-1:0|i):a(e,t,void 0,void 0===n?0:0|n,void 0===r?e.length-1:0|r)}e.exports={ge:function(e,n,r,i,a){return o(e,n,r,i,a,t)},gt:function(e,t,r,i,a){return o(e,t,r,i,a,n)},lt:function(e,t,n,i,a){return o(e,t,n,i,a,r)},le:function(e,t,n,r,a){return o(e,t,n,r,a,i)},eq:function(e,t,n,r,i){return o(e,t,n,r,i,a)}}},13547:function(e,t){"use strict";function n(e){var t=32;return(e&=-e)&&t--,65535&e&&(t-=16),16711935&e&&(t-=8),252645135&e&&(t-=4),858993459&e&&(t-=2),1431655765&e&&(t-=1),t}t.INT_BITS=32,t.INT_MAX=2147483647,t.INT_MIN=-1<<31,t.sign=function(e){return(e>0)-(e<0)},t.abs=function(e){var t=e>>31;return(e^t)-t},t.min=function(e,t){return t^(e^t)&-(e65535)<<4,t|=n=((e>>>=t)>255)<<3,t|=n=((e>>>=n)>15)<<2,(t|=n=((e>>>=n)>3)<<1)|(e>>>=n)>>1},t.log10=function(e){return e>=1e9?9:e>=1e8?8:e>=1e7?7:e>=1e6?6:e>=1e5?5:e>=1e4?4:e>=1e3?3:e>=100?2:e>=10?1:0},t.popCount=function(e){return 16843009*((e=(858993459&(e-=e>>>1&1431655765))+(e>>>2&858993459))+(e>>>4)&252645135)>>>24},t.countTrailingZeros=n,t.nextPow2=function(e){return e+=0===e,--e,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,1+(e|=e>>>16)},t.prevPow2=function(e){return e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,(e|=e>>>16)-(e>>>1)},t.parity=function(e){return e^=e>>>16,e^=e>>>8,e^=e>>>4,27030>>>(e&=15)&1};var r=new Array(256);!function(e){for(var t=0;t<256;++t){var n=t,r=t,i=7;for(n>>>=1;n;n>>>=1)r<<=1,r|=1&n,--i;e[t]=r<>>8&255]<<16|r[e>>>16&255]<<8|r[e>>>24&255]},t.interleave2=function(e,t){return(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))|(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))<<1},t.deinterleave2=function(e,t){return(e=65535&((e=16711935&((e=252645135&((e=858993459&((e=e>>>t&1431655765)|e>>>1))|e>>>2))|e>>>4))|e>>>16))<<16>>16},t.interleave3=function(e,t,n){return e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2),(e|=(t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2))<<1)|(n=1227133513&((n=3272356035&((n=251719695&((n=4278190335&((n&=1023)|n<<16))|n<<8))|n<<4))|n<<2))<<2},t.deinterleave3=function(e,t){return(e=1023&((e=4278190335&((e=251719695&((e=3272356035&((e=e>>>t&1227133513)|e>>>2))|e>>>4))|e>>>8))|e>>>16))<<22>>22},t.nextCombination=function(e){var t=e|e-1;return t+1|(~t&-~t)-1>>>n(e)+1}},44781:function(e,t,n){"use strict";var r=n(53435);e.exports=function(e,t){t||(t={});var n,o,s,l,c,u,f,d,h,p,v,m=null==t.cutoff?.25:t.cutoff,g=null==t.radius?8:t.radius,y=t.channel||0;if(ArrayBuffer.isView(e)||Array.isArray(e)){if(!t.width||!t.height)throw Error("For raw data width and height should be provided by options");n=t.width,o=t.height,l=e,u=t.stride?t.stride:Math.floor(e.length/n/o)}else window.HTMLCanvasElement&&e instanceof window.HTMLCanvasElement?(f=(d=e).getContext("2d"),n=d.width,o=d.height,l=(h=f.getImageData(0,0,n,o)).data,u=4):window.CanvasRenderingContext2D&&e instanceof window.CanvasRenderingContext2D?(f=e,n=(d=e.canvas).width,o=d.height,l=(h=f.getImageData(0,0,n,o)).data,u=4):window.ImageData&&e instanceof window.ImageData&&(h=e,n=e.width,o=e.height,l=h.data,u=4);if(s=Math.max(n,o),window.Uint8ClampedArray&&l instanceof window.Uint8ClampedArray||window.Uint8Array&&l instanceof window.Uint8Array)for(c=l,l=Array(n*o),p=0,v=c.length;p-1?i(n):n}},68222:function(e,t,n){"use strict";var r=n(77575),i=n(68318),a=i("%Function.prototype.apply%"),o=i("%Function.prototype.call%"),s=i("%Reflect.apply%",!0)||r.call(o,a),l=i("%Object.getOwnPropertyDescriptor%",!0),c=i("%Object.defineProperty%",!0),u=i("%Math.max%");if(c)try{c({},"a",{value:1})}catch(d){c=null}e.exports=function(e){var t=s(r,o,arguments);return l&&c&&l(t,"length").configurable&&c(t,"length",{value:1+u(0,e.length-(arguments.length-1))}),t};var f=function(){return s(r,a,arguments)};c?c(e.exports,"apply",{value:f}):e.exports.apply=f},53435:function(e){e.exports=function(e,t,n){return tn?n:e:et?t:e}},6475:function(e,t,n){"use strict";var r=n(53435);function i(e,t){null==t&&(t=!0);var n=e[0],i=e[1],a=e[2],o=e[3];return null==o&&(o=t?1:255),t&&(n*=255,i*=255,a*=255,o*=255),16777216*(n=255&r(n,0,255))+((i=255&r(i,0,255))<<16)+((a=255&r(a,0,255))<<8)+(o=255&r(o,0,255))}e.exports=i,e.exports.to=i,e.exports.from=function(e,t){var n=(e=+e)>>>24,r=(16711680&e)>>>16,i=(65280&e)>>>8,a=255&e;return!1===t?[n,r,i,a]:[n/255,r/255,i/255,a/255]}},76857:function(e){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},25075:function(e,t,n){"use strict";var r=n(36652),i=n(53435),a=n(90660);e.exports=function(e,t){"float"!==t&&t||(t="array"),"uint"===t&&(t="uint8"),"uint_clamped"===t&&(t="uint8_clamped");var n=new(a(t))(4),o="uint8"!==t&&"uint8_clamped"!==t;return e.length&&"string"!==typeof e||((e=r(e))[0]/=255,e[1]/=255,e[2]/=255),function(e){return e instanceof Uint8Array||e instanceof Uint8ClampedArray||!!(Array.isArray(e)&&(e[0]>1||0===e[0])&&(e[1]>1||0===e[1])&&(e[2]>1||0===e[2])&&(!e[3]||e[3]>1))}(e)?(n[0]=e[0],n[1]=e[1],n[2]=e[2],n[3]=null!=e[3]?e[3]:255,o&&(n[0]/=255,n[1]/=255,n[2]/=255,n[3]/=255),n):(o?(n[0]=e[0],n[1]=e[1],n[2]=e[2],n[3]=null!=e[3]?e[3]:1):(n[0]=i(Math.floor(255*e[0]),0,255),n[1]=i(Math.floor(255*e[1]),0,255),n[2]=i(Math.floor(255*e[2]),0,255),n[3]=null==e[3]?255:i(Math.floor(255*e[3]),0,255)),n)}},90736:function(e,t,n){"use strict";var r=n(76857),i=n(10973),a=n(46775);e.exports=function(e){var t,s,l=[],c=1;if("string"===typeof e)if(r[e])l=r[e].slice(),s="rgb";else if("transparent"===e)c=0,s="rgb",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(e)){var u=e.slice(1);c=1,(h=u.length)<=4?(l=[parseInt(u[0]+u[0],16),parseInt(u[1]+u[1],16),parseInt(u[2]+u[2],16)],4===h&&(c=parseInt(u[3]+u[3],16)/255)):(l=[parseInt(u[0]+u[1],16),parseInt(u[2]+u[3],16),parseInt(u[4]+u[5],16)],8===h&&(c=parseInt(u[6]+u[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s="rgb"}else if(t=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\s*\(([^\)]*)\)/.exec(e)){var f=t[1],d="rgb"===f;s=u=f.replace(/a$/,"");var h="cmyk"===u?4:"gray"===u?1:3;l=t[2].trim().split(/\s*,\s*/).map((function(e,t){if(/%$/.test(e))return t===h?parseFloat(e)/100:"rgb"===u?255*parseFloat(e)/100:parseFloat(e);if("h"===u[t]){if(/deg$/.test(e))return parseFloat(e);if(void 0!==o[e])return o[e]}return parseFloat(e)})),f===u&&l.push(1),c=d||void 0===l[h]?1:l[h],l=l.slice(0,h)}else e.length>10&&/[0-9](?:\s|\/)/.test(e)&&(l=e.match(/([0-9]+)/g).map((function(e){return parseFloat(e)})),s=e.match(/([a-z])/gi).join("").toLowerCase());else if(isNaN(e))if(i(e)){var p=a(e.r,e.red,e.R,null);null!==p?(s="rgb",l=[p,a(e.g,e.green,e.G),a(e.b,e.blue,e.B)]):(s="hsl",l=[a(e.h,e.hue,e.H),a(e.s,e.saturation,e.S),a(e.l,e.lightness,e.L,e.b,e.brightness)]),c=a(e.a,e.alpha,e.opacity,1),null!=e.opacity&&(c/=100)}else(Array.isArray(e)||n.g.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(e))&&(l=[e[0],e[1],e[2]],s="rgb",c=4===e.length?e[3]:1);else s="rgb",l=[e>>>16,(65280&e)>>>8,255&e];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}},36652:function(e,t,n){"use strict";var r=n(90736),i=n(80009),a=n(53435);e.exports=function(e){var t,n=r(e);return n.space?((t=Array(3))[0]=a(n.values[0],0,255),t[1]=a(n.values[1],0,255),t[2]=a(n.values[2],0,255),"h"===n.space[0]&&(t=i.rgb(t)),t.push(a(n.alpha,0,1)),t):[]}},80009:function(e,t,n){"use strict";var r=n(6866);e.exports={name:"hsl",min:[0,0,0],max:[360,100,100],channel:["hue","saturation","lightness"],alias:["HSL"],rgb:function(e){var t,n,r,i,a,o=e[0]/360,s=e[1]/100,l=e[2]/100;if(0===s)return[a=255*l,a,a];t=2*l-(n=l<.5?l*(1+s):l+s-l*s),i=[0,0,0];for(var c=0;c<3;c++)(r=o+1/3*-(c-1))<0?r++:r>1&&r--,a=6*r<1?t+6*(n-t)*r:2*r<1?n:3*r<2?t+(n-t)*(2/3-r)*6:t,i[c]=255*a;return i}},r.hsl=function(e){var t,n,r=e[0]/255,i=e[1]/255,a=e[2]/255,o=Math.min(r,i,a),s=Math.max(r,i,a),l=s-o;return s===o?t=0:r===s?t=(i-a)/l:i===s?t=2+(a-r)/l:a===s&&(t=4+(r-i)/l),(t=Math.min(60*t,360))<0&&(t+=360),n=(o+s)/2,[t,100*(s===o?0:n<=.5?l/(s+o):l/(2-s-o)),100*n]}},6866:function(e){"use strict";e.exports={name:"rgb",min:[0,0,0],max:[255,255,255],channel:["red","green","blue"],alias:["RGB"]}},24138:function(e){e.exports={AFG:"afghan",ALA:"\\b\\wland",ALB:"albania",DZA:"algeria",ASM:"^(?=.*americ).*samoa",AND:"andorra",AGO:"angola",AIA:"anguill?a",ATA:"antarctica",ATG:"antigua",ARG:"argentin",ARM:"armenia",ABW:"^(?!.*bonaire).*\\baruba",AUS:"australia",AUT:"^(?!.*hungary).*austria|\\baustri.*\\bemp",AZE:"azerbaijan",BHS:"bahamas",BHR:"bahrain",BGD:"bangladesh|^(?=.*east).*paki?stan",BRB:"barbados",BLR:"belarus|byelo",BEL:"^(?!.*luxem).*belgium",BLZ:"belize|^(?=.*british).*honduras",BEN:"benin|dahome",BMU:"bermuda",BTN:"bhutan",BOL:"bolivia",BES:"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\bbes.?islands",BIH:"herzegovina|bosnia",BWA:"botswana|bechuana",BVT:"bouvet",BRA:"brazil",IOT:"british.?indian.?ocean",BRN:"brunei",BGR:"bulgaria",BFA:"burkina|\\bfaso|upper.?volta",BDI:"burundi",CPV:"verde",KHM:"cambodia|kampuchea|khmer",CMR:"cameroon",CAN:"canada",CYM:"cayman",CAF:"\\bcentral.african.republic",TCD:"\\bchad",CHL:"\\bchile",CHN:"^(?!.*\\bmac)(?!.*\\bhong)(?!.*\\btai)(?!.*\\brep).*china|^(?=.*peo)(?=.*rep).*china",CXR:"christmas",CCK:"\\bcocos|keeling",COL:"colombia",COM:"comoro",COG:"^(?!.*\\bdem)(?!.*\\bd[\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\bcongo",COK:"\\bcook",CRI:"costa.?rica",CIV:"ivoire|ivory",HRV:"croatia",CUB:"\\bcuba",CUW:"^(?!.*bonaire).*\\bcura(c|\xe7)ao",CYP:"cyprus",CSK:"czechoslovakia",CZE:"^(?=.*rep).*czech|czechia|bohemia",COD:"\\bdem.*congo|congo.*\\bdem|congo.*\\bd[\\.]?r|\\bd[\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc",DNK:"denmark",DJI:"djibouti",DMA:"dominica(?!n)",DOM:"dominican.rep",ECU:"ecuador",EGY:"egypt",SLV:"el.?salvador",GNQ:"guine.*eq|eq.*guine|^(?=.*span).*guinea",ERI:"eritrea",EST:"estonia",ETH:"ethiopia|abyssinia",FLK:"falkland|malvinas",FRO:"faroe|faeroe",FJI:"fiji",FIN:"finland",FRA:"^(?!.*\\bdep)(?!.*martinique).*france|french.?republic|\\bgaul",GUF:"^(?=.*french).*guiana",PYF:"french.?polynesia|tahiti",ATF:"french.?southern",GAB:"gabon",GMB:"gambia",GEO:"^(?!.*south).*georgia",DDR:"german.?democratic.?republic|democratic.?republic.*germany|east.germany",DEU:"^(?!.*east).*germany|^(?=.*\\bfed.*\\brep).*german",GHA:"ghana|gold.?coast",GIB:"gibraltar",GRC:"greece|hellenic|hellas",GRL:"greenland",GRD:"grenada",GLP:"guadeloupe",GUM:"\\bguam",GTM:"guatemala",GGY:"guernsey",GIN:"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea",GNB:"bissau|^(?=.*portu).*guinea",GUY:"guyana|british.?guiana",HTI:"haiti",HMD:"heard.*mcdonald",VAT:"holy.?see|vatican|papal.?st",HND:"^(?!.*brit).*honduras",HKG:"hong.?kong",HUN:"^(?!.*austr).*hungary",ISL:"iceland",IND:"india(?!.*ocea)",IDN:"indonesia",IRN:"\\biran|persia",IRQ:"\\biraq|mesopotamia",IRL:"(^ireland)|(^republic.*ireland)",IMN:"^(?=.*isle).*\\bman",ISR:"israel",ITA:"italy",JAM:"jamaica",JPN:"japan",JEY:"jersey",JOR:"jordan",KAZ:"kazak",KEN:"kenya|british.?east.?africa|east.?africa.?prot",KIR:"kiribati",PRK:"^(?=.*democrat|people|north|d.*p.*.r).*\\bkorea|dprk|korea.*(d.*p.*r)",KWT:"kuwait",KGZ:"kyrgyz|kirghiz",LAO:"\\blaos?\\b",LVA:"latvia",LBN:"lebanon",LSO:"lesotho|basuto",LBR:"liberia",LBY:"libya",LIE:"liechtenstein",LTU:"lithuania",LUX:"^(?!.*belg).*luxem",MAC:"maca(o|u)",MDG:"madagascar|malagasy",MWI:"malawi|nyasa",MYS:"malaysia",MDV:"maldive",MLI:"\\bmali\\b",MLT:"\\bmalta",MHL:"marshall",MTQ:"martinique",MRT:"mauritania",MUS:"mauritius",MYT:"\\bmayotte",MEX:"\\bmexic",FSM:"fed.*micronesia|micronesia.*fed",MCO:"monaco",MNG:"mongolia",MNE:"^(?!.*serbia).*montenegro",MSR:"montserrat",MAR:"morocco|\\bmaroc",MOZ:"mozambique",MMR:"myanmar|burma",NAM:"namibia",NRU:"nauru",NPL:"nepal",NLD:"^(?!.*\\bant)(?!.*\\bcarib).*netherlands",ANT:"^(?=.*\\bant).*(nether|dutch)",NCL:"new.?caledonia",NZL:"new.?zealand",NIC:"nicaragua",NER:"\\bniger(?!ia)",NGA:"nigeria",NIU:"niue",NFK:"norfolk",MNP:"mariana",NOR:"norway",OMN:"\\boman|trucial",PAK:"^(?!.*east).*paki?stan",PLW:"palau",PSE:"palestin|\\bgaza|west.?bank",PAN:"panama",PNG:"papua|new.?guinea",PRY:"paraguay",PER:"peru",PHL:"philippines",PCN:"pitcairn",POL:"poland",PRT:"portugal",PRI:"puerto.?rico",QAT:"qatar",KOR:"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\bkorea(?!.*d.*p.*r)",MDA:"moldov|b(a|e)ssarabia",REU:"r(e|\xe9)union",ROU:"r(o|u|ou)mania",RUS:"\\brussia|soviet.?union|u\\.?s\\.?s\\.?r|socialist.?republics",RWA:"rwanda",BLM:"barth(e|\xe9)lemy",SHN:"helena",KNA:"kitts|\\bnevis",LCA:"\\blucia",MAF:"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)",SPM:"miquelon",VCT:"vincent",WSM:"^(?!.*amer).*samoa",SMR:"san.?marino",STP:"\\bs(a|\xe3)o.?tom(e|\xe9)",SAU:"\\bsa\\w*.?arabia",SEN:"senegal",SRB:"^(?!.*monte).*serbia",SYC:"seychell",SLE:"sierra",SGP:"singapore",SXM:"^(?!.*martin)(?!.*saba).*maarten",SVK:"^(?!.*cze).*slovak",SVN:"slovenia",SLB:"solomon",SOM:"somali",ZAF:"south.africa|s\\\\..?africa",SGS:"south.?georgia|sandwich",SSD:"\\bs\\w*.?sudan",ESP:"spain",LKA:"sri.?lanka|ceylon",SDN:"^(?!.*\\bs(?!u)).*sudan",SUR:"surinam|dutch.?guiana",SJM:"svalbard",SWZ:"swaziland",SWE:"sweden",CHE:"switz|swiss",SYR:"syria",TWN:"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china",TJK:"tajik",THA:"thailand|\\bsiam",MKD:"macedonia|fyrom",TLS:"^(?=.*leste).*timor|^(?=.*east).*timor",TGO:"togo",TKL:"tokelau",TON:"tonga",TTO:"trinidad|tobago",TUN:"tunisia",TUR:"turkey",TKM:"turkmen",TCA:"turks",TUV:"tuvalu",UGA:"uganda",UKR:"ukrain",ARE:"emirates|^u\\.?a\\.?e\\.?$|united.?arab.?em",GBR:"united.?kingdom|britain|^u\\.?k\\.?$",TZA:"tanzania",USA:"united.?states\\b(?!.*islands)|\\bu\\.?s\\.?a\\.?\\b|^\\s*u\\.?s\\.?\\b(?!.*islands)",UMI:"minor.?outlying.?is",URY:"uruguay",UZB:"uzbek",VUT:"vanuatu|new.?hebrides",VEN:"venezuela",VNM:"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam",VGB:"^(?=.*\\bu\\.?\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin",VIR:"^(?=.*\\bu\\.?\\s?s).*virgin|^(?=.*states).*virgin",WLF:"futuna|wallis",ESH:"western.sahara",YEM:"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\bp\\.?d\\.?r).*yemen",YMD:"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\bp\\.?d\\.?r).*yemen",YUG:"yugoslavia",ZMB:"zambia|northern.?rhodesia",EAZ:"zanzibar",ZWE:"zimbabwe|^(?!.*northern).*rhodesia"}},72791:function(e,t,n){"use strict";e.exports={parse:n(41004),stringify:n(53313)}},63625:function(e,t,n){"use strict";var r=n(40402);e.exports={isSize:function(e){return/^[\d\.]/.test(e)||-1!==e.indexOf("/")||-1!==r.indexOf(e)}}},41004:function(e,t,n){"use strict";var r=n(90448),i=n(38732),a=n(41901),o=n(15659),s=n(96209),l=n(83794),c=n(99011),u=n(63625).isSize;e.exports=d;var f=d.cache={};function d(e){if("string"!==typeof e)throw new Error("Font argument must be a string.");if(f[e])return f[e];if(""===e)throw new Error("Cannot parse an empty string.");if(-1!==a.indexOf(e))return f[e]={system:e};for(var t,n={style:"normal",variant:"normal",weight:"normal",stretch:"normal",lineHeight:"normal",size:"1rem",family:["serif"]},d=c(e,/\s+/);t=d.shift();){if(-1!==i.indexOf(t))return["style","variant","weight","stretch"].forEach((function(e){n[e]=t})),f[e]=n;if(-1===s.indexOf(t))if("normal"!==t&&"small-caps"!==t)if(-1===l.indexOf(t)){if(-1===o.indexOf(t)){if(u(t)){var p=c(t,"/");if(n.size=p[0],null!=p[1]?n.lineHeight=h(p[1]):"/"===d[0]&&(d.shift(),n.lineHeight=h(d.shift())),!d.length)throw new Error("Missing required font-family.");return n.family=c(d.join(" "),/\s*,\s*/).map(r),f[e]=n}throw new Error("Unknown or unsupported font token: "+t)}n.weight=t}else n.stretch=t;else n.variant=t;else n.style=t}throw new Error("Missing required font-size.")}function h(e){var t=parseFloat(e);return t.toString()===e?t:e}},53313:function(e,t,n){"use strict";var r=n(71299),i=n(63625).isSize,a=v(n(38732)),o=v(n(41901)),s=v(n(15659)),l=v(n(96209)),c=v(n(83794)),u={normal:1,"small-caps":1},f={serif:1,"sans-serif":1,monospace:1,cursive:1,fantasy:1,"system-ui":1},d="1rem",h="serif";function p(e,t){if(e&&!t[e]&&!a[e])throw Error("Unknown keyword `"+e+"`");return e}function v(e){for(var t={},n=0;nt?1:e>=t?0:NaN}n.d(t,{j2:function(){return r},Fp:function(){return o},J6:function(){return l},TS:function(){return c},VV:function(){return u},w6:function(){return f},Sm:function(){return d}});var i=function(e){var t;return 1===e.length&&(t=e,e=function(e,n){return r(t(e),n)}),{left:function(t,n,r,i){for(null==r&&(r=0),null==i&&(i=t.length);r>>1;e(t[a],n)<0?r=a+1:i=a}return r},right:function(t,n,r,i){for(null==r&&(r=0),null==i&&(i=t.length);r>>1;e(t[a],n)>0?i=a:r=a+1}return r}}}(r),a=(i.right,i.left,Array.prototype);function o(e,t){var n,r,i=e.length,a=-1;if(null==t){for(;++a=n)for(r=n;++ar&&(r=n)}else for(;++a=n)for(r=n;++ar&&(r=n);return r}function s(e){return null===e?NaN:+e}function l(e,t){var n,r=e.length,i=r,a=-1,o=0;if(null==t)for(;++a=0;)for(t=(r=e[i]).length;--t>=0;)n[--o]=r[t];return n}function u(e,t){var n,r,i=e.length,a=-1;if(null==t){for(;++a=n)for(r=n;++an&&(r=n)}else for(;++a=n)for(r=n;++an&&(r=n);return r}function f(e,t,n){e=+e,t=+t,n=(i=arguments.length)<2?(t=e,e=0,1):i<3?1:+n;for(var r=-1,i=0|Math.max(0,Math.ceil((t-e)/n)),a=new Array(i);++r=r.length)return null!=e&&n.sort(e),null!=t?t(n):n;for(var c,u,f,d=-1,h=n.length,p=r[i++],v=o(),m=s();++dr.length)return e;var a,o=i[n-1];return null!=t&&n>=r.length?a=e.entries():(a=[],e.each((function(e,t){a.push({key:t,values:s(e,n)})}))),null!=o?a.sort((function(e,t){return o(e.key,t.key)})):a}return n={object:function(e){return a(e,0,l,c)},map:function(e){return a(e,0,u,f)},entries:function(e){return s(a(e,0,u,f),0)},key:function(e){return r.push(e),n},sortKeys:function(e){return i[r.length-1]=e,n},sortValues:function(t){return e=t,n},rollup:function(e){return t=e,n}}}function l(){return{}}function c(e,t,n){e[t]=n}function u(){return o()}function f(e,t,n){e.set(t,n)}function d(){}var h=o.prototype;d.prototype=function(e,t){var n=new d;if(e instanceof d)e.each((function(e){n.add(e)}));else if(e){var r=-1,i=e.length;if(null==t)for(;++r=(a=(v+g)/2))?v=a:g=a,(u=n>=(o=(m+y)/2))?m=o:y=o,i=h,!(h=h[f=u<<1|c]))return i[f]=p,e;if(s=+e._x.call(null,h.data),l=+e._y.call(null,h.data),t===s&&n===l)return p.next=h,i?i[f]=p:e._root=p,e;do{i=i?i[f]=new Array(4):e._root=new Array(4),(c=t>=(a=(v+g)/2))?v=a:g=a,(u=n>=(o=(m+y)/2))?m=o:y=o}while((f=u<<1|c)===(d=(l>=o)<<1|s>=a));return i[d]=h,i[f]=p,e}function s(e,t,n,r,i){this.node=e,this.x0=t,this.y0=n,this.x1=r,this.y1=i}function l(e){return e[0]}function c(e){return e[1]}function u(e,t,n){var r=new f(null==t?l:t,null==n?c:n,NaN,NaN,NaN,NaN);return null==e?r:r.addAll(e)}function f(e,t,n,r,i,a){this._x=e,this._y=t,this._x0=n,this._y0=r,this._x1=i,this._y1=a,this._root=void 0}function d(e){for(var t={data:e.data},n=t;e=e.next;)n=n.next={data:e.data};return t}n.r(t),n.d(t,{forceCenter:function(){return r},forceCollide:function(){return m},forceLink:function(){return x},forceManyBody:function(){return K},forceRadial:function(){return X},forceSimulation:function(){return Y},forceX:function(){return J},forceY:function(){return Q}});var h=u.prototype=f.prototype;function p(e){return e.x+e.vx}function v(e){return e.y+e.vy}function m(e){var t,n,r=1,o=1;function s(){for(var e,i,s,c,f,d,h,m=t.length,g=0;gc+p||if+p||os.index){var v=c-l.x-l.vx,m=f-l.y-l.vy,g=v*v+m*m;ge.r&&(e.r=e[t].r)}function c(){if(t){var r,i,a=t.length;for(n=new Array(a),r=0;rf&&(f=r),id&&(d=i));if(c>f||u>d)return this;for(this.cover(c,u).cover(f,d),n=0;ne||e>=i||r>t||t>=a;)switch(s=(th||(a=c.y0)>p||(o=c.x1)=y)<<1|e>=g)&&(c=v[v.length-1],v[v.length-1]=v[v.length-1-u],v[v.length-1-u]=c)}else{var b=e-+this._x.call(null,m.data),x=t-+this._y.call(null,m.data),w=b*b+x*x;if(w=(s=(p+m)/2))?p=s:m=s,(u=o>=(l=(v+g)/2))?v=l:g=l,t=h,!(h=h[f=u<<1|c]))return this;if(!h.length)break;(t[f+1&3]||t[f+2&3]||t[f+3&3])&&(n=t,d=f)}for(;h.data!==e;)if(r=h,!(h=h.next))return this;return(i=h.next)&&delete h.next,r?(i?r.next=i:delete r.next,this):t?(i?t[f]=i:delete t[f],(h=t[0]||t[1]||t[2]||t[3])&&h===(t[3]||t[2]||t[1]||t[0])&&!h.length&&(n?n[d]=h:this._root=h),this):(this._root=i,this)},h.removeAll=function(e){for(var t=0,n=e.length;t=0&&(t=e.slice(n+1),e=e.slice(0,n)),e&&!r.hasOwnProperty(e))throw new Error("unknown type: "+e);return{type:e,name:t}}))),o=-1,s=a.length;if(!(arguments.length<2)){if(null!=t&&"function"!==typeof t)throw new Error("invalid callback: "+t);for(;++o0)for(var n,r,i=new Array(n),a=0;a=0&&t._call.call(null,e),t=t._next;--M}()}finally{M=0,function(){for(var e,t,n=A,r=1/0;n;)n._call?(r>n._time&&(r=n._time),e=n,n=n._next):(t=n._next,n._next=null,n=e?e._next=t:A=t);E=e,V(r)}(),R=0}}function $(){var e=F.now(),t=e-I;t>L&&(D-=t,I=e)}function V(e){M||(O&&(O=clearTimeout(O)),e-R>24?(e<1/0&&(O=setTimeout(H,e-F.now()-D)),P&&(P=clearInterval(P))):(P||(I=F.now(),P=setInterval($,L)),M=1,N(H)))}function W(e){return e.x}function q(e){return e.y}B.prototype=U.prototype={constructor:B,restart:function(e,t,n){if("function"!==typeof e)throw new TypeError("callback is not a function");n=(null==n?z():+n)+(null==t?0:+t),this._next||E===this||(E?E._next=this:A=this,E=this),this._call=e,this._time=n,V()},stop:function(){this._call&&(this._call=null,this._time=1/0,V())}};var G=10,Z=Math.PI*(3-Math.sqrt(5));function Y(e){var t,n=1,r=.001,i=1-Math.pow(r,1/300),a=0,o=.6,s=(0,g.UI)(),l=U(u),c=C("tick","end");function u(){f(),c.call("tick",t),n1?(null==n?s.remove(e):s.set(e,h(n)),t):s.get(e)},find:function(t,n,r){var i,a,o,s,l,c=0,u=e.length;for(null==r?r=1/0:r*=r,c=0;c1?(c.on(e,n),t):c.on(e)}}}function K(){var e,t,n,r,o=i(-30),s=1,l=1/0,c=.81;function f(r){var i,a=e.length,o=u(e,W,q).visitAfter(h);for(n=r,i=0;i=l)){(e.data!==t||e.next)&&(0===f&&(p+=(f=a())*f),0===d&&(p+=(d=a())*d),p1?r[0]+r.slice(2):r,+e.slice(n+1)]}n.d(t,{WU:function(){return d},FF:function(){return v}});var i,a=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function o(e){if(!(t=a.exec(e)))throw new Error("invalid format: "+e);var t;return new s({fill:t[1],align:t[2],sign:t[3],symbol:t[4],zero:t[5],width:t[6],comma:t[7],precision:t[8]&&t[8].slice(1),trim:t[9],type:t[10]})}function s(e){this.fill=void 0===e.fill?" ":e.fill+"",this.align=void 0===e.align?">":e.align+"",this.sign=void 0===e.sign?"-":e.sign+"",this.symbol=void 0===e.symbol?"":e.symbol+"",this.zero=!!e.zero,this.width=void 0===e.width?void 0:+e.width,this.comma=!!e.comma,this.precision=void 0===e.precision?void 0:+e.precision,this.trim=!!e.trim,this.type=void 0===e.type?"":e.type+""}function l(e,t){var n=r(e,t);if(!n)return e+"";var i=n[0],a=n[1];return a<0?"0."+new Array(-a).join("0")+i:i.length>a+1?i.slice(0,a+1)+"."+i.slice(a+1):i+new Array(a-i.length+2).join("0")}o.prototype=s.prototype,s.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var c={"%":function(e,t){return(100*e).toFixed(t)},b:function(e){return Math.round(e).toString(2)},c:function(e){return e+""},d:function(e){return Math.abs(e=Math.round(e))>=1e21?e.toLocaleString("en").replace(/,/g,""):e.toString(10)},e:function(e,t){return e.toExponential(t)},f:function(e,t){return e.toFixed(t)},g:function(e,t){return e.toPrecision(t)},o:function(e){return Math.round(e).toString(8)},p:function(e,t){return l(100*e,t)},r:l,s:function(e,t){var n=r(e,t);if(!n)return e+"";var a=n[0],o=n[1],s=o-(i=3*Math.max(-8,Math.min(8,Math.floor(o/3))))+1,l=a.length;return s===l?a:s>l?a+new Array(s-l+1).join("0"):s>0?a.slice(0,s)+"."+a.slice(s):"0."+new Array(1-s).join("0")+r(e,Math.max(0,t+s-1))[0]},X:function(e){return Math.round(e).toString(16).toUpperCase()},x:function(e){return Math.round(e).toString(16)}};function u(e){return e}var f,d,h=Array.prototype.map,p=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function v(e){var t,n,a=void 0===e.grouping||void 0===e.thousands?u:(t=h.call(e.grouping,Number),n=e.thousands+"",function(e,r){for(var i=e.length,a=[],o=0,s=t[0],l=0;i>0&&s>0&&(l+s+1>r&&(s=Math.max(1,r-l)),a.push(e.substring(i-=s,i+s)),!((l+=s+1)>r));)s=t[o=(o+1)%t.length];return a.reverse().join(n)}),s=void 0===e.currency?"":e.currency[0]+"",l=void 0===e.currency?"":e.currency[1]+"",f=void 0===e.decimal?".":e.decimal+"",d=void 0===e.numerals?u:function(e){return function(t){return t.replace(/[0-9]/g,(function(t){return e[+t]}))}}(h.call(e.numerals,String)),v=void 0===e.percent?"%":e.percent+"",m=void 0===e.minus?"-":e.minus+"",g=void 0===e.nan?"NaN":e.nan+"";function y(e){var t=(e=o(e)).fill,n=e.align,r=e.sign,u=e.symbol,h=e.zero,y=e.width,b=e.comma,x=e.precision,w=e.trim,_=e.type;"n"===_?(b=!0,_="g"):c[_]||(void 0===x&&(x=12),w=!0,_="g"),(h||"0"===t&&"="===n)&&(h=!0,t="0",n="=");var k="$"===u?s:"#"===u&&/[boxX]/.test(_)?"0"+_.toLowerCase():"",S="$"===u?l:/[%p]/.test(_)?v:"",T=c[_],A=/[defgprs%]/.test(_);function E(e){var o,s,l,c=k,u=S;if("c"===_)u=T(e)+u,e="";else{var v=(e=+e)<0||1/e<0;if(e=isNaN(e)?g:T(Math.abs(e),x),w&&(e=function(e){e:for(var t,n=e.length,r=1,i=-1;r0&&(i=0)}return i>0?e.slice(0,i)+e.slice(t+1):e}(e)),v&&0===+e&&"+"!==r&&(v=!1),c=(v?"("===r?r:m:"-"===r||"("===r?"":r)+c,u=("s"===_?p[8+i/3]:"")+u+(v&&"("===r?")":""),A)for(o=-1,s=e.length;++o(l=e.charCodeAt(o))||l>57){u=(46===l?f+e.slice(o+1):e.slice(o))+u,e=e.slice(0,o);break}}b&&!h&&(e=a(e,1/0));var E=c.length+e.length+u.length,C=E>1)+c+e+u+C.slice(E);break;default:e=C+c+e+u}return d(e)}return x=void 0===x?6:/[gprs]/.test(_)?Math.max(1,Math.min(21,x)):Math.max(0,Math.min(20,x)),E.toString=function(){return e+""},E}return{format:y,formatPrefix:function(e,t){var n,i=y(((e=o(e)).type="f",e)),a=3*Math.max(-8,Math.min(8,Math.floor((n=t,((n=r(Math.abs(n)))?n[1]:NaN)/3)))),s=Math.pow(10,-a),l=p[8+a/3];return function(e){return i(s*e)+l}}}}f=v({decimal:".",thousands:",",grouping:[3],currency:["$",""],minus:"-"}),d=f.format,f.formatPrefix},65704:function(e,t,n){"use strict";n.r(t),n.d(t,{geoAiry:function(){return D},geoAiryRaw:function(){return R},geoAitoff:function(){return N},geoAitoffRaw:function(){return F},geoArmadillo:function(){return j},geoArmadilloRaw:function(){return z},geoAugust:function(){return U},geoAugustRaw:function(){return B},geoBaker:function(){return W},geoBakerRaw:function(){return V},geoBerghaus:function(){return Z},geoBerghausRaw:function(){return G},geoBertin1953:function(){return ne},geoBertin1953Raw:function(){return te},geoBoggs:function(){return ue},geoBoggsRaw:function(){return ce},geoBonne:function(){return ve},geoBonneRaw:function(){return pe},geoBottomley:function(){return ge},geoBottomleyRaw:function(){return me},geoBromley:function(){return be},geoBromleyRaw:function(){return ye},geoChamberlin:function(){return Ce},geoChamberlinAfrica:function(){return Ee},geoChamberlinRaw:function(){return Te},geoCollignon:function(){return Oe},geoCollignonRaw:function(){return Me},geoCraig:function(){return Le},geoCraigRaw:function(){return Pe},geoCraster:function(){return De},geoCrasterRaw:function(){return Re},geoCylindricalEqualArea:function(){return Ne},geoCylindricalEqualAreaRaw:function(){return Fe},geoCylindricalStereographic:function(){return je},geoCylindricalStereographicRaw:function(){return ze},geoEckert1:function(){return Ue},geoEckert1Raw:function(){return Be},geoEckert2:function(){return $e},geoEckert2Raw:function(){return He},geoEckert3:function(){return We},geoEckert3Raw:function(){return Ve},geoEckert4:function(){return Ge},geoEckert4Raw:function(){return qe},geoEckert5:function(){return Ye},geoEckert5Raw:function(){return Ze},geoEckert6:function(){return Xe},geoEckert6Raw:function(){return Ke},geoEisenlohr:function(){return et},geoEisenlohrRaw:function(){return Qe},geoFahey:function(){return rt},geoFaheyRaw:function(){return nt},geoFoucaut:function(){return at},geoFoucautRaw:function(){return it},geoFoucautSinusoidal:function(){return st},geoFoucautSinusoidalRaw:function(){return ot},geoGilbert:function(){return dt},geoGingery:function(){return mt},geoGingeryRaw:function(){return ht},geoGinzburg4:function(){return bt},geoGinzburg4Raw:function(){return yt},geoGinzburg5:function(){return wt},geoGinzburg5Raw:function(){return xt},geoGinzburg6:function(){return kt},geoGinzburg6Raw:function(){return _t},geoGinzburg8:function(){return Tt},geoGinzburg8Raw:function(){return St},geoGinzburg9:function(){return Et},geoGinzburg9Raw:function(){return At},geoGringorten:function(){return Ot},geoGringortenQuincuncial:function(){return ai},geoGringortenRaw:function(){return Mt},geoGuyou:function(){return Rt},geoGuyouRaw:function(){return It},geoHammer:function(){return J},geoHammerRaw:function(){return K},geoHammerRetroazimuthal:function(){return zt},geoHammerRetroazimuthalRaw:function(){return Ft},geoHealpix:function(){return Gt},geoHealpixRaw:function(){return $t},geoHill:function(){return Yt},geoHillRaw:function(){return Zt},geoHomolosine:function(){return tn},geoHomolosineRaw:function(){return en},geoHufnagel:function(){return rn},geoHufnagelRaw:function(){return nn},geoHyperelliptical:function(){return ln},geoHyperellipticalRaw:function(){return sn},geoInterrupt:function(){return fn},geoInterruptedBoggs:function(){return hn},geoInterruptedHomolosine:function(){return vn},geoInterruptedMollweide:function(){return gn},geoInterruptedMollweideHemispheres:function(){return bn},geoInterruptedQuarticAuthalic:function(){return fr},geoInterruptedSinuMollweide:function(){return wn},geoInterruptedSinusoidal:function(){return kn},geoKavrayskiy7:function(){return Tn},geoKavrayskiy7Raw:function(){return Sn},geoLagrange:function(){return En},geoLagrangeRaw:function(){return An},geoLarrivee:function(){return On},geoLarriveeRaw:function(){return Mn},geoLaskowski:function(){return Ln},geoLaskowskiRaw:function(){return Pn},geoLittrow:function(){return Rn},geoLittrowRaw:function(){return In},geoLoximuthal:function(){return Fn},geoLoximuthalRaw:function(){return Dn},geoMiller:function(){return zn},geoMillerRaw:function(){return Nn},geoModifiedStereographic:function(){return Kn},geoModifiedStereographicAlaska:function(){return Wn},geoModifiedStereographicGs48:function(){return qn},geoModifiedStereographicGs50:function(){return Gn},geoModifiedStereographicLee:function(){return Yn},geoModifiedStereographicMiller:function(){return Zn},geoModifiedStereographicRaw:function(){return jn},geoMollweide:function(){return oe},geoMollweideRaw:function(){return ae},geoMtFlatPolarParabolic:function(){return er},geoMtFlatPolarParabolicRaw:function(){return Qn},geoMtFlatPolarQuartic:function(){return nr},geoMtFlatPolarQuarticRaw:function(){return tr},geoMtFlatPolarSinusoidal:function(){return ir},geoMtFlatPolarSinusoidalRaw:function(){return rr},geoNaturalEarth:function(){return ar.Z},geoNaturalEarth2:function(){return sr},geoNaturalEarth2Raw:function(){return or},geoNaturalEarthRaw:function(){return ar.K},geoNellHammer:function(){return cr},geoNellHammerRaw:function(){return lr},geoNicolosi:function(){return hr},geoNicolosiRaw:function(){return dr},geoPatterson:function(){return Sr},geoPattersonRaw:function(){return kr},geoPeirceQuincuncial:function(){return oi},geoPierceQuincuncial:function(){return oi},geoPolyconic:function(){return Ar},geoPolyconicRaw:function(){return Tr},geoPolyhedral:function(){return Ir},geoPolyhedralButterfly:function(){return Br},geoPolyhedralCollignon:function(){return $r},geoPolyhedralWaterman:function(){return Vr},geoProject:function(){return Yr},geoQuantize:function(){return si},geoQuincuncial:function(){return ii},geoRectangularPolyconic:function(){return ci},geoRectangularPolyconicRaw:function(){return li},geoRobinson:function(){return di},geoRobinsonRaw:function(){return fi},geoSatellite:function(){return pi},geoSatelliteRaw:function(){return hi},geoSinuMollweide:function(){return Qt},geoSinuMollweideRaw:function(){return Jt},geoSinusoidal:function(){return he},geoSinusoidalRaw:function(){return de},geoStitch:function(){return Ii},geoTimes:function(){return Di},geoTimesRaw:function(){return Ri},geoTwoPointAzimuthal:function(){return ji},geoTwoPointAzimuthalRaw:function(){return Ni},geoTwoPointAzimuthalUsa:function(){return zi},geoTwoPointEquidistant:function(){return Hi},geoTwoPointEquidistantRaw:function(){return Bi},geoTwoPointEquidistantUsa:function(){return Ui},geoVanDerGrinten:function(){return Vi},geoVanDerGrinten2:function(){return qi},geoVanDerGrinten2Raw:function(){return Wi},geoVanDerGrinten3:function(){return Zi},geoVanDerGrinten3Raw:function(){return Gi},geoVanDerGrinten4:function(){return Ki},geoVanDerGrinten4Raw:function(){return Yi},geoVanDerGrintenRaw:function(){return $i},geoWagner:function(){return Ji},geoWagner4:function(){return ra},geoWagner4Raw:function(){return na},geoWagner6:function(){return aa},geoWagner6Raw:function(){return ia},geoWagner7:function(){return Qi},geoWagnerRaw:function(){return Xi},geoWiechel:function(){return sa},geoWiechelRaw:function(){return oa},geoWinkel3:function(){return ca},geoWinkel3Raw:function(){return la}});var r=n(15002),i=Math.abs,a=Math.atan,o=Math.atan2,s=(Math.ceil,Math.cos),l=Math.exp,c=Math.floor,u=Math.log,f=Math.max,d=Math.min,h=Math.pow,p=Math.round,v=Math.sign||function(e){return e>0?1:e<0?-1:0},m=Math.sin,g=Math.tan,y=1e-6,b=1e-12,x=Math.PI,w=x/2,_=x/4,k=Math.SQRT1_2,S=P(2),T=P(x),A=2*x,E=180/x,C=x/180;function M(e){return e>1?w:e<-1?-w:Math.asin(e)}function O(e){return e>1?0:e<-1?x:Math.acos(e)}function P(e){return e>0?Math.sqrt(e):0}function L(e){return(l(e)-l(-e))/2}function I(e){return(l(e)+l(-e))/2}function R(e){var t=g(e/2),n=2*u(s(e/2))/(t*t);function r(e,t){var r=s(e),i=s(t),a=m(t),o=i*r,l=-((1-o?u((1+o)/2)/(1-o):-.5)+n/(1+o));return[l*i*m(e),l*a]}return r.invert=function(t,r){var a,l=P(t*t+r*r),c=-e/2,f=50;if(!l)return[0,0];do{var d=c/2,h=s(d),p=m(d),v=p/h,g=-u(i(h));c-=a=(2/v*g-n*v-l)/(-g/(p*p)+1-n/(2*h*h))*(h<0?.7:1)}while(i(a)>y&&--f>0);var b=m(c);return[o(t*b,l*s(c)),M(r*b/l)]},r}function D(){var e=w,t=(0,r.r)(R),n=t(e);return n.radius=function(n){return arguments.length?t(e=n*C):e*E},n.scale(179.976).clipAngle(147)}function F(e,t){var n=s(t),r=function(e){return e?e/Math.sin(e):1}(O(n*s(e/=2)));return[2*n*m(e)*r,m(t)*r]}function N(){return(0,r.Z)(F).scale(152.63)}function z(e){var t=m(e),n=s(e),r=e>=0?1:-1,a=g(r*e),l=(1+t-n)/2;function c(e,i){var c=s(i),u=s(e/=2);return[(1+c)*m(e),(r*i>-o(u,a)-.001?0:10*-r)+l+m(i)*n-(1+c)*t*u]}return c.invert=function(e,c){var u=0,f=0,d=50;do{var h=s(u),p=m(u),v=s(f),g=m(f),b=1+v,x=b*p-e,w=l+g*n-b*t*h-c,_=b*h/2,k=-p*g,S=t*b*p/2,T=n*v+t*h*g,A=k*S-T*_,E=(w*k-x*T)/A/2,C=(x*S-w*_)/A;i(C)>2&&(C/=2),u-=E,f-=C}while((i(E)>y||i(C)>y)&&--d>0);return r*f>-o(s(u),a)-.001?[2*u,f]:null},c}function j(){var e=20*C,t=e>=0?1:-1,n=g(t*e),i=(0,r.r)(z),a=i(e),l=a.stream;return a.parallel=function(r){return arguments.length?(n=g((t=(e=r*C)>=0?1:-1)*e),i(e)):e*E},a.stream=function(r){var i=a.rotate(),c=l(r),u=(a.rotate([0,0]),l(r)),f=a.precision();return a.rotate(i),c.sphere=function(){u.polygonStart(),u.lineStart();for(var r=-180*t;t*r<180;r+=90*t)u.point(r,90*t);if(e)for(;t*(r-=3*t*f)>=-180;)u.point(r,t*-o(s(r*C/2),n)*E);u.lineEnd(),u.polygonEnd()},c},a.scale(218.695).center([0,28.0974])}function B(e,t){var n=g(t/2),r=P(1-n*n),i=1+r*s(e/=2),a=m(e)*r/i,o=n/i,l=a*a,c=o*o;return[4/3*a*(3+l-3*c),4/3*o*(3+3*l-c)]}function U(){return(0,r.Z)(B).scale(66.1603)}F.invert=function(e,t){if(!(e*e+4*t*t>x*x+y)){var n=e,r=t,a=25;do{var o,l=m(n),c=m(n/2),u=s(n/2),f=m(r),d=s(r),h=m(2*r),p=f*f,v=d*d,g=c*c,b=1-v*u*u,w=b?O(d*u)*P(o=1/b):o=0,_=2*w*d*c-e,k=w*f-t,S=o*(v*g+w*d*u*p),T=o*(.5*l*h-2*w*f*c),A=.25*o*(h*c-w*f*v*l),E=o*(p*u+w*g*d),C=T*A-E*S;if(!C)break;var M=(k*T-_*E)/C,L=(_*A-k*S)/C;n-=M,r-=L}while((i(M)>y||i(L)>y)&&--a>0);return[n,r]}},B.invert=function(e,t){if(t*=3/8,!(e*=3/8)&&i(t)>1)return null;var n=1+e*e+t*t,r=P((n-P(n*n-4*t*t))/2),a=M(r)/3,l=r?function(e){return u(e+P(e*e-1))}(i(t/r))/3:function(e){return u(e+P(e*e+1))}(i(e))/3,c=s(a),f=I(l),d=f*f-c*c;return[2*v(e)*o(L(l)*c,.25-d),2*v(t)*o(f*m(a),.25+d)]};var H=P(8),$=u(1+S);function V(e,t){var n=i(t);return n<_?[e,u(g(_+t/2))]:[e*s(n)*(2*S-1/m(n)),v(t)*(2*S*(n-_)-u(g(n/2)))]}function W(){return(0,r.Z)(V).scale(112.314)}V.invert=function(e,t){if((r=i(t))<$)return[e,2*a(l(t))-w];var n,r,o=_,c=25;do{var f=s(o/2),d=g(o/2);o-=n=(H*(o-_)-u(d)-r)/(H-f*f/(2*d))}while(i(n)>b&&--c>0);return[e/(s(o)*(H-1/m(o))),v(t)*o]};var q=n(17889);function G(e){var t=2*x/e;function n(e,n){var r=(0,q.N)(e,n);if(i(e)>w){var a=o(r[1],r[0]),l=P(r[0]*r[0]+r[1]*r[1]),c=t*p((a-w)/t)+w,u=o(m(a-=c),2-s(a));a=c+M(x/l*m(u))-u,r[0]=l*s(a),r[1]=l*m(a)}return r}return n.invert=function(e,n){var r=P(e*e+n*n);if(r>w){var i=o(n,e),l=t*p((i-w)/t)+w,c=i>l?-1:1,u=r*s(l-i),f=1/g(c*O((u-x)/P(x*(x-2*u)+r*r)));i=l+2*a((f+c*P(f*f-3))/3),e=r*s(i),n=r*m(i)}return q.N.invert(e,n)},n}function Z(){var e=5,t=(0,r.r)(G),n=t(e),i=n.stream,a=.01,l=-s(a*C),c=m(a*C);return n.lobes=function(n){return arguments.length?t(e=+n):e},n.stream=function(t){var r=n.rotate(),u=i(t),f=(n.rotate([0,0]),i(t));return n.rotate(r),u.sphere=function(){f.polygonStart(),f.lineStart();for(var t=0,n=360/e,r=2*x/e,i=90-180/e,u=w;t0&&i(r)>y);return s<0?NaN:n}function ee(e,t,n){return void 0===t&&(t=40),void 0===n&&(n=b),function(r,a,o,s){var l,c,u;o=void 0===o?0:+o,s=void 0===s?0:+s;for(var f=0;fl)o-=c/=2,s-=u/=2;else{l=v;var m=(o>0?-1:1)*n,g=(s>0?-1:1)*n,y=e(o+m,s),b=e(o,s+g),x=(y[0]-d[0])/m,w=(y[1]-d[1])/m,_=(b[0]-d[0])/g,k=(b[1]-d[1])/g,S=k*x-w*_,T=(i(S)<.5?.5:1)/S;if(o+=c=(p*_-h*k)*T,s+=u=(h*w-p*x)*T,i(c)0&&(i[1]*=1+a/1.5*i[0]*i[0]),i}return t.invert=ee(t),t}function ne(){return(0,r.Z)(te()).rotate([-16.5,-42]).scale(176.57).center([7.93,.09])}function re(e,t){var n,r=e*m(t),a=30;do{t-=n=(t+m(t)-r)/(1+s(t))}while(i(n)>y&&--a>0);return t/2}function ie(e,t,n){function r(r,i){return[e*r*s(i=re(n,i)),t*m(i)]}return r.invert=function(r,i){return i=M(i/t),[r/(e*s(i)),M((2*i+m(2*i))/n)]},r}X.invert=function(e,t){var n=2*M(t/2);return[e*s(n/2)/s(n),n]};var ae=ie(S/w,S,x);function oe(){return(0,r.Z)(ae).scale(169.529)}var se=2.00276,le=1.11072;function ce(e,t){var n=re(x,t);return[se*e/(1/s(t)+le/s(n)),(t+S*m(n))/se]}function ue(){return(0,r.Z)(ce).scale(160.857)}function fe(e){var t=0,n=(0,r.r)(e),i=n(t);return i.parallel=function(e){return arguments.length?n(t=e*C):t*E},i}function de(e,t){return[e*s(t),t]}function he(){return(0,r.Z)(de).scale(152.63)}function pe(e){if(!e)return de;var t=1/g(e);function n(n,r){var i=t+e-r,a=i?n*s(r)/i:i;return[i*m(a),t-i*s(a)]}return n.invert=function(n,r){var i=P(n*n+(r=t-r)*r),a=t+e-i;return[i/s(a)*o(n,r),a]},n}function ve(){return fe(pe).scale(123.082).center([0,26.1441]).parallel(45)}function me(e){function t(t,n){var r=w-n,i=r?t*e*m(r)/r:r;return[r*m(i)/e,w-r*s(i)]}return t.invert=function(t,n){var r=t*e,i=w-n,a=P(r*r+i*i),s=o(r,i);return[(a?a/m(a):1)*s/e,w-a]},t}function ge(){var e=.5,t=(0,r.r)(me),n=t(e);return n.fraction=function(n){return arguments.length?t(e=+n):e},n.scale(158.837)}ce.invert=function(e,t){var n,r,a=se*t,o=t<0?-_:_,l=25;do{r=a-S*m(o),o-=n=(m(2*o)+2*o-x*m(r))/(2*s(2*o)+2+x*s(r)*S*s(o))}while(i(n)>y&&--l>0);return r=a-S*m(o),[e*(1/s(r)+le/s(o))/se,r]},de.invert=function(e,t){return[e/s(t),t]};var ye=ie(1,4/x,x);function be(){return(0,r.Z)(ye).scale(152.63)}var xe=n(66624),we=n(49386);function _e(e,t,n,r,a,l){var c,u=s(l);if(i(e)>1||i(l)>1)c=O(n*a+t*r*u);else{var f=m(e/2),d=m(l/2);c=2*M(P(f*f+t*r*d*d))}return i(c)>y?[c,o(r*m(l),t*a-n*r*u)]:[0,0]}function ke(e,t,n){return O((e*e+t*t-n*n)/(2*e*t))}function Se(e){return e-2*x*c((e+x)/(2*x))}function Te(e,t,n){for(var r,i=[[e[0],e[1],m(e[1]),s(e[1])],[t[0],t[1],m(t[1]),s(t[1])],[n[0],n[1],m(n[1]),s(n[1])]],a=i[2],o=0;o<3;++o,a=r)r=i[o],a.v=_e(r[1]-a[1],a[3],a[2],r[3],r[2],r[0]-a[0]),a.point=[0,0];var l=ke(i[0].v[0],i[2].v[0],i[1].v[0]),c=ke(i[0].v[0],i[1].v[0],i[2].v[0]),u=x-l;i[2].point[1]=0,i[0].point[0]=-(i[1].point[0]=i[0].v[0]/2);var f=[i[2].point[0]=i[0].point[0]+i[2].v[0]*s(l),2*(i[0].point[1]=i[1].point[1]=i[2].v[0]*m(l))];return function(e,t){var n,r=m(t),a=s(t),o=new Array(3);for(n=0;n<3;++n){var l=i[n];if(o[n]=_e(t-l[1],l[3],l[2],a,r,e-l[0]),!o[n][0])return l.point;o[n][1]=Se(o[n][1]-l.v[1])}var d=f.slice();for(n=0;n<3;++n){var h=2==n?0:n+1,p=ke(i[n].v[0],o[n][0],o[h][0]);o[n][1]<0&&(p=-p),n?1==n?(p=c-p,d[0]-=o[n][0]*s(p),d[1]-=o[n][0]*m(p)):(p=u-p,d[0]+=o[n][0]*s(p),d[1]+=o[n][0]*m(p)):(d[0]+=o[n][0]*s(p),d[1]-=o[n][0]*m(p))}return d[0]/=3,d[1]/=3,d}}function Ae(e){return e[0]*=C,e[1]*=C,e}function Ee(){return Ce([0,22],[45,22],[22.5,-22]).scale(380).center([22.5,2])}function Ce(e,t,n){var i=(0,xe.Z)({type:"MultiPoint",coordinates:[e,t,n]}),a=[-i[0],-i[1]],o=(0,we.Z)(a),s=Te(Ae(o(e)),Ae(o(t)),Ae(o(n)));s.invert=ee(s);var l=(0,r.Z)(s).rotate(a),c=l.center;return delete l.rotate,l.center=function(e){return arguments.length?c(o(e)):o.invert(c())},l.clipAngle(90)}function Me(e,t){var n=P(1-m(t));return[2/T*e*n,T*(1-n)]}function Oe(){return(0,r.Z)(Me).scale(95.6464).center([0,30])}function Pe(e){var t=g(e);function n(e,n){return[e,(e?e/m(e):1)*(m(n)*s(e)-t*s(n))]}return n.invert=t?function(e,n){e&&(n*=m(e)/e);var r=s(e);return[e,2*o(P(r*r+t*t-n*n)-r,t-n)]}:function(e,t){return[e,M(e?t*g(e)/e:t)]},n}function Le(){return fe(Pe).scale(249.828).clipAngle(90)}Me.invert=function(e,t){var n=(n=t/T-1)*n;return[n>0?e*P(x/n)/2:0,M(1-n)]};var Ie=P(3);function Re(e,t){return[Ie*e*(2*s(2*t/3)-1)/T,Ie*T*m(t/3)]}function De(){return(0,r.Z)(Re).scale(156.19)}function Fe(e){var t=s(e);function n(e,n){return[e*t,m(n)/t]}return n.invert=function(e,n){return[e/t,M(n*t)]},n}function Ne(){return fe(Fe).parallel(38.58).scale(195.044)}function ze(e){var t=s(e);function n(e,n){return[e*t,(1+t)*g(n/2)]}return n.invert=function(e,n){return[e/t,2*a(n/(1+t))]},n}function je(){return fe(ze).scale(124.75)}function Be(e,t){var n=P(8/(3*x));return[n*e*(1-i(t)/x),n*t]}function Ue(){return(0,r.Z)(Be).scale(165.664)}function He(e,t){var n=P(4-3*m(i(t)));return[2/P(6*x)*e*n,v(t)*P(2*x/3)*(2-n)]}function $e(){return(0,r.Z)(He).scale(165.664)}function Ve(e,t){var n=P(x*(4+x));return[2/n*e*(1+P(1-4*t*t/(x*x))),4/n*t]}function We(){return(0,r.Z)(Ve).scale(180.739)}function qe(e,t){var n=(2+w)*m(t);t/=2;for(var r=0,a=1/0;r<10&&i(a)>y;r++){var o=s(t);t-=a=(t+m(t)*(o+2)-n)/(2*o*(1+o))}return[2/P(x*(4+x))*e*(1+s(t)),2*P(x/(4+x))*m(t)]}function Ge(){return(0,r.Z)(qe).scale(180.739)}function Ze(e,t){return[e*(1+s(t))/P(2+x),2*t/P(2+x)]}function Ye(){return(0,r.Z)(Ze).scale(173.044)}function Ke(e,t){for(var n=(1+w)*m(t),r=0,a=1/0;r<10&&i(a)>y;r++)t-=a=(t+m(t)-n)/(1+s(t));return n=P(2+x),[e*(1+s(t))/n,2*t/n]}function Xe(){return(0,r.Z)(Ke).scale(173.044)}Re.invert=function(e,t){var n=3*M(t/(Ie*T));return[T*e/(Ie*(2*s(2*n/3)-1)),n]},Be.invert=function(e,t){var n=P(8/(3*x)),r=t/n;return[e/(n*(1-i(r)/x)),r]},He.invert=function(e,t){var n=2-i(t)/P(2*x/3);return[e*P(6*x)/(2*n),v(t)*M((4-n*n)/3)]},Ve.invert=function(e,t){var n=P(x*(4+x))/2;return[e*n/(1+P(1-t*t*(4+x)/(4*x))),t*n/2]},qe.invert=function(e,t){var n=t*P((4+x)/x)/2,r=M(n),i=s(r);return[e/(2/P(x*(4+x))*(1+i)),M((r+n*(i+2))/(2+w))]},Ze.invert=function(e,t){var n=P(2+x),r=t*n/2;return[n*e/(1+s(r)),r]},Ke.invert=function(e,t){var n=1+w,r=P(n/2);return[2*e*r/(1+s(t*=r)),M((t+m(t))/n)]};var Je=3+2*S;function Qe(e,t){var n=m(e/=2),r=s(e),i=P(s(t)),o=s(t/=2),l=m(t)/(o+S*r*i),c=P(2/(1+l*l)),f=P((S*o+(r+n)*i)/(S*o+(r-n)*i));return[Je*(c*(f-1/f)-2*u(f)),Je*(c*l*(f+1/f)-2*a(l))]}function et(){return(0,r.Z)(Qe).scale(62.5271)}Qe.invert=function(e,t){if(!(n=B.invert(e/1.2,1.065*t)))return null;var n,r=n[0],o=n[1],l=20;e/=Je,t/=Je;do{var c=r/2,h=o/2,p=m(c),v=s(c),g=m(h),b=s(h),x=s(o),_=P(x),T=g/(b+S*v*_),A=T*T,E=P(2/(1+A)),C=(S*b+(v+p)*_)/(S*b+(v-p)*_),M=P(C),O=M-1/M,L=M+1/M,I=E*O-2*u(M)-e,R=E*T*L-2*a(T)-t,D=g&&k*_*p*A/g,F=(S*v*b+_)/(2*(b+S*v*_)*(b+S*v*_)*_),N=-.5*T*E*E*E,z=N*D,j=N*F,U=(U=2*b+S*_*(v-p))*U*M,H=(S*v*b*_+x)/U,$=-S*p*g/(_*U),V=O*z-2*H/M+E*(H+H/C),W=O*j-2*$/M+E*($+$/C),q=T*L*z-2*D/(1+A)+E*L*D+E*T*(H-H/C),G=T*L*j-2*F/(1+A)+E*L*F+E*T*($-$/C),Z=W*q-G*V;if(!Z)break;var Y=(R*W-I*G)/Z,K=(I*q-R*V)/Z;r-=Y,o=f(-w,d(w,o-K))}while((i(Y)>y||i(K)>y)&&--l>0);return i(i(o)-w)r){var d=P(f),h=o(u,c),v=n*p(h/n),g=h-v,b=e*s(g),_=(e*m(g)-g*m(b))/(w-b),k=pt(g,_),S=(x-e)/vt(k,b,x);c=d;var T,A=50;do{c-=T=(e+vt(k,b,c)*S-d)/(k(c)*S)}while(i(T)>y&&--A>0);u=g*m(c),cr){var c=P(l),u=o(a,t),f=n*p(u/n),d=u-f;t=c*s(d),a=c*m(d);for(var h=t-w,v=m(t),g=a/v,y=ty||i(h)>y)&&--g>0);return[p,v]},u}var yt=gt(2.8284,-1.6988,.75432,-.18071,1.76003,-.38914,.042555);function bt(){return(0,r.Z)(yt).scale(149.995)}var xt=gt(2.583819,-.835827,.170354,-.038094,1.543313,-.411435,.082742);function wt(){return(0,r.Z)(xt).scale(153.93)}var _t=gt(5/6*x,-.62636,-.0344,0,1.3493,-.05524,0,.045);function kt(){return(0,r.Z)(_t).scale(130.945)}function St(e,t){var n=e*e,r=t*t;return[e*(1-.162388*r)*(.87-952426e-9*n*n),t*(1+r/12)]}function Tt(){return(0,r.Z)(St).scale(131.747)}St.invert=function(e,t){var n,r=e,a=t,o=50;do{var s=a*a;a-=n=(a*(1+s/12)-t)/(1+s/4)}while(i(n)>y&&--o>0);o=50,e/=1-.162388*s;do{var l=(l=r*r)*l;r-=n=(r*(.87-952426e-9*l)-e)/(.87-.00476213*l)}while(i(n)>y&&--o>0);return[r,a]};var At=gt(2.6516,-.76534,.19123,-.047094,1.36289,-.13965,.031762);function Et(){return(0,r.Z)(At).scale(131.087)}function Ct(e){var t=e(w,0)[0]-e(-w,0)[0];function n(n,r){var i=n>0?-.5:.5,a=e(n+i*x,r);return a[0]-=i*t,a}return e.invert&&(n.invert=function(n,r){var i=n>0?-.5:.5,a=e.invert(n+i*t,r),o=a[0]-i*x;return o<-x?o+=2*x:o>x&&(o-=2*x),a[0]=o,a}),n}function Mt(e,t){var n=v(e),r=v(t),a=s(t),l=s(e)*a,c=m(e)*a,u=m(r*t);e=i(o(c,u)),t=M(l),i(e-w)>y&&(e%=w);var f=function(e,t){if(t===w)return[0,0];var n,r,a=m(t),o=a*a,l=o*o,c=1+l,u=1+3*l,f=1-l,d=M(1/P(c)),h=f+o*c*d,p=(1-a)/h,v=P(p),g=p*c,b=P(g),_=v*f;if(0===e)return[0,-(_+o*b)];var k,S=s(t),T=1/S,A=2*a*S,E=(-3*o+d*u)*A,C=(-h*S-(1-a)*E)/(h*h),O=o*c*C+p*u*A,L=-T*A,I=-T*O,R=-2*T*(f*(.5*C/v)-2*o*v*A),D=4*e/x;if(e>.222*x||t.175*x){if(n=(_+o*P(g*(1+l)-_*_))/(1+l),e>x/4)return[n,n];var F=n,N=.5*n;n=.5*(N+F),r=50;do{var z=n*(R+L*P(g-n*n))+I*M(n/b)-D;if(!z)break;z<0?N=n:F=n,n=.5*(N+F)}while(i(F-N)>y&&--r>0)}else{n=y,r=25;do{var j=n*n,B=P(g-j),U=R+L*B,H=n*U+I*M(n/b)-D;n-=k=B?H/(U+(I-L*j)/B):0}while(i(k)>y&&--r>0)}return[n,-_-o*P(g-n*n)]}(e>x/4?w-e:e,t);return e>x/4&&(u=f[0],f[0]=-f[1],f[1]=-u),f[0]*=n,f[1]*=-r,f}function Ot(){return(0,r.Z)(Ct(Mt)).scale(239.75)}function Pt(e,t){var n,r,o,c,u,f;if(t=1-y)return n=(1-t)/4,o=1/(r=I(e)),[(c=((f=l(2*(f=e)))-1)/(f+1))+n*((u=r*L(e))-e)/(r*r),o-n*c*o*(u-e),o+n*c*o*(u+e),2*a(l(e))-w+n*(u-e)/r];var d=[1,0,0,0,0,0,0,0,0],h=[P(t),0,0,0,0,0,0,0,0],p=0;for(r=P(1-t),u=1;i(h[p]/d[p])>y&&p<8;)n=d[p++],h[p]=(n-r)/2,d[p]=(n+r)/2,r=P(n*r),u*=2;o=u*d[p]*e;do{o=(M(c=h[p]*m(r=o)/d[p])+o)/2}while(--p);return[m(o),c=s(o),c/s(o-r),o]}function Lt(e,t){if(!t)return e;if(1===t)return u(g(e/2+_));for(var n=1,r=P(1-t),o=P(t),s=0;i(o)>y;s++){if(e%x){var l=a(r*g(e)/n);l<0&&(l+=x),e+=l+~~(e/x)*x}else e+=e;o=(n+r)/2,r=P(n*r),o=((n=o)-r)/2}return e/(h(2,s)*n)}function It(e,t){var n=(S-1)/(S+1),r=P(1-n*n),c=Lt(w,r*r),f=u(g(x/4+i(t)/2)),d=l(-1*f)/P(n),h=function(e,t){var n=e*e,r=t+1,i=1-n-t*t;return[.5*((e>=0?w:-w)-o(i,2*e)),-.25*u(i*i+4*n)+.5*u(r*r+n)]}(d*s(-1*e),d*m(-1*e)),p=function(e,t,n){var r=i(e),o=L(i(t));if(r){var s=1/m(r),l=1/(g(r)*g(r)),c=-(l+n*(o*o*s*s)-1+n),u=(-c+P(c*c-(n-1)*l*4))/2;return[Lt(a(1/P(u)),n)*v(e),Lt(a(P((u/l-1)/n)),1-n)*v(t)]}return[0,Lt(a(o),1-n)*v(t)]}(h[0],h[1],r*r);return[-p[1],(t>=0?1:-1)*(.5*c-p[0])]}function Rt(){return(0,r.Z)(Ct(It)).scale(151.496)}Mt.invert=function(e,t){i(e)>1&&(e=2*v(e)-e),i(t)>1&&(t=2*v(t)-t);var n=v(e),r=v(t),a=-n*e,l=-r*t,c=l/a<1,u=function(e,t){for(var n=0,r=1,a=.5,o=50;;){var l=a*a,c=P(a),u=M(1/P(1+l)),f=1-l+a*(1+l)*u,d=(1-c)/f,h=P(d),p=d*(1+l),v=h*(1-l),m=P(p-e*e),g=t+v+a*m;if(i(r-n)0?n=a:r=a,a=.5*(n+r)}if(!o)return null;var y=M(c),w=s(y),_=1/w,k=2*c*w,S=(-f*w-(-3*a+u*(1+3*l))*k*(1-c))/(f*f),T=.5*S/h,A=(1-l)*T-2*a*h*k;return[x/4*(e*(-2*_*A+-_*k*m)+-_*(a*(1+l)*S+d*(1+3*l)*k)*M(e/P(p))),y]}(c?l:a,c?a:l),f=u[0],d=u[1],h=s(d);return c&&(f=-w-f),[n*(o(m(f)*h,-m(d))+x),r*M(s(f)*h)]},It.invert=function(e,t){var n=(S-1)/(S+1),r=P(1-n*n),i=function(e,t,n){var r,i,a;return e?(r=Pt(e,n),t?(a=(i=Pt(t,1-n))[1]*i[1]+n*r[0]*r[0]*i[0]*i[0],[[r[0]*i[2]/a,r[1]*r[2]*i[0]*i[1]/a],[r[1]*i[1]/a,-r[0]*r[2]*i[0]*i[2]/a],[r[2]*i[1]*i[2]/a,-n*r[0]*r[1]*i[0]/a]]):[[r[0],0],[r[1],0],[r[2],0]]):[[0,(i=Pt(t,1-n))[0]/i[1]],[1/i[1],0],[i[2]/i[1],0]]}(.5*Lt(w,r*r)-t,-e,r*r),s=function(e,t){var n=t[0]*t[0]+t[1]*t[1];return[(e[0]*t[0]+e[1]*t[1])/n,(e[1]*t[0]-e[0]*t[1])/n]}(i[0],i[1]);return[o(s[1],s[0])/-1,2*a(l(-.5*u(n*s[0]*s[0]+n*s[1]*s[1])))-w]};var Dt=n(7613);function Ft(e){var t=m(e),n=s(e),r=Nt(e);function a(e,a){var o=r(e,a);e=o[0],a=o[1];var l=m(a),c=s(a),u=s(e),f=O(t*l+n*c*u),d=m(f),h=i(d)>y?f/d:1;return[h*n*m(e),(i(e)>w?h:-h)*(t*c-n*l*u)]}return r.invert=Nt(-e),a.invert=function(e,n){var i=P(e*e+n*n),a=-m(i),l=s(i),c=i*l,u=-n*a,f=i*t,d=P(c*c+u*u-f*f),h=o(c*f+u*d,u*f-c*d),p=(i>w?-1:1)*o(e*a,i*s(h)*l+n*m(h)*a);return r.invert(p,h)},a}function Nt(e){var t=m(e),n=s(e);return function(e,r){var i=s(r),a=s(e)*i,l=m(e)*i,c=m(r);return[o(l,a*n-c*t),M(c*n+a*t)]}}function zt(){var e=0,t=(0,r.r)(Ft),n=t(e),i=n.rotate,a=n.stream,o=(0,Dt.Z)();return n.parallel=function(r){if(!arguments.length)return e*E;var i=n.rotate();return t(e=r*C).rotate(i)},n.rotate=function(t){return arguments.length?(i.call(n,[t[0],t[1]-e*E]),o.center([-t[0],-t[1]]),n):((t=i.call(n))[1]+=e*E,t)},n.stream=function(e){return(e=a(e)).sphere=function(){e.polygonStart();var t,n=o.radius(89.99)().coordinates[0],r=n.length-1,i=-1;for(e.lineStart();++i=0;)e.point((t=n[i])[0],t[1]);e.lineEnd(),e.polygonEnd()},e},n.scale(79.4187).parallel(45).clipAngle(179.999)}var jt=n(33064),Bt=n(72736),Ut=M(1-1/3)*E,Ht=Fe(0);function $t(e){var t=Ut*C,n=Me(x,t)[0]-Me(-x,t)[0],r=Ht(0,t)[1],a=Me(0,t)[1],o=T-a,s=A/e,l=4/A,u=r+o*o*4/A;function h(h,p){var v,m=i(p);if(m>t){var g=d(e-1,f(0,c((h+x)/s)));(v=Me(h+=x*(e-1)/e-g*s,m))[0]=v[0]*A/n-A*(e-1)/(2*e)+g*A/e,v[1]=r+4*(v[1]-a)*o/A,p<0&&(v[1]=-v[1])}else v=Ht(h,p);return v[0]*=l,v[1]/=u,v}return h.invert=function(t,h){t/=l;var p=i(h*=u);if(p>r){var v=d(e-1,f(0,c((t+x)/s)));t=(t+x*(e-1)/e-v*s)*n/A;var m=Me.invert(t,.25*(p-r)*A/o+a);return m[0]-=x*(e-1)/e-v*s,h<0&&(m[1]=-m[1]),m}return Ht.invert(t,h)},h}function Vt(e,t){return[e,1&t?90-y:Ut]}function Wt(e,t){return[e,1&t?-90+y:-Ut]}function qt(e){return[e[0]*(1-y),e[1]]}function Gt(){var e=4,t=(0,r.r)($t),n=t(e),i=n.stream;return n.lobes=function(n){return arguments.length?t(e=+n):e},n.stream=function(t){var r=n.rotate(),a=i(t),o=(n.rotate([0,0]),i(t));return n.rotate(r),a.sphere=function(){(0,Bt.Z)(function(e){var t=[].concat((0,jt.w6)(-180,180+e/2,e).map(Vt),(0,jt.w6)(180,-180-e/2,-e).map(Wt));return{type:"Polygon",coordinates:[180===e?t.map(qt):t]}}(180/e),o)},a},n.scale(239.75)}function Zt(e){var t,n=1+e,r=M(m(1/n)),a=2*P(x/(t=x+4*r*n)),l=.5*a*(n+P(e*(2+e))),c=e*e,u=n*n;function f(f,d){var h,p,v=1-m(d);if(v&&v<2){var g,y=w-d,_=25;do{var k=m(y),S=s(y),T=r+o(k,n-S),A=1+u-2*n*S;y-=g=(y-c*r-n*k+A*T-.5*v*t)/(2*n*k*T)}while(i(g)>b&&--_>0);h=a*P(A),p=f*T/x}else h=a*(e+v),p=f*r/x;return[h*m(p),l-h*s(p)]}return f.invert=function(e,i){var s=e*e+(i-=l)*i,f=(1+u-s/(a*a))/(2*n),d=O(f),h=m(d),p=r+o(h,n-f);return[M(e/P(s))*x/p,M(1-2*(d-c*r-n*h+(1+u-2*n*f)*p)/t)]},f}function Yt(){var e=1,t=(0,r.r)(Zt),n=t(e);return n.ratio=function(n){return arguments.length?t(e=+n):e},n.scale(167.774).center([0,18.67])}var Kt=.7109889596207567,Xt=.0528035274542;function Jt(e,t){return t>-Kt?((e=ae(e,t))[1]+=Xt,e):de(e,t)}function Qt(){return(0,r.Z)(Jt).rotate([-20,-55]).scale(164.263).center([0,-5.4036])}function en(e,t){return i(t)>Kt?((e=ae(e,t))[1]-=t>0?Xt:-Xt,e):de(e,t)}function tn(){return(0,r.Z)(en).scale(152.63)}function nn(e,t,n,r){var i=P(4*x/(2*n+(1+e-t/2)*m(2*n)+(e+t)/2*m(4*n)+t/2*m(6*n))),a=P(r*m(n)*P((1+e*s(2*n)+t*s(4*n))/(1+e+t))),o=n*c(1);function l(n){return P(1+e*s(2*n)+t*s(4*n))}function c(r){var i=r*n;return(2*i+(1+e-t/2)*m(2*i)+(e+t)/2*m(4*i)+t/2*m(6*i))/n}function u(e){return l(e)*m(e)}var f=function(e,t){var r=n*Q(c,o*m(t)/n,t/x);isNaN(r)&&(r=n*v(t));var u=i*l(r);return[u*a*e/x*s(r),u/a*m(r)]};return f.invert=function(e,t){var r=Q(u,t*a/i);return[e*x/(s(r)*i*a*l(r)),M(n*c(r/n)/o)]},0===n&&(i=P(r/x),(f=function(e,t){return[e*i,m(t)/i]}).invert=function(e,t){return[e/i,M(t*i)]}),f}function rn(){var e=1,t=0,n=45*C,i=2,a=(0,r.r)(nn),o=a(e,t,n,i);return o.a=function(r){return arguments.length?a(e=+r,t,n,i):e},o.b=function(r){return arguments.length?a(e,t=+r,n,i):t},o.psiMax=function(r){return arguments.length?a(e,t,n=+r*C,i):n*E},o.ratio=function(r){return arguments.length?a(e,t,n,i=+r):i},o.scale(180.739)}function an(e,t,n,r,i,a,o,s,l,c,u){if(u.nanEncountered)return NaN;var f,d,h,p,v,m,g,y,b,x;if(d=e(t+.25*(f=n-t)),h=e(n-.25*f),isNaN(d))u.nanEncountered=!0;else{if(!isNaN(h))return x=((m=(p=f*(r+4*d+i)/12)+(v=f*(i+4*h+a)/12))-o)/15,c>l?(u.maxDepthCount++,m+x):Math.abs(x)e?n=r:t=r,r=t+n>>1}while(r>t);var i=c[r+1]-c[r];return i&&(i=(e-c[r+1])/i),(r+1+i)/s}var d=2*f(1)/x*o/n,p=function(e,t){var n=f(i(m(t))),a=r(n)*e;return n/=d,[a,t>=0?n:-n]};return p.invert=function(e,t){var n;return i(t*=d)<1&&(n=v(t)*M(a(i(t))*o)),[e/r(i(t)),n]},p}function ln(){var e=0,t=2.5,n=1.183136,i=(0,r.r)(sn),a=i(e,t,n);return a.alpha=function(r){return arguments.length?i(e=+r,t,n):e},a.k=function(r){return arguments.length?i(e,t=+r,n):t},a.gamma=function(r){return arguments.length?i(e,t,n=+r):n},a.scale(152.63)}function cn(e,t){return i(e[0]-t[0])a[o][2][0];++o);var l=e(n-a[o][1][0],r);return l[0]+=e(a[o][1][0],i*r>i*a[o][0][1]?a[o][0][1]:r)[0],l}n?o.invert=n(o):e.invert&&(o.invert=function(n,r){for(var i=a[+(r<0)],s=t[+(r<0)],l=0,c=i.length;l=0;--s)n=(t=e[1][s])[0][0],r=t[0][1],i=t[1][1],a=t[2][0],o=t[2][1],l.push(un([[a-y,o-y],[a-y,i+y],[n+y,i+y],[n+y,r-y]],30));return{type:"Polygon",coordinates:[(0,jt.TS)(l)]}}(n),t=n.map((function(e){return e.map((function(e){return[[e[0][0]*C,e[0][1]*C],[e[1][0]*C,e[1][1]*C],[e[2][0]*C,e[2][1]*C]]}))})),a=t.map((function(t){return t.map((function(t){var n,r=e(t[0][0],t[0][1])[0],i=e(t[2][0],t[2][1])[0],a=e(t[1][0],t[0][1])[1],o=e(t[1][0],t[1][1])[1];return a>o&&(n=a,a=o,o=n),[[r,a],[i,o]]}))})),s):t.map((function(e){return e.map((function(e){return[[e[0][0]*E,e[0][1]*E],[e[1][0]*E,e[1][1]*E],[e[2][0]*E,e[2][1]*E]]}))}))},null!=t&&s.lobes(t),s}Jt.invert=function(e,t){return t>-Kt?ae.invert(e,t-Xt):de.invert(e,t)},en.invert=function(e,t){return i(t)>Kt?ae.invert(e,t+(t>0?Xt:-Xt)):de.invert(e,t)};var dn=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];function hn(){return fn(ce,dn).scale(160.857)}var pn=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];function vn(){return fn(en,pn).scale(152.63)}var mn=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];function gn(){return fn(ae,mn).scale(169.529)}var yn=[[[[-180,0],[-90,90],[0,0]],[[0,0],[90,90],[180,0]]],[[[-180,0],[-90,-90],[0,0]],[[0,0],[90,-90],[180,0]]]];function bn(){return fn(ae,yn).scale(169.529).rotate([20,0])}var xn=[[[[-180,35],[-30,90],[0,35]],[[0,35],[30,90],[180,35]]],[[[-180,-10],[-102,-90],[-65,-10]],[[-65,-10],[5,-90],[77,-10]],[[77,-10],[103,-90],[180,-10]]]];function wn(){return fn(Jt,xn,ee).rotate([-20,-55]).scale(164.263).center([0,-5.4036])}var _n=[[[[-180,0],[-110,90],[-40,0]],[[-40,0],[0,90],[40,0]],[[40,0],[110,90],[180,0]]],[[[-180,0],[-110,-90],[-40,0]],[[-40,0],[0,-90],[40,0]],[[40,0],[110,-90],[180,0]]]];function kn(){return fn(de,_n).scale(152.63).rotate([-20,0])}function Sn(e,t){return[3/A*e*P(x*x/3-t*t),t]}function Tn(){return(0,r.Z)(Sn).scale(158.837)}function An(e){function t(t,n){if(i(i(n)-w)2)return null;var a=(t/=2)*t,s=(n/=2)*n,l=2*n/(1+a+s);return l=h((1+l)/(1-l),1/e),[o(2*t,1-a-s)/e,M((l-1)/(l+1))]},t}function En(){var e=.5,t=(0,r.r)(An),n=t(e);return n.spacing=function(n){return arguments.length?t(e=+n):e},n.scale(124.75)}Sn.invert=function(e,t){return[A/3*e/P(x*x/3-t*t),t]};var Cn=x/S;function Mn(e,t){return[e*(1+P(s(t)))/2,t/(s(t/2)*s(e/6))]}function On(){return(0,r.Z)(Mn).scale(97.2672)}function Pn(e,t){var n=e*e,r=t*t;return[e*(.975534+r*(-.0143059*n-.119161+-.0547009*r)),t*(1.00384+n*(.0802894+-.02855*r+199025e-9*n)+r*(.0998909+-.0491032*r))]}function Ln(){return(0,r.Z)(Pn).scale(139.98)}function In(e,t){return[m(e)/s(t),g(t)*s(e)]}function Rn(){return(0,r.Z)(In).scale(144.049).clipAngle(89.999)}function Dn(e){var t=s(e),n=g(_+e/2);function r(r,a){var o=a-e,s=i(o)=0;)d=(f=e[u])[0]+l*(i=d)-c*h,h=f[1]+l*h+c*i;return[d=l*(i=d)-c*h,h=l*h+c*i]}return n.invert=function(n,r){var l=20,c=n,u=r;do{for(var f,d=t,h=e[d],p=h[0],v=h[1],g=0,b=0;--d>=0;)g=p+c*(f=g)-u*b,b=v+c*b+u*f,p=(h=e[d])[0]+c*(f=p)-u*v,v=h[1]+c*v+u*f;var x,w,_=(g=p+c*(f=g)-u*b)*g+(b=v+c*b+u*f)*b;c-=x=((p=c*(f=p)-u*v-n)*g+(v=c*v+u*f-r)*b)/_,u-=w=(v*g-p*b)/_}while(i(x)+i(w)>y*y&&--l>0);if(l){var k=P(c*c+u*u),S=2*a(.5*k),T=m(S);return[o(c*T,k*s(S)),k?M(u*T/k):0]}},n}Mn.invert=function(e,t){var n=i(e),r=i(t),a=y,o=w;ry||i(b)>y)&&--a>0);return a&&[n,r]},In.invert=function(e,t){var n=e*e,r=t*t+1,i=n+r,a=e?k*P((i-P(i*i-4*n))/n):1/P(r);return[M(e*a),v(t)*O(a)]},Nn.invert=function(e,t){return[e,2.5*a(l(.8*t))-.625*x]};var Bn=[[.9972523,0],[.0052513,-.0041175],[.0074606,.0048125],[-.0153783,-.1968253],[.0636871,-.1408027],[.3660976,-.2937382]],Un=[[.98879,0],[0,0],[-.050909,0],[0,0],[.075528,0]],Hn=[[.984299,0],[.0211642,.0037608],[-.1036018,-.0575102],[-.0329095,-.0320119],[.0499471,.1223335],[.026046,.0899805],[7388e-7,-.1435792],[.0075848,-.1334108],[-.0216473,.0776645],[-.0225161,.0853673]],$n=[[.9245,0],[0,0],[.01943,0]],Vn=[[.721316,0],[0,0],[-.00881625,-.00617325]];function Wn(){return Kn(Bn,[152,-64]).scale(1400).center([-160.908,62.4864]).clipAngle(30).angle(7.8)}function qn(){return Kn(Un,[95,-38]).scale(1e3).clipAngle(55).center([-96.5563,38.8675])}function Gn(){return Kn(Hn,[120,-45]).scale(359.513).clipAngle(55).center([-117.474,53.0628])}function Zn(){return Kn($n,[-20,-18]).scale(209.091).center([20,16.7214]).clipAngle(82)}function Yn(){return Kn(Vn,[165,10]).scale(250).clipAngle(130).center([-165,-10])}function Kn(e,t){var n=(0,r.Z)(jn(e)).rotate(t).clipAngle(90),i=(0,we.Z)(t),a=n.center;return delete n.rotate,n.center=function(e){return arguments.length?a(i(e)):i.invert(a())},n}var Xn=P(6),Jn=P(7);function Qn(e,t){var n=M(7*m(t)/(3*Xn));return[Xn*e*(2*s(2*n/3)-1)/Jn,9*m(n/3)/Jn]}function er(){return(0,r.Z)(Qn).scale(164.859)}function tr(e,t){for(var n,r=(1+k)*m(t),a=t,o=0;o<25&&(a-=n=(m(a/2)+m(a)-r)/(.5*s(a/2)+s(a)),!(i(n)b&&--l>0);return[e/(.84719-.13063*(r=s*s)+(o=r*(a=r*r))*o*(.05494*r-.04515-.02326*a+.00331*o)),s]},lr.invert=function(e,t){for(var n=t/2,r=0,a=1/0;r<10&&i(a)>y;++r){var o=s(t/2);t-=a=(t-g(t/2)-n)/(1-.5/(o*o))}return[2*e/(1+s(t)),t]};var ur=[[[[-180,0],[-90,90],[0,0]],[[0,0],[90,90],[180,0]]],[[[-180,0],[-90,-90],[0,0]],[[0,0],[90,-90],[180,0]]]];function fr(){return fn(K(1/0),ur).rotate([20,0]).scale(152.63)}function dr(e,t){var n=m(t),r=s(t),a=v(e);if(0===e||i(t)===w)return[0,t];if(0===t)return[e,0];if(i(e)===w)return[e*r,w*n];var o=x/(2*e)-2*e/x,l=2*t/x,c=(1-l*l)/(n-l),u=o*o,f=c*c,d=1+u/f,h=1+f/u,p=(o*n/c-o/2)/d,g=(f*n/u+c/2)/h,y=g*g-(f*n*n/u+c*n-1)/h;return[w*(p+P(p*p+r*r/d)*a),w*(g+P(y<0?0:y)*v(-t*o)*a)]}function hr(){return(0,r.Z)(dr).scale(127.267)}dr.invert=function(e,t){var n=(e/=w)*e,r=n+(t/=w)*t,i=x*x;return[e?(r-1+P((1-r)*(1-r)+4*n))/(2*e)*w:0,Q((function(e){return r*(x*m(e)-2*e)*x+4*e*e*(t-m(e))+2*x*e-i*t}),0)]};var pr=1.0148,vr=.23185,mr=-.14499,gr=.02406,yr=pr,br=5*vr,xr=7*mr,wr=9*gr,_r=1.790857183;function kr(e,t){var n=t*t;return[e,t*(pr+n*n*(vr+n*(mr+gr*n)))]}function Sr(){return(0,r.Z)(kr).scale(139.319)}function Tr(e,t){if(i(t)_r?t=_r:t<-1.790857183&&(t=-1.790857183);var n,r=t;do{var a=r*r;r-=n=(r*(pr+a*a*(vr+a*(mr+gr*a)))-t)/(yr+a*a*(br+a*(xr+wr*a)))}while(i(n)>y);return[e,r]},Tr.invert=function(e,t){if(i(t)y&&--o>0);return l=g(a),[(i(t)=0;)if(r=t[s],n[0]===r[0]&&n[1]===r[1]){if(a)return[a,n];a=n}}}(t.face,n.face),i=Mr(r.map(n.project),r.map(t.project));t.transform=n.transform?Or(n.transform,i):i;for(var a=n.edges,o=0,s=a.length;o0?[-t[0],0]:[180-t[0],180])};var t=jr.map((function(t){return{face:t,project:e(t)}}));return[-1,0,0,1,0,1,4,5].forEach((function(e,n){var r=t[e];r&&(r.children||(r.children=[])).push(t[n])})),Ir(t[0],(function(e,n){return t[e<-x/2?n<0?6:4:e<0?n<0?2:0:er^h>r&&n<(d-c)*(r-u)/(h-u)+c&&(i=!i)}return i}(e[0],n))return e.push(t),!0}))||e.push([t])})),ei=[],e.length?e.length>1?{type:"MultiPolygon",coordinates:e}:{type:"Polygon",coordinates:e[0]}:null}};function ii(e){var t=e(w,0)[0]-e(-w,0)[0];function n(n,r){var a=i(n)0?n-x:n+x,r),s=(o[0]-o[1])*k,l=(o[0]+o[1])*k;if(a)return[s,l];var c=t*k,u=s>0^l>0?-1:1;return[u*s-v(l)*c,u*l-v(s)*c]}return e.invert&&(n.invert=function(n,r){var a=(n+r)*k,o=(r-n)*k,s=i(a)<.5*t&&i(o)<.5*t;if(!s){var l=t*k,c=a>0^o>0?-1:1,u=-c*n+(o>0?1:-1)*l,f=-c*r+(a>0?1:-1)*l;a=(-u-f)*k,o=(u-f)*k}var d=e.invert(a,o);return s||(d[0]+=a>0?x:-x),d}),(0,r.Z)(n).rotate([-90,-90,45]).clipAngle(179.999)}function ai(){return ii(Mt).scale(176.423)}function oi(){return ii(It).scale(111.48)}function si(e,t){if(!(0<=(t=+t)&&t<=20))throw new Error("invalid digits");function n(e){var n=e.length,r=2,i=new Array(n);for(i[0]=+e[0].toFixed(t),i[1]=+e[1].toFixed(t);r2||a[0]!=t[0]||a[1]!=t[1])&&(r.push(a),t=a)}return 1===r.length&&e.length>1&&r.push(n(e[e.length-1])),r}function a(e){return e.map(i)}function o(e){if(null==e)return e;var t;switch(e.type){case"GeometryCollection":t={type:"GeometryCollection",geometries:e.geometries.map(o)};break;case"Point":t={type:"Point",coordinates:n(e.coordinates)};break;case"MultiPoint":t={type:e.type,coordinates:r(e.coordinates)};break;case"LineString":t={type:e.type,coordinates:i(e.coordinates)};break;case"MultiLineString":case"Polygon":t={type:e.type,coordinates:a(e.coordinates)};break;case"MultiPolygon":t={type:"MultiPolygon",coordinates:e.coordinates.map(a)};break;default:return e}return null!=e.bbox&&(t.bbox=e.bbox),t}function s(e){var t={type:"Feature",properties:e.properties,geometry:o(e.geometry)};return null!=e.id&&(t.id=e.id),null!=e.bbox&&(t.bbox=e.bbox),t}if(null!=e)switch(e.type){case"Feature":return s(e);case"FeatureCollection":var l={type:"FeatureCollection",features:e.features.map(s)};return null!=e.bbox&&(l.bbox=e.bbox),l;default:return o(e)}return e}function li(e){var t=m(e);function n(n,r){var i=t?g(n*t/2)/t:n/2;if(!r)return[2*i,-e];var o=2*a(i*m(r)),l=1/g(r);return[m(o)*l,r+(1-s(o))*l-e]}return n.invert=function(n,r){if(i(r+=e)y&&--u>0);var p=n*(f=g(c)),v=g(i(r)0?w:-w)*(f+o*(p-l)/2+o*o*(p-2*f+l)/2)]}function di(){return(0,r.Z)(fi).scale(152.63)}function hi(e,t){var n=function(e){function t(t,n){var r=s(n),i=(e-1)/(e-r*s(t));return[i*r*m(t),i*m(n)]}return t.invert=function(t,n){var r=t*t+n*n,i=P(r),a=(e-P(1-r*(e+1)/(e-1)))/((e-1)/i+i/(e-1));return[o(t*a,i*P(1-a*a)),i?M(n*a/i):0]},t}(e);if(!t)return n;var r=s(t),i=m(t);function a(t,a){var o=n(t,a),s=o[1],l=s*i/(e-1)+r;return[o[0]*r/l,s/l]}return a.invert=function(t,a){var o=(e-1)/(e-1-a*i);return n.invert(o*t,o*a*r)},a}function pi(){var e=2,t=0,n=(0,r.r)(hi),i=n(e,t);return i.distance=function(r){return arguments.length?n(e=+r,t):e},i.tilt=function(r){return arguments.length?n(e,t=r*C):t*E},i.scale(432.147).clipAngle(O(1/e)*E-1e-6)}ui.forEach((function(e){e[1]*=1.0144})),fi.invert=function(e,t){var n=t/w,r=90*n,a=d(18,i(r/5)),o=f(0,c(a));do{var s=ui[o][1],l=ui[o+1][1],u=ui[d(19,o+2)][1],h=u-s,p=u-2*l+s,v=2*(i(n)-l)/h,m=p/h,g=v*(1-m*v*(1-2*m*v));if(g>=0||1===o){r=(t>=0?5:-5)*(g+a);var y,x=50;do{g=(a=d(18,i(r)/5))-(o=c(a)),s=ui[o][1],l=ui[o+1][1],u=ui[d(19,o+2)][1],r-=(y=(t>=0?w:-w)*(l+g*(u-s)/2+g*g*(u-2*l+s)/2)-t)*E}while(i(y)>b&&--x>0);break}}while(--o>=0);var _=ui[o][0],k=ui[o+1][0],S=ui[d(19,o+2)][0];return[e/(k+g*(S-_)/2+g*g*(S-2*k+_)/2),r*C]};var vi=1e-4,mi=1e4,gi=-180,yi=gi+vi,bi=180,xi=bi-vi,wi=-90,_i=wi+vi,ki=90,Si=ki-vi;function Ti(e){return e.length>0}function Ai(e){return e===wi||e===ki?[0,e]:[gi,(t=e,Math.floor(t*mi)/mi)];var t}function Ei(e){var t=e[0],n=e[1],r=!1;return t<=yi?(t=gi,r=!0):t>=xi&&(t=bi,r=!0),n<=_i?(n=wi,r=!0):n>=Si&&(n=ki,r=!0),r?[t,n]:e}function Ci(e){return e.map(Ei)}function Mi(e,t,n){for(var r=0,i=e.length;r=xi||u<=_i||u>=Si){a[o]=Ei(l);for(var f=o+1;fyi&&h_i&&p=s)break;n.push({index:-1,polygon:t,ring:a=a.slice(f-1)}),a[0]=Ai(a[0][1]),o=-1,s=a.length}}}}function Oi(e){var t,n,r,i,a,o,s=e.length,l={},c={};for(t=0;t0?x-l:l)*E],u=(0,r.Z)(e(s)).rotate(c),f=(0,we.Z)(c),d=u.center;return delete u.rotate,u.center=function(e){return arguments.length?d(f(e)):f.invert(d())},u.clipAngle(90)}function Ni(e){var t=s(e);function n(e,n){var r=(0,Nr.M)(e,n);return r[0]*=t,r}return n.invert=function(e,n){return Nr.M.invert(e/t,n)},n}function zi(){return ji([-158,21.5],[-77,39]).clipAngle(60).scale(400)}function ji(e,t){return Fi(Ni,e,t)}function Bi(e){if(!(e*=2))return q.N;var t=-e/2,n=-t,r=e*e,i=g(n),a=.5/m(n);function l(i,a){var o=O(s(a)*s(i-t)),l=O(s(a)*s(i-n));return[((o*=o)-(l*=l))/(2*e),(a<0?-1:1)*P(4*r*l-(r-o+l)*(r-o+l))/(2*e)]}return l.invert=function(e,r){var l,c,u=r*r,f=s(P(u+(l=e+t)*l)),d=s(P(u+(l=e+n)*l));return[o(c=f-d,l=(f+d)*i),(r<0?-1:1)*O(P(l*l+c*c)*a)]},l}function Ui(){return Hi([-158,21.5],[-77,39]).clipAngle(130).scale(122.571)}function Hi(e,t){return Fi(Bi,e,t)}function $i(e,t){if(i(t)y&&--l>0);return[v(e)*(P(a*a+4)+a)*x/4,w*s]};var ea=4*x+3*P(3),ta=2*P(2*x*P(3)/ea),na=ie(ta*P(3)/x,ta,ea/6);function ra(){return(0,r.Z)(na).scale(176.84)}function ia(e,t){return[e*P(1-3*t*t/(x*x)),t]}function aa(){return(0,r.Z)(ia).scale(152.63)}function oa(e,t){var n=s(t),r=s(e)*n,i=1-r,a=s(e=o(m(e)*n,-m(t))),l=m(e);return[l*(n=P(1-r*r))-a*i,-a*n-l*i]}function sa(){return(0,r.Z)(oa).rotate([0,-90,45]).scale(124.75).clipAngle(179.999)}function la(e,t){var n=F(e,t);return[(n[0]+e/w)/2,(n[1]+t)/2]}function ca(){return(0,r.Z)(la).scale(158.837)}ia.invert=function(e,t){return[e/P(1-3*t*t/(x*x)),t]},oa.invert=function(e,t){var n=(e*e+t*t)/-2,r=P(-n*(2+n)),i=t*n+e*r,a=e*n-t*r,s=P(a*a+i*i);return[o(r*i,s*(1+n)),s?-M(r*a/s):0]},la.invert=function(e,t){var n=e,r=t,a=25;do{var o,l=s(r),c=m(r),u=m(2*r),f=c*c,d=l*l,h=m(n),p=s(n/2),v=m(n/2),g=v*v,b=1-d*p*p,x=b?O(l*p)*P(o=1/b):o=0,_=.5*(2*x*l*v+n/w)-e,k=.5*(x*c+r)-t,S=.5*o*(d*g+x*l*p*f)+.5/w,T=o*(h*u/4-x*c*v),A=.125*o*(u*v-x*c*d*h),E=.5*o*(f*p+x*g*l)+.5,C=T*A-E*S,M=(k*T-_*E)/C,L=(_*A-k*S)/C;n-=M,r-=L}while((i(M)>y||i(L)>y)&&--a>0);return[n,r]}},33940:function(e,t,n){"use strict";function r(){return new i}function i(){this.reset()}n.d(t,{Z:function(){return r}}),i.prototype={constructor:i,reset:function(){this.s=this.t=0},add:function(e){o(a,e,this.t),o(this,a.s,this.s),this.s?this.t+=a.t:this.s=a.t},valueOf:function(){return this.s}};var a=new i;function o(e,t,n){var r=e.s=t+n,i=r-t,a=r-i;e.t=t-a+(n-i)}},97860:function(e,t,n){"use strict";n.d(t,{L9:function(){return d},ZP:function(){return b},gL:function(){return p}});var r,i,a,o,s,l=n(33940),c=n(39695),u=n(73182),f=n(72736),d=(0,l.Z)(),h=(0,l.Z)(),p={point:u.Z,lineStart:u.Z,lineEnd:u.Z,polygonStart:function(){d.reset(),p.lineStart=v,p.lineEnd=m},polygonEnd:function(){var e=+d;h.add(e<0?c.BZ+e:e),this.lineStart=this.lineEnd=this.point=u.Z},sphere:function(){h.add(c.BZ)}};function v(){p.point=g}function m(){y(r,i)}function g(e,t){p.point=y,r=e,i=t,e*=c.uR,t*=c.uR,a=e,o=(0,c.mC)(t=t/2+c.pu),s=(0,c.O$)(t)}function y(e,t){e*=c.uR,t=(t*=c.uR)/2+c.pu;var n=e-a,r=n>=0?1:-1,i=r*n,l=(0,c.mC)(t),u=(0,c.O$)(t),f=s*u,h=o*l+f*(0,c.mC)(i),p=f*r*(0,c.O$)(i);d.add((0,c.fv)(p,h)),a=e,o=l,s=u}function b(e){return h.reset(),(0,f.Z)(e,p),2*h}},77338:function(e,t,n){"use strict";n.d(t,{Z:function(){return O}});var r,i,a,o,s,l,c,u,f,d,h=n(33940),p=n(97860),v=n(7620),m=n(39695),g=n(72736),y=(0,h.Z)(),b={point:x,lineStart:_,lineEnd:k,polygonStart:function(){b.point=S,b.lineStart=T,b.lineEnd=A,y.reset(),p.gL.polygonStart()},polygonEnd:function(){p.gL.polygonEnd(),b.point=x,b.lineStart=_,b.lineEnd=k,p.L9<0?(r=-(a=180),i=-(o=90)):y>m.Ho?o=90:y<-m.Ho&&(i=-90),d[0]=r,d[1]=a},sphere:function(){r=-(a=180),i=-(o=90)}};function x(e,t){f.push(d=[r=e,a=e]),to&&(o=t)}function w(e,t){var n=(0,v.Og)([e*m.uR,t*m.uR]);if(u){var l=(0,v.T5)(u,n),c=[l[1],-l[0],0],h=(0,v.T5)(c,l);(0,v.iJ)(h),h=(0,v.Y1)(h);var p,g=e-s,y=g>0?1:-1,b=h[0]*m.RW*y,x=(0,m.Wn)(g)>180;x^(y*so&&(o=p):x^(y*s<(b=(b+360)%360-180)&&bo&&(o=t)),x?eE(r,a)&&(a=e):E(e,a)>E(r,a)&&(r=e):a>=r?(ea&&(a=e)):e>s?E(r,e)>E(r,a)&&(a=e):E(e,a)>E(r,a)&&(r=e)}else f.push(d=[r=e,a=e]);to&&(o=t),u=n,s=e}function _(){b.point=w}function k(){d[0]=r,d[1]=a,b.point=x,u=null}function S(e,t){if(u){var n=e-s;y.add((0,m.Wn)(n)>180?n+(n>0?360:-360):n)}else l=e,c=t;p.gL.point(e,t),w(e,t)}function T(){p.gL.lineStart()}function A(){S(l,c),p.gL.lineEnd(),(0,m.Wn)(y)>m.Ho&&(r=-(a=180)),d[0]=r,d[1]=a,u=null}function E(e,t){return(t-=e)<0?t+360:t}function C(e,t){return e[0]-t[0]}function M(e,t){return e[0]<=e[1]?e[0]<=t&&t<=e[1]:tE(s[0],s[1])&&(s[1]=l[1]),E(l[0],s[1])>E(s[0],s[1])&&(s[0]=l[0])):c.push(s=l);for(u=-1/0,t=0,s=c[n=c.length-1];t<=n;s=l,++t)l=c[t],(h=E(s[1],l[0]))>u&&(u=h,r=l[0],a=s[1])}return f=d=null,r===1/0||i===1/0?[[NaN,NaN],[NaN,NaN]]:[[r,i],[a,o]]}},7620:function(e,t,n){"use strict";n.d(t,{Og:function(){return a},T:function(){return c},T5:function(){return s},Y1:function(){return i},iJ:function(){return u},j9:function(){return o},s0:function(){return l}});var r=n(39695);function i(e){return[(0,r.fv)(e[1],e[0]),(0,r.ZR)(e[2])]}function a(e){var t=e[0],n=e[1],i=(0,r.mC)(n);return[i*(0,r.mC)(t),i*(0,r.O$)(t),(0,r.O$)(n)]}function o(e,t){return e[0]*t[0]+e[1]*t[1]+e[2]*t[2]}function s(e,t){return[e[1]*t[2]-e[2]*t[1],e[2]*t[0]-e[0]*t[2],e[0]*t[1]-e[1]*t[0]]}function l(e,t){e[0]+=t[0],e[1]+=t[1],e[2]+=t[2]}function c(e,t){return[e[0]*t,e[1]*t,e[2]*t]}function u(e){var t=(0,r._b)(e[0]*e[0]+e[1]*e[1]+e[2]*e[2]);e[0]/=t,e[1]/=t,e[2]/=t}},66624:function(e,t,n){"use strict";n.d(t,{Z:function(){return I}});var r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b=n(39695),x=n(73182),w=n(72736),_={sphere:x.Z,point:k,lineStart:T,lineEnd:C,polygonStart:function(){_.lineStart=M,_.lineEnd=O},polygonEnd:function(){_.lineStart=T,_.lineEnd=C}};function k(e,t){e*=b.uR,t*=b.uR;var n=(0,b.mC)(t);S(n*(0,b.mC)(e),n*(0,b.O$)(e),(0,b.O$)(t))}function S(e,t,n){++r,a+=(e-a)/r,o+=(t-o)/r,s+=(n-s)/r}function T(){_.point=A}function A(e,t){e*=b.uR,t*=b.uR;var n=(0,b.mC)(t);m=n*(0,b.mC)(e),g=n*(0,b.O$)(e),y=(0,b.O$)(t),_.point=E,S(m,g,y)}function E(e,t){e*=b.uR,t*=b.uR;var n=(0,b.mC)(t),r=n*(0,b.mC)(e),a=n*(0,b.O$)(e),o=(0,b.O$)(t),s=(0,b.fv)((0,b._b)((s=g*o-y*a)*s+(s=y*r-m*o)*s+(s=m*a-g*r)*s),m*r+g*a+y*o);i+=s,l+=s*(m+(m=r)),c+=s*(g+(g=a)),u+=s*(y+(y=o)),S(m,g,y)}function C(){_.point=k}function M(){_.point=P}function O(){L(p,v),_.point=k}function P(e,t){p=e,v=t,e*=b.uR,t*=b.uR,_.point=L;var n=(0,b.mC)(t);m=n*(0,b.mC)(e),g=n*(0,b.O$)(e),y=(0,b.O$)(t),S(m,g,y)}function L(e,t){e*=b.uR,t*=b.uR;var n=(0,b.mC)(t),r=n*(0,b.mC)(e),a=n*(0,b.O$)(e),o=(0,b.O$)(t),s=g*o-y*a,p=y*r-m*o,v=m*a-g*r,x=(0,b._b)(s*s+p*p+v*v),w=(0,b.ZR)(x),_=x&&-w/x;f+=_*s,d+=_*p,h+=_*v,i+=w,l+=w*(m+(m=r)),c+=w*(g+(g=a)),u+=w*(y+(y=o)),S(m,g,y)}function I(e){r=i=a=o=s=l=c=u=f=d=h=0,(0,w.Z)(e,_);var t=f,n=d,p=h,v=t*t+n*n+p*p;return v0?os)&&(o+=i*a.BZ));for(var d,h=o;i>0?h>s:h0?i.pi:-i.pi,c=(0,i.Wn)(o-n);(0,i.Wn)(c-i.pi)0?i.ou:-i.ou),e.point(a,r),e.lineEnd(),e.lineStart(),e.point(l,r),e.point(o,r),t=0):a!==l&&c>=i.pi&&((0,i.Wn)(n-a)i.Ho?(0,i.z4)(((0,i.O$)(t)*(o=(0,i.mC)(r))*(0,i.O$)(n)-(0,i.O$)(r)*(a=(0,i.mC)(t))*(0,i.O$)(e))/(a*o*s)):(t+r)/2}(n,r,o,s),e.point(a,r),e.lineEnd(),e.lineStart(),e.point(l,r),t=0),e.point(n=o,r=s),a=l},lineEnd:function(){e.lineEnd(),n=r=NaN},clean:function(){return 2-t}}}),(function(e,t,n,r){var a;if(null==e)a=n*i.ou,r.point(-i.pi,a),r.point(0,a),r.point(i.pi,a),r.point(i.pi,0),r.point(i.pi,-a),r.point(0,-a),r.point(-i.pi,-a),r.point(-i.pi,0),r.point(-i.pi,a);else if((0,i.Wn)(e[0]-t[0])>i.Ho){var o=e[0]1&&t.push(t.pop().concat(t.shift()))},result:function(){var n=t;return t=[],e=null,n}}}},1457:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var r=n(7620),i=n(7613),a=n(39695),o=n(67108),s=n(97023);function l(e){var t=(0,a.mC)(e),n=6*a.uR,l=t>0,c=(0,a.Wn)(t)>a.Ho;function u(e,n){return(0,a.mC)(e)*(0,a.mC)(n)>t}function f(e,n,i){var o=(0,r.Og)(e),s=(0,r.Og)(n),l=[1,0,0],c=(0,r.T5)(o,s),u=(0,r.j9)(c,c),f=c[0],d=u-f*f;if(!d)return!i&&e;var h=t*u/d,p=-t*f/d,v=(0,r.T5)(l,c),m=(0,r.T)(l,h),g=(0,r.T)(c,p);(0,r.s0)(m,g);var y=v,b=(0,r.j9)(m,y),x=(0,r.j9)(y,y),w=b*b-x*((0,r.j9)(m,m)-1);if(!(w<0)){var _=(0,a._b)(w),k=(0,r.T)(y,(-b-_)/x);if((0,r.s0)(k,m),k=(0,r.Y1)(k),!i)return k;var S,T=e[0],A=n[0],E=e[1],C=n[1];A0^k[1]<((0,a.Wn)(k[0]-T)a.pi^(T<=k[0]&&k[0]<=A)){var P=(0,r.T)(y,(-b+_)/x);return(0,r.s0)(P,m),[k,(0,r.Y1)(P)]}}}function d(t,n){var r=l?e:a.pi-e,i=0;return t<-r?i|=1:t>r&&(i|=2),n<-r?i|=4:n>r&&(i|=8),i}return(0,s.Z)(u,(function(e){var t,n,r,i,s;return{lineStart:function(){i=r=!1,s=1},point:function(h,p){var v,m=[h,p],g=u(h,p),y=l?g?0:d(h,p):g?d(h+(h<0?a.pi:-a.pi),p):0;if(!t&&(i=r=g)&&e.lineStart(),g!==r&&(!(v=f(t,m))||(0,o.Z)(t,v)||(0,o.Z)(m,v))&&(m[2]=1),g!==r)s=0,g?(e.lineStart(),v=f(m,t),e.point(v[0],v[1])):(v=f(t,m),e.point(v[0],v[1],2),e.lineEnd()),t=v;else if(c&&t&&l^g){var b;y&n||!(b=f(m,t,!0))||(s=0,l?(e.lineStart(),e.point(b[0][0],b[0][1]),e.point(b[1][0],b[1][1]),e.lineEnd()):(e.point(b[1][0],b[1][1]),e.lineEnd(),e.lineStart(),e.point(b[0][0],b[0][1],3)))}!g||t&&(0,o.Z)(t,m)||e.point(m[0],m[1]),t=m,r=g,n=y},lineEnd:function(){r&&e.lineEnd(),t=null},clean:function(){return s|(i&&r)<<1}}}),(function(t,r,a,o){(0,i.m)(o,e,n,a,t,r)}),l?[0,-e]:[-a.pi,e-a.pi])}},97023:function(e,t,n){"use strict";n.d(t,{Z:function(){return l}});var r=n(85272),i=n(46225),a=n(39695),o=n(23071),s=n(33064);function l(e,t,n,a){return function(l){var f,d,h,p=t(l),v=(0,r.Z)(),m=t(v),g=!1,y={point:b,lineStart:w,lineEnd:_,polygonStart:function(){y.point=k,y.lineStart=S,y.lineEnd=T,d=[],f=[]},polygonEnd:function(){y.point=b,y.lineStart=w,y.lineEnd=_,d=(0,s.TS)(d);var e=(0,o.Z)(f,a);d.length?(g||(l.polygonStart(),g=!0),(0,i.Z)(d,u,e,n,l)):e&&(g||(l.polygonStart(),g=!0),l.lineStart(),n(null,null,1,l),l.lineEnd()),g&&(l.polygonEnd(),g=!1),d=f=null},sphere:function(){l.polygonStart(),l.lineStart(),n(null,null,1,l),l.lineEnd(),l.polygonEnd()}};function b(t,n){e(t,n)&&l.point(t,n)}function x(e,t){p.point(e,t)}function w(){y.point=x,p.lineStart()}function _(){y.point=b,p.lineEnd()}function k(e,t){h.push([e,t]),m.point(e,t)}function S(){m.lineStart(),h=[]}function T(){k(h[0][0],h[0][1]),m.lineEnd();var e,t,n,r,i=m.clean(),a=v.result(),o=a.length;if(h.pop(),f.push(h),h=null,o)if(1&i){if((t=(n=a[0]).length-1)>0){for(g||(l.polygonStart(),g=!0),l.lineStart(),e=0;e1&&2&i&&a.push(a.pop().concat(a.shift())),d.push(a.filter(c))}return y}}function c(e){return e.length>1}function u(e,t){return((e=e.x)[0]<0?e[1]-a.ou-a.Ho:a.ou-e[1])-((t=t.x)[0]<0?t[1]-a.ou-a.Ho:a.ou-t[1])}},87605:function(e,t,n){"use strict";n.d(t,{Z:function(){return c}});var r=n(39695),i=n(85272),a=n(46225),o=n(33064),s=1e9,l=-s;function c(e,t,n,c){function u(r,i){return e<=r&&r<=n&&t<=i&&i<=c}function f(r,i,a,o){var s=0,l=0;if(null==r||(s=d(r,a))!==(l=d(i,a))||p(r,i)<0^a>0)do{o.point(0===s||3===s?e:n,s>1?c:t)}while((s=(s+a+4)%4)!==l);else o.point(i[0],i[1])}function d(i,a){return(0,r.Wn)(i[0]-e)0?0:3:(0,r.Wn)(i[0]-n)0?2:1:(0,r.Wn)(i[1]-t)0?1:0:a>0?3:2}function h(e,t){return p(e.x,t.x)}function p(e,t){var n=d(e,1),r=d(t,1);return n!==r?n-r:0===n?t[1]-e[1]:1===n?e[0]-t[0]:2===n?e[1]-t[1]:t[0]-e[0]}return function(r){var d,p,v,m,g,y,b,x,w,_,k,S=r,T=(0,i.Z)(),A={point:E,lineStart:function(){A.point=C,p&&p.push(v=[]),_=!0,w=!1,b=x=NaN},lineEnd:function(){d&&(C(m,g),y&&w&&T.rejoin(),d.push(T.result())),A.point=E,w&&S.lineEnd()},polygonStart:function(){S=T,d=[],p=[],k=!0},polygonEnd:function(){var t=function(){for(var t=0,n=0,r=p.length;nc&&(f-i)*(c-a)>(d-a)*(e-i)&&++t:d<=c&&(f-i)*(c-a)<(d-a)*(e-i)&&--t;return t}(),n=k&&t,i=(d=(0,o.TS)(d)).length;(n||i)&&(r.polygonStart(),n&&(r.lineStart(),f(null,null,1,r),r.lineEnd()),i&&(0,a.Z)(d,h,t,f,r),r.polygonEnd()),S=r,d=p=v=null}};function E(e,t){u(e,t)&&S.point(e,t)}function C(r,i){var a=u(r,i);if(p&&v.push([r,i]),_)m=r,g=i,y=a,_=!1,a&&(S.lineStart(),S.point(r,i));else if(a&&w)S.point(r,i);else{var o=[b=Math.max(l,Math.min(s,b)),x=Math.max(l,Math.min(s,x))],f=[r=Math.max(l,Math.min(s,r)),i=Math.max(l,Math.min(s,i))];!function(e,t,n,r,i,a){var o,s=e[0],l=e[1],c=0,u=1,f=t[0]-s,d=t[1]-l;if(o=n-s,f||!(o>0)){if(o/=f,f<0){if(o0){if(o>u)return;o>c&&(c=o)}if(o=i-s,f||!(o<0)){if(o/=f,f<0){if(o>u)return;o>c&&(c=o)}else if(f>0){if(o0)){if(o/=d,d<0){if(o0){if(o>u)return;o>c&&(c=o)}if(o=a-l,d||!(o<0)){if(o/=d,d<0){if(o>u)return;o>c&&(c=o)}else if(d>0){if(o0&&(e[0]=s+c*f,e[1]=l+c*d),u<1&&(t[0]=s+u*f,t[1]=l+u*d),!0}}}}}(o,f,e,t,n,c)?a&&(S.lineStart(),S.point(r,i),k=!1):(w||(S.lineStart(),S.point(o[0],o[1])),S.point(f[0],f[1]),a||S.lineEnd(),k=!1)}b=r,x=i,w=a}return A}}},46225:function(e,t,n){"use strict";n.d(t,{Z:function(){return o}});var r=n(67108),i=n(39695);function a(e,t,n,r){this.x=e,this.z=t,this.o=n,this.e=r,this.v=!1,this.n=this.p=null}function o(e,t,n,o,l){var c,u,f=[],d=[];if(e.forEach((function(e){if(!((t=e.length-1)<=0)){var t,n,o=e[0],s=e[t];if((0,r.Z)(o,s)){if(!o[2]&&!s[2]){for(l.lineStart(),c=0;c=0;--c)l.point((p=h[c])[0],p[1]);else o(m.x,m.p.x,-1,l);m=m.p}h=(m=m.o).z,g=!g}while(!m.v);l.lineEnd()}}}function s(e){if(t=e.length){for(var t,n,r=0,i=e[0];++r0&&(i=E(e[a],e[a-1]))>0&&n<=i&&r<=i&&(n+r-i)*(1-Math.pow((n-r)/i,2))m.Ho})).map(l)).concat((0,N.w6)((0,m.mD)(a/h)*h,i,h).filter((function(e){return(0,m.Wn)(e%v)>m.Ho})).map(c))}return y.lines=function(){return b().map((function(e){return{type:"LineString",coordinates:e}}))},y.outline=function(){return{type:"Polygon",coordinates:[u(r).concat(f(o).slice(1),u(n).reverse().slice(1),f(s).reverse().slice(1))]}},y.extent=function(e){return arguments.length?y.extentMajor(e).extentMinor(e):y.extentMinor()},y.extentMajor=function(e){return arguments.length?(r=+e[0][0],n=+e[1][0],s=+e[0][1],o=+e[1][1],r>n&&(e=r,r=n,n=e),s>o&&(e=s,s=o,o=e),y.precision(g)):[[r,s],[n,o]]},y.extentMinor=function(n){return arguments.length?(t=+n[0][0],e=+n[1][0],a=+n[0][1],i=+n[1][1],t>e&&(n=t,t=e,e=n),a>i&&(n=a,a=i,i=n),y.precision(g)):[[t,a],[e,i]]},y.step=function(e){return arguments.length?y.stepMajor(e).stepMinor(e):y.stepMinor()},y.stepMajor=function(e){return arguments.length?(p=+e[0],v=+e[1],y):[p,v]},y.stepMinor=function(e){return arguments.length?(d=+e[0],h=+e[1],y):[d,h]},y.precision=function(d){return arguments.length?(g=+d,l=z(a,i,90),c=j(t,e,g),u=z(s,o,90),f=j(r,n,g),y):g},y.extentMajor([[-180,-90+m.Ho],[180,90-m.Ho]]).extentMinor([[-180,-80-m.Ho],[180,80+m.Ho]])}function U(){return B()()}var H,$,V,W,q=n(83074),G=n(8593),Z=(0,v.Z)(),Y=(0,v.Z)(),K={point:g.Z,lineStart:g.Z,lineEnd:g.Z,polygonStart:function(){K.lineStart=X,K.lineEnd=ee},polygonEnd:function(){K.lineStart=K.lineEnd=K.point=g.Z,Z.add((0,m.Wn)(Y)),Y.reset()},result:function(){var e=Z/2;return Z.reset(),e}};function X(){K.point=J}function J(e,t){K.point=Q,H=V=e,$=W=t}function Q(e,t){Y.add(W*e-V*t),V=e,W=t}function ee(){Q(H,$)}var te,ne,re,ie,ae=K,oe=n(3559),se=0,le=0,ce=0,ue=0,fe=0,de=0,he=0,pe=0,ve=0,me={point:ge,lineStart:ye,lineEnd:we,polygonStart:function(){me.lineStart=_e,me.lineEnd=ke},polygonEnd:function(){me.point=ge,me.lineStart=ye,me.lineEnd=we},result:function(){var e=ve?[he/ve,pe/ve]:de?[ue/de,fe/de]:ce?[se/ce,le/ce]:[NaN,NaN];return se=le=ce=ue=fe=de=he=pe=ve=0,e}};function ge(e,t){se+=e,le+=t,++ce}function ye(){me.point=be}function be(e,t){me.point=xe,ge(re=e,ie=t)}function xe(e,t){var n=e-re,r=t-ie,i=(0,m._b)(n*n+r*r);ue+=i*(re+e)/2,fe+=i*(ie+t)/2,de+=i,ge(re=e,ie=t)}function we(){me.point=ge}function _e(){me.point=Se}function ke(){Te(te,ne)}function Se(e,t){me.point=Te,ge(te=re=e,ne=ie=t)}function Te(e,t){var n=e-re,r=t-ie,i=(0,m._b)(n*n+r*r);ue+=i*(re+e)/2,fe+=i*(ie+t)/2,de+=i,he+=(i=ie*e-re*t)*(re+e),pe+=i*(ie+t),ve+=3*i,ge(re=e,ie=t)}var Ae=me;function Ee(e){this._context=e}Ee.prototype={_radius:4.5,pointRadius:function(e){return this._radius=e,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(e,t){switch(this._point){case 0:this._context.moveTo(e,t),this._point=1;break;case 1:this._context.lineTo(e,t);break;default:this._context.moveTo(e+this._radius,t),this._context.arc(e,t,this._radius,0,m.BZ)}},result:g.Z};var Ce,Me,Oe,Pe,Le,Ie=(0,v.Z)(),Re={point:g.Z,lineStart:function(){Re.point=De},lineEnd:function(){Ce&&Fe(Me,Oe),Re.point=g.Z},polygonStart:function(){Ce=!0},polygonEnd:function(){Ce=null},result:function(){var e=+Ie;return Ie.reset(),e}};function De(e,t){Re.point=Fe,Me=Pe=e,Oe=Le=t}function Fe(e,t){Pe-=e,Le-=t,Ie.add((0,m._b)(Pe*Pe+Le*Le)),Pe=e,Le=t}var Ne=Re;function ze(){this._string=[]}function je(e){return"m0,"+e+"a"+e+","+e+" 0 1,1 0,"+-2*e+"a"+e+","+e+" 0 1,1 0,"+2*e+"z"}function Be(e,t){var n,r,i=4.5;function a(e){return e&&("function"===typeof i&&r.pointRadius(+i.apply(this,arguments)),(0,y.Z)(e,n(r))),r.result()}return a.area=function(e){return(0,y.Z)(e,n(ae)),ae.result()},a.measure=function(e){return(0,y.Z)(e,n(Ne)),Ne.result()},a.bounds=function(e){return(0,y.Z)(e,n(oe.Z)),oe.Z.result()},a.centroid=function(e){return(0,y.Z)(e,n(Ae)),Ae.result()},a.projection=function(t){return arguments.length?(n=null==t?(e=null,G.Z):(e=t).stream,a):e},a.context=function(e){return arguments.length?(r=null==e?(t=null,new ze):new Ee(t=e),"function"!==typeof i&&r.pointRadius(i),a):t},a.pointRadius=function(e){return arguments.length?(i="function"===typeof e?e:(r.pointRadius(+e),+e),a):i},a.projection(e).context(t)}ze.prototype={_radius:4.5,_circle:je(4.5),pointRadius:function(e){return(e=+e)!==this._radius&&(this._radius=e,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(e,t){switch(this._point){case 0:this._string.push("M",e,",",t),this._point=1;break;case 1:this._string.push("L",e,",",t);break;default:null==this._circle&&(this._circle=je(this._radius)),this._string.push("M",e,",",t,this._circle)}},result:function(){if(this._string.length){var e=this._string.join("");return this._string=[],e}return null}};var Ue=n(15002);function He(e){var t=0,n=m.pi/3,r=(0,Ue.r)(e),i=r(t,n);return i.parallels=function(e){return arguments.length?r(t=e[0]*m.uR,n=e[1]*m.uR):[t*m.RW,n*m.RW]},i}function $e(e,t){var n=(0,m.O$)(e),r=(n+(0,m.O$)(t))/2;if((0,m.Wn)(r)=.12&&i<.234&&r>=-.425&&r<-.214?s:i>=.166&&i<.234&&r>=-.214&&r<-.115?l:o).invert(e)},u.stream=function(n){return e&&t===n?e:e=function(e){var t=e.length;return{point:function(n,r){for(var i=-1;++i0?t<-m.ou+m.Ho&&(t=-m.ou+m.Ho):t>m.ou-m.Ho&&(t=m.ou-m.Ho);var n=i/(0,m.sQ)(et(t),r);return[n*(0,m.O$)(r*e),i-n*(0,m.mC)(r*e)]}return a.invert=function(e,t){var n=i-t,a=(0,m.Xx)(r)*(0,m._b)(e*e+n*n),o=(0,m.fv)(e,(0,m.Wn)(n))*(0,m.Xx)(n);return n*r<0&&(o-=m.pi*(0,m.Xx)(e)*(0,m.Xx)(n)),[o/r,2*(0,m.z4)((0,m.sQ)(i/a,1/r))-m.ou]},a}function nt(){return He(tt).scale(109.5).parallels([30,30])}Xe.invert=function(e,t){return[e,2*(0,m.z4)((0,m.Qq)(t))-m.ou]};var rt=n(97492);function it(e,t){var n=(0,m.mC)(e),r=e===t?(0,m.O$)(e):(n-(0,m.mC)(t))/(t-e),i=n/r+e;if((0,m.Wn)(r)2?e[2]+90:90]):[(e=n())[0],e[1],e[2]-90]},n([0,0,90]).scale(159.155)}bt.invert=(0,yt.O)((function(e){return 2*(0,m.z4)(e)})),wt.invert=function(e,t){return[-t,2*(0,m.z4)((0,m.Qq)(e))-m.ou]}},83074:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(39695);function i(e,t){var n=e[0]*r.uR,i=e[1]*r.uR,a=t[0]*r.uR,o=t[1]*r.uR,s=(0,r.mC)(i),l=(0,r.O$)(i),c=(0,r.mC)(o),u=(0,r.O$)(o),f=s*(0,r.mC)(n),d=s*(0,r.O$)(n),h=c*(0,r.mC)(a),p=c*(0,r.O$)(a),v=2*(0,r.ZR)((0,r._b)((0,r.Jy)(o-i)+s*c*(0,r.Jy)(a-n))),m=(0,r.O$)(v),g=v?function(e){var t=(0,r.O$)(e*=v)/m,n=(0,r.O$)(v-e)/m,i=n*f+t*h,a=n*d+t*p,o=n*l+t*u;return[(0,r.fv)(a,i)*r.RW,(0,r.fv)(o,(0,r._b)(i*i+a*a))*r.RW]}:function(){return[n*r.RW,i*r.RW]};return g.distance=v,g}},39695:function(e,t,n){"use strict";n.d(t,{BZ:function(){return l},Ho:function(){return r},Jy:function(){return T},Kh:function(){return k},O$:function(){return b},OR:function(){return _},Qq:function(){return m},RW:function(){return c},Wn:function(){return f},Xx:function(){return x},ZR:function(){return S},_b:function(){return w},aW:function(){return i},cM:function(){return g},fv:function(){return h},mC:function(){return p},mD:function(){return v},ou:function(){return o},pi:function(){return a},pu:function(){return s},sQ:function(){return y},uR:function(){return u},z4:function(){return d}});var r=1e-6,i=1e-12,a=Math.PI,o=a/2,s=a/4,l=2*a,c=180/a,u=a/180,f=Math.abs,d=Math.atan,h=Math.atan2,p=Math.cos,v=Math.ceil,m=Math.exp,g=(Math.floor,Math.log),y=Math.pow,b=Math.sin,x=Math.sign||function(e){return e>0?1:e<0?-1:0},w=Math.sqrt,_=Math.tan;function k(e){return e>1?0:e<-1?a:Math.acos(e)}function S(e){return e>1?o:e<-1?-o:Math.asin(e)}function T(e){return(e=b(e/2))*e}},73182:function(e,t,n){"use strict";function r(){}n.d(t,{Z:function(){return r}})},3559:function(e,t,n){"use strict";var r=n(73182),i=1/0,a=i,o=-i,s=o,l={point:function(e,t){eo&&(o=e),ts&&(s=t)},lineStart:r.Z,lineEnd:r.Z,polygonStart:r.Z,polygonEnd:r.Z,result:function(){var e=[[i,a],[o,s]];return o=s=-(a=i=1/0),e}};t.Z=l},67108:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});var r=n(39695);function i(e,t){return(0,r.Wn)(e[0]-t[0])=0?1:-1,M=C*E,O=M>a.pi,P=b*T;if(o.add((0,a.fv)(P*C*(0,a.O$)(M),x*A+P*(0,a.mC)(M))),u+=O?E+C*a.BZ:E,O^g>=n^k>=n){var L=(0,i.T5)((0,i.Og)(m),(0,i.Og)(_));(0,i.iJ)(L);var I=(0,i.T5)(c,L);(0,i.iJ)(I);var R=(O^E>=0?-1:1)*(0,a.ZR)(I[2]);(r>R||r===R&&(L[0]||L[1]))&&(f+=O^E>=0?1:-1)}}return(u<-a.Ho||u4*t&&g--){var _=o+h,k=s+v,S=c+m,T=(0,l._b)(_*_+k*k+S*S),A=(0,l.ZR)(S/=T),E=(0,l.Wn)((0,l.Wn)(S)-1)t||(0,l.Wn)((b*P+x*L)/w-.5)>.3||o*h+s*v+c*m2?e[2]%360*l.uR:0,H()):[M*l.RW,O*l.RW,P*l.RW]},B.angle=function(e){return arguments.length?(L=e%360*l.uR,H()):L*l.RW},B.reflectX=function(e){return arguments.length?(I=e?-1:1,H()):I<0},B.reflectY=function(e){return arguments.length?(R=e?-1:1,H()):R<0},B.precision=function(e){return arguments.length?(b=v(x,j=e*e),$()):(0,l._b)(j)},B.fitExtent=function(e,t){return(0,f.qg)(B,e,t)},B.fitSize=function(e,t){return(0,f.mF)(B,e,t)},B.fitWidth=function(e,t){return(0,f.V6)(B,e,t)},B.fitHeight=function(e,t){return(0,f.rf)(B,e,t)},function(){return t=e.apply(this,arguments),B.invert=t.invert&&U,H()}}},26867:function(e,t,n){"use strict";n.d(t,{K:function(){return a},Z:function(){return o}});var r=n(15002),i=n(39695);function a(e,t){var n=t*t,r=n*n;return[e*(.8707-.131979*n+r*(r*(.003971*n-.001529*r)-.013791)),t*(1.007226+n*(.015085+r*(.028874*n-.044475-.005916*r)))]}function o(){return(0,r.Z)(a).scale(175.295)}a.invert=function(e,t){var n,r=t,a=25;do{var o=r*r,s=o*o;r-=n=(r*(1.007226+o*(.015085+s*(.028874*o-.044475-.005916*s)))-t)/(1.007226+o*(.045255+s*(.259866*o-.311325-.005916*11*s)))}while((0,i.Wn)(n)>i.Ho&&--a>0);return[e/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]}},57962:function(e,t,n){"use strict";n.d(t,{I:function(){return o},Z:function(){return s}});var r=n(39695),i=n(25382),a=n(15002);function o(e,t){return[(0,r.mC)(t)*(0,r.O$)(e),(0,r.O$)(t)]}function s(){return(0,a.Z)(o).scale(249.5).clipAngle(90+r.Ho)}o.invert=(0,i.O)(r.ZR)},49386:function(e,t,n){"use strict";n.d(t,{I:function(){return o},Z:function(){return u}});var r=n(96059),i=n(39695);function a(e,t){return[(0,i.Wn)(e)>i.pi?e+Math.round(-e/i.BZ)*i.BZ:e,t]}function o(e,t,n){return(e%=i.BZ)?t||n?(0,r.Z)(l(e),c(t,n)):l(e):t||n?c(t,n):a}function s(e){return function(t,n){return[(t+=e)>i.pi?t-i.BZ:t<-i.pi?t+i.BZ:t,n]}}function l(e){var t=s(e);return t.invert=s(-e),t}function c(e,t){var n=(0,i.mC)(e),r=(0,i.O$)(e),a=(0,i.mC)(t),o=(0,i.O$)(t);function s(e,t){var s=(0,i.mC)(t),l=(0,i.mC)(e)*s,c=(0,i.O$)(e)*s,u=(0,i.O$)(t),f=u*n+l*r;return[(0,i.fv)(c*a-f*o,l*n-u*r),(0,i.ZR)(f*a+c*o)]}return s.invert=function(e,t){var s=(0,i.mC)(t),l=(0,i.mC)(e)*s,c=(0,i.O$)(e)*s,u=(0,i.O$)(t),f=u*a-c*o;return[(0,i.fv)(c*a+u*o,l*n+f*r),(0,i.ZR)(f*n-l*r)]},s}function u(e){function t(t){return(t=e(t[0]*i.uR,t[1]*i.uR))[0]*=i.RW,t[1]*=i.RW,t}return e=o(e[0]*i.uR,e[1]*i.uR,e.length>2?e[2]*i.uR:0),t.invert=function(t){return(t=e.invert(t[0]*i.uR,t[1]*i.uR))[0]*=i.RW,t[1]*=i.RW,t},t}a.invert=a},72736:function(e,t,n){"use strict";function r(e,t){e&&a.hasOwnProperty(e.type)&&a[e.type](e,t)}n.d(t,{Z:function(){return l}});var i={Feature:function(e,t){r(e.geometry,t)},FeatureCollection:function(e,t){for(var n=e.features,i=-1,a=n.length;++i=0;)t+=n[r].value;else t=1;e.value=t}function l(e,t){var n,r,i,a,o,s=new d(e),l=+e.value&&(s.value=e.value),u=[s];for(null==t&&(t=c);n=u.pop();)if(l&&(n.value=+n.data.value),(i=t(n.data))&&(o=i.length))for(n.children=new Array(o),a=o-1;a>=0;--a)u.push(r=n.children[a]=new d(i[a])),r.parent=n,r.depth=n.depth+1;return s.eachBefore(f)}function c(e){return e.children}function u(e){e.data=e.data.data}function f(e){var t=0;do{e.height=t}while((e=e.parent)&&e.height<++t)}function d(e){this.data=e,this.depth=this.height=0,this.parent=null}n.r(t),n.d(t,{cluster:function(){return o},hierarchy:function(){return l},pack:function(){return L},packEnclose:function(){return p},packSiblings:function(){return E},partition:function(){return z},stratify:function(){return V},tree:function(){return X},treemap:function(){return ne},treemapBinary:function(){return re},treemapDice:function(){return N},treemapResquarify:function(){return ae},treemapSlice:function(){return J},treemapSliceDice:function(){return ie},treemapSquarify:function(){return te}}),d.prototype=l.prototype={constructor:d,count:function(){return this.eachAfter(s)},each:function(e){var t,n,r,i,a=this,o=[a];do{for(t=o.reverse(),o=[];a=t.pop();)if(e(a),n=a.children)for(r=0,i=n.length;r=0;--n)i.push(t[n]);return this},sum:function(e){return this.eachAfter((function(t){for(var n=+e(t.data)||0,r=t.children,i=r&&r.length;--i>=0;)n+=r[i].value;t.value=n}))},sort:function(e){return this.eachBefore((function(t){t.children&&t.children.sort(e)}))},path:function(e){for(var t=this,n=function(e,t){if(e===t)return e;var n=e.ancestors(),r=t.ancestors(),i=null;for(e=n.pop(),t=r.pop();e===t;)i=e,e=n.pop(),t=r.pop();return i}(t,e),r=[t];t!==n;)t=t.parent,r.push(t);for(var i=r.length;e!==n;)r.splice(i,0,e),e=e.parent;return r},ancestors:function(){for(var e=this,t=[e];e=e.parent;)t.push(e);return t},descendants:function(){var e=[];return this.each((function(t){e.push(t)})),e},leaves:function(){var e=[];return this.eachBefore((function(t){t.children||e.push(t)})),e},links:function(){var e=this,t=[];return e.each((function(n){n!==e&&t.push({source:n.parent,target:n})})),t},copy:function(){return l(this).eachBefore(u)}};var h=Array.prototype.slice;function p(e){for(var t,n,r=0,i=(e=function(e){for(var t,n,r=e.length;r;)n=Math.random()*r--|0,t=e[r],e[r]=e[n],e[n]=t;return e}(h.call(e))).length,a=[];r0&&n*n>r*r+i*i}function y(e,t){for(var n=0;n(o*=o)?(r=(c+o-i)/(2*c),a=Math.sqrt(Math.max(0,o/c-r*r)),n.x=e.x-r*s-a*l,n.y=e.y-r*l+a*s):(r=(c+i-o)/(2*c),a=Math.sqrt(Math.max(0,i/c-r*r)),n.x=t.x+r*s-a*l,n.y=t.y+r*l+a*s)):(n.x=t.x+n.r,n.y=t.y)}function k(e,t){var n=e.r+t.r-1e-6,r=t.x-e.x,i=t.y-e.y;return n>0&&n*n>r*r+i*i}function S(e){var t=e._,n=e.next._,r=t.r+n.r,i=(t.x*n.r+n.x*t.r)/r,a=(t.y*n.r+n.y*t.r)/r;return i*i+a*a}function T(e){this._=e,this.next=null,this.previous=null}function A(e){if(!(i=e.length))return 0;var t,n,r,i,a,o,s,l,c,u,f;if((t=e[0]).x=0,t.y=0,!(i>1))return t.r;if(n=e[1],t.x=-n.r,n.x=t.r,n.y=0,!(i>2))return t.r+n.r;_(n,t,r=e[2]),t=new T(t),n=new T(n),r=new T(r),t.next=r.previous=n,n.next=t.previous=r,r.next=n.previous=t;e:for(s=3;s0)throw new Error("cycle");return a}return n.id=function(t){return arguments.length?(e=C(t),n):e},n.parentId=function(e){return arguments.length?(t=C(e),n):t},n}function W(e,t){return e.parent===t.parent?1:2}function q(e){var t=e.children;return t?t[0]:e.t}function G(e){var t=e.children;return t?t[t.length-1]:e.t}function Z(e,t,n){var r=n/(t.i-e.i);t.c-=r,t.s+=n,e.c+=r,t.z+=n,t.m+=n}function Y(e,t,n){return e.a.parent===t.parent?e.a:n}function K(e,t){this._=e,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=t}function X(){var e=W,t=1,n=1,r=null;function i(i){var l=function(e){for(var t,n,r,i,a,o=new K(e,0),s=[o];t=s.pop();)if(r=t._.children)for(t.children=new Array(a=r.length),i=a-1;i>=0;--i)s.push(n=t.children[i]=new K(r[i],i)),n.parent=t;return(o.parent=new K(null,0)).children=[o],o}(i);if(l.eachAfter(a),l.parent.m=-l.z,l.eachBefore(o),r)i.eachBefore(s);else{var c=i,u=i,f=i;i.eachBefore((function(e){e.xu.x&&(u=e),e.depth>f.depth&&(f=e)}));var d=c===u?1:e(c,u)/2,h=d-c.x,p=t/(u.x+d+h),v=n/(f.depth||1);i.eachBefore((function(e){e.x=(e.x+h)*p,e.y=e.depth*v}))}return i}function a(t){var n=t.children,r=t.parent.children,i=t.i?r[t.i-1]:null;if(n){!function(e){for(var t,n=0,r=0,i=e.children,a=i.length;--a>=0;)(t=i[a]).z+=n,t.m+=n,n+=t.s+(r+=t.c)}(t);var a=(n[0].z+n[n.length-1].z)/2;i?(t.z=i.z+e(t._,i._),t.m=t.z-a):t.z=a}else i&&(t.z=i.z+e(t._,i._));t.parent.A=function(t,n,r){if(n){for(var i,a=t,o=t,s=n,l=a.parent.children[0],c=a.m,u=o.m,f=s.m,d=l.m;s=G(s),a=q(a),s&&a;)l=q(l),(o=G(o)).a=t,(i=s.z+f-a.z-c+e(s._,a._))>0&&(Z(Y(s,t,r),t,i),c+=i,u+=i),f+=s.m,c+=a.m,d+=l.m,u+=o.m;s&&!G(o)&&(o.t=s,o.m+=f-u),a&&!q(l)&&(l.t=a,l.m+=c-d,r=t)}return r}(t,i,t.parent.A||r[0])}function o(e){e._.x=e.z+e.parent.m,e.m+=e.parent.m}function s(e){e.x*=t,e.y=e.depth*n}return i.separation=function(t){return arguments.length?(e=t,i):e},i.size=function(e){return arguments.length?(r=!1,t=+e[0],n=+e[1],i):r?null:[t,n]},i.nodeSize=function(e){return arguments.length?(r=!0,t=+e[0],n=+e[1],i):r?[t,n]:null},i}function J(e,t,n,r,i){for(var a,o=e.children,s=-1,l=o.length,c=e.value&&(i-n)/e.value;++sd&&(d=s),m=u*u*v,(h=Math.max(d/m,m/f))>p){u-=s;break}p=h}g.push(o={value:u,dice:l1?t:1)},n}(Q);function ne(){var e=te,t=!1,n=1,r=1,i=[0],a=M,o=M,s=M,l=M,c=M;function u(e){return e.x0=e.y0=0,e.x1=n,e.y1=r,e.eachBefore(f),i=[0],t&&e.eachBefore(F),e}function f(t){var n=i[t.depth],r=t.x0+n,u=t.y0+n,f=t.x1-n,d=t.y1-n;f=n-1){var u=s[t];return u.x0=i,u.y0=a,u.x1=o,void(u.y1=l)}for(var f=c[t],d=r/2+f,h=t+1,p=n-1;h>>1;c[v]l-a){var y=(i*g+o*m)/r;e(t,h,m,i,a,y,l),e(h,n,g,y,a,o,l)}else{var b=(a*g+l*m)/r;e(t,h,m,i,a,o,b),e(h,n,g,i,b,o,l)}}(0,l,e.value,t,n,r,i)}function ie(e,t,n,r,i){(1&e.depth?J:N)(e,t,n,r,i)}var ae=function e(t){function n(e,n,r,i,a){if((o=e._squarify)&&o.ratio===t)for(var o,s,l,c,u,f=-1,d=o.length,h=e.value;++f1?t:1)},n}(Q)},45879:function(e,t,n){"use strict";n.d(t,{h5:function(){return y}});var r=Math.PI,i=2*r,a=1e-6,o=i-a;function s(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function l(){return new s}s.prototype=l.prototype={constructor:s,moveTo:function(e,t){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(e,t){this._+="L"+(this._x1=+e)+","+(this._y1=+t)},quadraticCurveTo:function(e,t,n,r){this._+="Q"+ +e+","+ +t+","+(this._x1=+n)+","+(this._y1=+r)},bezierCurveTo:function(e,t,n,r,i,a){this._+="C"+ +e+","+ +t+","+ +n+","+ +r+","+(this._x1=+i)+","+(this._y1=+a)},arcTo:function(e,t,n,i,o){e=+e,t=+t,n=+n,i=+i,o=+o;var s=this._x1,l=this._y1,c=n-e,u=i-t,f=s-e,d=l-t,h=f*f+d*d;if(o<0)throw new Error("negative radius: "+o);if(null===this._x1)this._+="M"+(this._x1=e)+","+(this._y1=t);else if(h>a)if(Math.abs(d*c-u*f)>a&&o){var p=n-s,v=i-l,m=c*c+u*u,g=p*p+v*v,y=Math.sqrt(m),b=Math.sqrt(h),x=o*Math.tan((r-Math.acos((m+h-g)/(2*y*b)))/2),w=x/b,_=x/y;Math.abs(w-1)>a&&(this._+="L"+(e+w*f)+","+(t+w*d)),this._+="A"+o+","+o+",0,0,"+ +(d*p>f*v)+","+(this._x1=e+_*c)+","+(this._y1=t+_*u)}else this._+="L"+(this._x1=e)+","+(this._y1=t)},arc:function(e,t,n,s,l,c){e=+e,t=+t,c=!!c;var u=(n=+n)*Math.cos(s),f=n*Math.sin(s),d=e+u,h=t+f,p=1^c,v=c?s-l:l-s;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+d+","+h:(Math.abs(this._x1-d)>a||Math.abs(this._y1-h)>a)&&(this._+="L"+d+","+h),n&&(v<0&&(v=v%i+i),v>o?this._+="A"+n+","+n+",0,1,"+p+","+(e-u)+","+(t-f)+"A"+n+","+n+",0,1,"+p+","+(this._x1=d)+","+(this._y1=h):v>a&&(this._+="A"+n+","+n+",0,"+ +(v>=r)+","+p+","+(this._x1=e+n*Math.cos(l))+","+(this._y1=t+n*Math.sin(l))))},rect:function(e,t,n,r){this._+="M"+(this._x0=this._x1=+e)+","+(this._y0=this._y1=+t)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var c=l,u=Array.prototype.slice;function f(e){return function(){return e}}function d(e){return e[0]}function h(e){return e[1]}function p(e){return e.source}function v(e){return e.target}function m(e){var t=p,n=v,r=d,i=h,a=null;function o(){var o,s=u.call(arguments),l=t.apply(this,s),f=n.apply(this,s);if(a||(a=o=c()),e(a,+r.apply(this,(s[0]=l,s)),+i.apply(this,s),+r.apply(this,(s[0]=f,s)),+i.apply(this,s)),o)return a=null,o+""||null}return o.source=function(e){return arguments.length?(t=e,o):t},o.target=function(e){return arguments.length?(n=e,o):n},o.x=function(e){return arguments.length?(r="function"===typeof e?e:f(+e),o):r},o.y=function(e){return arguments.length?(i="function"===typeof e?e:f(+e),o):i},o.context=function(e){return arguments.length?(a=null==e?null:e,o):a},o}function g(e,t,n,r,i){e.moveTo(t,n),e.bezierCurveTo(t=(t+r)/2,n,t,i,r,i)}function y(){return m(g)}},84096:function(e,t,n){"use strict";n.d(t,{i$:function(){return p},Dq:function(){return d},g0:function(){return v}});var r=n(58176),i=n(48480),a=n(59879),o=n(82301),s=n(34823),l=n(79791);function c(e){if(0<=e.y&&e.y<100){var t=new Date(-1,e.m,e.d,e.H,e.M,e.S,e.L);return t.setFullYear(e.y),t}return new Date(e.y,e.m,e.d,e.H,e.M,e.S,e.L)}function u(e){if(0<=e.y&&e.y<100){var t=new Date(Date.UTC(-1,e.m,e.d,e.H,e.M,e.S,e.L));return t.setUTCFullYear(e.y),t}return new Date(Date.UTC(e.y,e.m,e.d,e.H,e.M,e.S,e.L))}function f(e,t,n){return{y:e,m:t,d:n,H:0,M:0,S:0,L:0}}function d(e){var t=e.dateTime,n=e.date,s=e.time,l=e.periods,d=e.days,h=e.shortDays,p=e.months,v=e.shortMonths,g=_(l),y=k(l),b=_(d),x=k(d),w=_(h),Ee=k(h),Ce=_(p),Me=k(p),Oe=_(v),Pe=k(v),Le={a:function(e){return h[e.getDay()]},A:function(e){return d[e.getDay()]},b:function(e){return v[e.getMonth()]},B:function(e){return p[e.getMonth()]},c:null,d:V,e:V,f:Y,H:W,I:q,j:G,L:Z,m:K,M:X,p:function(e){return l[+(e.getHours()>=12)]},q:function(e){return 1+~~(e.getMonth()/3)},Q:Te,s:Ae,S:J,u:Q,U:ee,V:te,w:ne,W:re,x:null,X:null,y:ie,Y:ae,Z:oe,"%":Se},Ie={a:function(e){return h[e.getUTCDay()]},A:function(e){return d[e.getUTCDay()]},b:function(e){return v[e.getUTCMonth()]},B:function(e){return p[e.getUTCMonth()]},c:null,d:se,e:se,f:de,H:le,I:ce,j:ue,L:fe,m:he,M:pe,p:function(e){return l[+(e.getUTCHours()>=12)]},q:function(e){return 1+~~(e.getUTCMonth()/3)},Q:Te,s:Ae,S:ve,u:me,U:ge,V:ye,w:be,W:xe,x:null,X:null,y:we,Y:_e,Z:ke,"%":Se},Re={a:function(e,t,n){var r=w.exec(t.slice(n));return r?(e.w=Ee[r[0].toLowerCase()],n+r[0].length):-1},A:function(e,t,n){var r=b.exec(t.slice(n));return r?(e.w=x[r[0].toLowerCase()],n+r[0].length):-1},b:function(e,t,n){var r=Oe.exec(t.slice(n));return r?(e.m=Pe[r[0].toLowerCase()],n+r[0].length):-1},B:function(e,t,n){var r=Ce.exec(t.slice(n));return r?(e.m=Me[r[0].toLowerCase()],n+r[0].length):-1},c:function(e,n,r){return Ne(e,t,n,r)},d:R,e:R,f:B,H:F,I:F,j:D,L:j,m:I,M:N,p:function(e,t,n){var r=g.exec(t.slice(n));return r?(e.p=y[r[0].toLowerCase()],n+r[0].length):-1},q:L,Q:H,s:$,S:z,u:T,U:A,V:E,w:S,W:C,x:function(e,t,r){return Ne(e,n,t,r)},X:function(e,t,n){return Ne(e,s,t,n)},y:O,Y:M,Z:P,"%":U};function De(e,t){return function(n){var r,i,a,o=[],s=-1,l=0,c=e.length;for(n instanceof Date||(n=new Date(+n));++s53)return null;"w"in d||(d.w=1),"Z"in d?(l=(s=u(f(d.y,0,1))).getUTCDay(),s=l>4||0===l?r.l6.ceil(s):(0,r.l6)(s),s=i.Z.offset(s,7*(d.V-1)),d.y=s.getUTCFullYear(),d.m=s.getUTCMonth(),d.d=s.getUTCDate()+(d.w+6)%7):(l=(s=c(f(d.y,0,1))).getDay(),s=l>4||0===l?a.wA.ceil(s):(0,a.wA)(s),s=o.Z.offset(s,7*(d.V-1)),d.y=s.getFullYear(),d.m=s.getMonth(),d.d=s.getDate()+(d.w+6)%7)}else("W"in d||"U"in d)&&("w"in d||(d.w="u"in d?d.u%7:"W"in d?1:0),l="Z"in d?u(f(d.y,0,1)).getUTCDay():c(f(d.y,0,1)).getDay(),d.m=0,d.d="W"in d?(d.w+6)%7+7*d.W-(l+5)%7:d.w+7*d.U-(l+6)%7);return"Z"in d?(d.H+=d.Z/100|0,d.M+=d.Z%100,u(d)):c(d)}}function Ne(e,t,n,r){for(var i,a,o=0,s=t.length,l=n.length;o=l)return-1;if(37===(i=t.charCodeAt(o++))){if(i=t.charAt(o++),!(a=Re[i in m?t.charAt(o++):i])||(r=a(e,n,r))<0)return-1}else if(i!=n.charCodeAt(r++))return-1}return r}return Le.x=De(n,Le),Le.X=De(s,Le),Le.c=De(t,Le),Ie.x=De(n,Ie),Ie.X=De(s,Ie),Ie.c=De(t,Ie),{format:function(e){var t=De(e+="",Le);return t.toString=function(){return e},t},parse:function(e){var t=Fe(e+="",!1);return t.toString=function(){return e},t},utcFormat:function(e){var t=De(e+="",Ie);return t.toString=function(){return e},t},utcParse:function(e){var t=Fe(e+="",!0);return t.toString=function(){return e},t}}}var h,p,v,m={"-":"",_:" ",0:"0"},g=/^\s*\d+/,y=/^%/,b=/[\\^$*+?|[\]().{}]/g;function x(e,t,n){var r=e<0?"-":"",i=(r?-e:e)+"",a=i.length;return r+(a68?1900:2e3),n+r[0].length):-1}function P(e,t,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(t.slice(n,n+6));return r?(e.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function L(e,t,n){var r=g.exec(t.slice(n,n+1));return r?(e.q=3*r[0]-3,n+r[0].length):-1}function I(e,t,n){var r=g.exec(t.slice(n,n+2));return r?(e.m=r[0]-1,n+r[0].length):-1}function R(e,t,n){var r=g.exec(t.slice(n,n+2));return r?(e.d=+r[0],n+r[0].length):-1}function D(e,t,n){var r=g.exec(t.slice(n,n+3));return r?(e.m=0,e.d=+r[0],n+r[0].length):-1}function F(e,t,n){var r=g.exec(t.slice(n,n+2));return r?(e.H=+r[0],n+r[0].length):-1}function N(e,t,n){var r=g.exec(t.slice(n,n+2));return r?(e.M=+r[0],n+r[0].length):-1}function z(e,t,n){var r=g.exec(t.slice(n,n+2));return r?(e.S=+r[0],n+r[0].length):-1}function j(e,t,n){var r=g.exec(t.slice(n,n+3));return r?(e.L=+r[0],n+r[0].length):-1}function B(e,t,n){var r=g.exec(t.slice(n,n+6));return r?(e.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function U(e,t,n){var r=y.exec(t.slice(n,n+1));return r?n+r[0].length:-1}function H(e,t,n){var r=g.exec(t.slice(n));return r?(e.Q=+r[0],n+r[0].length):-1}function $(e,t,n){var r=g.exec(t.slice(n));return r?(e.s=+r[0],n+r[0].length):-1}function V(e,t){return x(e.getDate(),t,2)}function W(e,t){return x(e.getHours(),t,2)}function q(e,t){return x(e.getHours()%12||12,t,2)}function G(e,t){return x(1+o.Z.count((0,s.Z)(e),e),t,3)}function Z(e,t){return x(e.getMilliseconds(),t,3)}function Y(e,t){return Z(e,t)+"000"}function K(e,t){return x(e.getMonth()+1,t,2)}function X(e,t){return x(e.getMinutes(),t,2)}function J(e,t){return x(e.getSeconds(),t,2)}function Q(e){var t=e.getDay();return 0===t?7:t}function ee(e,t){return x(a.OM.count((0,s.Z)(e)-1,e),t,2)}function te(e,t){var n=e.getDay();return e=n>=4||0===n?(0,a.bL)(e):a.bL.ceil(e),x(a.bL.count((0,s.Z)(e),e)+(4===(0,s.Z)(e).getDay()),t,2)}function ne(e){return e.getDay()}function re(e,t){return x(a.wA.count((0,s.Z)(e)-1,e),t,2)}function ie(e,t){return x(e.getFullYear()%100,t,2)}function ae(e,t){return x(e.getFullYear()%1e4,t,4)}function oe(e){var t=e.getTimezoneOffset();return(t>0?"-":(t*=-1,"+"))+x(t/60|0,"0",2)+x(t%60,"0",2)}function se(e,t){return x(e.getUTCDate(),t,2)}function le(e,t){return x(e.getUTCHours(),t,2)}function ce(e,t){return x(e.getUTCHours()%12||12,t,2)}function ue(e,t){return x(1+i.Z.count((0,l.Z)(e),e),t,3)}function fe(e,t){return x(e.getUTCMilliseconds(),t,3)}function de(e,t){return fe(e,t)+"000"}function he(e,t){return x(e.getUTCMonth()+1,t,2)}function pe(e,t){return x(e.getUTCMinutes(),t,2)}function ve(e,t){return x(e.getUTCSeconds(),t,2)}function me(e){var t=e.getUTCDay();return 0===t?7:t}function ge(e,t){return x(r.Ox.count((0,l.Z)(e)-1,e),t,2)}function ye(e,t){var n=e.getUTCDay();return e=n>=4||0===n?(0,r.hB)(e):r.hB.ceil(e),x(r.hB.count((0,l.Z)(e),e)+(4===(0,l.Z)(e).getUTCDay()),t,2)}function be(e){return e.getUTCDay()}function xe(e,t){return x(r.l6.count((0,l.Z)(e)-1,e),t,2)}function we(e,t){return x(e.getUTCFullYear()%100,t,2)}function _e(e,t){return x(e.getUTCFullYear()%1e4,t,4)}function ke(){return"+0000"}function Se(){return"%"}function Te(e){return+e}function Ae(e){return Math.floor(+e/1e3)}h=d({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}),p=h.format,h.parse,v=h.utcFormat,h.utcParse},82301:function(e,t,n){"use strict";n.d(t,{a:function(){return o}});var r=n(30052),i=n(54263),a=(0,r.Z)((function(e){e.setHours(0,0,0,0)}),(function(e,t){e.setDate(e.getDate()+t)}),(function(e,t){return(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*i.yB)/i.UD}),(function(e){return e.getDate()-1}));t.Z=a;var o=a.range},54263:function(e,t,n){"use strict";n.d(t,{UD:function(){return o},Y2:function(){return a},Ym:function(){return r},iM:function(){return s},yB:function(){return i}});var r=1e3,i=6e4,a=36e5,o=864e5,s=6048e5},81041:function(e,t,n){"use strict";n.r(t),n.d(t,{timeDay:function(){return g.Z},timeDays:function(){return g.a},timeFriday:function(){return y.mC},timeFridays:function(){return y.b$},timeHour:function(){return v},timeHours:function(){return m},timeInterval:function(){return r.Z},timeMillisecond:function(){return a},timeMilliseconds:function(){return o},timeMinute:function(){return d},timeMinutes:function(){return h},timeMonday:function(){return y.wA},timeMondays:function(){return y.bJ},timeMonth:function(){return x},timeMonths:function(){return w},timeSaturday:function(){return y.EY},timeSaturdays:function(){return y.Ff},timeSecond:function(){return c},timeSeconds:function(){return u},timeSunday:function(){return y.OM},timeSundays:function(){return y.vm},timeThursday:function(){return y.bL},timeThursdays:function(){return y.$t},timeTuesday:function(){return y.sy},timeTuesdays:function(){return y.aU},timeWednesday:function(){return y.zg},timeWednesdays:function(){return y.Ld},timeWeek:function(){return y.OM},timeWeeks:function(){return y.vm},timeYear:function(){return _.Z},timeYears:function(){return _.g},utcDay:function(){return M.Z},utcDays:function(){return M.y},utcFriday:function(){return O.QQ},utcFridays:function(){return O.fz},utcHour:function(){return E},utcHours:function(){return C},utcMillisecond:function(){return a},utcMilliseconds:function(){return o},utcMinute:function(){return S},utcMinutes:function(){return T},utcMonday:function(){return O.l6},utcMondays:function(){return O.$3},utcMonth:function(){return L},utcMonths:function(){return I},utcSaturday:function(){return O.g4},utcSaturdays:function(){return O.Q_},utcSecond:function(){return c},utcSeconds:function(){return u},utcSunday:function(){return O.Ox},utcSundays:function(){return O.SU},utcThursday:function(){return O.hB},utcThursdays:function(){return O.xj},utcTuesday:function(){return O.J1},utcTuesdays:function(){return O.DK},utcWednesday:function(){return O.b3},utcWednesdays:function(){return O.uy},utcWeek:function(){return O.Ox},utcWeeks:function(){return O.SU},utcYear:function(){return R.Z},utcYears:function(){return R.D}});var r=n(30052),i=(0,r.Z)((function(){}),(function(e,t){e.setTime(+e+t)}),(function(e,t){return t-e}));i.every=function(e){return e=Math.floor(e),isFinite(e)&&e>0?e>1?(0,r.Z)((function(t){t.setTime(Math.floor(t/e)*e)}),(function(t,n){t.setTime(+t+n*e)}),(function(t,n){return(n-t)/e})):i:null};var a=i,o=i.range,s=n(54263),l=(0,r.Z)((function(e){e.setTime(e-e.getMilliseconds())}),(function(e,t){e.setTime(+e+t*s.Ym)}),(function(e,t){return(t-e)/s.Ym}),(function(e){return e.getUTCSeconds()})),c=l,u=l.range,f=(0,r.Z)((function(e){e.setTime(e-e.getMilliseconds()-e.getSeconds()*s.Ym)}),(function(e,t){e.setTime(+e+t*s.yB)}),(function(e,t){return(t-e)/s.yB}),(function(e){return e.getMinutes()})),d=f,h=f.range,p=(0,r.Z)((function(e){e.setTime(e-e.getMilliseconds()-e.getSeconds()*s.Ym-e.getMinutes()*s.yB)}),(function(e,t){e.setTime(+e+t*s.Y2)}),(function(e,t){return(t-e)/s.Y2}),(function(e){return e.getHours()})),v=p,m=p.range,g=n(82301),y=n(59879),b=(0,r.Z)((function(e){e.setDate(1),e.setHours(0,0,0,0)}),(function(e,t){e.setMonth(e.getMonth()+t)}),(function(e,t){return t.getMonth()-e.getMonth()+12*(t.getFullYear()-e.getFullYear())}),(function(e){return e.getMonth()})),x=b,w=b.range,_=n(34823),k=(0,r.Z)((function(e){e.setUTCSeconds(0,0)}),(function(e,t){e.setTime(+e+t*s.yB)}),(function(e,t){return(t-e)/s.yB}),(function(e){return e.getUTCMinutes()})),S=k,T=k.range,A=(0,r.Z)((function(e){e.setUTCMinutes(0,0,0)}),(function(e,t){e.setTime(+e+t*s.Y2)}),(function(e,t){return(t-e)/s.Y2}),(function(e){return e.getUTCHours()})),E=A,C=A.range,M=n(48480),O=n(58176),P=(0,r.Z)((function(e){e.setUTCDate(1),e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCMonth(e.getUTCMonth()+t)}),(function(e,t){return t.getUTCMonth()-e.getUTCMonth()+12*(t.getUTCFullYear()-e.getUTCFullYear())}),(function(e){return e.getUTCMonth()})),L=P,I=P.range,R=n(79791)},30052:function(e,t,n){"use strict";n.d(t,{Z:function(){return a}});var r=new Date,i=new Date;function a(e,t,n,o){function s(t){return e(t=0===arguments.length?new Date:new Date(+t)),t}return s.floor=function(t){return e(t=new Date(+t)),t},s.ceil=function(n){return e(n=new Date(n-1)),t(n,1),e(n),n},s.round=function(e){var t=s(e),n=s.ceil(e);return e-t0))return o;do{o.push(a=new Date(+n)),t(n,i),e(n)}while(a=t)for(;e(t),!n(t);)t.setTime(t-1)}),(function(e,r){if(e>=e)if(r<0)for(;++r<=0;)for(;t(e,-1),!n(e););else for(;--r>=0;)for(;t(e,1),!n(e););}))},n&&(s.count=function(t,a){return r.setTime(+t),i.setTime(+a),e(r),e(i),Math.floor(n(r,i))},s.every=function(e){return e=Math.floor(e),isFinite(e)&&e>0?e>1?s.filter(o?function(t){return o(t)%e===0}:function(t){return s.count(0,t)%e===0}):s:null}),s}},48480:function(e,t,n){"use strict";n.d(t,{y:function(){return o}});var r=n(30052),i=n(54263),a=(0,r.Z)((function(e){e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCDate(e.getUTCDate()+t)}),(function(e,t){return(t-e)/i.UD}),(function(e){return e.getUTCDate()-1}));t.Z=a;var o=a.range},58176:function(e,t,n){"use strict";n.d(t,{$3:function(){return p},DK:function(){return v},J1:function(){return l},Ox:function(){return o},QQ:function(){return f},Q_:function(){return b},SU:function(){return h},b3:function(){return c},fz:function(){return y},g4:function(){return d},hB:function(){return u},l6:function(){return s},uy:function(){return m},xj:function(){return g}});var r=n(30052),i=n(54263);function a(e){return(0,r.Z)((function(t){t.setUTCDate(t.getUTCDate()-(t.getUTCDay()+7-e)%7),t.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCDate(e.getUTCDate()+7*t)}),(function(e,t){return(t-e)/i.iM}))}var o=a(0),s=a(1),l=a(2),c=a(3),u=a(4),f=a(5),d=a(6),h=o.range,p=s.range,v=l.range,m=c.range,g=u.range,y=f.range,b=d.range},79791:function(e,t,n){"use strict";n.d(t,{D:function(){return a}});var r=n(30052),i=(0,r.Z)((function(e){e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCFullYear(e.getUTCFullYear()+t)}),(function(e,t){return t.getUTCFullYear()-e.getUTCFullYear()}),(function(e){return e.getUTCFullYear()}));i.every=function(e){return isFinite(e=Math.floor(e))&&e>0?(0,r.Z)((function(t){t.setUTCFullYear(Math.floor(t.getUTCFullYear()/e)*e),t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n*e)})):null},t.Z=i;var a=i.range},59879:function(e,t,n){"use strict";n.d(t,{$t:function(){return g},EY:function(){return d},Ff:function(){return b},Ld:function(){return m},OM:function(){return o},aU:function(){return v},b$:function(){return y},bJ:function(){return p},bL:function(){return u},mC:function(){return f},sy:function(){return l},vm:function(){return h},wA:function(){return s},zg:function(){return c}});var r=n(30052),i=n(54263);function a(e){return(0,r.Z)((function(t){t.setDate(t.getDate()-(t.getDay()+7-e)%7),t.setHours(0,0,0,0)}),(function(e,t){e.setDate(e.getDate()+7*t)}),(function(e,t){return(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*i.yB)/i.iM}))}var o=a(0),s=a(1),l=a(2),c=a(3),u=a(4),f=a(5),d=a(6),h=o.range,p=s.range,v=l.range,m=c.range,g=u.range,y=f.range,b=d.range},34823:function(e,t,n){"use strict";n.d(t,{g:function(){return a}});var r=n(30052),i=(0,r.Z)((function(e){e.setMonth(0,1),e.setHours(0,0,0,0)}),(function(e,t){e.setFullYear(e.getFullYear()+t)}),(function(e,t){return t.getFullYear()-e.getFullYear()}),(function(e){return e.getFullYear()}));i.every=function(e){return isFinite(e=Math.floor(e))&&e>0?(0,r.Z)((function(t){t.setFullYear(Math.floor(t.getFullYear()/e)*e),t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,n){t.setFullYear(t.getFullYear()+n*e)})):null},t.Z=i;var a=i.range},17045:function(e,t,n){"use strict";var r=n(8709),i="function"===typeof Symbol&&"symbol"===typeof Symbol("foo"),a=Object.prototype.toString,o=Array.prototype.concat,s=Object.defineProperty,l=n(55622)(),c=s&&l,u=function(e,t,n,r){if(t in e)if(!0===r){if(e[t]===n)return}else if("function"!==typeof(i=r)||"[object Function]"!==a.call(i)||!r())return;var i;c?s(e,t,{configurable:!0,enumerable:!1,value:n,writable:!0}):e[t]=n},f=function(e,t){var n=arguments.length>2?arguments[2]:{},a=r(t);i&&(a=o.call(a,Object.getOwnPropertySymbols(t)));for(var s=0;ss*l){var h=(d-f)/s;o[u]=1e3*h}}return o}function i(e){for(var t=[],n=e[0];n<=e[1];n++)for(var r=String.fromCharCode(n),i=e[0];i0)return function(e,t){var n,r;for(n=new Array(e),r=0;r80*a){o=l=e[0],s=f=e[1];for(var x=a;xl&&(l=d),p>f&&(f=p);v=0!==(v=Math.max(l-o,f-s))?1/v:0}return i(y,b,a,o,s,v),b}function n(e,t,n,r,i){var a,o;if(i===A(e,t,n,r)>0)for(a=t;a=t;a-=r)o=k(a,e[a],e[a+1],o);return o&&g(o,o.next)&&(S(o),o=o.next),o}function r(e,t){if(!e)return e;t||(t=e);var n,r=e;do{if(n=!1,r.steiner||!g(r,r.next)&&0!==m(r.prev,r,r.next))r=r.next;else{if(S(r),(r=t=r.prev)===r.next)break;n=!0}}while(n||r!==t);return t}function i(e,t,n,c,u,f,h){if(e){!h&&f&&function(e,t,n,r){var i=e;do{null===i.z&&(i.z=d(i.x,i.y,t,n,r)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next}while(i!==e);i.prevZ.nextZ=null,i.prevZ=null,function(e){var t,n,r,i,a,o,s,l,c=1;do{for(n=e,e=null,a=null,o=0;n;){for(o++,r=n,s=0,t=0;t0||l>0&&r;)0!==s&&(0===l||!r||n.z<=r.z)?(i=n,n=n.nextZ,s--):(i=r,r=r.nextZ,l--),a?a.nextZ=i:e=i,i.prevZ=a,a=i;n=r}a.nextZ=null,c*=2}while(o>1)}(i)}(e,c,u,f);for(var p,v,m=e;e.prev!==e.next;)if(p=e.prev,v=e.next,f?o(e,c,u,f):a(e))t.push(p.i/n),t.push(e.i/n),t.push(v.i/n),S(e),e=v.next,m=v.next;else if((e=v)===m){h?1===h?i(e=s(r(e),t,n),t,n,c,u,f,2):2===h&&l(e,t,n,c,u,f):i(r(e),t,n,c,u,f,1);break}}}function a(e){var t=e.prev,n=e,r=e.next;if(m(t,n,r)>=0)return!1;for(var i=e.next.next;i!==e.prev;){if(p(t.x,t.y,n.x,n.y,r.x,r.y,i.x,i.y)&&m(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function o(e,t,n,r){var i=e.prev,a=e,o=e.next;if(m(i,a,o)>=0)return!1;for(var s=i.xa.x?i.x>o.x?i.x:o.x:a.x>o.x?a.x:o.x,u=i.y>a.y?i.y>o.y?i.y:o.y:a.y>o.y?a.y:o.y,f=d(s,l,t,n,r),h=d(c,u,t,n,r),v=e.prevZ,g=e.nextZ;v&&v.z>=f&&g&&g.z<=h;){if(v!==e.prev&&v!==e.next&&p(i.x,i.y,a.x,a.y,o.x,o.y,v.x,v.y)&&m(v.prev,v,v.next)>=0)return!1;if(v=v.prevZ,g!==e.prev&&g!==e.next&&p(i.x,i.y,a.x,a.y,o.x,o.y,g.x,g.y)&&m(g.prev,g,g.next)>=0)return!1;g=g.nextZ}for(;v&&v.z>=f;){if(v!==e.prev&&v!==e.next&&p(i.x,i.y,a.x,a.y,o.x,o.y,v.x,v.y)&&m(v.prev,v,v.next)>=0)return!1;v=v.prevZ}for(;g&&g.z<=h;){if(g!==e.prev&&g!==e.next&&p(i.x,i.y,a.x,a.y,o.x,o.y,g.x,g.y)&&m(g.prev,g,g.next)>=0)return!1;g=g.nextZ}return!0}function s(e,t,n){var i=e;do{var a=i.prev,o=i.next.next;!g(a,o)&&y(a,i,i.next,o)&&w(a,o)&&w(o,a)&&(t.push(a.i/n),t.push(i.i/n),t.push(o.i/n),S(i),S(i.next),i=e=o),i=i.next}while(i!==e);return r(i)}function l(e,t,n,a,o,s){var l=e;do{for(var c=l.next.next;c!==l.prev;){if(l.i!==c.i&&v(l,c)){var u=_(l,c);return l=r(l,l.next),u=r(u,u.next),i(l,t,n,a,o,s),void i(u,t,n,a,o,s)}c=c.next}l=l.next}while(l!==e)}function c(e,t){return e.x-t.x}function u(e,t){if(t=function(e,t){var n,r=t,i=e.x,a=e.y,o=-1/0;do{if(a<=r.y&&a>=r.next.y&&r.next.y!==r.y){var s=r.x+(a-r.y)*(r.next.x-r.x)/(r.next.y-r.y);if(s<=i&&s>o){if(o=s,s===i){if(a===r.y)return r;if(a===r.next.y)return r.next}n=r.x=r.x&&r.x>=u&&i!==r.x&&p(an.x||r.x===n.x&&f(n,r)))&&(n=r,h=l)),r=r.next}while(r!==c);return n}(e,t),t){var n=_(t,e);r(t,t.next),r(n,n.next)}}function f(e,t){return m(e.prev,e,t.prev)<0&&m(t.next,e,e.next)<0}function d(e,t,n,r,i){return(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*i)|e<<8))|e<<4))|e<<2))|e<<1))|(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*i)|t<<8))|t<<4))|t<<2))|t<<1))<<1}function h(e){var t=e,n=e;do{(t.x=0&&(e-o)*(r-s)-(n-o)*(t-s)>=0&&(n-o)*(a-s)-(i-o)*(r-s)>=0}function v(e,t){return e.next.i!==t.i&&e.prev.i!==t.i&&!function(e,t){var n=e;do{if(n.i!==e.i&&n.next.i!==e.i&&n.i!==t.i&&n.next.i!==t.i&&y(n,n.next,e,t))return!0;n=n.next}while(n!==e);return!1}(e,t)&&(w(e,t)&&w(t,e)&&function(e,t){var n=e,r=!1,i=(e.x+t.x)/2,a=(e.y+t.y)/2;do{n.y>a!==n.next.y>a&&n.next.y!==n.y&&i<(n.next.x-n.x)*(a-n.y)/(n.next.y-n.y)+n.x&&(r=!r),n=n.next}while(n!==e);return r}(e,t)&&(m(e.prev,e,t.prev)||m(e,t.prev,t))||g(e,t)&&m(e.prev,e,e.next)>0&&m(t.prev,t,t.next)>0)}function m(e,t,n){return(t.y-e.y)*(n.x-t.x)-(t.x-e.x)*(n.y-t.y)}function g(e,t){return e.x===t.x&&e.y===t.y}function y(e,t,n,r){var i=x(m(e,t,n)),a=x(m(e,t,r)),o=x(m(n,r,e)),s=x(m(n,r,t));return i!==a&&o!==s||!(0!==i||!b(e,n,t))||!(0!==a||!b(e,r,t))||!(0!==o||!b(n,e,r))||!(0!==s||!b(n,t,r))}function b(e,t,n){return t.x<=Math.max(e.x,n.x)&&t.x>=Math.min(e.x,n.x)&&t.y<=Math.max(e.y,n.y)&&t.y>=Math.min(e.y,n.y)}function x(e){return e>0?1:e<0?-1:0}function w(e,t){return m(e.prev,e,e.next)<0?m(e,t,e.next)>=0&&m(e,e.prev,t)>=0:m(e,t,e.prev)<0||m(e,e.next,t)<0}function _(e,t){var n=new T(e.i,e.x,e.y),r=new T(t.i,t.x,t.y),i=e.next,a=t.prev;return e.next=t,t.prev=e,n.next=i,i.prev=n,r.next=n,n.prev=r,a.next=r,r.prev=a,r}function k(e,t,n,r){var i=new T(e,t,n);return r?(i.next=r.next,i.prev=r,r.next.prev=i,r.next=i):(i.prev=i,i.next=i),i}function S(e){e.next.prev=e.prev,e.prev.next=e.next,e.prevZ&&(e.prevZ.nextZ=e.nextZ),e.nextZ&&(e.nextZ.prevZ=e.prevZ)}function T(e,t,n){this.i=e,this.x=t,this.y=n,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function A(e,t,n,r){for(var i=0,a=t,o=n-r;a0&&(r+=e[i-1].length,n.holes.push(r))}return n}},2502:function(e,t,n){var r=n(68664);e.exports=function(e,t){var n,i=[],a=[],o=[],s={},l=[];function c(e){o[e]=!1,s.hasOwnProperty(e)&&Object.keys(s[e]).forEach((function(t){delete s[e][t],o[t]&&c(t)}))}function u(e){var t,r,i=!1;for(a.push(e),o[e]=!0,t=0;t=t}))}(t);for(var n,i=r(e).components.filter((function(e){return e.length>1})),a=1/0,o=0;o=55296&&y<=56319&&(_+=e[++n]),_=k?d.call(k,S,_,v):_,t?(h.value=_,p(m,v,h)):m[v]=_,++v;g=v}if(void 0===g)for(g=o(e.length),t&&(m=new t(g)),n=0;n0?1:-1}},56247:function(e,t,n){"use strict";var r=n(9953),i=Math.abs,a=Math.floor;e.exports=function(e){return isNaN(e)?0:0!==(e=Number(e))&&isFinite(e)?r(e)*a(i(e)):e}},35976:function(e,t,n){"use strict";var r=n(56247),i=Math.max;e.exports=function(e){return i(0,r(e))}},67260:function(e,t,n){"use strict";var r=n(78513),i=n(36672),a=Function.prototype.bind,o=Function.prototype.call,s=Object.keys,l=Object.prototype.propertyIsEnumerable;e.exports=function(e,t){return function(n,c){var u,f=arguments[2],d=arguments[3];return n=Object(i(n)),r(c),u=s(n),d&&u.sort("function"===typeof d?a.call(d,n):void 0),"function"!==typeof e&&(e=u[e]),o.call(e,u,(function(e,r){return l.call(n,e)?o.call(c,f,n[e],e,n,r):t}))}}},95879:function(e,t,n){"use strict";e.exports=n(73583)()?Object.assign:n(34205)},73583:function(e){"use strict";e.exports=function(){var e,t=Object.assign;return"function"===typeof t&&(t(e={foo:"raz"},{bar:"dwa"},{trzy:"trzy"}),e.foo+e.bar+e.trzy==="razdwatrzy")}},34205:function(e,t,n){"use strict";var r=n(68700),i=n(36672),a=Math.max;e.exports=function(e,t){var n,o,s,l=a(arguments.length,2);for(e=Object(i(e)),s=function(r){try{e[r]=t[r]}catch(i){n||(n=i)}},o=1;o-1}},87963:function(e){"use strict";var t=Object.prototype.toString,n=t.call("");e.exports=function(e){return"string"===typeof e||e&&"object"===typeof e&&(e instanceof String||t.call(e)===n)||!1}},43043:function(e){"use strict";var t=Object.create(null),n=Math.random;e.exports=function(){var e;do{e=n().toString(36).slice(2)}while(t[e]);return e}},32411:function(e,t,n){"use strict";var r,i=n(1496),a=n(66741),o=n(62072),s=n(8260),l=n(95426),c=Object.defineProperty;r=e.exports=function(e,t){if(!(this instanceof r))throw new TypeError("Constructor requires 'new'");l.call(this,e),t=t?a.call(t,"key+value")?"key+value":a.call(t,"key")?"key":"value":"value",c(this,"__kind__",o("",t))},i&&i(r,l),delete r.prototype.constructor,r.prototype=Object.create(l.prototype,{_resolve:o((function(e){return"value"===this.__kind__?this.__list__[e]:"key+value"===this.__kind__?[e,this.__list__[e]]:e}))}),c(r.prototype,s.toStringTag,o("c","Array Iterator"))},27515:function(e,t,n){"use strict";var r=n(73051),i=n(78513),a=n(87963),o=n(66661),s=Array.isArray,l=Function.prototype.call,c=Array.prototype.some;e.exports=function(e,t){var n,u,f,d,h,p,v,m,g=arguments[2];if(s(e)||r(e)?n="array":a(e)?n="string":e=o(e),i(t),f=function(){d=!0},"array"!==n)if("string"!==n)for(u=e.next();!u.done;){if(l.call(t,g,u.value,f),d)return;u=e.next()}else for(p=e.length,h=0;h=55296&&m<=56319&&(v+=e[++h]),l.call(t,g,v,f),!d);++h);else c.call(e,(function(e){return l.call(t,g,e,f),d}))}},66661:function(e,t,n){"use strict";var r=n(73051),i=n(87963),a=n(32411),o=n(259),s=n(58095),l=n(8260).iterator;e.exports=function(e){return"function"===typeof s(e)[l]?e[l]():r(e)?new a(e):i(e)?new o(e):new a(e)}},95426:function(e,t,n){"use strict";var r,i=n(16134),a=n(95879),o=n(78513),s=n(36672),l=n(62072),c=n(55174),u=n(8260),f=Object.defineProperty,d=Object.defineProperties;e.exports=r=function(e,t){if(!(this instanceof r))throw new TypeError("Constructor requires 'new'");d(this,{__list__:l("w",s(e)),__context__:l("w",t),__nextIndex__:l("w",0)}),t&&(o(t.on),t.on("_add",this._onAdd),t.on("_delete",this._onDelete),t.on("_clear",this._onClear))},delete r.prototype.constructor,d(r.prototype,a({_next:l((function(){var e;if(this.__list__)return this.__redo__&&void 0!==(e=this.__redo__.shift())?e:this.__nextIndex__=this.__nextIndex__||(++this.__nextIndex__,this.__redo__?(this.__redo__.forEach((function(t,n){t>=e&&(this.__redo__[n]=++t)}),this),this.__redo__.push(e)):f(this,"__redo__",l("c",[e])))})),_onDelete:l((function(e){var t;e>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(t=this.__redo__.indexOf(e))&&this.__redo__.splice(t,1),this.__redo__.forEach((function(t,n){t>e&&(this.__redo__[n]=--t)}),this)))})),_onClear:l((function(){this.__redo__&&i.call(this.__redo__),this.__nextIndex__=0}))}))),f(r.prototype,u.iterator,l((function(){return this})))},35940:function(e,t,n){"use strict";var r=n(73051),i=n(95296),a=n(87963),o=n(8260).iterator,s=Array.isArray;e.exports=function(e){return!!i(e)&&(!!s(e)||!!a(e)||!!r(e)||"function"===typeof e[o])}},259:function(e,t,n){"use strict";var r,i=n(1496),a=n(62072),o=n(8260),s=n(95426),l=Object.defineProperty;r=e.exports=function(e){if(!(this instanceof r))throw new TypeError("Constructor requires 'new'");e=String(e),s.call(this,e),l(this,"__length__",a("",e.length))},i&&i(r,s),delete r.prototype.constructor,r.prototype=Object.create(s.prototype,{_next:a((function(){if(this.__list__)return this.__nextIndex__=55296&&t<=56319?n+this.__list__[this.__nextIndex__++]:n}))}),l(r.prototype,o.toStringTag,a("c","String Iterator"))},58095:function(e,t,n){"use strict";var r=n(35940);e.exports=function(e){if(!r(e))throw new TypeError(e+" is not iterable");return e}},73523:function(e){"use strict";function t(e,t){if(void 0===e||null===e)throw new TypeError("Cannot convert first argument to object");for(var n=Object(e),r=1;r0&&o.length>i&&!o.warned){o.warned=!0;var u=new Error("Possible EventEmitter memory leak detected. "+o.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");u.name="MaxListenersExceededWarning",u.emitter=e,u.type=t,u.count=o.length,c=u,console&&console.warn&&console.warn(c)}return e}function u(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function f(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=u.bind(r);return i.listener=n,r.wrapFn=i,i}function d(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[t];return void 0===i?[]:"function"===typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n0&&(o=t[0]),o instanceof Error)throw o;var s=new Error("Unhandled error."+(o?" ("+o.message+")":""));throw s.context=o,s}var l=a[e];if(void 0===l)return!1;if("function"===typeof l)r(l,this,t);else{var c=l.length,u=p(l,c);for(n=0;n=0;a--)if(n[a]===t||n[a].listener===t){o=n[a].listener,i=a;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1=0;r--)this.removeListener(e,t[r]);return this},a.prototype.listeners=function(e){return d(this,e,!0)},a.prototype.rawListeners=function(e){return d(this,e,!1)},a.listenerCount=function(e,t){return"function"===typeof e.listenerCount?e.listenerCount(t):h.call(e,t)},a.prototype.listenerCount=h,a.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},60774:function(e){var t=function(){if("object"===typeof self&&self)return self;if("object"===typeof window&&window)return window;throw new Error("Unable to resolve global `this`")};e.exports=function(){if(this)return this;try{Object.defineProperty(Object.prototype,"__global__",{get:function(){return this},configurable:!0})}catch(e){return t()}try{return __global__||t()}finally{delete Object.prototype.__global__}}()},94908:function(e,t,n){"use strict";e.exports=n(51152)()?globalThis:n(60774)},51152:function(e){"use strict";e.exports=function(){return"object"===typeof globalThis&&!!globalThis&&globalThis.Array===Array}},92770:function(e,t,n){"use strict";var r=n(18546);e.exports=function(e){var t=typeof e;if("string"===t){var n=e;if(0===(e=+e)&&r(n))return!1}else if("number"!==t)return!1;return e-e<1}},30120:function(e,t,n){var r=n(90660);e.exports=function(e,t,n){if(!e)throw new TypeError("must specify data as first parameter");if(n=0|+(n||0),Array.isArray(e)&&e[0]&&"number"===typeof e[0][0]){var i,a,o,s,l=e[0].length,c=e.length*l;t&&"string"!==typeof t||(t=new(r(t||"float32"))(c+n));var u=t.length-n;if(c!==u)throw new Error("source length "+c+" ("+l+"x"+e.length+") does not match destination length "+u);for(i=0,o=n;it[0]-o[0]/2&&(d=o[0]/2,h+=o[1]);return n}},32879:function(e){"use strict";function t(e,a){a||(a={}),("string"===typeof e||Array.isArray(e))&&(a.family=e);var o=Array.isArray(a.family)?a.family.join(", "):a.family;if(!o)throw Error("`family` must be defined");var s=a.size||a.fontSize||a.em||48,l=a.weight||a.fontWeight||"",c=(e=[a.style||a.fontStyle||"",l,s].join(" ")+"px "+o,a.origin||"top");if(t.cache[o]&&s<=t.cache[o].em)return n(t.cache[o],c);var u=a.canvas||t.canvas,f=u.getContext("2d"),d={upper:void 0!==a.upper?a.upper:"H",lower:void 0!==a.lower?a.lower:"x",descent:void 0!==a.descent?a.descent:"p",ascent:void 0!==a.ascent?a.ascent:"h",tittle:void 0!==a.tittle?a.tittle:"i",overshoot:void 0!==a.overshoot?a.overshoot:"O"},h=Math.ceil(1.5*s);u.height=h,u.width=.5*h,f.font=e;var p="H",v={top:0};f.clearRect(0,0,h,h),f.textBaseline="top",f.fillStyle="black",f.fillText(p,0,0);var m=r(f.getImageData(0,0,h,h));f.clearRect(0,0,h,h),f.textBaseline="bottom",f.fillText(p,0,h);var g=r(f.getImageData(0,0,h,h));v.lineHeight=v.bottom=h-g+m,f.clearRect(0,0,h,h),f.textBaseline="alphabetic",f.fillText(p,0,h);var y=h-r(f.getImageData(0,0,h,h))-1+m;v.baseline=v.alphabetic=y,f.clearRect(0,0,h,h),f.textBaseline="middle",f.fillText(p,0,.5*h);var b=r(f.getImageData(0,0,h,h));v.median=v.middle=h-b-1+m-.5*h,f.clearRect(0,0,h,h),f.textBaseline="hanging",f.fillText(p,0,.5*h);var x=r(f.getImageData(0,0,h,h));v.hanging=h-x-1+m-.5*h,f.clearRect(0,0,h,h),f.textBaseline="ideographic",f.fillText(p,0,h);var w=r(f.getImageData(0,0,h,h));if(v.ideographic=h-w-1+m,d.upper&&(f.clearRect(0,0,h,h),f.textBaseline="top",f.fillText(d.upper,0,0),v.upper=r(f.getImageData(0,0,h,h)),v.capHeight=v.baseline-v.upper),d.lower&&(f.clearRect(0,0,h,h),f.textBaseline="top",f.fillText(d.lower,0,0),v.lower=r(f.getImageData(0,0,h,h)),v.xHeight=v.baseline-v.lower),d.tittle&&(f.clearRect(0,0,h,h),f.textBaseline="top",f.fillText(d.tittle,0,0),v.tittle=r(f.getImageData(0,0,h,h))),d.ascent&&(f.clearRect(0,0,h,h),f.textBaseline="top",f.fillText(d.ascent,0,0),v.ascent=r(f.getImageData(0,0,h,h))),d.descent&&(f.clearRect(0,0,h,h),f.textBaseline="top",f.fillText(d.descent,0,0),v.descent=i(f.getImageData(0,0,h,h))),d.overshoot){f.clearRect(0,0,h,h),f.textBaseline="top",f.fillText(d.overshoot,0,0);var _=i(f.getImageData(0,0,h,h));v.overshoot=_-y}for(var k in v)v[k]/=s;return v.em=s,t.cache[o]=v,n(v,c)}function n(e,t){var n={};for(var r in"string"===typeof t&&(t=e[t]),e)"em"!==r&&(n[r]=e[r]-t);return n}function r(e){for(var t=e.height,n=e.data,r=3;r0;r-=4)if(0!==n[r])return Math.floor(.25*(r-3)/t)}e.exports=t,t.canvas=document.createElement("canvas"),t.cache={}},31353:function(e,t,n){"use strict";var r=n(85395),i=Object.prototype.toString,a=Object.prototype.hasOwnProperty;e.exports=function(e,t,n){if(!r(t))throw new TypeError("iterator must be a function");var o;arguments.length>=3&&(o=n),"[object Array]"===i.call(e)?function(e,t,n){for(var r=0,i=e.length;r1&&"boolean"!==typeof t)throw new o('"allowMissing" argument must be a boolean');if(null===T(/^%?[^%]*%?$/,e))throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=function(e){var t=S(e,0,1),n=S(e,-1);if("%"===t&&"%"!==n)throw new i("invalid intrinsic syntax, expected closing `%`");if("%"===n&&"%"!==t)throw new i("invalid intrinsic syntax, expected opening `%`");var r=[];return k(e,A,(function(e,t,n,i){r[r.length]=n?k(i,E,"$1"):t||e})),r}(e),r=n.length>0?n[0]:"",a=C("%"+r+"%",t),s=a.name,c=a.value,u=!1,f=a.alias;f&&(r=f[0],_(n,w([0,1],f)));for(var d=1,h=!0;d=n.length){var y=l(c,p);c=(h=!!y)&&"get"in y&&!("originalValue"in y.get)?y.get:c[p]}else h=x(c,p),c=c[p];h&&!u&&(v[s]=c)}}return c}},85400:function(e){e.exports=function(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=t[4],s=t[5],l=t[6],c=t[7],u=t[8],f=t[9],d=t[10],h=t[11],p=t[12],v=t[13],m=t[14],g=t[15];return e[0]=s*(d*g-h*m)-f*(l*g-c*m)+v*(l*h-c*d),e[1]=-(r*(d*g-h*m)-f*(i*g-a*m)+v*(i*h-a*d)),e[2]=r*(l*g-c*m)-s*(i*g-a*m)+v*(i*c-a*l),e[3]=-(r*(l*h-c*d)-s*(i*h-a*d)+f*(i*c-a*l)),e[4]=-(o*(d*g-h*m)-u*(l*g-c*m)+p*(l*h-c*d)),e[5]=n*(d*g-h*m)-u*(i*g-a*m)+p*(i*h-a*d),e[6]=-(n*(l*g-c*m)-o*(i*g-a*m)+p*(i*c-a*l)),e[7]=n*(l*h-c*d)-o*(i*h-a*d)+u*(i*c-a*l),e[8]=o*(f*g-h*v)-u*(s*g-c*v)+p*(s*h-c*f),e[9]=-(n*(f*g-h*v)-u*(r*g-a*v)+p*(r*h-a*f)),e[10]=n*(s*g-c*v)-o*(r*g-a*v)+p*(r*c-a*s),e[11]=-(n*(s*h-c*f)-o*(r*h-a*f)+u*(r*c-a*s)),e[12]=-(o*(f*m-d*v)-u*(s*m-l*v)+p*(s*d-l*f)),e[13]=n*(f*m-d*v)-u*(r*m-i*v)+p*(r*d-i*f),e[14]=-(n*(s*m-l*v)-o*(r*m-i*v)+p*(r*l-i*s)),e[15]=n*(s*d-l*f)-o*(r*d-i*f)+u*(r*l-i*s),e}},42331:function(e){e.exports=function(e){var t=new Float32Array(16);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}},31042:function(e){e.exports=function(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}},11902:function(e){e.exports=function(){var e=new Float32Array(16);return e[0]=1,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=1,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=1,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}},89887:function(e){e.exports=function(e){var t=e[0],n=e[1],r=e[2],i=e[3],a=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],f=e[10],d=e[11],h=e[12],p=e[13],v=e[14],m=e[15];return(t*o-n*a)*(f*m-d*v)-(t*s-r*a)*(u*m-d*p)+(t*l-i*a)*(u*v-f*p)+(n*s-r*o)*(c*m-d*h)-(n*l-i*o)*(c*v-f*h)+(r*l-i*s)*(c*p-u*h)}},27812:function(e){e.exports=function(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=n+n,s=r+r,l=i+i,c=n*o,u=r*o,f=r*s,d=i*o,h=i*s,p=i*l,v=a*o,m=a*s,g=a*l;return e[0]=1-f-p,e[1]=u+g,e[2]=d-m,e[3]=0,e[4]=u-g,e[5]=1-c-p,e[6]=h+v,e[7]=0,e[8]=d+m,e[9]=h-v,e[10]=1-c-f,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}},34045:function(e){e.exports=function(e,t,n){var r,i,a,o=n[0],s=n[1],l=n[2],c=Math.sqrt(o*o+s*s+l*l);return Math.abs(c)<1e-6?null:(o*=c=1/c,s*=c,l*=c,r=Math.sin(t),i=Math.cos(t),a=1-i,e[0]=o*o*a+i,e[1]=s*o*a+l*r,e[2]=l*o*a-s*r,e[3]=0,e[4]=o*s*a-l*r,e[5]=s*s*a+i,e[6]=l*s*a+o*r,e[7]=0,e[8]=o*l*a+s*r,e[9]=s*l*a-o*r,e[10]=l*l*a+i,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e)}},45973:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2],o=t[3],s=r+r,l=i+i,c=a+a,u=r*s,f=r*l,d=r*c,h=i*l,p=i*c,v=a*c,m=o*s,g=o*l,y=o*c;return e[0]=1-(h+v),e[1]=f+y,e[2]=d-g,e[3]=0,e[4]=f-y,e[5]=1-(u+v),e[6]=p+m,e[7]=0,e[8]=d+g,e[9]=p-m,e[10]=1-(u+h),e[11]=0,e[12]=n[0],e[13]=n[1],e[14]=n[2],e[15]=1,e}},81472:function(e){e.exports=function(e,t){return e[0]=t[0],e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=t[1],e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=t[2],e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}},14669:function(e){e.exports=function(e,t){return e[0]=1,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=1,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=1,e[11]=0,e[12]=t[0],e[13]=t[1],e[14]=t[2],e[15]=1,e}},75262:function(e){e.exports=function(e,t){var n=Math.sin(t),r=Math.cos(t);return e[0]=1,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=r,e[6]=n,e[7]=0,e[8]=0,e[9]=-n,e[10]=r,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}},331:function(e){e.exports=function(e,t){var n=Math.sin(t),r=Math.cos(t);return e[0]=r,e[1]=0,e[2]=-n,e[3]=0,e[4]=0,e[5]=1,e[6]=0,e[7]=0,e[8]=n,e[9]=0,e[10]=r,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}},11049:function(e){e.exports=function(e,t){var n=Math.sin(t),r=Math.cos(t);return e[0]=r,e[1]=n,e[2]=0,e[3]=0,e[4]=-n,e[5]=r,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=1,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}},75195:function(e){e.exports=function(e,t,n,r,i,a,o){var s=1/(n-t),l=1/(i-r),c=1/(a-o);return e[0]=2*a*s,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=2*a*l,e[6]=0,e[7]=0,e[8]=(n+t)*s,e[9]=(i+r)*l,e[10]=(o+a)*c,e[11]=-1,e[12]=0,e[13]=0,e[14]=o*a*2*c,e[15]=0,e}},71551:function(e){e.exports=function(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=1,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=1,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}},79576:function(e,t,n){e.exports={create:n(11902),clone:n(42331),copy:n(31042),identity:n(71551),transpose:n(88654),invert:n(95874),adjoint:n(85400),determinant:n(89887),multiply:n(91362),translate:n(31283),scale:n(10789),rotate:n(65074),rotateX:n(35545),rotateY:n(94918),rotateZ:n(15692),fromRotation:n(34045),fromRotationTranslation:n(45973),fromScaling:n(81472),fromTranslation:n(14669),fromXRotation:n(75262),fromYRotation:n(331),fromZRotation:n(11049),fromQuat:n(27812),frustum:n(75195),perspective:n(7864),perspectiveFromFieldOfView:n(35279),ortho:n(60378),lookAt:n(65551),str:n(6726)}},95874:function(e){e.exports=function(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=t[4],s=t[5],l=t[6],c=t[7],u=t[8],f=t[9],d=t[10],h=t[11],p=t[12],v=t[13],m=t[14],g=t[15],y=n*s-r*o,b=n*l-i*o,x=n*c-a*o,w=r*l-i*s,_=r*c-a*s,k=i*c-a*l,S=u*v-f*p,T=u*m-d*p,A=u*g-h*p,E=f*m-d*v,C=f*g-h*v,M=d*g-h*m,O=y*M-b*C+x*E+w*A-_*T+k*S;return O?(O=1/O,e[0]=(s*M-l*C+c*E)*O,e[1]=(i*C-r*M-a*E)*O,e[2]=(v*k-m*_+g*w)*O,e[3]=(d*_-f*k-h*w)*O,e[4]=(l*A-o*M-c*T)*O,e[5]=(n*M-i*A+a*T)*O,e[6]=(m*x-p*k-g*b)*O,e[7]=(u*k-d*x+h*b)*O,e[8]=(o*C-s*A+c*S)*O,e[9]=(r*A-n*C-a*S)*O,e[10]=(p*_-v*x+g*y)*O,e[11]=(f*x-u*_-h*y)*O,e[12]=(s*T-o*E-l*S)*O,e[13]=(n*E-r*T+i*S)*O,e[14]=(v*b-p*w-m*y)*O,e[15]=(u*w-f*b+d*y)*O,e):null}},65551:function(e,t,n){var r=n(71551);e.exports=function(e,t,n,i){var a,o,s,l,c,u,f,d,h,p,v=t[0],m=t[1],g=t[2],y=i[0],b=i[1],x=i[2],w=n[0],_=n[1],k=n[2];return Math.abs(v-w)<1e-6&&Math.abs(m-_)<1e-6&&Math.abs(g-k)<1e-6?r(e):(f=v-w,d=m-_,h=g-k,p=1/Math.sqrt(f*f+d*d+h*h),a=b*(h*=p)-x*(d*=p),o=x*(f*=p)-y*h,s=y*d-b*f,(p=Math.sqrt(a*a+o*o+s*s))?(a*=p=1/p,o*=p,s*=p):(a=0,o=0,s=0),l=d*s-h*o,c=h*a-f*s,u=f*o-d*a,(p=Math.sqrt(l*l+c*c+u*u))?(l*=p=1/p,c*=p,u*=p):(l=0,c=0,u=0),e[0]=a,e[1]=l,e[2]=f,e[3]=0,e[4]=o,e[5]=c,e[6]=d,e[7]=0,e[8]=s,e[9]=u,e[10]=h,e[11]=0,e[12]=-(a*v+o*m+s*g),e[13]=-(l*v+c*m+u*g),e[14]=-(f*v+d*m+h*g),e[15]=1,e)}},91362:function(e){e.exports=function(e,t,n){var r=t[0],i=t[1],a=t[2],o=t[3],s=t[4],l=t[5],c=t[6],u=t[7],f=t[8],d=t[9],h=t[10],p=t[11],v=t[12],m=t[13],g=t[14],y=t[15],b=n[0],x=n[1],w=n[2],_=n[3];return e[0]=b*r+x*s+w*f+_*v,e[1]=b*i+x*l+w*d+_*m,e[2]=b*a+x*c+w*h+_*g,e[3]=b*o+x*u+w*p+_*y,b=n[4],x=n[5],w=n[6],_=n[7],e[4]=b*r+x*s+w*f+_*v,e[5]=b*i+x*l+w*d+_*m,e[6]=b*a+x*c+w*h+_*g,e[7]=b*o+x*u+w*p+_*y,b=n[8],x=n[9],w=n[10],_=n[11],e[8]=b*r+x*s+w*f+_*v,e[9]=b*i+x*l+w*d+_*m,e[10]=b*a+x*c+w*h+_*g,e[11]=b*o+x*u+w*p+_*y,b=n[12],x=n[13],w=n[14],_=n[15],e[12]=b*r+x*s+w*f+_*v,e[13]=b*i+x*l+w*d+_*m,e[14]=b*a+x*c+w*h+_*g,e[15]=b*o+x*u+w*p+_*y,e}},60378:function(e){e.exports=function(e,t,n,r,i,a,o){var s=1/(t-n),l=1/(r-i),c=1/(a-o);return e[0]=-2*s,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=-2*l,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=2*c,e[11]=0,e[12]=(t+n)*s,e[13]=(i+r)*l,e[14]=(o+a)*c,e[15]=1,e}},7864:function(e){e.exports=function(e,t,n,r,i){var a=1/Math.tan(t/2),o=1/(r-i);return e[0]=a/n,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=a,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=(i+r)*o,e[11]=-1,e[12]=0,e[13]=0,e[14]=2*i*r*o,e[15]=0,e}},35279:function(e){e.exports=function(e,t,n,r){var i=Math.tan(t.upDegrees*Math.PI/180),a=Math.tan(t.downDegrees*Math.PI/180),o=Math.tan(t.leftDegrees*Math.PI/180),s=Math.tan(t.rightDegrees*Math.PI/180),l=2/(o+s),c=2/(i+a);return e[0]=l,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=c,e[6]=0,e[7]=0,e[8]=-(o-s)*l*.5,e[9]=(i-a)*c*.5,e[10]=r/(n-r),e[11]=-1,e[12]=0,e[13]=0,e[14]=r*n/(n-r),e[15]=0,e}},65074:function(e){e.exports=function(e,t,n,r){var i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E,C=r[0],M=r[1],O=r[2],P=Math.sqrt(C*C+M*M+O*O);return Math.abs(P)<1e-6?null:(C*=P=1/P,M*=P,O*=P,i=Math.sin(n),a=Math.cos(n),o=1-a,s=t[0],l=t[1],c=t[2],u=t[3],f=t[4],d=t[5],h=t[6],p=t[7],v=t[8],m=t[9],g=t[10],y=t[11],b=C*C*o+a,x=M*C*o+O*i,w=O*C*o-M*i,_=C*M*o-O*i,k=M*M*o+a,S=O*M*o+C*i,T=C*O*o+M*i,A=M*O*o-C*i,E=O*O*o+a,e[0]=s*b+f*x+v*w,e[1]=l*b+d*x+m*w,e[2]=c*b+h*x+g*w,e[3]=u*b+p*x+y*w,e[4]=s*_+f*k+v*S,e[5]=l*_+d*k+m*S,e[6]=c*_+h*k+g*S,e[7]=u*_+p*k+y*S,e[8]=s*T+f*A+v*E,e[9]=l*T+d*A+m*E,e[10]=c*T+h*A+g*E,e[11]=u*T+p*A+y*E,t!==e&&(e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15]),e)}},35545:function(e){e.exports=function(e,t,n){var r=Math.sin(n),i=Math.cos(n),a=t[4],o=t[5],s=t[6],l=t[7],c=t[8],u=t[9],f=t[10],d=t[11];return t!==e&&(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15]),e[4]=a*i+c*r,e[5]=o*i+u*r,e[6]=s*i+f*r,e[7]=l*i+d*r,e[8]=c*i-a*r,e[9]=u*i-o*r,e[10]=f*i-s*r,e[11]=d*i-l*r,e}},94918:function(e){e.exports=function(e,t,n){var r=Math.sin(n),i=Math.cos(n),a=t[0],o=t[1],s=t[2],l=t[3],c=t[8],u=t[9],f=t[10],d=t[11];return t!==e&&(e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15]),e[0]=a*i-c*r,e[1]=o*i-u*r,e[2]=s*i-f*r,e[3]=l*i-d*r,e[8]=a*r+c*i,e[9]=o*r+u*i,e[10]=s*r+f*i,e[11]=l*r+d*i,e}},15692:function(e){e.exports=function(e,t,n){var r=Math.sin(n),i=Math.cos(n),a=t[0],o=t[1],s=t[2],l=t[3],c=t[4],u=t[5],f=t[6],d=t[7];return t!==e&&(e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15]),e[0]=a*i+c*r,e[1]=o*i+u*r,e[2]=s*i+f*r,e[3]=l*i+d*r,e[4]=c*i-a*r,e[5]=u*i-o*r,e[6]=f*i-s*r,e[7]=d*i-l*r,e}},10789:function(e){e.exports=function(e,t,n){var r=n[0],i=n[1],a=n[2];return e[0]=t[0]*r,e[1]=t[1]*r,e[2]=t[2]*r,e[3]=t[3]*r,e[4]=t[4]*i,e[5]=t[5]*i,e[6]=t[6]*i,e[7]=t[7]*i,e[8]=t[8]*a,e[9]=t[9]*a,e[10]=t[10]*a,e[11]=t[11]*a,e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}},6726:function(e){e.exports=function(e){return"mat4("+e[0]+", "+e[1]+", "+e[2]+", "+e[3]+", "+e[4]+", "+e[5]+", "+e[6]+", "+e[7]+", "+e[8]+", "+e[9]+", "+e[10]+", "+e[11]+", "+e[12]+", "+e[13]+", "+e[14]+", "+e[15]+")"}},31283:function(e){e.exports=function(e,t,n){var r,i,a,o,s,l,c,u,f,d,h,p,v=n[0],m=n[1],g=n[2];return t===e?(e[12]=t[0]*v+t[4]*m+t[8]*g+t[12],e[13]=t[1]*v+t[5]*m+t[9]*g+t[13],e[14]=t[2]*v+t[6]*m+t[10]*g+t[14],e[15]=t[3]*v+t[7]*m+t[11]*g+t[15]):(r=t[0],i=t[1],a=t[2],o=t[3],s=t[4],l=t[5],c=t[6],u=t[7],f=t[8],d=t[9],h=t[10],p=t[11],e[0]=r,e[1]=i,e[2]=a,e[3]=o,e[4]=s,e[5]=l,e[6]=c,e[7]=u,e[8]=f,e[9]=d,e[10]=h,e[11]=p,e[12]=r*v+s*m+f*g+t[12],e[13]=i*v+l*m+d*g+t[13],e[14]=a*v+c*m+h*g+t[14],e[15]=o*v+u*m+p*g+t[15]),e}},88654:function(e){e.exports=function(e,t){if(e===t){var n=t[1],r=t[2],i=t[3],a=t[6],o=t[7],s=t[11];e[1]=t[4],e[2]=t[8],e[3]=t[12],e[4]=n,e[6]=t[9],e[7]=t[13],e[8]=r,e[9]=a,e[11]=t[14],e[12]=i,e[13]=o,e[14]=s}else e[0]=t[0],e[1]=t[4],e[2]=t[8],e[3]=t[12],e[4]=t[1],e[5]=t[5],e[6]=t[9],e[7]=t[13],e[8]=t[2],e[9]=t[6],e[10]=t[10],e[11]=t[14],e[12]=t[3],e[13]=t[7],e[14]=t[11],e[15]=t[15];return e}},42505:function(e,t,n){"use strict";var r=n(72791),i=n(71299),a=n(98580),o=n(12018),s=n(83522),l=n(25075),c=n(68016),u=n(58404),f=n(18863),d=n(10973),h=n(25677),p=n(75686),v=n(53545),m=n(56131),g=n(32879),y=n(30120),b=n(13547).nextPow2,x=new s,w=!1;if(document.body){var _=document.body.appendChild(document.createElement("div"));_.style.font="italic small-caps bold condensed 16px/2 cursive",getComputedStyle(_).fontStretch&&(w=!0),document.body.removeChild(_)}var k=function(e){!function(e){return"function"===typeof e&&e._gl&&e.prop&&e.texture&&e.buffer}(e)?this.gl=o(e):(e={regl:e},this.gl=e.regl._gl),this.shader=x.get(this.gl),this.shader?this.regl=this.shader.regl:this.regl=e.regl||a({gl:this.gl}),this.charBuffer=this.regl.buffer({type:"uint8",usage:"stream"}),this.sizeBuffer=this.regl.buffer({type:"float",usage:"stream"}),this.shader||(this.shader=this.createShader(),x.set(this.gl,this.shader)),this.batch=[],this.fontSize=[],this.font=[],this.fontAtlas=[],this.draw=this.shader.draw.bind(this),this.render=function(){this.regl._refresh(),this.draw(this.batch)},this.canvas=this.gl.canvas,this.update(d(e)?e:{})};k.prototype.createShader=function(){var e=this.regl,t=e({blend:{enable:!0,color:[0,0,0,1],func:{srcRGB:"src alpha",dstRGB:"one minus src alpha",srcAlpha:"one minus dst alpha",dstAlpha:"one"}},stencil:{enable:!1},depth:{enable:!1},count:e.prop("count"),offset:e.prop("offset"),attributes:{charOffset:{offset:4,stride:8,buffer:e.this("sizeBuffer")},width:{offset:0,stride:8,buffer:e.this("sizeBuffer")},char:e.this("charBuffer"),position:e.this("position")},uniforms:{atlasSize:function(e,t){return[t.atlas.width,t.atlas.height]},atlasDim:function(e,t){return[t.atlas.cols,t.atlas.rows]},atlas:function(e,t){return t.atlas.texture},charStep:function(e,t){return t.atlas.step},em:function(e,t){return t.atlas.em},color:e.prop("color"),opacity:e.prop("opacity"),viewport:e.this("viewportArray"),scale:e.this("scale"),align:e.prop("align"),baseline:e.prop("baseline"),translate:e.this("translate"),positionOffset:e.prop("positionOffset")},primitive:"points",viewport:e.this("viewport"),vert:"\n\t\t\tprecision highp float;\n\t\t\tattribute float width, charOffset, char;\n\t\t\tattribute vec2 position;\n\t\t\tuniform float fontSize, charStep, em, align, baseline;\n\t\t\tuniform vec4 viewport;\n\t\t\tuniform vec4 color;\n\t\t\tuniform vec2 atlasSize, atlasDim, scale, translate, positionOffset;\n\t\t\tvarying vec2 charCoord, charId;\n\t\t\tvarying float charWidth;\n\t\t\tvarying vec4 fontColor;\n\t\t\tvoid main () {\n\t\t\t\tvec2 offset = floor(em * (vec2(align + charOffset, baseline)\n\t\t\t\t\t+ vec2(positionOffset.x, -positionOffset.y)))\n\t\t\t\t\t/ (viewport.zw * scale.xy);\n\n\t\t\t\tvec2 position = (position + translate) * scale;\n\t\t\t\tposition += offset * scale;\n\n\t\t\t\tcharCoord = position * viewport.zw + viewport.xy;\n\n\t\t\t\tgl_Position = vec4(position * 2. - 1., 0, 1);\n\n\t\t\t\tgl_PointSize = charStep;\n\n\t\t\t\tcharId.x = mod(char, atlasDim.x);\n\t\t\t\tcharId.y = floor(char / atlasDim.x);\n\n\t\t\t\tcharWidth = width * em;\n\n\t\t\t\tfontColor = color / 255.;\n\t\t\t}",frag:"\n\t\t\tprecision highp float;\n\t\t\tuniform float fontSize, charStep, opacity;\n\t\t\tuniform vec2 atlasSize;\n\t\t\tuniform vec4 viewport;\n\t\t\tuniform sampler2D atlas;\n\t\t\tvarying vec4 fontColor;\n\t\t\tvarying vec2 charCoord, charId;\n\t\t\tvarying float charWidth;\n\n\t\t\tfloat lightness(vec4 color) {\n\t\t\t\treturn color.r * 0.299 + color.g * 0.587 + color.b * 0.114;\n\t\t\t}\n\n\t\t\tvoid main () {\n\t\t\t\tvec2 uv = gl_FragCoord.xy - charCoord + charStep * .5;\n\t\t\t\tfloat halfCharStep = floor(charStep * .5 + .5);\n\n\t\t\t\t// invert y and shift by 1px (FF expecially needs that)\n\t\t\t\tuv.y = charStep - uv.y;\n\n\t\t\t\t// ignore points outside of character bounding box\n\t\t\t\tfloat halfCharWidth = ceil(charWidth * .5);\n\t\t\t\tif (floor(uv.x) > halfCharStep + halfCharWidth ||\n\t\t\t\t\tfloor(uv.x) < halfCharStep - halfCharWidth) return;\n\n\t\t\t\tuv += charId * charStep;\n\t\t\t\tuv = uv / atlasSize;\n\n\t\t\t\tvec4 color = fontColor;\n\t\t\t\tvec4 mask = texture2D(atlas, uv);\n\n\t\t\t\tfloat maskY = lightness(mask);\n\t\t\t\t// float colorY = lightness(color);\n\t\t\t\tcolor.a *= maskY;\n\t\t\t\tcolor.a *= opacity;\n\n\t\t\t\t// color.a += .1;\n\n\t\t\t\t// antialiasing, see yiq color space y-channel formula\n\t\t\t\t// color.rgb += (1. - color.rgb) * (1. - mask.rgb);\n\n\t\t\t\tgl_FragColor = color;\n\t\t\t}"});return{regl:e,draw:t,atlas:{}}},k.prototype.update=function(e){var t=this;if("string"===typeof e)e={text:e};else if(!e)return;null!=(e=i(e,{position:"position positions coord coords coordinates",font:"font fontFace fontface typeface cssFont css-font family fontFamily",fontSize:"fontSize fontsize size font-size",text:"text texts chars characters value values symbols",align:"align alignment textAlign textbaseline",baseline:"baseline textBaseline textbaseline",direction:"dir direction textDirection",color:"color colour fill fill-color fillColor textColor textcolor",kerning:"kerning kern",range:"range dataBox",viewport:"vp viewport viewBox viewbox viewPort",opacity:"opacity alpha transparency visible visibility opaque",offset:"offset positionOffset padding shift indent indentation"},!0)).opacity&&(Array.isArray(e.opacity)?this.opacity=e.opacity.map((function(e){return parseFloat(e)})):this.opacity=parseFloat(e.opacity)),null!=e.viewport&&(this.viewport=f(e.viewport),this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null==this.viewport&&(this.viewport={x:0,y:0,width:this.gl.drawingBufferWidth,height:this.gl.drawingBufferHeight},this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null!=e.kerning&&(this.kerning=e.kerning),null!=e.offset&&("number"===typeof e.offset&&(e.offset=[e.offset,0]),this.positionOffset=y(e.offset)),e.direction&&(this.direction=e.direction),e.range&&(this.range=e.range,this.scale=[1/(e.range[2]-e.range[0]),1/(e.range[3]-e.range[1])],this.translate=[-e.range[0],-e.range[1]]),e.scale&&(this.scale=e.scale),e.translate&&(this.translate=e.translate),this.scale||(this.scale=[1/this.viewport.width,1/this.viewport.height]),this.translate||(this.translate=[0,0]),this.font.length||e.font||(e.font=k.baseFontSize+"px sans-serif");var n,a=!1,o=!1;if(e.font&&(Array.isArray(e.font)?e.font:[e.font]).forEach((function(e,n){if("string"===typeof e)try{e=r.parse(e)}catch(f){e=r.parse(k.baseFontSize+"px "+e)}else e=r.parse(r.stringify(e));var i=r.stringify({size:k.baseFontSize,family:e.family,stretch:w?e.stretch:void 0,variant:e.variant,weight:e.weight,style:e.style}),s=h(e.size),l=Math.round(s[0]*p(s[1]));if(l!==t.fontSize[n]&&(o=!0,t.fontSize[n]=l),(!t.font[n]||i!=t.font[n].baseString)&&(a=!0,t.font[n]=k.fonts[i],!t.font[n])){var c=e.family.join(", "),u=[e.style];e.style!=e.variant&&u.push(e.variant),e.variant!=e.weight&&u.push(e.weight),w&&e.weight!=e.stretch&&u.push(e.stretch),t.font[n]={baseString:i,family:c,weight:e.weight,stretch:e.stretch,style:e.style,variant:e.variant,width:{},kerning:{},metrics:g(c,{origin:"top",fontSize:k.baseFontSize,fontStyle:u.join(" ")})},k.fonts[i]=t.font[n]}})),(a||o)&&this.font.forEach((function(n,i){var a=r.stringify({size:t.fontSize[i],family:n.family,stretch:w?n.stretch:void 0,variant:n.variant,weight:n.weight,style:n.style});if(t.fontAtlas[i]=t.shader.atlas[a],!t.fontAtlas[i]){var o=n.metrics;t.shader.atlas[a]=t.fontAtlas[i]={fontString:a,step:2*Math.ceil(t.fontSize[i]*o.bottom*.5),em:t.fontSize[i],cols:0,rows:0,height:0,width:0,chars:[],ids:{},texture:t.regl.texture()}}null==e.text&&(e.text=t.text)})),"string"===typeof e.text&&e.position&&e.position.length>2){for(var s=Array(.5*e.position.length),d=0;d2){for(var _=!e.position[0].length,S=u.mallocFloat(2*this.count),T=0,A=0;T1?t.align[n]:t.align[0]:t.align;if("number"===typeof r)return r;switch(r){case"right":case"end":return-e;case"center":case"centre":case"middle":return.5*-e}return 0}))),null==this.baseline&&null==e.baseline&&(e.baseline=0),null!=e.baseline&&(this.baseline=e.baseline,Array.isArray(this.baseline)||(this.baseline=[this.baseline]),this.baselineOffset=this.baseline.map((function(e,n){var r=(t.font[n]||t.font[0]).metrics,i=0;return i+=.5*r.bottom,i+="number"===typeof e?e-r.baseline:-r[e],i*=-1}))),null!=e.color)if(e.color||(e.color="transparent"),"string"!==typeof e.color&&isNaN(e.color)){var V;if("number"===typeof e.color[0]&&e.color.length>this.counts.length){var W=e.color.length;V=u.mallocUint8(W);for(var q=(e.color.subarray||e.color.slice).bind(e.color),G=0;G4||this.baselineOffset.length>1||this.align&&this.align.length>1||this.fontAtlas.length>1||this.positionOffset.length>2){var K=Math.max(.5*this.position.length||0,.25*this.color.length||0,this.baselineOffset.length||0,this.alignOffset.length||0,this.font.length||0,this.opacity.length||0,.5*this.positionOffset.length||0);this.batch=Array(K);for(var X=0;X1?this.counts[X]:this.counts[0],offset:this.textOffsets.length>1?this.textOffsets[X]:this.textOffsets[0],color:this.color?this.color.length<=4?this.color:this.color.subarray(4*X,4*X+4):[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[X]:this.opacity,baseline:null!=this.baselineOffset[X]?this.baselineOffset[X]:this.baselineOffset[0],align:this.align?null!=this.alignOffset[X]?this.alignOffset[X]:this.alignOffset[0]:0,atlas:this.fontAtlas[X]||this.fontAtlas[0],positionOffset:this.positionOffset.length>2?this.positionOffset.subarray(2*X,2*X+2):this.positionOffset}}else this.count?this.batch=[{count:this.count,offset:0,color:this.color||[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[0]:this.opacity,baseline:this.baselineOffset[0],align:this.alignOffset?this.alignOffset[0]:0,atlas:this.fontAtlas[0],positionOffset:this.positionOffset}]:this.batch=[]},k.prototype.destroy=function(){},k.prototype.kerning=!0,k.prototype.position={constant:new Float32Array(2)},k.prototype.translate=null,k.prototype.scale=null,k.prototype.font=null,k.prototype.text="",k.prototype.positionOffset=[0,0],k.prototype.opacity=1,k.prototype.color=new Uint8Array([0,0,0,255]),k.prototype.alignOffset=[0,0],k.maxAtlasSize=1024,k.atlasCanvas=document.createElement("canvas"),k.atlasContext=k.atlasCanvas.getContext("2d",{alpha:!1}),k.baseFontSize=64,k.fonts={},e.exports=k},12018:function(e,t,n){"use strict";var r=n(71299);function i(e){if(e.container)if(e.container==document.body)document.body.style.width||(e.canvas.width=e.width||e.pixelRatio*n.g.innerWidth),document.body.style.height||(e.canvas.height=e.height||e.pixelRatio*n.g.innerHeight);else{var t=e.container.getBoundingClientRect();e.canvas.width=e.width||t.right-t.left,e.canvas.height=e.height||t.bottom-t.top}}function a(e){return"function"===typeof e.getContext&&"width"in e&&"height"in e}function o(){var e=document.createElement("canvas");return e.style.position="absolute",e.style.top=0,e.style.left=0,e}e.exports=function(e){var t;if(e?"string"===typeof e&&(e={container:e}):e={},(e=a(e)||"string"===typeof(t=e).nodeName&&"function"===typeof t.appendChild&&"function"===typeof t.getBoundingClientRect?{container:e}:function(e){return"function"===typeof e.drawArrays||"function"===typeof e.drawElements}(e)?{gl:e}:r(e,{container:"container target element el canvas holder parent parentNode wrapper use ref root node",gl:"gl context webgl glContext",attrs:"attributes attrs contextAttributes",pixelRatio:"pixelRatio pxRatio px ratio pxratio pixelratio",width:"w width",height:"h height"},!0)).pixelRatio||(e.pixelRatio=n.g.pixelRatio||1),e.gl)return e.gl;if(e.canvas&&(e.container=e.canvas.parentNode),e.container){if("string"===typeof e.container){var s=document.querySelector(e.container);if(!s)throw Error("Element "+e.container+" is not found");e.container=s}a(e.container)?(e.canvas=e.container,e.container=e.canvas.parentNode):e.canvas||(e.canvas=o(),e.container.appendChild(e.canvas),i(e))}else if(!e.canvas){if("undefined"===typeof document)throw Error("Not DOM environment. Use headless-gl.");e.container=document.body||document.documentElement,e.canvas=o(),e.container.appendChild(e.canvas),i(e)}return e.gl||["webgl","experimental-webgl","webgl-experimental"].some((function(n){try{e.gl=e.canvas.getContext(n,e.attrs)}catch(t){}return e.gl})),e.gl}},56068:function(e){e.exports=function(e){"string"===typeof e&&(e=[e]);for(var t=[].slice.call(arguments,1),n=[],r=0;r>1,u=-7,f=n?i-1:0,d=n?-1:1,h=e[t+f];for(f+=d,a=h&(1<<-u)-1,h>>=-u,u+=s;u>0;a=256*a+e[t+f],f+=d,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=r;u>0;o=256*o+e[t+f],f+=d,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(h?-1:1);o+=Math.pow(2,r),a-=c}return(h?-1:1)*o*Math.pow(2,a-r)},t.write=function(e,t,n,r,i,a){var o,s,l,c=8*a-i-1,u=(1<>1,d=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:a-1,p=r?1:-1,v=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,o=u):(o=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-o))<1&&(o--,l*=2),(t+=o+f>=1?d/l:d*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(t*l-1)*Math.pow(2,i),o+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;e[n+h]=255&s,h+=p,s/=256,i-=8);for(o=o<0;e[n+h]=255&o,h+=p,o/=256,c-=8);e[n+h-p]|=128*v}},42018:function(e){"function"===typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},47216:function(e,t,n){"use strict";var r=n(84543)(),i=n(6614)("Object.prototype.toString"),a=function(e){return!(r&&e&&"object"===typeof e&&Symbol.toStringTag in e)&&"[object Arguments]"===i(e)},o=function(e){return!!a(e)||null!==e&&"object"===typeof e&&"number"===typeof e.length&&e.length>=0&&"[object Array]"!==i(e)&&"[object Function]"===i(e.callee)},s=function(){return a(arguments)}();a.isLegacyArguments=o,e.exports=s?a:o},54404:function(e){e.exports=!0},85395:function e(t){"use strict";var n,r,i=Function.prototype.toString,a="object"===typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"===typeof a&&"function"===typeof Object.defineProperty)try{n=Object.defineProperty({},"length",{get:function(){throw r}}),r={},a((function(){throw 42}),null,n)}catch(e){e!==r&&(a=null)}else a=null;var o=/^\s*class\b/,s=function(e){try{var t=i.call(e);return o.test(t)}catch(n){return!1}},l=function(e){try{return!s(e)&&(i.call(e),!0)}catch(t){return!1}},c=Object.prototype.toString,u="function"===typeof Symbol&&!!Symbol.toStringTag,f=!(0 in[,]),d=function(){return!1};if("object"===typeof document){var h=document.all;c.call(h)===c.call(document.all)&&(d=function(e){if((f||!e)&&("undefined"===typeof e||"object"===typeof e))try{var t=c.call(e);return("[object HTMLAllCollection]"===t||"[object HTML document.all class]"===t||"[object HTMLCollection]"===t||"[object Object]"===t)&&null==e("")}catch(n){}return!1})}t.exports=a?function(e){if(d(e))return!0;if(!e)return!1;if("function"!==typeof e&&"object"!==typeof e)return!1;try{a(e,null,n)}catch(t){if(t!==r)return!1}return!s(e)&&l(e)}:function(e){if(d(e))return!0;if(!e)return!1;if("function"!==typeof e&&"object"!==typeof e)return!1;if(u)return l(e);if(s(e))return!1;var t=c.call(e);return!("[object Function]"!==t&&"[object GeneratorFunction]"!==t&&!/^\[object HTML/.test(t))&&l(e)}},65481:function(e,t,n){"use strict";var r,i=Object.prototype.toString,a=Function.prototype.toString,o=/^\s*(?:function)?\*/,s=n(84543)(),l=Object.getPrototypeOf;e.exports=function(e){if("function"!==typeof e)return!1;if(o.test(a.call(e)))return!0;if(!s)return"[object GeneratorFunction]"===i.call(e);if(!l)return!1;if("undefined"===typeof r){var t=function(){if(!s)return!1;try{return Function("return function*() {}")()}catch(e){}}();r=!!t&&l(t)}return l(e)===r}},62683:function(e){"use strict";e.exports="undefined"!==typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\//.test(navigator.appVersion))},64274:function(e){"use strict";e.exports=function(e){return e!==e}},15567:function(e,t,n){"use strict";var r=n(68222),i=n(17045),a=n(64274),o=n(14922),s=n(22442),l=r(o(),Number);i(l,{getPolyfill:o,implementation:a,shim:s}),e.exports=l},14922:function(e,t,n){"use strict";var r=n(64274);e.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:r}},22442:function(e,t,n){"use strict";var r=n(17045),i=n(14922);e.exports=function(){var e=i();return r(Number,{isNaN:e},{isNaN:function(){return Number.isNaN!==e}}),e}},64941:function(e){"use strict";e.exports=function(e){var t=typeof e;return null!==e&&("object"===t||"function"===t)}},10973:function(e){"use strict";var t=Object.prototype.toString;e.exports=function(e){var n;return"[object Object]"===t.call(e)&&(null===(n=Object.getPrototypeOf(e))||n===Object.getPrototypeOf({}))}},18546:function(e){"use strict";e.exports=function(e){for(var t,n=e.length,r=0;r13)&&32!==t&&133!==t&&160!==t&&5760!==t&&6158!==t&&(t<8192||t>8205)&&8232!==t&&8233!==t&&8239!==t&&8287!==t&&8288!==t&&12288!==t&&65279!==t)return!1;return!0}},89546:function(e){"use strict";e.exports=function(e){return"string"===typeof e&&(e=e.trim(),!!(/^[mzlhvcsqta]\s*[-+.0-9][^mlhvzcsqta]+/i.test(e)&&/[\dz]$/i.test(e)&&e.length>4))}},9187:function(e,t,n){"use strict";var r=n(31353),i=n(72077),a=n(6614),o=a("Object.prototype.toString"),s=n(84543)(),l=n(40383),c="undefined"===typeof globalThis?n.g:globalThis,u=i(),f=a("Array.prototype.indexOf",!0)||function(e,t){for(var n=0;n-1}return!!l&&function(e){var t=!1;return r(h,(function(n,r){if(!t)try{t=n.call(e)===r}catch(i){}})),t}(e)}},44517:function(e){e.exports=function(){"use strict";var e,t,n;function r(r,i){if(e)if(t){var a="var sharedChunk = {}; ("+e+")(sharedChunk); ("+t+")(sharedChunk);",o={};e(o),(n=i(o)).workerUrl=window.URL.createObjectURL(new Blob([a],{type:"text/javascript"}))}else t=i;else e=i}return r(["exports"],(function(e){function t(e,t){return e(t={exports:{}},t.exports),t.exports}var n="1.10.1",r=i;function i(e,t,n,r){this.cx=3*e,this.bx=3*(n-e)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*t,this.by=3*(r-t)-this.cy,this.ay=1-this.cy-this.by,this.p1x=e,this.p1y=r,this.p2x=n,this.p2y=r}i.prototype.sampleCurveX=function(e){return((this.ax*e+this.bx)*e+this.cx)*e},i.prototype.sampleCurveY=function(e){return((this.ay*e+this.by)*e+this.cy)*e},i.prototype.sampleCurveDerivativeX=function(e){return(3*this.ax*e+2*this.bx)*e+this.cx},i.prototype.solveCurveX=function(e,t){var n,r,i,a,o;for("undefined"===typeof t&&(t=1e-6),i=e,o=0;o<8;o++){if(a=this.sampleCurveX(i)-e,Math.abs(a)(r=1))return r;for(;na?n=i:r=i,i=.5*(r-n)+n}return i},i.prototype.solve=function(e,t){return this.sampleCurveY(this.solveCurveX(e,t))};var a=o;function o(e,t){this.x=e,this.y=t}function s(e,t){if(Array.isArray(e)){if(!Array.isArray(t)||e.length!==t.length)return!1;for(var n=0;n=1)return 1;var t=e*e,n=t*e;return 4*(e<.5?n:3*(e-t)+n-.75)}function c(e,t,n,i){var a=new r(e,t,n,i);return function(e){return a.solve(e)}}o.prototype={clone:function(){return new o(this.x,this.y)},add:function(e){return this.clone()._add(e)},sub:function(e){return this.clone()._sub(e)},multByPoint:function(e){return this.clone()._multByPoint(e)},divByPoint:function(e){return this.clone()._divByPoint(e)},mult:function(e){return this.clone()._mult(e)},div:function(e){return this.clone()._div(e)},rotate:function(e){return this.clone()._rotate(e)},rotateAround:function(e,t){return this.clone()._rotateAround(e,t)},matMult:function(e){return this.clone()._matMult(e)},unit:function(){return this.clone()._unit()},perp:function(){return this.clone()._perp()},round:function(){return this.clone()._round()},mag:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},equals:function(e){return this.x===e.x&&this.y===e.y},dist:function(e){return Math.sqrt(this.distSqr(e))},distSqr:function(e){var t=e.x-this.x,n=e.y-this.y;return t*t+n*n},angle:function(){return Math.atan2(this.y,this.x)},angleTo:function(e){return Math.atan2(this.y-e.y,this.x-e.x)},angleWith:function(e){return this.angleWithSep(e.x,e.y)},angleWithSep:function(e,t){return Math.atan2(this.x*t-this.y*e,this.x*e+this.y*t)},_matMult:function(e){var t=e[0]*this.x+e[1]*this.y,n=e[2]*this.x+e[3]*this.y;return this.x=t,this.y=n,this},_add:function(e){return this.x+=e.x,this.y+=e.y,this},_sub:function(e){return this.x-=e.x,this.y-=e.y,this},_mult:function(e){return this.x*=e,this.y*=e,this},_div:function(e){return this.x/=e,this.y/=e,this},_multByPoint:function(e){return this.x*=e.x,this.y*=e.y,this},_divByPoint:function(e){return this.x/=e.x,this.y/=e.y,this},_unit:function(){return this._div(this.mag()),this},_perp:function(){var e=this.y;return this.y=this.x,this.x=-e,this},_rotate:function(e){var t=Math.cos(e),n=Math.sin(e),r=t*this.x-n*this.y,i=n*this.x+t*this.y;return this.x=r,this.y=i,this},_rotateAround:function(e,t){var n=Math.cos(e),r=Math.sin(e),i=t.x+n*(this.x-t.x)-r*(this.y-t.y),a=t.y+r*(this.x-t.x)+n*(this.y-t.y);return this.x=i,this.y=a,this},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}},o.convert=function(e){return e instanceof o?e:Array.isArray(e)?new o(e[0],e[1]):e};var u=c(.25,.1,.25,1);function f(e,t,n){return Math.min(n,Math.max(t,e))}function d(e,t,n){var r=n-t,i=((e-t)%r+r)%r+t;return i===t?n:i}function h(e,t,n){if(!e.length)return n(null,[]);var r=e.length,i=new Array(e.length),a=null;e.forEach((function(e,o){t(e,(function(e,t){e&&(a=e),i[o]=t,0===--r&&n(a,i)}))}))}function p(e){var t=[];for(var n in e)t.push(e[n]);return t}function v(e,t){var n=[];for(var r in e)r in t||n.push(r);return n}function m(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];for(var r=0,i=t;r>t/4).toString(16):([1e7]+-[1e3]+-4e3+-8e3+-1e11).replace(/[018]/g,e)}return e()}function w(e){return!!e&&/^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(e)}function _(e,t){e.forEach((function(e){t[e]&&(t[e]=t[e].bind(t))}))}function k(e,t){return-1!==e.indexOf(t,e.length-t.length)}function S(e,t,n){var r={};for(var i in e)r[i]=t.call(n||this,e[i],i,e);return r}function T(e,t,n){var r={};for(var i in e)t.call(n||this,e[i],i,e)&&(r[i]=e[i]);return r}function A(e){return Array.isArray(e)?e.map(A):"object"===typeof e&&e?S(e,A):e}function E(e,t){for(var n=0;n=0)return!0;return!1}var C={};function M(e){C[e]||("undefined"!==typeof console&&console.warn(e),C[e]=!0)}function O(e,t,n){return(n.y-e.y)*(t.x-e.x)>(t.y-e.y)*(n.x-e.x)}function P(e){for(var t=0,n=0,r=e.length,i=r-1,a=void 0,o=void 0;n@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)(?:\=(?:([^\x00-\x20\(\)<>@\,;\:\\"\/\[\]\?\=\{\}\x7F]+)|(?:\"((?:[^"\\]|\\.)*)\")))?/g,n={};if(e.replace(t,(function(e,t,r,i){var a=r||i;return n[t]=!a||a.toLowerCase(),""})),n["max-age"]){var r=parseInt(n["max-age"],10);isNaN(r)?delete n["max-age"]:n["max-age"]=r}return n}var D=null;function F(e){if(null==D){var t=e.navigator?e.navigator.userAgent:null;D=!!e.safari||!(!t||!(/\b(iPad|iPhone|iPod)\b/.test(t)||t.match("Safari")&&!t.match("Chrome")))}return D}function N(e){try{var t=self[e];return t.setItem("_mapbox_test_",1),t.removeItem("_mapbox_test_"),!0}catch(n){return!1}}function z(e){return self.btoa(encodeURIComponent(e).replace(/%([0-9A-F]{2})/g,(function(e,t){return String.fromCharCode(Number("0x"+t))})))}function j(e){return decodeURIComponent(self.atob(e).split("").map((function(e){return"%"+("00"+e.charCodeAt(0).toString(16)).slice(-2)})).join(""))}var B,U,H,$,V=self.performance&&self.performance.now?self.performance.now.bind(self.performance):Date.now.bind(Date),W=self.requestAnimationFrame||self.mozRequestAnimationFrame||self.webkitRequestAnimationFrame||self.msRequestAnimationFrame,q=self.cancelAnimationFrame||self.mozCancelAnimationFrame||self.webkitCancelAnimationFrame||self.msCancelAnimationFrame,G={now:V,frame:function(e){var t=W(e);return{cancel:function(){return q(t)}}},getImageData:function(e,t){void 0===t&&(t=0);var n=self.document.createElement("canvas"),r=n.getContext("2d");if(!r)throw new Error("failed to create canvas 2d context");return n.width=e.width,n.height=e.height,r.drawImage(e,0,0,e.width,e.height),r.getImageData(-t,-t,e.width+2*t,e.height+2*t)},resolveURL:function(e){return B||(B=self.document.createElement("a")),B.href=e,B.href},hardwareConcurrency:self.navigator.hardwareConcurrency||4,get devicePixelRatio(){return self.devicePixelRatio},get prefersReducedMotion(){return!!self.matchMedia&&(null==U&&(U=self.matchMedia("(prefers-reduced-motion: reduce)")),U.matches)}},Z={API_URL:"https://api.mapbox.com",get EVENTS_URL(){return this.API_URL?0===this.API_URL.indexOf("https://api.mapbox.cn")?"https://events.mapbox.cn/events/v2":0===this.API_URL.indexOf("https://api.mapbox.com")?"https://events.mapbox.com/events/v2":null:null},FEEDBACK_URL:"https://apps.mapbox.com/feedback",REQUIRE_ACCESS_TOKEN:!0,ACCESS_TOKEN:null,MAX_PARALLEL_IMAGE_REQUESTS:16},Y={supported:!1,testSupport:J},K=!1,X=!1;function J(e){!K&&$&&(X?Q(e):H=e)}function Q(e){var t=e.createTexture();e.bindTexture(e.TEXTURE_2D,t);try{if(e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,$),e.isContextLost())return;Y.supported=!0}catch(n){}e.deleteTexture(t),K=!0}self.document&&(($=self.document.createElement("img")).onload=function(){H&&Q(H),H=null,X=!0},$.onerror=function(){K=!0,H=null},$.src="data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAQAAAAfQ//73v/+BiOh/AAA=");var ee="01";function te(){for(var e="1",t="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",n="",r=0;r<10;r++)n+=t[Math.floor(62*Math.random())];var i=432e5;return{token:[e,ee,n].join(""),tokenExpiresAt:Date.now()+i}}var ne=function(e,t){this._transformRequestFn=e,this._customAccessToken=t,this._createSkuToken()};function re(e){return 0===e.indexOf("mapbox:")}ne.prototype._createSkuToken=function(){var e=te();this._skuToken=e.token,this._skuTokenExpiresAt=e.tokenExpiresAt},ne.prototype._isSkuTokenExpired=function(){return Date.now()>this._skuTokenExpiresAt},ne.prototype.transformRequest=function(e,t){return this._transformRequestFn&&this._transformRequestFn(e,t)||{url:e}},ne.prototype.normalizeStyleURL=function(e,t){if(!re(e))return e;var n=ce(e);return n.path="/styles/v1"+n.path,this._makeAPIURL(n,this._customAccessToken||t)},ne.prototype.normalizeGlyphsURL=function(e,t){if(!re(e))return e;var n=ce(e);return n.path="/fonts/v1"+n.path,this._makeAPIURL(n,this._customAccessToken||t)},ne.prototype.normalizeSourceURL=function(e,t){if(!re(e))return e;var n=ce(e);return n.path="/v4/"+n.authority+".json",n.params.push("secure"),this._makeAPIURL(n,this._customAccessToken||t)},ne.prototype.normalizeSpriteURL=function(e,t,n,r){var i=ce(e);return re(e)?(i.path="/styles/v1"+i.path+"/sprite"+t+n,this._makeAPIURL(i,this._customAccessToken||r)):(i.path+=""+t+n,ue(i))},ne.prototype.normalizeTileURL=function(e,t){if(this._isSkuTokenExpired()&&this._createSkuToken(),e&&!re(e))return e;var n=ce(e),r=/(\.(png|jpg)\d*)(?=$)/,i=/^.+\/v4\//,a=G.devicePixelRatio>=2||512===t?"@2x":"",o=Y.supported?".webp":"$1";n.path=n.path.replace(r,""+a+o),n.path=n.path.replace(i,"/"),n.path="/v4"+n.path;var s=this._customAccessToken||se(n.params)||Z.ACCESS_TOKEN;return Z.REQUIRE_ACCESS_TOKEN&&s&&this._skuToken&&n.params.push("sku="+this._skuToken),this._makeAPIURL(n,s)},ne.prototype.canonicalizeTileURL=function(e,t){var n="/v4/",r=/\.[\w]+$/,i=ce(e);if(!i.path.match(/(^\/v4\/)/)||!i.path.match(r))return e;var a="mapbox://tiles/";a+=i.path.replace(n,"");var o=i.params;return t&&(o=o.filter((function(e){return!e.match(/^access_token=/)}))),o.length&&(a+="?"+o.join("&")),a},ne.prototype.canonicalizeTileset=function(e,t){for(var n=!!t&&re(t),r=[],i=0,a=e.tiles||[];i=1&&self.localStorage.setItem(t,JSON.stringify(this.eventData))}catch(r){M("Unable to write to LocalStorage")}},he.prototype.processRequests=function(e){},he.prototype.postEvent=function(e,t,r,i){var a=this;if(Z.EVENTS_URL){var o=ce(Z.EVENTS_URL);o.params.push("access_token="+(i||Z.ACCESS_TOKEN||""));var s={event:this.type,created:new Date(e).toISOString(),sdkIdentifier:"mapbox-gl-js",sdkVersion:n,skuId:ee,userId:this.anonId},l=t?m(s,t):s,c={url:ue(o),headers:{"Content-Type":"text/plain"},body:JSON.stringify([l])};this.pendingRequest=Ze(c,(function(e){a.pendingRequest=null,r(e),a.saveEventData(),a.processRequests(i)}))}},he.prototype.queueRequest=function(e,t){this.queue.push(e),this.processRequests(t)};var pe,ve,me=function(e){function t(){e.call(this,"map.load"),this.success={},this.skuToken=""}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.postMapLoadEvent=function(e,t,n,r){this.skuToken=n,(Z.EVENTS_URL&&r||Z.ACCESS_TOKEN&&Array.isArray(e)&&e.some((function(e){return re(e)||ae(e)})))&&this.queueRequest({id:t,timestamp:Date.now()},r)},t.prototype.processRequests=function(e){var t=this;if(!this.pendingRequest&&0!==this.queue.length){var n=this.queue.shift(),r=n.id,i=n.timestamp;r&&this.success[r]||(this.anonId||this.fetchEventData(),w(this.anonId)||(this.anonId=x()),this.postEvent(i,{skuToken:this.skuToken},(function(e){e||r&&(t.success[r]=!0)}),e))}},t}(he),ge=function(e){function t(t){e.call(this,"appUserTurnstile"),this._customAccessToken=t}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.postTurnstileEvent=function(e,t){Z.EVENTS_URL&&Z.ACCESS_TOKEN&&Array.isArray(e)&&e.some((function(e){return re(e)||ae(e)}))&&this.queueRequest(Date.now(),t)},t.prototype.processRequests=function(e){var t=this;if(!this.pendingRequest&&0!==this.queue.length){this.anonId&&this.eventData.lastSuccess&&this.eventData.tokenU||this.fetchEventData();var n=de(Z.ACCESS_TOKEN),r=n?n.u:Z.ACCESS_TOKEN,i=r!==this.eventData.tokenU;w(this.anonId)||(this.anonId=x(),i=!0);var a=this.queue.shift();if(this.eventData.lastSuccess){var o=new Date(this.eventData.lastSuccess),s=new Date(a),l=(a-this.eventData.lastSuccess)/864e5;i=i||l>=1||l<-1||o.getDate()!==s.getDate()}else i=!0;if(!i)return this.processRequests();this.postEvent(a,{"enabled.telemetry":!1},(function(e){e||(t.eventData.lastSuccess=a,t.eventData.tokenU=r)}),e)}},t}(he),ye=new ge,be=ye.postTurnstileEvent.bind(ye),xe=new me,we=xe.postMapLoadEvent.bind(xe),_e="mapbox-tiles",ke=500,Se=50,Te=42e4;function Ae(){self.caches&&!pe&&(pe=self.caches.open(_e))}function Ee(e,t){if(void 0===ve)try{new Response(new ReadableStream),ve=!0}catch(n){ve=!1}ve?t(e.body):e.blob().then(t)}function Ce(e,t,n){if(Ae(),pe){var r={status:t.status,statusText:t.statusText,headers:new self.Headers};t.headers.forEach((function(e,t){return r.headers.set(t,e)}));var i=R(t.headers.get("Cache-Control")||"");i["no-store"]||(i["max-age"]&&r.headers.set("Expires",new Date(n+1e3*i["max-age"]).toUTCString()),new Date(r.headers.get("Expires")).getTime()-nDate.now()&&!n["no-cache"]}var Le,Ie=1/0;function Re(e){++Ie>Se&&(e.getActor().send("enforceCacheSizeLimit",ke),Ie=0)}function De(e){Ae(),pe&&pe.then((function(t){t.keys().then((function(n){for(var r=0;r=200&&n.status<300||0===n.status)&&null!==n.response){var r=n.response;if("json"===e.type)try{r=JSON.parse(n.response)}catch(i){return t(i)}t(null,r,n.getResponseHeader("Cache-Control"),n.getResponseHeader("Expires"))}else t(new Be(n.statusText,n.status,e.url))},n.send(e.body),{cancel:function(){return n.abort()}}}var We=function(e,t){if(!He(e.url)){if(self.fetch&&self.Request&&self.AbortController&&self.Request.prototype.hasOwnProperty("signal"))return $e(e,t);if(I()&&self.worker&&self.worker.actor){var n=!0;return self.worker.actor.send("getResource",e,t,void 0,n)}}return Ve(e,t)},qe=function(e,t){return We(m(e,{type:"json"}),t)},Ge=function(e,t){return We(m(e,{type:"arrayBuffer"}),t)},Ze=function(e,t){return We(m(e,{method:"POST"}),t)};function Ye(e){var t=self.document.createElement("a");return t.href=e,t.protocol===self.document.location.protocol&&t.host===self.document.location.host}var Ke,Xe,Je="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYV2NgAAIAAAUAAarVyFEAAAAASUVORK5CYII=";function Qe(e,t,n,r){var i=new self.Image,a=self.URL;i.onload=function(){t(null,i),a.revokeObjectURL(i.src)},i.onerror=function(){return t(new Error("Could not load image. Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported."))};var o=new self.Blob([new Uint8Array(e)],{type:"image/png"});i.cacheControl=n,i.expires=r,i.src=e.byteLength?a.createObjectURL(o):Je}function et(e,t){var n=new self.Blob([new Uint8Array(e)],{type:"image/png"});self.createImageBitmap(n).then((function(e){t(null,e)})).catch((function(e){t(new Error("Could not load image because of "+e.message+". Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported."))}))}Ke=[],Xe=0;var tt=function e(t,n){if(Y.supported&&(t.headers||(t.headers={}),t.headers.accept="image/webp,*/*"),Xe>=Z.MAX_PARALLEL_IMAGE_REQUESTS){var r={requestParameters:t,callback:n,cancelled:!1,cancel:function(){this.cancelled=!0}};return Ke.push(r),r}Xe++;var i=!1,a=function(){if(!i)for(i=!0,Xe--;Ke.length&&Xe0||this._oneTimeListeners&&this._oneTimeListeners[e]&&this._oneTimeListeners[e].length>0||this._eventedParent&&this._eventedParent.listens(e)},st.prototype.setEventedParent=function(e,t){return this._eventedParent=e,this._eventedParentData=t,this};var lt={$version:8,$root:{version:{required:!0,type:"enum",values:[8]},name:{type:"string"},metadata:{type:"*"},center:{type:"array",value:"number"},zoom:{type:"number"},bearing:{type:"number",default:0,period:360,units:"degrees"},pitch:{type:"number",default:0,units:"degrees"},light:{type:"light"},sources:{required:!0,type:"sources"},sprite:{type:"string"},glyphs:{type:"string"},transition:{type:"transition"},layers:{required:!0,type:"array",value:"layer"}},sources:{"*":{type:"source"}},source:["source_vector","source_raster","source_raster_dem","source_geojson","source_video","source_image"],source_vector:{type:{required:!0,type:"enum",values:{vector:{}}},url:{type:"string"},tiles:{type:"array",value:"string"},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129]},scheme:{type:"enum",values:{xyz:{},tms:{}},default:"xyz"},minzoom:{type:"number",default:0},maxzoom:{type:"number",default:22},attribution:{type:"string"},promoteId:{type:"promoteId"},"*":{type:"*"}},source_raster:{type:{required:!0,type:"enum",values:{raster:{}}},url:{type:"string"},tiles:{type:"array",value:"string"},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:"number",default:0},maxzoom:{type:"number",default:22},tileSize:{type:"number",default:512,units:"pixels"},scheme:{type:"enum",values:{xyz:{},tms:{}},default:"xyz"},attribution:{type:"string"},"*":{type:"*"}},source_raster_dem:{type:{required:!0,type:"enum",values:{"raster-dem":{}}},url:{type:"string"},tiles:{type:"array",value:"string"},bounds:{type:"array",value:"number",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:"number",default:0},maxzoom:{type:"number",default:22},tileSize:{type:"number",default:512,units:"pixels"},attribution:{type:"string"},encoding:{type:"enum",values:{terrarium:{},mapbox:{}},default:"mapbox"},"*":{type:"*"}},source_geojson:{type:{required:!0,type:"enum",values:{geojson:{}}},data:{type:"*"},maxzoom:{type:"number",default:18},attribution:{type:"string"},buffer:{type:"number",default:128,maximum:512,minimum:0},tolerance:{type:"number",default:.375},cluster:{type:"boolean",default:!1},clusterRadius:{type:"number",default:50,minimum:0},clusterMaxZoom:{type:"number"},clusterProperties:{type:"*"},lineMetrics:{type:"boolean",default:!1},generateId:{type:"boolean",default:!1},promoteId:{type:"promoteId"}},source_video:{type:{required:!0,type:"enum",values:{video:{}}},urls:{required:!0,type:"array",value:"string"},coordinates:{required:!0,type:"array",length:4,value:{type:"array",length:2,value:"number"}}},source_image:{type:{required:!0,type:"enum",values:{image:{}}},url:{required:!0,type:"string"},coordinates:{required:!0,type:"array",length:4,value:{type:"array",length:2,value:"number"}}},layer:{id:{type:"string",required:!0},type:{type:"enum",values:{fill:{},line:{},symbol:{},circle:{},heatmap:{},"fill-extrusion":{},raster:{},hillshade:{},background:{}},required:!0},metadata:{type:"*"},source:{type:"string"},"source-layer":{type:"string"},minzoom:{type:"number",minimum:0,maximum:24},maxzoom:{type:"number",minimum:0,maximum:24},filter:{type:"filter"},layout:{type:"layout"},paint:{type:"paint"}},layout:["layout_fill","layout_line","layout_circle","layout_heatmap","layout_fill-extrusion","layout_symbol","layout_raster","layout_hillshade","layout_background"],layout_background:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_fill:{"fill-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_circle:{"circle-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_heatmap:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},"layout_fill-extrusion":{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_line:{"line-cap":{type:"enum",values:{butt:{},round:{},square:{}},default:"butt",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"line-join":{type:"enum",values:{bevel:{},round:{},miter:{}},default:"miter",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"line-miter-limit":{type:"number",default:2,requires:[{"line-join":"miter"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-round-limit":{type:"number",default:1.05,requires:[{"line-join":"round"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_symbol:{"symbol-placement":{type:"enum",values:{point:{},line:{},"line-center":{}},default:"point",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"symbol-spacing":{type:"number",default:250,minimum:1,units:"pixels",requires:[{"symbol-placement":"line"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"symbol-avoid-edges":{type:"boolean",default:!1,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"symbol-sort-key":{type:"number",expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"symbol-z-order":{type:"enum",values:{auto:{},"viewport-y":{},source:{}},default:"auto",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-allow-overlap":{type:"boolean",default:!1,requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-ignore-placement":{type:"boolean",default:!1,requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-optional":{type:"boolean",default:!1,requires:["icon-image","text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-rotation-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-size":{type:"number",default:1,minimum:0,units:"factor of the original icon size",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-text-fit":{type:"enum",values:{none:{},width:{},height:{},both:{}},default:"none",requires:["icon-image","text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-text-fit-padding":{type:"array",value:"number",length:4,default:[0,0,0,0],units:"pixels",requires:["icon-image","text-field",{"icon-text-fit":["both","width","height"]}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-image":{type:"resolvedImage",tokens:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-rotate":{type:"number",default:0,period:360,units:"degrees",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-padding":{type:"number",default:2,minimum:0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-keep-upright":{type:"boolean",default:!1,requires:["icon-image",{"icon-rotation-alignment":"map"},{"symbol-placement":["line","line-center"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"icon-offset":{type:"array",value:"number",length:2,default:[0,0],requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-anchor":{type:"enum",values:{center:{},left:{},right:{},top:{},bottom:{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},default:"center",requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"icon-pitch-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-pitch-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-rotation-alignment":{type:"enum",values:{map:{},viewport:{},auto:{}},default:"auto",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-field":{type:"formatted",default:"",tokens:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-font":{type:"array",value:"string",default:["Open Sans Regular","Arial Unicode MS Regular"],requires:["text-field"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-size":{type:"number",default:16,minimum:0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-max-width":{type:"number",default:10,minimum:0,units:"ems",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-line-height":{type:"number",default:1.2,units:"ems",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-letter-spacing":{type:"number",default:0,units:"ems",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-justify":{type:"enum",values:{auto:{},left:{},center:{},right:{}},default:"center",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-radial-offset":{type:"number",units:"ems",default:0,requires:["text-field"],"property-type":"data-driven",expression:{interpolated:!0,parameters:["zoom","feature"]}},"text-variable-anchor":{type:"array",value:"enum",values:{center:{},left:{},right:{},top:{},bottom:{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},requires:["text-field",{"symbol-placement":["point"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-anchor":{type:"enum",values:{center:{},left:{},right:{},top:{},bottom:{},"top-left":{},"top-right":{},"bottom-left":{},"bottom-right":{}},default:"center",requires:["text-field",{"!":"text-variable-anchor"}],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-max-angle":{type:"number",default:45,units:"degrees",requires:["text-field",{"symbol-placement":["line","line-center"]}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-writing-mode":{type:"array",value:"enum",values:{horizontal:{},vertical:{}},requires:["text-field",{"symbol-placement":["point"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-rotate":{type:"number",default:0,period:360,units:"degrees",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-padding":{type:"number",default:2,minimum:0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-keep-upright":{type:"boolean",default:!0,requires:["text-field",{"text-rotation-alignment":"map"},{"symbol-placement":["line","line-center"]}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-transform":{type:"enum",values:{none:{},uppercase:{},lowercase:{}},default:"none",requires:["text-field"],expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-offset":{type:"array",value:"number",units:"ems",length:2,default:[0,0],requires:["text-field",{"!":"text-radial-offset"}],expression:{interpolated:!0,parameters:["zoom","feature"]},"property-type":"data-driven"},"text-allow-overlap":{type:"boolean",default:!1,requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-ignore-placement":{type:"boolean",default:!1,requires:["text-field"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-optional":{type:"boolean",default:!1,requires:["text-field","icon-image"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_raster:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},layout_hillshade:{visibility:{type:"enum",values:{visible:{},none:{}},default:"visible","property-type":"constant"}},filter:{type:"array",value:"*"},filter_operator:{type:"enum",values:{"==":{},"!=":{},">":{},">=":{},"<":{},"<=":{},in:{},"!in":{},all:{},any:{},none:{},has:{},"!has":{},within:{}}},geometry_type:{type:"enum",values:{Point:{},LineString:{},Polygon:{}}},function:{expression:{type:"expression"},stops:{type:"array",value:"function_stop"},base:{type:"number",default:1,minimum:0},property:{type:"string",default:"$zoom"},type:{type:"enum",values:{identity:{},exponential:{},interval:{},categorical:{}},default:"exponential"},colorSpace:{type:"enum",values:{rgb:{},lab:{},hcl:{}},default:"rgb"},default:{type:"*",required:!1}},function_stop:{type:"array",minimum:0,maximum:24,value:["number","color"],length:2},expression:{type:"array",value:"*",minimum:1},expression_name:{type:"enum",values:{let:{group:"Variable binding"},var:{group:"Variable binding"},literal:{group:"Types"},array:{group:"Types"},at:{group:"Lookup"},in:{group:"Lookup"},"index-of":{group:"Lookup"},slice:{group:"Lookup"},case:{group:"Decision"},match:{group:"Decision"},coalesce:{group:"Decision"},step:{group:"Ramps, scales, curves"},interpolate:{group:"Ramps, scales, curves"},"interpolate-hcl":{group:"Ramps, scales, curves"},"interpolate-lab":{group:"Ramps, scales, curves"},ln2:{group:"Math"},pi:{group:"Math"},e:{group:"Math"},typeof:{group:"Types"},string:{group:"Types"},number:{group:"Types"},boolean:{group:"Types"},object:{group:"Types"},collator:{group:"Types"},format:{group:"Types"},image:{group:"Types"},"number-format":{group:"Types"},"to-string":{group:"Types"},"to-number":{group:"Types"},"to-boolean":{group:"Types"},"to-rgba":{group:"Color"},"to-color":{group:"Types"},rgb:{group:"Color"},rgba:{group:"Color"},get:{group:"Lookup"},has:{group:"Lookup"},length:{group:"Lookup"},properties:{group:"Feature data"},"feature-state":{group:"Feature data"},"geometry-type":{group:"Feature data"},id:{group:"Feature data"},zoom:{group:"Zoom"},"heatmap-density":{group:"Heatmap"},"line-progress":{group:"Feature data"},accumulated:{group:"Feature data"},"+":{group:"Math"},"*":{group:"Math"},"-":{group:"Math"},"/":{group:"Math"},"%":{group:"Math"},"^":{group:"Math"},sqrt:{group:"Math"},log10:{group:"Math"},ln:{group:"Math"},log2:{group:"Math"},sin:{group:"Math"},cos:{group:"Math"},tan:{group:"Math"},asin:{group:"Math"},acos:{group:"Math"},atan:{group:"Math"},min:{group:"Math"},max:{group:"Math"},round:{group:"Math"},abs:{group:"Math"},ceil:{group:"Math"},floor:{group:"Math"},distance:{group:"Math"},"==":{group:"Decision"},"!=":{group:"Decision"},">":{group:"Decision"},"<":{group:"Decision"},">=":{group:"Decision"},"<=":{group:"Decision"},all:{group:"Decision"},any:{group:"Decision"},"!":{group:"Decision"},within:{group:"Decision"},"is-supported-script":{group:"String"},upcase:{group:"String"},downcase:{group:"String"},concat:{group:"String"},"resolved-locale":{group:"String"}}},light:{anchor:{type:"enum",default:"viewport",values:{map:{},viewport:{}},"property-type":"data-constant",transition:!1,expression:{interpolated:!1,parameters:["zoom"]}},position:{type:"array",default:[1.15,210,30],length:3,value:"number","property-type":"data-constant",transition:!0,expression:{interpolated:!0,parameters:["zoom"]}},color:{type:"color","property-type":"data-constant",default:"#ffffff",expression:{interpolated:!0,parameters:["zoom"]},transition:!0},intensity:{type:"number","property-type":"data-constant",default:.5,minimum:0,maximum:1,expression:{interpolated:!0,parameters:["zoom"]},transition:!0}},paint:["paint_fill","paint_line","paint_circle","paint_heatmap","paint_fill-extrusion","paint_symbol","paint_raster","paint_hillshade","paint_background"],paint_fill:{"fill-antialias":{type:"boolean",default:!0,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"fill-pattern"}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-outline-color":{type:"color",transition:!0,requires:[{"!":"fill-pattern"},{"fill-antialias":!0}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["fill-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"}},"paint_fill-extrusion":{"fill-extrusion-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"fill-extrusion-pattern"}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["fill-extrusion-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"fill-extrusion-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"},"fill-extrusion-height":{type:"number",default:0,minimum:0,units:"meters",transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-base":{type:"number",default:0,minimum:0,units:"meters",transition:!0,requires:["fill-extrusion-height"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"fill-extrusion-vertical-gradient":{type:"boolean",default:!0,transition:!1,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"}},paint_line:{"line-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"line-pattern"}],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"line-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["line-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"line-width":{type:"number",default:1,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-gap-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-offset":{type:"number",default:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"line-dasharray":{type:"array",value:"number",minimum:0,transition:!0,units:"line widths",requires:[{"!":"line-pattern"}],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"cross-faded"},"line-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom","feature"]},"property-type":"cross-faded-data-driven"},"line-gradient":{type:"color",transition:!1,requires:[{"!":"line-dasharray"},{"!":"line-pattern"},{source:"geojson",has:{lineMetrics:!0}}],expression:{interpolated:!0,parameters:["line-progress"]},"property-type":"color-ramp"}},paint_circle:{"circle-radius":{type:"number",default:5,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-blur":{type:"number",default:0,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"circle-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["circle-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-pitch-scale":{type:"enum",values:{map:{},viewport:{}},default:"map",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-pitch-alignment":{type:"enum",values:{map:{},viewport:{}},default:"viewport",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"circle-stroke-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-stroke-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"circle-stroke-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"}},paint_heatmap:{"heatmap-radius":{type:"number",default:30,minimum:1,transition:!0,units:"pixels",expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"heatmap-weight":{type:"number",default:1,minimum:0,transition:!1,expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"heatmap-intensity":{type:"number",default:1,minimum:0,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"heatmap-color":{type:"color",default:["interpolate",["linear"],["heatmap-density"],0,"rgba(0, 0, 255, 0)",.1,"royalblue",.3,"cyan",.5,"lime",.7,"yellow",1,"red"],transition:!1,expression:{interpolated:!0,parameters:["heatmap-density"]},"property-type":"color-ramp"},"heatmap-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_symbol:{"icon-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-color":{type:"color",default:"#000000",transition:!0,requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-color":{type:"color",default:"rgba(0, 0, 0, 0)",transition:!0,requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-halo-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"icon-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",requires:["icon-image"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"icon-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["icon-image","icon-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"text-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-color":{type:"color",default:"#000000",transition:!0,overridable:!0,requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-color":{type:"color",default:"rgba(0, 0, 0, 0)",transition:!0,requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-width":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-halo-blur":{type:"number",default:0,minimum:0,transition:!0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom","feature","feature-state"]},"property-type":"data-driven"},"text-translate":{type:"array",value:"number",length:2,default:[0,0],transition:!0,units:"pixels",requires:["text-field"],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"text-translate-anchor":{type:"enum",values:{map:{},viewport:{}},default:"map",requires:["text-field","text-translate"],expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"}},paint_raster:{"raster-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-hue-rotate":{type:"number",default:0,period:360,transition:!0,units:"degrees",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-brightness-min":{type:"number",default:0,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-brightness-max":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-saturation":{type:"number",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-contrast":{type:"number",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"raster-resampling":{type:"enum",values:{linear:{},nearest:{}},default:"linear",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"raster-fade-duration":{type:"number",default:300,minimum:0,transition:!1,units:"milliseconds",expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_hillshade:{"hillshade-illumination-direction":{type:"number",default:335,minimum:0,maximum:359,transition:!1,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-illumination-anchor":{type:"enum",values:{map:{},viewport:{}},default:"viewport",expression:{interpolated:!1,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-exaggeration":{type:"number",default:.5,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-shadow-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-highlight-color":{type:"color",default:"#FFFFFF",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"hillshade-accent-color":{type:"color",default:"#000000",transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},paint_background:{"background-color":{type:"color",default:"#000000",transition:!0,requires:[{"!":"background-pattern"}],expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"},"background-pattern":{type:"resolvedImage",transition:!0,expression:{interpolated:!1,parameters:["zoom"]},"property-type":"cross-faded"},"background-opacity":{type:"number",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:["zoom"]},"property-type":"data-constant"}},transition:{duration:{type:"number",default:300,minimum:0,units:"milliseconds"},delay:{type:"number",default:0,minimum:0,units:"milliseconds"}},"property-type":{"data-driven":{type:"property-type"},"cross-faded":{type:"property-type"},"cross-faded-data-driven":{type:"property-type"},"color-ramp":{type:"property-type"},"data-constant":{type:"property-type"},constant:{type:"property-type"}},promoteId:{"*":{type:"string"}}},ct=function(e,t,n,r){this.message=(e?e+": ":"")+n,r&&(this.identifier=r),null!==t&&void 0!==t&&t.__line__&&(this.line=t.__line__)};function ut(e){var t=e.key,n=e.value;return n?[new ct(t,n,"constants have been deprecated as of v8")]:[]}function ft(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];for(var r=0,i=t;r":"value"===e.itemType.kind?"array":"array<"+t+">"}return e.kind}var Mt=[mt,gt,yt,bt,xt,Tt,wt,Et(_t),At];function Ot(e,t){if("error"===t.kind)return null;if("array"===e.kind){if("array"===t.kind&&(0===t.N&&"value"===t.itemType.kind||!Ot(e.itemType,t.itemType))&&("number"!==typeof e.N||e.N===t.N))return null}else{if(e.kind===t.kind)return null;if("value"===e.kind)for(var n=0,r=Mt;n255?255:e}function i(e){return e<0?0:e>1?1:e}function a(e){return"%"===e[e.length-1]?r(parseFloat(e)/100*255):r(parseInt(e))}function o(e){return"%"===e[e.length-1]?i(parseFloat(e)/100):i(parseFloat(e))}function s(e,t,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?e+(t-e)*n*6:2*n<1?t:3*n<2?e+(t-e)*(2/3-n)*6:e}function l(e){var t,i=e.replace(/ /g,"").toLowerCase();if(i in n)return n[i].slice();if("#"===i[0])return 4===i.length?(t=parseInt(i.substr(1),16))>=0&&t<=4095?[(3840&t)>>4|(3840&t)>>8,240&t|(240&t)>>4,15&t|(15&t)<<4,1]:null:7===i.length&&(t=parseInt(i.substr(1),16))>=0&&t<=16777215?[(16711680&t)>>16,(65280&t)>>8,255&t,1]:null;var l=i.indexOf("("),c=i.indexOf(")");if(-1!==l&&c+1===i.length){var u=i.substr(0,l),f=i.substr(l+1,c-(l+1)).split(","),d=1;switch(u){case"rgba":if(4!==f.length)return null;d=o(f.pop());case"rgb":return 3!==f.length?null:[a(f[0]),a(f[1]),a(f[2]),d];case"hsla":if(4!==f.length)return null;d=o(f.pop());case"hsl":if(3!==f.length)return null;var h=(parseFloat(f[0])%360+360)%360/360,p=o(f[1]),v=o(f[2]),m=v<=.5?v*(p+1):v+p-v*p,g=2*v-m;return[r(255*s(g,m,h+1/3)),r(255*s(g,m,h)),r(255*s(g,m,h-1/3)),d];default:return null}}return null}try{t.parseCSSColor=l}catch(c){}})),Rt=It.parseCSSColor,Dt=function(e,t,n,r){void 0===r&&(r=1),this.r=e,this.g=t,this.b=n,this.a=r};Dt.parse=function(e){if(e){if(e instanceof Dt)return e;if("string"===typeof e){var t=Rt(e);if(t)return new Dt(t[0]/255*t[3],t[1]/255*t[3],t[2]/255*t[3],t[3])}}},Dt.prototype.toString=function(){var e=this.toArray(),t=e[0],n=e[1],r=e[2],i=e[3];return"rgba("+Math.round(t)+","+Math.round(n)+","+Math.round(r)+","+i+")"},Dt.prototype.toArray=function(){var e=this,t=e.r,n=e.g,r=e.b,i=e.a;return 0===i?[0,0,0,0]:[255*t/i,255*n/i,255*r/i,i]},Dt.black=new Dt(0,0,0,1),Dt.white=new Dt(1,1,1,1),Dt.transparent=new Dt(0,0,0,0),Dt.red=new Dt(1,0,0,1);var Ft=function(e,t,n){this.sensitivity=e?t?"variant":"case":t?"accent":"base",this.locale=n,this.collator=new Intl.Collator(this.locale?this.locale:[],{sensitivity:this.sensitivity,usage:"search"})};Ft.prototype.compare=function(e,t){return this.collator.compare(e,t)},Ft.prototype.resolvedLocale=function(){return new Intl.Collator(this.locale?this.locale:[]).resolvedOptions().locale};var Nt=function(e,t,n,r,i){this.text=e,this.image=t,this.scale=n,this.fontStack=r,this.textColor=i},zt=function(e){this.sections=e};zt.fromString=function(e){return new zt([new Nt(e,null,null,null,null)])},zt.prototype.isEmpty=function(){return 0===this.sections.length||!this.sections.some((function(e){return 0!==e.text.length||e.image&&0!==e.image.name.length}))},zt.factory=function(e){return e instanceof zt?e:zt.fromString(e)},zt.prototype.toString=function(){return 0===this.sections.length?"":this.sections.map((function(e){return e.text})).join("")},zt.prototype.serialize=function(){for(var e=["format"],t=0,n=this.sections;t=0&&e<=255&&"number"===typeof t&&t>=0&&t<=255&&"number"===typeof n&&n>=0&&n<=255?"undefined"===typeof r||"number"===typeof r&&r>=0&&r<=1?null:"Invalid rgba value ["+[e,t,n,r].join(", ")+"]: 'a' must be between 0 and 1.":"Invalid rgba value ["+("number"===typeof r?[e,t,n,r]:[e,t,n]).join(", ")+"]: 'r', 'g', and 'b' must be between 0 and 255."}function Ut(e){if(null===e)return!0;if("string"===typeof e)return!0;if("boolean"===typeof e)return!0;if("number"===typeof e)return!0;if(e instanceof Dt)return!0;if(e instanceof Ft)return!0;if(e instanceof zt)return!0;if(e instanceof jt)return!0;if(Array.isArray(e)){for(var t=0,n=e;t2){var s=e[1];if("string"!==typeof s||!(s in qt)||"object"===s)return t.error('The item type argument of "array" must be one of string, number, boolean',1);a=qt[s],r++}else a=_t;if(e.length>3){if(null!==e[2]&&("number"!==typeof e[2]||e[2]<0||e[2]!==Math.floor(e[2])))return t.error('The length argument to "array" must be a positive integer literal',2);o=e[2],r++}n=Et(a,o)}else n=qt[i];for(var l=[];r1)&&t.push(r)}}return t.concat(this.args.map((function(e){return e.serialize()})))};var Zt=function(e){this.type=Tt,this.sections=e};Zt.parse=function(e,t){if(e.length<2)return t.error("Expected at least one argument.");var n=e[1];if(!Array.isArray(n)&&"object"===typeof n)return t.error("First argument must be an image or text section.");for(var r=[],i=!1,a=1;a<=e.length-1;++a){var o=e[a];if(i&&"object"===typeof o&&!Array.isArray(o)){i=!1;var s=null;if(o["font-scale"]&&!(s=t.parse(o["font-scale"],1,gt)))return null;var l=null;if(o["text-font"]&&!(l=t.parse(o["text-font"],1,Et(yt))))return null;var c=null;if(o["text-color"]&&!(c=t.parse(o["text-color"],1,xt)))return null;var u=r[r.length-1];u.scale=s,u.font=l,u.textColor=c}else{var f=t.parse(e[a],1,_t);if(!f)return null;var d=f.type.kind;if("string"!==d&&"value"!==d&&"null"!==d&&"resolvedImage"!==d)return t.error("Formatted text type must be 'string', 'value', 'image' or 'null'.");i=!0,r.push({content:f,scale:null,font:null,textColor:null})}}return new Zt(r)},Zt.prototype.evaluate=function(e){var t=function(t){var n=t.content.evaluate(e);return Ht(n)===At?new Nt("",n,null,null,null):new Nt($t(n),null,t.scale?t.scale.evaluate(e):null,t.font?t.font.evaluate(e).join(","):null,t.textColor?t.textColor.evaluate(e):null)};return new zt(this.sections.map(t))},Zt.prototype.eachChild=function(e){for(var t=0,n=this.sections;t-1),n},Yt.prototype.eachChild=function(e){e(this.input)},Yt.prototype.outputDefined=function(){return!1},Yt.prototype.serialize=function(){return["image",this.input.serialize()]};var Kt={"to-boolean":bt,"to-color":xt,"to-number":gt,"to-string":yt},Xt=function(e,t){this.type=e,this.args=t};Xt.parse=function(e,t){if(e.length<2)return t.error("Expected at least one argument.");var n=e[0];if(("to-boolean"===n||"to-string"===n)&&2!==e.length)return t.error("Expected one argument.");for(var r=Kt[n],i=[],a=1;a4?"Invalid rbga value "+JSON.stringify(t)+": expected an array containing either three or four numeric values.":Bt(t[0],t[1],t[2],t[3])))return new Dt(t[0]/255,t[1]/255,t[2]/255,t[3])}throw new Wt(n||"Could not parse color from value '"+("string"===typeof t?t:String(JSON.stringify(t)))+"'")}if("number"===this.type.kind){for(var o=null,s=0,l=this.args;s=t[2])&&!(e[1]<=t[1])&&!(e[3]>=t[3])}function cn(e,t){var n=on(e[0]),r=sn(e[1]),i=Math.pow(2,t.z);return[Math.round(n*i*rn),Math.round(r*i*rn)]}function un(e,t,n){var r=e[0]-t[0],i=e[1]-t[1],a=e[0]-n[0],o=e[1]-n[1];return r*o-a*i===0&&r*a<=0&&i*o<=0}function fn(e,t,n){return t[1]>e[1]!==n[1]>e[1]&&e[0]<(n[0]-t[0])*(e[1]-t[1])/(n[1]-t[1])+t[0]}function dn(e,t){for(var n=!1,r=0,i=t.length;r0&&f<0||u<0&&f>0}function mn(e,t,n,r){var i=[t[0]-e[0],t[1]-e[1]];return 0!==pn([r[0]-n[0],r[1]-n[1]],i)&&!(!vn(e,t,n,r)||!vn(n,r,e,t))}function gn(e,t,n){for(var r=0,i=n;rn[2]){var i=.5*r,a=e[0]-n[0]>i?-r:n[0]-e[0]>i?r:0;0===a&&(a=e[0]-n[2]>i?-r:n[2]-e[0]>i?r:0),e[0]+=a}an(t,e)}function kn(e){e[0]=e[1]=1/0,e[2]=e[3]=-1/0}function Sn(e,t,n,r){for(var i=Math.pow(2,r.z)*rn,a=[r.x*rn,r.y*rn],o=[],s=0,l=e;s=0)return!1;var n=!0;return e.eachChild((function(e){n&&!Pn(e,t)&&(n=!1)})),n}Cn.parse=function(e,t){if(2!==e.length)return t.error("'within' expression requires exactly one argument, but found "+(e.length-1)+" instead.");if(Ut(e[1])){var n=e[1];if("FeatureCollection"===n.type)for(var r=0;rt))throw new Wt("Input is not a number.");o=s-1}return 0}In.prototype.parse=function(e,t,n,r,i){return void 0===i&&(i={}),t?this.concat(t,n,r)._parse(e,i):this._parse(e,i)},In.prototype._parse=function(e,t){function n(e,t,n){return"assert"===n?new Gt(t,[e]):"coerce"===n?new Xt(t,[e]):e}if(null!==e&&"string"!==typeof e&&"boolean"!==typeof e&&"number"!==typeof e||(e=["literal",e]),Array.isArray(e)){if(0===e.length)return this.error('Expected an array with at least one element. If you wanted a literal array, use ["literal", []].');var r=e[0];if("string"!==typeof r)return this.error("Expression name must be a string, but found "+typeof r+' instead. If you wanted a literal array, use ["literal", [...]].',0),null;var i=this.registry[r];if(i){var a=i.parse(e,this);if(!a)return null;if(this.expectedType){var o=this.expectedType,s=a.type;if("string"!==o.kind&&"number"!==o.kind&&"boolean"!==o.kind&&"object"!==o.kind&&"array"!==o.kind||"value"!==s.kind)if("color"!==o.kind&&"formatted"!==o.kind&&"resolvedImage"!==o.kind||"value"!==s.kind&&"string"!==s.kind){if(this.checkSubtype(o,s))return null}else a=n(a,o,t.typeAnnotation||"coerce");else a=n(a,o,t.typeAnnotation||"assert")}if(!(a instanceof Vt)&&"resolvedImage"!==a.type.kind&&Rn(a)){var l=new Qt;try{a=new Vt(a.type,a.evaluate(l))}catch(c){return this.error(c.message),null}}return a}return this.error('Unknown expression "'+r+'". If you wanted a literal array, use ["literal", [...]].',0)}return"undefined"===typeof e?this.error("'undefined' value invalid. Use null instead."):"object"===typeof e?this.error('Bare objects invalid. Use ["literal", {...}] instead.'):this.error("Expected an array, but found "+typeof e+" instead.")},In.prototype.concat=function(e,t,n){var r="number"===typeof e?this.path.concat(e):this.path,i=n?this.scope.concat(n):this.scope;return new In(this.registry,r,t||null,i,this.errors)},In.prototype.error=function(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];var r=""+this.key+t.map((function(e){return"["+e+"]"})).join("");this.errors.push(new pt(r,e))},In.prototype.checkSubtype=function(e,t){var n=Ot(e,t);return n&&this.error(n),n};var Fn=function(e,t,n){this.type=e,this.input=t,this.labels=[],this.outputs=[];for(var r=0,i=n;r=o)return t.error('Input/output pairs for "step" expressions must be arranged with input values in strictly ascending order.',l);var u=t.parse(s,c,i);if(!u)return null;i=i||u.type,r.push([o,u])}return new Fn(i,n,r)},Fn.prototype.evaluate=function(e){var t=this.labels,n=this.outputs;if(1===t.length)return n[0].evaluate(e);var r=this.input.evaluate(e);if(r<=t[0])return n[0].evaluate(e);var i=t.length;return r>=t[i-1]?n[i-1].evaluate(e):n[Dn(t,r)].evaluate(e)},Fn.prototype.eachChild=function(e){e(this.input);for(var t=0,n=this.outputs;t0&&e.push(this.labels[t]),e.push(this.outputs[t].serialize());return e};var Bn=Object.freeze({__proto__:null,number:Nn,color:zn,array:jn}),Un=.95047,Hn=1,$n=1.08883,Vn=4/29,Wn=6/29,qn=3*Wn*Wn,Gn=Wn*Wn*Wn,Zn=Math.PI/180,Yn=180/Math.PI;function Kn(e){return e>Gn?Math.pow(e,1/3):e/qn+Vn}function Xn(e){return e>Wn?e*e*e:qn*(e-Vn)}function Jn(e){return 255*(e<=.0031308?12.92*e:1.055*Math.pow(e,1/2.4)-.055)}function Qn(e){return(e/=255)<=.04045?e/12.92:Math.pow((e+.055)/1.055,2.4)}function er(e){var t=Qn(e.r),n=Qn(e.g),r=Qn(e.b),i=Kn((.4124564*t+.3575761*n+.1804375*r)/Un),a=Kn((.2126729*t+.7151522*n+.072175*r)/Hn);return{l:116*a-16,a:500*(i-a),b:200*(a-Kn((.0193339*t+.119192*n+.9503041*r)/$n)),alpha:e.a}}function tr(e){var t=(e.l+16)/116,n=isNaN(e.a)?t:t+e.a/500,r=isNaN(e.b)?t:t-e.b/200;return t=Hn*Xn(t),n=Un*Xn(n),r=$n*Xn(r),new Dt(Jn(3.2404542*n-1.5371385*t-.4985314*r),Jn(-.969266*n+1.8760108*t+.041556*r),Jn(.0556434*n-.2040259*t+1.0572252*r),e.alpha)}function nr(e,t,n){return{l:Nn(e.l,t.l,n),a:Nn(e.a,t.a,n),b:Nn(e.b,t.b,n),alpha:Nn(e.alpha,t.alpha,n)}}function rr(e){var t=er(e),n=t.l,r=t.a,i=t.b,a=Math.atan2(i,r)*Yn;return{h:a<0?a+360:a,c:Math.sqrt(r*r+i*i),l:n,alpha:e.a}}function ir(e){var t=e.h*Zn,n=e.c;return tr({l:e.l,a:Math.cos(t)*n,b:Math.sin(t)*n,alpha:e.alpha})}function ar(e,t,n){var r=t-e;return e+n*(r>180||r<-180?r-360*Math.round(r/360):r)}function or(e,t,n){return{h:ar(e.h,t.h,n),c:Nn(e.c,t.c,n),l:Nn(e.l,t.l,n),alpha:Nn(e.alpha,t.alpha,n)}}var sr={forward:er,reverse:tr,interpolate:nr},lr={forward:rr,reverse:ir,interpolate:or},cr=Object.freeze({__proto__:null,lab:sr,hcl:lr}),ur=function(e,t,n,r,i){this.type=e,this.operator=t,this.interpolation=n,this.input=r,this.labels=[],this.outputs=[];for(var a=0,o=i;a1})))return t.error("Cubic bezier interpolation requires four numeric arguments with values between 0 and 1.",1);r={name:"cubic-bezier",controlPoints:s}}if(e.length-1<4)return t.error("Expected at least 4 arguments, but found only "+(e.length-1)+".");if((e.length-1)%2!==0)return t.error("Expected an even number of arguments.");if(!(i=t.parse(i,2,gt)))return null;var l=[],c=null;"interpolate-hcl"===n||"interpolate-lab"===n?c=xt:t.expectedType&&"value"!==t.expectedType.kind&&(c=t.expectedType);for(var u=0;u=f)return t.error('Input/output pairs for "interpolate" expressions must be arranged with input values in strictly ascending order.',h);var v=t.parse(d,p,c);if(!v)return null;c=c||v.type,l.push([f,v])}return"number"===c.kind||"color"===c.kind||"array"===c.kind&&"number"===c.itemType.kind&&"number"===typeof c.N?new ur(c,n,r,i,l):t.error("Type "+Ct(c)+" is not interpolatable.")},ur.prototype.evaluate=function(e){var t=this.labels,n=this.outputs;if(1===t.length)return n[0].evaluate(e);var r=this.input.evaluate(e);if(r<=t[0])return n[0].evaluate(e);var i=t.length;if(r>=t[i-1])return n[i-1].evaluate(e);var a=Dn(t,r),o=t[a],s=t[a+1],l=ur.interpolationFactor(this.interpolation,r,o,s),c=n[a].evaluate(e),u=n[a+1].evaluate(e);return"interpolate"===this.operator?Bn[this.type.kind.toLowerCase()](c,u,l):"interpolate-hcl"===this.operator?lr.reverse(lr.interpolate(lr.forward(c),lr.forward(u),l)):sr.reverse(sr.interpolate(sr.forward(c),sr.forward(u),l))},ur.prototype.eachChild=function(e){e(this.input);for(var t=0,n=this.outputs;t=n.length)throw new Wt("Array index out of bounds: "+t+" > "+(n.length-1)+".");if(t!==Math.floor(t))throw new Wt("Array index must be an integer, but found "+t+" instead.");return n[t]},pr.prototype.eachChild=function(e){e(this.index),e(this.input)},pr.prototype.outputDefined=function(){return!1},pr.prototype.serialize=function(){return["at",this.index.serialize(),this.input.serialize()]};var vr=function(e,t){this.type=bt,this.needle=e,this.haystack=t};vr.parse=function(e,t){if(3!==e.length)return t.error("Expected 2 arguments, but found "+(e.length-1)+" instead.");var n=t.parse(e[1],1,_t),r=t.parse(e[2],2,_t);return n&&r?Pt(n.type,[bt,yt,gt,mt,_t])?new vr(n,r):t.error("Expected first argument to be of type boolean, string, number or null, but found "+Ct(n.type)+" instead"):null},vr.prototype.evaluate=function(e){var t=this.needle.evaluate(e),n=this.haystack.evaluate(e);if(!n)return!1;if(!Lt(t,["boolean","string","number","null"]))throw new Wt("Expected first argument to be of type boolean, string, number or null, but found "+Ct(Ht(t))+" instead.");if(!Lt(n,["string","array"]))throw new Wt("Expected second argument to be of type array or string, but found "+Ct(Ht(n))+" instead.");return n.indexOf(t)>=0},vr.prototype.eachChild=function(e){e(this.needle),e(this.haystack)},vr.prototype.outputDefined=function(){return!0},vr.prototype.serialize=function(){return["in",this.needle.serialize(),this.haystack.serialize()]};var mr=function(e,t,n){this.type=gt,this.needle=e,this.haystack=t,this.fromIndex=n};mr.parse=function(e,t){if(e.length<=2||e.length>=5)return t.error("Expected 3 or 4 arguments, but found "+(e.length-1)+" instead.");var n=t.parse(e[1],1,_t),r=t.parse(e[2],2,_t);if(!n||!r)return null;if(!Pt(n.type,[bt,yt,gt,mt,_t]))return t.error("Expected first argument to be of type boolean, string, number or null, but found "+Ct(n.type)+" instead");if(4===e.length){var i=t.parse(e[3],3,gt);return i?new mr(n,r,i):null}return new mr(n,r)},mr.prototype.evaluate=function(e){var t=this.needle.evaluate(e),n=this.haystack.evaluate(e);if(!Lt(t,["boolean","string","number","null"]))throw new Wt("Expected first argument to be of type boolean, string, number or null, but found "+Ct(Ht(t))+" instead.");if(!Lt(n,["string","array"]))throw new Wt("Expected second argument to be of type array or string, but found "+Ct(Ht(n))+" instead.");if(this.fromIndex){var r=this.fromIndex.evaluate(e);return n.indexOf(t,r)}return n.indexOf(t)},mr.prototype.eachChild=function(e){e(this.needle),e(this.haystack),this.fromIndex&&e(this.fromIndex)},mr.prototype.outputDefined=function(){return!1},mr.prototype.serialize=function(){if(null!=this.fromIndex&&void 0!==this.fromIndex){var e=this.fromIndex.serialize();return["index-of",this.needle.serialize(),this.haystack.serialize(),e]}return["index-of",this.needle.serialize(),this.haystack.serialize()]};var gr=function(e,t,n,r,i,a){this.inputType=e,this.type=t,this.input=n,this.cases=r,this.outputs=i,this.otherwise=a};gr.parse=function(e,t){if(e.length<5)return t.error("Expected at least 4 arguments, but found only "+(e.length-1)+".");if(e.length%2!==1)return t.error("Expected an even number of arguments.");var n,r;t.expectedType&&"value"!==t.expectedType.kind&&(r=t.expectedType);for(var i={},a=[],o=2;oNumber.MAX_SAFE_INTEGER)return c.error("Branch labels must be integers no larger than "+Number.MAX_SAFE_INTEGER+".");if("number"===typeof d&&Math.floor(d)!==d)return c.error("Numeric branch labels must be integer values.");if(n){if(c.checkSubtype(n,Ht(d)))return null}else n=Ht(d);if("undefined"!==typeof i[String(d)])return c.error("Branch labels must be unique.");i[String(d)]=a.length}var h=t.parse(l,o,r);if(!h)return null;r=r||h.type,a.push(h)}var p=t.parse(e[1],1,_t);if(!p)return null;var v=t.parse(e[e.length-1],e.length-1,r);return v?"value"!==p.type.kind&&t.concat(1).checkSubtype(n,p.type)?null:new gr(n,r,p,i,a,v):null},gr.prototype.evaluate=function(e){var t=this.input.evaluate(e);return(Ht(t)===this.inputType&&this.outputs[this.cases[t]]||this.otherwise).evaluate(e)},gr.prototype.eachChild=function(e){e(this.input),this.outputs.forEach(e),e(this.otherwise)},gr.prototype.outputDefined=function(){return this.outputs.every((function(e){return e.outputDefined()}))&&this.otherwise.outputDefined()},gr.prototype.serialize=function(){for(var e=this,t=["match",this.input.serialize()],n=[],r={},i=0,a=Object.keys(this.cases).sort();in}function Tr(e,t,n){return t<=n}function Ar(e,t,n){return t>=n}function Er(e,t,n,r){return 0===r.compare(t,n)}function Cr(e,t,n,r){return!Er(e,t,n,r)}function Mr(e,t,n,r){return r.compare(t,n)<0}function Or(e,t,n,r){return r.compare(t,n)>0}function Pr(e,t,n,r){return r.compare(t,n)<=0}function Lr(e,t,n,r){return r.compare(t,n)>=0}function Ir(e,t,n){var r="=="!==e&&"!="!==e;return function(){function i(e,t,n){this.type=bt,this.lhs=e,this.rhs=t,this.collator=n,this.hasUntypedArgument="value"===e.type.kind||"value"===t.type.kind}return i.parse=function(e,t){if(3!==e.length&&4!==e.length)return t.error("Expected two or three arguments.");var n=e[0],a=t.parse(e[1],1,_t);if(!a)return null;if(!xr(n,a.type))return t.concat(1).error('"'+n+"\" comparisons are not supported for type '"+Ct(a.type)+"'.");var o=t.parse(e[2],2,_t);if(!o)return null;if(!xr(n,o.type))return t.concat(2).error('"'+n+"\" comparisons are not supported for type '"+Ct(o.type)+"'.");if(a.type.kind!==o.type.kind&&"value"!==a.type.kind&&"value"!==o.type.kind)return t.error("Cannot compare types '"+Ct(a.type)+"' and '"+Ct(o.type)+"'.");r&&("value"===a.type.kind&&"value"!==o.type.kind?a=new Gt(o.type,[a]):"value"!==a.type.kind&&"value"===o.type.kind&&(o=new Gt(a.type,[o])));var s=null;if(4===e.length){if("string"!==a.type.kind&&"string"!==o.type.kind&&"value"!==a.type.kind&&"value"!==o.type.kind)return t.error("Cannot use collator to compare non-string types.");if(!(s=t.parse(e[3],3,St)))return null}return new i(a,o,s)},i.prototype.evaluate=function(i){var a=this.lhs.evaluate(i),o=this.rhs.evaluate(i);if(r&&this.hasUntypedArgument){var s=Ht(a),l=Ht(o);if(s.kind!==l.kind||"string"!==s.kind&&"number"!==s.kind)throw new Wt('Expected arguments for "'+e+'" to be (string, string) or (number, number), but found ('+s.kind+", "+l.kind+") instead.")}if(this.collator&&!r&&this.hasUntypedArgument){var c=Ht(a),u=Ht(o);if("string"!==c.kind||"string"!==u.kind)return t(i,a,o)}return this.collator?n(i,a,o,this.collator.evaluate(i)):t(i,a,o)},i.prototype.eachChild=function(e){e(this.lhs),e(this.rhs),this.collator&&e(this.collator)},i.prototype.outputDefined=function(){return!0},i.prototype.serialize=function(){var t=[e];return this.eachChild((function(e){t.push(e.serialize())})),t},i}()}br.parse=function(e,t){if(e.length<=2||e.length>=5)return t.error("Expected 3 or 4 arguments, but found "+(e.length-1)+" instead.");var n=t.parse(e[1],1,_t),r=t.parse(e[2],2,gt);if(!n||!r)return null;if(!Pt(n.type,[Et(_t),yt,_t]))return t.error("Expected first argument to be of type array or string, but found "+Ct(n.type)+" instead");if(4===e.length){var i=t.parse(e[3],3,gt);return i?new br(n.type,n,r,i):null}return new br(n.type,n,r)},br.prototype.evaluate=function(e){var t=this.input.evaluate(e),n=this.beginIndex.evaluate(e);if(!Lt(t,["string","array"]))throw new Wt("Expected first argument to be of type array or string, but found "+Ct(Ht(t))+" instead.");if(this.endIndex){var r=this.endIndex.evaluate(e);return t.slice(n,r)}return t.slice(n)},br.prototype.eachChild=function(e){e(this.input),e(this.beginIndex),this.endIndex&&e(this.endIndex)},br.prototype.outputDefined=function(){return!1},br.prototype.serialize=function(){if(null!=this.endIndex&&void 0!==this.endIndex){var e=this.endIndex.serialize();return["slice",this.input.serialize(),this.beginIndex.serialize(),e]}return["slice",this.input.serialize(),this.beginIndex.serialize()]};var Rr=Ir("==",wr,Er),Dr=Ir("!=",_r,Cr),Fr=Ir("<",kr,Mr),Nr=Ir(">",Sr,Or),zr=Ir("<=",Tr,Pr),jr=Ir(">=",Ar,Lr),Br=function(e,t,n,r,i){this.type=yt,this.number=e,this.locale=t,this.currency=n,this.minFractionDigits=r,this.maxFractionDigits=i};Br.parse=function(e,t){if(3!==e.length)return t.error("Expected two arguments.");var n=t.parse(e[1],1,gt);if(!n)return null;var r=e[2];if("object"!==typeof r||Array.isArray(r))return t.error("NumberFormat options argument must be an object.");var i=null;if(r.locale&&!(i=t.parse(r.locale,1,yt)))return null;var a=null;if(r.currency&&!(a=t.parse(r.currency,1,yt)))return null;var o=null;if(r["min-fraction-digits"]&&!(o=t.parse(r["min-fraction-digits"],1,gt)))return null;var s=null;return r["max-fraction-digits"]&&!(s=t.parse(r["max-fraction-digits"],1,gt))?null:new Br(n,i,a,o,s)},Br.prototype.evaluate=function(e){return new Intl.NumberFormat(this.locale?this.locale.evaluate(e):[],{style:this.currency?"currency":"decimal",currency:this.currency?this.currency.evaluate(e):void 0,minimumFractionDigits:this.minFractionDigits?this.minFractionDigits.evaluate(e):void 0,maximumFractionDigits:this.maxFractionDigits?this.maxFractionDigits.evaluate(e):void 0}).format(this.number.evaluate(e))},Br.prototype.eachChild=function(e){e(this.number),this.locale&&e(this.locale),this.currency&&e(this.currency),this.minFractionDigits&&e(this.minFractionDigits),this.maxFractionDigits&&e(this.maxFractionDigits)},Br.prototype.outputDefined=function(){return!1},Br.prototype.serialize=function(){var e={};return this.locale&&(e.locale=this.locale.serialize()),this.currency&&(e.currency=this.currency.serialize()),this.minFractionDigits&&(e["min-fraction-digits"]=this.minFractionDigits.serialize()),this.maxFractionDigits&&(e["max-fraction-digits"]=this.maxFractionDigits.serialize()),["number-format",this.number.serialize(),e]};var Ur=function(e){this.type=gt,this.input=e};Ur.parse=function(e,t){if(2!==e.length)return t.error("Expected 1 argument, but found "+(e.length-1)+" instead.");var n=t.parse(e[1],1);return n?"array"!==n.type.kind&&"string"!==n.type.kind&&"value"!==n.type.kind?t.error("Expected argument of type string or array, but found "+Ct(n.type)+" instead."):new Ur(n):null},Ur.prototype.evaluate=function(e){var t=this.input.evaluate(e);if("string"===typeof t)return t.length;if(Array.isArray(t))return t.length;throw new Wt("Expected value to be of type string or array, but found "+Ct(Ht(t))+" instead.")},Ur.prototype.eachChild=function(e){e(this.input)},Ur.prototype.outputDefined=function(){return!1},Ur.prototype.serialize=function(){var e=["length"];return this.eachChild((function(t){e.push(t.serialize())})),e};var Hr={"==":Rr,"!=":Dr,">":Nr,"<":Fr,">=":jr,"<=":zr,array:Gt,at:pr,boolean:Gt,case:yr,coalesce:dr,collator:nn,format:Zt,image:Yt,in:vr,"index-of":mr,interpolate:ur,"interpolate-hcl":ur,"interpolate-lab":ur,length:Ur,let:hr,literal:Vt,match:gr,number:Gt,"number-format":Br,object:Gt,slice:br,step:Fn,string:Gt,"to-boolean":Xt,"to-color":Xt,"to-number":Xt,"to-string":Xt,var:Ln,within:Cn};function $r(e,t){var n=t[0],r=t[1],i=t[2],a=t[3];n=n.evaluate(e),r=r.evaluate(e),i=i.evaluate(e);var o=a?a.evaluate(e):1,s=Bt(n,r,i,o);if(s)throw new Wt(s);return new Dt(n/255*o,r/255*o,i/255*o,o)}function Vr(e,t){return e in t}function Wr(e,t){var n=t[e];return"undefined"===typeof n?null:n}function qr(e,t,n,r){for(;n<=r;){var i=n+r>>1;if(t[i]===e)return!0;t[i]>e?r=i-1:n=i+1}return!1}function Gr(e){return{type:e}}function Zr(e){return{result:"success",value:e}}function Yr(e){return{result:"error",value:e}}function Kr(e){return"data-driven"===e["property-type"]||"cross-faded-data-driven"===e["property-type"]}function Xr(e){return!!e.expression&&e.expression.parameters.indexOf("zoom")>-1}function Jr(e){return!!e.expression&&e.expression.interpolated}function Qr(e){return e instanceof Number?"number":e instanceof String?"string":e instanceof Boolean?"boolean":Array.isArray(e)?"array":null===e?"null":typeof e}function ei(e){return"object"===typeof e&&null!==e&&!Array.isArray(e)}function ti(e){return e}function ni(e,t){var n,r,i,a="color"===t.type,o=e.stops&&"object"===typeof e.stops[0][0],s=o||void 0!==e.property,l=o||!s,c=e.type||(Jr(t)?"exponential":"interval");if(a&&((e=ft({},e)).stops&&(e.stops=e.stops.map((function(e){return[e[0],Dt.parse(e[1])]}))),e.default?e.default=Dt.parse(e.default):e.default=Dt.parse(t.default)),e.colorSpace&&"rgb"!==e.colorSpace&&!cr[e.colorSpace])throw new Error("Unknown color space: "+e.colorSpace);if("exponential"===c)n=oi;else if("interval"===c)n=ai;else if("categorical"===c){n=ii,r=Object.create(null);for(var u=0,f=e.stops;u=e.stops[r-1][0])return e.stops[r-1][1];var i=Dn(e.stops.map((function(e){return e[0]})),n);return e.stops[i][1]}function oi(e,t,n){var r=void 0!==e.base?e.base:1;if("number"!==Qr(n))return ri(e.default,t.default);var i=e.stops.length;if(1===i)return e.stops[0][1];if(n<=e.stops[0][0])return e.stops[0][1];if(n>=e.stops[i-1][0])return e.stops[i-1][1];var a=Dn(e.stops.map((function(e){return e[0]})),n),o=li(n,r,e.stops[a][0],e.stops[a+1][0]),s=e.stops[a][1],l=e.stops[a+1][1],c=Bn[t.type]||ti;if(e.colorSpace&&"rgb"!==e.colorSpace){var u=cr[e.colorSpace];c=function(e,t){return u.reverse(u.interpolate(u.forward(e),u.forward(t),o))}}return"function"===typeof s.evaluate?{evaluate:function(){for(var e=[],t=arguments.length;t--;)e[t]=arguments[t];var n=s.evaluate.apply(void 0,e),r=l.evaluate.apply(void 0,e);if(void 0!==n&&void 0!==r)return c(n,r,o)}}:c(s,l,o)}function si(e,t,n){return"color"===t.type?n=Dt.parse(n):"formatted"===t.type?n=zt.fromString(n.toString()):"resolvedImage"===t.type?n=jt.fromString(n.toString()):Qr(n)===t.type||"enum"===t.type&&t.values[n]||(n=void 0),ri(n,e.default,t.default)}function li(e,t,n,r){var i=r-n,a=e-n;return 0===i?0:1===t?a/i:(Math.pow(t,a)-1)/(Math.pow(t,i)-1)}en.register(Hr,{error:[kt,[yt],function(e,t){var n=t[0];throw new Wt(n.evaluate(e))}],typeof:[yt,[_t],function(e,t){return Ct(Ht(t[0].evaluate(e)))}],"to-rgba":[Et(gt,4),[xt],function(e,t){return t[0].evaluate(e).toArray()}],rgb:[xt,[gt,gt,gt],$r],rgba:[xt,[gt,gt,gt,gt],$r],has:{type:bt,overloads:[[[yt],function(e,t){return Vr(t[0].evaluate(e),e.properties())}],[[yt,wt],function(e,t){var n=t[0],r=t[1];return Vr(n.evaluate(e),r.evaluate(e))}]]},get:{type:_t,overloads:[[[yt],function(e,t){return Wr(t[0].evaluate(e),e.properties())}],[[yt,wt],function(e,t){var n=t[0],r=t[1];return Wr(n.evaluate(e),r.evaluate(e))}]]},"feature-state":[_t,[yt],function(e,t){return Wr(t[0].evaluate(e),e.featureState||{})}],properties:[wt,[],function(e){return e.properties()}],"geometry-type":[yt,[],function(e){return e.geometryType()}],id:[_t,[],function(e){return e.id()}],zoom:[gt,[],function(e){return e.globals.zoom}],"heatmap-density":[gt,[],function(e){return e.globals.heatmapDensity||0}],"line-progress":[gt,[],function(e){return e.globals.lineProgress||0}],accumulated:[_t,[],function(e){return void 0===e.globals.accumulated?null:e.globals.accumulated}],"+":[gt,Gr(gt),function(e,t){for(var n=0,r=0,i=t;r":[bt,[yt,_t],function(e,t){var n=t[0],r=t[1],i=e.properties()[n.value],a=r.value;return typeof i===typeof a&&i>a}],"filter-id->":[bt,[_t],function(e,t){var n=t[0],r=e.id(),i=n.value;return typeof r===typeof i&&r>i}],"filter-<=":[bt,[yt,_t],function(e,t){var n=t[0],r=t[1],i=e.properties()[n.value],a=r.value;return typeof i===typeof a&&i<=a}],"filter-id-<=":[bt,[_t],function(e,t){var n=t[0],r=e.id(),i=n.value;return typeof r===typeof i&&r<=i}],"filter->=":[bt,[yt,_t],function(e,t){var n=t[0],r=t[1],i=e.properties()[n.value],a=r.value;return typeof i===typeof a&&i>=a}],"filter-id->=":[bt,[_t],function(e,t){var n=t[0],r=e.id(),i=n.value;return typeof r===typeof i&&r>=i}],"filter-has":[bt,[_t],function(e,t){return t[0].value in e.properties()}],"filter-has-id":[bt,[],function(e){return null!==e.id()&&void 0!==e.id()}],"filter-type-in":[bt,[Et(yt)],function(e,t){return t[0].value.indexOf(e.geometryType())>=0}],"filter-id-in":[bt,[Et(_t)],function(e,t){return t[0].value.indexOf(e.id())>=0}],"filter-in-small":[bt,[yt,Et(_t)],function(e,t){var n=t[0];return t[1].value.indexOf(e.properties()[n.value])>=0}],"filter-in-large":[bt,[yt,Et(_t)],function(e,t){var n=t[0],r=t[1];return qr(e.properties()[n.value],r.value,0,r.value.length-1)}],all:{type:bt,overloads:[[[bt,bt],function(e,t){var n=t[0],r=t[1];return n.evaluate(e)&&r.evaluate(e)}],[Gr(bt),function(e,t){for(var n=0,r=t;n0&&"string"===typeof e[0]&&e[0]in Hr}function fi(e,t){var n=new In(Hr,[],t?yi(t):void 0),r=n.parse(e,void 0,void 0,void 0,t&&"string"===t.type?{typeAnnotation:"coerce"}:void 0);return r?Zr(new ci(r,t)):Yr(n.errors)}ci.prototype.evaluateWithoutErrorHandling=function(e,t,n,r,i,a){return this._evaluator.globals=e,this._evaluator.feature=t,this._evaluator.featureState=n,this._evaluator.canonical=r,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=a,this.expression.evaluate(this._evaluator)},ci.prototype.evaluate=function(e,t,n,r,i,a){this._evaluator.globals=e,this._evaluator.feature=t||null,this._evaluator.featureState=n||null,this._evaluator.canonical=r,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=a||null;try{var o=this.expression.evaluate(this._evaluator);if(null===o||void 0===o||"number"===typeof o&&o!==o)return this._defaultValue;if(this._enumValues&&!(o in this._enumValues))throw new Wt("Expected value to be one of "+Object.keys(this._enumValues).map((function(e){return JSON.stringify(e)})).join(", ")+", but found "+JSON.stringify(o)+" instead.");return o}catch(s){return this._warningHistory[s.message]||(this._warningHistory[s.message]=!0,"undefined"!==typeof console&&console.warn(s.message)),this._defaultValue}};var di=function(e,t){this.kind=e,this._styleExpression=t,this.isStateDependent="constant"!==e&&!On(t.expression)};di.prototype.evaluateWithoutErrorHandling=function(e,t,n,r,i,a){return this._styleExpression.evaluateWithoutErrorHandling(e,t,n,r,i,a)},di.prototype.evaluate=function(e,t,n,r,i,a){return this._styleExpression.evaluate(e,t,n,r,i,a)};var hi=function(e,t,n,r){this.kind=e,this.zoomStops=n,this._styleExpression=t,this.isStateDependent="camera"!==e&&!On(t.expression),this.interpolationType=r};function pi(e,t){if("error"===(e=fi(e,t)).result)return e;var n=e.value.expression,r=Mn(n);if(!r&&!Kr(t))return Yr([new pt("","data expressions not supported")]);var i=Pn(n,["zoom"]);if(!i&&!Xr(t))return Yr([new pt("","zoom expressions not supported")]);var a=gi(n);if(!a&&!i)return Yr([new pt("",'"zoom" expression may only be used as input to a top-level "step" or "interpolate" expression.')]);if(a instanceof pt)return Yr([a]);if(a instanceof ur&&!Jr(t))return Yr([new pt("",'"interpolate" expressions cannot be used with this property')]);if(!a)return Zr(new di(r?"constant":"source",e.value));var o=a instanceof ur?a.interpolation:void 0;return Zr(new hi(r?"camera":"composite",e.value,a.labels,o))}hi.prototype.evaluateWithoutErrorHandling=function(e,t,n,r,i,a){return this._styleExpression.evaluateWithoutErrorHandling(e,t,n,r,i,a)},hi.prototype.evaluate=function(e,t,n,r,i,a){return this._styleExpression.evaluate(e,t,n,r,i,a)},hi.prototype.interpolationFactor=function(e,t,n){return this.interpolationType?ur.interpolationFactor(this.interpolationType,e,t,n):0};var vi=function(e,t){this._parameters=e,this._specification=t,ft(this,ni(this._parameters,this._specification))};function mi(e,t){if(ei(e))return new vi(e,t);if(ui(e)){var n=pi(e,t);if("error"===n.result)throw new Error(n.value.map((function(e){return e.key+": "+e.message})).join(", "));return n.value}var r=e;return"string"===typeof e&&"color"===t.type&&(r=Dt.parse(e)),{kind:"constant",evaluate:function(){return r}}}function gi(e){var t=null;if(e instanceof hr)t=gi(e.result);else if(e instanceof dr)for(var n=0,r=e.args;nr.maximum?[new ct(t,n,n+" is greater than the maximum value "+r.maximum)]:[]}function ki(e){var t,n,r,i=e.valueSpec,a=dt(e.value.type),o={},s="categorical"!==a&&void 0===e.value.property,l=!s,c="array"===Qr(e.value.stops)&&"array"===Qr(e.value.stops[0])&&"object"===Qr(e.value.stops[0][0]),u=xi({key:e.key,value:e.value,valueSpec:e.styleSpec.function,style:e.style,styleSpec:e.styleSpec,objectElementValidators:{stops:f,default:p}});return"identity"===a&&s&&u.push(new ct(e.key,e.value,'missing required property "property"')),"identity"===a||e.value.stops||u.push(new ct(e.key,e.value,'missing required property "stops"')),"exponential"===a&&e.valueSpec.expression&&!Jr(e.valueSpec)&&u.push(new ct(e.key,e.value,"exponential functions not supported")),e.styleSpec.$version>=8&&(l&&!Kr(e.valueSpec)?u.push(new ct(e.key,e.value,"property functions not supported")):s&&!Xr(e.valueSpec)&&u.push(new ct(e.key,e.value,"zoom functions not supported"))),"categorical"!==a&&!c||void 0!==e.value.property||u.push(new ct(e.key,e.value,'"property" property is required')),u;function f(e){if("identity"===a)return[new ct(e.key,e.value,'identity function may not have a "stops" property')];var t=[],n=e.value;return t=t.concat(wi({key:e.key,value:n,valueSpec:e.valueSpec,style:e.style,styleSpec:e.styleSpec,arrayElementValidator:d})),"array"===Qr(n)&&0===n.length&&t.push(new ct(e.key,n,"array must have at least one stop")),t}function d(e){var t=[],a=e.value,s=e.key;if("array"!==Qr(a))return[new ct(s,a,"array expected, "+Qr(a)+" found")];if(2!==a.length)return[new ct(s,a,"array length 2 expected, length "+a.length+" found")];if(c){if("object"!==Qr(a[0]))return[new ct(s,a,"object expected, "+Qr(a[0])+" found")];if(void 0===a[0].zoom)return[new ct(s,a,"object stop key must have zoom")];if(void 0===a[0].value)return[new ct(s,a,"object stop key must have value")];if(r&&r>dt(a[0].zoom))return[new ct(s,a[0].zoom,"stop zoom values must appear in ascending order")];dt(a[0].zoom)!==r&&(r=dt(a[0].zoom),n=void 0,o={}),t=t.concat(xi({key:s+"[0]",value:a[0],valueSpec:{zoom:{}},style:e.style,styleSpec:e.styleSpec,objectElementValidators:{zoom:_i,value:h}}))}else t=t.concat(h({key:s+"[0]",value:a[0],valueSpec:{},style:e.style,styleSpec:e.styleSpec},a));return ui(ht(a[1]))?t.concat([new ct(s+"[1]",a[1],"expressions are not allowed in function stops.")]):t.concat(Qi({key:s+"[1]",value:a[1],valueSpec:i,style:e.style,styleSpec:e.styleSpec}))}function h(e,r){var s=Qr(e.value),l=dt(e.value),c=null!==e.value?e.value:r;if(t){if(s!==t)return[new ct(e.key,c,s+" stop domain type must match previous stop domain type "+t)]}else t=s;if("number"!==s&&"string"!==s&&"boolean"!==s)return[new ct(e.key,c,"stop domain value must be a number, string, or boolean")];if("number"!==s&&"categorical"!==a){var u="number expected, "+s+" found";return Kr(i)&&void 0===a&&(u+='\nIf you intended to use a categorical function, specify `"type": "categorical"`.'),[new ct(e.key,c,u)]}return"categorical"!==a||"number"!==s||isFinite(l)&&Math.floor(l)===l?"categorical"!==a&&"number"===s&&void 0!==n&&l=2&&"$id"!==e[1]&&"$type"!==e[1];case"in":return e.length>=3&&("string"!==typeof e[1]||Array.isArray(e[2]));case"!in":case"!has":case"none":return!1;case"==":case"!=":case">":case">=":case"<":case"<=":return 3!==e.length||Array.isArray(e[1])||Array.isArray(e[2]);case"any":case"all":for(var t=0,n=e.slice(1);tt?1:0}function Li(e){if(!Array.isArray(e))return!1;if("within"===e[0])return!0;for(var t=1;t"===t||"<="===t||">="===t?Ri(e[1],e[2],t):"any"===t?Di(e.slice(1)):"all"===t?["all"].concat(e.slice(1).map(Ii)):"none"===t?["all"].concat(e.slice(1).map(Ii).map(zi)):"in"===t?Fi(e[1],e.slice(2)):"!in"===t?zi(Fi(e[1],e.slice(2))):"has"===t?Ni(e[1]):"!has"===t?zi(Ni(e[1])):"within"!==t||e}function Ri(e,t,n){switch(e){case"$type":return["filter-type-"+n,t];case"$id":return["filter-id-"+n,t];default:return["filter-"+n,e,t]}}function Di(e){return["any"].concat(e.map(Ii))}function Fi(e,t){if(0===t.length)return!1;switch(e){case"$type":return["filter-type-in",["literal",t]];case"$id":return["filter-id-in",["literal",t]];default:return t.length>200&&!t.some((function(e){return typeof e!==typeof t[0]}))?["filter-in-large",e,["literal",t.sort(Pi)]]:["filter-in-small",e,["literal",t]]}}function Ni(e){switch(e){case"$type":return!0;case"$id":return["filter-has-id"];default:return["filter-has",e]}}function zi(e){return["!",e]}function ji(e){return Ci(ht(e.value))?Si(ft({},e,{expressionContext:"filter",valueSpec:{value:"boolean"}})):Bi(e)}function Bi(e){var t=e.value,n=e.key;if("array"!==Qr(t))return[new ct(n,t,"array expected, "+Qr(t)+" found")];var r,i=e.styleSpec,a=[];if(t.length<1)return[new ct(n,t,"filter array must have at least 1 element")];switch(a=a.concat(Ei({key:n+"[0]",value:t[0],valueSpec:i.filter_operator,style:e.style,styleSpec:e.styleSpec})),dt(t[0])){case"<":case"<=":case">":case">=":t.length>=2&&"$type"===dt(t[1])&&a.push(new ct(n,t,'"$type" cannot be use with operator "'+t[0]+'"'));case"==":case"!=":3!==t.length&&a.push(new ct(n,t,'filter array for operator "'+t[0]+'" must have 3 elements'));case"in":case"!in":t.length>=2&&"string"!==(r=Qr(t[1]))&&a.push(new ct(n+"[1]",t[1],"string expected, "+r+" found"));for(var o=2;o=u[h+0]&&r>=u[h+1])?(o[d]=!0,a.push(c[d])):o[d]=!1}}},fa.prototype._forEachCell=function(e,t,n,r,i,a,o,s){for(var l=this._convertToCellCoord(e),c=this._convertToCellCoord(t),u=this._convertToCellCoord(n),f=this._convertToCellCoord(r),d=l;d<=u;d++)for(var h=c;h<=f;h++){var p=this.d*h+d;if((!s||s(this._convertFromCellCoord(d),this._convertFromCellCoord(h),this._convertFromCellCoord(d+1),this._convertFromCellCoord(h+1)))&&i.call(this,e,t,n,r,p,a,o,s))return}},fa.prototype._convertFromCellCoord=function(e){return(e-this.padding)/this.scale},fa.prototype._convertToCellCoord=function(e){return Math.max(0,Math.min(this.d-1,Math.floor(e*this.scale)+this.padding))},fa.prototype.toArrayBuffer=function(){if(this.arrayBuffer)return this.arrayBuffer;for(var e=this.cells,t=ua+this.cells.length+1+1,n=0,r=0;r=0)){var f=e[u];c[u]=pa[l].shallow.indexOf(u)>=0?f:ba(f,t)}e instanceof Error&&(c.message=e.message)}if(c.$name)throw new Error("$name property is reserved for worker serialization logic.");return"Object"!==l&&(c.$name=l),c}throw new Error("can't serialize object of type "+typeof e)}function xa(e){if(null===e||void 0===e||"boolean"===typeof e||"number"===typeof e||"string"===typeof e||e instanceof Boolean||e instanceof Number||e instanceof String||e instanceof Date||e instanceof RegExp||ga(e)||ya(e)||ArrayBuffer.isView(e)||e instanceof da)return e;if(Array.isArray(e))return e.map(xa);if("object"===typeof e){var t=e.$name||"Object",n=pa[t].klass;if(!n)throw new Error("can't deserialize unregistered class "+t);if(n.deserialize)return n.deserialize(e);for(var r=Object.create(n.prototype),i=0,a=Object.keys(e);i=0?s:xa(s)}}return r}throw new Error("can't deserialize object of type "+typeof e)}var wa=function(){this.first=!0};wa.prototype.update=function(e,t){var n=Math.floor(e);return this.first?(this.first=!1,this.lastIntegerZoom=n,this.lastIntegerZoomTime=0,this.lastZoom=e,this.lastFloorZoom=n,!0):(this.lastFloorZoom>n?(this.lastIntegerZoom=n+1,this.lastIntegerZoomTime=t):this.lastFloorZoom=128&&e<=255},Arabic:function(e){return e>=1536&&e<=1791},"Arabic Supplement":function(e){return e>=1872&&e<=1919},"Arabic Extended-A":function(e){return e>=2208&&e<=2303},"Hangul Jamo":function(e){return e>=4352&&e<=4607},"Unified Canadian Aboriginal Syllabics":function(e){return e>=5120&&e<=5759},Khmer:function(e){return e>=6016&&e<=6143},"Unified Canadian Aboriginal Syllabics Extended":function(e){return e>=6320&&e<=6399},"General Punctuation":function(e){return e>=8192&&e<=8303},"Letterlike Symbols":function(e){return e>=8448&&e<=8527},"Number Forms":function(e){return e>=8528&&e<=8591},"Miscellaneous Technical":function(e){return e>=8960&&e<=9215},"Control Pictures":function(e){return e>=9216&&e<=9279},"Optical Character Recognition":function(e){return e>=9280&&e<=9311},"Enclosed Alphanumerics":function(e){return e>=9312&&e<=9471},"Geometric Shapes":function(e){return e>=9632&&e<=9727},"Miscellaneous Symbols":function(e){return e>=9728&&e<=9983},"Miscellaneous Symbols and Arrows":function(e){return e>=11008&&e<=11263},"CJK Radicals Supplement":function(e){return e>=11904&&e<=12031},"Kangxi Radicals":function(e){return e>=12032&&e<=12255},"Ideographic Description Characters":function(e){return e>=12272&&e<=12287},"CJK Symbols and Punctuation":function(e){return e>=12288&&e<=12351},Hiragana:function(e){return e>=12352&&e<=12447},Katakana:function(e){return e>=12448&&e<=12543},Bopomofo:function(e){return e>=12544&&e<=12591},"Hangul Compatibility Jamo":function(e){return e>=12592&&e<=12687},Kanbun:function(e){return e>=12688&&e<=12703},"Bopomofo Extended":function(e){return e>=12704&&e<=12735},"CJK Strokes":function(e){return e>=12736&&e<=12783},"Katakana Phonetic Extensions":function(e){return e>=12784&&e<=12799},"Enclosed CJK Letters and Months":function(e){return e>=12800&&e<=13055},"CJK Compatibility":function(e){return e>=13056&&e<=13311},"CJK Unified Ideographs Extension A":function(e){return e>=13312&&e<=19903},"Yijing Hexagram Symbols":function(e){return e>=19904&&e<=19967},"CJK Unified Ideographs":function(e){return e>=19968&&e<=40959},"Yi Syllables":function(e){return e>=40960&&e<=42127},"Yi Radicals":function(e){return e>=42128&&e<=42191},"Hangul Jamo Extended-A":function(e){return e>=43360&&e<=43391},"Hangul Syllables":function(e){return e>=44032&&e<=55215},"Hangul Jamo Extended-B":function(e){return e>=55216&&e<=55295},"Private Use Area":function(e){return e>=57344&&e<=63743},"CJK Compatibility Ideographs":function(e){return e>=63744&&e<=64255},"Arabic Presentation Forms-A":function(e){return e>=64336&&e<=65023},"Vertical Forms":function(e){return e>=65040&&e<=65055},"CJK Compatibility Forms":function(e){return e>=65072&&e<=65103},"Small Form Variants":function(e){return e>=65104&&e<=65135},"Arabic Presentation Forms-B":function(e){return e>=65136&&e<=65279},"Halfwidth and Fullwidth Forms":function(e){return e>=65280&&e<=65519}};function ka(e){for(var t=0,n=e;t=65097&&e<=65103)||!!_a["CJK Compatibility Ideographs"](e)||!!_a["CJK Compatibility"](e)||!!_a["CJK Radicals Supplement"](e)||!!_a["CJK Strokes"](e)||!(!_a["CJK Symbols and Punctuation"](e)||e>=12296&&e<=12305||e>=12308&&e<=12319||12336===e)||!!_a["CJK Unified Ideographs Extension A"](e)||!!_a["CJK Unified Ideographs"](e)||!!_a["Enclosed CJK Letters and Months"](e)||!!_a["Hangul Compatibility Jamo"](e)||!!_a["Hangul Jamo Extended-A"](e)||!!_a["Hangul Jamo Extended-B"](e)||!!_a["Hangul Jamo"](e)||!!_a["Hangul Syllables"](e)||!!_a.Hiragana(e)||!!_a["Ideographic Description Characters"](e)||!!_a.Kanbun(e)||!!_a["Kangxi Radicals"](e)||!!_a["Katakana Phonetic Extensions"](e)||!(!_a.Katakana(e)||12540===e)||!(!_a["Halfwidth and Fullwidth Forms"](e)||65288===e||65289===e||65293===e||e>=65306&&e<=65310||65339===e||65341===e||65343===e||e>=65371&&e<=65503||65507===e||e>=65512&&e<=65519)||!(!_a["Small Form Variants"](e)||e>=65112&&e<=65118||e>=65123&&e<=65126)||!!_a["Unified Canadian Aboriginal Syllabics"](e)||!!_a["Unified Canadian Aboriginal Syllabics Extended"](e)||!!_a["Vertical Forms"](e)||!!_a["Yijing Hexagram Symbols"](e)||!!_a["Yi Syllables"](e)||!!_a["Yi Radicals"](e))}function Ca(e){return!(!_a["Latin-1 Supplement"](e)||167!==e&&169!==e&&174!==e&&177!==e&&188!==e&&189!==e&&190!==e&&215!==e&&247!==e)||!(!_a["General Punctuation"](e)||8214!==e&&8224!==e&&8225!==e&&8240!==e&&8241!==e&&8251!==e&&8252!==e&&8258!==e&&8263!==e&&8264!==e&&8265!==e&&8273!==e)||!!_a["Letterlike Symbols"](e)||!!_a["Number Forms"](e)||!(!_a["Miscellaneous Technical"](e)||!(e>=8960&&e<=8967||e>=8972&&e<=8991||e>=8996&&e<=9e3||9003===e||e>=9085&&e<=9114||e>=9150&&e<=9165||9167===e||e>=9169&&e<=9179||e>=9186&&e<=9215))||!(!_a["Control Pictures"](e)||9251===e)||!!_a["Optical Character Recognition"](e)||!!_a["Enclosed Alphanumerics"](e)||!!_a["Geometric Shapes"](e)||!(!_a["Miscellaneous Symbols"](e)||e>=9754&&e<=9759)||!(!_a["Miscellaneous Symbols and Arrows"](e)||!(e>=11026&&e<=11055||e>=11088&&e<=11097||e>=11192&&e<=11243))||!!_a["CJK Symbols and Punctuation"](e)||!!_a.Katakana(e)||!!_a["Private Use Area"](e)||!!_a["CJK Compatibility Forms"](e)||!!_a["Small Form Variants"](e)||!!_a["Halfwidth and Fullwidth Forms"](e)||8734===e||8756===e||8757===e||e>=9984&&e<=10087||e>=10102&&e<=10131||65532===e||65533===e}function Ma(e){return!(Ea(e)||Ca(e))}function Oa(e){return _a.Arabic(e)||_a["Arabic Supplement"](e)||_a["Arabic Extended-A"](e)||_a["Arabic Presentation Forms-A"](e)||_a["Arabic Presentation Forms-B"](e)}function Pa(e){return e>=1424&&e<=2303||_a["Arabic Presentation Forms-A"](e)||_a["Arabic Presentation Forms-B"](e)}function La(e,t){return!(!t&&Pa(e))&&!(e>=2304&&e<=3583||e>=3840&&e<=4255||_a.Khmer(e))}function Ia(e){for(var t=0,n=e;t-1&&(Na=Da.error),Fa&&Fa(e)};function Ba(){Ua.fire(new at("pluginStateChange",{pluginStatus:Na,pluginURL:za}))}var Ua=new st,Ha=function(){return Na},$a=function(e){return e({pluginStatus:Na,pluginURL:za}),Ua.on("pluginStateChange",e),e},Va=function(e,t,n){if(void 0===n&&(n=!1),Na===Da.deferred||Na===Da.loading||Na===Da.loaded)throw new Error("setRTLTextPlugin cannot be called multiple times.");za=G.resolveURL(e),Na=Da.deferred,Fa=t,Ba(),n||Wa()},Wa=function(){if(Na!==Da.deferred||!za)throw new Error("rtl-text-plugin cannot be downloaded unless a pluginURL is specified");Na=Da.loading,Ba(),za&&Ge({url:za},(function(e){e?ja(e):(Na=Da.loaded,Ba())}))},qa={applyArabicShaping:null,processBidirectionalText:null,processStyledBidirectionalText:null,isLoaded:function(){return Na===Da.loaded||null!=qa.applyArabicShaping},isLoading:function(){return Na===Da.loading},setState:function(e){Na=e.pluginStatus,za=e.pluginURL},isParsed:function(){return null!=qa.applyArabicShaping&&null!=qa.processBidirectionalText&&null!=qa.processStyledBidirectionalText},getPluginURL:function(){return za}},Ga=function(){qa.isLoading()||qa.isLoaded()||"deferred"!==Ha()||Wa()},Za=function(e,t){this.zoom=e,t?(this.now=t.now,this.fadeDuration=t.fadeDuration,this.zoomHistory=t.zoomHistory,this.transition=t.transition):(this.now=0,this.fadeDuration=0,this.zoomHistory=new wa,this.transition={})};Za.prototype.isSupportedScript=function(e){return Ra(e,qa.isLoaded())},Za.prototype.crossFadingFactor=function(){return 0===this.fadeDuration?1:Math.min((this.now-this.zoomHistory.lastIntegerZoomTime)/this.fadeDuration,1)},Za.prototype.getCrossfadeParameters=function(){var e=this.zoom,t=e-Math.floor(e),n=this.crossFadingFactor();return e>this.zoomHistory.lastIntegerZoom?{fromScale:2,toScale:1,t:t+(1-t)*n}:{fromScale:.5,toScale:1,t:1-(1-n)*t}};var Ya=function(e,t){this.property=e,this.value=t,this.expression=mi(void 0===t?e.specification.default:t,e.specification)};Ya.prototype.isDataDriven=function(){return"source"===this.expression.kind||"composite"===this.expression.kind},Ya.prototype.possiblyEvaluate=function(e,t,n){return this.property.possiblyEvaluate(this,e,t,n)};var Ka=function(e){this.property=e,this.value=new Ya(e,void 0)};Ka.prototype.transitioned=function(e,t){return new Ja(this.property,this.value,t,m({},e.transition,this.transition),e.now)},Ka.prototype.untransitioned=function(){return new Ja(this.property,this.value,null,{},0)};var Xa=function(e){this._properties=e,this._values=Object.create(e.defaultTransitionablePropertyValues)};Xa.prototype.getValue=function(e){return A(this._values[e].value.value)},Xa.prototype.setValue=function(e,t){this._values.hasOwnProperty(e)||(this._values[e]=new Ka(this._values[e].property)),this._values[e].value=new Ya(this._values[e].property,null===t?void 0:A(t))},Xa.prototype.getTransition=function(e){return A(this._values[e].transition)},Xa.prototype.setTransition=function(e,t){this._values.hasOwnProperty(e)||(this._values[e]=new Ka(this._values[e].property)),this._values[e].transition=A(t)||void 0},Xa.prototype.serialize=function(){for(var e={},t=0,n=Object.keys(this._values);tthis.end)return this.prior=null,i;if(this.value.isDataDriven())return this.prior=null,i;if(rr.zoomHistory.lastIntegerZoom?{from:e,to:t}:{from:n,to:t}},t.prototype.interpolate=function(e){return e},t}(io),oo=function(e){this.specification=e};oo.prototype.possiblyEvaluate=function(e,t,n,r){if(void 0!==e.value){if("constant"===e.expression.kind){var i=e.expression.evaluate(t,null,{},n,r);return this._calculate(i,i,i,t)}return this._calculate(e.expression.evaluate(new Za(Math.floor(t.zoom-1),t)),e.expression.evaluate(new Za(Math.floor(t.zoom),t)),e.expression.evaluate(new Za(Math.floor(t.zoom+1),t)),t)}},oo.prototype._calculate=function(e,t,n,r){return r.zoom>r.zoomHistory.lastIntegerZoom?{from:e,to:t}:{from:n,to:t}},oo.prototype.interpolate=function(e){return e};var so=function(e){this.specification=e};so.prototype.possiblyEvaluate=function(e,t,n,r){return!!e.expression.evaluate(t,null,{},n,r)},so.prototype.interpolate=function(){return!1};var lo=function(e){for(var t in this.properties=e,this.defaultPropertyValues={},this.defaultTransitionablePropertyValues={},this.defaultTransitioningPropertyValues={},this.defaultPossiblyEvaluatedValues={},this.overridableProperties=[],e){var n=e[t];n.specification.overridable&&this.overridableProperties.push(t);var r=this.defaultPropertyValues[t]=new Ya(n,void 0),i=this.defaultTransitionablePropertyValues[t]=new Ka(n);this.defaultTransitioningPropertyValues[t]=i.untransitioned(),this.defaultPossiblyEvaluatedValues[t]=r.possiblyEvaluate({})}};va("DataDrivenProperty",io),va("DataConstantProperty",ro),va("CrossFadedDataDrivenProperty",ao),va("CrossFadedProperty",oo),va("ColorRampProperty",so);var co="-transition",uo=function(e){function t(t,n){if(e.call(this),this.id=t.id,this.type=t.type,this._featureFilter={filter:function(){return!0},needGeometry:!1},"custom"!==t.type&&(this.metadata=t.metadata,this.minzoom=t.minzoom,this.maxzoom=t.maxzoom,"background"!==t.type&&(this.source=t.source,this.sourceLayer=t["source-layer"],this.filter=t.filter),n.layout&&(this._unevaluatedLayout=new eo(n.layout)),n.paint)){for(var r in this._transitionablePaint=new Xa(n.paint),t.paint)this.setPaintProperty(r,t.paint[r],{validate:!1});for(var i in t.layout)this.setLayoutProperty(i,t.layout[i],{validate:!1});this._transitioningPaint=this._transitionablePaint.untransitioned(),this.paint=new no(n.paint)}}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.getCrossfadeParameters=function(){return this._crossfadeParameters},t.prototype.getLayoutProperty=function(e){return"visibility"===e?this.visibility:this._unevaluatedLayout.getValue(e)},t.prototype.setLayoutProperty=function(e,t,n){if(void 0===n&&(n={}),null!==t&&void 0!==t){var r="layers."+this.id+".layout."+e;if(this._validate(sa,r,e,t,n))return}"visibility"!==e?this._unevaluatedLayout.setValue(e,t):this.visibility=t},t.prototype.getPaintProperty=function(e){return k(e,co)?this._transitionablePaint.getTransition(e.slice(0,-co.length)):this._transitionablePaint.getValue(e)},t.prototype.setPaintProperty=function(e,t,n){if(void 0===n&&(n={}),null!==t&&void 0!==t){var r="layers."+this.id+".paint."+e;if(this._validate(oa,r,e,t,n))return!1}if(k(e,co))return this._transitionablePaint.setTransition(e.slice(0,-co.length),t||void 0),!1;var i=this._transitionablePaint._values[e],a="cross-faded-data-driven"===i.property.specification["property-type"],o=i.value.isDataDriven(),s=i.value;this._transitionablePaint.setValue(e,t),this._handleSpecialPaintPropertyUpdate(e);var l=this._transitionablePaint._values[e].value;return l.isDataDriven()||o||a||this._handleOverridablePaintPropertyUpdate(e,s,l)},t.prototype._handleSpecialPaintPropertyUpdate=function(e){},t.prototype._handleOverridablePaintPropertyUpdate=function(e,t,n){return!1},t.prototype.isHidden=function(e){return!!(this.minzoom&&e=this.maxzoom)||"none"===this.visibility},t.prototype.updateTransitions=function(e){this._transitioningPaint=this._transitionablePaint.transitioned(e,this._transitioningPaint)},t.prototype.hasTransition=function(){return this._transitioningPaint.hasTransition()},t.prototype.recalculate=function(e,t){e.getCrossfadeParameters&&(this._crossfadeParameters=e.getCrossfadeParameters()),this._unevaluatedLayout&&(this.layout=this._unevaluatedLayout.possiblyEvaluate(e,void 0,t)),this.paint=this._transitioningPaint.possiblyEvaluate(e,void 0,t)},t.prototype.serialize=function(){var e={id:this.id,type:this.type,source:this.source,"source-layer":this.sourceLayer,metadata:this.metadata,minzoom:this.minzoom,maxzoom:this.maxzoom,filter:this.filter,layout:this._unevaluatedLayout&&this._unevaluatedLayout.serialize(),paint:this._transitionablePaint&&this._transitionablePaint.serialize()};return this.visibility&&(e.layout=e.layout||{},e.layout.visibility=this.visibility),T(e,(function(e,t){return void 0!==e&&!("layout"===t&&!Object.keys(e).length)&&!("paint"===t&&!Object.keys(e).length)}))},t.prototype._validate=function(e,t,n,r,i){return void 0===i&&(i={}),(!i||!1!==i.validate)&&la(this,e.call(ia,{key:t,layerType:this.type,objectKey:n,value:r,styleSpec:lt,style:{glyphs:!0,sprite:!0}}))},t.prototype.is3D=function(){return!1},t.prototype.isTileClipped=function(){return!1},t.prototype.hasOffscreenPass=function(){return!1},t.prototype.resize=function(){},t.prototype.isStateDependent=function(){for(var e in this.paint._values){var t=this.paint.get(e);if(t instanceof to&&Kr(t.property.specification)&&("source"===t.value.kind||"composite"===t.value.kind)&&t.value.isStateDependent)return!0}return!1},t}(st),fo={Int8:Int8Array,Uint8:Uint8Array,Int16:Int16Array,Uint16:Uint16Array,Int32:Int32Array,Uint32:Uint32Array,Float32:Float32Array},ho=function(e,t){this._structArray=e,this._pos1=t*this.size,this._pos2=this._pos1/2,this._pos4=this._pos1/4,this._pos8=this._pos1/8},po=128,vo=5,mo=function(){this.isTransferred=!1,this.capacity=-1,this.resize(0)};function go(e,t){void 0===t&&(t=1);var n=0,r=0;return{members:e.map((function(e){var i=yo(e.type),a=n=bo(n,Math.max(t,i)),o=e.components||1;return r=Math.max(r,i),n+=i*o,{name:e.name,type:e.type,components:o,offset:a}})),size:bo(n,Math.max(r,t)),alignment:t}}function yo(e){return fo[e].BYTES_PER_ELEMENT}function bo(e,t){return Math.ceil(e/t)*t}mo.serialize=function(e,t){return e._trim(),t&&(e.isTransferred=!0,t.push(e.arrayBuffer)),{length:e.length,arrayBuffer:e.arrayBuffer}},mo.deserialize=function(e){var t=Object.create(this.prototype);return t.arrayBuffer=e.arrayBuffer,t.length=e.length,t.capacity=e.arrayBuffer.byteLength/t.bytesPerElement,t._refreshViews(),t},mo.prototype._trim=function(){this.length!==this.capacity&&(this.capacity=this.length,this.arrayBuffer=this.arrayBuffer.slice(0,this.length*this.bytesPerElement),this._refreshViews())},mo.prototype.clear=function(){this.length=0},mo.prototype.resize=function(e){this.reserve(e),this.length=e},mo.prototype.reserve=function(e){if(e>this.capacity){this.capacity=Math.max(e,Math.floor(this.capacity*vo),po),this.arrayBuffer=new ArrayBuffer(this.capacity*this.bytesPerElement);var t=this.uint8;this._refreshViews(),t&&this.uint8.set(t)}},mo.prototype._refreshViews=function(){throw new Error("_refreshViews() must be implemented by each concrete StructArray layout")};var xo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t){var n=this.length;return this.resize(n+1),this.emplace(n,e,t)},t.prototype.emplace=function(e,t,n){var r=2*e;return this.int16[r+0]=t,this.int16[r+1]=n,e},t}(mo);xo.prototype.bytesPerElement=4,va("StructArrayLayout2i4",xo);var wo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r){var i=this.length;return this.resize(i+1),this.emplace(i,e,t,n,r)},t.prototype.emplace=function(e,t,n,r,i){var a=4*e;return this.int16[a+0]=t,this.int16[a+1]=n,this.int16[a+2]=r,this.int16[a+3]=i,e},t}(mo);wo.prototype.bytesPerElement=8,va("StructArrayLayout4i8",wo);var _o=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,e,t,n,r,i,a)},t.prototype.emplace=function(e,t,n,r,i,a,o){var s=6*e;return this.int16[s+0]=t,this.int16[s+1]=n,this.int16[s+2]=r,this.int16[s+3]=i,this.int16[s+4]=a,this.int16[s+5]=o,e},t}(mo);_o.prototype.bytesPerElement=12,va("StructArrayLayout2i4i12",_o);var ko=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,e,t,n,r,i,a)},t.prototype.emplace=function(e,t,n,r,i,a,o){var s=4*e,l=8*e;return this.int16[s+0]=t,this.int16[s+1]=n,this.uint8[l+4]=r,this.uint8[l+5]=i,this.uint8[l+6]=a,this.uint8[l+7]=o,e},t}(mo);ko.prototype.bytesPerElement=8,va("StructArrayLayout2i4ub8",ko);var So=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a,o,s,l,c){var u=this.length;return this.resize(u+1),this.emplace(u,e,t,n,r,i,a,o,s,l,c)},t.prototype.emplace=function(e,t,n,r,i,a,o,s,l,c,u){var f=9*e,d=18*e;return this.uint16[f+0]=t,this.uint16[f+1]=n,this.uint16[f+2]=r,this.uint16[f+3]=i,this.uint16[f+4]=a,this.uint16[f+5]=o,this.uint16[f+6]=s,this.uint16[f+7]=l,this.uint8[d+16]=c,this.uint8[d+17]=u,e},t}(mo);So.prototype.bytesPerElement=18,va("StructArrayLayout8ui2ub18",So);var To=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a,o,s,l,c,u,f){var d=this.length;return this.resize(d+1),this.emplace(d,e,t,n,r,i,a,o,s,l,c,u,f)},t.prototype.emplace=function(e,t,n,r,i,a,o,s,l,c,u,f,d){var h=12*e;return this.int16[h+0]=t,this.int16[h+1]=n,this.int16[h+2]=r,this.int16[h+3]=i,this.uint16[h+4]=a,this.uint16[h+5]=o,this.uint16[h+6]=s,this.uint16[h+7]=l,this.int16[h+8]=c,this.int16[h+9]=u,this.int16[h+10]=f,this.int16[h+11]=d,e},t}(mo);To.prototype.bytesPerElement=24,va("StructArrayLayout4i4ui4i24",To);var Ao=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n){var r=this.length;return this.resize(r+1),this.emplace(r,e,t,n)},t.prototype.emplace=function(e,t,n,r){var i=3*e;return this.float32[i+0]=t,this.float32[i+1]=n,this.float32[i+2]=r,e},t}(mo);Ao.prototype.bytesPerElement=12,va("StructArrayLayout3f12",Ao);var Eo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)},t.prototype.emplace=function(e,t){var n=1*e;return this.uint32[n+0]=t,e},t}(mo);Eo.prototype.bytesPerElement=4,va("StructArrayLayout1ul4",Eo);var Co=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a,o,s,l){var c=this.length;return this.resize(c+1),this.emplace(c,e,t,n,r,i,a,o,s,l)},t.prototype.emplace=function(e,t,n,r,i,a,o,s,l,c){var u=10*e,f=5*e;return this.int16[u+0]=t,this.int16[u+1]=n,this.int16[u+2]=r,this.int16[u+3]=i,this.int16[u+4]=a,this.int16[u+5]=o,this.uint32[f+3]=s,this.uint16[u+8]=l,this.uint16[u+9]=c,e},t}(mo);Co.prototype.bytesPerElement=20,va("StructArrayLayout6i1ul2ui20",Co);var Mo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,e,t,n,r,i,a)},t.prototype.emplace=function(e,t,n,r,i,a,o){var s=6*e;return this.int16[s+0]=t,this.int16[s+1]=n,this.int16[s+2]=r,this.int16[s+3]=i,this.int16[s+4]=a,this.int16[s+5]=o,e},t}(mo);Mo.prototype.bytesPerElement=12,va("StructArrayLayout2i2i2i12",Mo);var Oo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i){var a=this.length;return this.resize(a+1),this.emplace(a,e,t,n,r,i)},t.prototype.emplace=function(e,t,n,r,i,a){var o=4*e,s=8*e;return this.float32[o+0]=t,this.float32[o+1]=n,this.float32[o+2]=r,this.int16[s+6]=i,this.int16[s+7]=a,e},t}(mo);Oo.prototype.bytesPerElement=16,va("StructArrayLayout2f1f2i16",Oo);var Po=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r){var i=this.length;return this.resize(i+1),this.emplace(i,e,t,n,r)},t.prototype.emplace=function(e,t,n,r,i){var a=12*e,o=3*e;return this.uint8[a+0]=t,this.uint8[a+1]=n,this.float32[o+1]=r,this.float32[o+2]=i,e},t}(mo);Po.prototype.bytesPerElement=12,va("StructArrayLayout2ub2f12",Po);var Lo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n){var r=this.length;return this.resize(r+1),this.emplace(r,e,t,n)},t.prototype.emplace=function(e,t,n,r){var i=3*e;return this.uint16[i+0]=t,this.uint16[i+1]=n,this.uint16[i+2]=r,e},t}(mo);Lo.prototype.bytesPerElement=6,va("StructArrayLayout3ui6",Lo);var Io=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v,m){var g=this.length;return this.resize(g+1),this.emplace(g,e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v,m)},t.prototype.emplace=function(e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v,m,g){var y=24*e,b=12*e,x=48*e;return this.int16[y+0]=t,this.int16[y+1]=n,this.uint16[y+2]=r,this.uint16[y+3]=i,this.uint32[b+2]=a,this.uint32[b+3]=o,this.uint32[b+4]=s,this.uint16[y+10]=l,this.uint16[y+11]=c,this.uint16[y+12]=u,this.float32[b+7]=f,this.float32[b+8]=d,this.uint8[x+36]=h,this.uint8[x+37]=p,this.uint8[x+38]=v,this.uint32[b+10]=m,this.int16[y+22]=g,e},t}(mo);Io.prototype.bytesPerElement=48,va("StructArrayLayout2i2ui3ul3ui2f3ub1ul1i48",Io);var Ro=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E){var C=this.length;return this.resize(C+1),this.emplace(C,e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E)},t.prototype.emplace=function(e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v,m,g,y,b,x,w,_,k,S,T,A,E,C){var M=34*e,O=17*e;return this.int16[M+0]=t,this.int16[M+1]=n,this.int16[M+2]=r,this.int16[M+3]=i,this.int16[M+4]=a,this.int16[M+5]=o,this.int16[M+6]=s,this.int16[M+7]=l,this.uint16[M+8]=c,this.uint16[M+9]=u,this.uint16[M+10]=f,this.uint16[M+11]=d,this.uint16[M+12]=h,this.uint16[M+13]=p,this.uint16[M+14]=v,this.uint16[M+15]=m,this.uint16[M+16]=g,this.uint16[M+17]=y,this.uint16[M+18]=b,this.uint16[M+19]=x,this.uint16[M+20]=w,this.uint16[M+21]=_,this.uint16[M+22]=k,this.uint32[O+12]=S,this.float32[O+13]=T,this.float32[O+14]=A,this.float32[O+15]=E,this.float32[O+16]=C,e},t}(mo);Ro.prototype.bytesPerElement=68,va("StructArrayLayout8i15ui1ul4f68",Ro);var Do=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)},t.prototype.emplace=function(e,t){var n=1*e;return this.float32[n+0]=t,e},t}(mo);Do.prototype.bytesPerElement=4,va("StructArrayLayout1f4",Do);var Fo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n){var r=this.length;return this.resize(r+1),this.emplace(r,e,t,n)},t.prototype.emplace=function(e,t,n,r){var i=3*e;return this.int16[i+0]=t,this.int16[i+1]=n,this.int16[i+2]=r,e},t}(mo);Fo.prototype.bytesPerElement=6,va("StructArrayLayout3i6",Fo);var No=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n){var r=this.length;return this.resize(r+1),this.emplace(r,e,t,n)},t.prototype.emplace=function(e,t,n,r){var i=2*e,a=4*e;return this.uint32[i+0]=t,this.uint16[a+2]=n,this.uint16[a+3]=r,e},t}(mo);No.prototype.bytesPerElement=8,va("StructArrayLayout1ul2ui8",No);var zo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t){var n=this.length;return this.resize(n+1),this.emplace(n,e,t)},t.prototype.emplace=function(e,t,n){var r=2*e;return this.uint16[r+0]=t,this.uint16[r+1]=n,e},t}(mo);zo.prototype.bytesPerElement=4,va("StructArrayLayout2ui4",zo);var jo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e){var t=this.length;return this.resize(t+1),this.emplace(t,e)},t.prototype.emplace=function(e,t){var n=1*e;return this.uint16[n+0]=t,e},t}(mo);jo.prototype.bytesPerElement=2,va("StructArrayLayout1ui2",jo);var Bo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t){var n=this.length;return this.resize(n+1),this.emplace(n,e,t)},t.prototype.emplace=function(e,t,n){var r=2*e;return this.float32[r+0]=t,this.float32[r+1]=n,e},t}(mo);Bo.prototype.bytesPerElement=8,va("StructArrayLayout2f8",Bo);var Uo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},t.prototype.emplaceBack=function(e,t,n,r){var i=this.length;return this.resize(i+1),this.emplace(i,e,t,n,r)},t.prototype.emplace=function(e,t,n,r,i){var a=4*e;return this.float32[a+0]=t,this.float32[a+1]=n,this.float32[a+2]=r,this.float32[a+3]=i,e},t}(mo);Uo.prototype.bytesPerElement=16,va("StructArrayLayout4f16",Uo);var Ho=function(e){function t(){e.apply(this,arguments)}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var n={anchorPointX:{configurable:!0},anchorPointY:{configurable:!0},x1:{configurable:!0},y1:{configurable:!0},x2:{configurable:!0},y2:{configurable:!0},featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0},anchorPoint:{configurable:!0}};return n.anchorPointX.get=function(){return this._structArray.int16[this._pos2+0]},n.anchorPointY.get=function(){return this._structArray.int16[this._pos2+1]},n.x1.get=function(){return this._structArray.int16[this._pos2+2]},n.y1.get=function(){return this._structArray.int16[this._pos2+3]},n.x2.get=function(){return this._structArray.int16[this._pos2+4]},n.y2.get=function(){return this._structArray.int16[this._pos2+5]},n.featureIndex.get=function(){return this._structArray.uint32[this._pos4+3]},n.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+8]},n.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+9]},n.anchorPoint.get=function(){return new a(this.anchorPointX,this.anchorPointY)},Object.defineProperties(t.prototype,n),t}(ho);Ho.prototype.size=20;var $o=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.get=function(e){return new Ho(this,e)},t}(Co);va("CollisionBoxArray",$o);var Vo=function(e){function t(){e.apply(this,arguments)}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var n={anchorX:{configurable:!0},anchorY:{configurable:!0},glyphStartIndex:{configurable:!0},numGlyphs:{configurable:!0},vertexStartIndex:{configurable:!0},lineStartIndex:{configurable:!0},lineLength:{configurable:!0},segment:{configurable:!0},lowerSize:{configurable:!0},upperSize:{configurable:!0},lineOffsetX:{configurable:!0},lineOffsetY:{configurable:!0},writingMode:{configurable:!0},placedOrientation:{configurable:!0},hidden:{configurable:!0},crossTileID:{configurable:!0},associatedIconIndex:{configurable:!0}};return n.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},n.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},n.glyphStartIndex.get=function(){return this._structArray.uint16[this._pos2+2]},n.numGlyphs.get=function(){return this._structArray.uint16[this._pos2+3]},n.vertexStartIndex.get=function(){return this._structArray.uint32[this._pos4+2]},n.lineStartIndex.get=function(){return this._structArray.uint32[this._pos4+3]},n.lineLength.get=function(){return this._structArray.uint32[this._pos4+4]},n.segment.get=function(){return this._structArray.uint16[this._pos2+10]},n.lowerSize.get=function(){return this._structArray.uint16[this._pos2+11]},n.upperSize.get=function(){return this._structArray.uint16[this._pos2+12]},n.lineOffsetX.get=function(){return this._structArray.float32[this._pos4+7]},n.lineOffsetY.get=function(){return this._structArray.float32[this._pos4+8]},n.writingMode.get=function(){return this._structArray.uint8[this._pos1+36]},n.placedOrientation.get=function(){return this._structArray.uint8[this._pos1+37]},n.placedOrientation.set=function(e){this._structArray.uint8[this._pos1+37]=e},n.hidden.get=function(){return this._structArray.uint8[this._pos1+38]},n.hidden.set=function(e){this._structArray.uint8[this._pos1+38]=e},n.crossTileID.get=function(){return this._structArray.uint32[this._pos4+10]},n.crossTileID.set=function(e){this._structArray.uint32[this._pos4+10]=e},n.associatedIconIndex.get=function(){return this._structArray.int16[this._pos2+22]},Object.defineProperties(t.prototype,n),t}(ho);Vo.prototype.size=48;var Wo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.get=function(e){return new Vo(this,e)},t}(Io);va("PlacedSymbolArray",Wo);var qo=function(e){function t(){e.apply(this,arguments)}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var n={anchorX:{configurable:!0},anchorY:{configurable:!0},rightJustifiedTextSymbolIndex:{configurable:!0},centerJustifiedTextSymbolIndex:{configurable:!0},leftJustifiedTextSymbolIndex:{configurable:!0},verticalPlacedTextSymbolIndex:{configurable:!0},placedIconSymbolIndex:{configurable:!0},verticalPlacedIconSymbolIndex:{configurable:!0},key:{configurable:!0},textBoxStartIndex:{configurable:!0},textBoxEndIndex:{configurable:!0},verticalTextBoxStartIndex:{configurable:!0},verticalTextBoxEndIndex:{configurable:!0},iconBoxStartIndex:{configurable:!0},iconBoxEndIndex:{configurable:!0},verticalIconBoxStartIndex:{configurable:!0},verticalIconBoxEndIndex:{configurable:!0},featureIndex:{configurable:!0},numHorizontalGlyphVertices:{configurable:!0},numVerticalGlyphVertices:{configurable:!0},numIconVertices:{configurable:!0},numVerticalIconVertices:{configurable:!0},useRuntimeCollisionCircles:{configurable:!0},crossTileID:{configurable:!0},textBoxScale:{configurable:!0},textOffset0:{configurable:!0},textOffset1:{configurable:!0},collisionCircleDiameter:{configurable:!0}};return n.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},n.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},n.rightJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+2]},n.centerJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+3]},n.leftJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+4]},n.verticalPlacedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+5]},n.placedIconSymbolIndex.get=function(){return this._structArray.int16[this._pos2+6]},n.verticalPlacedIconSymbolIndex.get=function(){return this._structArray.int16[this._pos2+7]},n.key.get=function(){return this._structArray.uint16[this._pos2+8]},n.textBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+9]},n.textBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+10]},n.verticalTextBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+11]},n.verticalTextBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+12]},n.iconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+13]},n.iconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+14]},n.verticalIconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+15]},n.verticalIconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+16]},n.featureIndex.get=function(){return this._structArray.uint16[this._pos2+17]},n.numHorizontalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+18]},n.numVerticalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+19]},n.numIconVertices.get=function(){return this._structArray.uint16[this._pos2+20]},n.numVerticalIconVertices.get=function(){return this._structArray.uint16[this._pos2+21]},n.useRuntimeCollisionCircles.get=function(){return this._structArray.uint16[this._pos2+22]},n.crossTileID.get=function(){return this._structArray.uint32[this._pos4+12]},n.crossTileID.set=function(e){this._structArray.uint32[this._pos4+12]=e},n.textBoxScale.get=function(){return this._structArray.float32[this._pos4+13]},n.textOffset0.get=function(){return this._structArray.float32[this._pos4+14]},n.textOffset1.get=function(){return this._structArray.float32[this._pos4+15]},n.collisionCircleDiameter.get=function(){return this._structArray.float32[this._pos4+16]},Object.defineProperties(t.prototype,n),t}(ho);qo.prototype.size=68;var Go=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.get=function(e){return new qo(this,e)},t}(Ro);va("SymbolInstanceArray",Go);var Zo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.getoffsetX=function(e){return this.float32[1*e+0]},t}(Do);va("GlyphOffsetArray",Zo);var Yo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.getx=function(e){return this.int16[3*e+0]},t.prototype.gety=function(e){return this.int16[3*e+1]},t.prototype.gettileUnitDistanceFromAnchor=function(e){return this.int16[3*e+2]},t}(Fo);va("SymbolLineVertexArray",Yo);var Ko=function(e){function t(){e.apply(this,arguments)}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var n={featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0}};return n.featureIndex.get=function(){return this._structArray.uint32[this._pos4+0]},n.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+2]},n.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+3]},Object.defineProperties(t.prototype,n),t}(ho);Ko.prototype.size=8;var Xo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.get=function(e){return new Ko(this,e)},t}(No);va("FeatureIndexArray",Xo);var Jo=go([{name:"a_pos",components:2,type:"Int16"}],4).members,Qo=function(e){void 0===e&&(e=[]),this.segments=e};function es(e,t){return 256*(e=f(Math.floor(e),0,255))+(t=f(Math.floor(t),0,255))}Qo.prototype.prepareSegment=function(e,t,n,r){var i=this.segments[this.segments.length-1];return e>Qo.MAX_VERTEX_ARRAY_LENGTH&&M("Max vertices per segment is "+Qo.MAX_VERTEX_ARRAY_LENGTH+": bucket requested "+e),(!i||i.vertexLength+e>Qo.MAX_VERTEX_ARRAY_LENGTH||i.sortKey!==r)&&(i={vertexOffset:t.length,primitiveOffset:n.length,vertexLength:0,primitiveLength:0},void 0!==r&&(i.sortKey=r),this.segments.push(i)),i},Qo.prototype.get=function(){return this.segments},Qo.prototype.destroy=function(){for(var e=0,t=this.segments;e>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295)<<13|i>>>19))+((5*(i>>>16)&65535)<<16)&4294967295))+((58964+(a>>>16)&65535)<<16);switch(l=0,n){case 3:l^=(255&e.charCodeAt(c+2))<<16;case 2:l^=(255&e.charCodeAt(c+1))<<8;case 1:i^=l=(65535&(l=(l=(65535&(l^=255&e.charCodeAt(c)))*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295}return i^=e.length,i=2246822507*(65535&(i^=i>>>16))+((2246822507*(i>>>16)&65535)<<16)&4294967295,i=3266489909*(65535&(i^=i>>>13))+((3266489909*(i>>>16)&65535)<<16)&4294967295,(i^=i>>>16)>>>0}e.exports=t})),rs=t((function(e){function t(e,t){for(var n,r=e.length,i=t^r,a=0;r>=4;)n=1540483477*(65535&(n=255&e.charCodeAt(a)|(255&e.charCodeAt(++a))<<8|(255&e.charCodeAt(++a))<<16|(255&e.charCodeAt(++a))<<24))+((1540483477*(n>>>16)&65535)<<16),i=1540483477*(65535&i)+((1540483477*(i>>>16)&65535)<<16)^(n=1540483477*(65535&(n^=n>>>24))+((1540483477*(n>>>16)&65535)<<16)),r-=4,++a;switch(r){case 3:i^=(255&e.charCodeAt(a+2))<<16;case 2:i^=(255&e.charCodeAt(a+1))<<8;case 1:i=1540483477*(65535&(i^=255&e.charCodeAt(a)))+((1540483477*(i>>>16)&65535)<<16)}return i=1540483477*(65535&(i^=i>>>13))+((1540483477*(i>>>16)&65535)<<16),(i^=i>>>15)>>>0}e.exports=t})),is=ns,as=ns,os=rs;is.murmur3=as,is.murmur2=os;var ss=function(){this.ids=[],this.positions=[],this.indexed=!1};ss.prototype.add=function(e,t,n,r){this.ids.push(cs(e)),this.positions.push(t,n,r)},ss.prototype.getPositions=function(e){for(var t=cs(e),n=0,r=this.ids.length-1;n>1;this.ids[i]>=t?r=i:n=i+1}for(var a=[];this.ids[n]===t;){var o=this.positions[3*n],s=this.positions[3*n+1],l=this.positions[3*n+2];a.push({index:o,start:s,end:l}),n++}return a},ss.serialize=function(e,t){var n=new Float64Array(e.ids),r=new Uint32Array(e.positions);return us(n,r,0,n.length-1),t&&t.push(n.buffer,r.buffer),{ids:n,positions:r}},ss.deserialize=function(e){var t=new ss;return t.ids=e.ids,t.positions=e.positions,t.indexed=!0,t};var ls=Math.pow(2,53)-1;function cs(e){var t=+e;return!isNaN(t)&&t<=ls?t:is(String(e))}function us(e,t,n,r){for(;n>1],a=n-1,o=r+1;;){do{a++}while(e[a]i);if(a>=o)break;fs(e,a,o),fs(t,3*a,3*o),fs(t,3*a+1,3*o+1),fs(t,3*a+2,3*o+2)}o-nRs.max||o.yRs.max)&&(M("Geometry exceeds allowed extent, reduce your vector tile buffer size"),o.x=f(o.x,Rs.min,Rs.max),o.y=f(o.y,Rs.min,Rs.max))}return n}function Fs(e,t,n,r,i){e.emplaceBack(2*t+(r+1)/2,2*n+(i+1)/2)}var Ns=function(e){this.zoom=e.zoom,this.overscaling=e.overscaling,this.layers=e.layers,this.layerIds=this.layers.map((function(e){return e.id})),this.index=e.index,this.hasPattern=!1,this.layoutVertexArray=new xo,this.indexArray=new Lo,this.segments=new Qo,this.programConfigurations=new Cs(Jo,e.layers,e.zoom),this.stateDependentLayerIds=this.layers.filter((function(e){return e.isStateDependent()})).map((function(e){return e.id}))};function zs(e,t){for(var n=0;n=3)for(var a=0;a1){if($s(e,t))return!0;for(var r=0;r1?e.distSqr(n):e.distSqr(n.sub(t)._mult(i)._add(t))}function Gs(e,t){for(var n,r,i,a=!1,o=0;ot.y!==i.y>t.y&&t.x<(i.x-r.x)*(t.y-r.y)/(i.y-r.y)+r.x&&(a=!a);return a}function Zs(e,t){for(var n=!1,r=0,i=e.length-1;rt.y!==o.y>t.y&&t.x<(o.x-a.x)*(t.y-a.y)/(o.y-a.y)+a.x&&(n=!n)}return n}function Ys(e,t,n,r,i){for(var o=0,s=e;o=l.x&&i>=l.y)return!0}var c=[new a(t,n),new a(t,i),new a(r,i),new a(r,n)];if(e.length>2)for(var u=0,f=c;ui.x&&t.x>i.x||e.yi.y&&t.y>i.y)return!1;var a=O(e,t,n[0]);return a!==O(e,t,n[1])||a!==O(e,t,n[2])||a!==O(e,t,n[3])}function Xs(e,t,n){var r=t.paint.get(e).value;return"constant"===r.kind?r.value:n.programConfigurations.get(t.id).getMaxValue(e)}function Js(e){return Math.sqrt(e[0]*e[0]+e[1]*e[1])}function Qs(e,t,n,r,i){if(!t[0]&&!t[1])return e;var o=a.convert(t)._mult(i);"viewport"===n&&o._rotate(-r);for(var s=[],l=0;l=Ls||u<0||u>=Ls)){var f=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray,e.sortKey),d=f.vertexLength;Fs(this.layoutVertexArray,c,u,-1,-1),Fs(this.layoutVertexArray,c,u,1,-1),Fs(this.layoutVertexArray,c,u,1,1),Fs(this.layoutVertexArray,c,u,-1,1),this.indexArray.emplaceBack(d,d+1,d+2),this.indexArray.emplaceBack(d,d+3,d+2),f.vertexLength+=4,f.primitiveLength+=2}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,e,n,{},r)},va("CircleBucket",Ns,{omit:["layers"]});var el=new lo({"circle-sort-key":new io(lt.layout_circle["circle-sort-key"])}),tl={paint:new lo({"circle-radius":new io(lt.paint_circle["circle-radius"]),"circle-color":new io(lt.paint_circle["circle-color"]),"circle-blur":new io(lt.paint_circle["circle-blur"]),"circle-opacity":new io(lt.paint_circle["circle-opacity"]),"circle-translate":new ro(lt.paint_circle["circle-translate"]),"circle-translate-anchor":new ro(lt.paint_circle["circle-translate-anchor"]),"circle-pitch-scale":new ro(lt.paint_circle["circle-pitch-scale"]),"circle-pitch-alignment":new ro(lt.paint_circle["circle-pitch-alignment"]),"circle-stroke-width":new io(lt.paint_circle["circle-stroke-width"]),"circle-stroke-color":new io(lt.paint_circle["circle-stroke-color"]),"circle-stroke-opacity":new io(lt.paint_circle["circle-stroke-opacity"])}),layout:el},nl="undefined"!==typeof Float32Array?Float32Array:Array;function rl(){var e=new nl(4);return nl!=Float32Array&&(e[1]=0,e[2]=0),e[0]=1,e[3]=1,e}function il(e,t,n){var r=t[0],i=t[1],a=t[2],o=t[3],s=Math.sin(n),l=Math.cos(n);return e[0]=r*l+a*s,e[1]=i*l+o*s,e[2]=r*-s+a*l,e[3]=i*-s+o*l,e}function al(){var e=new nl(9);return nl!=Float32Array&&(e[1]=0,e[2]=0,e[3]=0,e[5]=0,e[6]=0,e[7]=0),e[0]=1,e[4]=1,e[8]=1,e}function ol(e,t){var n=Math.sin(t),r=Math.cos(t);return e[0]=r,e[1]=n,e[2]=0,e[3]=-n,e[4]=r,e[5]=0,e[6]=0,e[7]=0,e[8]=1,e}function sl(){var e=new nl(16);return nl!=Float32Array&&(e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[11]=0,e[12]=0,e[13]=0,e[14]=0),e[0]=1,e[5]=1,e[10]=1,e[15]=1,e}function ll(e){var t=new nl(16);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}function cl(e){return e[0]=1,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=1,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=1,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,e}function ul(e,t){var n=t[0],r=t[1],i=t[2],a=t[3],o=t[4],s=t[5],l=t[6],c=t[7],u=t[8],f=t[9],d=t[10],h=t[11],p=t[12],v=t[13],m=t[14],g=t[15],y=n*s-r*o,b=n*l-i*o,x=n*c-a*o,w=r*l-i*s,_=r*c-a*s,k=i*c-a*l,S=u*v-f*p,T=u*m-d*p,A=u*g-h*p,E=f*m-d*v,C=f*g-h*v,M=d*g-h*m,O=y*M-b*C+x*E+w*A-_*T+k*S;return O?(O=1/O,e[0]=(s*M-l*C+c*E)*O,e[1]=(i*C-r*M-a*E)*O,e[2]=(v*k-m*_+g*w)*O,e[3]=(d*_-f*k-h*w)*O,e[4]=(l*A-o*M-c*T)*O,e[5]=(n*M-i*A+a*T)*O,e[6]=(m*x-p*k-g*b)*O,e[7]=(u*k-d*x+h*b)*O,e[8]=(o*C-s*A+c*S)*O,e[9]=(r*A-n*C-a*S)*O,e[10]=(p*_-v*x+g*y)*O,e[11]=(f*x-u*_-h*y)*O,e[12]=(s*T-o*E-l*S)*O,e[13]=(n*E-r*T+i*S)*O,e[14]=(v*b-p*w-m*y)*O,e[15]=(u*w-f*b+d*y)*O,e):null}function fl(e,t,n){var r=t[0],i=t[1],a=t[2],o=t[3],s=t[4],l=t[5],c=t[6],u=t[7],f=t[8],d=t[9],h=t[10],p=t[11],v=t[12],m=t[13],g=t[14],y=t[15],b=n[0],x=n[1],w=n[2],_=n[3];return e[0]=b*r+x*s+w*f+_*v,e[1]=b*i+x*l+w*d+_*m,e[2]=b*a+x*c+w*h+_*g,e[3]=b*o+x*u+w*p+_*y,b=n[4],x=n[5],w=n[6],_=n[7],e[4]=b*r+x*s+w*f+_*v,e[5]=b*i+x*l+w*d+_*m,e[6]=b*a+x*c+w*h+_*g,e[7]=b*o+x*u+w*p+_*y,b=n[8],x=n[9],w=n[10],_=n[11],e[8]=b*r+x*s+w*f+_*v,e[9]=b*i+x*l+w*d+_*m,e[10]=b*a+x*c+w*h+_*g,e[11]=b*o+x*u+w*p+_*y,b=n[12],x=n[13],w=n[14],_=n[15],e[12]=b*r+x*s+w*f+_*v,e[13]=b*i+x*l+w*d+_*m,e[14]=b*a+x*c+w*h+_*g,e[15]=b*o+x*u+w*p+_*y,e}function dl(e,t,n){var r,i,a,o,s,l,c,u,f,d,h,p,v=n[0],m=n[1],g=n[2];return t===e?(e[12]=t[0]*v+t[4]*m+t[8]*g+t[12],e[13]=t[1]*v+t[5]*m+t[9]*g+t[13],e[14]=t[2]*v+t[6]*m+t[10]*g+t[14],e[15]=t[3]*v+t[7]*m+t[11]*g+t[15]):(r=t[0],i=t[1],a=t[2],o=t[3],s=t[4],l=t[5],c=t[6],u=t[7],f=t[8],d=t[9],h=t[10],p=t[11],e[0]=r,e[1]=i,e[2]=a,e[3]=o,e[4]=s,e[5]=l,e[6]=c,e[7]=u,e[8]=f,e[9]=d,e[10]=h,e[11]=p,e[12]=r*v+s*m+f*g+t[12],e[13]=i*v+l*m+d*g+t[13],e[14]=a*v+c*m+h*g+t[14],e[15]=o*v+u*m+p*g+t[15]),e}function hl(e,t,n){var r=n[0],i=n[1],a=n[2];return e[0]=t[0]*r,e[1]=t[1]*r,e[2]=t[2]*r,e[3]=t[3]*r,e[4]=t[4]*i,e[5]=t[5]*i,e[6]=t[6]*i,e[7]=t[7]*i,e[8]=t[8]*a,e[9]=t[9]*a,e[10]=t[10]*a,e[11]=t[11]*a,e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}function pl(e,t,n){var r=Math.sin(n),i=Math.cos(n),a=t[4],o=t[5],s=t[6],l=t[7],c=t[8],u=t[9],f=t[10],d=t[11];return t!==e&&(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15]),e[4]=a*i+c*r,e[5]=o*i+u*r,e[6]=s*i+f*r,e[7]=l*i+d*r,e[8]=c*i-a*r,e[9]=u*i-o*r,e[10]=f*i-s*r,e[11]=d*i-l*r,e}function vl(e,t,n){var r=Math.sin(n),i=Math.cos(n),a=t[0],o=t[1],s=t[2],l=t[3],c=t[4],u=t[5],f=t[6],d=t[7];return t!==e&&(e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15]),e[0]=a*i+c*r,e[1]=o*i+u*r,e[2]=s*i+f*r,e[3]=l*i+d*r,e[4]=c*i-a*r,e[5]=u*i-o*r,e[6]=f*i-s*r,e[7]=d*i-l*r,e}function ml(e,t,n,r,i){var a,o=1/Math.tan(t/2);return e[0]=o/n,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=o,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[11]=-1,e[12]=0,e[13]=0,e[15]=0,null!=i&&i!==1/0?(a=1/(r-i),e[10]=(i+r)*a,e[14]=2*i*r*a):(e[10]=-1,e[14]=-2*r),e}function gl(e,t,n,r,i,a,o){var s=1/(t-n),l=1/(r-i),c=1/(a-o);return e[0]=-2*s,e[1]=0,e[2]=0,e[3]=0,e[4]=0,e[5]=-2*l,e[6]=0,e[7]=0,e[8]=0,e[9]=0,e[10]=2*c,e[11]=0,e[12]=(t+n)*s,e[13]=(i+r)*l,e[14]=(o+a)*c,e[15]=1,e}Math.hypot||(Math.hypot=function(){for(var e=arguments,t=0,n=arguments.length;n--;)t+=e[n]*e[n];return Math.sqrt(t)});var yl=fl;function bl(){var e=new nl(3);return nl!=Float32Array&&(e[0]=0,e[1]=0,e[2]=0),e}function xl(e){var t=new nl(3);return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function wl(e,t,n){return e[0]=t[0]+n[0],e[1]=t[1]+n[1],e[2]=t[2]+n[2],e}function _l(e,t,n){return e[0]=t[0]-n[0],e[1]=t[1]-n[1],e[2]=t[2]-n[2],e}function kl(e,t,n){return e[0]=t[0]*n,e[1]=t[1]*n,e[2]=t[2]*n,e}function Sl(e,t){var n=t[0],r=t[1],i=t[2],a=n*n+r*r+i*i;return a>0&&(a=1/Math.sqrt(a)),e[0]=t[0]*a,e[1]=t[1]*a,e[2]=t[2]*a,e}function Tl(e,t){return e[0]*t[0]+e[1]*t[1]+e[2]*t[2]}function Al(e,t,n){var r=t[0],i=t[1],a=t[2],o=n[0],s=n[1],l=n[2];return e[0]=i*l-a*s,e[1]=a*o-r*l,e[2]=r*s-i*o,e}function El(e,t,n){var r=t[0],i=t[1],a=t[2];return e[0]=r*n[0]+i*n[3]+a*n[6],e[1]=r*n[1]+i*n[4]+a*n[7],e[2]=r*n[2]+i*n[5]+a*n[8],e}var Cl=_l;function Ml(){var e=new nl(4);return nl!=Float32Array&&(e[0]=0,e[1]=0,e[2]=0,e[3]=0),e}function Ol(e,t,n){return e[0]=t[0]*n,e[1]=t[1]*n,e[2]=t[2]*n,e[3]=t[3]*n,e}function Pl(e,t){return e[0]*t[0]+e[1]*t[1]+e[2]*t[2]+e[3]*t[3]}function Ll(e,t,n){var r=t[0],i=t[1],a=t[2],o=t[3];return e[0]=n[0]*r+n[4]*i+n[8]*a+n[12]*o,e[1]=n[1]*r+n[5]*i+n[9]*a+n[13]*o,e[2]=n[2]*r+n[6]*i+n[10]*a+n[14]*o,e[3]=n[3]*r+n[7]*i+n[11]*a+n[15]*o,e}function Il(){var e=new nl(2);return nl!=Float32Array&&(e[0]=0,e[1]=0),e}function Rl(e){var t=e[0],n=e[1];return t*t+n*n}bl(),Ml();var Dl=Rl,Fl=(Il(),function(e){function t(t){e.call(this,t,tl)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.createBucket=function(e){return new Ns(e)},t.prototype.queryRadius=function(e){var t=e;return Xs("circle-radius",this,t)+Xs("circle-stroke-width",this,t)+Js(this.paint.get("circle-translate"))},t.prototype.queryIntersectsFeature=function(e,t,n,r,i,a,o,s){for(var l=Qs(e,this.paint.get("circle-translate"),this.paint.get("circle-translate-anchor"),a.angle,o),c=this.paint.get("circle-radius").evaluate(t,n)+this.paint.get("circle-stroke-width").evaluate(t,n),u="map"===this.paint.get("circle-pitch-alignment"),f=u?l:zl(l,s),d=u?c*o:c,h=0,p=r;he.width||i.height>e.height||n.x>e.width-i.width||n.y>e.height-i.height)throw new RangeError("out of range source coordinates for image copy");if(i.width>t.width||i.height>t.height||r.x>t.width-i.width||r.y>t.height-i.height)throw new RangeError("out of range destination coordinates for image copy");for(var o=e.data,s=t.data,l=0;l80*n){r=a=e[0],i=o=e[1];for(var p=n;pa&&(a=s),l>o&&(o=l);c=0!==(c=Math.max(a-r,o-i))?1/c:0}return nc(d,h,n,r,i,c),h}function ec(e,t,n,r,i){var a,o;if(i===Oc(e,t,n,r)>0)for(a=t;a=t;a-=r)o=Ec(a,e[a],e[a+1],o);return o&&bc(o,o.next)&&(Cc(o),o=o.next),o}function tc(e,t){if(!e)return e;t||(t=e);var n,r=e;do{if(n=!1,r.steiner||!bc(r,r.next)&&0!==yc(r.prev,r,r.next))r=r.next;else{if(Cc(r),(r=t=r.prev)===r.next)break;n=!0}}while(n||r!==t);return t}function nc(e,t,n,r,i,a,o){if(e){!o&&a&&dc(e,r,i,a);for(var s,l,c=e;e.prev!==e.next;)if(s=e.prev,l=e.next,a?ic(e,r,i,a):rc(e))t.push(s.i/n),t.push(e.i/n),t.push(l.i/n),Cc(e),e=l.next,c=l.next;else if((e=l)===c){o?1===o?nc(e=ac(tc(e),t,n),t,n,r,i,a,2):2===o&&oc(e,t,n,r,i,a):nc(tc(e),t,n,r,i,a,1);break}}}function rc(e){var t=e.prev,n=e,r=e.next;if(yc(t,n,r)>=0)return!1;for(var i=e.next.next;i!==e.prev;){if(mc(t.x,t.y,n.x,n.y,r.x,r.y,i.x,i.y)&&yc(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function ic(e,t,n,r){var i=e.prev,a=e,o=e.next;if(yc(i,a,o)>=0)return!1;for(var s=i.xa.x?i.x>o.x?i.x:o.x:a.x>o.x?a.x:o.x,u=i.y>a.y?i.y>o.y?i.y:o.y:a.y>o.y?a.y:o.y,f=pc(s,l,t,n,r),d=pc(c,u,t,n,r),h=e.prevZ,p=e.nextZ;h&&h.z>=f&&p&&p.z<=d;){if(h!==e.prev&&h!==e.next&&mc(i.x,i.y,a.x,a.y,o.x,o.y,h.x,h.y)&&yc(h.prev,h,h.next)>=0)return!1;if(h=h.prevZ,p!==e.prev&&p!==e.next&&mc(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&yc(p.prev,p,p.next)>=0)return!1;p=p.nextZ}for(;h&&h.z>=f;){if(h!==e.prev&&h!==e.next&&mc(i.x,i.y,a.x,a.y,o.x,o.y,h.x,h.y)&&yc(h.prev,h,h.next)>=0)return!1;h=h.prevZ}for(;p&&p.z<=d;){if(p!==e.prev&&p!==e.next&&mc(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&yc(p.prev,p,p.next)>=0)return!1;p=p.nextZ}return!0}function ac(e,t,n){var r=e;do{var i=r.prev,a=r.next.next;!bc(i,a)&&xc(i,r,r.next,a)&&Sc(i,a)&&Sc(a,i)&&(t.push(i.i/n),t.push(r.i/n),t.push(a.i/n),Cc(r),Cc(r.next),r=e=a),r=r.next}while(r!==e);return tc(r)}function oc(e,t,n,r,i,a){var o=e;do{for(var s=o.next.next;s!==o.prev;){if(o.i!==s.i&&gc(o,s)){var l=Ac(o,s);return o=tc(o,o.next),l=tc(l,l.next),nc(o,t,n,r,i,a),void nc(l,t,n,r,i,a)}s=s.next}o=o.next}while(o!==e)}function sc(e,t,n,r){var i,a,o,s=[];for(i=0,a=t.length;i=r.next.y&&r.next.y!==r.y){var s=r.x+(a-r.y)*(r.next.x-r.x)/(r.next.y-r.y);if(s<=i&&s>o){if(o=s,s===i){if(a===r.y)return r;if(a===r.next.y)return r.next}n=r.x=r.x&&r.x>=u&&i!==r.x&&mc(an.x||r.x===n.x&&fc(n,r)))&&(n=r,d=l)),r=r.next}while(r!==c);return n}function fc(e,t){return yc(e.prev,e,t.prev)<0&&yc(t.next,e,e.next)<0}function dc(e,t,n,r){var i=e;do{null===i.z&&(i.z=pc(i.x,i.y,t,n,r)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next}while(i!==e);i.prevZ.nextZ=null,i.prevZ=null,hc(i)}function hc(e){var t,n,r,i,a,o,s,l,c=1;do{for(n=e,e=null,a=null,o=0;n;){for(o++,r=n,s=0,t=0;t0||l>0&&r;)0!==s&&(0===l||!r||n.z<=r.z)?(i=n,n=n.nextZ,s--):(i=r,r=r.nextZ,l--),a?a.nextZ=i:e=i,i.prevZ=a,a=i;n=r}a.nextZ=null,c*=2}while(o>1);return e}function pc(e,t,n,r,i){return(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*i)|e<<8))|e<<4))|e<<2))|e<<1))|(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*i)|t<<8))|t<<4))|t<<2))|t<<1))<<1}function vc(e){var t=e,n=e;do{(t.x=0&&(e-o)*(r-s)-(n-o)*(t-s)>=0&&(n-o)*(a-s)-(i-o)*(r-s)>=0}function gc(e,t){return e.next.i!==t.i&&e.prev.i!==t.i&&!kc(e,t)&&(Sc(e,t)&&Sc(t,e)&&Tc(e,t)&&(yc(e.prev,e,t.prev)||yc(e,t.prev,t))||bc(e,t)&&yc(e.prev,e,e.next)>0&&yc(t.prev,t,t.next)>0)}function yc(e,t,n){return(t.y-e.y)*(n.x-t.x)-(t.x-e.x)*(n.y-t.y)}function bc(e,t){return e.x===t.x&&e.y===t.y}function xc(e,t,n,r){var i=_c(yc(e,t,n)),a=_c(yc(e,t,r)),o=_c(yc(n,r,e)),s=_c(yc(n,r,t));return i!==a&&o!==s||!(0!==i||!wc(e,n,t))||!(0!==a||!wc(e,r,t))||!(0!==o||!wc(n,e,r))||!(0!==s||!wc(n,t,r))}function wc(e,t,n){return t.x<=Math.max(e.x,n.x)&&t.x>=Math.min(e.x,n.x)&&t.y<=Math.max(e.y,n.y)&&t.y>=Math.min(e.y,n.y)}function _c(e){return e>0?1:e<0?-1:0}function kc(e,t){var n=e;do{if(n.i!==e.i&&n.next.i!==e.i&&n.i!==t.i&&n.next.i!==t.i&&xc(n,n.next,e,t))return!0;n=n.next}while(n!==e);return!1}function Sc(e,t){return yc(e.prev,e,e.next)<0?yc(e,t,e.next)>=0&&yc(e,e.prev,t)>=0:yc(e,t,e.prev)<0||yc(e,e.next,t)<0}function Tc(e,t){var n=e,r=!1,i=(e.x+t.x)/2,a=(e.y+t.y)/2;do{n.y>a!==n.next.y>a&&n.next.y!==n.y&&i<(n.next.x-n.x)*(a-n.y)/(n.next.y-n.y)+n.x&&(r=!r),n=n.next}while(n!==e);return r}function Ac(e,t){var n=new Mc(e.i,e.x,e.y),r=new Mc(t.i,t.x,t.y),i=e.next,a=t.prev;return e.next=t,t.prev=e,n.next=i,i.prev=n,r.next=n,n.prev=r,a.next=r,r.prev=a,r}function Ec(e,t,n,r){var i=new Mc(e,t,n);return r?(i.next=r.next,i.prev=r,r.next.prev=i,r.next=i):(i.prev=i,i.next=i),i}function Cc(e){e.next.prev=e.prev,e.prev.next=e.next,e.prevZ&&(e.prevZ.nextZ=e.nextZ),e.nextZ&&(e.nextZ.prevZ=e.prevZ)}function Mc(e,t,n){this.i=e,this.x=t,this.y=n,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function Oc(e,t,n,r){for(var i=0,a=t,o=n-r;an;){if(r-n>600){var a=r-n+1,o=t-n+1,s=Math.log(a),l=.5*Math.exp(2*s/3),c=.5*Math.sqrt(s*l*(a-l)/a)*(o-a/2<0?-1:1);Lc(e,t,Math.max(n,Math.floor(t-o*l/a+c)),Math.min(r,Math.floor(t+(a-o)*l/a+c)),i)}var u=e[t],f=n,d=r;for(Ic(e,n,t),i(e[r],u)>0&&Ic(e,n,r);f0;)d--}0===i(e[n],u)?Ic(e,n,d):Ic(e,++d,r),d<=t&&(n=d+1),t<=d&&(r=d-1)}}function Ic(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function Rc(e,t){return et?1:0}function Dc(e,t){var n=e.length;if(n<=1)return[e];for(var r,i,a=[],o=0;o1)for(var l=0;l0&&(r+=e[i-1].length,n.holes.push(r))}return n},Xl.default=Jl;var jc=500,Bc=function(e){this.zoom=e.zoom,this.overscaling=e.overscaling,this.layers=e.layers,this.layerIds=this.layers.map((function(e){return e.id})),this.index=e.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new xo,this.indexArray=new Lo,this.indexArray2=new zo,this.programConfigurations=new Cs(Kl,e.layers,e.zoom),this.segments=new Qo,this.segments2=new Qo,this.stateDependentLayerIds=this.layers.filter((function(e){return e.isStateDependent()})).map((function(e){return e.id}))};Bc.prototype.populate=function(e,t,n){this.hasPattern=Nc("fill",this.layers,t);for(var r=this.layers[0].layout.get("fill-sort-key"),i=[],a=0,o=e;a>3}if(i--,1===r||2===r)o+=e.readSVarint(),s+=e.readSVarint(),1===r&&(t&&l.push(t),t=[]),t.push(new a(o,s));else{if(7!==r)throw new Error("unknown command "+r);t&&t.push(t[0].clone())}}return t&&l.push(t),l},qc.prototype.bbox=function(){var e=this._pbf;e.pos=this._geometry;for(var t=e.readVarint()+e.pos,n=1,r=0,i=0,a=0,o=1/0,s=-1/0,l=1/0,c=-1/0;e.pos>3}if(r--,1===n||2===n)(i+=e.readSVarint())s&&(s=i),(a+=e.readSVarint())c&&(c=a);else if(7!==n)throw new Error("unknown command "+n)}return[o,l,s,c]},qc.prototype.toGeoJSON=function(e,t,n){var r,i,a=this.extent*Math.pow(2,n),o=this.extent*e,s=this.extent*t,l=this.loadGeometry(),c=qc.types[this.type];function u(e){for(var t=0;t>3;t=1===r?e.readString():2===r?e.readFloat():3===r?e.readDouble():4===r?e.readVarint64():5===r?e.readVarint():6===r?e.readSVarint():7===r?e.readBoolean():null}return t}function tu(e,t){this.layers=e.readFields(nu,{},t)}function nu(e,t,n){if(3===e){var r=new Xc(n,n.readVarint()+n.pos);r.length&&(t[r.name]=r)}}Jc.prototype.feature=function(e){if(e<0||e>=this._features.length)throw new Error("feature index out of bounds");this._pbf.pos=this._features[e];var t=this._pbf.readVarint()+this._pbf.pos;return new Wc(this._pbf,t,this.extent,this._keys,this._values)};var ru={VectorTile:tu,VectorTileFeature:Wc,VectorTileLayer:Xc},iu=ru.VectorTileFeature.types,au=500,ou=Math.pow(2,13);function su(e,t,n,r,i,a,o,s){e.emplaceBack(t,n,2*Math.floor(r*ou)+o,i*ou*2,a*ou*2,Math.round(s))}var lu=function(e){this.zoom=e.zoom,this.overscaling=e.overscaling,this.layers=e.layers,this.layerIds=this.layers.map((function(e){return e.id})),this.index=e.index,this.hasPattern=!1,this.layoutVertexArray=new _o,this.indexArray=new Lo,this.programConfigurations=new Cs(Vc,e.layers,e.zoom),this.segments=new Qo,this.stateDependentLayerIds=this.layers.filter((function(e){return e.isStateDependent()})).map((function(e){return e.id}))};function cu(e,t){return e.x===t.x&&(e.x<0||e.x>Ls)||e.y===t.y&&(e.y<0||e.y>Ls)}function uu(e){return e.every((function(e){return e.x<0}))||e.every((function(e){return e.x>Ls}))||e.every((function(e){return e.y<0}))||e.every((function(e){return e.y>Ls}))}lu.prototype.populate=function(e,t,n){this.features=[],this.hasPattern=Nc("fill-extrusion",this.layers,t);for(var r=0,i=e;r=1){var y=p[m-1];if(!cu(g,y)){f.vertexLength+4>Qo.MAX_VERTEX_ARRAY_LENGTH&&(f=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray));var b=g.sub(y)._perp()._unit(),x=y.dist(g);v+x>32768&&(v=0),su(this.layoutVertexArray,g.x,g.y,b.x,b.y,0,0,v),su(this.layoutVertexArray,g.x,g.y,b.x,b.y,0,1,v),v+=x,su(this.layoutVertexArray,y.x,y.y,b.x,b.y,0,0,v),su(this.layoutVertexArray,y.x,y.y,b.x,b.y,0,1,v);var w=f.vertexLength;this.indexArray.emplaceBack(w,w+2,w+1),this.indexArray.emplaceBack(w+1,w+2,w+3),f.vertexLength+=4,f.primitiveLength+=2}}}}if(f.vertexLength+l>Qo.MAX_VERTEX_ARRAY_LENGTH&&(f=this.segments.prepareSegment(l,this.layoutVertexArray,this.indexArray)),"Polygon"===iu[e.type]){for(var _=[],k=[],S=f.vertexLength,T=0,A=s;T=2&&e[l-1].equals(e[l-2]);)l--;for(var c=0;c0;if(k&&g>c){var T=u.dist(h);if(T>2*f){var A=u.sub(u.sub(h)._mult(f/T)._round());this.updateDistance(h,A),this.addCurrentVertex(A,v,0,0,d),h=A}}var E=h&&p,C=E?n:s?"butt":r;if(E&&"round"===C&&(wi&&(C="bevel"),"bevel"===C&&(w>2&&(C="flipbevel"),w100)y=m.mult(-1);else{var M=w*v.add(m).mag()/v.sub(m).mag();y._perp()._mult(M*(S?-1:1))}this.addCurrentVertex(u,y,0,0,d),this.addCurrentVertex(u,y.mult(-1),0,0,d)}else if("bevel"===C||"fakeround"===C){var O=-Math.sqrt(w*w-1),P=S?O:0,L=S?0:O;if(h&&this.addCurrentVertex(u,v,P,L,d),"fakeround"===C)for(var I=Math.round(180*_/Math.PI/ku),R=1;R2*f){var B=u.add(p.sub(u)._mult(f/j)._round());this.updateDistance(u,B),this.addCurrentVertex(B,m,0,0,d),u=B}}}}},Eu.prototype.addCurrentVertex=function(e,t,n,r,i,a){void 0===a&&(a=!1);var o=t.x+t.y*n,s=t.y-t.x*n,l=-t.x+t.y*r,c=-t.y-t.x*r;this.addHalfVertex(e,o,s,a,!1,n,i),this.addHalfVertex(e,l,c,a,!0,-r,i),this.distance>Au/2&&0===this.totalDistance&&(this.distance=0,this.addCurrentVertex(e,t,n,r,i,a))},Eu.prototype.addHalfVertex=function(e,t,n,r,i,a,o){var s=e.x,l=e.y,c=this.scaledDistance*Tu;this.layoutVertexArray.emplaceBack((s<<1)+(r?1:0),(l<<1)+(i?1:0),Math.round(xu*t)+128,Math.round(xu*n)+128,1+(0===a?0:a<0?-1:1)|(63&c)<<2,c>>6);var u=o.vertexLength++;this.e1>=0&&this.e2>=0&&(this.indexArray.emplaceBack(this.e1,this.e2,u),o.primitiveLength++),i?this.e2=u:this.e1=u},Eu.prototype.updateScaledDistance=function(){this.scaledDistance=this.totalDistance>0?(this.clipStart+(this.clipEnd-this.clipStart)*this.distance/this.totalDistance)*(Au-1):this.distance},Eu.prototype.updateDistance=function(e,t){this.distance+=e.dist(t),this.updateScaledDistance()},va("LineBucket",Eu,{omit:["layers","patternFeatures"]});var Cu=new lo({"line-cap":new ro(lt.layout_line["line-cap"]),"line-join":new io(lt.layout_line["line-join"]),"line-miter-limit":new ro(lt.layout_line["line-miter-limit"]),"line-round-limit":new ro(lt.layout_line["line-round-limit"]),"line-sort-key":new io(lt.layout_line["line-sort-key"])}),Mu={paint:new lo({"line-opacity":new io(lt.paint_line["line-opacity"]),"line-color":new io(lt.paint_line["line-color"]),"line-translate":new ro(lt.paint_line["line-translate"]),"line-translate-anchor":new ro(lt.paint_line["line-translate-anchor"]),"line-width":new io(lt.paint_line["line-width"]),"line-gap-width":new io(lt.paint_line["line-gap-width"]),"line-offset":new io(lt.paint_line["line-offset"]),"line-blur":new io(lt.paint_line["line-blur"]),"line-dasharray":new oo(lt.paint_line["line-dasharray"]),"line-pattern":new ao(lt.paint_line["line-pattern"]),"line-gradient":new so(lt.paint_line["line-gradient"])}),layout:Cu},Ou=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.possiblyEvaluate=function(t,n){return n=new Za(Math.floor(n.zoom),{now:n.now,fadeDuration:n.fadeDuration,zoomHistory:n.zoomHistory,transition:n.transition}),e.prototype.possiblyEvaluate.call(this,t,n)},t.prototype.evaluate=function(t,n,r,i){return n=m({},n,{zoom:Math.floor(n.zoom)}),e.prototype.evaluate.call(this,t,n,r,i)},t}(io),Pu=new Ou(Mu.paint.properties["line-width"].specification);Pu.useIntegerZoom=!0;var Lu=function(e){function t(t){e.call(this,t,Mu)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype._handleSpecialPaintPropertyUpdate=function(e){"line-gradient"===e&&this._updateGradient()},t.prototype._updateGradient=function(){var e=this._transitionablePaint._values["line-gradient"].value.expression;this.gradient=ql(e,"lineProgress"),this.gradientTexture=null},t.prototype.recalculate=function(t,n){e.prototype.recalculate.call(this,t,n),this.paint._values["line-floorwidth"]=Pu.possiblyEvaluate(this._transitioningPaint._values["line-width"].value,t)},t.prototype.createBucket=function(e){return new Eu(e)},t.prototype.queryRadius=function(e){var t=e,n=Iu(Xs("line-width",this,t),Xs("line-gap-width",this,t)),r=Xs("line-offset",this,t);return n/2+Math.abs(r)+Js(this.paint.get("line-translate"))},t.prototype.queryIntersectsFeature=function(e,t,n,r,i,a,o){var s=Qs(e,this.paint.get("line-translate"),this.paint.get("line-translate-anchor"),a.angle,o),l=o/2*Iu(this.paint.get("line-width").evaluate(t,n),this.paint.get("line-gap-width").evaluate(t,n)),c=this.paint.get("line-offset").evaluate(t,n);return c&&(r=Ru(r,c*o)),Us(s,r,l)},t.prototype.isTileClipped=function(){return!0},t}(uo);function Iu(e,t){return t>0?t+2*e:e}function Ru(e,t){for(var n=[],r=new a(0,0),i=0;i":"\ufe40","?":"\ufe16","@":"\uff20","[":"\ufe47","\\":"\uff3c","]":"\ufe48","^":"\uff3e",_:"\ufe33","`":"\uff40","{":"\ufe37","|":"\u2015","}":"\ufe38","~":"\uff5e","\xa2":"\uffe0","\xa3":"\uffe1","\xa5":"\uffe5","\xa6":"\uffe4","\xac":"\uffe2","\xaf":"\uffe3","\u2013":"\ufe32","\u2014":"\ufe31","\u2018":"\ufe43","\u2019":"\ufe44","\u201c":"\ufe41","\u201d":"\ufe42","\u2026":"\ufe19","\u2027":"\u30fb","\u20a9":"\uffe6","\u3001":"\ufe11","\u3002":"\ufe12","\u3008":"\ufe3f","\u3009":"\ufe40","\u300a":"\ufe3d","\u300b":"\ufe3e","\u300c":"\ufe41","\u300d":"\ufe42","\u300e":"\ufe43","\u300f":"\ufe44","\u3010":"\ufe3b","\u3011":"\ufe3c","\u3014":"\ufe39","\u3015":"\ufe3a","\u3016":"\ufe17","\u3017":"\ufe18","\uff01":"\ufe15","\uff08":"\ufe35","\uff09":"\ufe36","\uff0c":"\ufe10","\uff0d":"\ufe32","\uff0e":"\u30fb","\uff1a":"\ufe13","\uff1b":"\ufe14","\uff1c":"\ufe3f","\uff1e":"\ufe40","\uff1f":"\ufe16","\uff3b":"\ufe47","\uff3d":"\ufe48","\uff3f":"\ufe33","\uff5b":"\ufe37","\uff5c":"\u2015","\uff5d":"\ufe38","\uff5f":"\ufe35","\uff60":"\ufe36","\uff61":"\ufe12","\uff62":"\ufe41","\uff63":"\ufe42"};function Vu(e){for(var t="",n=0;n>1,u=-7,f=n?i-1:0,d=n?-1:1,h=e[t+f];for(f+=d,a=h&(1<<-u)-1,h>>=-u,u+=s;u>0;a=256*a+e[t+f],f+=d,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=r;u>0;o=256*o+e[t+f],f+=d,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(h?-1:1);o+=Math.pow(2,r),a-=c}return(h?-1:1)*o*Math.pow(2,a-r)},write:function(e,t,n,r,i,a){var o,s,l,c=8*a-i-1,u=(1<>1,d=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,h=r?0:a-1,p=r?1:-1,v=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,o=u):(o=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-o))<1&&(o--,l*=2),(t+=o+f>=1?d/l:d*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(t*l-1)*Math.pow(2,i),o+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;e[n+h]=255&s,h+=p,s/=256,i-=8);for(o=o<0;e[n+h]=255&o,h+=p,o/=256,c-=8);e[n+h-p]|=128*v}},Gu=Zu;function Zu(e){this.buf=ArrayBuffer.isView&&ArrayBuffer.isView(e)?e:new Uint8Array(e||0),this.pos=0,this.type=0,this.length=this.buf.length}Zu.Varint=0,Zu.Fixed64=1,Zu.Bytes=2,Zu.Fixed32=5;var Yu=4294967296,Ku=1/Yu,Xu=12,Ju="undefined"===typeof TextDecoder?null:new TextDecoder("utf8");function Qu(e,t,n){var r,i,a=n.buf;if(r=(112&(i=a[n.pos++]))>>4,i<128)return tf(e,r,t);if(r|=(127&(i=a[n.pos++]))<<3,i<128)return tf(e,r,t);if(r|=(127&(i=a[n.pos++]))<<10,i<128)return tf(e,r,t);if(r|=(127&(i=a[n.pos++]))<<17,i<128)return tf(e,r,t);if(r|=(127&(i=a[n.pos++]))<<24,i<128)return tf(e,r,t);if(r|=(1&(i=a[n.pos++]))<<31,i<128)return tf(e,r,t);throw new Error("Expected varint not more than 10 bytes")}function ef(e){return e.type===Zu.Bytes?e.readVarint()+e.pos:e.pos+1}function tf(e,t,n){return n?4294967296*t+(e>>>0):4294967296*(t>>>0)+(e>>>0)}function nf(e,t){var n,r;if(e>=0?(n=e%4294967296|0,r=e/4294967296|0):(r=~(-e/4294967296),4294967295^(n=~(-e%4294967296))?n=n+1|0:(n=0,r=r+1|0)),e>=0x10000000000000000||e<-0x10000000000000000)throw new Error("Given varint doesn't fit into 10 bytes");t.realloc(10),rf(n,r,t),af(r,t)}function rf(e,t,n){n.buf[n.pos++]=127&e|128,e>>>=7,n.buf[n.pos++]=127&e|128,e>>>=7,n.buf[n.pos++]=127&e|128,e>>>=7,n.buf[n.pos++]=127&e|128,e>>>=7,n.buf[n.pos]=127&e}function af(e,t){var n=(7&e)<<4;t.buf[t.pos++]|=n|((e>>>=3)?128:0),e&&(t.buf[t.pos++]=127&e|((e>>>=7)?128:0),e&&(t.buf[t.pos++]=127&e|((e>>>=7)?128:0),e&&(t.buf[t.pos++]=127&e|((e>>>=7)?128:0),e&&(t.buf[t.pos++]=127&e|((e>>>=7)?128:0),e&&(t.buf[t.pos++]=127&e)))))}function of(e,t,n){var r=t<=16383?1:t<=2097151?2:t<=268435455?3:Math.floor(Math.log(t)/(7*Math.LN2));n.realloc(r);for(var i=n.pos-1;i>=e;i--)n.buf[i+r]=n.buf[i]}function sf(e,t){for(var n=0;n>>8,e[n+2]=t>>>16,e[n+3]=t>>>24}function yf(e,t){return(e[t]|e[t+1]<<8|e[t+2]<<16)+(e[t+3]<<24)}function bf(e,t,n){for(var r="",i=t;i239?4:l>223?3:l>191?2:1;if(i+u>n)break;1===u?l<128&&(c=l):2===u?128===(192&(a=e[i+1]))&&(c=(31&l)<<6|63&a)<=127&&(c=null):3===u?(a=e[i+1],o=e[i+2],128===(192&a)&&128===(192&o)&&((c=(15&l)<<12|(63&a)<<6|63&o)<=2047||c>=55296&&c<=57343)&&(c=null)):4===u&&(a=e[i+1],o=e[i+2],s=e[i+3],128===(192&a)&&128===(192&o)&&128===(192&s)&&((c=(15&l)<<18|(63&a)<<12|(63&o)<<6|63&s)<=65535||c>=1114112)&&(c=null)),null===c?(c=65533,u=1):c>65535&&(c-=65536,r+=String.fromCharCode(c>>>10&1023|55296),c=56320|1023&c),r+=String.fromCharCode(c),i+=u}return r}function xf(e,t,n){return Ju.decode(e.subarray(t,n))}function wf(e,t,n){for(var r,i,a=0;a55295&&r<57344){if(!i){r>56319||a+1===t.length?(e[n++]=239,e[n++]=191,e[n++]=189):i=r;continue}if(r<56320){e[n++]=239,e[n++]=191,e[n++]=189,i=r;continue}r=i-55296<<10|r-56320|65536,i=null}else i&&(e[n++]=239,e[n++]=191,e[n++]=189,i=null);r<128?e[n++]=r:(r<2048?e[n++]=r>>6|192:(r<65536?e[n++]=r>>12|224:(e[n++]=r>>18|240,e[n++]=r>>12&63|128),e[n++]=r>>6&63|128),e[n++]=63&r|128)}return n}Zu.prototype={destroy:function(){this.buf=null},readFields:function(e,t,n){for(n=n||this.length;this.pos>3,a=this.pos;this.type=7&r,e(i,t,this),this.pos===a&&this.skip(r)}return t},readMessage:function(e,t){return this.readFields(e,t,this.readVarint()+this.pos)},readFixed32:function(){var e=mf(this.buf,this.pos);return this.pos+=4,e},readSFixed32:function(){var e=yf(this.buf,this.pos);return this.pos+=4,e},readFixed64:function(){var e=mf(this.buf,this.pos)+mf(this.buf,this.pos+4)*Yu;return this.pos+=8,e},readSFixed64:function(){var e=mf(this.buf,this.pos)+yf(this.buf,this.pos+4)*Yu;return this.pos+=8,e},readFloat:function(){var e=qu.read(this.buf,this.pos,!0,23,4);return this.pos+=4,e},readDouble:function(){var e=qu.read(this.buf,this.pos,!0,52,8);return this.pos+=8,e},readVarint:function(e){var t,n,r=this.buf;return t=127&(n=r[this.pos++]),n<128?t:(t|=(127&(n=r[this.pos++]))<<7,n<128?t:(t|=(127&(n=r[this.pos++]))<<14,n<128?t:(t|=(127&(n=r[this.pos++]))<<21,n<128?t:Qu(t|=(15&(n=r[this.pos]))<<28,e,this))))},readVarint64:function(){return this.readVarint(!0)},readSVarint:function(){var e=this.readVarint();return e%2===1?(e+1)/-2:e/2},readBoolean:function(){return Boolean(this.readVarint())},readString:function(){var e=this.readVarint()+this.pos,t=this.pos;return this.pos=e,e-t>=Xu&&Ju?xf(this.buf,t,e):bf(this.buf,t,e)},readBytes:function(){var e=this.readVarint()+this.pos,t=this.buf.subarray(this.pos,e);return this.pos=e,t},readPackedVarint:function(e,t){if(this.type!==Zu.Bytes)return e.push(this.readVarint(t));var n=ef(this);for(e=e||[];this.pos127;);else if(t===Zu.Bytes)this.pos=this.readVarint()+this.pos;else if(t===Zu.Fixed32)this.pos+=4;else{if(t!==Zu.Fixed64)throw new Error("Unimplemented type: "+t);this.pos+=8}},writeTag:function(e,t){this.writeVarint(e<<3|t)},realloc:function(e){for(var t=this.length||16;t268435455||e<0?nf(e,this):(this.realloc(4),this.buf[this.pos++]=127&e|(e>127?128:0),e<=127||(this.buf[this.pos++]=127&(e>>>=7)|(e>127?128:0),e<=127||(this.buf[this.pos++]=127&(e>>>=7)|(e>127?128:0),e<=127||(this.buf[this.pos++]=e>>>7&127))))},writeSVarint:function(e){this.writeVarint(e<0?2*-e-1:2*e)},writeBoolean:function(e){this.writeVarint(Boolean(e))},writeString:function(e){e=String(e),this.realloc(4*e.length),this.pos++;var t=this.pos;this.pos=wf(this.buf,e,this.pos);var n=this.pos-t;n>=128&&of(t,n,this),this.pos=t-1,this.writeVarint(n),this.pos+=n},writeFloat:function(e){this.realloc(4),qu.write(this.buf,e,this.pos,!0,23,4),this.pos+=4},writeDouble:function(e){this.realloc(8),qu.write(this.buf,e,this.pos,!0,52,8),this.pos+=8},writeBytes:function(e){var t=e.length;this.writeVarint(t),this.realloc(t);for(var n=0;n=128&&of(n,r,this),this.pos=n-1,this.writeVarint(r),this.pos+=r},writeMessage:function(e,t,n){this.writeTag(e,Zu.Bytes),this.writeRawMessage(t,n)},writePackedVarint:function(e,t){t.length&&this.writeMessage(e,sf,t)},writePackedSVarint:function(e,t){t.length&&this.writeMessage(e,lf,t)},writePackedBoolean:function(e,t){t.length&&this.writeMessage(e,ff,t)},writePackedFloat:function(e,t){t.length&&this.writeMessage(e,cf,t)},writePackedDouble:function(e,t){t.length&&this.writeMessage(e,uf,t)},writePackedFixed32:function(e,t){t.length&&this.writeMessage(e,df,t)},writePackedSFixed32:function(e,t){t.length&&this.writeMessage(e,hf,t)},writePackedFixed64:function(e,t){t.length&&this.writeMessage(e,pf,t)},writePackedSFixed64:function(e,t){t.length&&this.writeMessage(e,vf,t)},writeBytesField:function(e,t){this.writeTag(e,Zu.Bytes),this.writeBytes(t)},writeFixed32Field:function(e,t){this.writeTag(e,Zu.Fixed32),this.writeFixed32(t)},writeSFixed32Field:function(e,t){this.writeTag(e,Zu.Fixed32),this.writeSFixed32(t)},writeFixed64Field:function(e,t){this.writeTag(e,Zu.Fixed64),this.writeFixed64(t)},writeSFixed64Field:function(e,t){this.writeTag(e,Zu.Fixed64),this.writeSFixed64(t)},writeVarintField:function(e,t){this.writeTag(e,Zu.Varint),this.writeVarint(t)},writeSVarintField:function(e,t){this.writeTag(e,Zu.Varint),this.writeSVarint(t)},writeStringField:function(e,t){this.writeTag(e,Zu.Bytes),this.writeString(t)},writeFloatField:function(e,t){this.writeTag(e,Zu.Fixed32),this.writeFloat(t)},writeDoubleField:function(e,t){this.writeTag(e,Zu.Fixed64),this.writeDouble(t)},writeBooleanField:function(e,t){this.writeVarintField(e,Boolean(t))}};var _f=3;function kf(e,t,n){1===e&&n.readMessage(Sf,t)}function Sf(e,t,n){if(3===e){var r=n.readMessage(Tf,{}),i=r.id,a=r.bitmap,o=r.width,s=r.height,l=r.left,c=r.top,u=r.advance;t.push({id:i,bitmap:new $l({width:o+2*_f,height:s+2*_f},a),metrics:{width:o,height:s,left:l,top:c,advance:u}})}}function Tf(e,t,n){1===e?t.id=n.readVarint():2===e?t.bitmap=n.readBytes():3===e?t.width=n.readVarint():4===e?t.height=n.readVarint():5===e?t.left=n.readSVarint():6===e?t.top=n.readSVarint():7===e&&(t.advance=n.readVarint())}function Af(e){return new Gu(e).readFields(kf,[])}var Ef=_f;function Cf(e){for(var t=0,n=0,r=0,i=e;r=0;d--){var h=o[d];if(!(f.w>h.w||f.h>h.h)){if(f.x=h.x,f.y=h.y,l=Math.max(l,f.y+f.h),s=Math.max(s,f.x+f.w),f.w===h.w&&f.h===h.h){var p=o.pop();d=0&&r>=e&&Hf[this.text.charCodeAt(r)];r--)n--;this.text=this.text.substring(e,n),this.sectionIndex=this.sectionIndex.slice(e,n)},jf.prototype.substring=function(e,t){var n=new jf;return n.text=this.text.substring(e,t),n.sectionIndex=this.sectionIndex.slice(e,t),n.sections=this.sections,n},jf.prototype.toString=function(){return this.text},jf.prototype.getMaxScale=function(){var e=this;return this.sectionIndex.reduce((function(t,n){return Math.max(t,e.sections[n].scale)}),0)},jf.prototype.addTextSection=function(e,t){this.text+=e.text,this.sections.push(zf.forText(e.scale,e.fontStack||t));for(var n=this.sections.length-1,r=0;r=Nf?null:++this.imageSectionID:(this.imageSectionID=Ff,this.imageSectionID)};var Hf={9:!0,10:!0,11:!0,12:!0,13:!0,32:!0},$f={};function Vf(e,t,n,r,i,a){if(t.imageName){var o=r[t.imageName];return o?o.displaySize[0]*t.scale*Wu/a+i:0}var s=n[t.fontStack],l=s&&s[e];return l?l.metrics.advance*t.scale+i:0}function Wf(e,t,n,r,i,a){for(var o=0,s=0;s=0,u=0,f=0;f0&&z>T&&(T=z)}else{var j=n[E.fontStack],B=j&&j[M];if(B&&B.rect)L=B.rect,P=B.metrics;else{var U=t[E.fontStack],H=U&&U[M];if(!H)continue;P=H.metrics}O=(w-E.scale)*Wu}D?(e.verticalizable=!0,S.push({glyph:M,imageName:I,x:d,y:h+O,vertical:D,scale:E.scale,fontStack:E.fontStack,sectionIndex:C,metrics:P,rect:L}),d+=R*E.scale+c):(S.push({glyph:M,imageName:I,x:d,y:h+O,vertical:D,scale:E.scale,fontStack:E.fontStack,sectionIndex:C,metrics:P,rect:L}),d+=P.advance*E.scale+c)}if(0!==S.length){var $=d-c;p=Math.max($,p),Qf(S,0,S.length-1,m,T)}d=0;var V=a*w+T;k.lineOffset=Math.max(T,_),h+=V,v=Math.max(V,v),++g}else h+=a,++g}var W=h-Rf,q=Xf(o),G=q.horizontalAlign,Z=q.verticalAlign;ed(e.positionedLines,m,G,Z,p,v,a,W,i.length),e.top+=-Z*W,e.bottom=e.top+W,e.left+=-G*p,e.right=e.left+p}function Qf(e,t,n,r,i){if(r||i)for(var a=e[n],o=a.metrics.advance*a.scale,s=(e[n].x+o)*r,l=t;l<=n;l++)e[l].x-=s,e[l].y+=i}function ed(e,t,n,r,i,a,o,s,l){var c=(t-n)*i,u=0;u=a!==o?-s*r-Rf:(-r*l+.5)*o;for(var f=0,d=e;f-n/2;){if(--o<0)return!1;s-=e[o].dist(a),a=e[o]}s+=e[o].dist(e[o+1]),o++;for(var l=[],c=0;sr;)c-=l.shift().angleDelta;if(c>i)return!1;o++,s+=f.dist(d)}return!0}function ud(e){for(var t=0,n=0;nc){var p=(c-l)/h,v=Nn(f.x,d.x,p),m=Nn(f.y,d.y,p),g=new rd(v,m,d.angleTo(f),u);return g._round(),!o||cd(e,g,s,o,t)?g:void 0}l+=h}}function pd(e,t,n,r,i,a,o,s,l){var c=fd(r,a,o),u=dd(r,i),f=u*o,d=0===e[0].x||e[0].x===l||0===e[0].y||e[0].y===l;return t-f=0&&x=0&&w=0&&d+c<=u){var _=new rd(x,w,y,p);_._round(),r&&!cd(e,_,a,r,i)||h.push(_)}}f+=g}return s||h.length||o||(h=vd(e,f/2,n,r,i,a,o,!0,l)),h}function md(e,t,n,r,i){for(var o=[],s=0;s=r&&d.x>=r||(f.x>=r?f=new a(r,f.y+(d.y-f.y)*((r-f.x)/(d.x-f.x)))._round():d.x>=r&&(d=new a(r,f.y+(d.y-f.y)*((r-f.x)/(d.x-f.x)))._round()),f.y>=i&&d.y>=i||(f.y>=i?f=new a(f.x+(d.x-f.x)*((i-f.y)/(d.y-f.y)),i)._round():d.y>=i&&(d=new a(f.x+(d.x-f.x)*((i-f.y)/(d.y-f.y)),i)._round()),c&&f.equals(c[c.length-1])||(c=[f],o.push(c)),c.push(d)))))}return o}var gd=Mf;function yd(e,t,n,r){var i=[],o=e.image,s=o.pixelRatio,l=o.paddedRect.w-2*gd,c=o.paddedRect.h-2*gd,u=e.right-e.left,f=e.bottom-e.top,d=o.stretchX||[[0,l]],h=o.stretchY||[[0,c]],p=function(e,t){return e+t[1]-t[0]},v=d.reduce(p,0),m=h.reduce(p,0),g=l-v,y=c-m,b=0,x=v,w=0,_=m,k=0,S=g,T=0,A=y;if(o.content&&r){var E=o.content;b=bd(d,0,E[0]),w=bd(h,0,E[1]),x=bd(d,E[0],E[2]),_=bd(h,E[1],E[3]),k=E[0]-b,T=E[1]-w,S=E[2]-E[0]-x,A=E[3]-E[1]-_}var C=function(r,i,l,c){var d=wd(r.stretch-b,x,u,e.left),h=_d(r.fixed-k,S,r.stretch,v),p=wd(i.stretch-w,_,f,e.top),g=_d(i.fixed-T,A,i.stretch,m),y=wd(l.stretch-b,x,u,e.left),E=_d(l.fixed-k,S,l.stretch,v),C=wd(c.stretch-w,_,f,e.top),M=_d(c.fixed-T,A,c.stretch,m),O=new a(d,p),P=new a(y,p),L=new a(y,C),I=new a(d,C),R=new a(h/s,g/s),D=new a(E/s,M/s),F=t*Math.PI/180;if(F){var N=Math.sin(F),z=Math.cos(F),j=[z,-N,N,z];O._matMult(j),P._matMult(j),I._matMult(j),L._matMult(j)}var B=r.stretch+r.fixed,U=l.stretch+l.fixed,H=i.stretch+i.fixed,$=c.stretch+c.fixed;return{tl:O,tr:P,bl:I,br:L,tex:{x:o.paddedRect.x+gd+B,y:o.paddedRect.y+gd+H,w:U-B,h:$-H},writingMode:void 0,glyphOffset:[0,0],sectionIndex:0,pixelOffsetTL:R,pixelOffsetBR:D,minFontScaleX:S/s/u,minFontScaleY:A/s/f,isSDF:n}};if(r&&(o.stretchX||o.stretchY))for(var M=xd(d,g,v),O=xd(h,y,m),P=0;P0&&(p=Math.max(10,p),this.circleDiameter=p)}else{var v=o.top*s-l,m=o.bottom*s+l,g=o.left*s-l,y=o.right*s+l,b=o.collisionPadding;if(b&&(g-=b[0]*s,v-=b[1]*s,y+=b[2]*s,m+=b[3]*s),u){var x=new a(g,v),w=new a(y,v),_=new a(g,m),k=new a(y,m),S=u*Math.PI/180;x._rotate(S),w._rotate(S),_._rotate(S),k._rotate(S),g=Math.min(x.x,w.x,_.x,k.x),y=Math.max(x.x,w.x,_.x,k.x),v=Math.min(x.y,w.y,_.y,k.y),m=Math.max(x.y,w.y,_.y,k.y)}e.emplaceBack(t.x,t.y,g,v,y,m,n,r,i)}this.boxEndIndex=e.length},Td=function(e,t){if(void 0===e&&(e=[]),void 0===t&&(t=Ad),this.data=e,this.length=this.data.length,this.compare=t,this.length>0)for(var n=(this.length>>1)-1;n>=0;n--)this._down(n)};function Ad(e,t){return et?1:0}function Ed(e,t,n){void 0===t&&(t=1),void 0===n&&(n=!1);for(var r=1/0,i=1/0,o=-1/0,s=-1/0,l=e[0],c=0;co)&&(o=u.x),(!c||u.y>s)&&(s=u.y)}var f=o-r,d=s-i,h=Math.min(f,d),p=h/2,v=new Td([],Cd);if(0===h)return new a(r,i);for(var m=r;my.d||!y.d)&&(y=x,n&&console.log("found best %d after %d probes",Math.round(1e4*x.d)/1e4,b)),x.max-y.d<=t||(p=x.h/2,v.push(new Md(x.p.x-p,x.p.y-p,p,e)),v.push(new Md(x.p.x+p,x.p.y-p,p,e)),v.push(new Md(x.p.x-p,x.p.y+p,p,e)),v.push(new Md(x.p.x+p,x.p.y+p,p,e)),b+=4)}return n&&(console.log("num probes: "+b),console.log("best distance: "+y.d)),y.p}function Cd(e,t){return t.max-e.max}function Md(e,t,n,r){this.p=new a(e,t),this.h=n,this.d=Od(this.p,r),this.max=this.d+this.h*Math.SQRT2}function Od(e,t){for(var n=!1,r=1/0,i=0;ie.y!==u.y>e.y&&e.x<(u.x-c.x)*(e.y-c.y)/(u.y-c.y)+c.x&&(n=!n),r=Math.min(r,qs(e,c,u))}return(n?1:-1)*Math.sqrt(r)}function Pd(e){for(var t=0,n=0,r=0,i=e[0],a=0,o=i.length,s=o-1;a0&&(this.data[0]=t,this._down(0)),e}},Td.prototype.peek=function(){return this.data[0]},Td.prototype._up=function(e){for(var t=this,n=t.data,r=t.compare,i=n[e];e>0;){var a=e-1>>1,o=n[a];if(r(i,o)>=0)break;n[e]=o,e=a}n[e]=i},Td.prototype._down=function(e){for(var t=this,n=t.data,r=t.compare,i=this.length>>1,a=n[e];e=0)break;n[e]=s,e=o}n[e]=a};var Ld=7,Id=Number.POSITIVE_INFINITY;function Rd(e,t){function n(e,t){var n=0,r=0;t<0&&(t=0);var i=t/Math.sqrt(2);switch(e){case"top-right":case"top-left":r=i-Ld;break;case"bottom-right":case"bottom-left":r=-i+Ld;break;case"bottom":r=-t+Ld;break;case"top":r=t-Ld}switch(e){case"top-right":case"bottom-right":n=-i;break;case"top-left":case"bottom-left":n=i;break;case"left":n=t;break;case"right":n=-t}return[n,r]}function r(e,t,n){var r=0,i=0;switch(t=Math.abs(t),n=Math.abs(n),e){case"top-right":case"top-left":case"top":i=n-Ld;break;case"bottom-right":case"bottom-left":case"bottom":i=-n+Ld}switch(e){case"top-right":case"bottom-right":case"right":r=-t;break;case"top-left":case"bottom-left":case"left":r=t}return[r,i]}return t[1]!==Id?r(e,t[0],t[1]):n(e,t[0])}function Dd(e,t,n,r,i,a,o){e.createArrays();var s=512*e.overscaling;e.tilePixelRatio=Ls/s,e.compareText={},e.iconsNeedLinear=!1;var l=e.layers[0].layout,c=e.layers[0]._unevaluatedLayout._values,u={};if("composite"===e.textSizeData.kind){var f=e.textSizeData,d=f.minZoom,h=f.maxZoom;u.compositeTextSizes=[c["text-size"].possiblyEvaluate(new Za(d),o),c["text-size"].possiblyEvaluate(new Za(h),o)]}if("composite"===e.iconSizeData.kind){var p=e.iconSizeData,v=p.minZoom,m=p.maxZoom;u.compositeIconSizes=[c["icon-size"].possiblyEvaluate(new Za(v),o),c["icon-size"].possiblyEvaluate(new Za(m),o)]}u.layoutTextSize=c["text-size"].possiblyEvaluate(new Za(e.zoom+1),o),u.layoutIconSize=c["icon-size"].possiblyEvaluate(new Za(e.zoom+1),o),u.textMaxSize=c["text-size"].possiblyEvaluate(new Za(18));for(var g=l.get("text-line-height")*Wu,y="map"===l.get("text-rotation-alignment")&&"point"!==l.get("symbol-placement"),b=l.get("text-keep-upright"),x=l.get("text-size"),w=function(){var a=k[_],s=l.get("text-font").evaluate(a,{},o).join(","),c=x.evaluate(a,{},o),f=u.layoutTextSize.evaluate(a,{},o),d=u.layoutIconSize.evaluate(a,{},o),h={horizontal:{},vertical:void 0},p=a.text,v=[0,0];if(p){var m=p.toString(),w=l.get("text-letter-spacing").evaluate(a,{},o)*Wu,S=Sa(m)?w:0,T=l.get("text-anchor").evaluate(a,{},o),A=l.get("text-variable-anchor");if(!A){var E=l.get("text-radial-offset").evaluate(a,{},o);v=E?Rd(T,[E*Wu,Id]):l.get("text-offset").evaluate(a,{},o).map((function(e){return e*Wu}))}var C=y?"center":l.get("text-justify").evaluate(a,{},o),O=l.get("symbol-placement"),P="point"===O?l.get("text-max-width").evaluate(a,{},o)*Wu:0,L=function(){e.allowVerticalPlacement&&ka(m)&&(h.vertical=Uf(p,t,n,i,s,P,g,T,"left",S,v,If.vertical,!0,O,f,c))};if(!y&&A){for(var I="auto"===C?A.map((function(e){return Fd(e)})):[C],R=!1,D=0;D=Ls||f.y<0||f.y>=Ls||Hd(e,f,s,n,r,i,d,e.layers[0],e.collisionBoxArray,t.index,t.sourceLayerIndex,e.index,y,_,T,l,x,k,A,p,t,a,c,u,o)};if("line"===E)for(var P=0,L=md(t.geometry,0,0,Ls,Ls);P1){var B=hd(j,S,n.vertical||v,r,m,b);B&&O(j,B)}}else if("Polygon"===t.type)for(var U=0,H=Dc(t.geometry,0);Ujd&&M(e.layerIds[0]+': Value for "text-size" is >= '+zd+'. Reduce your "text-size".'):"composite"===m.kind&&((g=[id*h.compositeTextSizes[0].evaluate(o,{},p),id*h.compositeTextSizes[1].evaluate(o,{},p)])[0]>jd||g[1]>jd)&&M(e.layerIds[0]+': Value for "text-size" is >= '+zd+'. Reduce your "text-size".'),e.addSymbols(e.text,v,g,s,a,o,c,t,l.lineStartIndex,l.lineLength,d,p);for(var y=0,b=u;yjd&&M(e.layerIds[0]+': Value for "icon-size" is >= '+zd+'. Reduce your "icon-size".'):"composite"===Z.kind&&((Y=[id*w.compositeIconSizes[0].evaluate(x,{},k),id*w.compositeIconSizes[1].evaluate(x,{},k)])[0]>jd||Y[1]>jd)&&M(e.layerIds[0]+': Value for "icon-size" is >= '+zd+'. Reduce your "icon-size".'),e.addSymbols(e.icon,q,Y,b,y,x,!1,t,P.lineStartIndex,P.lineLength,-1,k),F=e.icon.placedSymbolArray.length-1,G&&(I=4*G.length,e.addSymbols(e.icon,G,Y,b,y,x,If.vertical,t,P.lineStartIndex,P.lineLength,-1,k),N=e.icon.placedSymbolArray.length-1)}for(var K in r.horizontal){var X=r.horizontal[K];if(!A){j=is(X.text);var J=s.layout.get("text-rotate").evaluate(x,{},k);A=new Sd(l,t,c,u,f,X,d,h,p,J)}var Q=1===X.positionedLines.length;if(R+=Bd(e,t,X,a,s,p,x,v,P,r.vertical?If.horizontal:If.horizontalOnly,Q?Object.keys(r.horizontal):[K],z,F,w,k),Q)break}r.vertical&&(D+=Bd(e,t,r.vertical,a,s,p,x,v,P,If.vertical,["vertical"],z,N,w,k));var ee=A?A.boxStartIndex:e.collisionBoxArray.length,te=A?A.boxEndIndex:e.collisionBoxArray.length,ne=C?C.boxStartIndex:e.collisionBoxArray.length,re=C?C.boxEndIndex:e.collisionBoxArray.length,ie=E?E.boxStartIndex:e.collisionBoxArray.length,ae=E?E.boxEndIndex:e.collisionBoxArray.length,oe=O?O.boxStartIndex:e.collisionBoxArray.length,se=O?O.boxEndIndex:e.collisionBoxArray.length,le=-1,ce=function(e,t){return e&&e.circleDiameter?Math.max(e.circleDiameter,t):t};le=ce(A,le),le=ce(C,le),le=ce(E,le);var ue=(le=ce(O,le))>-1?1:0;ue&&(le*=S/Wu),e.glyphOffsetArray.length>=Xd.MAX_GLYPHS&&M("Too many glyphs being rendered in a tile. See https://github.com/mapbox/mapbox-gl-js/issues/2907"),void 0!==x.sortKey&&e.addToSortKeyRanges(e.symbolInstances.length,x.sortKey),e.symbolInstances.emplaceBack(t.x,t.y,z.right>=0?z.right:-1,z.center>=0?z.center:-1,z.left>=0?z.left:-1,z.vertical||-1,F,N,j,ee,te,ne,re,ie,ae,oe,se,c,R,D,L,I,ue,0,d,B,U,le)}function $d(e,t,n,r){var i=e.compareText;if(t in i){for(var a=i[t],o=a.length-1;o>=0;o--)if(r.dist(a[o])0)&&("constant"!==a.value.kind||a.value.value.length>0),c="constant"!==s.value.kind||!!s.value.value||Object.keys(s.parameters).length>0,u=i.get("symbol-sort-key");if(this.features=[],l||c){for(var f=t.iconDependencies,d=t.glyphDependencies,h=t.availableImages,p=new Za(this.zoom),v=0,m=e;v=0;for(var I=0,R=S.sections;I=0;s--)a[s]={x:t[s].x,y:t[s].y,tileUnitDistanceFromAnchor:i},s>0&&(i+=t[s-1].dist(t[s]));for(var l=0;l0},Xd.prototype.hasIconData=function(){return this.icon.segments.get().length>0},Xd.prototype.hasDebugData=function(){return this.textCollisionBox&&this.iconCollisionBox},Xd.prototype.hasTextCollisionBoxData=function(){return this.hasDebugData()&&this.textCollisionBox.segments.get().length>0},Xd.prototype.hasIconCollisionBoxData=function(){return this.hasDebugData()&&this.iconCollisionBox.segments.get().length>0},Xd.prototype.addIndicesForPlacedSymbol=function(e,t){for(var n=e.placedSymbolArray.get(t),r=n.vertexStartIndex+4*n.numGlyphs,i=n.vertexStartIndex;i1||this.icon.segments.get().length>1)){this.symbolInstanceIndexes=this.getSortedSymbolIndexes(e),this.sortedAngle=e,this.text.indexArray.clear(),this.icon.indexArray.clear(),this.featureSortOrder=[];for(var n=0,r=this.symbolInstanceIndexes;n=0&&r.indexOf(e)===n&&t.addIndicesForPlacedSymbol(t.text,e)})),a.verticalPlacedTextSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.text,a.verticalPlacedTextSymbolIndex),a.placedIconSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.icon,a.placedIconSymbolIndex),a.verticalPlacedIconSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.icon,a.verticalPlacedIconSymbolIndex)}this.text.indexBuffer&&this.text.indexBuffer.updateData(this.text.indexArray),this.icon.indexBuffer&&this.icon.indexBuffer.updateData(this.icon.indexArray)}},va("SymbolBucket",Xd,{omit:["layers","collisionBoxArray","features","compareText"]}),Xd.MAX_GLYPHS=65535,Xd.addDynamicAttributes=Gd;var Qd=new lo({"symbol-placement":new ro(lt.layout_symbol["symbol-placement"]),"symbol-spacing":new ro(lt.layout_symbol["symbol-spacing"]),"symbol-avoid-edges":new ro(lt.layout_symbol["symbol-avoid-edges"]),"symbol-sort-key":new io(lt.layout_symbol["symbol-sort-key"]),"symbol-z-order":new ro(lt.layout_symbol["symbol-z-order"]),"icon-allow-overlap":new ro(lt.layout_symbol["icon-allow-overlap"]),"icon-ignore-placement":new ro(lt.layout_symbol["icon-ignore-placement"]),"icon-optional":new ro(lt.layout_symbol["icon-optional"]),"icon-rotation-alignment":new ro(lt.layout_symbol["icon-rotation-alignment"]),"icon-size":new io(lt.layout_symbol["icon-size"]),"icon-text-fit":new ro(lt.layout_symbol["icon-text-fit"]),"icon-text-fit-padding":new ro(lt.layout_symbol["icon-text-fit-padding"]),"icon-image":new io(lt.layout_symbol["icon-image"]),"icon-rotate":new io(lt.layout_symbol["icon-rotate"]),"icon-padding":new ro(lt.layout_symbol["icon-padding"]),"icon-keep-upright":new ro(lt.layout_symbol["icon-keep-upright"]),"icon-offset":new io(lt.layout_symbol["icon-offset"]),"icon-anchor":new io(lt.layout_symbol["icon-anchor"]),"icon-pitch-alignment":new ro(lt.layout_symbol["icon-pitch-alignment"]),"text-pitch-alignment":new ro(lt.layout_symbol["text-pitch-alignment"]),"text-rotation-alignment":new ro(lt.layout_symbol["text-rotation-alignment"]),"text-field":new io(lt.layout_symbol["text-field"]),"text-font":new io(lt.layout_symbol["text-font"]),"text-size":new io(lt.layout_symbol["text-size"]),"text-max-width":new io(lt.layout_symbol["text-max-width"]),"text-line-height":new ro(lt.layout_symbol["text-line-height"]),"text-letter-spacing":new io(lt.layout_symbol["text-letter-spacing"]),"text-justify":new io(lt.layout_symbol["text-justify"]),"text-radial-offset":new io(lt.layout_symbol["text-radial-offset"]),"text-variable-anchor":new ro(lt.layout_symbol["text-variable-anchor"]),"text-anchor":new io(lt.layout_symbol["text-anchor"]),"text-max-angle":new ro(lt.layout_symbol["text-max-angle"]),"text-writing-mode":new ro(lt.layout_symbol["text-writing-mode"]),"text-rotate":new io(lt.layout_symbol["text-rotate"]),"text-padding":new ro(lt.layout_symbol["text-padding"]),"text-keep-upright":new ro(lt.layout_symbol["text-keep-upright"]),"text-transform":new io(lt.layout_symbol["text-transform"]),"text-offset":new io(lt.layout_symbol["text-offset"]),"text-allow-overlap":new ro(lt.layout_symbol["text-allow-overlap"]),"text-ignore-placement":new ro(lt.layout_symbol["text-ignore-placement"]),"text-optional":new ro(lt.layout_symbol["text-optional"])}),eh={paint:new lo({"icon-opacity":new io(lt.paint_symbol["icon-opacity"]),"icon-color":new io(lt.paint_symbol["icon-color"]),"icon-halo-color":new io(lt.paint_symbol["icon-halo-color"]),"icon-halo-width":new io(lt.paint_symbol["icon-halo-width"]),"icon-halo-blur":new io(lt.paint_symbol["icon-halo-blur"]),"icon-translate":new ro(lt.paint_symbol["icon-translate"]),"icon-translate-anchor":new ro(lt.paint_symbol["icon-translate-anchor"]),"text-opacity":new io(lt.paint_symbol["text-opacity"]),"text-color":new io(lt.paint_symbol["text-color"],{runtimeType:xt,getOverride:function(e){return e.textColor},hasOverride:function(e){return!!e.textColor}}),"text-halo-color":new io(lt.paint_symbol["text-halo-color"]),"text-halo-width":new io(lt.paint_symbol["text-halo-width"]),"text-halo-blur":new io(lt.paint_symbol["text-halo-blur"]),"text-translate":new ro(lt.paint_symbol["text-translate"]),"text-translate-anchor":new ro(lt.paint_symbol["text-translate-anchor"])}),layout:Qd},th=function(e){this.type=e.property.overrides?e.property.overrides.runtimeType:mt,this.defaultValue=e};th.prototype.evaluate=function(e){if(e.formattedSection){var t=this.defaultValue.property.overrides;if(t&&t.hasOverride(e.formattedSection))return t.getOverride(e.formattedSection)}return e.feature&&e.featureState?this.defaultValue.evaluate(e.feature,e.featureState):this.defaultValue.property.specification.default},th.prototype.eachChild=function(e){this.defaultValue.isConstant()||e(this.defaultValue.value._styleExpression.expression)},th.prototype.outputDefined=function(){return!1},th.prototype.serialize=function(){return null},va("FormatSectionOverride",th,{omit:["defaultValue"]});var nh=function(e){function t(t){e.call(this,t,eh)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.recalculate=function(t,n){if(e.prototype.recalculate.call(this,t,n),"auto"===this.layout.get("icon-rotation-alignment")&&("point"!==this.layout.get("symbol-placement")?this.layout._values["icon-rotation-alignment"]="map":this.layout._values["icon-rotation-alignment"]="viewport"),"auto"===this.layout.get("text-rotation-alignment")&&("point"!==this.layout.get("symbol-placement")?this.layout._values["text-rotation-alignment"]="map":this.layout._values["text-rotation-alignment"]="viewport"),"auto"===this.layout.get("text-pitch-alignment")&&(this.layout._values["text-pitch-alignment"]=this.layout.get("text-rotation-alignment")),"auto"===this.layout.get("icon-pitch-alignment")&&(this.layout._values["icon-pitch-alignment"]=this.layout.get("icon-rotation-alignment")),"point"===this.layout.get("symbol-placement")){var r=this.layout.get("text-writing-mode");if(r){for(var i=[],a=0,o=r;a",targetMapId:r,sourceMapId:a.mapId})}}},yh.prototype.receive=function(e){var t=e.data,n=t.id;if(n&&(!t.targetMapId||this.mapId===t.targetMapId))if(""===t.type){delete this.tasks[n];var r=this.cancelCallbacks[n];delete this.cancelCallbacks[n],r&&r()}else I()||t.mustQueue?(this.tasks[n]=t,this.taskQueue.push(n),this.invoker.trigger()):this.processTask(n,t)},yh.prototype.process=function(){if(this.taskQueue.length){var e=this.taskQueue.shift(),t=this.tasks[e];delete this.tasks[e],this.taskQueue.length&&this.invoker.trigger(),t&&this.processTask(e,t)}},yh.prototype.processTask=function(e,t){var n=this;if(""===t.type){var r=this.callbacks[e];delete this.callbacks[e],r&&(t.error?r(xa(t.error)):r(null,xa(t.data)))}else{var i=!1,a=F(this.globalScope)?void 0:[],o=t.hasCallback?function(t,r){i=!0,delete n.cancelCallbacks[e],n.target.postMessage({id:e,type:"",sourceMapId:n.mapId,error:t?ba(t):null,data:ba(r,a)},a)}:function(e){i=!0},s=null,l=xa(t.data);if(this.parent[t.type])s=this.parent[t.type](t.sourceMapId,l,o);else if(this.parent.getWorkerSource){var c=t.type.split(".");s=this.parent.getWorkerSource(t.sourceMapId,c[0],l.source)[c[1]](l,o)}else o(new Error("Could not find function "+t.type));!i&&s&&s.cancel&&(this.cancelCallbacks[e]=s.cancel)}},yh.prototype.remove=function(){this.invoker.remove(),this.target.removeEventListener("message",this.receive,!1)};var wh=function(e,t){e&&(t?this.setSouthWest(e).setNorthEast(t):4===e.length?this.setSouthWest([e[0],e[1]]).setNorthEast([e[2],e[3]]):this.setSouthWest(e[0]).setNorthEast(e[1]))};wh.prototype.setNorthEast=function(e){return this._ne=e instanceof kh?new kh(e.lng,e.lat):kh.convert(e),this},wh.prototype.setSouthWest=function(e){return this._sw=e instanceof kh?new kh(e.lng,e.lat):kh.convert(e),this},wh.prototype.extend=function(e){var t,n,r=this._sw,i=this._ne;if(e instanceof kh)t=e,n=e;else{if(!(e instanceof wh)){if(Array.isArray(e)){if(4===e.length||e.every(Array.isArray)){var a=e;return this.extend(wh.convert(a))}var o=e;return this.extend(kh.convert(o))}return this}if(t=e._sw,n=e._ne,!t||!n)return this}return r||i?(r.lng=Math.min(t.lng,r.lng),r.lat=Math.min(t.lat,r.lat),i.lng=Math.max(n.lng,i.lng),i.lat=Math.max(n.lat,i.lat)):(this._sw=new kh(t.lng,t.lat),this._ne=new kh(n.lng,n.lat)),this},wh.prototype.getCenter=function(){return new kh((this._sw.lng+this._ne.lng)/2,(this._sw.lat+this._ne.lat)/2)},wh.prototype.getSouthWest=function(){return this._sw},wh.prototype.getNorthEast=function(){return this._ne},wh.prototype.getNorthWest=function(){return new kh(this.getWest(),this.getNorth())},wh.prototype.getSouthEast=function(){return new kh(this.getEast(),this.getSouth())},wh.prototype.getWest=function(){return this._sw.lng},wh.prototype.getSouth=function(){return this._sw.lat},wh.prototype.getEast=function(){return this._ne.lng},wh.prototype.getNorth=function(){return this._ne.lat},wh.prototype.toArray=function(){return[this._sw.toArray(),this._ne.toArray()]},wh.prototype.toString=function(){return"LngLatBounds("+this._sw.toString()+", "+this._ne.toString()+")"},wh.prototype.isEmpty=function(){return!(this._sw&&this._ne)},wh.prototype.contains=function(e){var t=kh.convert(e),n=t.lng,r=t.lat,i=this._sw.lat<=r&&r<=this._ne.lat,a=this._sw.lng<=n&&n<=this._ne.lng;return this._sw.lng>this._ne.lng&&(a=this._sw.lng>=n&&n>=this._ne.lng),i&&a},wh.convert=function(e){return!e||e instanceof wh?e:new wh(e)};var _h=6371008.8,kh=function(e,t){if(isNaN(e)||isNaN(t))throw new Error("Invalid LngLat object: ("+e+", "+t+")");if(this.lng=+e,this.lat=+t,this.lat>90||this.lat<-90)throw new Error("Invalid LngLat latitude value: must be between -90 and 90")};kh.prototype.wrap=function(){return new kh(d(this.lng,-180,180),this.lat)},kh.prototype.toArray=function(){return[this.lng,this.lat]},kh.prototype.toString=function(){return"LngLat("+this.lng+", "+this.lat+")"},kh.prototype.distanceTo=function(e){var t=Math.PI/180,n=this.lat*t,r=e.lat*t,i=Math.sin(n)*Math.sin(r)+Math.cos(n)*Math.cos(r)*Math.cos((e.lng-this.lng)*t);return _h*Math.acos(Math.min(i,1))},kh.prototype.toBounds=function(e){void 0===e&&(e=0);var t=360*e/40075017,n=t/Math.cos(Math.PI/180*this.lat);return new wh(new kh(this.lng-n,this.lat-t),new kh(this.lng+n,this.lat+t))},kh.convert=function(e){if(e instanceof kh)return e;if(Array.isArray(e)&&(2===e.length||3===e.length))return new kh(Number(e[0]),Number(e[1]));if(!Array.isArray(e)&&"object"===typeof e&&null!==e)return new kh(Number("lng"in e?e.lng:e.lon),Number(e.lat));throw new Error("`LngLatLike` argument must be specified as a LngLat instance, an object {lng: , lat: }, an object {lon: , lat: }, or an array of [, ]")};var Sh=2*Math.PI*_h;function Th(e){return Sh*Math.cos(e*Math.PI/180)}function Ah(e){return(180+e)/360}function Eh(e){return(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+e*Math.PI/360)))/360}function Ch(e,t){return e/Th(t)}function Mh(e){return 360*e-180}function Oh(e){var t=180-360*e;return 360/Math.PI*Math.atan(Math.exp(t*Math.PI/180))-90}function Ph(e,t){return e*Th(Oh(t))}function Lh(e){return 1/Math.cos(e*Math.PI/180)}var Ih=function(e,t,n){void 0===n&&(n=0),this.x=+e,this.y=+t,this.z=+n};Ih.fromLngLat=function(e,t){void 0===t&&(t=0);var n=kh.convert(e);return new Ih(Ah(n.lng),Eh(n.lat),Ch(t,n.lat))},Ih.prototype.toLngLat=function(){return new kh(Mh(this.x),Oh(this.y))},Ih.prototype.toAltitude=function(){return Ph(this.z,this.y)},Ih.prototype.meterInMercatorCoordinateUnits=function(){return 1/Sh*Lh(Oh(this.y))};var Rh=function(e,t,n){this.z=e,this.x=t,this.y=n,this.key=Nh(0,e,e,t,n)};Rh.prototype.equals=function(e){return this.z===e.z&&this.x===e.x&&this.y===e.y},Rh.prototype.url=function(e,t){var n=bh(this.x,this.y,this.z),r=zh(this.z,this.x,this.y);return e[(this.x+this.y)%e.length].replace("{prefix}",(this.x%16).toString(16)+(this.y%16).toString(16)).replace("{z}",String(this.z)).replace("{x}",String(this.x)).replace("{y}",String("tms"===t?Math.pow(2,this.z)-this.y-1:this.y)).replace("{quadkey}",r).replace("{bbox-epsg-3857}",n)},Rh.prototype.getTilePoint=function(e){var t=Math.pow(2,this.z);return new a((e.x*t-this.x)*Ls,(e.y*t-this.y)*Ls)},Rh.prototype.toString=function(){return this.z+"/"+this.x+"/"+this.y};var Dh=function(e,t){this.wrap=e,this.canonical=t,this.key=Nh(e,t.z,t.z,t.x,t.y)},Fh=function(e,t,n,r,i){this.overscaledZ=e,this.wrap=t,this.canonical=new Rh(n,+r,+i),this.key=Nh(t,e,n,r,i)};function Nh(e,t,n,r,i){(e*=2)<0&&(e=-1*e-1);var a=1<0;a--)i+=(t&(r=1<this.canonical.z?new Fh(e,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y):new Fh(e,this.wrap,e,this.canonical.x>>t,this.canonical.y>>t)},Fh.prototype.calculateScaledKey=function(e,t){var n=this.canonical.z-e;return e>this.canonical.z?Nh(this.wrap*+t,e,this.canonical.z,this.canonical.x,this.canonical.y):Nh(this.wrap*+t,e,e,this.canonical.x>>n,this.canonical.y>>n)},Fh.prototype.isChildOf=function(e){if(e.wrap!==this.wrap)return!1;var t=this.canonical.z-e.canonical.z;return 0===e.overscaledZ||e.overscaledZ>t&&e.canonical.y===this.canonical.y>>t},Fh.prototype.children=function(e){if(this.overscaledZ>=e)return[new Fh(this.overscaledZ+1,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y)];var t=this.canonical.z+1,n=2*this.canonical.x,r=2*this.canonical.y;return[new Fh(t,this.wrap,t,n,r),new Fh(t,this.wrap,t,n+1,r),new Fh(t,this.wrap,t,n,r+1),new Fh(t,this.wrap,t,n+1,r+1)]},Fh.prototype.isLessThan=function(e){return this.wrape.wrap)&&(this.overscaledZe.overscaledZ)&&(this.canonical.xe.canonical.x)&&this.canonical.y=this.dim+1||t<-1||t>=this.dim+1)throw new RangeError("out of range source coordinates for DEM data");return(t+1)*this.stride+(e+1)},jh.prototype._unpackMapbox=function(e,t,n){return(256*e*256+256*t+n)/10-1e4},jh.prototype._unpackTerrarium=function(e,t,n){return 256*e+t+n/256-32768},jh.prototype.getPixels=function(){return new Vl({width:this.stride,height:this.stride},new Uint8Array(this.data.buffer))},jh.prototype.backfillBorder=function(e,t,n){if(this.dim!==e.dim)throw new Error("dem dimension mismatch");var r=t*this.dim,i=t*this.dim+this.dim,a=n*this.dim,o=n*this.dim+this.dim;switch(t){case-1:r=i-1;break;case 1:i=r+1}switch(n){case-1:a=o-1;break;case 1:o=a+1}for(var s=-t*this.dim,l=-n*this.dim,c=a;c=0&&u[3]>=0&&s.insert(o,u[0],u[1],u[2],u[3])}},Wh.prototype.loadVTLayers=function(){return this.vtLayers||(this.vtLayers=new ru.VectorTile(new Gu(this.rawTileData)).layers,this.sourceLayerCoder=new Uh(this.vtLayers?Object.keys(this.vtLayers).sort():["_geojsonTileLayer"])),this.vtLayers},Wh.prototype.query=function(e,t,n,r){var i=this;this.loadVTLayers();for(var a=e.params||{},o=Ls/e.tileSize/e.scale,s=Oi(a.filter),l=e.queryGeometry,c=e.queryPadding*o,u=Gh(l),f=this.grid.query(u.minX-c,u.minY-c,u.maxX+c,u.maxY+c),d=Gh(e.cameraQueryGeometry),h=0,p=this.grid3D.query(d.minX-c,d.minY-c,d.maxX+c,d.maxY+c,(function(t,n,r,i){return Ys(e.cameraQueryGeometry,t-c,n-c,r+c,i+c)}));hr)i=!1;else if(t)if(this.expirationTime=C.maxzoom||"none"!==C.visibility&&(l(E,this.zoom,r),(v[C.id]=C.createBucket({index:u.bucketLayerIDs.length,layers:E,zoom:this.zoom,pixelRatio:this.pixelRatio,overscaling:this.overscaling,collisionBoxArray:this.collisionBoxArray,sourceLayerIndex:x,sourceID:this.source})).populate(w,m,this.tileID.canonical),u.bucketLayerIDs.push(E.map((function(e){return e.id}))))}}}var M=e.mapObject(m.glyphDependencies,(function(e){return Object.keys(e).map(Number)}));Object.keys(M).length?i.send("getGlyphs",{uid:this.uid,stacks:M},(function(e,t){f||(f=e,d=t,L.call(s))})):d={};var O=Object.keys(m.iconDependencies);O.length?i.send("getImages",{icons:O,source:this.source,tileID:this.tileID,type:"icons"},(function(e,t){f||(f=e,h=t,L.call(s))})):h={};var P=Object.keys(m.patternDependencies);function L(){if(f)return a(f);if(d&&h&&p){var t=new o(d),n=new e.ImageAtlas(h,p);for(var i in v){var s=v[i];s instanceof e.SymbolBucket?(l(s.layers,this.zoom,r),e.performSymbolLayout(s,d,t.positions,h,n.iconPositions,this.showCollisionBoxes,this.tileID.canonical)):s.hasPattern&&(s instanceof e.LineBucket||s instanceof e.FillBucket||s instanceof e.FillExtrusionBucket)&&(l(s.layers,this.zoom,r),s.addFeatures(m,this.tileID.canonical,n.patternPositions))}this.status="done",a(null,{buckets:e.values(v).filter((function(e){return!e.isEmpty()})),featureIndex:u,collisionBoxArray:this.collisionBoxArray,glyphAtlasImage:t.image,imageAtlas:n,glyphMap:this.returnDependencies?d:null,iconMap:this.returnDependencies?h:null,glyphPositions:this.returnDependencies?t.positions:null})}}P.length?i.send("getImages",{icons:P,source:this.source,tileID:this.tileID,type:"patterns"},(function(e,t){f||(f=e,p=t,L.call(s))})):p={},L.call(this)};var u=function(e,t,n,r){this.actor=e,this.layerIndex=t,this.availableImages=n,this.loadVectorData=r||c,this.loading={},this.loaded={}};u.prototype.loadTile=function(t,n){var r=this,i=t.uid;this.loading||(this.loading={});var a=!!(t&&t.request&&t.request.collectResourceTiming)&&new e.RequestPerformance(t.request),o=this.loading[i]=new s(t);o.abort=this.loadVectorData(t,(function(t,s){if(delete r.loading[i],t||!s)return o.status="done",r.loaded[i]=o,n(t);var l=s.rawData,c={};s.expires&&(c.expires=s.expires),s.cacheControl&&(c.cacheControl=s.cacheControl);var u={};if(a){var f=a.finish();f&&(u.resourceTiming=JSON.parse(JSON.stringify(f)))}o.vectorTile=s.vectorTile,o.parse(s.vectorTile,r.layerIndex,r.availableImages,r.actor,(function(t,r){if(t||!r)return n(t);n(null,e.extend({rawTileData:l.slice(0)},r,c,u))})),r.loaded=r.loaded||{},r.loaded[i]=o}))},u.prototype.reloadTile=function(e,t){var n=this,r=this.loaded,i=e.uid,a=this;if(r&&r[i]){var o=r[i];o.showCollisionBoxes=e.showCollisionBoxes;var s=function(e,r){var i=o.reloadCallback;i&&(delete o.reloadCallback,o.parse(o.vectorTile,a.layerIndex,n.availableImages,a.actor,i)),t(e,r)};"parsing"===o.status?o.reloadCallback=s:"done"===o.status&&(o.vectorTile?o.parse(o.vectorTile,this.layerIndex,this.availableImages,this.actor,s):s())}},u.prototype.abortTile=function(e,t){var n=this.loading,r=e.uid;n&&n[r]&&n[r].abort&&(n[r].abort(),delete n[r]),t()},u.prototype.removeTile=function(e,t){var n=this.loaded,r=e.uid;n&&n[r]&&delete n[r],t()};var f=e.window.ImageBitmap,d=function(){this.loaded={}};d.prototype.loadTile=function(t,n){var r=t.uid,i=t.encoding,a=t.rawImageData,o=f&&a instanceof f?this.getImageData(a):a,s=new e.DEMData(r,o,i);this.loaded=this.loaded||{},this.loaded[r]=s,n(null,s)},d.prototype.getImageData=function(t){this.offscreenCanvas&&this.offscreenCanvasContext||(this.offscreenCanvas=new OffscreenCanvas(t.width,t.height),this.offscreenCanvasContext=this.offscreenCanvas.getContext("2d")),this.offscreenCanvas.width=t.width,this.offscreenCanvas.height=t.height,this.offscreenCanvasContext.drawImage(t,0,0,t.width,t.height);var n=this.offscreenCanvasContext.getImageData(-1,-1,t.width+2,t.height+2);return this.offscreenCanvasContext.clearRect(0,0,this.offscreenCanvas.width,this.offscreenCanvas.height),new e.RGBAImage({width:n.width,height:n.height},n.data)},d.prototype.removeTile=function(e){var t=this.loaded,n=e.uid;t&&t[n]&&delete t[n]};var h=p;function p(e,t){var n,r=e&&e.type;if("FeatureCollection"===r)for(n=0;n=0!==!!t&&e.reverse()}var g=e.vectorTile.VectorTileFeature.prototype.toGeoJSON,y=function(t){this._feature=t,this.extent=e.EXTENT,this.type=t.type,this.properties=t.tags,"id"in t&&!isNaN(t.id)&&(this.id=parseInt(t.id,10))};y.prototype.loadGeometry=function(){if(1===this._feature.type){for(var t=[],n=0,r=this._feature.geometry;n>31}function F(e,t){for(var n=e.loadGeometry(),r=e.type,i=0,a=0,o=n.length,s=0;s>1;j(e,t,o,r,i,a%2),z(e,t,n,r,o-1,a+1),z(e,t,n,o+1,i,a+1)}}function j(e,t,n,r,i,a){for(;i>r;){if(i-r>600){var o=i-r+1,s=n-r+1,l=Math.log(o),c=.5*Math.exp(2*l/3),u=.5*Math.sqrt(l*c*(o-c)/o)*(s-o/2<0?-1:1);j(e,t,n,Math.max(r,Math.floor(n-s*c/o+u)),Math.min(i,Math.floor(n+(o-s)*c/o+u)),a)}var f=t[2*n+a],d=r,h=i;for(B(e,t,r,n),t[2*i+a]>f&&B(e,t,r,i);df;)h--}t[2*r+a]===f?B(e,t,r,h):B(e,t,++h,i),h<=n&&(r=h+1),n<=h&&(i=h-1)}}function B(e,t,n,r){U(e,n,r),U(t,2*n,2*r),U(t,2*n+1,2*r+1)}function U(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function H(e,t,n,r,i,a,o){for(var s,l,c=[0,e.length-1,0],u=[];c.length;){var f=c.pop(),d=c.pop(),h=c.pop();if(d-h<=o)for(var p=h;p<=d;p++)s=t[2*p],l=t[2*p+1],s>=n&&s<=i&&l>=r&&l<=a&&u.push(e[p]);else{var v=Math.floor((h+d)/2);s=t[2*v],l=t[2*v+1],s>=n&&s<=i&&l>=r&&l<=a&&u.push(e[v]);var m=(f+1)%2;(0===f?n<=s:r<=l)&&(c.push(h),c.push(v-1),c.push(m)),(0===f?i>=s:a>=l)&&(c.push(v+1),c.push(d),c.push(m))}}return u}function $(e,t,n,r,i,a){for(var o=[0,e.length-1,0],s=[],l=i*i;o.length;){var c=o.pop(),u=o.pop(),f=o.pop();if(u-f<=a)for(var d=f;d<=u;d++)V(t[2*d],t[2*d+1],n,r)<=l&&s.push(e[d]);else{var h=Math.floor((f+u)/2),p=t[2*h],v=t[2*h+1];V(p,v,n,r)<=l&&s.push(e[h]);var m=(c+1)%2;(0===c?n-i<=p:r-i<=v)&&(o.push(f),o.push(h-1),o.push(m)),(0===c?n+i>=p:r+i>=v)&&(o.push(h+1),o.push(u),o.push(m))}}return s}function V(e,t,n,r){var i=e-n,a=t-r;return i*i+a*a}S.fromVectorTileJs=T,S.fromGeojsonVt=A,S.GeoJSONWrapper=E;var W=function(e){return e[0]},q=function(e){return e[1]},G=function(e,t,n,r,i){void 0===t&&(t=W),void 0===n&&(n=q),void 0===r&&(r=64),void 0===i&&(i=Float64Array),this.nodeSize=r,this.points=e;for(var a=e.length<65536?Uint16Array:Uint32Array,o=this.ids=new a(e.length),s=this.coords=new i(2*e.length),l=0;l=1e4?Math.round(t/1e3)+"k":t>=1e3?Math.round(t/100)/10+"k":t;return ie(ie({},e.properties),{cluster:!0,cluster_id:e.id,point_count:t,point_count_abbreviated:n})}function ee(e){return e/360+.5}function te(e){var t=Math.sin(e*Math.PI/180),n=.5-.25*Math.log((1+t)/(1-t))/Math.PI;return n<0?0:n>1?1:n}function ne(e){return 360*(e-.5)}function re(e){var t=(180-360*e)*Math.PI/180;return 360*Math.atan(Math.exp(t))/Math.PI-90}function ie(e,t){for(var n in t)e[n]=t[n];return e}function ae(e){return e.x}function oe(e){return e.y}function se(e,t,n,r){for(var i,a=r,o=n-t>>1,s=n-t,l=e[t],c=e[t+1],u=e[n],f=e[n+1],d=t+3;da)i=d,a=h;else if(h===a){var p=Math.abs(d-o);pr&&(i-t>3&&se(e,t,i,r),e[i+2]=a,n-i>3&&se(e,i,n,r))}function le(e,t,n,r,i,a){var o=i-n,s=a-r;if(0!==o||0!==s){var l=((e-n)*o+(t-r)*s)/(o*o+s*s);l>1?(n=i,r=a):l>0&&(n+=o*l,r+=s*l)}return(o=e-n)*o+(s=t-r)*s}function ce(e,t,n,r){var i={id:"undefined"===typeof e?null:e,type:t,geometry:n,tags:r,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0};return ue(i),i}function ue(e){var t=e.geometry,n=e.type;if("Point"===n||"MultiPoint"===n||"LineString"===n)fe(e,t);else if("Polygon"===n||"MultiLineString"===n)for(var r=0;r0&&(o+=r?(i*c-l*a)/2:Math.sqrt(Math.pow(l-i,2)+Math.pow(c-a,2))),i=l,a=c}var u=t.length-3;t[2]=1,se(t,0,u,n),t[u+2]=1,t.size=Math.abs(o),t.start=0,t.end=t.size}function me(e,t,n,r){for(var i=0;i1?1:n}function be(e,t,n,r,i,a,o,s){if(r/=t,a>=(n/=t)&&o=r)return null;for(var l=[],c=0;c=n&&p=r)){var v=[];if("Point"===d||"MultiPoint"===d)xe(f,v,n,r,i);else if("LineString"===d)we(f,v,n,r,i,!1,s.lineMetrics);else if("MultiLineString"===d)ke(f,v,n,r,i,!1);else if("Polygon"===d)ke(f,v,n,r,i,!0);else if("MultiPolygon"===d)for(var m=0;m=n&&o<=r&&(t.push(e[a]),t.push(e[a+1]),t.push(e[a+2]))}}function we(e,t,n,r,i,a,o){for(var s,l,c=_e(e),u=0===i?Te:Ae,f=e.start,d=0;dn&&(l=u(c,h,p,m,g,n),o&&(c.start=f+s*l)):y>r?b=n&&(l=u(c,h,p,m,g,n),x=!0),b>r&&y<=r&&(l=u(c,h,p,m,g,r),x=!0),!a&&x&&(o&&(c.end=f+s*l),t.push(c),c=_e(e)),o&&(f+=s)}var w=e.length-3;h=e[w],p=e[w+1],v=e[w+2],(y=0===i?h:p)>=n&&y<=r&&Se(c,h,p,v),w=c.length-3,a&&w>=3&&(c[w]!==c[0]||c[w+1]!==c[1])&&Se(c,c[0],c[1],c[2]),c.length&&t.push(c)}function _e(e){var t=[];return t.size=e.size,t.start=e.start,t.end=e.end,t}function ke(e,t,n,r,i,a){for(var o=0;oo.maxX&&(o.maxX=u),f>o.maxY&&(o.maxY=f)}return o}function Ie(e,t,n,r){var i=t.geometry,a=t.type,o=[];if("Point"===a||"MultiPoint"===a)for(var s=0;s0&&t.size<(i?o:r))n.numPoints+=t.length/3;else{for(var s=[],l=0;lo)&&(n.numSimplified++,s.push(t[l]),s.push(t[l+1])),n.numPoints++;i&&De(s,a),e.push(s)}}function De(e,t){for(var n=0,r=0,i=e.length,a=i-2;r0===t)for(r=0,i=e.length;r24)throw new Error("maxZoom should be in the 0-24 range");if(t.promoteId&&t.generateId)throw new Error("promoteId and generateId cannot be used together.");var r=de(e,t);this.tiles={},this.tileCoords=[],n&&(console.timeEnd("preprocess data"),console.log("index: maxZoom: %d, maxPoints: %d",t.indexMaxZoom,t.indexMaxPoints),console.time("generate tiles"),this.stats={},this.total=0),(r=Ee(r,t)).length&&this.splitTile(r,0,0,0),n&&(r.length&&console.log("features: %d, points: %d",this.tiles[0].numFeatures,this.tiles[0].numPoints),console.timeEnd("generate tiles"),console.log("tiles generated:",this.total,JSON.stringify(this.stats)))}function ze(e,t,n){return 32*((1<=r;c--){var u=+Date.now();s=this._cluster(s,c),this.trees[c]=new G(s,ae,oe,a,Float32Array),n&&console.log("z%d: %d clusters in %dms",c,s.length,+Date.now()-u)}return n&&console.timeEnd("total time"),this},Y.prototype.getClusters=function(e,t){var n=((e[0]+180)%360+360)%360-180,r=Math.max(-90,Math.min(90,e[1])),i=180===e[2]?180:((e[2]+180)%360+360)%360-180,a=Math.max(-90,Math.min(90,e[3]));if(e[2]-e[0]>=360)n=-180,i=180;else if(n>i){var o=this.getClusters([n,r,180,a],t),s=this.getClusters([-180,r,i,a],t);return o.concat(s)}for(var l=this.trees[this._limitZoom(t)],c=[],u=0,f=l.range(ee(n),te(a),ee(i),te(r));u1?this._map(c,!0):null,m=(l<<5)+(t+1)+this.points.length,g=0,y=f;g>5},Y.prototype._getOriginZoom=function(e){return(e-this.points.length)%32},Y.prototype._map=function(e,t){if(e.numPoints)return t?ie({},e.properties):e.properties;var n=this.points[e.index].properties,r=this.options.map(n);return t&&r===n?ie({},r):r},Ne.prototype.options={maxZoom:14,indexMaxZoom:5,indexMaxPoints:1e5,tolerance:3,extent:4096,buffer:64,lineMetrics:!1,promoteId:null,generateId:!1,debug:0},Ne.prototype.splitTile=function(e,t,n,r,i,a,o){for(var s=[e,t,n,r],l=this.options,c=l.debug;s.length;){r=s.pop(),n=s.pop(),t=s.pop(),e=s.pop();var u=1<1&&console.time("creation"),d=this.tiles[f]=Le(e,t,n,r,l),this.tileCoords.push({z:t,x:n,y:r}),c)){c>1&&(console.log("tile z%d-%d-%d (features: %d, points: %d, simplified: %d)",t,n,r,d.numFeatures,d.numPoints,d.numSimplified),console.timeEnd("creation"));var h="z"+t;this.stats[h]=(this.stats[h]||0)+1,this.total++}if(d.source=e,i){if(t===l.maxZoom||t===i)continue;var p=1<1&&console.time("clipping");var v,m,g,y,b,x,w=.5*l.buffer/l.extent,_=.5-w,k=.5+w,S=1+w;v=m=g=y=null,b=be(e,u,n-w,n+k,0,d.minX,d.maxX,l),x=be(e,u,n+_,n+S,0,d.minX,d.maxX,l),e=null,b&&(v=be(b,u,r-w,r+k,1,d.minY,d.maxY,l),m=be(b,u,r+_,r+S,1,d.minY,d.maxY,l),b=null),x&&(g=be(x,u,r-w,r+k,1,d.minY,d.maxY,l),y=be(x,u,r+_,r+S,1,d.minY,d.maxY,l),x=null),c>1&&console.timeEnd("clipping"),s.push(v||[],t+1,2*n,2*r),s.push(m||[],t+1,2*n,2*r+1),s.push(g||[],t+1,2*n+1,2*r),s.push(y||[],t+1,2*n+1,2*r+1)}}},Ne.prototype.getTile=function(e,t,n){var r=this.options,i=r.extent,a=r.debug;if(e<0||e>24)return null;var o=1<1&&console.log("drilling down to z%d-%d-%d",e,t,n);for(var l,c=e,u=t,f=n;!l&&c>0;)c--,u=Math.floor(u/2),f=Math.floor(f/2),l=this.tiles[ze(c,u,f)];return l&&l.source?(a>1&&console.log("found parent tile z%d-%d-%d",c,u,f),a>1&&console.time("drilling down"),this.splitTile(l.source,c,u,f,e,t,n),a>1&&console.timeEnd("drilling down"),this.tiles[s]?Oe(this.tiles[s],i):null):null};var Ue=function(t){function n(e,n,r,i){t.call(this,e,n,r,Be),i&&(this.loadGeoJSON=i)}return t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n,n.prototype.loadData=function(e,t){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),this._pendingCallback=t,this._pendingLoadDataParams=e,this._state&&"Idle"!==this._state?this._state="NeedsLoadData":(this._state="Coalescing",this._loadData())},n.prototype._loadData=function(){var t=this;if(this._pendingCallback&&this._pendingLoadDataParams){var n=this._pendingCallback,r=this._pendingLoadDataParams;delete this._pendingCallback,delete this._pendingLoadDataParams;var i=!!(r&&r.request&&r.request.collectResourceTiming)&&new e.RequestPerformance(r.request);this.loadGeoJSON(r,(function(e,a){if(e||!a)return n(e);if("object"!==typeof a)return n(new Error("Input data given to '"+r.source+"' is not a valid GeoJSON object."));h(a,!0);try{t._geoJSONIndex=r.cluster?new Y(He(r)).load(a.features):Fe(a,r.geojsonVtOptions)}catch(e){return n(e)}t.loaded={};var o={};if(i){var s=i.finish();s&&(o.resourceTiming={},o.resourceTiming[r.source]=JSON.parse(JSON.stringify(s)))}n(null,o)}))}},n.prototype.coalesce=function(){"Coalescing"===this._state?this._state="Idle":"NeedsLoadData"===this._state&&(this._state="Coalescing",this._loadData())},n.prototype.reloadTile=function(e,n){var r=this.loaded,i=e.uid;return r&&r[i]?t.prototype.reloadTile.call(this,e,n):this.loadTile(e,n)},n.prototype.loadGeoJSON=function(t,n){if(t.request)e.getJSON(t.request,n);else{if("string"!==typeof t.data)return n(new Error("Input data given to '"+t.source+"' is not a valid GeoJSON object."));try{return n(null,JSON.parse(t.data))}catch(r){return n(new Error("Input data given to '"+t.source+"' is not a valid GeoJSON object."))}}},n.prototype.removeSource=function(e,t){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),t()},n.prototype.getClusterExpansionZoom=function(e,t){try{t(null,this._geoJSONIndex.getClusterExpansionZoom(e.clusterId))}catch(n){t(n)}},n.prototype.getClusterChildren=function(e,t){try{t(null,this._geoJSONIndex.getChildren(e.clusterId))}catch(n){t(n)}},n.prototype.getClusterLeaves=function(e,t){try{t(null,this._geoJSONIndex.getLeaves(e.clusterId,e.limit,e.offset))}catch(n){t(n)}},n}(u);function He(t){var n=t.superclusterOptions,r=t.clusterProperties;if(!r||!n)return n;for(var i={},a={},o={accumulated:null,zoom:0},s={properties:null},l=Object.keys(r),c=0,u=l;c1?"@2x":"",l=e.getJSON(n.transformRequest(n.normalizeSpriteURL(t,s,".json"),e.ResourceType.SpriteJSON),(function(e,t){l=null,o||(o=e,i=t,u())})),c=e.getImage(n.transformRequest(n.normalizeSpriteURL(t,s,".png"),e.ResourceType.SpriteImage),(function(e,t){c=null,o||(o=e,a=t,u())}));function u(){if(o)r(o);else if(i&&a){var t=e.browser.getImageData(a),n={};for(var s in i){var l=i[s],c=l.width,u=l.height,f=l.x,d=l.y,h=l.sdf,p=l.pixelRatio,v=l.stretchX,m=l.stretchY,g=l.content,y=new e.RGBAImage({width:c,height:u});e.RGBAImage.copy(t,y,{x:f,y:d},{x:0,y:0},{width:c,height:u}),n[s]={data:y,pixelRatio:p,sdf:h,stretchX:v,stretchY:m,content:g}}r(null,n)}}return{cancel:function(){l&&(l.cancel(),l=null),c&&(c.cancel(),c=null)}}}function d(e){var t=e.userImage;return!!(t&&t.render&&t.render())&&(e.data.replace(new Uint8Array(t.data.buffer)),!0)}n.suppressClick=function(){e.window.addEventListener("click",u,!0),e.window.setTimeout((function(){e.window.removeEventListener("click",u,!0)}),0)},n.mousePos=function(t,n){var r=t.getBoundingClientRect();return new e.Point(n.clientX-r.left-t.clientLeft,n.clientY-r.top-t.clientTop)},n.touchPos=function(t,n){for(var r=t.getBoundingClientRect(),i=[],a=0;a=0?0:t.button},n.remove=function(e){e.parentNode&&e.parentNode.removeChild(e)};var h=1,p=function(t){function n(){t.call(this),this.images={},this.updatedImages={},this.callbackDispatchedThisFrame={},this.loaded=!1,this.requestors=[],this.patterns={},this.atlasImage=new e.RGBAImage({width:1,height:1}),this.dirty=!0}return t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n,n.prototype.isLoaded=function(){return this.loaded},n.prototype.setLoaded=function(e){if(this.loaded!==e&&(this.loaded=e,e)){for(var t=0,n=this.requestors;t=0?1.2:1))}function x(e,t,n,r,i,a,o){for(var s=0;s65535)t(new Error("glyphs > 65535 not supported"));else if(a.ranges[s])t(null,{stack:n,id:i,glyph:o});else{var l=a.requests[s];l||(l=a.requests[s]=[],_.loadGlyphRange(n,s,r.url,r.requestManager,(function(e,t){if(t){for(var n in t)r._doesCharSupportLocalGlyph(+n)||(a.glyphs[+n]=t[+n]);a.ranges[s]=!0}for(var i=0,o=l;i1&&(l=e[++s]);var u=Math.abs(c-l.left),f=Math.abs(c-l.right),d=Math.min(u,f),h=void 0,p=i/n*(r+1);if(l.isDash){var v=r-Math.abs(p);h=Math.sqrt(d*d+v*v)}else h=r-Math.sqrt(d*d+p*p);this.data[o+c]=Math.max(0,Math.min(255,h+128))}},E.prototype.addRegularDash=function(e){for(var t=e.length-1;t>=0;--t){var n=e[t],r=e[t+1];n.zeroLength?e.splice(t,1):r&&r.isDash===n.isDash&&(r.left=n.left,e.splice(t,1))}var i=e[0],a=e[e.length-1];i.isDash===a.isDash&&(i.left=a.left-this.width,a.right=i.right+this.width);for(var o=this.width*this.nextRow,s=0,l=e[s],c=0;c1&&(l=e[++s]);var u=Math.abs(c-l.left),f=Math.abs(c-l.right),d=Math.min(u,f),h=l.isDash?d:-d;this.data[o+c]=Math.max(0,Math.min(255,h+128))}},E.prototype.addDash=function(t,n){var r=n?7:0,i=2*r+1;if(this.nextRow+i>this.height)return e.warnOnce("LineAtlas out of space"),null;for(var a=0,o=0;o=r.minX&&t.x=r.minY&&t.y0&&(l[new e.OverscaledTileID(t.overscaledZ,a,n.z,i,n.y-1).key]={backfilled:!1},l[new e.OverscaledTileID(t.overscaledZ,t.wrap,n.z,n.x,n.y-1).key]={backfilled:!1},l[new e.OverscaledTileID(t.overscaledZ,s,n.z,o,n.y-1).key]={backfilled:!1}),n.y+10&&(r.resourceTiming=t._resourceTiming,t._resourceTiming=[]),t.fire(new e.Event("data",r))}}))},n.prototype.onAdd=function(e){this.map=e,this.load()},n.prototype.setData=function(t){var n=this;return this._data=t,this.fire(new e.Event("dataloading",{dataType:"source"})),this._updateWorkerData((function(t){if(t)n.fire(new e.ErrorEvent(t));else{var r={dataType:"source",sourceDataType:"content"};n._collectResourceTiming&&n._resourceTiming&&n._resourceTiming.length>0&&(r.resourceTiming=n._resourceTiming,n._resourceTiming=[]),n.fire(new e.Event("data",r))}})),this},n.prototype.getClusterExpansionZoom=function(e,t){return this.actor.send("geojson.getClusterExpansionZoom",{clusterId:e,source:this.id},t),this},n.prototype.getClusterChildren=function(e,t){return this.actor.send("geojson.getClusterChildren",{clusterId:e,source:this.id},t),this},n.prototype.getClusterLeaves=function(e,t,n,r){return this.actor.send("geojson.getClusterLeaves",{source:this.id,clusterId:e,limit:t,offset:n},r),this},n.prototype._updateWorkerData=function(t){var n=this;this._loaded=!1;var r=e.extend({},this.workerOptions),i=this._data;"string"===typeof i?(r.request=this.map._requestManager.transformRequest(e.browser.resolveURL(i),e.ResourceType.Source),r.request.collectResourceTiming=this._collectResourceTiming):r.data=JSON.stringify(i),this.actor.send(this.type+".loadData",r,(function(e,i){n._removed||i&&i.abandoned||(n._loaded=!0,i&&i.resourceTiming&&i.resourceTiming[n.id]&&(n._resourceTiming=i.resourceTiming[n.id].slice(0)),n.actor.send(n.type+".coalesce",{source:r.source},null),t(e))}))},n.prototype.loaded=function(){return this._loaded},n.prototype.loadTile=function(t,n){var r=this,i=t.actor?"reloadTile":"loadTile";t.actor=this.actor;var a={type:this.type,uid:t.uid,tileID:t.tileID,zoom:t.tileID.overscaledZ,maxZoom:this.maxzoom,tileSize:this.tileSize,source:this.id,pixelRatio:e.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes,promoteId:this.promoteId};t.request=this.actor.send(i,a,(function(e,a){return delete t.request,t.unloadVectorData(),t.aborted?n(null):e?n(e):(t.loadVectorData(a,r.map.painter,"reloadTile"===i),n(null))}))},n.prototype.abortTile=function(e){e.request&&(e.request.cancel(),delete e.request),e.aborted=!0},n.prototype.unloadTile=function(e){e.unloadVectorData(),this.actor.send("removeTile",{uid:e.uid,type:this.type,source:this.id})},n.prototype.onRemove=function(){this._removed=!0,this.actor.send("removeSource",{type:this.type,source:this.id})},n.prototype.serialize=function(){return e.extend({},this._options,{type:this.type,data:this._data})},n.prototype.hasTransition=function(){return!1},n}(e.Evented),D=e.createLayout([{name:"a_pos",type:"Int16",components:2},{name:"a_texture_pos",type:"Int16",components:2}]),F=function(t){function n(e,n,r,i){t.call(this),this.id=e,this.dispatcher=r,this.coordinates=n.coordinates,this.type="image",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this.tiles={},this._loaded=!1,this.setEventedParent(i),this.options=n}return t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n,n.prototype.load=function(t,n){var r=this;this._loaded=!1,this.fire(new e.Event("dataloading",{dataType:"source"})),this.url=this.options.url,e.getImage(this.map._requestManager.transformRequest(this.url,e.ResourceType.Image),(function(i,a){r._loaded=!0,i?r.fire(new e.ErrorEvent(i)):a&&(r.image=a,t&&(r.coordinates=t),n&&n(),r._finishLoading())}))},n.prototype.loaded=function(){return this._loaded},n.prototype.updateImage=function(e){var t=this;return this.image&&e.url?(this.options.url=e.url,this.load(e.coordinates,(function(){t.texture=null})),this):this},n.prototype._finishLoading=function(){this.map&&(this.setCoordinates(this.coordinates),this.fire(new e.Event("data",{dataType:"source",sourceDataType:"metadata"})))},n.prototype.onAdd=function(e){this.map=e,this.load()},n.prototype.setCoordinates=function(t){var n=this;this.coordinates=t;var r=t.map(e.MercatorCoordinate.fromLngLat);this.tileID=N(r),this.minzoom=this.maxzoom=this.tileID.z;var i=r.map((function(e){return n.tileID.getTilePoint(e)._round()}));return this._boundsArray=new e.StructArrayLayout4i8,this._boundsArray.emplaceBack(i[0].x,i[0].y,0,0),this._boundsArray.emplaceBack(i[1].x,i[1].y,e.EXTENT,0),this._boundsArray.emplaceBack(i[3].x,i[3].y,0,e.EXTENT),this._boundsArray.emplaceBack(i[2].x,i[2].y,e.EXTENT,e.EXTENT),this.boundsBuffer&&(this.boundsBuffer.destroy(),delete this.boundsBuffer),this.fire(new e.Event("data",{dataType:"source",sourceDataType:"content"})),this},n.prototype.prepare=function(){if(0!==Object.keys(this.tiles).length&&this.image){var t=this.map.painter.context,n=t.gl;for(var r in this.boundsBuffer||(this.boundsBuffer=t.createVertexBuffer(this._boundsArray,D.members)),this.boundsSegments||(this.boundsSegments=e.SegmentVector.simpleSegment(0,0,4,2)),this.texture||(this.texture=new e.Texture(t,this.image,n.RGBA),this.texture.bind(n.LINEAR,n.CLAMP_TO_EDGE)),this.tiles){var i=this.tiles[r];"loaded"!==i.state&&(i.state="loaded",i.texture=this.texture)}}},n.prototype.loadTile=function(e,t){this.tileID&&this.tileID.equals(e.tileID.canonical)?(this.tiles[String(e.tileID.wrap)]=e,e.buckets={},t(null)):(e.state="errored",t(null))},n.prototype.serialize=function(){return{type:"image",url:this.options.url,coordinates:this.coordinates}},n.prototype.hasTransition=function(){return!1},n}(e.Evented);function N(t){for(var n=1/0,r=1/0,i=-1/0,a=-1/0,o=0,s=t;on.end(0)?this.fire(new e.ErrorEvent(new e.ValidationError("sources."+this.id,null,"Playback for this video can be set only between the "+n.start(0)+" and "+n.end(0)+"-second mark."))):this.video.currentTime=t}},n.prototype.getVideo=function(){return this.video},n.prototype.onAdd=function(e){this.map||(this.map=e,this.load(),this.video&&(this.video.play(),this.setCoordinates(this.coordinates)))},n.prototype.prepare=function(){if(!(0===Object.keys(this.tiles).length||this.video.readyState<2)){var t=this.map.painter.context,n=t.gl;for(var r in this.boundsBuffer||(this.boundsBuffer=t.createVertexBuffer(this._boundsArray,D.members)),this.boundsSegments||(this.boundsSegments=e.SegmentVector.simpleSegment(0,0,4,2)),this.texture?this.video.paused||(this.texture.bind(n.LINEAR,n.CLAMP_TO_EDGE),n.texSubImage2D(n.TEXTURE_2D,0,0,0,n.RGBA,n.UNSIGNED_BYTE,this.video)):(this.texture=new e.Texture(t,this.video,n.RGBA),this.texture.bind(n.LINEAR,n.CLAMP_TO_EDGE)),this.tiles){var i=this.tiles[r];"loaded"!==i.state&&(i.state="loaded",i.texture=this.texture)}}},n.prototype.serialize=function(){return{type:"video",urls:this.urls,coordinates:this.coordinates}},n.prototype.hasTransition=function(){return this.video&&!this.video.paused},n}(F),j=function(t){function n(n,r,i,a){t.call(this,n,r,i,a),r.coordinates?Array.isArray(r.coordinates)&&4===r.coordinates.length&&!r.coordinates.some((function(e){return!Array.isArray(e)||2!==e.length||e.some((function(e){return"number"!==typeof e}))}))||this.fire(new e.ErrorEvent(new e.ValidationError("sources."+n,null,'"coordinates" property must be an array of 4 longitude/latitude array pairs'))):this.fire(new e.ErrorEvent(new e.ValidationError("sources."+n,null,'missing required property "coordinates"'))),r.animate&&"boolean"!==typeof r.animate&&this.fire(new e.ErrorEvent(new e.ValidationError("sources."+n,null,'optional "animate" property must be a boolean value'))),r.canvas?"string"===typeof r.canvas||r.canvas instanceof e.window.HTMLCanvasElement||this.fire(new e.ErrorEvent(new e.ValidationError("sources."+n,null,'"canvas" must be either a string representing the ID of the canvas element from which to read, or an HTMLCanvasElement instance'))):this.fire(new e.ErrorEvent(new e.ValidationError("sources."+n,null,'missing required property "canvas"'))),this.options=r,this.animate=void 0===r.animate||r.animate}return t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n,n.prototype.load=function(){this._loaded=!0,this.canvas||(this.canvas=this.options.canvas instanceof e.window.HTMLCanvasElement?this.options.canvas:e.window.document.getElementById(this.options.canvas)),this.width=this.canvas.width,this.height=this.canvas.height,this._hasInvalidDimensions()?this.fire(new e.ErrorEvent(new Error("Canvas dimensions cannot be less than or equal to zero."))):(this.play=function(){this._playing=!0,this.map.triggerRepaint()},this.pause=function(){this._playing&&(this.prepare(),this._playing=!1)},this._finishLoading())},n.prototype.getCanvas=function(){return this.canvas},n.prototype.onAdd=function(e){this.map=e,this.load(),this.canvas&&this.animate&&this.play()},n.prototype.onRemove=function(){this.pause()},n.prototype.prepare=function(){var t=!1;if(this.canvas.width!==this.width&&(this.width=this.canvas.width,t=!0),this.canvas.height!==this.height&&(this.height=this.canvas.height,t=!0),!this._hasInvalidDimensions()&&0!==Object.keys(this.tiles).length){var n=this.map.painter.context,r=n.gl;for(var i in this.boundsBuffer||(this.boundsBuffer=n.createVertexBuffer(this._boundsArray,D.members)),this.boundsSegments||(this.boundsSegments=e.SegmentVector.simpleSegment(0,0,4,2)),this.texture?(t||this._playing)&&this.texture.update(this.canvas,{premultiply:!0}):this.texture=new e.Texture(n,this.canvas,r.RGBA,{premultiply:!0}),this.tiles){var a=this.tiles[i];"loaded"!==a.state&&(a.state="loaded",a.texture=this.texture)}}},n.prototype.serialize=function(){return{type:"canvas",coordinates:this.coordinates}},n.prototype.hasTransition=function(){return this._playing},n.prototype._hasInvalidDimensions=function(){for(var e=0,t=[this.canvas.width,this.canvas.height];ethis.max){var o=this._getAndRemoveByKey(this.order[0]);o&&this.onRemove(o)}return this},X.prototype.has=function(e){return e.wrapped().key in this.data},X.prototype.getAndRemove=function(e){return this.has(e)?this._getAndRemoveByKey(e.wrapped().key):null},X.prototype._getAndRemoveByKey=function(e){var t=this.data[e].shift();return t.timeout&&clearTimeout(t.timeout),0===this.data[e].length&&delete this.data[e],this.order.splice(this.order.indexOf(e),1),t.value},X.prototype.getByKey=function(e){var t=this.data[e];return t?t[0].value:null},X.prototype.get=function(e){return this.has(e)?this.data[e.wrapped().key][0].value:null},X.prototype.remove=function(e,t){if(!this.has(e))return this;var n=e.wrapped().key,r=void 0===t?0:this.data[n].indexOf(t),i=this.data[n][r];return this.data[n].splice(r,1),i.timeout&&clearTimeout(i.timeout),0===this.data[n].length&&delete this.data[n],this.onRemove(i.value),this.order.splice(this.order.indexOf(n),1),this},X.prototype.setMaxSize=function(e){for(this.max=e;this.order.length>this.max;){var t=this._getAndRemoveByKey(this.order[0]);t&&this.onRemove(t)}return this},X.prototype.filter=function(e){var t=[];for(var n in this.data)for(var r=0,i=this.data[n];r1||(Math.abs(n)>1&&(1===Math.abs(n+i)?n+=i:1===Math.abs(n-i)&&(n-=i)),t.dem&&e.dem&&(e.dem.backfillBorder(t.dem,n,r),e.neighboringTiles&&e.neighboringTiles[a]&&(e.neighboringTiles[a].backfilled=!0)))}},n.prototype.getTile=function(e){return this.getTileByID(e.key)},n.prototype.getTileByID=function(e){return this._tiles[e]},n.prototype._retainLoadedChildren=function(e,t,n,r){for(var i in this._tiles){var a=this._tiles[i];if(!(r[i]||!a.hasData()||a.tileID.overscaledZ<=t||a.tileID.overscaledZ>n)){for(var o=a.tileID;a&&a.tileID.overscaledZ>t+1;){var s=a.tileID.scaledTo(a.tileID.overscaledZ-1);(a=this._tiles[s.key])&&a.hasData()&&(o=s)}for(var l=o;l.overscaledZ>t;)if(e[(l=l.scaledTo(l.overscaledZ-1)).key]){r[o.key]=o;break}}}},n.prototype.findLoadedParent=function(e,t){if(e.key in this._loadedParentTiles){var n=this._loadedParentTiles[e.key];return n&&n.tileID.overscaledZ>=t?n:null}for(var r=e.overscaledZ-1;r>=t;r--){var i=e.scaledTo(r),a=this._getLoadedTile(i);if(a)return a}},n.prototype._getLoadedTile=function(e){var t=this._tiles[e.key];return t&&t.hasData()?t:this._cache.getByKey(e.wrapped().key)},n.prototype.updateCacheSize=function(e){var t=(Math.ceil(e.width/this._source.tileSize)+1)*(Math.ceil(e.height/this._source.tileSize)+1),n=5,r=Math.floor(t*n),i="number"===typeof this._maxTileCacheSize?Math.min(this._maxTileCacheSize,r):r;this._cache.setMaxSize(i)},n.prototype.handleWrapJump=function(e){var t=(e-(void 0===this._prevLng?e:this._prevLng))/360,n=Math.round(t);if(this._prevLng=e,n){var r={};for(var i in this._tiles){var a=this._tiles[i];a.tileID=a.tileID.unwrapTo(a.tileID.wrap+n),r[a.tileID.key]=a}for(var o in this._tiles=r,this._timers)clearTimeout(this._timers[o]),delete this._timers[o];for(var s in this._tiles){var l=this._tiles[s];this._setTileReloadTimer(s,l)}}},n.prototype.update=function(t){var r=this;if(this.transform=t,this._sourceLoaded&&!this._paused){var i;this.updateCacheSize(t),this.handleWrapJump(this.transform.center.lng),this._coveredTiles={},this.used?this._source.tileID?i=t.getVisibleUnwrappedCoordinates(this._source.tileID).map((function(t){return new e.OverscaledTileID(t.canonical.z,t.wrap,t.canonical.z,t.canonical.x,t.canonical.y)})):(i=t.coveringTiles({tileSize:this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom,reparseOverscaled:this._source.reparseOverscaled}),this._source.hasTile&&(i=i.filter((function(e){return r._source.hasTile(e)})))):i=[];var a=t.coveringZoomLevel(this._source),o=Math.max(a-n.maxOverzooming,this._source.minzoom),s=Math.max(a+n.maxUnderzooming,this._source.minzoom),l=this._updateRetainedTiles(i,a);if(Je(this._source.type)){for(var c={},u={},f=0,d=Object.keys(l);fthis._source.maxzoom){var m=p.children(this._source.maxzoom)[0],g=this.getTile(m);if(g&&g.hasData()){r[m.key]=m;continue}}else{var y=p.children(this._source.maxzoom);if(r[y[0].key]&&r[y[1].key]&&r[y[2].key]&&r[y[3].key])continue}for(var b=v.wasRequested(),x=p.overscaledZ-1;x>=a;--x){var w=p.scaledTo(x);if(i[w.key])break;if(i[w.key]=!0,!(v=this.getTile(w))&&b&&(v=this._addTile(w)),v&&(r[w.key]=w,b=v.wasRequested(),v.hasData()))break}}}return r},n.prototype._updateLoadedParentTileCache=function(){for(var e in this._loadedParentTiles={},this._tiles){for(var t=[],n=void 0,r=this._tiles[e].tileID;r.overscaledZ>0;){if(r.key in this._loadedParentTiles){n=this._loadedParentTiles[r.key];break}t.push(r.key);var i=r.scaledTo(r.overscaledZ-1);if(n=this._getLoadedTile(i))break;r=i}for(var a=0,o=t;a0||(t.hasData()&&"reloading"!==t.state?this._cache.add(t.tileID,t,t.getExpiryTimeout()):(t.aborted=!0,this._abortTile(t),this._unloadTile(t))))},n.prototype.clearTiles=function(){for(var e in this._shouldReloadOnResume=!1,this._paused=!1,this._tiles)this._removeTile(e);this._cache.reset()},n.prototype.tilesIn=function(t,n,r){var i=this,a=[],o=this.transform;if(!o)return a;for(var s=r?o.getCameraQueryGeometry(t):t,l=t.map((function(e){return o.pointCoordinate(e)})),c=s.map((function(e){return o.pointCoordinate(e)})),u=this.getIds(),f=1/0,d=1/0,h=-1/0,p=-1/0,v=0,m=c;v=0&&g[1].y+m>=0){var y=l.map((function(e){return s.getTilePoint(e)})),b=c.map((function(e){return s.getTilePoint(e)}));a.push({tile:r,tileID:s,queryGeometry:y,cameraQueryGeometry:b,scale:v})}}},b=0;b=e.browser.now())return!0}return!1},n.prototype.setFeatureState=function(e,t,n){e=e||"_geojsonTileLayer",this._state.updateState(e,t,n)},n.prototype.removeFeatureState=function(e,t,n){e=e||"_geojsonTileLayer",this._state.removeFeatureState(e,t,n)},n.prototype.getFeatureState=function(e,t){return e=e||"_geojsonTileLayer",this._state.getState(e,t)},n.prototype.setDependencies=function(e,t,n){var r=this._tiles[e];r&&r.setDependencies(t,n)},n.prototype.reloadTilesForDependencies=function(e,t){for(var n in this._tiles)this._tiles[n].hasDependency(e,t)&&this._reloadTile(n,"reloading");this._cache.filter((function(n){return!n.hasDependency(e,t)}))},n}(e.Evented);function Xe(e,t){var n=Math.abs(2*e.wrap)-+(e.wrap<0),r=Math.abs(2*t.wrap)-+(t.wrap<0);return e.overscaledZ-t.overscaledZ||r-n||t.canonical.y-e.canonical.y||t.canonical.x-e.canonical.x}function Je(e){return"raster"===e||"image"===e||"video"===e}function Qe(){return new e.window.Worker(us.workerUrl)}Ke.maxOverzooming=10,Ke.maxUnderzooming=3;var et="mapboxgl_preloaded_worker_pool",tt=function(){this.active={}};tt.prototype.acquire=function(e){if(!this.workers)for(this.workers=[];this.workers.length0?(i-o)/s:0;return this.points[a].mult(1-l).add(this.points[n].mult(l))};var _t=function(e,t,n){var r=this.boxCells=[],i=this.circleCells=[];this.xCellCount=Math.ceil(e/n),this.yCellCount=Math.ceil(t/n);for(var a=0;a=-t[0]&&n<=t[0]&&r>=-t[1]&&r<=t[1]}function Ct(t,n,r,i,a,o,s,l){var c=i?t.textSizeData:t.iconSizeData,u=e.evaluateSizeForZoom(c,r.transform.zoom),f=[256/r.width*2+1,256/r.height*2+1],d=i?t.text.dynamicLayoutVertexArray:t.icon.dynamicLayoutVertexArray;d.clear();for(var h=t.lineVertexArray,p=i?t.text.placedSymbolArray:t.icon.placedSymbolArray,v=r.transform.width/r.transform.height,m=!1,g=0;gMath.abs(r.x-n.x)*i?{useVertical:!0}:(t===e.WritingMode.vertical?n.yr.x)?{needsFlipping:!0}:null}function Pt(t,n,r,i,a,o,s,l,c,u,f,d,h,p){var v,m=n/24,g=t.lineOffsetX*m,y=t.lineOffsetY*m;if(t.numGlyphs>1){var b=t.glyphStartIndex+t.numGlyphs,x=t.lineStartIndex,w=t.lineStartIndex+t.lineLength,_=Mt(m,l,g,y,r,f,d,t,c,o,h);if(!_)return{notEnoughRoom:!0};var k=Tt(_.first.point,s).point,S=Tt(_.last.point,s).point;if(i&&!r){var T=Ot(t.writingMode,k,S,p);if(T)return T}v=[_.first];for(var A=t.glyphStartIndex+1;A0?O.point:Lt(d,M,E,1,a),L=Ot(t.writingMode,E,P,p);if(L)return L}var I=It(m*l.getoffsetX(t.glyphStartIndex),g,y,r,f,d,t.segment,t.lineStartIndex,t.lineStartIndex+t.lineLength,c,o,h);if(!I)return{notEnoughRoom:!0};v=[I]}for(var R=0,D=v;R0?1:-1,v=0;i&&(p*=-1,v=Math.PI),p<0&&(v+=Math.PI);for(var m=p>0?l+s:l+s+1,g=a,y=a,b=0,x=0,w=Math.abs(h),_=[];b+x<=w;){if((m+=p)=c)return null;if(y=g,_.push(g),void 0===(g=d[m])){var k=new e.Point(u.getx(m),u.gety(m)),S=Tt(k,f);if(S.signedDistanceFromCamera>0)g=d[m]=S.point;else{var T=m-p;g=Lt(0===b?o:new e.Point(u.getx(T),u.gety(T)),k,y,w-b+1,f)}}b+=x,x=y.dist(g)}var A=(w-b)/x,E=g.sub(y),C=E.mult(A)._add(y);C._add(E._unit()._perp()._mult(r*p));var M=v+Math.atan2(g.y-y.y,g.x-y.x);return _.push(C),{point:C,angle:M,path:_}}_t.prototype.keysLength=function(){return this.boxKeys.length+this.circleKeys.length},_t.prototype.insert=function(e,t,n,r,i){this._forEachCell(t,n,r,i,this._insertBoxCell,this.boxUid++),this.boxKeys.push(e),this.bboxes.push(t),this.bboxes.push(n),this.bboxes.push(r),this.bboxes.push(i)},_t.prototype.insertCircle=function(e,t,n,r){this._forEachCell(t-r,n-r,t+r,n+r,this._insertCircleCell,this.circleUid++),this.circleKeys.push(e),this.circles.push(t),this.circles.push(n),this.circles.push(r)},_t.prototype._insertBoxCell=function(e,t,n,r,i,a){this.boxCells[i].push(a)},_t.prototype._insertCircleCell=function(e,t,n,r,i,a){this.circleCells[i].push(a)},_t.prototype._query=function(e,t,n,r,i,a){if(n<0||e>this.width||r<0||t>this.height)return!i&&[];var o=[];if(e<=0&&t<=0&&this.width<=n&&this.height<=r){if(i)return!0;for(var s=0;s0:o},_t.prototype._queryCircle=function(e,t,n,r,i){var a=e-n,o=e+n,s=t-n,l=t+n;if(o<0||a>this.width||l<0||s>this.height)return!r&&[];var c=[],u={hitTest:r,circle:{x:e,y:t,radius:n},seenUids:{box:{},circle:{}}};return this._forEachCell(a,s,o,l,this._queryCellCircle,c,u,i),r?c.length>0:c},_t.prototype.query=function(e,t,n,r,i){return this._query(e,t,n,r,!1,i)},_t.prototype.hitTest=function(e,t,n,r,i){return this._query(e,t,n,r,!0,i)},_t.prototype.hitTestCircle=function(e,t,n,r){return this._queryCircle(e,t,n,!0,r)},_t.prototype._queryCell=function(e,t,n,r,i,a,o,s){var l=o.seenUids,c=this.boxCells[i];if(null!==c)for(var u=this.bboxes,f=0,d=c;f=u[p+0]&&r>=u[p+1]&&(!s||s(this.boxKeys[h]))){if(o.hitTest)return a.push(!0),!0;a.push({key:this.boxKeys[h],x1:u[p],y1:u[p+1],x2:u[p+2],y2:u[p+3]})}}}var v=this.circleCells[i];if(null!==v)for(var m=this.circles,g=0,y=v;go*o+s*s},_t.prototype._circleAndRectCollide=function(e,t,n,r,i,a,o){var s=(a-r)/2,l=Math.abs(e-(r+s));if(l>s+n)return!1;var c=(o-i)/2,u=Math.abs(t-(i+c));if(u>c+n)return!1;if(l<=s||u<=c)return!0;var f=l-s,d=u-c;return f*f+d*d<=n*n};var Rt=new Float32Array([-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0]);function Dt(e,t){for(var n=0;n=1;L--)P.push(M.path[L]);for(var I=1;I0){for(var N=P[0].clone(),z=P[0].clone(),j=1;j=A.x&&z.x<=E.x&&N.y>=A.y&&z.y<=E.y?[P]:z.xE.x||z.yE.y?[]:e.clipLine([P],A.x,A.y,E.x,E.y)}for(var B=0,U=F;B=this.screenRightBoundary||rthis.screenBottomBoundary},zt.prototype.isInsideGrid=function(e,t,n,r){return n>=0&&e=0&&t0?(this.prevPlacement&&this.prevPlacement.variableOffsets[f.crossTileID]&&this.prevPlacement.placements[f.crossTileID]&&this.prevPlacement.placements[f.crossTileID].text&&(v=this.prevPlacement.variableOffsets[f.crossTileID].anchor),this.variableOffsets[f.crossTileID]={textOffset:m,width:n,height:r,anchor:e,textBoxScale:i,prevAnchor:v},this.markUsedJustification(d,e,f,h),d.allowVerticalPlacement&&(this.markUsedOrientation(d,h,f),this.placedOrientations[f.crossTileID]=h),{shift:g,placedGlyphBoxes:y}):void 0},Zt.prototype.placeLayerBucketPart=function(t,n,r){var i=this,a=t.parameters,o=a.bucket,s=a.layout,l=a.posMatrix,c=a.textLabelPlaneMatrix,u=a.labelToScreenMatrix,f=a.textPixelRatio,d=a.holdingForFade,h=a.collisionBoxArray,p=a.partiallyEvaluatedTextSize,v=a.collisionGroup,m=s.get("text-optional"),g=s.get("icon-optional"),y=s.get("text-allow-overlap"),b=s.get("icon-allow-overlap"),x="map"===s.get("text-rotation-alignment"),w="map"===s.get("text-pitch-alignment"),_="none"!==s.get("icon-text-fit"),k="viewport-y"===s.get("symbol-z-order"),S=y&&(b||!o.hasIconData()||g),T=b&&(y||!o.hasTextData()||m);!o.collisionArrays&&h&&o.deserializeCollisionBoxes(h);var A=function(t,a){if(!n[t.crossTileID])if(d)i.placements[t.crossTileID]=new Ht(!1,!1,!1);else{var h=!1,k=!1,A=!0,E=null,C={box:null,offscreen:null},M={box:null,offscreen:null},O=null,P=null,L=null,I=0,R=0,D=0;a.textFeatureIndex?I=a.textFeatureIndex:t.useRuntimeCollisionCircles&&(I=t.featureIndex),a.verticalTextFeatureIndex&&(R=a.verticalTextFeatureIndex);var F=a.textBox;if(F){var N=function(n){var r=e.WritingMode.horizontal;if(o.allowVerticalPlacement&&!n&&i.prevPlacement){var a=i.prevPlacement.placedOrientations[t.crossTileID];a&&(i.placedOrientations[t.crossTileID]=a,r=a,i.markUsedOrientation(o,r,t))}return r},z=function(n,r){if(o.allowVerticalPlacement&&t.numVerticalGlyphVertices>0&&a.verticalTextBox)for(var i=0,s=o.writingModes;i0&&(j=j.filter((function(e){return e!==B.anchor}))).unshift(B.anchor)}var U=function(e,n,r){for(var a=e.x2-e.x1,s=e.y2-e.y1,c=t.textBoxScale,u=_&&!b?n:null,d={box:[],offscreen:!1},p=y?2*j.length:j.length,m=0;m=j.length,S=i.attemptAnchorPlacement(g,e,a,s,c,x,w,f,l,v,k,t,o,r,u);if(S&&(d=S.placedGlyphBoxes)&&d.box&&d.box.length){h=!0,E=S.shift;break}}return d};z((function(){return U(F,a.iconBox,e.WritingMode.horizontal)}),(function(){var n=a.verticalTextBox,r=C&&C.box&&C.box.length;return o.allowVerticalPlacement&&!r&&t.numVerticalGlyphVertices>0&&n?U(n,a.verticalIconBox,e.WritingMode.vertical):{box:null,offscreen:null}})),C&&(h=C.box,A=C.offscreen);var H=N(C&&C.box);if(!h&&i.prevPlacement){var $=i.prevPlacement.variableOffsets[t.crossTileID];$&&(i.variableOffsets[t.crossTileID]=$,i.markUsedJustification(o,$.anchor,t,H))}}else{var V=function(e,n){var r=i.collisionIndex.placeCollisionBox(e,y,f,l,v.predicate);return r&&r.box&&r.box.length&&(i.markUsedOrientation(o,n,t),i.placedOrientations[t.crossTileID]=n),r};z((function(){return V(F,e.WritingMode.horizontal)}),(function(){var n=a.verticalTextBox;return o.allowVerticalPlacement&&t.numVerticalGlyphVertices>0&&n?V(n,e.WritingMode.vertical):{box:null,offscreen:null}})),N(C&&C.box&&C.box.length)}}if(h=(O=C)&&O.box&&O.box.length>0,A=O&&O.offscreen,t.useRuntimeCollisionCircles){var W=o.text.placedSymbolArray.get(t.centerJustifiedTextSymbolIndex),q=e.evaluateSizeForFeature(o.textSizeData,p,W),G=s.get("text-padding"),Z=t.collisionCircleDiameter;P=i.collisionIndex.placeCollisionCircles(y,W,o.lineVertexArray,o.glyphOffsetArray,q,l,c,u,r,w,v.predicate,Z,G),h=y||P.circles.length>0&&!P.collisionDetected,A=A&&P.offscreen}if(a.iconFeatureIndex&&(D=a.iconFeatureIndex),a.iconBox){var Y=function(e){var t=_&&E?Gt(e,E.x,E.y,x,w,i.transform.angle):e;return i.collisionIndex.placeCollisionBox(t,b,f,l,v.predicate)};k=M&&M.box&&M.box.length&&a.verticalIconBox?(L=Y(a.verticalIconBox)).box.length>0:(L=Y(a.iconBox)).box.length>0,A=A&&L.offscreen}var K=m||0===t.numHorizontalGlyphVertices&&0===t.numVerticalGlyphVertices,X=g||0===t.numIconVertices;if(K||X?X?K||(k=k&&h):h=k&&h:k=h=k&&h,h&&O&&O.box&&(M&&M.box&&R?i.collisionIndex.insertCollisionBox(O.box,s.get("text-ignore-placement"),o.bucketInstanceId,R,v.ID):i.collisionIndex.insertCollisionBox(O.box,s.get("text-ignore-placement"),o.bucketInstanceId,I,v.ID)),k&&L&&i.collisionIndex.insertCollisionBox(L.box,s.get("icon-ignore-placement"),o.bucketInstanceId,D,v.ID),P&&(h&&i.collisionIndex.insertCollisionCircles(P.circles,s.get("text-ignore-placement"),o.bucketInstanceId,I,v.ID),r)){var J=o.bucketInstanceId,Q=i.collisionCircleArrays[J];void 0===Q&&(Q=i.collisionCircleArrays[J]=new $t);for(var ee=0;ee=0;--C){var M=E[C];A(o.symbolInstances.get(M),o.collisionArrays[M])}else for(var O=t.symbolInstanceStart;O=0&&(t.text.placedSymbolArray.get(c).crossTileID=a>=0&&c!==a?0:r.crossTileID)}},Zt.prototype.markUsedOrientation=function(t,n,r){for(var i=n===e.WritingMode.horizontal||n===e.WritingMode.horizontalOnly?n:0,a=n===e.WritingMode.vertical?n:0,o=0,s=[r.leftJustifiedTextSymbolIndex,r.centerJustifiedTextSymbolIndex,r.rightJustifiedTextSymbolIndex];o0||l>0,b=a.numIconVertices>0,x=i.placedOrientations[a.crossTileID],w=x===e.WritingMode.vertical,_=x===e.WritingMode.horizontal||x===e.WritingMode.horizontalOnly;if(y){var k=rn(g.text),S=w?an:k;p(t.text,s,S);var T=_?an:k;p(t.text,l,T);var A=g.text.isHidden();[a.rightJustifiedTextSymbolIndex,a.centerJustifiedTextSymbolIndex,a.leftJustifiedTextSymbolIndex].forEach((function(e){e>=0&&(t.text.placedSymbolArray.get(e).hidden=A||w?1:0)})),a.verticalPlacedTextSymbolIndex>=0&&(t.text.placedSymbolArray.get(a.verticalPlacedTextSymbolIndex).hidden=A||_?1:0);var E=i.variableOffsets[a.crossTileID];E&&i.markUsedJustification(t,E.anchor,a,x);var C=i.placedOrientations[a.crossTileID];C&&(i.markUsedJustification(t,"left",a,C),i.markUsedOrientation(t,C,a))}if(b){var M=rn(g.icon),O=!(d&&a.verticalPlacedIconSymbolIndex&&w);if(a.placedIconSymbolIndex>=0){var P=O?M:an;p(t.icon,a.numIconVertices,P),t.icon.placedSymbolArray.get(a.placedIconSymbolIndex).hidden=g.icon.isHidden()}if(a.verticalPlacedIconSymbolIndex>=0){var L=O?an:M;p(t.icon,a.numVerticalIconVertices,L),t.icon.placedSymbolArray.get(a.verticalPlacedIconSymbolIndex).hidden=g.icon.isHidden()}}if(t.hasIconCollisionBoxData()||t.hasTextCollisionBoxData()){var I=t.collisionArrays[r];if(I){var R=new e.Point(0,0);if(I.textBox||I.verticalTextBox){var D=!0;if(c){var F=i.variableOffsets[v];F?(R=qt(F.anchor,F.width,F.height,F.textOffset,F.textBoxScale),u&&R._rotate(f?i.transform.angle:-i.transform.angle)):D=!1}I.textBox&&Yt(t.textCollisionBox.collisionVertexArray,g.text.placed,!D||w,R.x,R.y),I.verticalTextBox&&Yt(t.textCollisionBox.collisionVertexArray,g.text.placed,!D||_,R.x,R.y)}var N=Boolean(!_&&I.verticalIconBox);I.iconBox&&Yt(t.iconCollisionBox.collisionVertexArray,g.icon.placed,N,d?R.x:0,d?R.y:0),I.verticalIconBox&&Yt(t.iconCollisionBox.collisionVertexArray,g.icon.placed,!N,d?R.x:0,d?R.y:0)}}},m=0;me},Zt.prototype.setStale=function(){this.stale=!0};var Kt=Math.pow(2,25),Xt=Math.pow(2,24),Jt=Math.pow(2,17),Qt=Math.pow(2,16),en=Math.pow(2,9),tn=Math.pow(2,8),nn=Math.pow(2,1);function rn(e){if(0===e.opacity&&!e.placed)return 0;if(1===e.opacity&&e.placed)return 4294967295;var t=e.placed?1:0,n=Math.floor(127*e.opacity);return n*Kt+t*Xt+n*Jt+t*Qt+n*en+t*tn+n*nn+t}var an=0,on=function(e){this._sortAcrossTiles="viewport-y"!==e.layout.get("symbol-z-order")&&void 0!==e.layout.get("symbol-sort-key").constantOr(1),this._currentTileIndex=0,this._currentPartIndex=0,this._seenCrossTileIDs={},this._bucketParts=[]};on.prototype.continuePlacement=function(e,t,n,r,i){for(var a=this._bucketParts;this._currentTileIndex2};this._currentPlacementIndex>=0;){var s=n[t[this._currentPlacementIndex]],l=this.placement.collisionIndex.transform.zoom;if("symbol"===s.type&&(!s.minzoom||s.minzoom<=l)&&(!s.maxzoom||s.maxzoom>l)){if(this._inProgressLayer||(this._inProgressLayer=new on(s)),this._inProgressLayer.continuePlacement(r[s.source],this.placement,this._showCollisionBoxes,s,o))return;delete this._inProgressLayer}this._currentPlacementIndex--}this._done=!0},sn.prototype.commit=function(e){return this.placement.commit(e),this.placement};var ln=512/e.EXTENT/2,cn=function(e,t,n){this.tileID=e,this.indexedSymbolInstances={},this.bucketInstanceId=n;for(var r=0;re.overscaledZ)for(var s in o){var l=o[s];l.tileID.isChildOf(e)&&l.findMatches(t.symbolInstances,e,i)}else{var c=o[e.scaledTo(Number(a)).key];c&&c.findMatches(t.symbolInstances,e,i)}}for(var u=0;u0)throw new Error("Unimplemented: "+i.map((function(e){return e.command})).join(", ")+".");return r.forEach((function(e){"setTransition"!==e.command&&n[e.command].apply(n,e.args)})),this.stylesheet=t,!0},n.prototype.addImage=function(t,n){if(this.getImage(t))return this.fire(new e.ErrorEvent(new Error("An image with this name already exists.")));this.imageManager.addImage(t,n),this._availableImages=this.imageManager.listImages(),this._changedImages[t]=!0,this._changed=!0,this.fire(new e.Event("data",{dataType:"style"}))},n.prototype.updateImage=function(e,t){this.imageManager.updateImage(e,t)},n.prototype.getImage=function(e){return this.imageManager.getImage(e)},n.prototype.removeImage=function(t){if(!this.getImage(t))return this.fire(new e.ErrorEvent(new Error("No image with this name exists.")));this.imageManager.removeImage(t),this._availableImages=this.imageManager.listImages(),this._changedImages[t]=!0,this._changed=!0,this.fire(new e.Event("data",{dataType:"style"}))},n.prototype.listImages=function(){return this._checkLoaded(),this.imageManager.listImages()},n.prototype.addSource=function(t,n,r){var i=this;if(void 0===r&&(r={}),this._checkLoaded(),void 0!==this.sourceCaches[t])throw new Error("There is already a source with this ID");if(!n.type)throw new Error("The type property must be defined, but the only the following properties were given: "+Object.keys(n).join(", ")+".");if(!(["vector","raster","geojson","video","image"].indexOf(n.type)>=0)||!this._validate(e.validateStyle.source,"sources."+t,n,null,r)){this.map&&this.map._collectResourceTiming&&(n.collectResourceTiming=!0);var a=this.sourceCaches[t]=new Ke(t,n,this.dispatcher);a.style=this,a.setEventedParent(this,(function(){return{isSourceLoaded:i.loaded(),source:a.serialize(),sourceId:t}})),a.onAdd(this.map),this._changed=!0}},n.prototype.removeSource=function(t){if(this._checkLoaded(),void 0===this.sourceCaches[t])throw new Error("There is no source with this ID");for(var n in this._layers)if(this._layers[n].source===t)return this.fire(new e.ErrorEvent(new Error('Source "'+t+'" cannot be removed while layer "'+n+'" is using it.')));var r=this.sourceCaches[t];delete this.sourceCaches[t],delete this._updatedSources[t],r.fire(new e.Event("data",{sourceDataType:"metadata",dataType:"source",sourceId:t})),r.setEventedParent(null),r.clearTiles(),r.onRemove&&r.onRemove(this.map),this._changed=!0},n.prototype.setGeoJSONSourceData=function(e,t){this._checkLoaded(),this.sourceCaches[e].getSource().setData(t),this._changed=!0},n.prototype.getSource=function(e){return this.sourceCaches[e]&&this.sourceCaches[e].getSource()},n.prototype.addLayer=function(t,n,r){void 0===r&&(r={}),this._checkLoaded();var i=t.id;if(this.getLayer(i))this.fire(new e.ErrorEvent(new Error('Layer with id "'+i+'" already exists on this map')));else{var a;if("custom"===t.type){if(hn(this,e.validateCustomStyleLayer(t)))return;a=e.createStyleLayer(t)}else{if("object"===typeof t.source&&(this.addSource(i,t.source),t=e.clone$1(t),t=e.extend(t,{source:i})),this._validate(e.validateStyle.layer,"layers."+i,t,{arrayIndex:-1},r))return;a=e.createStyleLayer(t),this._validateLayer(a),a.setEventedParent(this,{layer:{id:i}}),this._serializedLayers[a.id]=a.serialize()}var o=n?this._order.indexOf(n):this._order.length;if(n&&-1===o)this.fire(new e.ErrorEvent(new Error('Layer with id "'+n+'" does not exist on this map.')));else{if(this._order.splice(o,0,i),this._layerOrderChanged=!0,this._layers[i]=a,this._removedLayers[i]&&a.source&&"custom"!==a.type){var s=this._removedLayers[i];delete this._removedLayers[i],s.type!==a.type?this._updatedSources[a.source]="clear":(this._updatedSources[a.source]="reload",this.sourceCaches[a.source].pause())}this._updateLayer(a),a.onAdd&&a.onAdd(this.map)}}},n.prototype.moveLayer=function(t,n){if(this._checkLoaded(),this._changed=!0,this._layers[t]){if(t!==n){var r=this._order.indexOf(t);this._order.splice(r,1);var i=n?this._order.indexOf(n):this._order.length;n&&-1===i?this.fire(new e.ErrorEvent(new Error('Layer with id "'+n+'" does not exist on this map.'))):(this._order.splice(i,0,t),this._layerOrderChanged=!0)}}else this.fire(new e.ErrorEvent(new Error("The layer '"+t+"' does not exist in the map's style and cannot be moved.")))},n.prototype.removeLayer=function(t){this._checkLoaded();var n=this._layers[t];if(n){n.setEventedParent(null);var r=this._order.indexOf(t);this._order.splice(r,1),this._layerOrderChanged=!0,this._changed=!0,this._removedLayers[t]=n,delete this._layers[t],delete this._serializedLayers[t],delete this._updatedLayers[t],delete this._updatedPaintProps[t],n.onRemove&&n.onRemove(this.map)}else this.fire(new e.ErrorEvent(new Error("The layer '"+t+"' does not exist in the map's style and cannot be removed.")))},n.prototype.getLayer=function(e){return this._layers[e]},n.prototype.hasLayer=function(e){return e in this._layers},n.prototype.setLayerZoomRange=function(t,n,r){this._checkLoaded();var i=this.getLayer(t);i?i.minzoom===n&&i.maxzoom===r||(null!=n&&(i.minzoom=n),null!=r&&(i.maxzoom=r),this._updateLayer(i)):this.fire(new e.ErrorEvent(new Error("The layer '"+t+"' does not exist in the map's style and cannot have zoom extent.")))},n.prototype.setFilter=function(t,n,r){void 0===r&&(r={}),this._checkLoaded();var i=this.getLayer(t);if(i){if(!e.deepEqual(i.filter,n))return null===n||void 0===n?(i.filter=void 0,void this._updateLayer(i)):void(this._validate(e.validateStyle.filter,"layers."+i.id+".filter",n,null,r)||(i.filter=e.clone$1(n),this._updateLayer(i)))}else this.fire(new e.ErrorEvent(new Error("The layer '"+t+"' does not exist in the map's style and cannot be filtered.")))},n.prototype.getFilter=function(t){return e.clone$1(this.getLayer(t).filter)},n.prototype.setLayoutProperty=function(t,n,r,i){void 0===i&&(i={}),this._checkLoaded();var a=this.getLayer(t);a?e.deepEqual(a.getLayoutProperty(n),r)||(a.setLayoutProperty(n,r,i),this._updateLayer(a)):this.fire(new e.ErrorEvent(new Error("The layer '"+t+"' does not exist in the map's style and cannot be styled.")))},n.prototype.getLayoutProperty=function(t,n){var r=this.getLayer(t);if(r)return r.getLayoutProperty(n);this.fire(new e.ErrorEvent(new Error("The layer '"+t+"' does not exist in the map's style.")))},n.prototype.setPaintProperty=function(t,n,r,i){void 0===i&&(i={}),this._checkLoaded();var a=this.getLayer(t);a?e.deepEqual(a.getPaintProperty(n),r)||(a.setPaintProperty(n,r,i)&&this._updateLayer(a),this._changed=!0,this._updatedPaintProps[t]=!0):this.fire(new e.ErrorEvent(new Error("The layer '"+t+"' does not exist in the map's style and cannot be styled.")))},n.prototype.getPaintProperty=function(e,t){return this.getLayer(e).getPaintProperty(t)},n.prototype.setFeatureState=function(t,n){this._checkLoaded();var r=t.source,i=t.sourceLayer,a=this.sourceCaches[r];if(void 0!==a){var o=a.getSource().type;"geojson"===o&&i?this.fire(new e.ErrorEvent(new Error("GeoJSON sources cannot have a sourceLayer parameter."))):"vector"!==o||i?(void 0===t.id&&this.fire(new e.ErrorEvent(new Error("The feature id parameter must be provided."))),a.setFeatureState(i,t.id,n)):this.fire(new e.ErrorEvent(new Error("The sourceLayer parameter must be provided for vector source types.")))}else this.fire(new e.ErrorEvent(new Error("The source '"+r+"' does not exist in the map's style.")))},n.prototype.removeFeatureState=function(t,n){this._checkLoaded();var r=t.source,i=this.sourceCaches[r];if(void 0!==i){var a=i.getSource().type,o="vector"===a?t.sourceLayer:void 0;"vector"!==a||o?n&&"string"!==typeof t.id&&"number"!==typeof t.id?this.fire(new e.ErrorEvent(new Error("A feature id is requred to remove its specific state property."))):i.removeFeatureState(o,t.id,n):this.fire(new e.ErrorEvent(new Error("The sourceLayer parameter must be provided for vector source types.")))}else this.fire(new e.ErrorEvent(new Error("The source '"+r+"' does not exist in the map's style.")))},n.prototype.getFeatureState=function(t){this._checkLoaded();var n=t.source,r=t.sourceLayer,i=this.sourceCaches[n];if(void 0!==i){if("vector"!==i.getSource().type||r)return void 0===t.id&&this.fire(new e.ErrorEvent(new Error("The feature id parameter must be provided."))),i.getFeatureState(r,t.id);this.fire(new e.ErrorEvent(new Error("The sourceLayer parameter must be provided for vector source types.")))}else this.fire(new e.ErrorEvent(new Error("The source '"+n+"' does not exist in the map's style.")))},n.prototype.getTransition=function(){return e.extend({duration:300,delay:0},this.stylesheet&&this.stylesheet.transition)},n.prototype.serialize=function(){return e.filterObject({version:this.stylesheet.version,name:this.stylesheet.name,metadata:this.stylesheet.metadata,light:this.stylesheet.light,center:this.stylesheet.center,zoom:this.stylesheet.zoom,bearing:this.stylesheet.bearing,pitch:this.stylesheet.pitch,sprite:this.stylesheet.sprite,glyphs:this.stylesheet.glyphs,transition:this.stylesheet.transition,sources:e.mapObject(this.sourceCaches,(function(e){return e.serialize()})),layers:this._serializeLayers(this._order)},(function(e){return void 0!==e}))},n.prototype._updateLayer=function(e){this._updatedLayers[e.id]=!0,e.source&&!this._updatedSources[e.source]&&"raster"!==this.sourceCaches[e.source].getSource().type&&(this._updatedSources[e.source]="reload",this.sourceCaches[e.source].pause()),this._changed=!0},n.prototype._flattenAndSortRenderedFeatures=function(e){for(var t=this,n=function(e){return"fill-extrusion"===t._layers[e].type},r={},i=[],a=this._order.length-1;a>=0;a--){var o=this._order[a];if(n(o)){r[o]=a;for(var s=0,l=e;s=0;p--){var v=this._order[p];if(n(v))for(var m=i.length-1;m>=0;m--){var g=i[m].feature;if(r[g.layer.id] 0.5) {gl_FragColor=vec4(0.0,0.0,1.0,0.5)*alpha;}if (v_notUsed > 0.5) {gl_FragColor*=.1;}}",Ln="attribute vec2 a_pos;attribute vec2 a_anchor_pos;attribute vec2 a_extrude;attribute vec2 a_placed;attribute vec2 a_shift;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;varying float v_placed;varying float v_notUsed;void main() {vec4 projectedPoint=u_matrix*vec4(a_anchor_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);gl_Position=u_matrix*vec4(a_pos,0.0,1.0);gl_Position.xy+=(a_extrude+a_shift)*u_extrude_scale*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;}",In="varying float v_radius;varying vec2 v_extrude;varying float v_perspective_ratio;varying float v_collision;void main() {float alpha=0.5*min(v_perspective_ratio,1.0);float stroke_radius=0.9*max(v_perspective_ratio,1.0);float distance_to_center=length(v_extrude);float distance_to_edge=abs(distance_to_center-v_radius);float opacity_t=smoothstep(-stroke_radius,0.0,-distance_to_edge);vec4 color=mix(vec4(0.0,0.0,1.0,0.5),vec4(1.0,0.0,0.0,1.0),v_collision);gl_FragColor=color*alpha*opacity_t;}",Rn="attribute vec2 a_pos;attribute float a_radius;attribute vec2 a_flags;uniform mat4 u_matrix;uniform mat4 u_inv_matrix;uniform vec2 u_viewport_size;uniform float u_camera_to_center_distance;varying float v_radius;varying vec2 v_extrude;varying float v_perspective_ratio;varying float v_collision;vec3 toTilePosition(vec2 screenPos) {vec4 rayStart=u_inv_matrix*vec4(screenPos,-1.0,1.0);vec4 rayEnd =u_inv_matrix*vec4(screenPos, 1.0,1.0);rayStart.xyz/=rayStart.w;rayEnd.xyz /=rayEnd.w;highp float t=(0.0-rayStart.z)/(rayEnd.z-rayStart.z);return mix(rayStart.xyz,rayEnd.xyz,t);}void main() {vec2 quadCenterPos=a_pos;float radius=a_radius;float collision=a_flags.x;float vertexIdx=a_flags.y;vec2 quadVertexOffset=vec2(mix(-1.0,1.0,float(vertexIdx >=2.0)),mix(-1.0,1.0,float(vertexIdx >=1.0 && vertexIdx <=2.0)));vec2 quadVertexExtent=quadVertexOffset*radius;vec3 tilePos=toTilePosition(quadCenterPos);vec4 clipPos=u_matrix*vec4(tilePos,1.0);highp float camera_to_anchor_distance=clipPos.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);float padding_factor=1.2;v_radius=radius;v_extrude=quadVertexExtent*padding_factor;v_perspective_ratio=collision_perspective_ratio;v_collision=collision;gl_Position=vec4(clipPos.xyz/clipPos.w,1.0)+vec4(quadVertexExtent*padding_factor/u_viewport_size*2.0,0.0,0.0);}",Dn="uniform highp vec4 u_color;uniform sampler2D u_overlay;varying vec2 v_uv;void main() {vec4 overlay_color=texture2D(u_overlay,v_uv);gl_FragColor=mix(u_color,overlay_color,overlay_color.a);}",Fn="attribute vec2 a_pos;varying vec2 v_uv;uniform mat4 u_matrix;uniform float u_overlay_scale;void main() {v_uv=a_pos/8192.0;gl_Position=u_matrix*vec4(a_pos*u_overlay_scale,0,1);}",Nn="#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float opacity\ngl_FragColor=color*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",zn="attribute vec2 a_pos;uniform mat4 u_matrix;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float opacity\ngl_Position=u_matrix*vec4(a_pos,0,1);}",jn="varying vec2 v_pos;\n#pragma mapbox: define highp vec4 outline_color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 outline_color\n#pragma mapbox: initialize lowp float opacity\nfloat dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=outline_color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",Bn="attribute vec2 a_pos;uniform mat4 u_matrix;uniform vec2 u_world;varying vec2 v_pos;\n#pragma mapbox: define highp vec4 outline_color\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 outline_color\n#pragma mapbox: initialize lowp float opacity\ngl_Position=u_matrix*vec4(a_pos,0,1);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}",Un="uniform vec2 u_texsize;uniform sampler2D u_image;uniform float u_fade;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);float dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=mix(color1,color2,u_fade)*alpha*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",Hn="uniform mat4 u_matrix;uniform vec2 u_world;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec3 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;gl_Position=u_matrix*vec4(a_pos,0,1);vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,a_pos);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}",$n="uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_fade)*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",Vn="uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec3 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileZoomRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileZoomRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileZoomRatio,a_pos);}",Wn="varying vec4 v_color;void main() {gl_FragColor=v_color;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",qn="uniform mat4 u_matrix;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;uniform float u_vertical_gradient;uniform lowp float u_opacity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec4 v_color;\n#pragma mapbox: define highp float base\n#pragma mapbox: define highp float height\n#pragma mapbox: define highp vec4 color\nvoid main() {\n#pragma mapbox: initialize highp float base\n#pragma mapbox: initialize highp float height\n#pragma mapbox: initialize highp vec4 color\nvec3 normal=a_normal_ed.xyz;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);gl_Position=u_matrix*vec4(a_pos,t > 0.0 ? height : base,1);float colorvalue=color.r*0.2126+color.g*0.7152+color.b*0.0722;v_color=vec4(0.0,0.0,0.0,1.0);vec4 ambientlight=vec4(0.03,0.03,0.03,1.0);color+=ambientlight;float directional=clamp(dot(normal/16384.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((1.0-colorvalue+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_color.r+=clamp(color.r*directional*u_lightcolor.r,mix(0.0,0.3,1.0-u_lightcolor.r),1.0);v_color.g+=clamp(color.g*directional*u_lightcolor.g,mix(0.0,0.3,1.0-u_lightcolor.g),1.0);v_color.b+=clamp(color.b*directional*u_lightcolor.b,mix(0.0,0.3,1.0-u_lightcolor.b),1.0);v_color*=u_opacity;}",Gn="uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\n#pragma mapbox: define lowp float base\n#pragma mapbox: define lowp float height\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float base\n#pragma mapbox: initialize lowp float height\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);vec4 mixedColor=mix(color1,color2,u_fade);gl_FragColor=mixedColor*v_lighting;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",Zn="uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_height_factor;uniform vec3 u_scale;uniform float u_vertical_gradient;uniform lowp float u_opacity;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\n#pragma mapbox: define lowp float base\n#pragma mapbox: define lowp float height\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float base\n#pragma mapbox: initialize lowp float height\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec3 normal=a_normal_ed.xyz;float edgedistance=a_normal_ed.w;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);float z=t > 0.0 ? height : base;gl_Position=u_matrix*vec4(a_pos,z,1);vec2 pos=normal.x==1.0 && normal.y==0.0 && normal.z==16384.0\n? a_pos\n: vec2(edgedistance,z*u_height_factor);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,pos);v_lighting=vec4(0.0,0.0,0.0,1.0);float directional=clamp(dot(normal/16383.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((0.5+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_lighting.rgb+=clamp(directional*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_lighting*=u_opacity;}",Yn="#ifdef GL_ES\nprecision highp float;\n#endif\nuniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_dimension;uniform float u_zoom;uniform float u_maxzoom;uniform vec4 u_unpack;float getElevation(vec2 coord,float bias) {vec4 data=texture2D(u_image,coord)*255.0;data.a=-1.0;return dot(data,u_unpack)/4.0;}void main() {vec2 epsilon=1.0/u_dimension;float a=getElevation(v_pos+vec2(-epsilon.x,-epsilon.y),0.0);float b=getElevation(v_pos+vec2(0,-epsilon.y),0.0);float c=getElevation(v_pos+vec2(epsilon.x,-epsilon.y),0.0);float d=getElevation(v_pos+vec2(-epsilon.x,0),0.0);float e=getElevation(v_pos,0.0);float f=getElevation(v_pos+vec2(epsilon.x,0),0.0);float g=getElevation(v_pos+vec2(-epsilon.x,epsilon.y),0.0);float h=getElevation(v_pos+vec2(0,epsilon.y),0.0);float i=getElevation(v_pos+vec2(epsilon.x,epsilon.y),0.0);float exaggeration=u_zoom < 2.0 ? 0.4 : u_zoom < 4.5 ? 0.35 : 0.3;vec2 deriv=vec2((c+f+f+i)-(a+d+d+g),(g+h+h+i)-(a+b+b+c))/ pow(2.0,(u_zoom-u_maxzoom)*exaggeration+19.2562-u_zoom);gl_FragColor=clamp(vec4(deriv.x/2.0+0.5,deriv.y/2.0+0.5,1.0,1.0),0.0,1.0);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",Kn="uniform mat4 u_matrix;uniform vec2 u_dimension;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);highp vec2 epsilon=1.0/u_dimension;float scale=(u_dimension.x-2.0)/u_dimension.x;v_pos=(a_texture_pos/8192.0)*scale+epsilon;}",Xn="uniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_latrange;uniform vec2 u_light;uniform vec4 u_shadow;uniform vec4 u_highlight;uniform vec4 u_accent;\n#define PI 3.141592653589793\nvoid main() {vec4 pixel=texture2D(u_image,v_pos);vec2 deriv=((pixel.rg*2.0)-1.0);float scaleFactor=cos(radians((u_latrange[0]-u_latrange[1])*(1.0-v_pos.y)+u_latrange[1]));float slope=atan(1.25*length(deriv)/scaleFactor);float aspect=deriv.x !=0.0 ? atan(deriv.y,-deriv.x) : PI/2.0*(deriv.y > 0.0 ? 1.0 :-1.0);float intensity=u_light.x;float azimuth=u_light.y+PI;float base=1.875-intensity*1.75;float maxValue=0.5*PI;float scaledSlope=intensity !=0.5 ? ((pow(base,slope)-1.0)/(pow(base,maxValue)-1.0))*maxValue : slope;float accent=cos(scaledSlope);vec4 accent_color=(1.0-accent)*u_accent*clamp(intensity*2.0,0.0,1.0);float shade=abs(mod((aspect+azimuth)/PI+0.5,2.0)-1.0);vec4 shade_color=mix(u_shadow,u_highlight,shade)*sin(scaledSlope)*clamp(intensity*2.0,0.0,1.0);gl_FragColor=accent_color*(1.0-shade_color.a)+shade_color;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",Jn="uniform mat4 u_matrix;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=a_texture_pos/8192.0;}",Qn="uniform lowp float u_device_pixel_ratio;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);gl_FragColor=color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",er="\n#define scale 0.015873016\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform vec2 u_units_to_pixels;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_linesofar;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float width\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float width\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}",tr="uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;varying highp float v_lineprogress;\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);vec4 color=texture2D(u_image,vec2(v_lineprogress,0.5));gl_FragColor=color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",nr="\n#define MAX_LINE_DISTANCE 32767.0\n#define scale 0.015873016\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_lineprogress;\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float width\nvoid main() {\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float width\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_lineprogress=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0/MAX_LINE_DISTANCE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}",rr="uniform lowp float u_device_pixel_ratio;uniform vec2 u_texsize;uniform float u_fade;uniform mediump vec3 u_scale;uniform sampler2D u_image;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;varying float v_width;\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileZoomRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;vec2 pattern_size_a=vec2(display_size_a.x*fromScale/tileZoomRatio,display_size_a.y);vec2 pattern_size_b=vec2(display_size_b.x*toScale/tileZoomRatio,display_size_b.y);float aspect_a=display_size_a.y/v_width;float aspect_b=display_size_b.y/v_width;float dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float x_a=mod(v_linesofar/pattern_size_a.x*aspect_a,1.0);float x_b=mod(v_linesofar/pattern_size_b.x*aspect_b,1.0);float y=0.5*v_normal.y+0.5;vec2 texel_size=1.0/u_texsize;vec2 pos_a=mix(pattern_tl_a*texel_size-texel_size,pattern_br_a*texel_size+texel_size,vec2(x_a,y));vec2 pos_b=mix(pattern_tl_b*texel_size-texel_size,pattern_br_b*texel_size+texel_size,vec2(x_b,y));vec4 color=mix(texture2D(u_image,pos_a),texture2D(u_image,pos_b),u_fade);gl_FragColor=color*alpha*opacity;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",ir="\n#define scale 0.015873016\n#define LINE_DISTANCE_SCALE 2.0\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform vec2 u_units_to_pixels;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;varying float v_width;\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define mediump float width\n#pragma mapbox: define lowp float floorwidth\n#pragma mapbox: define lowp vec4 pattern_from\n#pragma mapbox: define lowp vec4 pattern_to\n#pragma mapbox: define lowp float pixel_ratio_from\n#pragma mapbox: define lowp float pixel_ratio_to\nvoid main() {\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize lowp float floorwidth\n#pragma mapbox: initialize mediump vec4 pattern_from\n#pragma mapbox: initialize mediump vec4 pattern_to\n#pragma mapbox: initialize lowp float pixel_ratio_from\n#pragma mapbox: initialize lowp float pixel_ratio_to\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_linesofar=a_linesofar;v_width2=vec2(outset,inset);v_width=floorwidth;}",ar="uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;uniform float u_sdfgamma;uniform float u_mix;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float width\n#pragma mapbox: define lowp float floorwidth\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize lowp float floorwidth\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float sdfdist_a=texture2D(u_image,v_tex_a).a;float sdfdist_b=texture2D(u_image,v_tex_b).a;float sdfdist=mix(sdfdist_a,sdfdist_b,u_mix);alpha*=smoothstep(0.5-u_sdfgamma/floorwidth,0.5+u_sdfgamma/floorwidth,sdfdist);gl_FragColor=color*(alpha*opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",or="\n#define scale 0.015873016\n#define LINE_DISTANCE_SCALE 2.0\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_patternscale_a;uniform float u_tex_y_a;uniform vec2 u_patternscale_b;uniform float u_tex_y_b;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\n#pragma mapbox: define highp vec4 color\n#pragma mapbox: define lowp float blur\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define mediump float gapwidth\n#pragma mapbox: define lowp float offset\n#pragma mapbox: define mediump float width\n#pragma mapbox: define lowp float floorwidth\nvoid main() {\n#pragma mapbox: initialize highp vec4 color\n#pragma mapbox: initialize lowp float blur\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize mediump float gapwidth\n#pragma mapbox: initialize lowp float offset\n#pragma mapbox: initialize mediump float width\n#pragma mapbox: initialize lowp float floorwidth\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_tex_a=vec2(a_linesofar*u_patternscale_a.x/floorwidth,normal.y*u_patternscale_a.y+u_tex_y_a);v_tex_b=vec2(a_linesofar*u_patternscale_b.x/floorwidth,normal.y*u_patternscale_b.y+u_tex_y_b);v_width2=vec2(outset,inset);}",sr="uniform float u_fade_t;uniform float u_opacity;uniform sampler2D u_image0;uniform sampler2D u_image1;varying vec2 v_pos0;varying vec2 v_pos1;uniform float u_brightness_low;uniform float u_brightness_high;uniform float u_saturation_factor;uniform float u_contrast_factor;uniform vec3 u_spin_weights;void main() {vec4 color0=texture2D(u_image0,v_pos0);vec4 color1=texture2D(u_image1,v_pos1);if (color0.a > 0.0) {color0.rgb=color0.rgb/color0.a;}if (color1.a > 0.0) {color1.rgb=color1.rgb/color1.a;}vec4 color=mix(color0,color1,u_fade_t);color.a*=u_opacity;vec3 rgb=color.rgb;rgb=vec3(dot(rgb,u_spin_weights.xyz),dot(rgb,u_spin_weights.zxy),dot(rgb,u_spin_weights.yzx));float average=(color.r+color.g+color.b)/3.0;rgb+=(average-rgb)*u_saturation_factor;rgb=(rgb-0.5)*u_contrast_factor+0.5;vec3 u_high_vec=vec3(u_brightness_low,u_brightness_low,u_brightness_low);vec3 u_low_vec=vec3(u_brightness_high,u_brightness_high,u_brightness_high);gl_FragColor=vec4(mix(u_high_vec,u_low_vec,rgb)*color.a,color.a);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",lr="uniform mat4 u_matrix;uniform vec2 u_tl_parent;uniform float u_scale_parent;uniform float u_buffer_scale;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos0;varying vec2 v_pos1;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos0=(((a_texture_pos/8192.0)-0.5)/u_buffer_scale )+0.5;v_pos1=(v_pos0*u_scale_parent)+u_tl_parent;}",cr="uniform sampler2D u_texture;varying vec2 v_tex;varying float v_fade_opacity;\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\nlowp float alpha=opacity*v_fade_opacity;gl_FragColor=texture2D(u_texture,v_tex)*alpha;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",ur="const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec4 a_pixeloffset;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform highp float u_camera_to_center_distance;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform float u_fade_change;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform vec2 u_texsize;varying vec2 v_tex;varying float v_fade_opacity;\n#pragma mapbox: define lowp float opacity\nvoid main() {\n#pragma mapbox: initialize lowp float opacity\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;vec2 a_minFontScale=a_pixeloffset.zw/256.0;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*max(a_minFontScale,fontScale)+a_pxoffset/16.0),0.0,1.0);v_tex=a_tex/u_texsize;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;v_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));}",fr="#define SDF_PX 8.0\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;uniform bool u_is_text;varying vec2 v_data0;varying vec3 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nfloat EDGE_GAMMA=0.105/u_device_pixel_ratio;vec2 tex=v_data0.xy;float gamma_scale=v_data1.x;float size=v_data1.y;float fade_opacity=v_data1[2];float fontScale=u_is_text ? size/24.0 : size;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",dr="const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec4 a_pixeloffset;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;varying vec2 v_data0;varying vec3 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale+a_pxoffset),0.0,1.0);float gamma_scale=gl_Position.w;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0=a_tex/u_texsize;v_data1=vec3(gamma_scale,size,interpolated_fade_opacity);}",hr="#define SDF_PX 8.0\n#define SDF 1.0\n#define ICON 0.0\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform sampler2D u_texture_icon;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;varying vec4 v_data0;varying vec4 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nfloat fade_opacity=v_data1[2];if (v_data1.w==ICON) {vec2 tex_icon=v_data0.zw;lowp float alpha=opacity*fade_opacity;gl_FragColor=texture2D(u_texture_icon,tex_icon)*alpha;\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\nreturn;}vec2 tex=v_data0.xy;float EDGE_GAMMA=0.105/u_device_pixel_ratio;float gamma_scale=v_data1.x;float size=v_data1.y;float fontScale=size/24.0;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\n#ifdef OVERDRAW_INSPECTOR\ngl_FragColor=vec4(1.0);\n#endif\n}",pr="const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;uniform vec2 u_texsize_icon;varying vec4 v_data0;varying vec4 v_data1;\n#pragma mapbox: define highp vec4 fill_color\n#pragma mapbox: define highp vec4 halo_color\n#pragma mapbox: define lowp float opacity\n#pragma mapbox: define lowp float halo_width\n#pragma mapbox: define lowp float halo_blur\nvoid main() {\n#pragma mapbox: initialize highp vec4 fill_color\n#pragma mapbox: initialize highp vec4 halo_color\n#pragma mapbox: initialize lowp float opacity\n#pragma mapbox: initialize lowp float halo_width\n#pragma mapbox: initialize lowp float halo_blur\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);float is_sdf=a_size[0]-2.0*a_size_min;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\ncamera_to_anchor_distance/u_camera_to_center_distance :\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=size/24.0;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale),0.0,1.0);float gamma_scale=gl_Position.w;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0.xy=a_tex/u_texsize;v_data0.zw=a_tex/u_texsize_icon;v_data1=vec4(gamma_scale,size,interpolated_fade_opacity,is_sdf);}",vr=Ur("#ifdef GL_ES\nprecision mediump float;\n#else\n#if !defined(lowp)\n#define lowp\n#endif\n#if !defined(mediump)\n#define mediump\n#endif\n#if !defined(highp)\n#define highp\n#endif\n#endif","#ifdef GL_ES\nprecision highp float;\n#else\n#if !defined(lowp)\n#define lowp\n#endif\n#if !defined(mediump)\n#define mediump\n#endif\n#if !defined(highp)\n#define highp\n#endif\n#endif\nvec2 unpack_float(const float packedValue) {int packedIntValue=int(packedValue);int v0=packedIntValue/256;return vec2(v0,packedIntValue-v0*256);}vec2 unpack_opacity(const float packedOpacity) {int intOpacity=int(packedOpacity)/2;return vec2(float(intOpacity)/127.0,mod(packedOpacity,2.0));}vec4 decode_color(const vec2 encodedColor) {return vec4(unpack_float(encodedColor[0])/255.0,unpack_float(encodedColor[1])/255.0\n);}float unpack_mix_vec2(const vec2 packedValue,const float t) {return mix(packedValue[0],packedValue[1],t);}vec4 unpack_mix_color(const vec4 packedColors,const float t) {vec4 minColor=decode_color(vec2(packedColors[0],packedColors[1]));vec4 maxColor=decode_color(vec2(packedColors[2],packedColors[3]));return mix(minColor,maxColor,t);}vec2 get_pattern_pos(const vec2 pixel_coord_upper,const vec2 pixel_coord_lower,const vec2 pattern_size,const float tile_units_to_pixels,const vec2 pos) {vec2 offset=mod(mod(mod(pixel_coord_upper,pattern_size)*256.0,pattern_size)*256.0+pixel_coord_lower,pattern_size);return (tile_units_to_pixels*pos+offset)/pattern_size;}"),mr=Ur(bn,xn),gr=Ur(wn,_n),yr=Ur(kn,Sn),br=Ur(Tn,An),xr=Ur(En,Cn),wr=Ur(Mn,On),_r=Ur(Pn,Ln),kr=Ur(In,Rn),Sr=Ur(Dn,Fn),Tr=Ur(Nn,zn),Ar=Ur(jn,Bn),Er=Ur(Un,Hn),Cr=Ur($n,Vn),Mr=Ur(Wn,qn),Or=Ur(Gn,Zn),Pr=Ur(Yn,Kn),Lr=Ur(Xn,Jn),Ir=Ur(Qn,er),Rr=Ur(tr,nr),Dr=Ur(rr,ir),Fr=Ur(ar,or),Nr=Ur(sr,lr),zr=Ur(cr,ur),jr=Ur(fr,dr),Br=Ur(hr,pr);function Ur(e,t){var n=/#pragma mapbox: ([\w]+) ([\w]+) ([\w]+) ([\w]+)/g,r={};return{fragmentSource:e=e.replace(n,(function(e,t,n,i,a){return r[a]=!0,"define"===t?"\n#ifndef HAS_UNIFORM_u_"+a+"\nvarying "+n+" "+i+" "+a+";\n#else\nuniform "+n+" "+i+" u_"+a+";\n#endif\n":"\n#ifdef HAS_UNIFORM_u_"+a+"\n "+n+" "+i+" "+a+" = u_"+a+";\n#endif\n"})),vertexSource:t=t.replace(n,(function(e,t,n,i,a){var o="float"===i?"vec2":"vec4",s=a.match(/color/)?"color":o;return r[a]?"define"===t?"\n#ifndef HAS_UNIFORM_u_"+a+"\nuniform lowp float u_"+a+"_t;\nattribute "+n+" "+o+" a_"+a+";\nvarying "+n+" "+i+" "+a+";\n#else\nuniform "+n+" "+i+" u_"+a+";\n#endif\n":"vec4"===s?"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+a+" = a_"+a+";\n#else\n "+n+" "+i+" "+a+" = u_"+a+";\n#endif\n":"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+a+" = unpack_mix_"+s+"(a_"+a+", u_"+a+"_t);\n#else\n "+n+" "+i+" "+a+" = u_"+a+";\n#endif\n":"define"===t?"\n#ifndef HAS_UNIFORM_u_"+a+"\nuniform lowp float u_"+a+"_t;\nattribute "+n+" "+o+" a_"+a+";\n#else\nuniform "+n+" "+i+" u_"+a+";\n#endif\n":"vec4"===s?"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+n+" "+i+" "+a+" = a_"+a+";\n#else\n "+n+" "+i+" "+a+" = u_"+a+";\n#endif\n":"\n#ifndef HAS_UNIFORM_u_"+a+"\n "+n+" "+i+" "+a+" = unpack_mix_"+s+"(a_"+a+", u_"+a+"_t);\n#else\n "+n+" "+i+" "+a+" = u_"+a+";\n#endif\n"}))}}var Hr=Object.freeze({__proto__:null,prelude:vr,background:mr,backgroundPattern:gr,circle:yr,clippingMask:br,heatmap:xr,heatmapTexture:wr,collisionBox:_r,collisionCircle:kr,debug:Sr,fill:Tr,fillOutline:Ar,fillOutlinePattern:Er,fillPattern:Cr,fillExtrusion:Mr,fillExtrusionPattern:Or,hillshadePrepare:Pr,hillshade:Lr,line:Ir,lineGradient:Rr,linePattern:Dr,lineSDF:Fr,raster:Nr,symbolIcon:zr,symbolSDF:jr,symbolTextAndIcon:Br}),$r=function(){this.boundProgram=null,this.boundLayoutVertexBuffer=null,this.boundPaintVertexBuffers=[],this.boundIndexBuffer=null,this.boundVertexOffset=null,this.boundDynamicVertexBuffer=null,this.vao=null};$r.prototype.bind=function(e,t,n,r,i,a,o,s){this.context=e;for(var l=this.boundPaintVertexBuffers.length!==r.length,c=0;!l&&c>16,s>>16],u_pixel_coord_lower:[65535&o,65535&s]}}function qr(e,t,n,r){var i=n.imageManager.getPattern(e.from.toString()),a=n.imageManager.getPattern(e.to.toString()),o=n.imageManager.getPixelSize(),s=o.width,l=o.height,c=Math.pow(2,r.tileID.overscaledZ),u=r.tileSize*Math.pow(2,n.transform.tileZoom)/c,f=u*(r.tileID.canonical.x+r.tileID.wrap*c),d=u*r.tileID.canonical.y;return{u_image:0,u_pattern_tl_a:i.tl,u_pattern_br_a:i.br,u_pattern_tl_b:a.tl,u_pattern_br_b:a.br,u_texsize:[s,l],u_mix:t.t,u_pattern_size_a:i.displaySize,u_pattern_size_b:a.displaySize,u_scale_a:t.fromScale,u_scale_b:t.toScale,u_tile_units_to_pixels:1/jt(r,1,n.transform.tileZoom),u_pixel_coord_upper:[f>>16,d>>16],u_pixel_coord_lower:[65535&f,65535&d]}}Vr.prototype.draw=function(e,t,n,r,i,a,o,s,l,c,u,f,d,h,p,v){var m,g=e.gl;if(!this.failedToCreate){for(var y in e.program.set(this.program),e.setDepthMode(n),e.setStencilMode(r),e.setColorMode(i),e.setCullFace(a),this.fixedUniforms)this.fixedUniforms[y].set(o[y]);h&&h.setUniforms(e,this.binderUniforms,f,{zoom:d});for(var b=(m={},m[g.LINES]=2,m[g.TRIANGLES]=3,m[g.LINE_STRIP]=1,m)[t],x=0,w=u.get();x0?1/(1-e):1+e}function yi(e){return e>0?1-1/(1.001-e):-e}var bi,xi=function(e,t,n,r,i,a,o,s,l,c){var u=i.transform;return{u_is_size_zoom_constant:+("constant"===e||"source"===e),u_is_size_feature_constant:+("constant"===e||"camera"===e),u_size_t:t?t.uSizeT:0,u_size:t?t.uSize:0,u_camera_to_center_distance:u.cameraToCenterDistance,u_pitch:u.pitch/360*2*Math.PI,u_rotate_symbol:+n,u_aspect_ratio:u.width/u.height,u_fade_change:i.options.fadeDuration?i.symbolFadeChange:1,u_matrix:a,u_label_plane_matrix:o,u_coord_matrix:s,u_is_text:+l,u_pitch_with_map:+r,u_texsize:c,u_texture:0}},wi=function(t,n,r,i,a,o,s,l,c,u,f){var d=a.transform;return e.extend(xi(t,n,r,i,a,o,s,l,c,u),{u_gamma_scale:i?Math.cos(d._pitch)*d.cameraToCenterDistance:1,u_device_pixel_ratio:e.browser.devicePixelRatio,u_is_halo:+f})},_i=function(t,n,r,i,a,o,s,l,c,u){return e.extend(wi(t,n,r,i,a,o,s,l,!0,c,!0),{u_texsize_icon:u,u_texture_icon:1})},ki=function(e,t,n){return{u_matrix:e,u_opacity:t,u_color:n}},Si=function(t,n,r,i,a,o){return e.extend(qr(i,o,r,a),{u_matrix:t,u_opacity:n})},Ti={fillExtrusion:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_lightpos:new e.Uniform3f(t,n.u_lightpos),u_lightintensity:new e.Uniform1f(t,n.u_lightintensity),u_lightcolor:new e.Uniform3f(t,n.u_lightcolor),u_vertical_gradient:new e.Uniform1f(t,n.u_vertical_gradient),u_opacity:new e.Uniform1f(t,n.u_opacity)}},fillExtrusionPattern:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_lightpos:new e.Uniform3f(t,n.u_lightpos),u_lightintensity:new e.Uniform1f(t,n.u_lightintensity),u_lightcolor:new e.Uniform3f(t,n.u_lightcolor),u_vertical_gradient:new e.Uniform1f(t,n.u_vertical_gradient),u_height_factor:new e.Uniform1f(t,n.u_height_factor),u_image:new e.Uniform1i(t,n.u_image),u_texsize:new e.Uniform2f(t,n.u_texsize),u_pixel_coord_upper:new e.Uniform2f(t,n.u_pixel_coord_upper),u_pixel_coord_lower:new e.Uniform2f(t,n.u_pixel_coord_lower),u_scale:new e.Uniform3f(t,n.u_scale),u_fade:new e.Uniform1f(t,n.u_fade),u_opacity:new e.Uniform1f(t,n.u_opacity)}},fill:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix)}},fillPattern:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_image:new e.Uniform1i(t,n.u_image),u_texsize:new e.Uniform2f(t,n.u_texsize),u_pixel_coord_upper:new e.Uniform2f(t,n.u_pixel_coord_upper),u_pixel_coord_lower:new e.Uniform2f(t,n.u_pixel_coord_lower),u_scale:new e.Uniform3f(t,n.u_scale),u_fade:new e.Uniform1f(t,n.u_fade)}},fillOutline:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_world:new e.Uniform2f(t,n.u_world)}},fillOutlinePattern:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_world:new e.Uniform2f(t,n.u_world),u_image:new e.Uniform1i(t,n.u_image),u_texsize:new e.Uniform2f(t,n.u_texsize),u_pixel_coord_upper:new e.Uniform2f(t,n.u_pixel_coord_upper),u_pixel_coord_lower:new e.Uniform2f(t,n.u_pixel_coord_lower),u_scale:new e.Uniform3f(t,n.u_scale),u_fade:new e.Uniform1f(t,n.u_fade)}},circle:function(t,n){return{u_camera_to_center_distance:new e.Uniform1f(t,n.u_camera_to_center_distance),u_scale_with_map:new e.Uniform1i(t,n.u_scale_with_map),u_pitch_with_map:new e.Uniform1i(t,n.u_pitch_with_map),u_extrude_scale:new e.Uniform2f(t,n.u_extrude_scale),u_device_pixel_ratio:new e.Uniform1f(t,n.u_device_pixel_ratio),u_matrix:new e.UniformMatrix4f(t,n.u_matrix)}},collisionBox:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_camera_to_center_distance:new e.Uniform1f(t,n.u_camera_to_center_distance),u_pixels_to_tile_units:new e.Uniform1f(t,n.u_pixels_to_tile_units),u_extrude_scale:new e.Uniform2f(t,n.u_extrude_scale),u_overscale_factor:new e.Uniform1f(t,n.u_overscale_factor)}},collisionCircle:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_inv_matrix:new e.UniformMatrix4f(t,n.u_inv_matrix),u_camera_to_center_distance:new e.Uniform1f(t,n.u_camera_to_center_distance),u_viewport_size:new e.Uniform2f(t,n.u_viewport_size)}},debug:function(t,n){return{u_color:new e.UniformColor(t,n.u_color),u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_overlay:new e.Uniform1i(t,n.u_overlay),u_overlay_scale:new e.Uniform1f(t,n.u_overlay_scale)}},clippingMask:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix)}},heatmap:function(t,n){return{u_extrude_scale:new e.Uniform1f(t,n.u_extrude_scale),u_intensity:new e.Uniform1f(t,n.u_intensity),u_matrix:new e.UniformMatrix4f(t,n.u_matrix)}},heatmapTexture:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_world:new e.Uniform2f(t,n.u_world),u_image:new e.Uniform1i(t,n.u_image),u_color_ramp:new e.Uniform1i(t,n.u_color_ramp),u_opacity:new e.Uniform1f(t,n.u_opacity)}},hillshade:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_image:new e.Uniform1i(t,n.u_image),u_latrange:new e.Uniform2f(t,n.u_latrange),u_light:new e.Uniform2f(t,n.u_light),u_shadow:new e.UniformColor(t,n.u_shadow),u_highlight:new e.UniformColor(t,n.u_highlight),u_accent:new e.UniformColor(t,n.u_accent)}},hillshadePrepare:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_image:new e.Uniform1i(t,n.u_image),u_dimension:new e.Uniform2f(t,n.u_dimension),u_zoom:new e.Uniform1f(t,n.u_zoom),u_maxzoom:new e.Uniform1f(t,n.u_maxzoom),u_unpack:new e.Uniform4f(t,n.u_unpack)}},line:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_ratio:new e.Uniform1f(t,n.u_ratio),u_device_pixel_ratio:new e.Uniform1f(t,n.u_device_pixel_ratio),u_units_to_pixels:new e.Uniform2f(t,n.u_units_to_pixels)}},lineGradient:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_ratio:new e.Uniform1f(t,n.u_ratio),u_device_pixel_ratio:new e.Uniform1f(t,n.u_device_pixel_ratio),u_units_to_pixels:new e.Uniform2f(t,n.u_units_to_pixels),u_image:new e.Uniform1i(t,n.u_image)}},linePattern:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_texsize:new e.Uniform2f(t,n.u_texsize),u_ratio:new e.Uniform1f(t,n.u_ratio),u_device_pixel_ratio:new e.Uniform1f(t,n.u_device_pixel_ratio),u_image:new e.Uniform1i(t,n.u_image),u_units_to_pixels:new e.Uniform2f(t,n.u_units_to_pixels),u_scale:new e.Uniform3f(t,n.u_scale),u_fade:new e.Uniform1f(t,n.u_fade)}},lineSDF:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_ratio:new e.Uniform1f(t,n.u_ratio),u_device_pixel_ratio:new e.Uniform1f(t,n.u_device_pixel_ratio),u_units_to_pixels:new e.Uniform2f(t,n.u_units_to_pixels),u_patternscale_a:new e.Uniform2f(t,n.u_patternscale_a),u_patternscale_b:new e.Uniform2f(t,n.u_patternscale_b),u_sdfgamma:new e.Uniform1f(t,n.u_sdfgamma),u_image:new e.Uniform1i(t,n.u_image),u_tex_y_a:new e.Uniform1f(t,n.u_tex_y_a),u_tex_y_b:new e.Uniform1f(t,n.u_tex_y_b),u_mix:new e.Uniform1f(t,n.u_mix)}},raster:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_tl_parent:new e.Uniform2f(t,n.u_tl_parent),u_scale_parent:new e.Uniform1f(t,n.u_scale_parent),u_buffer_scale:new e.Uniform1f(t,n.u_buffer_scale),u_fade_t:new e.Uniform1f(t,n.u_fade_t),u_opacity:new e.Uniform1f(t,n.u_opacity),u_image0:new e.Uniform1i(t,n.u_image0),u_image1:new e.Uniform1i(t,n.u_image1),u_brightness_low:new e.Uniform1f(t,n.u_brightness_low),u_brightness_high:new e.Uniform1f(t,n.u_brightness_high),u_saturation_factor:new e.Uniform1f(t,n.u_saturation_factor),u_contrast_factor:new e.Uniform1f(t,n.u_contrast_factor),u_spin_weights:new e.Uniform3f(t,n.u_spin_weights)}},symbolIcon:function(t,n){return{u_is_size_zoom_constant:new e.Uniform1i(t,n.u_is_size_zoom_constant),u_is_size_feature_constant:new e.Uniform1i(t,n.u_is_size_feature_constant),u_size_t:new e.Uniform1f(t,n.u_size_t),u_size:new e.Uniform1f(t,n.u_size),u_camera_to_center_distance:new e.Uniform1f(t,n.u_camera_to_center_distance),u_pitch:new e.Uniform1f(t,n.u_pitch),u_rotate_symbol:new e.Uniform1i(t,n.u_rotate_symbol),u_aspect_ratio:new e.Uniform1f(t,n.u_aspect_ratio),u_fade_change:new e.Uniform1f(t,n.u_fade_change),u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_label_plane_matrix:new e.UniformMatrix4f(t,n.u_label_plane_matrix),u_coord_matrix:new e.UniformMatrix4f(t,n.u_coord_matrix),u_is_text:new e.Uniform1i(t,n.u_is_text),u_pitch_with_map:new e.Uniform1i(t,n.u_pitch_with_map),u_texsize:new e.Uniform2f(t,n.u_texsize),u_texture:new e.Uniform1i(t,n.u_texture)}},symbolSDF:function(t,n){return{u_is_size_zoom_constant:new e.Uniform1i(t,n.u_is_size_zoom_constant),u_is_size_feature_constant:new e.Uniform1i(t,n.u_is_size_feature_constant),u_size_t:new e.Uniform1f(t,n.u_size_t),u_size:new e.Uniform1f(t,n.u_size),u_camera_to_center_distance:new e.Uniform1f(t,n.u_camera_to_center_distance),u_pitch:new e.Uniform1f(t,n.u_pitch),u_rotate_symbol:new e.Uniform1i(t,n.u_rotate_symbol),u_aspect_ratio:new e.Uniform1f(t,n.u_aspect_ratio),u_fade_change:new e.Uniform1f(t,n.u_fade_change),u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_label_plane_matrix:new e.UniformMatrix4f(t,n.u_label_plane_matrix),u_coord_matrix:new e.UniformMatrix4f(t,n.u_coord_matrix),u_is_text:new e.Uniform1i(t,n.u_is_text),u_pitch_with_map:new e.Uniform1i(t,n.u_pitch_with_map),u_texsize:new e.Uniform2f(t,n.u_texsize),u_texture:new e.Uniform1i(t,n.u_texture),u_gamma_scale:new e.Uniform1f(t,n.u_gamma_scale),u_device_pixel_ratio:new e.Uniform1f(t,n.u_device_pixel_ratio),u_is_halo:new e.Uniform1i(t,n.u_is_halo)}},symbolTextAndIcon:function(t,n){return{u_is_size_zoom_constant:new e.Uniform1i(t,n.u_is_size_zoom_constant),u_is_size_feature_constant:new e.Uniform1i(t,n.u_is_size_feature_constant),u_size_t:new e.Uniform1f(t,n.u_size_t),u_size:new e.Uniform1f(t,n.u_size),u_camera_to_center_distance:new e.Uniform1f(t,n.u_camera_to_center_distance),u_pitch:new e.Uniform1f(t,n.u_pitch),u_rotate_symbol:new e.Uniform1i(t,n.u_rotate_symbol),u_aspect_ratio:new e.Uniform1f(t,n.u_aspect_ratio),u_fade_change:new e.Uniform1f(t,n.u_fade_change),u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_label_plane_matrix:new e.UniformMatrix4f(t,n.u_label_plane_matrix),u_coord_matrix:new e.UniformMatrix4f(t,n.u_coord_matrix),u_is_text:new e.Uniform1i(t,n.u_is_text),u_pitch_with_map:new e.Uniform1i(t,n.u_pitch_with_map),u_texsize:new e.Uniform2f(t,n.u_texsize),u_texsize_icon:new e.Uniform2f(t,n.u_texsize_icon),u_texture:new e.Uniform1i(t,n.u_texture),u_texture_icon:new e.Uniform1i(t,n.u_texture_icon),u_gamma_scale:new e.Uniform1f(t,n.u_gamma_scale),u_device_pixel_ratio:new e.Uniform1f(t,n.u_device_pixel_ratio),u_is_halo:new e.Uniform1i(t,n.u_is_halo)}},background:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_opacity:new e.Uniform1f(t,n.u_opacity),u_color:new e.UniformColor(t,n.u_color)}},backgroundPattern:function(t,n){return{u_matrix:new e.UniformMatrix4f(t,n.u_matrix),u_opacity:new e.Uniform1f(t,n.u_opacity),u_image:new e.Uniform1i(t,n.u_image),u_pattern_tl_a:new e.Uniform2f(t,n.u_pattern_tl_a),u_pattern_br_a:new e.Uniform2f(t,n.u_pattern_br_a),u_pattern_tl_b:new e.Uniform2f(t,n.u_pattern_tl_b),u_pattern_br_b:new e.Uniform2f(t,n.u_pattern_br_b),u_texsize:new e.Uniform2f(t,n.u_texsize),u_mix:new e.Uniform1f(t,n.u_mix),u_pattern_size_a:new e.Uniform2f(t,n.u_pattern_size_a),u_pattern_size_b:new e.Uniform2f(t,n.u_pattern_size_b),u_scale_a:new e.Uniform1f(t,n.u_scale_a),u_scale_b:new e.Uniform1f(t,n.u_scale_b),u_pixel_coord_upper:new e.Uniform2f(t,n.u_pixel_coord_upper),u_pixel_coord_lower:new e.Uniform2f(t,n.u_pixel_coord_lower),u_tile_units_to_pixels:new e.Uniform1f(t,n.u_tile_units_to_pixels)}}};function Ai(t,n,r,i,a,o,s){for(var l=t.context,c=l.gl,u=t.useProgram("collisionBox"),f=[],d=0,h=0,p=0;p0){var w=e.create(),_=y;e.mul(w,g.placementInvProjMatrix,t.transform.glCoordMatrix),e.mul(w,w,g.placementViewportMatrix),f.push({circleArray:x,circleOffset:h,transform:_,invTransform:w}),h=d+=x.length/4}b&&u.draw(l,c.LINES,ze.disabled,Ue.disabled,t.colorModeForRenderPass(),Ze.disabled,ei(y,t.transform,m),r.id,b.layoutVertexBuffer,b.indexBuffer,b.segments,null,t.transform.zoom,null,null,b.collisionVertexBuffer)}}if(s&&f.length){var k=t.useProgram("collisionCircle"),S=new e.StructArrayLayout2f1f2i16;S.resize(4*d),S._trim();for(var T=0,A=0,E=f;A=0&&(v[g.associatedIconIndex]={shiftedAnchor:E,angle:C})}else Dt(g.numGlyphs,h)}if(f){p.clear();for(var O=t.icon.placedSymbolArray,P=0;P0){var s=e.browser.now(),l=(s-t.timeAdded)/o,c=n?(s-n.timeAdded)/o:-1,u=r.getSource(),f=a.coveringZoomLevel({tileSize:u.tileSize,roundZoom:u.roundZoom}),d=!n||Math.abs(n.tileID.overscaledZ-f)>Math.abs(t.tileID.overscaledZ-f),h=d&&t.refreshedUponExpiration?1:e.clamp(d?l:1-c,0,1);return t.refreshedUponExpiration&&l>=1&&(t.refreshedUponExpiration=!1),n?{opacity:1,mix:1-h}:{opacity:h,mix:0}}return{opacity:1,mix:0}}function Xi(e,t,n){var r=n.paint.get("background-color"),i=n.paint.get("background-opacity");if(0!==i){var a=e.context,o=a.gl,s=e.transform,l=s.tileSize,c=n.paint.get("background-pattern");if(!e.isPatternMissing(c)){var u=!c&&1===r.a&&1===i&&e.opaquePassEnabledForLayer()?"opaque":"translucent";if(e.renderPass===u){var f=Ue.disabled,d=e.depthModeForSublayer(0,"opaque"===u?ze.ReadWrite:ze.ReadOnly),h=e.colorModeForRenderPass(),p=e.useProgram(c?"backgroundPattern":"background"),v=s.coveringTiles({tileSize:l});c&&(a.activeTexture.set(o.TEXTURE0),e.imageManager.bind(e.context));for(var m=n.getCrossfadeParameters(),g=0,y=v;g "+r.overscaledZ),ua(t,g+" "+p+"kb"),s.draw(i,a.TRIANGLES,l,c,We.alphaBlended,Ze.disabled,ni(o,e.Color.transparent,m),f,t.debugBuffer,t.quadTriangleIndexBuffer,t.debugSegments)}function ua(e,t){e.initDebugOverlayCanvas();var n=e.debugOverlayCanvas,r=e.context.gl,i=e.debugOverlayCanvas.getContext("2d");i.clearRect(0,0,n.width,n.height),i.shadowColor="white",i.shadowBlur=2,i.lineWidth=1.5,i.strokeStyle="white",i.textBaseline="top",i.font="bold 36px Open Sans, sans-serif",i.fillText(t,5,5),i.strokeText(t,5,5),e.debugOverlayTexture.update(n),e.debugOverlayTexture.bind(r.LINEAR,r.CLAMP_TO_EDGE)}function fa(e,t,n){var r=e.context,i=n.implementation;if("offscreen"===e.renderPass){var a=i.prerender;a&&(e.setCustomLayerDefaults(),r.setColorMode(e.colorModeForRenderPass()),a.call(i,r.gl,e.transform.customLayerMatrix()),r.setDirty(),e.setBaseState())}else if("translucent"===e.renderPass){e.setCustomLayerDefaults(),r.setColorMode(e.colorModeForRenderPass()),r.setStencilMode(Ue.disabled);var o="3d"===i.renderingMode?new ze(e.context.gl.LEQUAL,ze.ReadWrite,e.depthRangeFor3D):e.depthModeForSublayer(0,ze.ReadOnly);r.setDepthMode(o),i.render(r.gl,e.transform.customLayerMatrix()),r.setDirty(),e.setBaseState(),r.bindFramebuffer.set(null)}}var da={symbol:Mi,circle:Fi,heatmap:Ni,line:Ui,fill:Hi,"fill-extrusion":Vi,hillshade:qi,raster:Yi,background:Xi,debug:la,custom:fa},ha=function(e,t){this.context=new Ye(e),this.transform=t,this._tileTextures={},this.setup(),this.numSublayers=Ke.maxUnderzooming+Ke.maxOverzooming+1,this.depthEpsilon=1/Math.pow(2,16),this.crossTileSymbolIndex=new dn,this.gpuTimers={}};ha.prototype.resize=function(t,n){if(this.width=t*e.browser.devicePixelRatio,this.height=n*e.browser.devicePixelRatio,this.context.viewport.set([0,0,this.width,this.height]),this.style)for(var r=0,i=this.style._order;r256&&this.clearStencil(),n.setColorMode(We.disabled),n.setDepthMode(ze.disabled);var i=this.useProgram("clippingMask");this._tileClippingMaskIDs={};for(var a=0,o=t;a256&&this.clearStencil();var e=this.nextStencilID++,t=this.context.gl;return new Ue({func:t.NOTEQUAL,mask:255},e,255,t.KEEP,t.KEEP,t.REPLACE)},ha.prototype.stencilModeForClipping=function(e){var t=this.context.gl;return new Ue({func:t.EQUAL,mask:255},this._tileClippingMaskIDs[e.key],0,t.KEEP,t.KEEP,t.REPLACE)},ha.prototype.stencilConfigForOverlap=function(e){var t,n=this.context.gl,r=e.sort((function(e,t){return t.overscaledZ-e.overscaledZ})),i=r[r.length-1].overscaledZ,a=r[0].overscaledZ-i+1;if(a>1){this.currentStencilSource=void 0,this.nextStencilID+a>256&&this.clearStencil();for(var o={},s=0;s=0;this.currentLayer--){var _=this.style._layers[i[this.currentLayer]],k=a[_.source],S=u[_.source];this._renderTileClippingMasks(_,S),this.renderLayer(this,k,_,S)}for(this.renderPass="translucent",this.currentLayer=0;this.currentLayer0?t.pop():null},ha.prototype.isPatternMissing=function(e){if(!e)return!1;if(!e.from||!e.to)return!0;var t=this.imageManager.getPattern(e.from.toString()),n=this.imageManager.getPattern(e.to.toString());return!t||!n},ha.prototype.useProgram=function(e,t){this.cache=this.cache||{};var n=""+e+(t?t.cacheKey:"")+(this._showOverdrawInspector?"/overdraw":"");return this.cache[n]||(this.cache[n]=new Vr(this.context,Hr[e],t,Ti[e],this._showOverdrawInspector)),this.cache[n]},ha.prototype.setCustomLayerDefaults=function(){this.context.unbindVAO(),this.context.cullFace.setDefault(),this.context.activeTexture.setDefault(),this.context.pixelStoreUnpack.setDefault(),this.context.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.context.pixelStoreUnpackFlipY.setDefault()},ha.prototype.setBaseState=function(){var e=this.context.gl;this.context.cullFace.set(!1),this.context.viewport.set([0,0,this.width,this.height]),this.context.blendEquation.set(e.FUNC_ADD)},ha.prototype.initDebugOverlayCanvas=function(){if(null==this.debugOverlayCanvas){this.debugOverlayCanvas=e.window.document.createElement("canvas"),this.debugOverlayCanvas.width=512,this.debugOverlayCanvas.height=512;var t=this.context.gl;this.debugOverlayTexture=new e.Texture(this.context,this.debugOverlayCanvas,t.RGBA)}},ha.prototype.destroy=function(){this.emptyTexture.destroy(),this.debugOverlayTexture&&this.debugOverlayTexture.destroy()};var pa=function(e,t){this.points=e,this.planes=t};pa.fromInvProjectionMatrix=function(t,n,r){var i=[[-1,1,-1,1],[1,1,-1,1],[1,-1,-1,1],[-1,-1,-1,1],[-1,1,1,1],[1,1,1,1],[1,-1,1,1],[-1,-1,1,1]],a=Math.pow(2,r),o=i.map((function(n){return e.transformMat4([],n,t)})).map((function(t){return e.scale$1([],t,1/t[3]/n*a)})),s=[[0,1,2],[6,5,4],[0,3,7],[2,1,5],[3,2,6],[0,4,5]].map((function(t){var n=e.sub([],o[t[0]],o[t[1]]),r=e.sub([],o[t[2]],o[t[1]]),i=e.normalize([],e.cross([],n,r)),a=-e.dot(i,o[t[1]]);return i.concat(a)}));return new pa(o,s)};var va=function(t,n){this.min=t,this.max=n,this.center=e.scale$2([],e.add([],this.min,this.max),.5)};va.prototype.quadrant=function(t){for(var n=[t%2===0,t<2],r=e.clone$2(this.min),i=e.clone$2(this.max),a=0;a=0;if(0===o)return 0;o!==n.length&&(r=!1)}if(r)return 2;for(var l=0;l<3;l++){for(var c=Number.MAX_VALUE,u=-Number.MAX_VALUE,f=0;fthis.max[l]-this.min[l])return 0}return 1};var ma=function(e,t,n,r){if(void 0===e&&(e=0),void 0===t&&(t=0),void 0===n&&(n=0),void 0===r&&(r=0),isNaN(e)||e<0||isNaN(t)||t<0||isNaN(n)||n<0||isNaN(r)||r<0)throw new Error("Invalid value for edge-insets, top, bottom, left and right must all be numbers");this.top=e,this.bottom=t,this.left=n,this.right=r};ma.prototype.interpolate=function(t,n,r){return null!=n.top&&null!=t.top&&(this.top=e.number(t.top,n.top,r)),null!=n.bottom&&null!=t.bottom&&(this.bottom=e.number(t.bottom,n.bottom,r)),null!=n.left&&null!=t.left&&(this.left=e.number(t.left,n.left,r)),null!=n.right&&null!=t.right&&(this.right=e.number(t.right,n.right,r)),this},ma.prototype.getCenter=function(t,n){var r=e.clamp((this.left+t-this.right)/2,0,t),i=e.clamp((this.top+n-this.bottom)/2,0,n);return new e.Point(r,i)},ma.prototype.equals=function(e){return this.top===e.top&&this.bottom===e.bottom&&this.left===e.left&&this.right===e.right},ma.prototype.clone=function(){return new ma(this.top,this.bottom,this.left,this.right)},ma.prototype.toJSON=function(){return{top:this.top,bottom:this.bottom,left:this.left,right:this.right}};var ga=function(t,n,r,i,a){this.tileSize=512,this.maxValidLatitude=85.051129,this._renderWorldCopies=void 0===a||a,this._minZoom=t||0,this._maxZoom=n||22,this._minPitch=void 0===r||null===r?0:r,this._maxPitch=void 0===i||null===i?60:i,this.setMaxBounds(),this.width=0,this.height=0,this._center=new e.LngLat(0,0),this.zoom=0,this.angle=0,this._fov=.6435011087932844,this._pitch=0,this._unmodified=!0,this._edgeInsets=new ma,this._posMatrixCache={},this._alignedPosMatrixCache={}},ya={minZoom:{configurable:!0},maxZoom:{configurable:!0},minPitch:{configurable:!0},maxPitch:{configurable:!0},renderWorldCopies:{configurable:!0},worldSize:{configurable:!0},centerOffset:{configurable:!0},size:{configurable:!0},bearing:{configurable:!0},pitch:{configurable:!0},fov:{configurable:!0},zoom:{configurable:!0},center:{configurable:!0},padding:{configurable:!0},centerPoint:{configurable:!0},unmodified:{configurable:!0},point:{configurable:!0}};function ba(e,t){var n=!1,r=null,i=function i(){r=null,n&&(e(),r=setTimeout(i,t),n=!1)};return function(){return n=!0,r||i(),r}}ga.prototype.clone=function(){var e=new ga(this._minZoom,this._maxZoom,this._minPitch,this.maxPitch,this._renderWorldCopies);return e.tileSize=this.tileSize,e.latRange=this.latRange,e.width=this.width,e.height=this.height,e._center=this._center,e.zoom=this.zoom,e.angle=this.angle,e._fov=this._fov,e._pitch=this._pitch,e._unmodified=this._unmodified,e._edgeInsets=this._edgeInsets.clone(),e._calcMatrices(),e},ya.minZoom.get=function(){return this._minZoom},ya.minZoom.set=function(e){this._minZoom!==e&&(this._minZoom=e,this.zoom=Math.max(this.zoom,e))},ya.maxZoom.get=function(){return this._maxZoom},ya.maxZoom.set=function(e){this._maxZoom!==e&&(this._maxZoom=e,this.zoom=Math.min(this.zoom,e))},ya.minPitch.get=function(){return this._minPitch},ya.minPitch.set=function(e){this._minPitch!==e&&(this._minPitch=e,this.pitch=Math.max(this.pitch,e))},ya.maxPitch.get=function(){return this._maxPitch},ya.maxPitch.set=function(e){this._maxPitch!==e&&(this._maxPitch=e,this.pitch=Math.min(this.pitch,e))},ya.renderWorldCopies.get=function(){return this._renderWorldCopies},ya.renderWorldCopies.set=function(e){void 0===e?e=!0:null===e&&(e=!1),this._renderWorldCopies=e},ya.worldSize.get=function(){return this.tileSize*this.scale},ya.centerOffset.get=function(){return this.centerPoint._sub(this.size._div(2))},ya.size.get=function(){return new e.Point(this.width,this.height)},ya.bearing.get=function(){return-this.angle/Math.PI*180},ya.bearing.set=function(t){var n=-e.wrap(t,-180,180)*Math.PI/180;this.angle!==n&&(this._unmodified=!1,this.angle=n,this._calcMatrices(),this.rotationMatrix=e.create$2(),e.rotate(this.rotationMatrix,this.rotationMatrix,this.angle))},ya.pitch.get=function(){return this._pitch/Math.PI*180},ya.pitch.set=function(t){var n=e.clamp(t,this.minPitch,this.maxPitch)/180*Math.PI;this._pitch!==n&&(this._unmodified=!1,this._pitch=n,this._calcMatrices())},ya.fov.get=function(){return this._fov/Math.PI*180},ya.fov.set=function(e){e=Math.max(.01,Math.min(60,e)),this._fov!==e&&(this._unmodified=!1,this._fov=e/180*Math.PI,this._calcMatrices())},ya.zoom.get=function(){return this._zoom},ya.zoom.set=function(e){var t=Math.min(Math.max(e,this.minZoom),this.maxZoom);this._zoom!==t&&(this._unmodified=!1,this._zoom=t,this.scale=this.zoomScale(t),this.tileZoom=Math.floor(t),this.zoomFraction=t-this.tileZoom,this._constrain(),this._calcMatrices())},ya.center.get=function(){return this._center},ya.center.set=function(e){e.lat===this._center.lat&&e.lng===this._center.lng||(this._unmodified=!1,this._center=e,this._constrain(),this._calcMatrices())},ya.padding.get=function(){return this._edgeInsets.toJSON()},ya.padding.set=function(e){this._edgeInsets.equals(e)||(this._unmodified=!1,this._edgeInsets.interpolate(this._edgeInsets,e,1),this._calcMatrices())},ya.centerPoint.get=function(){return this._edgeInsets.getCenter(this.width,this.height)},ga.prototype.isPaddingEqual=function(e){return this._edgeInsets.equals(e)},ga.prototype.interpolatePadding=function(e,t,n){this._unmodified=!1,this._edgeInsets.interpolate(e,t,n),this._constrain(),this._calcMatrices()},ga.prototype.coveringZoomLevel=function(e){var t=(e.roundZoom?Math.round:Math.floor)(this.zoom+this.scaleZoom(this.tileSize/e.tileSize));return Math.max(0,t)},ga.prototype.getVisibleUnwrappedCoordinates=function(t){var n=[new e.UnwrappedTileID(0,t)];if(this._renderWorldCopies)for(var r=this.pointCoordinate(new e.Point(0,0)),i=this.pointCoordinate(new e.Point(this.width,0)),a=this.pointCoordinate(new e.Point(this.width,this.height)),o=this.pointCoordinate(new e.Point(0,this.height)),s=Math.floor(Math.min(r.x,i.x,a.x,o.x)),l=Math.floor(Math.max(r.x,i.x,a.x,o.x)),c=1,u=s-c;u<=l+c;u++)0!==u&&n.push(new e.UnwrappedTileID(u,t));return n},ga.prototype.coveringTiles=function(t){var n=this.coveringZoomLevel(t),r=n;if(void 0!==t.minzoom&&nt.maxzoom&&(n=t.maxzoom);var i=e.MercatorCoordinate.fromLngLat(this.center),a=Math.pow(2,n),o=[a*i.x,a*i.y,0],s=pa.fromInvProjectionMatrix(this.invProjMatrix,this.worldSize,n),l=t.minzoom||0;this.pitch<=60&&this._edgeInsets.top<.1&&(l=n);var c=3,u=function(e){return{aabb:new va([e*a,0,0],[(e+1)*a,a,0]),zoom:0,x:0,y:0,wrap:e,fullyVisible:!1}},f=[],d=[],h=n,p=t.reparseOverscaled?r:n;if(this._renderWorldCopies)for(var v=1;v<=3;v++)f.push(u(-v)),f.push(u(v));for(f.push(u(0));f.length>0;){var m=f.pop(),g=m.x,y=m.y,b=m.fullyVisible;if(!b){var x=m.aabb.intersects(s);if(0===x)continue;b=2===x}var w=m.aabb.distanceX(o),_=m.aabb.distanceY(o),k=Math.max(Math.abs(w),Math.abs(_)),S=c+(1<S&&m.zoom>=l)d.push({tileID:new e.OverscaledTileID(m.zoom===h?p:m.zoom,m.wrap,m.zoom,g,y),distanceSq:e.sqrLen([o[0]-.5-g,o[1]-.5-y])});else for(var T=0;T<4;T++){var A=(g<<1)+T%2,E=(y<<1)+(T>>1);f.push({aabb:m.aabb.quadrant(T),zoom:m.zoom+1,x:A,y:E,wrap:m.wrap,fullyVisible:b})}}return d.sort((function(e,t){return e.distanceSq-t.distanceSq})).map((function(e){return e.tileID}))},ga.prototype.resize=function(e,t){this.width=e,this.height=t,this.pixelsToGLUnits=[2/e,-2/t],this._constrain(),this._calcMatrices()},ya.unmodified.get=function(){return this._unmodified},ga.prototype.zoomScale=function(e){return Math.pow(2,e)},ga.prototype.scaleZoom=function(e){return Math.log(e)/Math.LN2},ga.prototype.project=function(t){var n=e.clamp(t.lat,-this.maxValidLatitude,this.maxValidLatitude);return new e.Point(e.mercatorXfromLng(t.lng)*this.worldSize,e.mercatorYfromLat(n)*this.worldSize)},ga.prototype.unproject=function(t){return new e.MercatorCoordinate(t.x/this.worldSize,t.y/this.worldSize).toLngLat()},ya.point.get=function(){return this.project(this.center)},ga.prototype.setLocationAtPoint=function(t,n){var r=this.pointCoordinate(n),i=this.pointCoordinate(this.centerPoint),a=this.locationCoordinate(t),o=new e.MercatorCoordinate(a.x-(r.x-i.x),a.y-(r.y-i.y));this.center=this.coordinateLocation(o),this._renderWorldCopies&&(this.center=this.center.wrap())},ga.prototype.locationPoint=function(e){return this.coordinatePoint(this.locationCoordinate(e))},ga.prototype.pointLocation=function(e){return this.coordinateLocation(this.pointCoordinate(e))},ga.prototype.locationCoordinate=function(t){return e.MercatorCoordinate.fromLngLat(t)},ga.prototype.coordinateLocation=function(e){return e.toLngLat()},ga.prototype.pointCoordinate=function(t){var n=0,r=[t.x,t.y,0,1],i=[t.x,t.y,1,1];e.transformMat4(r,r,this.pixelMatrixInverse),e.transformMat4(i,i,this.pixelMatrixInverse);var a=r[3],o=i[3],s=r[0]/a,l=i[0]/o,c=r[1]/a,u=i[1]/o,f=r[2]/a,d=i[2]/o,h=f===d?0:(n-f)/(d-f);return new e.MercatorCoordinate(e.number(s,l,h)/this.worldSize,e.number(c,u,h)/this.worldSize)},ga.prototype.coordinatePoint=function(t){var n=[t.x*this.worldSize,t.y*this.worldSize,0,1];return e.transformMat4(n,n,this.pixelMatrix),new e.Point(n[0]/n[3],n[1]/n[3])},ga.prototype.getBounds=function(){return(new e.LngLatBounds).extend(this.pointLocation(new e.Point(0,0))).extend(this.pointLocation(new e.Point(this.width,0))).extend(this.pointLocation(new e.Point(this.width,this.height))).extend(this.pointLocation(new e.Point(0,this.height)))},ga.prototype.getMaxBounds=function(){return this.latRange&&2===this.latRange.length&&this.lngRange&&2===this.lngRange.length?new e.LngLatBounds([this.lngRange[0],this.latRange[0]],[this.lngRange[1],this.latRange[1]]):null},ga.prototype.setMaxBounds=function(e){e?(this.lngRange=[e.getWest(),e.getEast()],this.latRange=[e.getSouth(),e.getNorth()],this._constrain()):(this.lngRange=null,this.latRange=[-this.maxValidLatitude,this.maxValidLatitude])},ga.prototype.calculatePosMatrix=function(t,n){void 0===n&&(n=!1);var r=t.key,i=n?this._alignedPosMatrixCache:this._posMatrixCache;if(i[r])return i[r];var a=t.canonical,o=this.worldSize/this.zoomScale(a.z),s=a.x+Math.pow(2,a.z)*t.wrap,l=e.identity(new Float64Array(16));return e.translate(l,l,[s*o,a.y*o,0]),e.scale(l,l,[o/e.EXTENT,o/e.EXTENT,1]),e.multiply(l,n?this.alignedProjMatrix:this.projMatrix,l),i[r]=new Float32Array(l),i[r]},ga.prototype.customLayerMatrix=function(){return this.mercatorMatrix.slice()},ga.prototype._constrain=function(){if(this.center&&this.width&&this.height&&!this._constraining){this._constraining=!0;var t,n,r,i,a=-90,o=90,s=-180,l=180,c=this.size,u=this._unmodified;if(this.latRange){var f=this.latRange;a=e.mercatorYfromLat(f[1])*this.worldSize,t=(o=e.mercatorYfromLat(f[0])*this.worldSize)-ao&&(i=o-m)}if(this.lngRange){var g=h.x,y=c.x/2;g-yl&&(r=l-y)}void 0===r&&void 0===i||(this.center=this.unproject(new e.Point(void 0!==r?r:h.x,void 0!==i?i:h.y))),this._unmodified=u,this._constraining=!1}},ga.prototype._calcMatrices=function(){if(this.height){var t=this._fov/2,n=this.centerOffset;this.cameraToCenterDistance=.5/Math.tan(t)*this.height;var r=Math.PI/2+this._pitch,i=this._fov*(.5+n.y/this.height),a=Math.sin(i)*this.cameraToCenterDistance/Math.sin(e.clamp(Math.PI-r-i,.01,Math.PI-.01)),o=this.point,s=o.x,l=o.y,c=1.01*(Math.cos(Math.PI/2-this._pitch)*a+this.cameraToCenterDistance),u=this.height/50,f=new Float64Array(16);e.perspective(f,this._fov,this.width/this.height,u,c),f[8]=2*-n.x/this.width,f[9]=2*n.y/this.height,e.scale(f,f,[1,-1,1]),e.translate(f,f,[0,0,-this.cameraToCenterDistance]),e.rotateX(f,f,this._pitch),e.rotateZ(f,f,this.angle),e.translate(f,f,[-s,-l,0]),this.mercatorMatrix=e.scale([],f,[this.worldSize,this.worldSize,this.worldSize]),e.scale(f,f,[1,1,e.mercatorZfromAltitude(1,this.center.lat)*this.worldSize,1]),this.projMatrix=f,this.invProjMatrix=e.invert([],this.projMatrix);var d=this.width%2/2,h=this.height%2/2,p=Math.cos(this.angle),v=Math.sin(this.angle),m=s-Math.round(s)+p*d+v*h,g=l-Math.round(l)+p*h+v*d,y=new Float64Array(f);if(e.translate(y,y,[m>.5?m-1:m,g>.5?g-1:g,0]),this.alignedProjMatrix=y,f=e.create(),e.scale(f,f,[this.width/2,-this.height/2,1]),e.translate(f,f,[1,-1,0]),this.labelPlaneMatrix=f,f=e.create(),e.scale(f,f,[1,-1,1]),e.translate(f,f,[-1,-1,0]),e.scale(f,f,[2/this.width,2/this.height,1]),this.glCoordMatrix=f,this.pixelMatrix=e.multiply(new Float64Array(16),this.labelPlaneMatrix,this.projMatrix),!(f=e.invert(new Float64Array(16),this.pixelMatrix)))throw new Error("failed to invert matrix");this.pixelMatrixInverse=f,this._posMatrixCache={},this._alignedPosMatrixCache={}}},ga.prototype.maxPitchScaleFactor=function(){if(!this.pixelMatrixInverse)return 1;var t=this.pointCoordinate(new e.Point(0,0)),n=[t.x*this.worldSize,t.y*this.worldSize,0,1];return e.transformMat4(n,n,this.pixelMatrix)[3]/this.cameraToCenterDistance},ga.prototype.getCameraPoint=function(){var t=this._pitch,n=Math.tan(t)*(this.cameraToCenterDistance||1);return this.centerPoint.add(new e.Point(0,n))},ga.prototype.getCameraQueryGeometry=function(t){var n=this.getCameraPoint();if(1===t.length)return[t[0],n];for(var r=n.x,i=n.y,a=n.x,o=n.y,s=0,l=t;s=3&&!e.some((function(e){return isNaN(e)}))){var t=this._map.dragRotate.isEnabled()&&this._map.touchZoomRotate.isEnabled()?+(e[3]||0):this._map.getBearing();return this._map.jumpTo({center:[+e[2],+e[1]],zoom:+e[0],bearing:t,pitch:+(e[4]||0)}),!0}return!1},xa.prototype._updateHashUnthrottled=function(){var t=this.getHashString();try{e.window.history.replaceState(e.window.history.state,"",t)}catch(n){}};var wa={linearity:.3,easing:e.bezier(0,0,.3,1)},_a=e.extend({deceleration:2500,maxSpeed:1400},wa),ka=e.extend({deceleration:20,maxSpeed:1400},wa),Sa=e.extend({deceleration:1e3,maxSpeed:360},wa),Ta=e.extend({deceleration:1e3,maxSpeed:90},wa),Aa=function(e){this._map=e,this.clear()};function Ea(e,t){(!e.duration||e.duration0&&n-t[0].time>r;)t.shift()},Aa.prototype._onMoveEnd=function(t){if(this._drainInertiaBuffer(),!(this._inertiaBuffer.length<2)){for(var n={zoom:0,bearing:0,pitch:0,pan:new e.Point(0,0),pinchAround:void 0,around:void 0},r=0,i=this._inertiaBuffer;r=this._clickTolerance||this._map.fire(new Ma(e.type,this._map,e))},La.prototype.dblclick=function(e){return this._firePreventable(new Ma(e.type,this._map,e))},La.prototype.mouseover=function(e){this._map.fire(new Ma(e.type,this._map,e))},La.prototype.mouseout=function(e){this._map.fire(new Ma(e.type,this._map,e))},La.prototype.touchstart=function(e){return this._firePreventable(new Oa(e.type,this._map,e))},La.prototype.touchmove=function(e){this._map.fire(new Oa(e.type,this._map,e))},La.prototype.touchend=function(e){this._map.fire(new Oa(e.type,this._map,e))},La.prototype.touchcancel=function(e){this._map.fire(new Oa(e.type,this._map,e))},La.prototype._firePreventable=function(e){if(this._map.fire(e),e.defaultPrevented)return{}},La.prototype.isEnabled=function(){return!0},La.prototype.isActive=function(){return!1},La.prototype.enable=function(){},La.prototype.disable=function(){};var Ia=function(e){this._map=e};Ia.prototype.reset=function(){this._delayContextMenu=!1,delete this._contextMenuEvent},Ia.prototype.mousemove=function(e){this._map.fire(new Ma(e.type,this._map,e))},Ia.prototype.mousedown=function(){this._delayContextMenu=!0},Ia.prototype.mouseup=function(){this._delayContextMenu=!1,this._contextMenuEvent&&(this._map.fire(new Ma("contextmenu",this._map,this._contextMenuEvent)),delete this._contextMenuEvent)},Ia.prototype.contextmenu=function(e){this._delayContextMenu?this._contextMenuEvent=e:this._map.fire(new Ma(e.type,this._map,e)),this._map.listens("contextmenu")&&e.preventDefault()},Ia.prototype.isEnabled=function(){return!0},Ia.prototype.isActive=function(){return!1},Ia.prototype.enable=function(){},Ia.prototype.disable=function(){};var Ra=function(e,t){this._map=e,this._el=e.getCanvasContainer(),this._container=e.getContainer(),this._clickTolerance=t.clickTolerance||1};function Da(e,t){for(var n={},r=0;rthis.numTouches)&&(this.aborted=!0),this.aborted||(void 0===this.startTime&&(this.startTime=e.timeStamp),n.length===this.numTouches&&(this.centroid=Fa(t),this.touches=Da(n,t)))},Ba.prototype.touchmove=function(e,t,n){if(!this.aborted&&this.centroid){var r=Da(n,t);for(var i in this.touches){var a=this.touches[i],o=r[i];(!o||o.dist(a)>ja)&&(this.aborted=!0)}}},Ba.prototype.touchend=function(e,t,n){if((!this.centroid||e.timeStamp-this.startTime>za)&&(this.aborted=!0),0===n.length){var r=!this.aborted&&this.centroid;if(this.reset(),r)return r}};var Ua=function(e){this.singleTap=new Ba(e),this.numTaps=e.numTaps,this.reset()};Ua.prototype.reset=function(){this.lastTime=1/0,delete this.lastTap,this.count=0,this.singleTap.reset()},Ua.prototype.touchstart=function(e,t,n){this.singleTap.touchstart(e,t,n)},Ua.prototype.touchmove=function(e,t,n){this.singleTap.touchmove(e,t,n)},Ua.prototype.touchend=function(e,t,n){var r=this.singleTap.touchend(e,t,n);if(r){var i=e.timeStamp-this.lastTime0&&(this._active=!0);var i=Da(r,n),a=new e.Point(0,0),o=new e.Point(0,0),s=0;for(var l in i){var c=i[l],u=this._touches[l];u&&(a._add(c),o._add(c.sub(u)),s++,i[l]=c)}if(this._touches=i,!(sMath.abs(e.x)}var ao=100,oo=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.reset=function(){e.prototype.reset.call(this),this._valid=void 0,delete this._firstMove,delete this._lastPoints},t.prototype._start=function(e){this._lastPoints=e,io(e[0].sub(e[1]))&&(this._valid=!1)},t.prototype._move=function(e,t,n){var r=e[0].sub(this._lastPoints[0]),i=e[1].sub(this._lastPoints[1]);if(this._valid=this.gestureBeginsVertically(r,i,n.timeStamp),this._valid)return this._lastPoints=e,this._active=!0,{pitchDelta:(r.y+i.y)/2*-.5}},t.prototype.gestureBeginsVertically=function(e,t,n){if(void 0!==this._valid)return this._valid;var r=2,i=e.mag()>=r,a=t.mag()>=r;if(i||a){if(!i||!a)return void 0===this._firstMove&&(this._firstMove=n),n-this._firstMove0===t.y>0;return io(e)&&io(t)&&o}},t}(Ka),so={panStep:100,bearingStep:15,pitchStep:10},lo=function(){var e=so;this._panStep=e.panStep,this._bearingStep=e.bearingStep,this._pitchStep=e.pitchStep};function co(e){return e*(2-e)}lo.prototype.reset=function(){this._active=!1},lo.prototype.keydown=function(e){var t=this;if(!(e.altKey||e.ctrlKey||e.metaKey)){var n=0,r=0,i=0,a=0,o=0;switch(e.keyCode){case 61:case 107:case 171:case 187:n=1;break;case 189:case 109:case 173:n=-1;break;case 37:e.shiftKey?r=-1:(e.preventDefault(),a=-1);break;case 39:e.shiftKey?r=1:(e.preventDefault(),a=1);break;case 38:e.shiftKey?i=1:(e.preventDefault(),o=-1);break;case 40:e.shiftKey?i=-1:(e.preventDefault(),o=1);break;default:return}return{cameraAnimation:function(s){var l=s.getZoom();s.easeTo({duration:300,easeId:"keyboardHandler",easing:co,zoom:n?Math.round(l)+n*(e.shiftKey?2:1):l,bearing:s.getBearing()+r*t._bearingStep,pitch:s.getPitch()+i*t._pitchStep,offset:[-a*t._panStep,-o*t._panStep],center:s.getCenter()},{originalEvent:e})}}}},lo.prototype.enable=function(){this._enabled=!0},lo.prototype.disable=function(){this._enabled=!1,this.reset()},lo.prototype.isEnabled=function(){return this._enabled},lo.prototype.isActive=function(){return this._active};var uo=4.000244140625,fo=.01,ho=1/450,po=2,vo=function(t,n){this._map=t,this._el=t.getCanvasContainer(),this._handler=n,this._delta=0,this._defaultZoomRate=fo,this._wheelZoomRate=ho,e.bindAll(["_onWheel","_onTimeout","_onScrollFrame","_onScrollFinished"],this)};vo.prototype.setZoomRate=function(e){this._defaultZoomRate=e},vo.prototype.setWheelZoomRate=function(e){this._wheelZoomRate=e},vo.prototype.isEnabled=function(){return!!this._enabled},vo.prototype.isActive=function(){return!!this._active||void 0!==this._finishTimeout},vo.prototype.isZooming=function(){return!!this._zooming},vo.prototype.enable=function(e){this.isEnabled()||(this._enabled=!0,this._aroundCenter=e&&"center"===e.around)},vo.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},vo.prototype.wheel=function(t){if(this.isEnabled()){var n=t.deltaMode===e.window.WheelEvent.DOM_DELTA_LINE?40*t.deltaY:t.deltaY,r=e.browser.now(),i=r-(this._lastWheelEventTime||0);this._lastWheelEventTime=r,0!==n&&n%uo===0?this._type="wheel":0!==n&&Math.abs(n)<4?this._type="trackpad":i>400?(this._type=null,this._lastValue=n,this._timeout=setTimeout(this._onTimeout,40,t)):this._type||(this._type=Math.abs(i*n)<200?"trackpad":"wheel",this._timeout&&(clearTimeout(this._timeout),this._timeout=null,n+=this._lastValue)),t.shiftKey&&n&&(n/=4),this._type&&(this._lastWheelEvent=t,this._delta-=n,this._active||this._start(t)),t.preventDefault()}},vo.prototype._onTimeout=function(e){this._type="wheel",this._delta-=this._lastValue,this._active||this._start(e)},vo.prototype._start=function(t){if(this._delta){this._frameId&&(this._frameId=null),this._active=!0,this.isZooming()||(this._zooming=!0),this._finishTimeout&&(clearTimeout(this._finishTimeout),delete this._finishTimeout);var r=n.mousePos(this._el,t);this._around=e.LngLat.convert(this._aroundCenter?this._map.getCenter():this._map.unproject(r)),this._aroundPoint=this._map.transform.locationPoint(this._around),this._frameId||(this._frameId=!0,this._handler._triggerRenderFrame())}},vo.prototype.renderFrame=function(){return this._onScrollFrame()},vo.prototype._onScrollFrame=function(){var t=this;if(this._frameId&&(this._frameId=null,this.isActive())){var n=this._map.transform;if(0!==this._delta){var r="wheel"===this._type&&Math.abs(this._delta)>uo?this._wheelZoomRate:this._defaultZoomRate,i=po/(1+Math.exp(-Math.abs(this._delta*r)));this._delta<0&&0!==i&&(i=1/i);var a="number"===typeof this._targetZoom?n.zoomScale(this._targetZoom):n.scale;this._targetZoom=Math.min(n.maxZoom,Math.max(n.minZoom,n.scaleZoom(a*i))),"wheel"===this._type&&(this._startZoom=n.zoom,this._easing=this._smoothOutEasing(200)),this._delta=0}var o,s="number"===typeof this._targetZoom?this._targetZoom:n.zoom,l=this._startZoom,c=this._easing,u=!1;if("wheel"===this._type&&l&&c){var f=Math.min((e.browser.now()-this._lastWheelEventTime)/200,1),d=c(f);o=e.number(l,s,d),f<1?this._frameId||(this._frameId=!0):u=!0}else o=s,u=!0;return this._active=!0,u&&(this._active=!1,this._finishTimeout=setTimeout((function(){t._zooming=!1,t._handler._triggerRenderFrame(),delete t._targetZoom,delete t._finishTimeout}),200)),{noInertia:!0,needsRenderFrame:!u,zoomDelta:o-n.zoom,around:this._aroundPoint,originalEvent:this._lastWheelEvent}}},vo.prototype._smoothOutEasing=function(t){var n=e.ease;if(this._prevEase){var r=this._prevEase,i=(e.browser.now()-r.start)/r.duration,a=r.easing(i+.01)-r.easing(i),o=.27/Math.sqrt(a*a+1e-4)*.01,s=Math.sqrt(.0729-o*o);n=e.bezier(o,s,.25,1)}return this._prevEase={start:e.browser.now(),duration:t,easing:n},n},vo.prototype.reset=function(){this._active=!1};var mo=function(e,t){this._clickZoom=e,this._tapZoom=t};mo.prototype.enable=function(){this._clickZoom.enable(),this._tapZoom.enable()},mo.prototype.disable=function(){this._clickZoom.disable(),this._tapZoom.disable()},mo.prototype.isEnabled=function(){return this._clickZoom.isEnabled()&&this._tapZoom.isEnabled()},mo.prototype.isActive=function(){return this._clickZoom.isActive()||this._tapZoom.isActive()};var go=function(){this.reset()};go.prototype.reset=function(){this._active=!1},go.prototype.dblclick=function(e,t){return e.preventDefault(),{cameraAnimation:function(n){n.easeTo({duration:300,zoom:n.getZoom()+(e.shiftKey?-1:1),around:n.unproject(t)},{originalEvent:e})}}},go.prototype.enable=function(){this._enabled=!0},go.prototype.disable=function(){this._enabled=!1,this.reset()},go.prototype.isEnabled=function(){return this._enabled},go.prototype.isActive=function(){return this._active};var yo=function(){this._tap=new Ua({numTouches:1,numTaps:1}),this.reset()};yo.prototype.reset=function(){this._active=!1,delete this._swipePoint,delete this._swipeTouch,delete this._tapTime,this._tap.reset()},yo.prototype.touchstart=function(e,t,n){this._swipePoint||(this._tapTime&&e.timeStamp-this._tapTime>Na&&this.reset(),this._tapTime?n.length>0&&(this._swipePoint=t[0],this._swipeTouch=n[0].identifier):this._tap.touchstart(e,t,n))},yo.prototype.touchmove=function(e,t,n){if(this._tapTime){if(this._swipePoint){if(n[0].identifier!==this._swipeTouch)return;var r=t[0],i=r.y-this._swipePoint.y;return this._swipePoint=r,e.preventDefault(),this._active=!0,{zoomDelta:i/128}}}else this._tap.touchmove(e,t,n)},yo.prototype.touchend=function(e,t,n){this._tapTime?this._swipePoint&&0===n.length&&this.reset():this._tap.touchend(e,t,n)&&(this._tapTime=e.timeStamp)},yo.prototype.touchcancel=function(){this.reset()},yo.prototype.enable=function(){this._enabled=!0},yo.prototype.disable=function(){this._enabled=!1,this.reset()},yo.prototype.isEnabled=function(){return this._enabled},yo.prototype.isActive=function(){return this._active};var bo=function(e,t,n){this._el=e,this._mousePan=t,this._touchPan=n};bo.prototype.enable=function(e){this._inertiaOptions=e||{},this._mousePan.enable(),this._touchPan.enable(),this._el.classList.add("mapboxgl-touch-drag-pan")},bo.prototype.disable=function(){this._mousePan.disable(),this._touchPan.disable(),this._el.classList.remove("mapboxgl-touch-drag-pan")},bo.prototype.isEnabled=function(){return this._mousePan.isEnabled()&&this._touchPan.isEnabled()},bo.prototype.isActive=function(){return this._mousePan.isActive()||this._touchPan.isActive()};var xo=function(e,t,n){this._pitchWithRotate=e.pitchWithRotate,this._mouseRotate=t,this._mousePitch=n};xo.prototype.enable=function(){this._mouseRotate.enable(),this._pitchWithRotate&&this._mousePitch.enable()},xo.prototype.disable=function(){this._mouseRotate.disable(),this._mousePitch.disable()},xo.prototype.isEnabled=function(){return this._mouseRotate.isEnabled()&&(!this._pitchWithRotate||this._mousePitch.isEnabled())},xo.prototype.isActive=function(){return this._mouseRotate.isActive()||this._mousePitch.isActive()};var wo=function(e,t,n,r){this._el=e,this._touchZoom=t,this._touchRotate=n,this._tapDragZoom=r,this._rotationDisabled=!1,this._enabled=!0};wo.prototype.enable=function(e){this._touchZoom.enable(e),this._rotationDisabled||this._touchRotate.enable(e),this._tapDragZoom.enable(),this._el.classList.add("mapboxgl-touch-zoom-rotate")},wo.prototype.disable=function(){this._touchZoom.disable(),this._touchRotate.disable(),this._tapDragZoom.disable(),this._el.classList.remove("mapboxgl-touch-zoom-rotate")},wo.prototype.isEnabled=function(){return this._touchZoom.isEnabled()&&(this._rotationDisabled||this._touchRotate.isEnabled())&&this._tapDragZoom.isEnabled()},wo.prototype.isActive=function(){return this._touchZoom.isActive()||this._touchRotate.isActive()||this._tapDragZoom.isActive()},wo.prototype.disableRotation=function(){this._rotationDisabled=!0,this._touchRotate.disable()},wo.prototype.enableRotation=function(){this._rotationDisabled=!1,this._touchZoom.isEnabled()&&this._touchRotate.enable()};var _o=function(e){return e.zoom||e.drag||e.pitch||e.rotate},ko=function(e){function t(){e.apply(this,arguments)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t}(e.Event);function So(e){return e.panDelta&&e.panDelta.mag()||e.zoomDelta||e.bearingDelta||e.pitchDelta}var To=function(t,r){this._map=t,this._el=this._map.getCanvasContainer(),this._handlers=[],this._handlersById={},this._changes=[],this._inertia=new Aa(t),this._bearingSnap=r.bearingSnap,this._previousActiveHandlers={},this._eventsInProgress={},this._addDefaultHandlers(r),e.bindAll(["handleEvent","handleWindowEvent"],this);var i=this._el;this._listeners=[[i,"touchstart",{passive:!1}],[i,"touchmove",{passive:!1}],[i,"touchend",void 0],[i,"touchcancel",void 0],[i,"mousedown",void 0],[i,"mousemove",void 0],[i,"mouseup",void 0],[e.window.document,"mousemove",{capture:!0}],[e.window.document,"mouseup",void 0],[i,"mouseover",void 0],[i,"mouseout",void 0],[i,"dblclick",void 0],[i,"click",void 0],[i,"keydown",{capture:!1}],[i,"keyup",void 0],[i,"wheel",{passive:!1}],[i,"contextmenu",void 0],[e.window,"blur",void 0]];for(var a=0,o=this._listeners;aa?Math.min(2,w):Math.max(.5,w),_=Math.pow(m,1-t),k=i.unproject(b.add(x.mult(t*_)).mult(v));i.setLocationAtPoint(i.renderWorldCopies?k.wrap():k,p)}r._fireMoveEvents(n)}),(function(e){r._afterEase(n,e)}),t),this},n.prototype._prepareEase=function(t,n,r){void 0===r&&(r={}),this._moving=!0,n||r.moving||this.fire(new e.Event("movestart",t)),this._zooming&&!r.zooming&&this.fire(new e.Event("zoomstart",t)),this._rotating&&!r.rotating&&this.fire(new e.Event("rotatestart",t)),this._pitching&&!r.pitching&&this.fire(new e.Event("pitchstart",t))},n.prototype._fireMoveEvents=function(t){this.fire(new e.Event("move",t)),this._zooming&&this.fire(new e.Event("zoom",t)),this._rotating&&this.fire(new e.Event("rotate",t)),this._pitching&&this.fire(new e.Event("pitch",t))},n.prototype._afterEase=function(t,n){if(!this._easeId||!n||this._easeId!==n){delete this._easeId;var r=this._zooming,i=this._rotating,a=this._pitching;this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,this._padding=!1,r&&this.fire(new e.Event("zoomend",t)),i&&this.fire(new e.Event("rotateend",t)),a&&this.fire(new e.Event("pitchend",t)),this.fire(new e.Event("moveend",t))}},n.prototype.flyTo=function(t,n){var r=this;if(!t.essential&&e.browser.prefersReducedMotion){var i=e.pick(t,["center","zoom","bearing","pitch","around"]);return this.jumpTo(i,n)}this.stop(),t=e.extend({offset:[0,0],speed:1.2,curve:1.42,easing:e.ease},t);var a=this.transform,o=this.getZoom(),s=this.getBearing(),l=this.getPitch(),c=this.getPadding(),u="zoom"in t?e.clamp(+t.zoom,a.minZoom,a.maxZoom):o,f="bearing"in t?this._normalizeBearing(t.bearing,s):s,d="pitch"in t?+t.pitch:l,h="padding"in t?t.padding:a.padding,p=a.zoomScale(u-o),v=e.Point.convert(t.offset),m=a.centerPoint.add(v),g=a.pointLocation(m),y=e.LngLat.convert(t.center||g);this._normalizeCenter(y);var b=a.project(g),x=a.project(y).sub(b),w=t.curve,_=Math.max(a.width,a.height),k=_/p,S=x.mag();if("minZoom"in t){var T=e.clamp(Math.min(t.minZoom,o,u),a.minZoom,a.maxZoom),A=_/a.zoomScale(T-o);w=Math.sqrt(A/S*2)}var E=w*w;function C(e){var t=(k*k-_*_+(e?-1:1)*E*E*S*S)/(2*(e?k:_)*E*S);return Math.log(Math.sqrt(t*t+1)-t)}function M(e){return(Math.exp(e)-Math.exp(-e))/2}function O(e){return(Math.exp(e)+Math.exp(-e))/2}function P(e){return M(e)/O(e)}var L=C(0),I=function(e){return O(L)/O(L+w*e)},R=function(e){return _*((O(L)*P(L+w*e)-M(L))/E)/S},D=(C(1)-L)/w;if(Math.abs(S)<1e-6||!isFinite(D)){if(Math.abs(_-k)<1e-6)return this.easeTo(t,n);var F=k<_?-1:1;D=Math.abs(Math.log(k/_))/w,R=function(){return 0},I=function(e){return Math.exp(F*w*e)}}if("duration"in t)t.duration=+t.duration;else{var N="screenSpeed"in t?+t.screenSpeed/w:+t.speed;t.duration=1e3*D/N}return t.maxDuration&&t.duration>t.maxDuration&&(t.duration=0),this._zooming=!0,this._rotating=s!==f,this._pitching=d!==l,this._padding=!a.isPaddingEqual(h),this._prepareEase(n,!1),this._ease((function(t){var i=t*D,p=1/I(i);a.zoom=1===t?u:o+a.scaleZoom(p),r._rotating&&(a.bearing=e.number(s,f,t)),r._pitching&&(a.pitch=e.number(l,d,t)),r._padding&&(a.interpolatePadding(c,h,t),m=a.centerPoint.add(v));var g=1===t?y:a.unproject(b.add(x.mult(R(i))).mult(p));a.setLocationAtPoint(a.renderWorldCopies?g.wrap():g,m),r._fireMoveEvents(n)}),(function(){return r._afterEase(n)}),t),this},n.prototype.isEasing=function(){return!!this._easeFrameId},n.prototype.stop=function(){return this._stop()},n.prototype._stop=function(e,t){if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),delete this._easeFrameId,delete this._onEaseFrame),this._onEaseEnd){var n=this._onEaseEnd;delete this._onEaseEnd,n.call(this,t)}if(!e){var r=this.handlers;r&&r.stop()}return this},n.prototype._ease=function(t,n,r){!1===r.animate||0===r.duration?(t(1),n()):(this._easeStart=e.browser.now(),this._easeOptions=r,this._onEaseFrame=t,this._onEaseEnd=n,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))},n.prototype._renderFrameCallback=function(){var t=Math.min((e.browser.now()-this._easeStart)/this._easeOptions.duration,1);this._onEaseFrame(this._easeOptions.easing(t)),t<1?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()},n.prototype._normalizeBearing=function(t,n){t=e.wrap(t,-180,180);var r=Math.abs(t-n);return Math.abs(t-360-n)180?-360:n<-180?360:0}},n}(e.Evented),Eo=function(t){void 0===t&&(t={}),this.options=t,e.bindAll(["_updateEditLink","_updateData","_updateCompact"],this)};Eo.prototype.getDefaultPosition=function(){return"bottom-right"},Eo.prototype.onAdd=function(e){var t=this.options&&this.options.compact;return this._map=e,this._container=n.create("div","mapboxgl-ctrl mapboxgl-ctrl-attrib"),this._innerContainer=n.create("div","mapboxgl-ctrl-attrib-inner",this._container),t&&this._container.classList.add("mapboxgl-compact"),this._updateAttributions(),this._updateEditLink(),this._map.on("styledata",this._updateData),this._map.on("sourcedata",this._updateData),this._map.on("moveend",this._updateEditLink),void 0===t&&(this._map.on("resize",this._updateCompact),this._updateCompact()),this._container},Eo.prototype.onRemove=function(){n.remove(this._container),this._map.off("styledata",this._updateData),this._map.off("sourcedata",this._updateData),this._map.off("moveend",this._updateEditLink),this._map.off("resize",this._updateCompact),this._map=void 0,this._attribHTML=void 0},Eo.prototype._updateEditLink=function(){var t=this._editLink;t||(t=this._editLink=this._container.querySelector(".mapbox-improve-map"));var n=[{key:"owner",value:this.styleOwner},{key:"id",value:this.styleId},{key:"access_token",value:this._map._requestManager._customAccessToken||e.config.ACCESS_TOKEN}];if(t){var r=n.reduce((function(e,t,r){return t.value&&(e+=t.key+"="+t.value+(r=0)return!1;return!0}))).join(" | ");o!==this._attribHTML&&(this._attribHTML=o,e.length?(this._innerContainer.innerHTML=o,this._container.classList.remove("mapboxgl-attrib-empty")):this._container.classList.add("mapboxgl-attrib-empty"),this._editLink=null)}},Eo.prototype._updateCompact=function(){this._map.getCanvasContainer().offsetWidth<=640?this._container.classList.add("mapboxgl-compact"):this._container.classList.remove("mapboxgl-compact")};var Co=function(){e.bindAll(["_updateLogo"],this),e.bindAll(["_updateCompact"],this)};Co.prototype.onAdd=function(e){this._map=e,this._container=n.create("div","mapboxgl-ctrl");var t=n.create("a","mapboxgl-ctrl-logo");return t.target="_blank",t.rel="noopener nofollow",t.href="https://www.mapbox.com/",t.setAttribute("aria-label",this._map._getUIString("LogoControl.Title")),t.setAttribute("rel","noopener nofollow"),this._container.appendChild(t),this._container.style.display="none",this._map.on("sourcedata",this._updateLogo),this._updateLogo(),this._map.on("resize",this._updateCompact),this._updateCompact(),this._container},Co.prototype.onRemove=function(){n.remove(this._container),this._map.off("sourcedata",this._updateLogo),this._map.off("resize",this._updateCompact)},Co.prototype.getDefaultPosition=function(){return"bottom-left"},Co.prototype._updateLogo=function(e){e&&"metadata"!==e.sourceDataType||(this._container.style.display=this._logoRequired()?"block":"none")},Co.prototype._logoRequired=function(){if(this._map.style){var e=this._map.style.sourceCaches;for(var t in e)if(e[t].getSource().mapbox_logo)return!0;return!1}},Co.prototype._updateCompact=function(){var e=this._container.children;if(e.length){var t=e[0];this._map.getCanvasContainer().offsetWidth<250?t.classList.add("mapboxgl-compact"):t.classList.remove("mapboxgl-compact")}};var Mo=function(){this._queue=[],this._id=0,this._cleared=!1,this._currentlyRunning=!1};Mo.prototype.add=function(e){var t=++this._id;return this._queue.push({callback:e,id:t,cancelled:!1}),t},Mo.prototype.remove=function(e){for(var t=this._currentlyRunning,n=0,r=t?this._queue.concat(t):this._queue;nt.maxZoom)throw new Error("maxZoom must be greater than or equal to minZoom");if(null!=t.minPitch&&null!=t.maxPitch&&t.minPitch>t.maxPitch)throw new Error("maxPitch must be greater than or equal to minPitch");if(null!=t.minPitch&&t.minPitchNo)throw new Error("maxPitch must be less than or equal to "+No);var i=new ga(t.minZoom,t.maxZoom,t.minPitch,t.maxPitch,t.renderWorldCopies);if(r.call(this,i,t),this._interactive=t.interactive,this._maxTileCacheSize=t.maxTileCacheSize,this._failIfMajorPerformanceCaveat=t.failIfMajorPerformanceCaveat,this._preserveDrawingBuffer=t.preserveDrawingBuffer,this._antialias=t.antialias,this._trackResize=t.trackResize,this._bearingSnap=t.bearingSnap,this._refreshExpiredTiles=t.refreshExpiredTiles,this._fadeDuration=t.fadeDuration,this._crossSourceCollisions=t.crossSourceCollisions,this._crossFadingFactor=1,this._collectResourceTiming=t.collectResourceTiming,this._renderTaskQueue=new Mo,this._controls=[],this._mapId=e.uniqueId(),this._locale=e.extend({},Oo,t.locale),this._requestManager=new e.RequestManager(t.transformRequest,t.accessToken),"string"===typeof t.container){if(this._container=e.window.document.getElementById(t.container),!this._container)throw new Error("Container '"+t.container+"' not found.")}else{if(!(t.container instanceof Lo))throw new Error("Invalid type: 'container' must be a String or HTMLElement.");this._container=t.container}if(t.maxBounds&&this.setMaxBounds(t.maxBounds),e.bindAll(["_onWindowOnline","_onWindowResize","_contextLost","_contextRestored"],this),this._setupContainer(),this._setupPainter(),void 0===this.painter)throw new Error("Failed to initialize WebGL.");this.on("move",(function(){return n._update(!1)})),this.on("moveend",(function(){return n._update(!1)})),this.on("zoom",(function(){return n._update(!0)})),"undefined"!==typeof e.window&&(e.window.addEventListener("online",this._onWindowOnline,!1),e.window.addEventListener("resize",this._onWindowResize,!1)),this.handlers=new To(this,t);var a="string"===typeof t.hash&&t.hash||void 0;this._hash=t.hash&&new xa(a).addTo(this),this._hash&&this._hash._onHashChange()||(this.jumpTo({center:t.center,zoom:t.zoom,bearing:t.bearing,pitch:t.pitch}),t.bounds&&(this.resize(),this.fitBounds(t.bounds,e.extend({},t.fitBoundsOptions,{duration:0})))),this.resize(),this._localIdeographFontFamily=t.localIdeographFontFamily,t.style&&this.setStyle(t.style,{localIdeographFontFamily:t.localIdeographFontFamily}),t.attributionControl&&this.addControl(new Eo({customAttribution:t.customAttribution})),this.addControl(new Co,t.logoPosition),this.on("style.load",(function(){n.transform.unmodified&&n.jumpTo(n.style.stylesheet)})),this.on("data",(function(t){n._update("style"===t.dataType),n.fire(new e.Event(t.dataType+"data",t))})),this.on("dataloading",(function(t){n.fire(new e.Event(t.dataType+"dataloading",t))}))}r&&(i.__proto__=r),i.prototype=Object.create(r&&r.prototype),i.prototype.constructor=i;var a={showTileBoundaries:{configurable:!0},showPadding:{configurable:!0},showCollisionBoxes:{configurable:!0},showOverdrawInspector:{configurable:!0},repaint:{configurable:!0},vertices:{configurable:!0},version:{configurable:!0}};return i.prototype._getMapId=function(){return this._mapId},i.prototype.addControl=function(t,n){if(void 0===n&&t.getDefaultPosition&&(n=t.getDefaultPosition()),void 0===n&&(n="top-right"),!t||!t.onAdd)return this.fire(new e.ErrorEvent(new Error("Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.")));var r=t.onAdd(this);this._controls.push(t);var i=this._controlPositions[n];return-1!==n.indexOf("bottom")?i.insertBefore(r,i.firstChild):i.appendChild(r),this},i.prototype.removeControl=function(t){if(!t||!t.onRemove)return this.fire(new e.ErrorEvent(new Error("Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.")));var n=this._controls.indexOf(t);return n>-1&&this._controls.splice(n,1),t.onRemove(this),this},i.prototype.resize=function(t){var n=this._containerDimensions(),r=n[0],i=n[1];this._resizeCanvas(r,i),this.transform.resize(r,i),this.painter.resize(r,i);var a=!this._moving;return a&&(this.stop(),this.fire(new e.Event("movestart",t)).fire(new e.Event("move",t))),this.fire(new e.Event("resize",t)),a&&this.fire(new e.Event("moveend",t)),this},i.prototype.getBounds=function(){return this.transform.getBounds()},i.prototype.getMaxBounds=function(){return this.transform.getMaxBounds()},i.prototype.setMaxBounds=function(t){return this.transform.setMaxBounds(e.LngLatBounds.convert(t)),this._update()},i.prototype.setMinZoom=function(e){if((e=null===e||void 0===e?Ro:e)>=Ro&&e<=this.transform.maxZoom)return this.transform.minZoom=e,this._update(),this.getZoom()=this.transform.minZoom)return this.transform.maxZoom=e,this._update(),this.getZoom()>e&&this.setZoom(e),this;throw new Error("maxZoom must be greater than the current minZoom")},i.prototype.getMaxZoom=function(){return this.transform.maxZoom},i.prototype.setMinPitch=function(e){if((e=null===e||void 0===e?Fo:e)=Fo&&e<=this.transform.maxPitch)return this.transform.minPitch=e,this._update(),this.getPitch()No)throw new Error("maxPitch must be less than or equal to "+No);if(e>=this.transform.minPitch)return this.transform.maxPitch=e,this._update(),this.getPitch()>e&&this.setPitch(e),this;throw new Error("maxPitch must be greater than the current minPitch")},i.prototype.getMaxPitch=function(){return this.transform.maxPitch},i.prototype.getRenderWorldCopies=function(){return this.transform.renderWorldCopies},i.prototype.setRenderWorldCopies=function(e){return this.transform.renderWorldCopies=e,this._update()},i.prototype.project=function(t){return this.transform.locationPoint(e.LngLat.convert(t))},i.prototype.unproject=function(t){return this.transform.pointLocation(e.Point.convert(t))},i.prototype.isMoving=function(){return this._moving||this.handlers.isMoving()},i.prototype.isZooming=function(){return this._zooming||this.handlers.isZooming()},i.prototype.isRotating=function(){return this._rotating||this.handlers.isRotating()},i.prototype._createDelegatedListener=function(e,t,n){var r,i=this;if("mouseenter"===e||"mouseover"===e){var a=!1,o=function(r){var o=i.getLayer(t)?i.queryRenderedFeatures(r.point,{layers:[t]}):[];o.length?a||(a=!0,n.call(i,new Ma(e,i,r.originalEvent,{features:o}))):a=!1};return{layer:t,listener:n,delegates:{mousemove:o,mouseout:function(){a=!1}}}}if("mouseleave"===e||"mouseout"===e){var s=!1,l=function(r){(i.getLayer(t)?i.queryRenderedFeatures(r.point,{layers:[t]}):[]).length?s=!0:s&&(s=!1,n.call(i,new Ma(e,i,r.originalEvent)))},c=function(t){s&&(s=!1,n.call(i,new Ma(e,i,t.originalEvent)))};return{layer:t,listener:n,delegates:{mousemove:l,mouseout:c}}}var u=function(e){var r=i.getLayer(t)?i.queryRenderedFeatures(e.point,{layers:[t]}):[];r.length&&(e.features=r,n.call(i,e),delete e.features)};return{layer:t,listener:n,delegates:(r={},r[e]=u,r)}},i.prototype.on=function(e,t,n){if(void 0===n)return r.prototype.on.call(this,e,t);var i=this._createDelegatedListener(e,t,n);for(var a in this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[e]=this._delegatedListeners[e]||[],this._delegatedListeners[e].push(i),i.delegates)this.on(a,i.delegates[a]);return this},i.prototype.once=function(e,t,n){if(void 0===n)return r.prototype.once.call(this,e,t);var i=this._createDelegatedListener(e,t,n);for(var a in i.delegates)this.once(a,i.delegates[a]);return this},i.prototype.off=function(e,t,n){var i=this;if(void 0===n)return r.prototype.off.call(this,e,t);var a=function(r){for(var a=r[e],o=0;o180;){var s=r.locationPoint(t);if(s.x>=0&&s.y>=0&&s.x<=r.width&&s.y<=r.height)break;t.lng>r.center.lng?t.lng-=360:t.lng+=360}return t}$o.prototype.down=function(e,t){this.mouseRotate.mousedown(e,t),this.mousePitch&&this.mousePitch.mousedown(e,t),n.disableDrag()},$o.prototype.move=function(e,t){var n=this.map,r=this.mouseRotate.mousemoveWindow(e,t);if(r&&r.bearingDelta&&n.setBearing(n.getBearing()+r.bearingDelta),this.mousePitch){var i=this.mousePitch.mousemoveWindow(e,t);i&&i.pitchDelta&&n.setPitch(n.getPitch()+i.pitchDelta)}},$o.prototype.off=function(){var e=this.element;n.removeEventListener(e,"mousedown",this.mousedown),n.removeEventListener(e,"touchstart",this.touchstart,{passive:!1}),n.removeEventListener(e,"touchmove",this.touchmove),n.removeEventListener(e,"touchend",this.touchend),n.removeEventListener(e,"touchcancel",this.reset),this.offTemp()},$o.prototype.offTemp=function(){n.enableDrag(),n.removeEventListener(e.window,"mousemove",this.mousemove),n.removeEventListener(e.window,"mouseup",this.mouseup)},$o.prototype.mousedown=function(t){this.down(e.extend({},t,{ctrlKey:!0,preventDefault:function(){return t.preventDefault()}}),n.mousePos(this.element,t)),n.addEventListener(e.window,"mousemove",this.mousemove),n.addEventListener(e.window,"mouseup",this.mouseup)},$o.prototype.mousemove=function(e){this.move(e,n.mousePos(this.element,e))},$o.prototype.mouseup=function(e){this.mouseRotate.mouseupWindow(e),this.mousePitch&&this.mousePitch.mouseupWindow(e),this.offTemp()},$o.prototype.touchstart=function(e){1!==e.targetTouches.length?this.reset():(this._startPos=this._lastPos=n.touchPos(this.element,e.targetTouches)[0],this.down({type:"mousedown",button:0,ctrlKey:!0,preventDefault:function(){return e.preventDefault()}},this._startPos))},$o.prototype.touchmove=function(e){1!==e.targetTouches.length?this.reset():(this._lastPos=n.touchPos(this.element,e.targetTouches)[0],this.move({preventDefault:function(){return e.preventDefault()}},this._lastPos))},$o.prototype.touchend=function(e){0===e.targetTouches.length&&this._startPos&&this._lastPos&&this._startPos.dist(this._lastPos)t.getEast()||n.latitudet.getNorth())},r.prototype._setErrorState=function(){switch(this._watchState){case"WAITING_ACTIVE":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error");break;case"ACTIVE_LOCK":this._watchState="ACTIVE_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting");break;case"BACKGROUND":this._watchState="BACKGROUND_ERROR",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting")}},r.prototype._onSuccess=function(t){if(this._map){if(this._isOutOfMapMaxBounds(t))return this._setErrorState(),this.fire(new e.Event("outofmaxbounds",t)),this._updateMarker(),void this._finish();if(this.options.trackUserLocation)switch(this._lastKnownPosition=t,this._watchState){case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"BACKGROUND":case"BACKGROUND_ERROR":this._watchState="BACKGROUND",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background")}this.options.showUserLocation&&"OFF"!==this._watchState&&this._updateMarker(t),this.options.trackUserLocation&&"ACTIVE_LOCK"!==this._watchState||this._updateCamera(t),this.options.showUserLocation&&this._dotElement.classList.remove("mapboxgl-user-location-dot-stale"),this.fire(new e.Event("geolocate",t)),this._finish()}},r.prototype._updateCamera=function(t){var n=new e.LngLat(t.coords.longitude,t.coords.latitude),r=t.coords.accuracy,i=this._map.getBearing(),a=e.extend({bearing:i},this.options.fitBoundsOptions);this._map.fitBounds(n.toBounds(r),a,{geolocateSource:!0})},r.prototype._updateMarker=function(t){if(t){var n=new e.LngLat(t.coords.longitude,t.coords.latitude);this._accuracyCircleMarker.setLngLat(n).addTo(this._map),this._userLocationDotMarker.setLngLat(n).addTo(this._map),this._accuracy=t.coords.accuracy,this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()}else this._userLocationDotMarker.remove(),this._accuracyCircleMarker.remove()},r.prototype._updateCircleRadius=function(){var e=this._map._container.clientHeight/2,t=this._map.unproject([0,e]),n=this._map.unproject([1,e]),r=t.distanceTo(n),i=Math.ceil(2*this._accuracy/r);this._circleElement.style.width=i+"px",this._circleElement.style.height=i+"px"},r.prototype._onZoom=function(){this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()},r.prototype._onError=function(t){if(this._map){if(this.options.trackUserLocation)if(1===t.code){this._watchState="OFF",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this._geolocateButton.disabled=!0;var n=this._map._getUIString("GeolocateControl.LocationNotAvailable");this._geolocateButton.title=n,this._geolocateButton.setAttribute("aria-label",n),void 0!==this._geolocationWatchID&&this._clearWatch()}else{if(3===t.code&&Jo)return;this._setErrorState()}"OFF"!==this._watchState&&this.options.showUserLocation&&this._dotElement.classList.add("mapboxgl-user-location-dot-stale"),this.fire(new e.Event("error",t)),this._finish()}},r.prototype._finish=function(){this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},r.prototype._setupUI=function(t){var r=this;if(this._container.addEventListener("contextmenu",(function(e){return e.preventDefault()})),this._geolocateButton=n.create("button","mapboxgl-ctrl-geolocate",this._container),n.create("span","mapboxgl-ctrl-icon",this._geolocateButton).setAttribute("aria-hidden",!0),this._geolocateButton.type="button",!1===t){e.warnOnce("Geolocation support is not available so the GeolocateControl will be disabled.");var i=this._map._getUIString("GeolocateControl.LocationNotAvailable");this._geolocateButton.disabled=!0,this._geolocateButton.title=i,this._geolocateButton.setAttribute("aria-label",i)}else{var a=this._map._getUIString("GeolocateControl.FindMyLocation");this._geolocateButton.title=a,this._geolocateButton.setAttribute("aria-label",a)}this.options.trackUserLocation&&(this._geolocateButton.setAttribute("aria-pressed","false"),this._watchState="OFF"),this.options.showUserLocation&&(this._dotElement=n.create("div","mapboxgl-user-location-dot"),this._userLocationDotMarker=new Zo(this._dotElement),this._circleElement=n.create("div","mapboxgl-user-location-accuracy-circle"),this._accuracyCircleMarker=new Zo({element:this._circleElement,pitchAlignment:"map"}),this.options.trackUserLocation&&(this._watchState="OFF"),this._map.on("zoom",this._onZoom)),this._geolocateButton.addEventListener("click",this.trigger.bind(this)),this._setup=!0,this.options.trackUserLocation&&this._map.on("movestart",(function(t){var n=t.originalEvent&&"resize"===t.originalEvent.type;t.geolocateSource||"ACTIVE_LOCK"!==r._watchState||n||(r._watchState="BACKGROUND",r._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background"),r._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),r.fire(new e.Event("trackuserlocationend")))}))},r.prototype.trigger=function(){if(!this._setup)return e.warnOnce("Geolocate control triggered before added to a map"),!1;if(this.options.trackUserLocation){switch(this._watchState){case"OFF":this._watchState="WAITING_ACTIVE",this.fire(new e.Event("trackuserlocationstart"));break;case"WAITING_ACTIVE":case"ACTIVE_LOCK":case"ACTIVE_ERROR":case"BACKGROUND_ERROR":Xo--,Jo=!1,this._watchState="OFF",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-active-error"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background-error"),this.fire(new e.Event("trackuserlocationend"));break;case"BACKGROUND":this._watchState="ACTIVE_LOCK",this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-background"),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new e.Event("trackuserlocationstart"))}switch(this._watchState){case"WAITING_ACTIVE":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"ACTIVE_LOCK":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active");break;case"ACTIVE_ERROR":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-active-error");break;case"BACKGROUND":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background");break;case"BACKGROUND_ERROR":this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-background-error")}if("OFF"===this._watchState&&void 0!==this._geolocationWatchID)this._clearWatch();else if(void 0===this._geolocationWatchID){var t;this._geolocateButton.classList.add("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed","true"),++Xo>1?(t={maximumAge:6e5,timeout:0},Jo=!0):(t=this.options.positionOptions,Jo=!1),this._geolocationWatchID=e.window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,t)}}else e.window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4);return!0},r.prototype._clearWatch=function(){e.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove("mapboxgl-ctrl-geolocate-waiting"),this._geolocateButton.setAttribute("aria-pressed","false"),this.options.showUserLocation&&this._updateMarker(null)},r}(e.Evented),es={maxWidth:100,unit:"metric"},ts=function(t){this.options=e.extend({},es,t),e.bindAll(["_onMove","setUnit"],this)};function ns(e,t,n){var r=n&&n.maxWidth||100,i=e._container.clientHeight/2,a=e.unproject([0,i]),o=e.unproject([r,i]),s=a.distanceTo(o);if(n&&"imperial"===n.unit){var l=3.2808*s;l>5280?rs(t,r,l/5280,e._getUIString("ScaleControl.Miles")):rs(t,r,l,e._getUIString("ScaleControl.Feet"))}else n&&"nautical"===n.unit?rs(t,r,s/1852,e._getUIString("ScaleControl.NauticalMiles")):s>=1e3?rs(t,r,s/1e3,e._getUIString("ScaleControl.Kilometers")):rs(t,r,s,e._getUIString("ScaleControl.Meters"))}function rs(e,t,n,r){var i=as(n),a=i/n;e.style.width=t*a+"px",e.innerHTML=i+" "+r}function is(e){var t=Math.pow(10,Math.ceil(-Math.log(e)/Math.LN10));return Math.round(e*t)/t}function as(e){var t=Math.pow(10,(""+Math.floor(e)).length-1),n=e/t;return t*(n=n>=10?10:n>=5?5:n>=3?3:n>=2?2:n>=1?1:is(n))}ts.prototype.getDefaultPosition=function(){return"bottom-left"},ts.prototype._onMove=function(){ns(this._map,this._container,this.options)},ts.prototype.onAdd=function(e){return this._map=e,this._container=n.create("div","mapboxgl-ctrl mapboxgl-ctrl-scale",e.getContainer()),this._map.on("move",this._onMove),this._onMove(),this._container},ts.prototype.onRemove=function(){n.remove(this._container),this._map.off("move",this._onMove),this._map=void 0},ts.prototype.setUnit=function(e){this.options.unit=e,ns(this._map,this._container,this.options)};var os=function(t){this._fullscreen=!1,t&&t.container&&(t.container instanceof e.window.HTMLElement?this._container=t.container:e.warnOnce("Full screen control 'container' must be a DOM element.")),e.bindAll(["_onClickFullscreen","_changeIcon"],this),"onfullscreenchange"in e.window.document?this._fullscreenchange="fullscreenchange":"onmozfullscreenchange"in e.window.document?this._fullscreenchange="mozfullscreenchange":"onwebkitfullscreenchange"in e.window.document?this._fullscreenchange="webkitfullscreenchange":"onmsfullscreenchange"in e.window.document&&(this._fullscreenchange="MSFullscreenChange")};os.prototype.onAdd=function(t){return this._map=t,this._container||(this._container=this._map.getContainer()),this._controlContainer=n.create("div","mapboxgl-ctrl mapboxgl-ctrl-group"),this._checkFullscreenSupport()?this._setupUI():(this._controlContainer.style.display="none",e.warnOnce("This device does not support fullscreen mode.")),this._controlContainer},os.prototype.onRemove=function(){n.remove(this._controlContainer),this._map=null,e.window.document.removeEventListener(this._fullscreenchange,this._changeIcon)},os.prototype._checkFullscreenSupport=function(){return!!(e.window.document.fullscreenEnabled||e.window.document.mozFullScreenEnabled||e.window.document.msFullscreenEnabled||e.window.document.webkitFullscreenEnabled)},os.prototype._setupUI=function(){var t=this._fullscreenButton=n.create("button","mapboxgl-ctrl-fullscreen",this._controlContainer);n.create("span","mapboxgl-ctrl-icon",t).setAttribute("aria-hidden",!0),t.type="button",this._updateTitle(),this._fullscreenButton.addEventListener("click",this._onClickFullscreen),e.window.document.addEventListener(this._fullscreenchange,this._changeIcon)},os.prototype._updateTitle=function(){var e=this._getTitle();this._fullscreenButton.setAttribute("aria-label",e),this._fullscreenButton.title=e},os.prototype._getTitle=function(){return this._map._getUIString(this._isFullscreen()?"FullscreenControl.Exit":"FullscreenControl.Enter")},os.prototype._isFullscreen=function(){return this._fullscreen},os.prototype._changeIcon=function(){(e.window.document.fullscreenElement||e.window.document.mozFullScreenElement||e.window.document.webkitFullscreenElement||e.window.document.msFullscreenElement)===this._container!==this._fullscreen&&(this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle("mapboxgl-ctrl-shrink"),this._fullscreenButton.classList.toggle("mapboxgl-ctrl-fullscreen"),this._updateTitle())},os.prototype._onClickFullscreen=function(){this._isFullscreen()?e.window.document.exitFullscreen?e.window.document.exitFullscreen():e.window.document.mozCancelFullScreen?e.window.document.mozCancelFullScreen():e.window.document.msExitFullscreen?e.window.document.msExitFullscreen():e.window.document.webkitCancelFullScreen&&e.window.document.webkitCancelFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.mozRequestFullScreen?this._container.mozRequestFullScreen():this._container.msRequestFullscreen?this._container.msRequestFullscreen():this._container.webkitRequestFullscreen&&this._container.webkitRequestFullscreen()};var ss={closeButton:!0,closeOnClick:!0,className:"",maxWidth:"240px"},ls=function(t){function r(n){t.call(this),this.options=e.extend(Object.create(ss),n),e.bindAll(["_update","_onClose","remove","_onMouseMove","_onMouseUp","_onDrag"],this)}return t&&(r.__proto__=t),r.prototype=Object.create(t&&t.prototype),r.prototype.constructor=r,r.prototype.addTo=function(t){return this._map&&this.remove(),this._map=t,this.options.closeOnClick&&this._map.on("click",this._onClose),this.options.closeOnMove&&this._map.on("move",this._onClose),this._map.on("remove",this.remove),this._update(),this._trackPointer?(this._map.on("mousemove",this._onMouseMove),this._map.on("mouseup",this._onMouseUp),this._container&&this._container.classList.add("mapboxgl-popup-track-pointer"),this._map._canvasContainer.classList.add("mapboxgl-track-pointer")):this._map.on("move",this._update),this.fire(new e.Event("open")),this},r.prototype.isOpen=function(){return!!this._map},r.prototype.remove=function(){return this._content&&n.remove(this._content),this._container&&(n.remove(this._container),delete this._container),this._map&&(this._map.off("move",this._update),this._map.off("move",this._onClose),this._map.off("click",this._onClose),this._map.off("remove",this.remove),this._map.off("mousemove",this._onMouseMove),this._map.off("mouseup",this._onMouseUp),this._map.off("drag",this._onDrag),delete this._map),this.fire(new e.Event("close")),this},r.prototype.getLngLat=function(){return this._lngLat},r.prototype.setLngLat=function(t){return this._lngLat=e.LngLat.convert(t),this._pos=null,this._trackPointer=!1,this._update(),this._map&&(this._map.on("move",this._update),this._map.off("mousemove",this._onMouseMove),this._container&&this._container.classList.remove("mapboxgl-popup-track-pointer"),this._map._canvasContainer.classList.remove("mapboxgl-track-pointer")),this},r.prototype.trackPointer=function(){return this._trackPointer=!0,this._pos=null,this._update(),this._map&&(this._map.off("move",this._update),this._map.on("mousemove",this._onMouseMove),this._map.on("drag",this._onDrag),this._container&&this._container.classList.add("mapboxgl-popup-track-pointer"),this._map._canvasContainer.classList.add("mapboxgl-track-pointer")),this},r.prototype.getElement=function(){return this._container},r.prototype.setText=function(t){return this.setDOMContent(e.window.document.createTextNode(t))},r.prototype.setHTML=function(t){var n,r=e.window.document.createDocumentFragment(),i=e.window.document.createElement("body");for(i.innerHTML=t;n=i.firstChild;)r.appendChild(n);return this.setDOMContent(r)},r.prototype.getMaxWidth=function(){return this._container&&this._container.style.maxWidth},r.prototype.setMaxWidth=function(e){return this.options.maxWidth=e,this._update(),this},r.prototype.setDOMContent=function(e){return this._createContent(),this._content.appendChild(e),this._update(),this},r.prototype.addClassName=function(e){this._container&&this._container.classList.add(e)},r.prototype.removeClassName=function(e){this._container&&this._container.classList.remove(e)},r.prototype.toggleClassName=function(e){if(this._container)return this._container.classList.toggle(e)},r.prototype._createContent=function(){this._content&&n.remove(this._content),this._content=n.create("div","mapboxgl-popup-content",this._container),this.options.closeButton&&(this._closeButton=n.create("button","mapboxgl-popup-close-button",this._content),this._closeButton.type="button",this._closeButton.setAttribute("aria-label","Close popup"),this._closeButton.innerHTML="×",this._closeButton.addEventListener("click",this._onClose))},r.prototype._onMouseUp=function(e){this._update(e.point)},r.prototype._onMouseMove=function(e){this._update(e.point)},r.prototype._onDrag=function(e){this._update(e.point)},r.prototype._update=function(e){var t=this,r=this._lngLat||this._trackPointer;if(this._map&&r&&this._content&&(this._container||(this._container=n.create("div","mapboxgl-popup",this._map.getContainer()),this._tip=n.create("div","mapboxgl-popup-tip",this._container),this._container.appendChild(this._content),this.options.className&&this.options.className.split(" ").forEach((function(e){return t._container.classList.add(e)})),this._trackPointer&&this._container.classList.add("mapboxgl-popup-track-pointer")),this.options.maxWidth&&this._container.style.maxWidth!==this.options.maxWidth&&(this._container.style.maxWidth=this.options.maxWidth),this._map.transform.renderWorldCopies&&!this._trackPointer&&(this._lngLat=Vo(this._lngLat,this._pos,this._map.transform)),!this._trackPointer||e)){var i=this._pos=this._trackPointer&&e?e:this._map.project(this._lngLat),a=this.options.anchor,o=cs(this.options.offset);if(!a){var s,l=this._container.offsetWidth,c=this._container.offsetHeight;s=i.y+o.bottom.ythis._map.transform.height-c?["bottom"]:[],i.xthis._map.transform.width-l/2&&s.push("right"),a=0===s.length?"bottom":s.join("-")}var u=i.add(o[a]).round();n.setTransform(this._container,Wo[a]+" translate("+u.x+"px,"+u.y+"px)"),qo(this._container,a,"popup")}},r.prototype._onClose=function(){this.remove()},r}(e.Evented);function cs(t){if(t){if("number"===typeof t){var n=Math.round(Math.sqrt(.5*Math.pow(t,2)));return{center:new e.Point(0,0),top:new e.Point(0,t),"top-left":new e.Point(n,n),"top-right":new e.Point(-n,n),bottom:new e.Point(0,-t),"bottom-left":new e.Point(n,-n),"bottom-right":new e.Point(-n,-n),left:new e.Point(t,0),right:new e.Point(-t,0)}}if(t instanceof e.Point||Array.isArray(t)){var r=e.Point.convert(t);return{center:r,top:r,"top-left":r,"top-right":r,bottom:r,"bottom-left":r,"bottom-right":r,left:r,right:r}}return{center:e.Point.convert(t.center||[0,0]),top:e.Point.convert(t.top||[0,0]),"top-left":e.Point.convert(t["top-left"]||[0,0]),"top-right":e.Point.convert(t["top-right"]||[0,0]),bottom:e.Point.convert(t.bottom||[0,0]),"bottom-left":e.Point.convert(t["bottom-left"]||[0,0]),"bottom-right":e.Point.convert(t["bottom-right"]||[0,0]),left:e.Point.convert(t.left||[0,0]),right:e.Point.convert(t.right||[0,0])}}return cs(new e.Point(0,0))}var us={version:e.version,supported:t,setRTLTextPlugin:e.setRTLTextPlugin,getRTLTextPluginStatus:e.getRTLTextPluginStatus,Map:jo,NavigationControl:Ho,GeolocateControl:Qo,AttributionControl:Eo,ScaleControl:ts,FullscreenControl:os,Popup:ls,Marker:Zo,Style:gn,LngLat:e.LngLat,LngLatBounds:e.LngLatBounds,Point:e.Point,MercatorCoordinate:e.MercatorCoordinate,Evented:e.Evented,config:e.config,prewarm:at,clearPrewarmedResources:ot,get accessToken(){return e.config.ACCESS_TOKEN},set accessToken(t){e.config.ACCESS_TOKEN=t},get baseApiUrl(){return e.config.API_URL},set baseApiUrl(t){e.config.API_URL=t},get workerCount(){return tt.workerCount},set workerCount(e){tt.workerCount=e},get maxParallelImageRequests(){return e.config.MAX_PARALLEL_IMAGE_REQUESTS},set maxParallelImageRequests(t){e.config.MAX_PARALLEL_IMAGE_REQUESTS=t},clearStorage:function(t){e.clearTileCache(t)},workerUrl:""};return us})),n}()},27084:function(e){"use strict";e.exports=Math.log2||function(e){return Math.log(e)*Math.LOG2E}},16825:function(e,t,n){"use strict";e.exports=function(e,t){t||(t=e,e=window);var n=0,i=0,a=0,o={shift:!1,alt:!1,control:!1,meta:!1},s=!1;function l(e){var t=!1;return"altKey"in e&&(t=t||e.altKey!==o.alt,o.alt=!!e.altKey),"shiftKey"in e&&(t=t||e.shiftKey!==o.shift,o.shift=!!e.shiftKey),"ctrlKey"in e&&(t=t||e.ctrlKey!==o.control,o.control=!!e.ctrlKey),"metaKey"in e&&(t=t||e.metaKey!==o.meta,o.meta=!!e.metaKey),t}function c(e,s){var c=r.x(s),u=r.y(s);"buttons"in s&&(e=0|s.buttons),(e!==n||c!==i||u!==a||l(s))&&(n=0|e,i=c||0,a=u||0,t&&t(n,i,a,o))}function u(e){c(0,e)}function f(){(n||i||a||o.shift||o.alt||o.meta||o.control)&&(i=a=0,n=0,o.shift=o.alt=o.control=o.meta=!1,t&&t(0,0,0,o))}function d(e){l(e)&&t&&t(n,i,a,o)}function h(e){0===r.buttons(e)?c(0,e):c(n,e)}function p(e){c(n|r.buttons(e),e)}function v(e){c(n&~r.buttons(e),e)}function m(){s||(s=!0,e.addEventListener("mousemove",h),e.addEventListener("mousedown",p),e.addEventListener("mouseup",v),e.addEventListener("mouseleave",u),e.addEventListener("mouseenter",u),e.addEventListener("mouseout",u),e.addEventListener("mouseover",u),e.addEventListener("blur",f),e.addEventListener("keyup",d),e.addEventListener("keydown",d),e.addEventListener("keypress",d),e!==window&&(window.addEventListener("blur",f),window.addEventListener("keyup",d),window.addEventListener("keydown",d),window.addEventListener("keypress",d)))}m();var g={element:e};return Object.defineProperties(g,{enabled:{get:function(){return s},set:function(t){t?m():s&&(s=!1,e.removeEventListener("mousemove",h),e.removeEventListener("mousedown",p),e.removeEventListener("mouseup",v),e.removeEventListener("mouseleave",u),e.removeEventListener("mouseenter",u),e.removeEventListener("mouseout",u),e.removeEventListener("mouseover",u),e.removeEventListener("blur",f),e.removeEventListener("keyup",d),e.removeEventListener("keydown",d),e.removeEventListener("keypress",d),e!==window&&(window.removeEventListener("blur",f),window.removeEventListener("keyup",d),window.removeEventListener("keydown",d),window.removeEventListener("keypress",d)))},enumerable:!0},buttons:{get:function(){return n},enumerable:!0},x:{get:function(){return i},enumerable:!0},y:{get:function(){return a},enumerable:!0},mods:{get:function(){return o},enumerable:!0}}),g};var r=n(74311)},48956:function(e){var t={left:0,top:0};e.exports=function(e,n,r){n=n||e.currentTarget||e.srcElement,Array.isArray(r)||(r=[0,0]);var i,a=e.clientX||0,o=e.clientY||0,s=(i=n)===window||i===document||i===document.body?t:i.getBoundingClientRect();return r[0]=a-s.left,r[1]=o-s.top,r}},74311:function(e,t){"use strict";function n(e){return e.target||e.srcElement||window}t.buttons=function(e){if("object"===typeof e){if("buttons"in e)return e.buttons;if("which"in e){if(2===(t=e.which))return 4;if(3===t)return 2;if(t>0)return 1<=0)return 1<0&&a(s,n))}catch(m){u.call(new d(n),m)}}}function u(e){var t=this;t.triggered||(t.triggered=!0,t.def&&(t=t.def),t.msg=e,t.state=2,t.chain.length>0&&a(s,t))}function f(e,t,n,r){for(var i=0;i1&&(i*=g=Math.sqrt(g),s*=g);var y=i*i,b=s*s,x=(c==u?-1:1)*Math.sqrt(Math.abs((y*b-y*m*m-b*v*v)/(y*m*m+b*v*v)));x==1/0&&(x=1);var w=x*i*m/s+(e+f)/2,_=x*-s*v/i+(r+d)/2,k=Math.asin(((r-_)/s).toFixed(9)),S=Math.asin(((d-_)/s).toFixed(9));(k=eS&&(k-=2*t),!u&&S>k&&(S-=2*t)}if(Math.abs(S-k)>n){var T=S,A=f,E=d;S=k+n*(u&&S>k?1:-1);var C=a(f=w+i*Math.cos(S),d=_+s*Math.sin(S),i,s,l,0,u,A,E,[S,T,w,_])}var M=Math.tan((S-k)/4),O=4/3*i*M,P=4/3*s*M,L=[2*e-(e+O*Math.sin(k)),2*r-(r-P*Math.cos(k)),f+O*Math.sin(S),d-P*Math.cos(S),f,d];if(h)return L;C&&(L=L.concat(C));for(var I=0;I7&&(n.push(g.splice(0,7)),g.unshift("C"));break;case"S":var b=h,x=p;"C"!=t&&"S"!=t||(b+=b-o,x+=x-l),g=["C",b,x,g[1],g[2],g[3],g[4]];break;case"T":"Q"==t||"T"==t?(f=2*h-f,d=2*p-d):(f=h,d=p),g=i(h,p,f,d,g[1],g[2]);break;case"Q":f=g[1],d=g[2],g=i(h,p,g[1],g[2],g[3],g[4]);break;case"L":g=r(h,p,g[1],g[2]);break;case"H":g=r(h,p,g[1],p);break;case"V":g=r(h,p,h,g[1]);break;case"Z":g=r(h,p,c,u)}t=y,h=g[g.length-2],p=g[g.length-1],g.length>4?(o=g[g.length-4],l=g[g.length-3]):(o=h,l=p),n.push(g)}return n}},56131:function(e){"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(i){return!1}}()?Object.assign:function(e,i){for(var a,o,s=function(e){if(null===e||void 0===e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),l=1;l0&&!i.call(e,0))for(var v=0;v0)for(var m=0;m=0&&"[object Function]"===t.call(e.callee)),r}},88641:function(e){"use strict";function t(e,t){if("string"!==typeof e)return[e];var n=[e];"string"===typeof t||Array.isArray(t)?t={brackets:t}:t||(t={});var r=t.brackets?Array.isArray(t.brackets)?t.brackets:[t.brackets]:["{}","[]","()"],i=t.escape||"___",a=!!t.flat;r.forEach((function(e){var t=new RegExp(["\\",e[0],"[^\\",e[0],"\\",e[1],"]*\\",e[1]].join("")),r=[];function a(t,a,o){var s=n.push(t.slice(e[0].length,-e[1].length))-1;return r.push(s),i+s+i}n.forEach((function(e,r){for(var i,o=0;e!=i;)if(i=e,e=e.replace(t,a),o++>1e4)throw Error("References have circular dependency. Please, check them.");n[r]=e})),r=r.reverse(),n=n.map((function(t){return r.forEach((function(n){t=t.replace(new RegExp("(\\"+i+n+"\\"+i+")","g"),e[0]+"$1"+e[1])})),t}))}));var o=new RegExp("\\"+i+"([0-9]+)\\"+i);return a?n:function e(t,n,r){for(var i,a=[],s=0;i=o.exec(t);){if(s++>1e4)throw Error("Circular references in parenthesis");a.push(t.slice(0,i.index)),a.push(e(n[i[1]],n)),t=t.slice(i.index+i[0].length)}return a.push(t),a}(n[0],n)}function n(e,t){if(t&&t.flat){var n,r=t&&t.escape||"___",i=e[0];if(!i)return"";for(var a=new RegExp("\\"+r+"([0-9]+)\\"+r),o=0;i!=n;){if(o++>1e4)throw Error("Circular references in "+e);n=i,i=i.replace(a,s)}return i}return e.reduce((function e(t,n){return Array.isArray(n)&&(n=n.reduce(e,"")),t+n}),"");function s(t,n){if(null==e[n])throw Error("Reference "+n+"is undefined");return e[n]}}function r(e,r){return Array.isArray(e)?n(e,r):t(e,r)}r.parse=t,r.stringify=n,e.exports=r},18863:function(e,t,n){"use strict";var r=n(71299);e.exports=function(e){var t;return arguments.length>1&&(e=arguments),"string"===typeof e?e=e.split(/\s/).map(parseFloat):"number"===typeof e&&(e=[e]),e.length&&"number"===typeof e[0]?t=1===e.length?{width:e[0],height:e[0],x:0,y:0}:2===e.length?{width:e[0],height:e[1],x:0,y:0}:{x:e[0],y:e[1],width:e[2]-e[0]||0,height:e[3]-e[1]||0}:e&&(t={x:(e=r(e,{left:"x l left Left",top:"y t top Top",width:"w width W Width",height:"h height W Width",bottom:"b bottom Bottom",right:"r right Right"})).left||0,y:e.top||0},null==e.width?e.right?t.width=e.right-t.x:t.width=0:t.width=e.width,null==e.height?e.bottom?t.height=e.bottom-t.y:t.height=0:t.height=e.height),t}},95616:function(e){e.exports=function(e){var i=[];return e.replace(n,(function(e,n,a){var o=n.toLowerCase();for(a=function(e){var t=e.match(r);return t?t.map(Number):[]}(a),"m"==o&&a.length>2&&(i.push([n].concat(a.splice(0,2))),o="l",n="m"==n?"l":"L");;){if(a.length==t[o])return a.unshift(n),i.push(a);if(a.lengtha!==h>a&&i<(d-u)*(a-f)/(h-f)+u&&(o=!o)}return o}},52142:function(e,t,n){var r,i=n(69444),a=n(29023),o=n(87263),s=n(11328),l=n(55968),c=n(10670),u=!1,f=a();function d(e,t,n){var i=r.segments(e),a=r.segments(t),o=n(r.combine(i,a));return r.polygon(o)}r={buildLog:function(e){return!0===e?u=i():!1===e&&(u=!1),!1!==u&&u.list},epsilon:function(e){return f.epsilon(e)},segments:function(e){var t=o(!0,f,u);return e.regions.forEach(t.addRegion),{segments:t.calculate(e.inverted),inverted:e.inverted}},combine:function(e,t){return{combined:o(!1,f,u).calculate(e.segments,e.inverted,t.segments,t.inverted),inverted1:e.inverted,inverted2:t.inverted}},selectUnion:function(e){return{segments:l.union(e.combined,u),inverted:e.inverted1||e.inverted2}},selectIntersect:function(e){return{segments:l.intersect(e.combined,u),inverted:e.inverted1&&e.inverted2}},selectDifference:function(e){return{segments:l.difference(e.combined,u),inverted:e.inverted1&&!e.inverted2}},selectDifferenceRev:function(e){return{segments:l.differenceRev(e.combined,u),inverted:!e.inverted1&&e.inverted2}},selectXor:function(e){return{segments:l.xor(e.combined,u),inverted:e.inverted1!==e.inverted2}},polygon:function(e){return{regions:s(e.segments,f,u),inverted:e.inverted}},polygonFromGeoJSON:function(e){return c.toPolygon(r,e)},polygonToGeoJSON:function(e){return c.fromPolygon(r,f,e)},union:function(e,t){return d(e,t,r.selectUnion)},intersect:function(e,t){return d(e,t,r.selectIntersect)},difference:function(e,t){return d(e,t,r.selectDifference)},differenceRev:function(e,t){return d(e,t,r.selectDifferenceRev)},xor:function(e,t){return d(e,t,r.selectXor)}},"object"===typeof window&&(window.PolyBool=r),e.exports=r},69444:function(e){e.exports=function(){var e,t=0,n=!1;function r(t,n){return e.list.push({type:t,data:n?JSON.parse(JSON.stringify(n)):void 0}),e}return e={list:[],segmentId:function(){return t++},checkIntersection:function(e,t){return r("check",{seg1:e,seg2:t})},segmentChop:function(e,t){return r("div_seg",{seg:e,pt:t}),r("chop",{seg:e,pt:t})},statusRemove:function(e){return r("pop_seg",{seg:e})},segmentUpdate:function(e){return r("seg_update",{seg:e})},segmentNew:function(e,t){return r("new_seg",{seg:e,primary:t})},segmentRemove:function(e){return r("rem_seg",{seg:e})},tempStatus:function(e,t,n){return r("temp_status",{seg:e,above:t,below:n})},rewind:function(e){return r("rewind",{seg:e})},status:function(e,t,n){return r("status",{seg:e,above:t,below:n})},vert:function(t){return t===n?e:(n=t,r("vert",{x:t}))},log:function(e){return"string"!==typeof e&&(e=JSON.stringify(e,!1," ")),r("log",{txt:e})},reset:function(){return r("reset")},selected:function(e){return r("selected",{segs:e})},chainStart:function(e){return r("chain_start",{seg:e})},chainRemoveHead:function(e,t){return r("chain_rem_head",{index:e,pt:t})},chainRemoveTail:function(e,t){return r("chain_rem_tail",{index:e,pt:t})},chainNew:function(e,t){return r("chain_new",{pt1:e,pt2:t})},chainMatch:function(e){return r("chain_match",{index:e})},chainClose:function(e){return r("chain_close",{index:e})},chainAddHead:function(e,t){return r("chain_add_head",{index:e,pt:t})},chainAddTail:function(e,t){return r("chain_add_tail",{index:e,pt:t})},chainConnect:function(e,t){return r("chain_con",{index1:e,index2:t})},chainReverse:function(e){return r("chain_rev",{index:e})},chainJoin:function(e,t){return r("chain_join",{index1:e,index2:t})},done:function(){return r("done")}}}},29023:function(e){e.exports=function(e){"number"!==typeof e&&(e=1e-10);var t={epsilon:function(t){return"number"===typeof t&&(e=t),e},pointAboveOrOnLine:function(t,n,r){var i=n[0],a=n[1],o=r[0],s=r[1],l=t[0];return(o-i)*(t[1]-a)-(s-a)*(l-i)>=-e},pointBetween:function(t,n,r){var i=t[1]-n[1],a=r[0]-n[0],o=t[0]-n[0],s=r[1]-n[1],l=o*a+i*s;return!(l-e)},pointsSameX:function(t,n){return Math.abs(t[0]-n[0])e!=o-i>e&&(a-c)*(i-u)/(o-u)+c-r>e&&(s=!s),a=c,o=u}return s}};return t}},10670:function(e){var t={toPolygon:function(e,t){function n(t){if(t.length<=0)return e.segments({inverted:!1,regions:[]});function n(t){var n=t.slice(0,t.length-1);return e.segments({inverted:!1,regions:[n]})}for(var r=n(t[0]),i=1;i0}))}function u(e,r){var i=e.seg,a=r.seg,o=i.start,s=i.end,c=a.start,u=a.end;n&&n.checkIntersection(i,a);var f=t.linesIntersect(o,s,c,u);if(!1===f){if(!t.pointsCollinear(o,s,c))return!1;if(t.pointsSame(o,u)||t.pointsSame(s,c))return!1;var d=t.pointsSame(o,c),h=t.pointsSame(s,u);if(d&&h)return r;var p=!d&&t.pointBetween(o,c,u),v=!h&&t.pointBetween(s,c,u);if(d)return v?l(r,s):l(e,u),r;p&&(h||(v?l(r,s):l(e,u)),l(r,o))}else 0===f.alongA&&(-1===f.alongB?l(e,c):0===f.alongB?l(e,f.pt):1===f.alongB&&l(e,u)),0===f.alongB&&(-1===f.alongA?l(r,o):0===f.alongA?l(r,f.pt):1===f.alongA&&l(r,s));return!1}for(var f,d,h,p,v,m,g,y,b,x=[],w=function(){if(f=a.getHead(),n&&n.vert(f.pt[0]),f.isStart){if(n&&n.segmentNew(f.seg,f.primary),d=c(f),h=d.before?d.before.ev:null,p=d.after?d.after.ev:null,n&&n.tempStatus(f.seg,!!h&&h.seg,!!p&&p.seg),(v=function(){if(h){var e=u(f,h);if(e)return e}return!!p&&u(f,p)}())&&(e?(m=null===f.seg.myFill.below||f.seg.myFill.above!==f.seg.myFill.below)&&(v.seg.myFill.above=!v.seg.myFill.above):v.seg.otherFill=f.seg.myFill,n&&n.segmentUpdate(v.seg),f.other.remove(),f.remove()),a.getHead()!==f)return n&&n.rewind(f.seg),1;e?(m=null===f.seg.myFill.below||f.seg.myFill.above!==f.seg.myFill.below,f.seg.myFill.below=p?p.seg.myFill.above:i,f.seg.myFill.above=m?!f.seg.myFill.below:f.seg.myFill.below):null===f.seg.otherFill&&(g=p?f.primary===p.primary?p.seg.otherFill.above:p.seg.myFill.above:f.primary?o:i,f.seg.otherFill={above:g,below:g}),n&&n.status(f.seg,!!h&&h.seg,!!p&&p.seg),f.other.status=d.insert(r.node({ev:f}))}else{if(null===(y=f.status))throw new Error("PolyBool: Zero-length segment detected; your epsilon is probably too small or too large");s.exists(y.prev)&&s.exists(y.next)&&u(y.prev.ev,y.next.ev),n&&n.statusRemove(y.ev.seg),y.remove(),f.primary||(b=f.seg.myFill,f.seg.myFill=f.seg.otherFill,f.seg.otherFill=b),x.push(f.seg)}a.getHead().remove()};!a.isEmpty();)w();return n&&n.done(),x}return e?{addRegion:function(e){for(var r,i,a,o=e[e.length-1],l=0;l0&&!this.aborted;){var n=this.ifds_to_read.shift();n.offset&&this.scan_ifd(n.id,n.offset,e)}},r.prototype.read_uint16=function(e){var n=this.input;if(e+2>n.length)throw t("unexpected EOF","EBADDATA");return this.big_endian?256*n[e]+n[e+1]:n[e]+256*n[e+1]},r.prototype.read_uint32=function(e){var n=this.input;if(e+4>n.length)throw t("unexpected EOF","EBADDATA");return this.big_endian?16777216*n[e]+65536*n[e+1]+256*n[e+2]+n[e+3]:n[e]+256*n[e+1]+65536*n[e+2]+16777216*n[e+3]},r.prototype.is_subifd_link=function(e,t){return 0===e&&34665===t||0===e&&34853===t||34665===e&&40965===t},r.prototype.exif_format_length=function(e){switch(e){case 1:case 2:case 6:case 7:return 1;case 3:case 8:return 2;case 4:case 9:case 11:return 4;case 5:case 10:case 12:return 8;default:return 0}},r.prototype.exif_format_read=function(e,t){var n;switch(e){case 1:case 2:return n=this.input[t];case 6:return(n=this.input[t])|33554430*(128&n);case 3:return n=this.read_uint16(t);case 8:return(n=this.read_uint16(t))|131070*(32768&n);case 4:return n=this.read_uint32(t);case 9:return 0|(n=this.read_uint32(t));default:return null}},r.prototype.scan_ifd=function(e,r,i){var a=this.read_uint16(r);r+=2;for(var o=0;othis.input.length)throw t("unexpected EOF","EBADDATA");for(var p=[],v=d,m=0;m0&&(this.ifds_to_read.push({id:s,offset:p[0]}),h=!0),!1===i({is_big_endian:this.big_endian,ifd:e,tag:s,format:l,count:c,entry_offset:r+this.start,data_length:f,data_offset:d+this.start,value:p,is_subifd_link:h}))return void(this.aborted=!0);r+=12}0===e&&this.ifds_to_read.push({id:1,offset:this.read_uint32(r)})},e.exports.ExifParser=r,e.exports.get_orientation=function(e){var t=0;try{return new r(e,0,e.length).each((function(e){if(0===e.ifd&&274===e.tag&&Array.isArray(e.value))return t=e.value[0],!1})),t}catch(n){return-1}}},76767:function(e,t,n){"use strict";var r=n(14847).n8,i=n(14847).Ag;function a(e,t){if(e.length<4+t)return null;var n=i(e,t);return e.length>4&15,i=15&e[4],a=e[5]>>4&15,o=r(e,6),l=8,c=0;ct.width||e.width===t.width&&e.height>t.height?e:t})),n=e.reduce((function(e,t){return e.height>t.height||e.height===t.height&&e.width>t.width?e:t}));return t.width>n.height||t.width===n.height&&t.height>n.width?t:n}(t.sizes),r=1;t.transforms.forEach((function(e){var t={1:6,2:5,3:8,4:7,5:4,6:3,7:2,8:1},n={1:4,2:3,3:2,4:1,5:6,6:5,7:8,8:7};if("imir"===e.type&&(r=0===e.value?n[r]:t[r=t[r=n[r]]]),"irot"===e.type)for(var i=0;i1&&(d.variants=f.variants),f.orientation&&(d.orientation=f.orientation),f.exif_location&&f.exif_location.offset+f.exif_location.length<=e.length){var h=a(e,f.exif_location.offset),p=e.slice(f.exif_location.offset+h+4,f.exif_location.offset+f.exif_location.length),v=s.get_orientation(p);v>0&&(d.orientation=v)}return d}}}}}}},2504:function(e,t,n){"use strict";var r=n(14847).eG,i=n(14847).OF,a=n(14847).mP,o=r("BM");e.exports=function(e){if(!(e.length<26)&&i(e,0,o))return{width:a(e,18),height:a(e,22),type:"bmp",mime:"image/bmp",wUnits:"px",hUnits:"px"}}},47342:function(e,t,n){"use strict";var r=n(14847).eG,i=n(14847).OF,a=n(14847).mP,o=r("GIF87a"),s=r("GIF89a");e.exports=function(e){if(!(e.length<10)&&(i(e,0,o)||i(e,0,s)))return{width:a(e,6),height:a(e,8),type:"gif",mime:"image/gif",wUnits:"px",hUnits:"px"}}},31355:function(e,t,n){"use strict";var r=n(14847).mP;e.exports=function(e){var t=r(e,0),n=r(e,2),i=r(e,4);if(0===t&&1===n&&i){for(var a=[],o={width:0,height:0},s=0;so.width||c>o.height)&&(o=u)}return{width:o.width,height:o.height,variants:a,type:"ico",mime:"image/x-icon",wUnits:"px",hUnits:"px"}}}},54261:function(e,t,n){"use strict";var r=n(14847).n8,i=n(14847).eG,a=n(14847).OF,o=n(71371),s=i("Exif\0\0");e.exports=function(e){if(!(e.length<2)&&255===e[0]&&216===e[1]&&255===e[2])for(var t=2;;){for(;;){if(e.length-t<2)return;if(255===e[t++])break}for(var n,i,l=e[t++];255===l;)l=e[t++];if(208<=l&&l<=217||1===l)n=0;else{if(!(192<=l&&l<=254))return;if(e.length-t<2)return;n=r(e,t)-2,t+=2}if(217===l||218===l)return;if(225===l&&n>=10&&a(e,t,s)&&(i=o.get_orientation(e.slice(t+6,t+n))),n>=5&&192<=l&&l<=207&&196!==l&&200!==l&&204!==l){if(e.length-t0&&(c.orientation=i),c}t+=n}}},6303:function(e,t,n){"use strict";var r=n(14847).eG,i=n(14847).OF,a=n(14847).Ag,o=r("\x89PNG\r\n\x1a\n"),s=r("IHDR");e.exports=function(e){if(!(e.length<24)&&i(e,0,o)&&i(e,12,s))return{width:a(e,16),height:a(e,20),type:"png",mime:"image/png",wUnits:"px",hUnits:"px"}}},38689:function(e,t,n){"use strict";var r=n(14847).eG,i=n(14847).OF,a=n(14847).Ag,o=r("8BPS\0\x01");e.exports=function(e){if(!(e.length<22)&&i(e,0,o))return{width:a(e,18),height:a(e,14),type:"psd",mime:"image/vnd.adobe.photoshop",wUnits:"px",hUnits:"px"}}},6881:function(e){"use strict";function t(e){return"number"===typeof e&&isFinite(e)&&e>0}var n=/<[-_.:a-zA-Z0-9][^>]*>/,r=/^<([-_.:a-zA-Z0-9]+:)?svg\s/,i=/[^-]\bwidth="([^%]+?)"|[^-]\bwidth='([^%]+?)'/,a=/\bheight="([^%]+?)"|\bheight='([^%]+?)'/,o=/\bview[bB]ox="(.+?)"|\bview[bB]ox='(.+?)'/,s=/in$|mm$|cm$|pt$|pc$|px$|em$|ex$/;function l(e){return s.test(e)?e.match(s)[0]:"px"}e.exports=function(e){if(function(e){var t,n=0,r=e.length;for(239===e[0]&&187===e[1]&&191===e[2]&&(n=3);n>14&16383),type:"webp",mime:"image/webp",wUnits:"px",hUnits:"px"}}}function d(e,t){return{width:1+(e[t+6]<<16|e[t+5]<<8|e[t+4]),height:1+(e[t+9]<e.length)){for(;t+8=10?n=n||u(e,t+8):"VP8L"===h&&p>=9?n=n||f(e,t+8):"VP8X"===h&&p>=10?n=n||d(e,t+8):"EXIF"===h&&(r=s.get_orientation(e.slice(t+8,t+8+p)),t=1/0),t+=8+p}else t++;if(n)return r>0&&(n.orientation=r),n}}}},91497:function(e,t,n){"use strict";e.exports={avif:n(24461),bmp:n(2504),gif:n(47342),ico:n(31355),jpeg:n(54261),png:n(6303),psd:n(38689),svg:n(6881),tiff:n(66278),webp:n(90784)}},33575:function(e,t,n){"use strict";var r=n(91497);e.exports=function(e){return function(e){for(var t=Object.keys(r),n=0;n1)for(var n=1;n1&&(e.scaleRatio=[e.scale[0]*e.viewport.width,e.scale[1]*e.viewport.height],n(e),e.after&&e.after(e))}function k(e){if(e){null!=e.length?"number"===typeof e[0]&&(e=[{positions:e}]):Array.isArray(e)||(e=[e]);var t=0,n=0;if(x.groups=b=e.map((function(e,c){var u=b[c];return e?("function"===typeof e?e={after:e}:"number"===typeof e[0]&&(e={positions:e}),e=o(e,{color:"color colors fill",capSize:"capSize cap capsize cap-size",lineWidth:"lineWidth line-width width line thickness",opacity:"opacity alpha",range:"range dataBox",viewport:"viewport viewBox",errors:"errors error",positions:"positions position data points"}),u||(b[c]=u={id:c,scale:null,translate:null,scaleFract:null,translateFract:null,draw:!0},e=s({},y,e)),a(u,e,[{lineWidth:function(e){return.5*+e},capSize:function(e){return.5*+e},opacity:parseFloat,errors:function(e){return e=l(e),n+=e.length,e},positions:function(e,n){return e=l(e,"float64"),n.count=Math.floor(e.length/2),n.bounds=r(e,2),n.offset=t,t+=n.count,e}},{color:function(e,t){var n=t.count;if(e||(e="transparent"),!Array.isArray(e)||"number"===typeof e[0]){var r=e;e=Array(n);for(var a=0;a 0. && baClipping < length(normalWidth * endBotJoin)) {\n\t\t//handle miter clipping\n\t\tbTopCoord -= normalWidth * endTopJoin;\n\t\tbTopCoord += normalize(endTopJoin * normalWidth) * baClipping;\n\t}\n\n\tif (nextReverse) {\n\t\t//make join rectangular\n\t\tvec2 miterShift = normalWidth * endJoinDirection * miterLimit * .5;\n\t\tfloat normalAdjust = 1. - min(miterLimit / endMiterRatio, 1.);\n\t\tbBotCoord = bCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\n\t\tbTopCoord = bCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\n\t}\n\telse if (!prevReverse && abClipping > 0. && abClipping < length(normalWidth * startBotJoin)) {\n\t\t//handle miter clipping\n\t\taBotCoord -= normalWidth * startBotJoin;\n\t\taBotCoord += normalize(startBotJoin * normalWidth) * abClipping;\n\t}\n\n\tvec2 aTopPosition = (aTopCoord) * adjustedScale + translate;\n\tvec2 aBotPosition = (aBotCoord) * adjustedScale + translate;\n\n\tvec2 bTopPosition = (bTopCoord) * adjustedScale + translate;\n\tvec2 bBotPosition = (bBotCoord) * adjustedScale + translate;\n\n\t//position is normalized 0..1 coord on the screen\n\tvec2 position = (aTopPosition * lineTop + aBotPosition * lineBot) * lineStart + (bTopPosition * lineTop + bBotPosition * lineBot) * lineEnd;\n\n\tstartCoord = aCoord * scaleRatio + translate * viewport.zw + viewport.xy;\n\tendCoord = bCoord * scaleRatio + translate * viewport.zw + viewport.xy;\n\n\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\n\n\tenableStartMiter = step(dot(currTangent, prevTangent), .5);\n\tenableEndMiter = step(dot(currTangent, nextTangent), .5);\n\n\t//bevel miter cutoffs\n\tif (miterMode == 1.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * miterLimit * .5;\n\t\t\tstartCutoff = vec4(aCoord, aCoord);\n\t\t\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\n\t\t\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tstartCutoff += viewport.xyxy;\n\t\t\tstartCutoff += startMiterWidth.xyxy;\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * miterLimit * .5;\n\t\t\tendCutoff = vec4(bCoord, bCoord);\n\t\t\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x) / scaleRatio;\n\t\t\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tendCutoff += viewport.xyxy;\n\t\t\tendCutoff += endMiterWidth.xyxy;\n\t\t}\n\t}\n\n\t//round miter cutoffs\n\telse if (miterMode == 2.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * abs(dot(startJoinDirection, currNormal)) * .5;\n\t\t\tstartCutoff = vec4(aCoord, aCoord);\n\t\t\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\n\t\t\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tstartCutoff += viewport.xyxy;\n\t\t\tstartCutoff += startMiterWidth.xyxy;\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * abs(dot(endJoinDirection, currNormal)) * .5;\n\t\t\tendCutoff = vec4(bCoord, bCoord);\n\t\t\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x) / scaleRatio;\n\t\t\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\n\t\t\tendCutoff += viewport.xyxy;\n\t\t\tendCutoff += endMiterWidth.xyxy;\n\t\t}\n\t}\n}\n"]),frag:o(["precision highp float;\n#define GLSLIFY 1\n\nuniform float dashLength, pixelRatio, thickness, opacity, id, miterMode;\nuniform sampler2D dashTexture;\n\nvarying vec4 fragColor;\nvarying vec2 tangent;\nvarying vec4 startCutoff, endCutoff;\nvarying vec2 startCoord, endCoord;\nvarying float enableStartMiter, enableEndMiter;\n\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\n\tvec2 diff = b - a;\n\tvec2 perp = normalize(vec2(-diff.y, diff.x));\n\treturn dot(p - a, perp);\n}\n\nvoid main() {\n\tfloat alpha = 1., distToStart, distToEnd;\n\tfloat cutoff = thickness * .5;\n\n\t//bevel miter\n\tif (miterMode == 1.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\n\t\t\tif (distToStart < -1.) {\n\t\t\t\tdiscard;\n\t\t\t\treturn;\n\t\t\t}\n\t\t\talpha *= min(max(distToStart + 1., 0.), 1.);\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\n\t\t\tif (distToEnd < -1.) {\n\t\t\t\tdiscard;\n\t\t\t\treturn;\n\t\t\t}\n\t\t\talpha *= min(max(distToEnd + 1., 0.), 1.);\n\t\t}\n\t}\n\n\t// round miter\n\telse if (miterMode == 2.) {\n\t\tif (enableStartMiter == 1.) {\n\t\t\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\n\t\t\tif (distToStart < 0.) {\n\t\t\t\tfloat radius = length(gl_FragCoord.xy - startCoord);\n\n\t\t\t\tif(radius > cutoff + .5) {\n\t\t\t\t\tdiscard;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\n\t\t\t}\n\t\t}\n\n\t\tif (enableEndMiter == 1.) {\n\t\t\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\n\t\t\tif (distToEnd < 0.) {\n\t\t\t\tfloat radius = length(gl_FragCoord.xy - endCoord);\n\n\t\t\t\tif(radius > cutoff + .5) {\n\t\t\t\t\tdiscard;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\n\t\t\t}\n\t\t}\n\t}\n\n\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashLength) * .5 + .25;\n\tfloat dash = texture2D(dashTexture, vec2(t, .5)).r;\n\n\tgl_FragColor = fragColor;\n\tgl_FragColor.a *= alpha * opacity * dash;\n}\n"]),attributes:{lineEnd:{buffer:n,divisor:0,stride:8,offset:0},lineTop:{buffer:n,divisor:0,stride:8,offset:4},aColor:{buffer:e.prop("colorBuffer"),stride:4,offset:0,divisor:1},bColor:{buffer:e.prop("colorBuffer"),stride:4,offset:4,divisor:1},prevCoord:{buffer:e.prop("positionBuffer"),stride:8,offset:0,divisor:1},aCoord:{buffer:e.prop("positionBuffer"),stride:8,offset:8,divisor:1},bCoord:{buffer:e.prop("positionBuffer"),stride:8,offset:16,divisor:1},nextCoord:{buffer:e.prop("positionBuffer"),stride:8,offset:24,divisor:1}}},r))}catch(s){t=i}return{fill:e({primitive:"triangle",elements:function(e,t){return t.triangles},offset:0,vert:o(["precision highp float;\n#define GLSLIFY 1\n\nattribute vec2 position, positionFract;\n\nuniform vec4 color;\nuniform vec2 scale, scaleFract, translate, translateFract;\nuniform float pixelRatio, id;\nuniform vec4 viewport;\nuniform float opacity;\n\nvarying vec4 fragColor;\n\nconst float MAX_LINES = 256.;\n\nvoid main() {\n\tfloat depth = (MAX_LINES - 4. - id) / (MAX_LINES);\n\n\tvec2 position = position * scale + translate\n + positionFract * scale + translateFract\n + position * scaleFract\n + positionFract * scaleFract;\n\n\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\n\n\tfragColor = color / 255.;\n\tfragColor.a *= opacity;\n}\n"]),frag:o(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nvoid main() {\n\tgl_FragColor = fragColor;\n}\n"]),uniforms:{scale:e.prop("scale"),color:e.prop("fill"),scaleFract:e.prop("scaleFract"),translateFract:e.prop("translateFract"),translate:e.prop("translate"),opacity:e.prop("opacity"),pixelRatio:e.context("pixelRatio"),id:e.prop("id"),viewport:function(e,t){return[t.viewport.x,t.viewport.y,e.viewportWidth,e.viewportHeight]}},attributes:{position:{buffer:e.prop("positionBuffer"),stride:8,offset:8},positionFract:{buffer:e.prop("positionFractBuffer"),stride:8,offset:8}},blend:r.blend,depth:{enable:!1},scissor:r.scissor,stencil:r.stencil,viewport:r.viewport}),rect:i,miter:t}},g.defaults={dashes:null,join:"miter",miterLimit:1,thickness:10,cap:"square",color:"black",opacity:1,overlay:!1,viewport:null,range:null,close:!1,fill:null},g.prototype.render=function(){for(var e,t=[],n=arguments.length;n--;)t[n]=arguments[n];t.length&&(e=this).update.apply(e,t),this.draw()},g.prototype.draw=function(){for(var e=this,t=[],n=arguments.length;n--;)t[n]=arguments[n];return(t.length?t:this.passes).forEach((function(t,n){var r;if(t&&Array.isArray(t))return(r=e).draw.apply(r,t);"number"===typeof t&&(t=e.passes[t]),t&&t.count>1&&t.opacity&&(e.regl._refresh(),t.fill&&t.triangles&&t.triangles.length>2&&e.shaders.fill(t),t.thickness&&(t.scale[0]*t.viewport.width>g.precisionThreshold||t.scale[1]*t.viewport.height>g.precisionThreshold||"rect"===t.join||!t.join&&(t.thickness<=2||t.count>=g.maxPoints)?e.shaders.rect(t):e.shaders.miter(t)))})),this},g.prototype.update=function(e){var t=this;if(e){null!=e.length?"number"===typeof e[0]&&(e=[{positions:e}]):Array.isArray(e)||(e=[e]);var n=this.regl,o=this.gl;if(e.forEach((function(e,f){var p=t.passes[f];if(void 0!==e)if(null!==e){if("number"===typeof e[0]&&(e={positions:e}),e=s(e,{positions:"positions points data coords",thickness:"thickness lineWidth lineWidths line-width linewidth width stroke-width strokewidth strokeWidth",join:"lineJoin linejoin join type mode",miterLimit:"miterlimit miterLimit",dashes:"dash dashes dasharray dash-array dashArray",color:"color colour stroke colors colours stroke-color strokeColor",fill:"fill fill-color fillColor",opacity:"alpha opacity",overlay:"overlay crease overlap intersect",close:"closed close closed-path closePath",range:"range dataBox",viewport:"viewport viewBox",hole:"holes hole hollow",splitNull:"splitNull"}),p||(t.passes[f]=p={id:f,scale:null,scaleFract:null,translate:null,translateFract:null,count:0,hole:[],depth:0,dashLength:1,dashTexture:n.texture({channels:1,data:new Uint8Array([255]),width:1,height:1,mag:"linear",min:"linear"}),colorBuffer:n.buffer({usage:"dynamic",type:"uint8",data:new Uint8Array}),positionBuffer:n.buffer({usage:"dynamic",type:"float",data:new Uint8Array}),positionFractBuffer:n.buffer({usage:"dynamic",type:"float",data:new Uint8Array})},e=a({},g.defaults,e)),null!=e.thickness&&(p.thickness=parseFloat(e.thickness)),null!=e.opacity&&(p.opacity=parseFloat(e.opacity)),null!=e.miterLimit&&(p.miterLimit=parseFloat(e.miterLimit)),null!=e.overlay&&(p.overlay=!!e.overlay,f=D}));(L=L.slice(0,F)).push(D)}for(var N=function(e){var t=S.slice(2*R,2*L[e]).concat(D?S.slice(2*D):[]),n=(p.hole||[]).map((function(t){return t-D+(L[e]-R)})),r=c(t,n);r=r.map((function(t){return t+R+(t+Re.length)&&(t=e.length);for(var n=0,r=new Array(t);n 1.0 + delta) {\n\t\tdiscard;\n\t}\n\n\talpha -= smoothstep(1.0 - delta, 1.0 + delta, radius);\n\n\tfloat borderRadius = fragBorderRadius;\n\tfloat ratio = smoothstep(borderRadius - delta, borderRadius + delta, radius);\n\tvec4 color = mix(fragColor, fragBorderColor, ratio);\n\tcolor.a *= alpha * opacity;\n\tgl_FragColor = color;\n}\n"]),c.vert=d(["precision highp float;\n#define GLSLIFY 1\n\nattribute float x, y, xFract, yFract;\nattribute float size, borderSize;\nattribute vec4 colorId, borderColorId;\nattribute float isActive;\n\nuniform bool constPointSize;\nuniform float pixelRatio;\nuniform vec2 paletteSize, scale, scaleFract, translate, translateFract;\nuniform sampler2D paletteTexture;\n\nconst float maxSize = 100.;\n\nvarying vec4 fragColor, fragBorderColor;\nvarying float fragBorderRadius, fragWidth;\n\nfloat pointSizeScale = (constPointSize) ? 2. : pixelRatio;\n\nbool isDirect = (paletteSize.x < 1.);\n\nvec4 getColor(vec4 id) {\n return isDirect ? id / 255. : texture2D(paletteTexture,\n vec2(\n (id.x + .5) / paletteSize.x,\n (id.y + .5) / paletteSize.y\n )\n );\n}\n\nvoid main() {\n // ignore inactive points\n if (isActive == 0.) return;\n\n vec2 position = vec2(x, y);\n vec2 positionFract = vec2(xFract, yFract);\n\n vec4 color = getColor(colorId);\n vec4 borderColor = getColor(borderColorId);\n\n float size = size * maxSize / 255.;\n float borderSize = borderSize * maxSize / 255.;\n\n gl_PointSize = (size + borderSize) * pointSizeScale;\n\n vec2 pos = (position + translate) * scale\n + (positionFract + translateFract) * scale\n + (position + translate) * scaleFract\n + (positionFract + translateFract) * scaleFract;\n\n gl_Position = vec4(pos * 2. - 1., 0., 1.);\n\n fragBorderRadius = 1. - 2. * borderSize / (size + borderSize);\n fragColor = color;\n fragBorderColor = borderColor.a == 0. || borderSize == 0. ? vec4(color.rgb, 0.) : borderColor;\n fragWidth = 1. / gl_PointSize;\n}\n"]),m&&(c.frag=c.frag.replace("smoothstep","smoothStep"),l.frag=l.frag.replace("smoothstep","smoothStep")),this.drawCircle=e(c)}x.defaults={color:"black",borderColor:"transparent",borderSize:0,size:12,opacity:1,marker:void 0,viewport:null,range:null,pixelSize:null,count:0,offset:0,bounds:null,positions:[],snap:1e4},x.prototype.render=function(){return arguments.length&&this.update.apply(this,arguments),this.draw(),this},x.prototype.draw=function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;rr)?t.tree=u(e,{bounds:f}):r&&r.length&&(t.tree=r),t.tree){var d={primitive:"points",usage:"static",data:t.tree,type:"uint32"};t.elements?t.elements(d):t.elements=o.elements(d)}var h=g.float32(e);return i({data:h,usage:"dynamic"}),a({data:g.fract32(e,h),usage:"dynamic"}),s({data:new Uint8Array(c),type:"uint8",usage:"stream"}),e}},{marker:function(t,n,r){var i=n.activation;if(i.forEach((function(e){return e&&e.destroy&&e.destroy()})),i.length=0,t&&"number"!==typeof t[0]){for(var a=[],s=0,l=Math.min(t.length,n.count);s=0)return a;if(e instanceof Uint8Array||e instanceof Uint8ClampedArray)t=e;else{t=new Uint8Array(e.length);for(var o=0,s=e.length;o4*r&&(this.tooManyColors=!0),this.updatePalette(n),1===i.length?i[0]:i},x.prototype.updatePalette=function(e){if(!this.tooManyColors){var t=this.maxColors,n=this.paletteTexture,r=Math.ceil(.25*e.length/t);if(r>1)for(var i=.25*(e=e.slice()).length%t;i2?(s[0],s[2],r=s[1],i=s[3]):s.length?(r=s[0],i=s[1]):(s.x,r=s.y,s.x,s.width,i=s.y+s.height),l.length>2?(a=l[0],o=l[2],l[1],l[3]):l.length?(a=l[0],o=l[1]):(a=l.x,l.y,o=l.x+l.width,l.y,l.height),[a,r,o,i]}function h(e){if("number"===typeof e)return[e,e,e,e];if(2===e.length)return[e[0],e[1],e[0],e[1]];var t=l(e);return[t.x,t.y,t.x+t.width,t.y+t.height]}e.exports=u,u.prototype.render=function(){for(var e,t=this,n=[],r=arguments.length;r--;)n[r]=arguments[r];return n.length&&(e=this).update.apply(e,n),this.regl.attributes.preserveDrawingBuffer?this.draw():(this.dirty?null==this.planned&&(this.planned=o((function(){t.draw(),t.dirty=!0,t.planned=null}))):(this.draw(),this.dirty=!0,o((function(){t.dirty=!1}))),this)},u.prototype.update=function(){for(var e,t=[],n=arguments.length;n--;)t[n]=arguments[n];if(t.length){for(var r=0;rS))&&(s.lower||!(k>>=t))<<3,(t|=n=(15<(e>>>=n))<<2)|(n=(3<(e>>>=n))<<1)|e>>>n>>1}function h(){function e(e){e:{for(var t=16;268435456>=t;t*=16)if(e<=t){e=t;break e}e=0}return 0<(t=n[d(e)>>2]).length?t.pop():new ArrayBuffer(e)}function t(e){n[d(e.byteLength)>>2].push(e)}var n=f(8,(function(){return[]}));return{alloc:e,free:t,allocType:function(t,n){var r=null;switch(t){case 5120:r=new Int8Array(e(n),0,n);break;case 5121:r=new Uint8Array(e(n),0,n);break;case 5122:r=new Int16Array(e(2*n),0,n);break;case 5123:r=new Uint16Array(e(2*n),0,n);break;case 5124:r=new Int32Array(e(4*n),0,n);break;case 5125:r=new Uint32Array(e(4*n),0,n);break;case 5126:r=new Float32Array(e(4*n),0,n);break;default:return null}return r.length!==n?r.subarray(0,n):r},freeType:function(e){t(e.buffer)}}}function p(e){return!!e&&"object"===typeof e&&Array.isArray(e.shape)&&Array.isArray(e.stride)&&"number"===typeof e.offset&&e.shape.length===e.stride.length&&(Array.isArray(e.data)||oe(e.data))}function v(e,t,n,r,i,a){for(var o=0;o(i=s)&&(i=r.buffer.byteLength,5123===u?i>>=1:5125===u&&(i>>=2)),r.vertCount=i,i=o,0>o&&(i=4,1===(o=r.buffer.dimension)&&(i=0),2===o&&(i=1),3===o&&(i=4)),r.primType=i}function o(e){r.elementsCount--,delete s[e.id],e.buffer.destroy(),e.buffer=null}var s={},l=0,c={uint8:5121,uint16:5123};t.oes_element_index_uint&&(c.uint32=5125),i.prototype.bind=function(){this.buffer.bind()};var u=[];return{create:function(e,t){function s(e){if(e)if("number"===typeof e)l(e),u.primType=4,u.vertCount=0|e,u.type=5121;else{var t=null,n=35044,r=-1,i=-1,o=0,f=0;Array.isArray(e)||oe(e)||p(e)?t=e:("data"in e&&(t=e.data),"usage"in e&&(n=fe[e.usage]),"primitive"in e&&(r=ve[e.primitive]),"count"in e&&(i=0|e.count),"type"in e&&(f=c[e.type]),"length"in e?o=0|e.length:(o=i,5123===f||5122===f?o*=2:5125!==f&&5124!==f||(o*=4))),a(u,t,n,r,i,o,f)}else l(),u.primType=4,u.vertCount=0,u.type=5121;return s}var l=n.create(null,34963,!0),u=new i(l._buffer);return r.elementsCount++,s(e),s._reglType="elements",s._elements=u,s.subdata=function(e,t){return l.subdata(e,t),s},s.destroy=function(){o(u)},s},createStream:function(e){var t=u.pop();return t||(t=new i(n.create(null,34963,!0,!1)._buffer)),a(t,e,35040,-1,-1,0,0),t},destroyStream:function(e){u.push(e)},getElements:function(e){return"function"===typeof e&&e._elements instanceof i?e._elements:null},clear:function(){se(s).forEach(o)}}}function _(e){for(var t=ie.allocType(5123,e.length),n=0;n>>31<<15,i=(a<<1>>>24)-127,a=a>>13&1023;t[n]=-24>i?r:-14>i?r+(a+1024>>-14-i):15>=i,n.height>>=i,d(n,r[i]),e.mipmask|=1<t;++t)e.images[t]=null;return e}function S(e){for(var t=e.images,n=0;nt){for(var n=0;n=--this.refCount&&N(this)}}),o.profile&&(a.getTotalTextureSize=function(){var e=0;return Object.keys(ae).forEach((function(t){e+=ae[t].stats.size})),e}),{create2D:function(t,n){function r(e,t){var n=i.texInfo;P.call(n);var a=w();return"number"===typeof e?y(a,0|e,"number"===typeof t?0|t:0|e):e?(L(n,e),b(a,e)):y(a,1,1),n.genMipmaps&&(a.mipmask=(a.width<<1)-1),i.mipmask=a.mipmask,l(i,a),i.internalformat=a.internalformat,r.width=a.width,r.height=a.height,D(i),x(a,3553),I(n,3553),F(),S(a),o.profile&&(i.stats.size=O(i.internalformat,i.type,a.width,a.height,n.genMipmaps,!1)),r.format=Z[i.internalformat],r.type=Y[i.type],r.mag=K[n.magFilter],r.min=X[n.minFilter],r.wrapS=J[n.wrapS],r.wrapT=J[n.wrapT],r}var i=new R(3553);return ae[i.id]=i,a.textureCount++,r(t,n),r.subimage=function(e,t,n,a){t|=0,n|=0,a|=0;var o=v();return l(o,i),o.width=0,o.height=0,d(o,e),o.width=o.width||(i.width>>a)-t,o.height=o.height||(i.height>>a)-n,D(i),h(o,3553,t,n,a),F(),m(o),r},r.resize=function(t,n){var a=0|t,s=0|n||a;if(a===i.width&&s===i.height)return r;r.width=i.width=a,r.height=i.height=s,D(i);for(var l=0;i.mipmask>>l;++l){var c=a>>l,u=s>>l;if(!c||!u)break;e.texImage2D(3553,l,i.format,c,u,0,i.format,i.type,null)}return F(),o.profile&&(i.stats.size=O(i.internalformat,i.type,a,s,!1,!1)),r},r._reglType="texture2d",r._texture=i,o.profile&&(r.stats=i.stats),r.destroy=function(){i.decRef()},r},createCube:function(t,n,r,i,s,u){function f(e,t,n,r,i,a){var s,u=p.texInfo;for(P.call(u),s=0;6>s;++s)g[s]=w();if("number"!==typeof e&&e){if("object"===typeof e)if(t)b(g[0],e),b(g[1],t),b(g[2],n),b(g[3],r),b(g[4],i),b(g[5],a);else if(L(u,e),c(p,e),"faces"in e)for(e=e.faces,s=0;6>s;++s)l(g[s],p),b(g[s],e[s]);else for(s=0;6>s;++s)b(g[s],e)}else for(e=0|e||1,s=0;6>s;++s)y(g[s],e,e);for(l(p,g[0]),p.mipmask=u.genMipmaps?(g[0].width<<1)-1:g[0].mipmask,p.internalformat=g[0].internalformat,f.width=g[0].width,f.height=g[0].height,D(p),s=0;6>s;++s)x(g[s],34069+s);for(I(u,34067),F(),o.profile&&(p.stats.size=O(p.internalformat,p.type,f.width,f.height,u.genMipmaps,!0)),f.format=Z[p.internalformat],f.type=Y[p.type],f.mag=K[u.magFilter],f.min=X[u.minFilter],f.wrapS=J[u.wrapS],f.wrapT=J[u.wrapT],s=0;6>s;++s)S(g[s]);return f}var p=new R(34067);ae[p.id]=p,a.cubeCount++;var g=Array(6);return f(t,n,r,i,s,u),f.subimage=function(e,t,n,r,i){n|=0,r|=0,i|=0;var a=v();return l(a,p),a.width=0,a.height=0,d(a,t),a.width=a.width||(p.width>>i)-n,a.height=a.height||(p.height>>i)-r,D(p),h(a,34069+e,n,r,i),F(),m(a),f},f.resize=function(t){if((t|=0)!==p.width){f.width=p.width=t,f.height=p.height=t,D(p);for(var n=0;6>n;++n)for(var r=0;p.mipmask>>r;++r)e.texImage2D(34069+n,r,p.format,t>>r,t>>r,0,p.format,p.type,null);return F(),o.profile&&(p.stats.size=O(p.internalformat,p.type,f.width,f.height,!1,!0)),f}},f._reglType="textureCube",f._texture=p,o.profile&&(f.stats=p.stats),f.destroy=function(){p.decRef()},f},clear:function(){for(var t=0;tn;++n)if(0!==(t.mipmask&1<>n,t.height>>n,0,t.internalformat,t.type,null);else for(var r=0;6>r;++r)e.texImage2D(34069+r,n,t.internalformat,t.width>>n,t.height>>n,0,t.internalformat,t.type,null);I(t.texInfo,t.target)}))},refresh:function(){for(var t=0;ti;++i){for(c=0;ce;++e)n[e].resize(r);return t.width=t.height=r,t},_reglType:"framebufferCube",destroy:function(){n.forEach((function(e){e.destroy()}))}})},clear:function(){se(S).forEach(m)},restore:function(){b.cur=null,b.next=null,b.dirty=!0,se(S).forEach((function(t){t.framebuffer=e.createFramebuffer(),g(t)}))}})}function I(){this.w=this.z=this.y=this.x=this.state=0,this.buffer=null,this.size=0,this.normalized=!1,this.type=5126,this.divisor=this.stride=this.offset=0}function R(e,t,n,r,i,a,o){function s(e){if(e!==g.currentVAO){var n=t.oes_vertex_array_object;e?n.bindVertexArrayOES(e.vao):n.bindVertexArrayOES(null),g.currentVAO=e}}function l(n){if(n!==g.currentVAO){if(n)n.bindAttrs();else{for(var r=t.angle_instanced_arrays,i=0;i=f.byteLength?l.subdata(f):(l.destroy(),n.buffers[s]=null)),n.buffers[s]||(l=n.buffers[s]=i.create(c,34962,!1,!0)),u.buffer=i.getBuffer(l),u.size=0|u.buffer.dimension,u.normalized=!1,u.type=u.buffer.dtype,u.offset=0,u.stride=0,u.divisor=0,u.state=1,e[s]=1):i.getBuffer(c)?(u.buffer=i.getBuffer(c),u.size=0|u.buffer.dimension,u.normalized=!1,u.type=u.buffer.dtype,u.offset=0,u.stride=0,u.divisor=0,u.state=1):i.getBuffer(c.buffer)?(u.buffer=i.getBuffer(c.buffer),u.size=0|(+c.size||u.buffer.dimension),u.normalized=!!c.normalized||!1,u.type="type"in c?ue[c.type]:u.buffer.dtype,u.offset=0|(c.offset||0),u.stride=0|(c.stride||0),u.divisor=0|(c.divisor||0),u.state=1):"x"in c&&(u.x=+c.x||0,u.y=+c.y||0,u.z=+c.z||0,u.w=+c.w||0,u.state=2)}for(l=0;le&&(e=t.stats.uniformsCount)})),e},n.getMaxAttributesCount=function(){var e=0;return d.forEach((function(t){t.stats.attributesCount>e&&(e=t.stats.attributesCount)})),e}),{clear:function(){var t=e.deleteShader.bind(e);se(c).forEach(t),c={},se(u).forEach(t),u={},d.forEach((function(t){e.deleteProgram(t.program)})),d.length=0,f={},n.shaderCount=0},program:function(t,r,i,a){var o=f[r];o||(o=f[r]={});var h=o[t];if(h&&(h.refCount++,!a))return h;var p=new s(r,t);return n.shaderCount++,l(p,i,a),h||(o[t]=p),d.push(p),Q(p,{destroy:function(){if(p.refCount--,0>=p.refCount){e.deleteProgram(p.program);var t=d.indexOf(p);d.splice(t,1),n.shaderCount--}0>=o[p.vertId].refCount&&(e.deleteShader(u[p.vertId]),delete u[p.vertId],delete f[p.fragId][p.vertId]),Object.keys(f[p.fragId]).length||(e.deleteShader(c[p.fragId]),delete c[p.fragId],delete f[p.fragId])}})},restore:function(){c={},u={};for(var e=0;e>2),n=0;n>5]|=(255&e.charCodeAt(n/8))<<24-n%32;var r,i,a,o,s,l,c,u,f,d,h,p=8*e.length;for(e=[1779033703,-1150833019,1013904242,-1521486534,1359893119,-1694144372,528734635,1541459225],n=Array(64),t[p>>5]|=128<<24-p%32,t[15+(p+64>>9<<4)]=p,u=0;uf;f++){var v;16>f?n[f]=t[f+u]:(d=f,h=U(h=B(h=n[f-2],17)^B(h,19)^h>>>10,n[f-7]),v=B(v=n[f-15],7)^B(v,18)^v>>>3,n[d]=U(U(h,v),n[f-16])),d=U(U(U(U(c,d=B(d=o,6)^B(d,11)^B(d,25)),o&s^~o&l),Re[f]),n[f]),h=U(c=B(c=p,2)^B(c,13)^B(c,22),p&r^p&i^r&i),c=l,l=s,s=o,o=U(a,d),a=i,i=r,r=p,p=U(d,h)}e[0]=U(p,e[0]),e[1]=U(r,e[1]),e[2]=U(i,e[2]),e[3]=U(a,e[3]),e[4]=U(o,e[4]),e[5]=U(s,e[5]),e[6]=U(l,e[6]),e[7]=U(c,e[7])}for(t="",n=0;n<32*e.length;n+=8)t+=String.fromCharCode(e[n>>5]>>>24-n%32&255);return t}function z(e){for(var t,n="",r=0;r>>4&15)+"0123456789abcdef".charAt(15&t);return n}function j(e){for(var t,n,r="",i=-1;++i=t&&56320<=n&&57343>=n&&(t=65536+((1023&t)<<10)+(1023&n),i++),127>=t?r+=String.fromCharCode(t):2047>=t?r+=String.fromCharCode(192|t>>>6&31,128|63&t):65535>=t?r+=String.fromCharCode(224|t>>>12&15,128|t>>>6&63,128|63&t):2097151>=t&&(r+=String.fromCharCode(240|t>>>18&7,128|t>>>12&63,128|t>>>6&63,128|63&t));return r}function B(e,t){return e>>>t|e<<32-t}function U(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function H(e){return Array.prototype.slice.call(e)}function $(e){return H(e).join("")}function V(e){function t(){var e=[],t=[];return Q((function(){e.push.apply(e,H(arguments))}),{def:function(){var n="v"+i++;return t.push(n),0"+t+"?"+i+".constant["+t+"]:0;"})).join(""),"}}else{","if(",s,"(",i,".buffer)){",u,"=",a,".createStream(",34962,",",i,".buffer);","}else{",u,"=",a,".getBuffer(",i,".buffer);","}",f,'="type" in ',i,"?",o.glTypes,"[",i,".type]:",u,".dtype;",l.normalized,"=!!",i,".normalized;"),r("size"),r("offset"),r("stride"),r("divisor"),n("}}"),n.exit("if(",l.isStream,"){",a,".destroyStream(",u,");","}"),l}))})),o}function P(e){var t=e.static,n=e.dynamic,r={};return Object.keys(t).forEach((function(e){var n=t[e];r[e]=Y((function(e,t){return"number"===typeof n||"boolean"===typeof n?""+n:e.link(n)}))})),Object.keys(n).forEach((function(e){var t=n[e];r[e]=K(t,(function(e,n){return e.invoke(n,t)}))})),r}function L(e,t,r,i,a){function o(e){var t=l[e];t&&(f[e]=t)}var s=T(e,t),l=S(e,h=_(e,a),a),u=E(e,a),f=C(e,a),d=A(e,a,s);o("viewport"),o(g("scissor.box"));var h,p=0>1)",s],");")}function t(){n(l,".drawArraysInstancedANGLE(",[p,v,m,s],");")}h&&"null"!==h?y?e():(n("if(",h,"){"),e(),n("}else{"),t(),n("}")):t()}function o(){function e(){n(u+".drawElements("+[p,m,g,v+"<<(("+g+"-5121)>>1)"]+");")}function t(){n(u+".drawArrays("+[p,v,m]+");")}h&&"null"!==h?y?e():(n("if(",h,"){"),e(),n("}else{"),t(),n("}")):t()}var s,l,c=e.shared,u=c.gl,f=c.draw,d=r.draw,h=function(){var i=d.elements,a=t;return i?((i.contextDep&&r.contextDynamic||i.propDep)&&(a=n),i=i.append(e,a),d.elementsActive&&a("if("+i+")"+u+".bindBuffer(34963,"+i+".buffer.buffer);")):(i=a.def(),a(i,"=",f,".","elements",";","if(",i,"){",u,".bindBuffer(",34963,",",i,".buffer.buffer);}","else if(",c.vao,".currentVAO){",i,"=",e.shared.elements+".getElements("+c.vao,".currentVAO.elements);",fe?"":"if("+i+")"+u+".bindBuffer(34963,"+i+".buffer.buffer);","}")),i}(),p=i("primitive"),v=i("offset"),m=function(){var i=d.count,a=t;return i?((i.contextDep&&r.contextDynamic||i.propDep)&&(a=n),i=i.append(e,a)):i=a.def(f,".","count"),i}();if("number"===typeof m){if(0===m)return}else n("if(",m,"){"),n.exit("}");le&&(s=i("instances"),l=e.instancing);var g=h+".type",y=d.elements&&Z(d.elements)&&!d.vaoActive;le&&("number"!==typeof s||0<=s)?"string"===typeof s?(n("if(",s,">0){"),a(),n("}else if(",s,"<0){"),o(),n("}")):a():o()}function H(e,t,n,r,i){return i=(t=x()).proc("body",i),le&&(t.instancing=i.def(t.shared.extensions,".angle_instanced_arrays")),e(t,i,n,r),t.compile().body}function $(e,t,n,r){N(e,t),n.useVAO?n.drawVAO?t(e.shared.vao,".setVAO(",n.drawVAO.append(e,t),");"):t(e.shared.vao,".setVAO(",e.shared.vao,".targetVAO);"):(t(e.shared.vao,".setVAO(null);"),j(e,t,n,r.attributes,(function(){return!0}))),B(e,t,n,r.uniforms,(function(){return!0}),!1),U(e,t,t,n)}function X(e,t){var n=e.proc("draw",1);N(e,n),I(e,n,t.context),R(e,n,t.framebuffer),D(e,n,t),F(e,n,t.state),z(e,n,t,!1,!0);var r=t.shader.progVar.append(e,n);if(n(e.shared.gl,".useProgram(",r,".program);"),t.shader.program)$(e,n,t,t.shader.program);else{n(e.shared.vao,".setVAO(null);");var i=e.global.def("{}"),a=n.def(r,".id"),o=n.def(i,"[",a,"]");n(e.cond(o).then(o,".call(this,a0);").else(o,"=",i,"[",a,"]=",e.link((function(n){return H($,e,t,n,1)})),"(",r,");",o,".call(this,a0);"))}0=--this.refCount&&o(this)},i.profile&&(r.getTotalRenderbufferSize=function(){var e=0;return Object.keys(u).forEach((function(t){e+=u[t].stats.size})),e}),{create:function(t,n){function o(t,n){var r=0,a=0,u=32854;if("object"===typeof t&&t?("shape"in t?(r=0|(a=t.shape)[0],a=0|a[1]):("radius"in t&&(r=a=0|t.radius),"width"in t&&(r=0|t.width),"height"in t&&(a=0|t.height)),"format"in t&&(u=s[t.format])):"number"===typeof t?(r=0|t,a="number"===typeof n?0|n:r):t||(r=a=1),r!==c.width||a!==c.height||u!==c.format)return o.width=c.width=r,o.height=c.height=a,c.format=u,e.bindRenderbuffer(36161,c.renderbuffer),e.renderbufferStorage(36161,u,r,a),i.profile&&(c.stats.size=Oe[c.format]*c.width*c.height),o.format=l[c.format],o}var c=new a(e.createRenderbuffer());return u[c.id]=c,r.renderbufferCount++,o(t,n),o.resize=function(t,n){var r=0|t,a=0|n||r;return r===c.width&&a===c.height||(o.width=c.width=r,o.height=c.height=a,e.bindRenderbuffer(36161,c.renderbuffer),e.renderbufferStorage(36161,c.format,r,a),i.profile&&(c.stats.size=Oe[c.format]*c.width*c.height)),o},o._reglType="renderbuffer",o._renderbuffer=c,i.profile&&(o.stats=c.stats),o.destroy=function(){c.decRef()},o},clear:function(){se(u).forEach(o)},restore:function(){se(u).forEach((function(t){t.renderbuffer=e.createRenderbuffer(),e.bindRenderbuffer(36161,t.renderbuffer),e.renderbufferStorage(36161,t.format,t.width,t.height)})),e.bindRenderbuffer(36161,null)}}},Le=[];Le[6408]=4,Le[6407]=3;var Ie=[];Ie[5121]=1,Ie[5126]=4,Ie[36193]=2;var Re=[1116352408,1899447441,-1245643825,-373957723,961987163,1508970993,-1841331548,-1424204075,-670586216,310598401,607225278,1426881987,1925078388,-2132889090,-1680079193,-1046744716,-459576895,-272742522,264347078,604807628,770255983,1249150122,1555081692,1996064986,-1740746414,-1473132947,-1341970488,-1084653625,-958395405,-710438585,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,-2117940946,-1838011259,-1564481375,-1474664885,-1035236496,-949202525,-778901479,-694614492,-200395387,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,-2067236844,-1933114872,-1866530822,-1538233109,-1090935817,-965641998],De=["x","y","z","w"],Fe="blend.func blend.equation stencil.func stencil.opFront stencil.opBack sample.coverage viewport scissor.box polygonOffset.offset".split(" "),Ne={0:0,1:1,zero:0,one:1,"src color":768,"one minus src color":769,"src alpha":770,"one minus src alpha":771,"dst color":774,"one minus dst color":775,"dst alpha":772,"one minus dst alpha":773,"constant color":32769,"one minus constant color":32770,"constant alpha":32771,"one minus constant alpha":32772,"src alpha saturate":776},ze={never:512,less:513,"<":513,equal:514,"=":514,"==":514,"===":514,lequal:515,"<=":515,greater:516,">":516,notequal:517,"!=":517,"!==":517,gequal:518,">=":518,always:519},je={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,"increment wrap":34055,"decrement wrap":34056,invert:5386},Be={cw:2304,ccw:2305},Ue=new G(!1,!1,!1,(function(){})),He=function(e,t){function n(){this.endQueryIndex=this.startQueryIndex=-1,this.sum=0,this.stats=null}function r(e,t,r){var i=o.pop()||new n;i.startQueryIndex=e,i.endQueryIndex=t,i.sum=0,i.stats=r,s.push(i)}if(!t.ext_disjoint_timer_query)return null;var i=[],a=[],o=[],s=[],l=[],c=[];return{beginQuery:function(e){var n=i.pop()||t.ext_disjoint_timer_query.createQueryEXT();t.ext_disjoint_timer_query.beginQueryEXT(35007,n),a.push(n),r(a.length-1,a.length,e)},endQuery:function(){t.ext_disjoint_timer_query.endQueryEXT(35007)},pushScopeStats:r,update:function(){var e,n;if(0!==(e=a.length)){c.length=Math.max(c.length,e+1),l.length=Math.max(l.length,e+1),l[0]=0;var r=c[0]=0;for(n=e=0;n=q.length&&r()}var n=J(q,e);q[n]=t}}}function d(){var e=V.viewport,t=V.scissor_box;e[0]=e[1]=t[0]=t[1]=0,M.viewportWidth=M.framebufferWidth=M.drawingBufferWidth=e[2]=t[2]=m.drawingBufferWidth,M.viewportHeight=M.framebufferHeight=M.drawingBufferHeight=e[3]=t[3]=m.drawingBufferHeight}function h(){M.tick+=1,M.time=v(),d(),$.procs.poll()}function p(){B.refresh(),d(),$.procs.refresh(),T&&T.update()}function v(){return(re()-A)/1e3}if(!(e=c(e)))return null;var m=e.gl,g=m.getContextAttributes();m.isContextLost();var y=u(m,e);if(!y)return null;var b=i(),_={vaoCount:0,bufferCount:0,elementsCount:0,framebufferCount:0,shaderCount:0,textureCount:0,cubeCount:0,renderbufferCount:0,maxTextureUnits:0},k=e.cachedCode||{},S=y.extensions,T=He(m,S),A=re(),E=m.drawingBufferWidth,C=m.drawingBufferHeight,M={tick:0,time:0,viewportWidth:E,viewportHeight:C,framebufferWidth:E,framebufferHeight:C,drawingBufferWidth:E,drawingBufferHeight:C,pixelRatio:e.pixelRatio},O=(E={elements:null,primitive:4,count:-1,offset:0,instances:-1},ae(m,S)),I=x(m,_,e,(function(e){return z.destroyBuffer(e)})),N=w(m,S,I,_),z=R(m,S,O,_,I,N,E),j=D(m,b,_,e),B=P(m,S,O,(function(){$.procs.poll()}),M,_,e),U=Pe(m,S,O,_,e),H=L(m,S,O,B,U,_),$=X(m,b,S,O,I,N,B,H,{},z,j,E,M,T,k,e),V=(b=F(m,H,$.procs.poll,M,g,S,O),$.next),W=m.canvas,q=[],G=[],Z=[],Y=[e.onDestroy],K=null;W&&(W.addEventListener("webglcontextlost",a,!1),W.addEventListener("webglcontextrestored",o,!1));var ee=H.setFBO=s({framebuffer:te.define.call(null,1,"framebuffer")});return p(),g=Q(s,{clear:function(e){if("framebuffer"in e)if(e.framebuffer&&"framebufferCube"===e.framebuffer_reglType)for(var t=0;6>t;++t)ee(Q({framebuffer:e.framebuffer.faces[t]},e),l);else ee(e,l);else l(null,e)},prop:te.define.bind(null,1),context:te.define.bind(null,2),this:te.define.bind(null,3),draw:s({}),buffer:function(e){return I.create(e,34962,!1,!1)},elements:function(e){return N.create(e,!1)},texture:B.create2D,cube:B.createCube,renderbuffer:U.create,framebuffer:H.create,framebufferCube:H.createCube,vao:z.createVAO,attributes:g,frame:f,on:function(e,t){var n;switch(e){case"frame":return f(t);case"lost":n=G;break;case"restore":n=Z;break;case"destroy":n=Y}return n.push(t),{cancel:function(){for(var e=0;e2?"one of ".concat(t," ").concat(e.slice(0,n-1).join(", "),", or ")+e[n-1]:2===n?"one of ".concat(t," ").concat(e[0]," or ").concat(e[1]):"of ".concat(t," ").concat(e[0])}return"of ".concat(t," ").concat(String(e))}n("ERR_INVALID_OPT_VALUE",(function(e,t){return'The value "'+t+'" is invalid for option "'+e+'"'}),TypeError),n("ERR_INVALID_ARG_TYPE",(function(e,t,n){var i,a,o,s;if("string"===typeof t&&(a="not ",t.substr(!o||o<0?0:+o,a.length)===a)?(i="must not be",t=t.replace(/^not /,"")):i="must be",function(e,t,n){return(void 0===n||n>e.length)&&(n=e.length),e.substring(n-t.length,n)===t}(e," argument"))s="The ".concat(e," ").concat(i," ").concat(r(t,"type"));else{var l=function(e,t,n){return"number"!==typeof n&&(n=0),!(n+t.length>e.length)&&-1!==e.indexOf(t,n)}(e,".")?"property":"argument";s='The "'.concat(e,'" ').concat(l," ").concat(i," ").concat(r(t,"type"))}return s+=". Received type ".concat(typeof n)}),TypeError),n("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),n("ERR_METHOD_NOT_IMPLEMENTED",(function(e){return"The "+e+" method is not implemented"})),n("ERR_STREAM_PREMATURE_CLOSE","Premature close"),n("ERR_STREAM_DESTROYED",(function(e){return"Cannot call "+e+" after a stream was destroyed"})),n("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),n("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),n("ERR_STREAM_WRITE_AFTER_END","write after end"),n("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),n("ERR_UNKNOWN_ENCODING",(function(e){return"Unknown encoding: "+e}),TypeError),n("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),e.exports.q=t},37865:function(e,t,n){"use strict";var r=n(90386),i=Object.keys||function(e){var t=[];for(var n in e)t.push(n);return t};e.exports=u;var a=n(40410),o=n(37493);n(42018)(u,a);for(var s=i(o.prototype),l=0;l0)if("string"===typeof t||s.objectMode||Object.getPrototypeOf(t)===l.prototype||(t=function(e){return l.from(e)}(t)),r)s.endEmitted?_(e,new w):E(e,s,t,!0);else if(s.ended)_(e,new b);else{if(s.destroyed)return!1;s.reading=!1,s.decoder&&!n?(t=s.decoder.write(t),s.objectMode||0!==t.length?E(e,s,t,!1):L(e,s)):E(e,s,t,!1)}else r||(s.reading=!1,L(e,s));return!s.ended&&(s.lengtht.highWaterMark&&(t.highWaterMark=function(e){return e>=C?e=C:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function O(e){var t=e._readableState;a("emitReadable",t.needReadable,t.emittedReadable),t.needReadable=!1,t.emittedReadable||(a("emitReadable",t.flowing),t.emittedReadable=!0,i.nextTick(P,e))}function P(e){var t=e._readableState;a("emitReadable_",t.destroyed,t.length,t.ended),t.destroyed||!t.length&&!t.ended||(e.emit("readable"),t.emittedReadable=!1),t.needReadable=!t.flowing&&!t.ended&&t.length<=t.highWaterMark,N(e)}function L(e,t){t.readingMore||(t.readingMore=!0,i.nextTick(I,e,t))}function I(e,t){for(;!t.reading&&!t.ended&&(t.length0,t.resumeScheduled&&!t.paused?t.flowing=!0:e.listenerCount("data")>0&&e.resume()}function D(e){a("readable nexttick read 0"),e.read(0)}function F(e,t){a("resume",t.reading),t.reading||e.read(0),t.resumeScheduled=!1,e.emit("resume"),N(e),t.flowing&&!t.reading&&e.read(0)}function N(e){var t=e._readableState;for(a("flow",t.flowing);t.flowing&&null!==e.read(););}function z(e,t){return 0===t.length?null:(t.objectMode?n=t.buffer.shift():!e||e>=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.first():t.buffer.concat(t.length),t.buffer.clear()):n=t.buffer.consume(e,t.decoder),n);var n}function j(e){var t=e._readableState;a("endReadable",t.endEmitted),t.endEmitted||(t.ended=!0,i.nextTick(B,t,e))}function B(e,t){if(a("endReadableNT",e.endEmitted,e.length),!e.endEmitted&&0===e.length&&(e.endEmitted=!0,t.readable=!1,t.emit("end"),e.autoDestroy)){var n=t._writableState;(!n||n.autoDestroy&&n.finished)&&t.destroy()}}function U(e,t){for(var n=0,r=e.length;n=t.highWaterMark:t.length>0)||t.ended))return a("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?j(this):O(this),null;if(0===(e=M(e,t))&&t.ended)return 0===t.length&&j(this),null;var r,i=t.needReadable;return a("need readable",i),(0===t.length||t.length-e0?z(e,t):null)?(t.needReadable=t.length<=t.highWaterMark,e=0):(t.length-=e,t.awaitDrain=0),0===t.length&&(t.ended||(t.needReadable=!0),n!==e&&t.ended&&j(this)),null!==r&&this.emit("data",r),r},T.prototype._read=function(e){_(this,new x("_read()"))},T.prototype.pipe=function(e,t){var n=this,r=this._readableState;switch(r.pipesCount){case 0:r.pipes=e;break;case 1:r.pipes=[r.pipes,e];break;default:r.pipes.push(e)}r.pipesCount+=1,a("pipe count=%d opts=%j",r.pipesCount,t);var s=t&&!1===t.end||e===i.stdout||e===i.stderr?m:c;function l(t,i){a("onunpipe"),t===n&&i&&!1===i.hasUnpiped&&(i.hasUnpiped=!0,a("cleanup"),e.removeListener("close",p),e.removeListener("finish",v),e.removeListener("drain",u),e.removeListener("error",h),e.removeListener("unpipe",l),n.removeListener("end",c),n.removeListener("end",m),n.removeListener("data",d),f=!0,!r.awaitDrain||e._writableState&&!e._writableState.needDrain||u())}function c(){a("onend"),e.end()}r.endEmitted?i.nextTick(s):n.once("end",s),e.on("unpipe",l);var u=function(e){return function(){var t=e._readableState;a("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&o(e,"data")&&(t.flowing=!0,N(e))}}(n);e.on("drain",u);var f=!1;function d(t){a("ondata");var i=e.write(t);a("dest.write",i),!1===i&&((1===r.pipesCount&&r.pipes===e||r.pipesCount>1&&-1!==U(r.pipes,e))&&!f&&(a("false write response, pause",r.awaitDrain),r.awaitDrain++),n.pause())}function h(t){a("onerror",t),m(),e.removeListener("error",h),0===o(e,"error")&&_(e,t)}function p(){e.removeListener("finish",v),m()}function v(){a("onfinish"),e.removeListener("close",p),m()}function m(){a("unpipe"),n.unpipe(e)}return n.on("data",d),function(e,t,n){if("function"===typeof e.prependListener)return e.prependListener(t,n);e._events&&e._events[t]?Array.isArray(e._events[t])?e._events[t].unshift(n):e._events[t]=[n,e._events[t]]:e.on(t,n)}(e,"error",h),e.once("close",p),e.once("finish",v),e.emit("pipe",n),r.flowing||(a("pipe resume"),n.resume()),e},T.prototype.unpipe=function(e){var t=this._readableState,n={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes||(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,n)),this;if(!e){var r=t.pipes,i=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var a=0;a0,!1!==r.flowing&&this.resume()):"readable"===e&&(r.endEmitted||r.readableListening||(r.readableListening=r.needReadable=!0,r.flowing=!1,r.emittedReadable=!1,a("on readable",r.length,r.reading),r.length?O(this):r.reading||i.nextTick(D,this))),n},T.prototype.addListener=T.prototype.on,T.prototype.removeListener=function(e,t){var n=s.prototype.removeListener.call(this,e,t);return"readable"===e&&i.nextTick(R,this),n},T.prototype.removeAllListeners=function(e){var t=s.prototype.removeAllListeners.apply(this,arguments);return"readable"!==e&&void 0!==e||i.nextTick(R,this),t},T.prototype.resume=function(){var e=this._readableState;return e.flowing||(a("resume"),e.flowing=!e.readableListening,function(e,t){t.resumeScheduled||(t.resumeScheduled=!0,i.nextTick(F,e,t))}(this,e)),e.paused=!1,this},T.prototype.pause=function(){return a("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(a("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},T.prototype.wrap=function(e){var t=this,n=this._readableState,r=!1;for(var i in e.on("end",(function(){if(a("wrapped end"),n.decoder&&!n.ended){var e=n.decoder.end();e&&e.length&&t.push(e)}t.push(null)})),e.on("data",(function(i){a("wrapped data"),n.decoder&&(i=n.decoder.write(i)),(!n.objectMode||null!==i&&void 0!==i)&&(n.objectMode||i&&i.length)&&(t.push(i)||(r=!0,e.pause()))})),e)void 0===this[i]&&"function"===typeof e[i]&&(this[i]=function(t){return function(){return e[t].apply(e,arguments)}}(i));for(var o=0;o-1))throw new w(e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(T.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(T.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),T.prototype._write=function(e,t,n){n(new v("_write()"))},T.prototype._writev=null,T.prototype.end=function(e,t,n){var r=this._writableState;return"function"===typeof e?(n=e,e=null,t=null):"function"===typeof t&&(n=t,t=null),null!==e&&void 0!==e&&this.write(e,t),r.corked&&(r.corked=1,this.uncork()),r.ending||function(e,t,n){t.ending=!0,P(e,t),n&&(t.finished?i.nextTick(n):e.once("finish",n)),t.ended=!0,e.writable=!1}(this,r,n),this},Object.defineProperty(T.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(T.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),T.prototype.destroy=f.destroy,T.prototype._undestroy=f.undestroy,T.prototype._destroy=function(e,t){t(e)}},68221:function(e,t,n){"use strict";var r,i=n(90386);function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var o=n(12726),s=Symbol("lastResolve"),l=Symbol("lastReject"),c=Symbol("error"),u=Symbol("ended"),f=Symbol("lastPromise"),d=Symbol("handlePromise"),h=Symbol("stream");function p(e,t){return{value:e,done:t}}function v(e){var t=e[s];if(null!==t){var n=e[h].read();null!==n&&(e[f]=null,e[s]=null,e[l]=null,t(p(n,!1)))}}function m(e){i.nextTick(v,e)}var g=Object.getPrototypeOf((function(){})),y=Object.setPrototypeOf((a(r={get stream(){return this[h]},next:function(){var e=this,t=this[c];if(null!==t)return Promise.reject(t);if(this[u])return Promise.resolve(p(void 0,!0));if(this[h].destroyed)return new Promise((function(t,n){i.nextTick((function(){e[c]?n(e[c]):t(p(void 0,!0))}))}));var n,r=this[f];if(r)n=new Promise(function(e,t){return function(n,r){e.then((function(){t[u]?n(p(void 0,!0)):t[d](n,r)}),r)}}(r,this));else{var a=this[h].read();if(null!==a)return Promise.resolve(p(a,!1));n=new Promise(this[d])}return this[f]=n,n}},Symbol.asyncIterator,(function(){return this})),a(r,"return",(function(){var e=this;return new Promise((function(t,n){e[h].destroy(null,(function(e){e?n(e):t(p(void 0,!0))}))}))})),r),g);e.exports=function(e){var t,n=Object.create(y,(a(t={},h,{value:e,writable:!0}),a(t,s,{value:null,writable:!0}),a(t,l,{value:null,writable:!0}),a(t,c,{value:null,writable:!0}),a(t,u,{value:e._readableState.endEmitted,writable:!0}),a(t,d,{value:function(e,t){var r=n[h].read();r?(n[f]=null,n[s]=null,n[l]=null,e(p(r,!1))):(n[s]=e,n[l]=t)},writable:!0}),t));return n[f]=null,o(e,(function(e){if(e&&"ERR_STREAM_PREMATURE_CLOSE"!==e.code){var t=n[l];return null!==t&&(n[f]=null,n[s]=null,n[l]=null,t(e)),void(n[c]=e)}var r=n[s];null!==r&&(n[f]=null,n[s]=null,n[l]=null,r(p(void 0,!0))),n[u]=!0})),e.on("readable",m.bind(null,n)),n}},31125:function(e,t,n){"use strict";function r(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 i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e,t){for(var n=0;n0?this.tail.next=t:this.head=t,this.tail=t,++this.length}},{key:"unshift",value:function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length}},{key:"shift",value:function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(e){if(0===this.length)return"";for(var t=this.head,n=""+t.data;t=t.next;)n+=e+t.data;return n}},{key:"concat",value:function(e){if(0===this.length)return o.alloc(0);for(var t=o.allocUnsafe(e>>>0),n=this.head,r=0;n;)c(n.data,t,r),r+=n.data.length,n=n.next;return t}},{key:"consume",value:function(e,t){var n;return ei.length?i.length:e;if(a===i.length?r+=i:r+=i.slice(0,e),0===(e-=a)){a===i.length?(++n,t.next?this.head=t.next:this.head=this.tail=null):(this.head=t,t.data=i.slice(a));break}++n}return this.length-=n,r}},{key:"_getBuffer",value:function(e){var t=o.allocUnsafe(e),n=this.head,r=1;for(n.data.copy(t),e-=n.data.length;n=n.next;){var i=n.data,a=e>i.length?i.length:e;if(i.copy(t,t.length-e,0,a),0===(e-=a)){a===i.length?(++r,n.next?this.head=n.next:this.head=this.tail=null):(this.head=n,n.data=i.slice(a));break}++r}return this.length-=r,t}},{key:l,value:function(e,t){return s(this,function(e){for(var t=1;t0,(function(e){u||(u=e),e&&d.forEach(l),a||(d.forEach(l),f(u))}))}));return t.reduce(c)}},56306:function(e,t,n){"use strict";var r=n(74322).q.ERR_INVALID_OPT_VALUE;e.exports={getHighWaterMark:function(e,t,n,i){var a=function(e,t,n){return null!=e.highWaterMark?e.highWaterMark:t?e[n]:null}(t,i,n);if(null!=a){if(!isFinite(a)||Math.floor(a)!==a||a<0)throw new r(i?n:"highWaterMark",a);return Math.floor(a)}return e.objectMode?16:16384}}},71405:function(e,t,n){e.exports=n(15398).EventEmitter},68019:function(e,t,n){"use strict";var r=n(71665).Buffer,i=r.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function a(e){var t;switch(this.encoding=function(e){var t=function(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}(e);if("string"!==typeof t&&(r.isEncoding===i||!i(e)))throw new Error("Unknown encoding: "+e);return t||e}(e),this.encoding){case"utf16le":this.text=l,this.end=c,t=4;break;case"utf8":this.fillLast=s,t=4;break;case"base64":this.text=u,this.end=f,t=3;break;default:return this.write=d,void(this.end=h)}this.lastNeed=0,this.lastTotal=0,this.lastChar=r.allocUnsafe(t)}function o(e){return e<=127?0:e>>5===6?2:e>>4===14?3:e>>3===30?4:e>>6===2?-1:-2}function s(e){var t=this.lastTotal-this.lastNeed,n=function(e,t,n){if(128!==(192&t[0]))return e.lastNeed=0,"\ufffd";if(e.lastNeed>1&&t.length>1){if(128!==(192&t[1]))return e.lastNeed=1,"\ufffd";if(e.lastNeed>2&&t.length>2&&128!==(192&t[2]))return e.lastNeed=2,"\ufffd"}}(this,e);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function l(e,t){if((e.length-t)%2===0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function c(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function u(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function f(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function d(e){return e.toString(this.encoding)}function h(e){return e&&e.length?this.write(e):""}t.s=a,a.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n=0?(i>0&&(e.lastNeed=i-1),i):--r=0?(i>0&&(e.lastNeed=i-2),i):--r=0?(i>0&&(2===i?i=0:e.lastNeed=i-3),i):0}(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var r=e.length-(n-this.lastNeed);return e.copy(this.lastChar,0,r),e.toString("utf8",t,r)},a.prototype.fillLast=function(e){if(this.lastNeed<=e.length)return e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length),this.lastNeed-=e.length}},90715:function(e,t,n){var r=n(32791),a=n(41633)("stream-parser");e.exports=function(e){var t=e&&"function"==typeof e._transform,n=e&&"function"==typeof e._write;if(!t&&!n)throw new Error("must pass a Writable or Transform stream in");a("extending Parser into stream"),e._bytes=f,e._skipBytes=d,t&&(e._passthrough=h),t?e._transform=v:e._write=p};var o=-1,s=0,l=1,c=2;function u(e){a("initializing parser stream"),e._parserBytesLeft=0,e._parserBuffers=[],e._parserBuffered=0,e._parserState=o,e._parserCallback=null,"function"==typeof e.push&&(e._parserOutput=e.push.bind(e)),e._parserInit=!0}function f(e,t){r(!this._parserCallback,'there is already a "callback" set!'),r(isFinite(e)&&e>0,'can only buffer a finite number of bytes > 0, got "'+e+'"'),this._parserInit||u(this),a("buffering %o bytes",e),this._parserBytesLeft=e,this._parserCallback=t,this._parserState=s}function d(e,t){r(!this._parserCallback,'there is already a "callback" set!'),r(e>0,'can only skip > 0 bytes, got "'+e+'"'),this._parserInit||u(this),a("skipping %o bytes",e),this._parserBytesLeft=e,this._parserCallback=t,this._parserState=l}function h(e,t){r(!this._parserCallback,'There is already a "callback" set!'),r(e>0,'can only pass through > 0 bytes, got "'+e+'"'),this._parserInit||u(this),a("passing through %o bytes",e),this._parserBytesLeft=e,this._parserCallback=t,this._parserState=c}function p(e,t,n){this._parserInit||u(this),a("write(%o bytes)",e.length),"function"==typeof t&&(n=t),g(this,e,null,n)}function v(e,t,n){this._parserInit||u(this),a("transform(%o bytes)",e.length),"function"!=typeof t&&(t=this._parserOutput),g(this,e,t,n)}function m(e,t,n,r){if(e._parserBytesLeft-=t.length,a("%o bytes left for stream piece",e._parserBytesLeft),e._parserState===s?(e._parserBuffers.push(t),e._parserBuffered+=t.length):e._parserState===c&&n(t),0!==e._parserBytesLeft)return r;var l=e._parserCallback;if(l&&e._parserState===s&&e._parserBuffers.length>1&&(t=i.concat(e._parserBuffers,e._parserBuffered)),e._parserState!==s&&(t=null),e._parserCallback=null,e._parserBuffered=0,e._parserState=o,e._parserBuffers.splice(0),l){var u=[];t&&u.push(t),n&&u.push(n);var f=l.length>u.length;f&&u.push(y(r));var d=l.apply(e,u);if(!f||r===d)return r}}var g=y((function e(t,n,r,i){return t._parserBytesLeft<=0?i(new Error("got data but not currently parsing anything")):n.length<=t._parserBytesLeft?function(){return m(t,n,r,i)}:function(){var a=n.slice(0,t._parserBytesLeft);return m(t,a,r,(function(o){return o?i(o):n.length>a.length?function(){return e(t,n.slice(a.length),r,i)}:void 0}))}}));function y(e){return function(){for(var t=e.apply(this,arguments);"function"==typeof t;)t=t();return t}}},41633:function(e,t,n){var r=n(90386);function i(){var e;try{e=t.storage.debug}catch(n){}return!e&&"undefined"!==typeof r&&"env"in r&&(e=r.env.DEBUG),e}(t=e.exports=n(74469)).log=function(){return"object"===typeof console&&console.log&&Function.prototype.apply.call(console.log,console,arguments)},t.formatArgs=function(e){var n=this.useColors;if(e[0]=(n?"%c":"")+this.namespace+(n?" %c":" ")+e[0]+(n?"%c ":" ")+"+"+t.humanize(this.diff),n){var r="color: "+this.color;e.splice(1,0,r,"color: inherit");var i=0,a=0;e[0].replace(/%[a-zA-Z%]/g,(function(e){"%%"!==e&&(i++,"%c"===e&&(a=i))})),e.splice(a,0,r)}},t.save=function(e){try{null==e?t.storage.removeItem("debug"):t.storage.debug=e}catch(n){}},t.load=i,t.useColors=function(){return!("undefined"===typeof window||!window.process||"renderer"!==window.process.type)||("undefined"!==typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!==typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!==typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!==typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},t.storage="undefined"!=typeof chrome&&"undefined"!=typeof chrome.storage?chrome.storage.local:function(){try{return window.localStorage}catch(e){}}(),t.colors=["lightseagreen","forestgreen","goldenrod","dodgerblue","darkorchid","crimson"],t.formatters.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}},t.enable(i())},74469:function(e,t,n){var r;function i(e){function n(){if(n.enabled){var e=n,i=+new Date,a=i-(r||i);e.diff=a,e.prev=r,e.curr=i,r=i;for(var o=new Array(arguments.length),s=0;s0)return function(e){if(!((e=String(e)).length>100)){var o=/^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(e);if(o){var s=parseFloat(o[1]);switch((o[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return s*a;case"days":case"day":case"d":return s*i;case"hours":case"hour":case"hrs":case"hr":case"h":return s*r;case"minutes":case"minute":case"mins":case"min":case"m":return s*n;case"seconds":case"second":case"secs":case"sec":case"s":return s*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return}}}}(e);if("number"===c&&!1===isNaN(e))return s.long?o(l=e,i,"day")||o(l,r,"hour")||o(l,n,"minute")||o(l,t,"second")||l+" ms":function(e){return e>=i?Math.round(e/i)+"d":e>=r?Math.round(e/r)+"h":e>=n?Math.round(e/n)+"m":e>=t?Math.round(e/t)+"s":e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},99011:function(e,t,n){"use strict";var r=n(88641);e.exports=function(e,t,n){if(null==e)throw Error("First argument should be a string");if(null==t)throw Error("Separator should be a string or a RegExp");n?("string"===typeof n||Array.isArray(n))&&(n={ignore:n}):n={},null==n.escape&&(n.escape=!0),null==n.ignore?n.ignore=["[]","()","{}","<>",'""',"''","``","\u201c\u201d","\xab\xbb"]:("string"===typeof n.ignore&&(n.ignore=[n.ignore]),n.ignore=n.ignore.map((function(e){return 1===e.length&&(e+=e),e})));var i=r.parse(e,{flat:!0,brackets:n.ignore}),a=i[0].split(t);if(n.escape){for(var o=[],s=0;s0;){t=c[c.length-1];var h=e[t];if(a[t]=0&&s[t].push(o[v])}a[t]=p}else{if(r[t]===n[t]){var m=[],g=[],y=0;for(p=l.length-1;p>=0;--p){var b=l[p];if(i[b]=!1,m.push(b),g.push(s[b]),y+=s[b].length,o[b]=f.length,b===t){l.length=p;break}}f.push(m);var x=new Array(y);for(p=0;p1&&(i=1),i<-1&&(i=-1),(e*r-t*n<0?-1:1)*Math.acos(i)};t.default=function(e){var t=e.px,n=e.py,l=e.cx,c=e.cy,u=e.rx,f=e.ry,d=e.xAxisRotation,h=void 0===d?0:d,p=e.largeArcFlag,v=void 0===p?0:p,m=e.sweepFlag,g=void 0===m?0:m,y=[];if(0===u||0===f)return[];var b=Math.sin(h*i/360),x=Math.cos(h*i/360),w=x*(t-l)/2+b*(n-c)/2,_=-b*(t-l)/2+x*(n-c)/2;if(0===w&&0===_)return[];u=Math.abs(u),f=Math.abs(f);var k=Math.pow(w,2)/Math.pow(u,2)+Math.pow(_,2)/Math.pow(f,2);k>1&&(u*=Math.sqrt(k),f*=Math.sqrt(k));var S=function(e,t,n,r,a,o,l,c,u,f,d,h){var p=Math.pow(a,2),v=Math.pow(o,2),m=Math.pow(d,2),g=Math.pow(h,2),y=p*v-p*g-v*m;y<0&&(y=0),y/=p*g+v*m;var b=(y=Math.sqrt(y)*(l===c?-1:1))*a/o*h,x=y*-o/a*d,w=f*b-u*x+(e+n)/2,_=u*b+f*x+(t+r)/2,k=(d-b)/a,S=(h-x)/o,T=(-d-b)/a,A=(-h-x)/o,E=s(1,0,k,S),C=s(k,S,T,A);return 0===c&&C>0&&(C-=i),1===c&&C<0&&(C+=i),[w,_,E,C]}(t,n,l,c,u,f,v,g,b,x,w,_),T=r(S,4),A=T[0],E=T[1],C=T[2],M=T[3],O=Math.abs(M)/(i/4);Math.abs(1-O)<1e-7&&(O=1);var P=Math.max(Math.ceil(O),1);M/=P;for(var L=0;Lt[2]&&(t[2]=c[u+0]),c[u+1]>t[3]&&(t[3]=c[u+1]);return t}},29988:function(e,t,n){"use strict";e.exports=function(e){for(var t,n=[],o=0,s=0,l=0,c=0,u=null,f=null,d=0,h=0,p=0,v=e.length;p4?(o=m[m.length-4],s=m[m.length-3]):(o=d,s=h),n.push(m)}return n};var r=n(7095);function i(e,t,n,r){return["C",e,t,n,r,n,r]}function a(e,t,n,r,i,a){return["C",e/3+2/3*n,t/3+2/3*r,i/3+2/3*n,a/3+2/3*r,i,a]}},82019:function(e,t,n){"use strict";var r,i=n(1750),a=n(95616),o=n(31457),s=n(89546),l=n(44781),c=document.createElement("canvas"),u=c.getContext("2d");e.exports=function(e,t){if(!s(e))throw Error("Argument should be valid svg path string");var n,f;t||(t={}),t.shape?(n=t.shape[0],f=t.shape[1]):(n=c.width=t.w||t.width||200,f=c.height=t.h||t.height||200);var d=Math.min(n,f),h=t.stroke||0,p=t.viewbox||t.viewBox||i(e),v=[n/(p[2]-p[0]),f/(p[3]-p[1])],m=Math.min(v[0]||0,v[1]||0)/2;if(u.fillStyle="black",u.fillRect(0,0,n,f),u.fillStyle="white",h&&("number"!=typeof h&&(h=1),u.strokeStyle=h>0?"white":"black",u.lineWidth=Math.abs(h)),u.translate(.5*n,.5*f),u.scale(m,m),function(){if(null!=r)return r;var e=document.createElement("canvas").getContext("2d");if(e.canvas.width=e.canvas.height=1,!window.Path2D)return r=!1;var t=new Path2D("M0,0h1v1h-1v-1Z");e.fillStyle="black",e.fill(t);var n=e.getImageData(0,0,1,1);return r=n&&n.data&&255===n.data[3]}()){var g=new Path2D(e);u.fill(g),h&&u.stroke(g)}else{var y=a(e);o(u,y),u.fill(),h&&u.stroke()}return u.setTransform(1,0,0,1,0,0),l(u,{cutoff:null!=t.cutoff?t.cutoff:.5,radius:null!=t.radius?t.radius:.5*d})}},84267:function(e,t,n){var r;!function(i){var a=/^\s+/,o=/\s+$/,s=0,l=i.round,c=i.min,u=i.max,f=i.random;function d(e,t){if(t=t||{},(e=e||"")instanceof d)return e;if(!(this instanceof d))return new d(e,t);var n=function(e){var t={r:0,g:0,b:0},n=1,r=null,s=null,l=null,f=!1,d=!1;return"string"==typeof e&&(e=function(e){e=e.replace(a,"").replace(o,"").toLowerCase();var t,n=!1;if(O[e])e=O[e],n=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(t=B.rgb.exec(e))?{r:t[1],g:t[2],b:t[3]}:(t=B.rgba.exec(e))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=B.hsl.exec(e))?{h:t[1],s:t[2],l:t[3]}:(t=B.hsla.exec(e))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=B.hsv.exec(e))?{h:t[1],s:t[2],v:t[3]}:(t=B.hsva.exec(e))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=B.hex8.exec(e))?{r:D(t[1]),g:D(t[2]),b:D(t[3]),a:j(t[4]),format:n?"name":"hex8"}:(t=B.hex6.exec(e))?{r:D(t[1]),g:D(t[2]),b:D(t[3]),format:n?"name":"hex"}:(t=B.hex4.exec(e))?{r:D(t[1]+""+t[1]),g:D(t[2]+""+t[2]),b:D(t[3]+""+t[3]),a:j(t[4]+""+t[4]),format:n?"name":"hex8"}:!!(t=B.hex3.exec(e))&&{r:D(t[1]+""+t[1]),g:D(t[2]+""+t[2]),b:D(t[3]+""+t[3]),format:n?"name":"hex"}}(e)),"object"==typeof e&&(U(e.r)&&U(e.g)&&U(e.b)?(t=function(e,t,n){return{r:255*I(e,255),g:255*I(t,255),b:255*I(n,255)}}(e.r,e.g,e.b),f=!0,d="%"===String(e.r).substr(-1)?"prgb":"rgb"):U(e.h)&&U(e.s)&&U(e.v)?(r=N(e.s),s=N(e.v),t=function(e,t,n){e=6*I(e,360),t=I(t,100),n=I(n,100);var r=i.floor(e),a=e-r,o=n*(1-t),s=n*(1-a*t),l=n*(1-(1-a)*t),c=r%6,u=[n,s,o,o,l,n][c],f=[l,n,n,s,o,o][c],d=[o,o,l,n,n,s][c];return{r:255*u,g:255*f,b:255*d}}(e.h,r,s),f=!0,d="hsv"):U(e.h)&&U(e.s)&&U(e.l)&&(r=N(e.s),l=N(e.l),t=function(e,t,n){var r,i,a;function o(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=I(e,360),t=I(t,100),n=I(n,100),0===t)r=i=a=n;else{var s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;r=o(l,s,e+1/3),i=o(l,s,e),a=o(l,s,e-1/3)}return{r:255*r,g:255*i,b:255*a}}(e.h,r,l),f=!0,d="hsl"),e.hasOwnProperty("a")&&(n=e.a)),n=L(n),{ok:f,format:e.format||d,r:c(255,u(t.r,0)),g:c(255,u(t.g,0)),b:c(255,u(t.b,0)),a:n}}(e);this._originalInput=e,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=l(100*this._a)/100,this._format=t.format||n.format,this._gradientType=t.gradientType,this._r<1&&(this._r=l(this._r)),this._g<1&&(this._g=l(this._g)),this._b<1&&(this._b=l(this._b)),this._ok=n.ok,this._tc_id=s++}function h(e,t,n){e=I(e,255),t=I(t,255),n=I(n,255);var r,i,a=u(e,t,n),o=c(e,t,n),s=(a+o)/2;if(a==o)r=i=0;else{var l=a-o;switch(i=s>.5?l/(2-a-o):l/(a+o),a){case e:r=(t-n)/l+(t>1)+720)%360;--t;)r.h=(r.h+i)%360,a.push(d(r));return a}function M(e,t){t=t||6;for(var n=d(e).toHsv(),r=n.h,i=n.s,a=n.v,o=[],s=1/t;t--;)o.push(d({h:r,s:i,v:a})),a=(a+s)%1;return o}d.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r=this.toRgb();return e=r.r/255,t=r.g/255,n=r.b/255,.2126*(e<=.03928?e/12.92:i.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:i.pow((t+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:i.pow((n+.055)/1.055,2.4))},setAlpha:function(e){return this._a=L(e),this._roundA=l(100*this._a)/100,this},toHsv:function(){var e=p(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=p(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=h(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=h(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return v(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return function(e,t,n,r,i){var a=[F(l(e).toString(16)),F(l(t).toString(16)),F(l(n).toString(16)),F(z(r))];return i&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)&&a[3].charAt(0)==a[3].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")}(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:l(this._r),g:l(this._g),b:l(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+l(this._r)+", "+l(this._g)+", "+l(this._b)+")":"rgba("+l(this._r)+", "+l(this._g)+", "+l(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:l(100*I(this._r,255))+"%",g:l(100*I(this._g,255))+"%",b:l(100*I(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+l(100*I(this._r,255))+"%, "+l(100*I(this._g,255))+"%, "+l(100*I(this._b,255))+"%)":"rgba("+l(100*I(this._r,255))+"%, "+l(100*I(this._g,255))+"%, "+l(100*I(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(P[v(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+m(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var i=d(e);n="#"+m(i._r,i._g,i._b,i._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0;return t||!r||"hex"!==e&&"hex6"!==e&&"hex3"!==e&&"hex4"!==e&&"hex8"!==e&&"name"!==e?("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString()):"name"===e&&0===this._a?this.toName():this.toRgbString()},clone:function(){return d(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(x,arguments)},brighten:function(){return this._applyModification(w,arguments)},darken:function(){return this._applyModification(_,arguments)},desaturate:function(){return this._applyModification(g,arguments)},saturate:function(){return this._applyModification(y,arguments)},greyscale:function(){return this._applyModification(b,arguments)},spin:function(){return this._applyModification(k,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(C,arguments)},complement:function(){return this._applyCombination(S,arguments)},monochromatic:function(){return this._applyCombination(M,arguments)},splitcomplement:function(){return this._applyCombination(E,arguments)},triad:function(){return this._applyCombination(T,arguments)},tetrad:function(){return this._applyCombination(A,arguments)}},d.fromRatio=function(e,t){if("object"==typeof e){var n={};for(var r in e)e.hasOwnProperty(r)&&(n[r]="a"===r?e[r]:N(e[r]));e=n}return d(e,t)},d.equals=function(e,t){return!(!e||!t)&&d(e).toRgbString()==d(t).toRgbString()},d.random=function(){return d.fromRatio({r:f(),g:f(),b:f()})},d.mix=function(e,t,n){n=0===n?0:n||50;var r=d(e).toRgb(),i=d(t).toRgb(),a=n/100;return d({r:(i.r-r.r)*a+r.r,g:(i.g-r.g)*a+r.g,b:(i.b-r.b)*a+r.b,a:(i.a-r.a)*a+r.a})},d.readability=function(e,t){var n=d(e),r=d(t);return(i.max(n.getLuminance(),r.getLuminance())+.05)/(i.min(n.getLuminance(),r.getLuminance())+.05)},d.isReadable=function(e,t,n){var r,i,a=d.readability(e,t);switch(i=!1,(r=function(e){var t,n;return t=((e=e||{level:"AA",size:"small"}).level||"AA").toUpperCase(),n=(e.size||"small").toLowerCase(),"AA"!==t&&"AAA"!==t&&(t="AA"),"small"!==n&&"large"!==n&&(n="small"),{level:t,size:n}}(n)).level+r.size){case"AAsmall":case"AAAlarge":i=a>=4.5;break;case"AAlarge":i=a>=3;break;case"AAAsmall":i=a>=7}return i},d.mostReadable=function(e,t,n){var r,i,a,o,s=null,l=0;i=(n=n||{}).includeFallbackColors,a=n.level,o=n.size;for(var c=0;cl&&(l=r,s=d(t[c]));return d.isReadable(e,s,{level:a,size:o})||!i?s:(n.includeFallbackColors=!1,d.mostReadable(e,["#fff","#000"],n))};var O=d.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},P=d.hexNames=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}(O);function L(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function I(e,t){(function(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)})(e)&&(e="100%");var n=function(e){return"string"===typeof e&&-1!=e.indexOf("%")}(e);return e=c(t,u(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),i.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function R(e){return c(1,u(0,e))}function D(e){return parseInt(e,16)}function F(e){return 1==e.length?"0"+e:""+e}function N(e){return e<=1&&(e=100*e+"%"),e}function z(e){return i.round(255*parseFloat(e)).toString(16)}function j(e){return D(e)/255}var B=function(){var e="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)",t="[\\s|\\(]+("+e+")[,|\\s]+("+e+")[,|\\s]+("+e+")\\s*\\)?",n="[\\s|\\(]+("+e+")[,|\\s]+("+e+")[,|\\s]+("+e+")[,|\\s]+("+e+")\\s*\\)?";return{CSS_UNIT:new RegExp(e),rgb:new RegExp("rgb"+t),rgba:new RegExp("rgba"+n),hsl:new RegExp("hsl"+t),hsla:new RegExp("hsla"+n),hsv:new RegExp("hsv"+t),hsva:new RegExp("hsva"+n),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();function U(e){return!!B.CSS_UNIT.exec(e)}e.exports?e.exports=d:void 0===(r=function(){return d}.call(t,n,t,e))||(e.exports=r)}(Math)},57060:function(e){"use strict";e.exports=n,e.exports.float32=e.exports.float=n,e.exports.fract32=e.exports.fract=function(e,t){if(e.length){if(e instanceof Float32Array)return new Float32Array(e.length);t instanceof Float32Array||(t=n(e));for(var r=0,i=t.length;r":(t.length>100&&(t=t.slice(0,99)+"\u2026"),t=t.replace(i,(function(e){switch(e){case"\n":return"\\n";case"\r":return"\\r";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";default:throw new Error("Unexpected character")}})))}},47403:function(e,t,n){"use strict";var r=n(24582),i={object:!0,function:!0,undefined:!0};e.exports=function(e){return!!r(e)&&hasOwnProperty.call(i,typeof e)}},82527:function(e,t,n){"use strict";var r=n(69190),i=n(84985);e.exports=function(e){return i(e)?e:r(e,"%v is not a plain function",arguments[1])}},84985:function(e,t,n){"use strict";var r=n(73116),i=/^\s*class[\s{/}]/,a=Function.prototype.toString;e.exports=function(e){return!!r(e)&&!i.test(a.call(e))}},24511:function(e,t,n){"use strict";var r=n(47403);e.exports=function(e){if(!r(e))return!1;try{return!!e.constructor&&e.constructor.prototype===e}catch(t){return!1}}},9234:function(e,t,n){"use strict";var r=n(24582),i=n(47403),a=Object.prototype.toString;e.exports=function(e){if(!r(e))return null;if(i(e)){var t=e.toString;if("function"!==typeof t)return null;if(t===a)return null}try{return""+e}catch(n){return null}}},10424:function(e,t,n){"use strict";var r=n(69190),i=n(24582);e.exports=function(e){return i(e)?e:r(e,"Cannot use %v",arguments[1])}},24582:function(e){"use strict";e.exports=function(e){return void 0!==e&&null!==e}},58404:function(e,t,n){"use strict";var r=n(13547),i=n(12129),a=n(12856).Buffer;n.g.__TYPEDARRAY_POOL||(n.g.__TYPEDARRAY_POOL={UINT8:i([32,0]),UINT16:i([32,0]),UINT32:i([32,0]),BIGUINT64:i([32,0]),INT8:i([32,0]),INT16:i([32,0]),INT32:i([32,0]),BIGINT64:i([32,0]),FLOAT:i([32,0]),DOUBLE:i([32,0]),DATA:i([32,0]),UINT8C:i([32,0]),BUFFER:i([32,0])});var o="undefined"!==typeof Uint8ClampedArray,s="undefined"!==typeof BigUint64Array,l="undefined"!==typeof BigInt64Array,c=n.g.__TYPEDARRAY_POOL;c.UINT8C||(c.UINT8C=i([32,0])),c.BIGUINT64||(c.BIGUINT64=i([32,0])),c.BIGINT64||(c.BIGINT64=i([32,0])),c.BUFFER||(c.BUFFER=i([32,0]));var u=c.DATA,f=c.BUFFER;function d(e){if(e){var t=e.length||e.byteLength,n=r.log2(t);u[n].push(e)}}function h(e){e=r.nextPow2(e);var t=r.log2(e),n=u[t];return n.length>0?n.pop():new ArrayBuffer(e)}function p(e){return new Uint8Array(h(e),0,e)}function v(e){return new Uint16Array(h(2*e),0,e)}function m(e){return new Uint32Array(h(4*e),0,e)}function g(e){return new Int8Array(h(e),0,e)}function y(e){return new Int16Array(h(2*e),0,e)}function b(e){return new Int32Array(h(4*e),0,e)}function x(e){return new Float32Array(h(4*e),0,e)}function w(e){return new Float64Array(h(8*e),0,e)}function _(e){return o?new Uint8ClampedArray(h(e),0,e):p(e)}function k(e){return s?new BigUint64Array(h(8*e),0,e):null}function S(e){return l?new BigInt64Array(h(8*e),0,e):null}function T(e){return new DataView(h(e),0,e)}function A(e){e=r.nextPow2(e);var t=r.log2(e),n=f[t];return n.length>0?n.pop():new a(e)}t.free=function(e){if(a.isBuffer(e))f[r.log2(e.length)].push(e);else{if("[object ArrayBuffer]"!==Object.prototype.toString.call(e)&&(e=e.buffer),!e)return;var t=e.length||e.byteLength,n=0|r.log2(t);u[n].push(e)}},t.freeUint8=t.freeUint16=t.freeUint32=t.freeBigUint64=t.freeInt8=t.freeInt16=t.freeInt32=t.freeBigInt64=t.freeFloat32=t.freeFloat=t.freeFloat64=t.freeDouble=t.freeUint8Clamped=t.freeDataView=function(e){d(e.buffer)},t.freeArrayBuffer=d,t.freeBuffer=function(e){f[r.log2(e.length)].push(e)},t.malloc=function(e,t){if(void 0===t||"arraybuffer"===t)return h(e);switch(t){case"uint8":return p(e);case"uint16":return v(e);case"uint32":return m(e);case"int8":return g(e);case"int16":return y(e);case"int32":return b(e);case"float":case"float32":return x(e);case"double":case"float64":return w(e);case"uint8_clamped":return _(e);case"bigint64":return S(e);case"biguint64":return k(e);case"buffer":return A(e);case"data":case"dataview":return T(e);default:return null}return null},t.mallocArrayBuffer=h,t.mallocUint8=p,t.mallocUint16=v,t.mallocUint32=m,t.mallocInt8=g,t.mallocInt16=y,t.mallocInt32=b,t.mallocFloat32=t.mallocFloat=x,t.mallocFloat64=t.mallocDouble=w,t.mallocUint8Clamped=_,t.mallocBigUint64=k,t.mallocBigInt64=S,t.mallocDataView=T,t.mallocBuffer=A,t.clearCache=function(){for(var e=0;e<32;++e)c.UINT8[e].length=0,c.UINT16[e].length=0,c.UINT32[e].length=0,c.INT8[e].length=0,c.INT16[e].length=0,c.INT32[e].length=0,c.FLOAT[e].length=0,c.DOUBLE[e].length=0,c.BIGUINT64[e].length=0,c.BIGINT64[e].length=0,c.UINT8C[e].length=0,u[e].length=0,f[e].length=0}},90448:function(e){var t=/[\'\"]/;e.exports=function(e){return e?(t.test(e.charAt(0))&&(e=e.substr(1)),t.test(e.charAt(e.length-1))&&(e=e.substr(0,e.length-1)),e):""}},93447:function(e){"use strict";e.exports=function(e,t,n){Array.isArray(n)||(n=[].slice.call(arguments,2));for(var r=0,i=n.length;r=i)return e;switch(e){case"%s":return String(r[n++]);case"%d":return Number(r[n++]);case"%j":try{return JSON.stringify(r[n++])}catch(t){return"[Circular]"}default:return e}})),s=r[n];n=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),m(n)?r.showHidden=n:n&&t._extend(r,n),x(r.showHidden)&&(r.showHidden=!1),x(r.depth)&&(r.depth=2),x(r.colors)&&(r.colors=!1),x(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=u),d(r,e,r.depth)}function u(e,t){var n=c.styles[t];return n?"\x1b["+c.colors[n][0]+"m"+e+"\x1b["+c.colors[n][1]+"m":e}function f(e,t){return e}function d(e,n,r){if(e.customInspect&&n&&T(n.inspect)&&n.inspect!==t.inspect&&(!n.constructor||n.constructor.prototype!==n)){var i=n.inspect(r,e);return b(i)||(i=d(e,i,r)),i}var a=function(e,t){if(x(t))return e.stylize("undefined","undefined");if(b(t)){var n="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(n,"string")}return y(t)?e.stylize(""+t,"number"):m(t)?e.stylize(""+t,"boolean"):g(t)?e.stylize("null","null"):void 0}(e,n);if(a)return a;var o=Object.keys(n),s=function(e){var t={};return e.forEach((function(e,n){t[e]=!0})),t}(o);if(e.showHidden&&(o=Object.getOwnPropertyNames(n)),S(n)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return h(n);if(0===o.length){if(T(n)){var l=n.name?": "+n.name:"";return e.stylize("[Function"+l+"]","special")}if(w(n))return e.stylize(RegExp.prototype.toString.call(n),"regexp");if(k(n))return e.stylize(Date.prototype.toString.call(n),"date");if(S(n))return h(n)}var c,u="",f=!1,_=["{","}"];return v(n)&&(f=!0,_=["[","]"]),T(n)&&(u=" [Function"+(n.name?": "+n.name:"")+"]"),w(n)&&(u=" "+RegExp.prototype.toString.call(n)),k(n)&&(u=" "+Date.prototype.toUTCString.call(n)),S(n)&&(u=" "+h(n)),0!==o.length||f&&0!=n.length?r<0?w(n)?e.stylize(RegExp.prototype.toString.call(n),"regexp"):e.stylize("[Object]","special"):(e.seen.push(n),c=f?function(e,t,n,r,i){for(var a=[],o=0,s=t.length;o60?n[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+n[1]:n[0]+t+" "+e.join(", ")+" "+n[1]}(c,u,_)):_[0]+u+_[1]}function h(e){return"["+Error.prototype.toString.call(e)+"]"}function p(e,t,n,r,i,a){var o,s,l;if((l=Object.getOwnPropertyDescriptor(t,i)||{value:t[i]}).get?s=l.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):l.set&&(s=e.stylize("[Setter]","special")),M(r,i)||(o="["+i+"]"),s||(e.seen.indexOf(l.value)<0?(s=g(n)?d(e,l.value,null):d(e,l.value,n-1)).indexOf("\n")>-1&&(s=a?s.split("\n").map((function(e){return" "+e})).join("\n").slice(2):"\n"+s.split("\n").map((function(e){return" "+e})).join("\n")):s=e.stylize("[Circular]","special")),x(o)){if(a&&i.match(/^\d+$/))return s;(o=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(o=o.slice(1,-1),o=e.stylize(o,"name")):(o=o.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),o=e.stylize(o,"string"))}return o+": "+s}function v(e){return Array.isArray(e)}function m(e){return"boolean"===typeof e}function g(e){return null===e}function y(e){return"number"===typeof e}function b(e){return"string"===typeof e}function x(e){return void 0===e}function w(e){return _(e)&&"[object RegExp]"===A(e)}function _(e){return"object"===typeof e&&null!==e}function k(e){return _(e)&&"[object Date]"===A(e)}function S(e){return _(e)&&("[object Error]"===A(e)||e instanceof Error)}function T(e){return"function"===typeof e}function A(e){return Object.prototype.toString.call(e)}function E(e){return e<10?"0"+e.toString(10):e.toString(10)}t.debuglog=function(e){if(e=e.toUpperCase(),!o[e])if(s.test(e)){var n=r.pid;o[e]=function(){var r=t.format.apply(t,arguments);console.error("%s %d: %s",e,n,r)}}else o[e]=function(){};return o[e]},t.inspect=c,c.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},c.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},t.types=n(4936),t.isArray=v,t.isBoolean=m,t.isNull=g,t.isNullOrUndefined=function(e){return null==e},t.isNumber=y,t.isString=b,t.isSymbol=function(e){return"symbol"===typeof e},t.isUndefined=x,t.isRegExp=w,t.types.isRegExp=w,t.isObject=_,t.isDate=k,t.types.isDate=k,t.isError=S,t.types.isNativeError=S,t.isFunction=T,t.isPrimitive=function(e){return null===e||"boolean"===typeof e||"number"===typeof e||"string"===typeof e||"symbol"===typeof e||"undefined"===typeof e},t.isBuffer=n(45920);var C=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function M(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.log=function(){console.log("%s - %s",function(){var e=new Date,t=[E(e.getHours()),E(e.getMinutes()),E(e.getSeconds())].join(":");return[e.getDate(),C[e.getMonth()],t].join(" ")}(),t.format.apply(t,arguments))},t.inherits=n(42018),t._extend=function(e,t){if(!t||!_(t))return e;for(var n=Object.keys(t),r=n.length;r--;)e[n[r]]=t[n[r]];return e};var O="undefined"!==typeof Symbol?Symbol("util.promisify.custom"):void 0;function P(e,t){if(!e){var n=new Error("Promise was rejected with a falsy value");n.reason=e,e=n}return t(e)}t.promisify=function(e){if("function"!==typeof e)throw new TypeError('The "original" argument must be of type Function');if(O&&e[O]){var t;if("function"!==typeof(t=e[O]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(t,O,{value:t,enumerable:!1,writable:!1,configurable:!0}),t}function t(){for(var t,n,r=new Promise((function(e,r){t=e,n=r})),i=[],a=0;a2111)throw t.replace(/\{0\}/,this.local.name);return e},toMonthIndex:function(e,t,n){var i=this.intercalaryMonth(e);if(n&&t!==i||t<1||t>12)throw r.local.invalidMonth.replace(/\{0\}/,this.local.name);return i?!n&&t<=i?t-1:t:t-1},toChineseMonth:function(e,t){e.year&&(t=(e=e.year()).month());var n=this.intercalaryMonth(e);if(t<0||t>(n?12:11))throw r.local.invalidMonth.replace(/\{0\}/,this.local.name);return n?t>13;return t},isIntercalaryMonth:function(e,t){e.year&&(t=(e=e.year()).month());var n=this.intercalaryMonth(e);return!!n&&n===t},leapYear:function(e){return 0!==this.intercalaryMonth(e)},weekOfYear:function(e,t,n){var i,o=this._validateYear(e,r.local.invalidyear),s=d[o-d[0]],l=s>>9&4095,c=s>>5&15,u=31&s;(i=a.newDate(l,c,u)).add(4-(i.dayOfWeek()||7),"d");var f=this.toJD(e,t,n)-i.toJD();return 1+Math.floor(f/7)},monthsInYear:function(e){return this.leapYear(e)?13:12},daysInMonth:function(e,t){e.year&&(t=e.month(),e=e.year()),e=this._validateYear(e);var n=f[e-f[0]];if(t>(n>>13?12:11))throw r.local.invalidMonth.replace(/\{0\}/,this.local.name);var i=n&1<<12-t?30:29;return i},weekDay:function(e,t,n){return(this.dayOfWeek(e,t,n)||7)<6},toJD:function(e,t,n){var i=this._validate(e,s,n,r.local.invalidDate);e=this._validateYear(i.year()),t=i.month(),n=i.day();var o=this.isIntercalaryMonth(e,t),s=this.toChineseMonth(e,t),l=function(e,t,n,r,i){var a,o,s;if("object"===typeof e)o=e,a=t||{};else{var l;if(!("number"===typeof e&&e>=1888&&e<=2111))throw new Error("Lunar year outside range 1888-2111");if(!("number"===typeof t&&t>=1&&t<=12))throw new Error("Lunar month outside range 1 - 12");if(!("number"===typeof n&&n>=1&&n<=30))throw new Error("Lunar day outside range 1 - 30");"object"===typeof r?(l=!1,a=r):(l=!!r,a=i||{}),o={year:e,month:t,day:n,isIntercalary:l}}s=o.day-1;var c,u=f[o.year-f[0]],h=u>>13;c=h&&(o.month>h||o.isIntercalary)?o.month:o.month-1;for(var p=0;p>9&4095,(v>>5&15)-1,(31&v)+s);return a.year=m.getFullYear(),a.month=1+m.getMonth(),a.day=m.getDate(),a}(e,s,n,o);return a.toJD(l.year,l.month,l.day)},fromJD:function(e){var t=a.fromJD(e),n=function(e,t,n,r){var i,a;if("object"===typeof e)i=e,a=t||{};else{if(!("number"===typeof e&&e>=1888&&e<=2111))throw new Error("Solar year outside range 1888-2111");if(!("number"===typeof t&&t>=1&&t<=12))throw new Error("Solar month outside range 1 - 12");if(!("number"===typeof n&&n>=1&&n<=31))throw new Error("Solar day outside range 1 - 31");i={year:e,month:t,day:n},a=r||{}}var o=d[i.year-d[0]],s=i.year<<9|i.month<<5|i.day;a.year=s>=o?i.year:i.year-1,o=d[a.year-d[0]];var l,c=new Date(o>>9&4095,(o>>5&15)-1,31&o),u=new Date(i.year,i.month-1,i.day);l=Math.round((u-c)/864e5);var h,p=f[a.year-f[0]];for(h=0;h<13;h++){var v=p&1<<12-h?30:29;if(l>13;return!m||h=2&&r<=6},extraInfo:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return{century:o[Math.floor((i.year()-1)/100)+1]||""}},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return e=i.year()+(i.year()<0?1:0),t=i.month(),(n=i.day())+(t>1?16:0)+(t>2?32*(t-2):0)+400*(e-1)+this.jdEpoch-1},fromJD:function(e){e=Math.floor(e+.5)-Math.floor(this.jdEpoch)-1;var t=Math.floor(e/400)+1;e-=400*(t-1),e+=e>15?16:0;var n=Math.floor(e/32)+1,r=e-32*(n-1)+1;return this.newDate(t<=0?t-1:t,n,r)}});var o={20:"Fruitbat",21:"Anchovy"};r.calendars.discworld=a},37715:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}a.prototype=new r.baseCalendar,i(a.prototype,{name:"Ethiopian",jdEpoch:1724220.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Ethiopian",epochs:["BEE","EE"],monthNames:["Meskerem","Tikemet","Hidar","Tahesas","Tir","Yekatit","Megabit","Miazia","Genbot","Sene","Hamle","Nehase","Pagume"],monthNamesShort:["Mes","Tik","Hid","Tah","Tir","Yek","Meg","Mia","Gen","Sen","Ham","Neh","Pag"],dayNames:["Ehud","Segno","Maksegno","Irob","Hamus","Arb","Kidame"],dayNamesShort:["Ehu","Seg","Mak","Iro","Ham","Arb","Kid"],dayNamesMin:["Eh","Se","Ma","Ir","Ha","Ar","Ki"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:0,isRTL:!1}},leapYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return(e=t.year()+(t.year()<0?1:0))%4===3||e%4===-1},monthsInYear:function(e){return this._validate(e,this.minMonth,this.minDay,r.local.invalidYear||r.regionalOptions[""].invalidYear),13},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(-r.dayOfWeek(),"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInMonth:function(e,t){var n=this._validate(e,t,this.minDay,r.local.invalidMonth);return this.daysPerMonth[n.month()-1]+(13===n.month()&&this.leapYear(n.year())?1:0)},weekDay:function(e,t,n){return(this.dayOfWeek(e,t,n)||7)<6},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return(e=i.year())<0&&e++,i.day()+30*(i.month()-1)+365*(e-1)+Math.floor(e/4)+this.jdEpoch-1},fromJD:function(e){var t=Math.floor(e)+.5-this.jdEpoch,n=Math.floor((t-Math.floor((t+366)/1461))/365)+1;n<=0&&n--,t=Math.floor(e)+.5-this.newDate(n,1,1).toJD();var r=Math.floor(t/30)+1,i=t-30*(r-1)+1;return this.newDate(n,r,i)}}),r.calendars.ethiopian=a},99384:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}function o(e,t){return e-t*Math.floor(e/t)}a.prototype=new r.baseCalendar,i(a.prototype,{name:"Hebrew",jdEpoch:347995.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29,29],hasYearZero:!1,minMonth:1,firstMonth:7,minDay:1,regionalOptions:{"":{name:"Hebrew",epochs:["BAM","AM"],monthNames:["Nisan","Iyar","Sivan","Tammuz","Av","Elul","Tishrei","Cheshvan","Kislev","Tevet","Shevat","Adar","Adar II"],monthNamesShort:["Nis","Iya","Siv","Tam","Av","Elu","Tis","Che","Kis","Tev","She","Ada","Ad2"],dayNames:["Yom Rishon","Yom Sheni","Yom Shlishi","Yom Revi'i","Yom Chamishi","Yom Shishi","Yom Shabbat"],dayNamesShort:["Ris","She","Shl","Rev","Cha","Shi","Sha"],dayNamesMin:["Ri","She","Shl","Re","Ch","Shi","Sha"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:0,isRTL:!1}},leapYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return this._leapYear(t.year())},_leapYear:function(e){return o(7*(e=e<0?e+1:e)+1,19)<7},monthsInYear:function(e){return this._validate(e,this.minMonth,this.minDay,r.local.invalidYear),this._leapYear(e.year?e.year():e)?13:12},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(-r.dayOfWeek(),"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInYear:function(e){return e=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear).year(),this.toJD(-1===e?1:e+1,7,1)-this.toJD(e,7,1)},daysInMonth:function(e,t){return e.year&&(t=e.month(),e=e.year()),this._validate(e,t,this.minDay,r.local.invalidMonth),12===t&&this.leapYear(e)||8===t&&5===o(this.daysInYear(e),10)?30:9===t&&3===o(this.daysInYear(e),10)?29:this.daysPerMonth[t-1]},weekDay:function(e,t,n){return 6!==this.dayOfWeek(e,t,n)},extraInfo:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return{yearType:(this.leapYear(i)?"embolismic":"common")+" "+["deficient","regular","complete"][this.daysInYear(i)%10-3]}},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);e=i.year(),t=i.month(),n=i.day();var a=e<=0?e+1:e,o=this.jdEpoch+this._delay1(a)+this._delay2(a)+n+1;if(t<7){for(var s=7;s<=this.monthsInYear(e);s++)o+=this.daysInMonth(e,s);for(s=1;s=this.toJD(-1===t?1:t+1,7,1);)t++;for(var n=ethis.toJD(t,n,this.daysInMonth(t,n));)n++;var r=e-this.toJD(t,n,1)+1;return this.newDate(t,n,r)}}),r.calendars.hebrew=a},43805:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}a.prototype=new r.baseCalendar,i(a.prototype,{name:"Islamic",jdEpoch:1948439.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Islamic",epochs:["BH","AH"],monthNames:["Muharram","Safar","Rabi' al-awwal","Rabi' al-thani","Jumada al-awwal","Jumada al-thani","Rajab","Sha'aban","Ramadan","Shawwal","Dhu al-Qi'dah","Dhu al-Hijjah"],monthNamesShort:["Muh","Saf","Rab1","Rab2","Jum1","Jum2","Raj","Sha'","Ram","Shaw","DhuQ","DhuH"],dayNames:["Yawm al-ahad","Yawm al-ithnayn","Yawm ath-thulaathaa'","Yawm al-arbi'aa'","Yawm al-kham\u012bs","Yawm al-jum'a","Yawm as-sabt"],dayNamesShort:["Aha","Ith","Thu","Arb","Kha","Jum","Sab"],dayNamesMin:["Ah","It","Th","Ar","Kh","Ju","Sa"],digits:null,dateFormat:"yyyy/mm/dd",firstDay:6,isRTL:!1}},leapYear:function(e){return(11*this._validate(e,this.minMonth,this.minDay,r.local.invalidYear).year()+14)%30<11},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(-r.dayOfWeek(),"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInYear:function(e){return this.leapYear(e)?355:354},daysInMonth:function(e,t){var n=this._validate(e,t,this.minDay,r.local.invalidMonth);return this.daysPerMonth[n.month()-1]+(12===n.month()&&this.leapYear(n.year())?1:0)},weekDay:function(e,t,n){return 5!==this.dayOfWeek(e,t,n)},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return e=i.year(),t=i.month(),e=e<=0?e+1:e,(n=i.day())+Math.ceil(29.5*(t-1))+354*(e-1)+Math.floor((3+11*e)/30)+this.jdEpoch-1},fromJD:function(e){e=Math.floor(e)+.5;var t=Math.floor((30*(e-this.jdEpoch)+10646)/10631);t=t<=0?t-1:t;var n=Math.min(12,Math.ceil((e-29-this.toJD(t,1,1))/29.5)+1),r=e-this.toJD(t,n,1)+1;return this.newDate(t,n,r)}}),r.calendars.islamic=a},88874:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}a.prototype=new r.baseCalendar,i(a.prototype,{name:"Julian",jdEpoch:1721423.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Julian",epochs:["BC","AD"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],digits:null,dateFormat:"mm/dd/yyyy",firstDay:0,isRTL:!1}},leapYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return(e=t.year()<0?t.year()+1:t.year())%4===0},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(4-(r.dayOfWeek()||7),"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInMonth:function(e,t){var n=this._validate(e,t,this.minDay,r.local.invalidMonth);return this.daysPerMonth[n.month()-1]+(2===n.month()&&this.leapYear(n.year())?1:0)},weekDay:function(e,t,n){return(this.dayOfWeek(e,t,n)||7)<6},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return e=i.year(),t=i.month(),n=i.day(),e<0&&e++,t<=2&&(e--,t+=12),Math.floor(365.25*(e+4716))+Math.floor(30.6001*(t+1))+n-1524.5},fromJD:function(e){var t=Math.floor(e+.5)+1524,n=Math.floor((t-122.1)/365.25),r=Math.floor(365.25*n),i=Math.floor((t-r)/30.6001),a=i-Math.floor(i<14?1:13),o=n-Math.floor(a>2?4716:4715),s=t-r-Math.floor(30.6001*i);return o<=0&&o--,this.newDate(o,a,s)}}),r.calendars.julian=a},83290:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}function o(e,t){return e-t*Math.floor(e/t)}function s(e,t){return o(e-1,t)+1}a.prototype=new r.baseCalendar,i(a.prototype,{name:"Mayan",jdEpoch:584282.5,hasYearZero:!0,minMonth:0,firstMonth:0,minDay:0,regionalOptions:{"":{name:"Mayan",epochs:["",""],monthNames:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17"],monthNamesShort:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17"],dayNames:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],dayNamesShort:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],dayNamesMin:["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19"],digits:null,dateFormat:"YYYY.m.d",firstDay:0,isRTL:!1,haabMonths:["Pop","Uo","Zip","Zotz","Tzec","Xul","Yaxkin","Mol","Chen","Yax","Zac","Ceh","Mac","Kankin","Muan","Pax","Kayab","Cumku","Uayeb"],tzolkinMonths:["Imix","Ik","Akbal","Kan","Chicchan","Cimi","Manik","Lamat","Muluc","Oc","Chuen","Eb","Ben","Ix","Men","Cib","Caban","Etznab","Cauac","Ahau"]}},leapYear:function(e){return this._validate(e,this.minMonth,this.minDay,r.local.invalidYear),!1},formatYear:function(e){e=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear).year();var t=Math.floor(e/400);return e%=400,e+=e<0?400:0,t+"."+Math.floor(e/20)+"."+e%20},forYear:function(e){if((e=e.split(".")).length<3)throw"Invalid Mayan year";for(var t=0,n=0;n19||n>0&&r<0)throw"Invalid Mayan year";t=20*t+r}return t},monthsInYear:function(e){return this._validate(e,this.minMonth,this.minDay,r.local.invalidYear),18},weekOfYear:function(e,t,n){return this._validate(e,t,n,r.local.invalidDate),0},daysInYear:function(e){return this._validate(e,this.minMonth,this.minDay,r.local.invalidYear),360},daysInMonth:function(e,t){return this._validate(e,t,this.minDay,r.local.invalidMonth),20},daysInWeek:function(){return 5},dayOfWeek:function(e,t,n){return this._validate(e,t,n,r.local.invalidDate).day()},weekDay:function(e,t,n){return this._validate(e,t,n,r.local.invalidDate),!0},extraInfo:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate).toJD(),a=this._toHaab(i),o=this._toTzolkin(i);return{haabMonthName:this.local.haabMonths[a[0]-1],haabMonth:a[0],haabDay:a[1],tzolkinDayName:this.local.tzolkinMonths[o[0]-1],tzolkinDay:o[0],tzolkinTrecena:o[1]}},_toHaab:function(e){var t=o(8+(e-=this.jdEpoch)+340,365);return[Math.floor(t/20)+1,o(t,20)]},_toTzolkin:function(e){return[s(20+(e-=this.jdEpoch),20),s(e+4,13)]},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return i.day()+20*i.month()+360*i.year()+this.jdEpoch},fromJD:function(e){e=Math.floor(e)+.5-this.jdEpoch;var t=Math.floor(e/360);e%=360,e+=e<0?360:0;var n=Math.floor(e/20),r=e%20;return this.newDate(t,n,r)}}),r.calendars.mayan=a},29108:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}a.prototype=new r.baseCalendar;var o=r.instance("gregorian");i(a.prototype,{name:"Nanakshahi",jdEpoch:2257673.5,daysPerMonth:[31,31,31,31,31,30,30,30,30,30,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Nanakshahi",epochs:["BN","AN"],monthNames:["Chet","Vaisakh","Jeth","Harh","Sawan","Bhadon","Assu","Katak","Maghar","Poh","Magh","Phagun"],monthNamesShort:["Che","Vai","Jet","Har","Saw","Bha","Ass","Kat","Mgr","Poh","Mgh","Pha"],dayNames:["Somvaar","Mangalvar","Budhvaar","Veervaar","Shukarvaar","Sanicharvaar","Etvaar"],dayNamesShort:["Som","Mangal","Budh","Veer","Shukar","Sanichar","Et"],dayNamesMin:["So","Ma","Bu","Ve","Sh","Sa","Et"],digits:null,dateFormat:"dd-mm-yyyy",firstDay:0,isRTL:!1}},leapYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear||r.regionalOptions[""].invalidYear);return o.leapYear(t.year()+(t.year()<1?1:0)+1469)},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(1-(r.dayOfWeek()||7),"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInMonth:function(e,t){var n=this._validate(e,t,this.minDay,r.local.invalidMonth);return this.daysPerMonth[n.month()-1]+(12===n.month()&&this.leapYear(n.year())?1:0)},weekDay:function(e,t,n){return(this.dayOfWeek(e,t,n)||7)<6},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidMonth);(e=i.year())<0&&e++;for(var a=i.day(),s=1;s=this.toJD(t+1,1,1);)t++;for(var n=e-Math.floor(this.toJD(t,1,1)+.5)+1,r=1;n>this.daysInMonth(t,r);)n-=this.daysInMonth(t,r),r++;return this.newDate(t,r,n)}}),r.calendars.nanakshahi=a},55422:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}a.prototype=new r.baseCalendar,i(a.prototype,{name:"Nepali",jdEpoch:1700709.5,daysPerMonth:[31,31,32,32,31,30,30,29,30,29,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,daysPerYear:365,regionalOptions:{"":{name:"Nepali",epochs:["BBS","ABS"],monthNames:["Baisakh","Jestha","Ashadh","Shrawan","Bhadra","Ashwin","Kartik","Mangsir","Paush","Mangh","Falgun","Chaitra"],monthNamesShort:["Bai","Je","As","Shra","Bha","Ash","Kar","Mang","Pau","Ma","Fal","Chai"],dayNames:["Aaitabaar","Sombaar","Manglbaar","Budhabaar","Bihibaar","Shukrabaar","Shanibaar"],dayNamesShort:["Aaita","Som","Mangl","Budha","Bihi","Shukra","Shani"],dayNamesMin:["Aai","So","Man","Bu","Bi","Shu","Sha"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:1,isRTL:!1}},leapYear:function(e){return this.daysInYear(e)!==this.daysPerYear},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(-r.dayOfWeek(),"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInYear:function(e){if(e=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear).year(),"undefined"===typeof this.NEPALI_CALENDAR_DATA[e])return this.daysPerYear;for(var t=0,n=this.minMonth;n<=12;n++)t+=this.NEPALI_CALENDAR_DATA[e][n];return t},daysInMonth:function(e,t){return e.year&&(t=e.month(),e=e.year()),this._validate(e,t,this.minDay,r.local.invalidMonth),"undefined"===typeof this.NEPALI_CALENDAR_DATA[e]?this.daysPerMonth[t-1]:this.NEPALI_CALENDAR_DATA[e][t]},weekDay:function(e,t,n){return 6!==this.dayOfWeek(e,t,n)},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);e=i.year(),t=i.month(),n=i.day();var a=r.instance(),o=0,s=t,l=e;this._createMissingCalendarData(e);var c=e-(s>9||9===s&&n>=this.NEPALI_CALENDAR_DATA[l][0]?56:57);for(9!==t&&(o=n,s--);9!==s;)s<=0&&(s=12,l--),o+=this.NEPALI_CALENDAR_DATA[l][s],s--;return 9===t?(o+=n-this.NEPALI_CALENDAR_DATA[l][0])<0&&(o+=a.daysInYear(c)):o+=this.NEPALI_CALENDAR_DATA[l][9]-this.NEPALI_CALENDAR_DATA[l][0],a.newDate(c,1,1).add(o,"d").toJD()},fromJD:function(e){var t=r.instance().fromJD(e),n=t.year(),i=t.dayOfYear(),a=n+56;this._createMissingCalendarData(a);for(var o=9,s=this.NEPALI_CALENDAR_DATA[a][0],l=this.NEPALI_CALENDAR_DATA[a][o]-s+1;i>l;)++o>12&&(o=1,a++),l+=this.NEPALI_CALENDAR_DATA[a][o];var c=this.NEPALI_CALENDAR_DATA[a][o]-(l-i);return this.newDate(a,o,c)},_createMissingCalendarData:function(e){var t=this.daysPerMonth.slice(0);t.unshift(17);for(var n=e-1;n0?474:473))%2820+474+38)%2816<682},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(-(r.dayOfWeek()+1)%7,"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInMonth:function(e,t){var n=this._validate(e,t,this.minDay,r.local.invalidMonth);return this.daysPerMonth[n.month()-1]+(12===n.month()&&this.leapYear(n.year())?1:0)},weekDay:function(e,t,n){return 5!==this.dayOfWeek(e,t,n)},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);e=i.year(),t=i.month(),n=i.day();var a=e-(e>=0?474:473),s=474+o(a,2820);return n+(t<=7?31*(t-1):30*(t-1)+6)+Math.floor((682*s-110)/2816)+365*(s-1)+1029983*Math.floor(a/2820)+this.jdEpoch-1},fromJD:function(e){var t=(e=Math.floor(e)+.5)-this.toJD(475,1,1),n=Math.floor(t/1029983),r=o(t,1029983),i=2820;if(1029982!==r){var a=Math.floor(r/366),s=o(r,366);i=Math.floor((2134*a+2816*s+2815)/1028522)+a+1}var l=i+2820*n+474;l=l<=0?l-1:l;var c=e-this.toJD(l,1,1)+1,u=c<=186?Math.ceil(c/31):Math.ceil((c-6)/30),f=e-this.toJD(l,u,1)+1;return this.newDate(l,u,f)}}),r.calendars.persian=a,r.calendars.jalali=a},31320:function(e,t,n){var r=n(63489),i=n(56131),a=r.instance();function o(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}o.prototype=new r.baseCalendar,i(o.prototype,{name:"Taiwan",jdEpoch:2419402.5,yearsOffset:1911,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Taiwan",epochs:["BROC","ROC"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],digits:null,dateFormat:"yyyy/mm/dd",firstDay:1,isRTL:!1}},leapYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return e=this._t2gYear(t.year()),a.leapYear(e)},weekOfYear:function(e,t,n){var i=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return e=this._t2gYear(i.year()),a.weekOfYear(e,i.month(),i.day())},daysInMonth:function(e,t){var n=this._validate(e,t,this.minDay,r.local.invalidMonth);return this.daysPerMonth[n.month()-1]+(2===n.month()&&this.leapYear(n.year())?1:0)},weekDay:function(e,t,n){return(this.dayOfWeek(e,t,n)||7)<6},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return e=this._t2gYear(i.year()),a.toJD(e,i.month(),i.day())},fromJD:function(e){var t=a.fromJD(e),n=this._g2tYear(t.year());return this.newDate(n,t.month(),t.day())},_t2gYear:function(e){return e+this.yearsOffset+(e>=-this.yearsOffset&&e<=-1?1:0)},_g2tYear:function(e){return e-this.yearsOffset-(e>=1&&e<=this.yearsOffset?1:0)}}),r.calendars.taiwan=o},51367:function(e,t,n){var r=n(63489),i=n(56131),a=r.instance();function o(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}o.prototype=new r.baseCalendar,i(o.prototype,{name:"Thai",jdEpoch:1523098.5,yearsOffset:543,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Thai",epochs:["BBE","BE"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],digits:null,dateFormat:"dd/mm/yyyy",firstDay:0,isRTL:!1}},leapYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return e=this._t2gYear(t.year()),a.leapYear(e)},weekOfYear:function(e,t,n){var i=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return e=this._t2gYear(i.year()),a.weekOfYear(e,i.month(),i.day())},daysInMonth:function(e,t){var n=this._validate(e,t,this.minDay,r.local.invalidMonth);return this.daysPerMonth[n.month()-1]+(2===n.month()&&this.leapYear(n.year())?1:0)},weekDay:function(e,t,n){return(this.dayOfWeek(e,t,n)||7)<6},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate);return e=this._t2gYear(i.year()),a.toJD(e,i.month(),i.day())},fromJD:function(e){var t=a.fromJD(e),n=this._g2tYear(t.year());return this.newDate(n,t.month(),t.day())},_t2gYear:function(e){return e-this.yearsOffset-(e>=1&&e<=this.yearsOffset?1:0)},_g2tYear:function(e){return e+this.yearsOffset+(e>=-this.yearsOffset&&e<=-1?1:0)}}),r.calendars.thai=o},21457:function(e,t,n){var r=n(63489),i=n(56131);function a(e){this.local=this.regionalOptions[e||""]||this.regionalOptions[""]}a.prototype=new r.baseCalendar,i(a.prototype,{name:"UmmAlQura",hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{"":{name:"Umm al-Qura",epochs:["BH","AH"],monthNames:["Al-Muharram","Safar","Rabi' al-awwal","Rabi' Al-Thani","Jumada Al-Awwal","Jumada Al-Thani","Rajab","Sha'aban","Ramadan","Shawwal","Dhu al-Qi'dah","Dhu al-Hijjah"],monthNamesShort:["Muh","Saf","Rab1","Rab2","Jum1","Jum2","Raj","Sha'","Ram","Shaw","DhuQ","DhuH"],dayNames:["Yawm al-Ahad","Yawm al-Ithnain","Yawm al-Thal\u0101th\u0101\u2019","Yawm al-Arba\u2018\u0101\u2019","Yawm al-Kham\u012bs","Yawm al-Jum\u2018a","Yawm al-Sabt"],dayNamesMin:["Ah","Ith","Th","Ar","Kh","Ju","Sa"],digits:null,dateFormat:"yyyy/mm/dd",firstDay:6,isRTL:!0}},leapYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,r.local.invalidYear);return 355===this.daysInYear(t.year())},weekOfYear:function(e,t,n){var r=this.newDate(e,t,n);return r.add(-r.dayOfWeek(),"d"),Math.floor((r.dayOfYear()-1)/7)+1},daysInYear:function(e){for(var t=0,n=1;n<=12;n++)t+=this.daysInMonth(e,n);return t},daysInMonth:function(e,t){for(var n=this._validate(e,t,this.minDay,r.local.invalidMonth).toJD()-24e5+.5,i=0,a=0;an)return o[i]-o[i-1];i++}return 30},weekDay:function(e,t,n){return 5!==this.dayOfWeek(e,t,n)},toJD:function(e,t,n){var i=this._validate(e,t,n,r.local.invalidDate),a=12*(i.year()-1)+i.month()-15292;return i.day()+o[a-1]-1+24e5-.5},fromJD:function(e){for(var t=e-24e5+.5,n=0,r=0;rt);r++)n++;var i=n+15292,a=Math.floor((i-1)/12),s=a+1,l=i-12*a,c=t-o[n-1]+1;return this.newDate(s,l,c)},isValid:function(e,t,n){var i=r.baseCalendar.prototype.isValid.apply(this,arguments);return i&&(i=(e=null!=e.year?e.year:e)>=1276&&e<=1500),i},_validate:function(e,t,n,i){var a=r.baseCalendar.prototype._validate.apply(this,arguments);if(a.year<1276||a.year>1500)throw i.replace(/\{0\}/,this.local.name);return a}}),r.calendars.ummalqura=a;var o=[20,50,79,109,138,168,197,227,256,286,315,345,374,404,433,463,492,522,551,581,611,641,670,700,729,759,788,818,847,877,906,936,965,995,1024,1054,1083,1113,1142,1172,1201,1231,1260,1290,1320,1350,1379,1409,1438,1468,1497,1527,1556,1586,1615,1645,1674,1704,1733,1763,1792,1822,1851,1881,1910,1940,1969,1999,2028,2058,2087,2117,2146,2176,2205,2235,2264,2294,2323,2353,2383,2413,2442,2472,2501,2531,2560,2590,2619,2649,2678,2708,2737,2767,2796,2826,2855,2885,2914,2944,2973,3003,3032,3062,3091,3121,3150,3180,3209,3239,3268,3298,3327,3357,3386,3416,3446,3476,3505,3535,3564,3594,3623,3653,3682,3712,3741,3771,3800,3830,3859,3889,3918,3948,3977,4007,4036,4066,4095,4125,4155,4185,4214,4244,4273,4303,4332,4362,4391,4421,4450,4480,4509,4539,4568,4598,4627,4657,4686,4716,4745,4775,4804,4834,4863,4893,4922,4952,4981,5011,5040,5070,5099,5129,5158,5188,5218,5248,5277,5307,5336,5366,5395,5425,5454,5484,5513,5543,5572,5602,5631,5661,5690,5720,5749,5779,5808,5838,5867,5897,5926,5956,5985,6015,6044,6074,6103,6133,6162,6192,6221,6251,6281,6311,6340,6370,6399,6429,6458,6488,6517,6547,6576,6606,6635,6665,6694,6724,6753,6783,6812,6842,6871,6901,6930,6960,6989,7019,7048,7078,7107,7137,7166,7196,7225,7255,7284,7314,7344,7374,7403,7433,7462,7492,7521,7551,7580,7610,7639,7669,7698,7728,7757,7787,7816,7846,7875,7905,7934,7964,7993,8023,8053,8083,8112,8142,8171,8201,8230,8260,8289,8319,8348,8378,8407,8437,8466,8496,8525,8555,8584,8614,8643,8673,8702,8732,8761,8791,8821,8850,8880,8909,8938,8968,8997,9027,9056,9086,9115,9145,9175,9205,9234,9264,9293,9322,9352,9381,9410,9440,9470,9499,9529,9559,9589,9618,9648,9677,9706,9736,9765,9794,9824,9853,9883,9913,9943,9972,10002,10032,10061,10090,10120,10149,10178,10208,10237,10267,10297,10326,10356,10386,10415,10445,10474,10504,10533,10562,10592,10621,10651,10680,10710,10740,10770,10799,10829,10858,10888,10917,10947,10976,11005,11035,11064,11094,11124,11153,11183,11213,11242,11272,11301,11331,11360,11389,11419,11448,11478,11507,11537,11567,11596,11626,11655,11685,11715,11744,11774,11803,11832,11862,11891,11921,11950,11980,12010,12039,12069,12099,12128,12158,12187,12216,12246,12275,12304,12334,12364,12393,12423,12453,12483,12512,12542,12571,12600,12630,12659,12688,12718,12747,12777,12807,12837,12866,12896,12926,12955,12984,13014,13043,13072,13102,13131,13161,13191,13220,13250,13280,13310,13339,13368,13398,13427,13456,13486,13515,13545,13574,13604,13634,13664,13693,13723,13752,13782,13811,13840,13870,13899,13929,13958,13988,14018,14047,14077,14107,14136,14166,14195,14224,14254,14283,14313,14342,14372,14401,14431,14461,14490,14520,14550,14579,14609,14638,14667,14697,14726,14756,14785,14815,14844,14874,14904,14933,14963,14993,15021,15051,15081,15110,15140,15169,15199,15228,15258,15287,15317,15347,15377,15406,15436,15465,15494,15524,15553,15582,15612,15641,15671,15701,15731,15760,15790,15820,15849,15878,15908,15937,15966,15996,16025,16055,16085,16114,16144,16174,16204,16233,16262,16292,16321,16350,16380,16409,16439,16468,16498,16528,16558,16587,16617,16646,16676,16705,16734,16764,16793,16823,16852,16882,16912,16941,16971,17001,17030,17060,17089,17118,17148,17177,17207,17236,17266,17295,17325,17355,17384,17414,17444,17473,17502,17532,17561,17591,17620,17650,17679,17709,17738,17768,17798,17827,17857,17886,17916,17945,17975,18004,18034,18063,18093,18122,18152,18181,18211,18241,18270,18300,18330,18359,18388,18418,18447,18476,18506,18535,18565,18595,18625,18654,18684,18714,18743,18772,18802,18831,18860,18890,18919,18949,18979,19008,19038,19068,19098,19127,19156,19186,19215,19244,19274,19303,19333,19362,19392,19422,19452,19481,19511,19540,19570,19599,19628,19658,19687,19717,19746,19776,19806,19836,19865,19895,19924,19954,19983,20012,20042,20071,20101,20130,20160,20190,20219,20249,20279,20308,20338,20367,20396,20426,20455,20485,20514,20544,20573,20603,20633,20662,20692,20721,20751,20780,20810,20839,20869,20898,20928,20957,20987,21016,21046,21076,21105,21135,21164,21194,21223,21253,21282,21312,21341,21371,21400,21430,21459,21489,21519,21548,21578,21607,21637,21666,21696,21725,21754,21784,21813,21843,21873,21902,21932,21962,21991,22021,22050,22080,22109,22138,22168,22197,22227,22256,22286,22316,22346,22375,22405,22434,22464,22493,22522,22552,22581,22611,22640,22670,22700,22730,22759,22789,22818,22848,22877,22906,22936,22965,22994,23024,23054,23083,23113,23143,23173,23202,23232,23261,23290,23320,23349,23379,23408,23438,23467,23497,23527,23556,23586,23616,23645,23674,23704,23733,23763,23792,23822,23851,23881,23910,23940,23970,23999,24029,24058,24088,24117,24147,24176,24206,24235,24265,24294,24324,24353,24383,24413,24442,24472,24501,24531,24560,24590,24619,24648,24678,24707,24737,24767,24796,24826,24856,24885,24915,24944,24974,25003,25032,25062,25091,25121,25150,25180,25210,25240,25269,25299,25328,25358,25387,25416,25446,25475,25505,25534,25564,25594,25624,25653,25683,25712,25742,25771,25800,25830,25859,25888,25918,25948,25977,26007,26037,26067,26096,26126,26155,26184,26214,26243,26272,26302,26332,26361,26391,26421,26451,26480,26510,26539,26568,26598,26627,26656,26686,26715,26745,26775,26805,26834,26864,26893,26923,26952,26982,27011,27041,27070,27099,27129,27159,27188,27218,27248,27277,27307,27336,27366,27395,27425,27454,27484,27513,27542,27572,27602,27631,27661,27691,27720,27750,27779,27809,27838,27868,27897,27926,27956,27985,28015,28045,28074,28104,28134,28163,28193,28222,28252,28281,28310,28340,28369,28399,28428,28458,28488,28517,28547,28577,28607,28636,28665,28695,28724,28754,28783,28813,28843,28872,28901,28931,28960,28990,29019,29049,29078,29108,29137,29167,29196,29226,29255,29285,29315,29345,29375,29404,29434,29463,29492,29522,29551,29580,29610,29640,29669,29699,29729,29759,29788,29818,29847,29876,29906,29935,29964,29994,30023,30053,30082,30112,30141,30171,30200,30230,30259,30289,30318,30348,30378,30408,30437,30467,30496,30526,30555,30585,30614,30644,30673,30703,30732,30762,30791,30821,30850,30880,30909,30939,30968,30998,31027,31057,31086,31116,31145,31175,31204,31234,31263,31293,31322,31352,31381,31411,31441,31471,31500,31530,31559,31589,31618,31648,31676,31706,31736,31766,31795,31825,31854,31884,31913,31943,31972,32002,32031,32061,32090,32120,32150,32180,32209,32239,32268,32298,32327,32357,32386,32416,32445,32475,32504,32534,32563,32593,32622,32652,32681,32711,32740,32770,32799,32829,32858,32888,32917,32947,32976,33006,33035,33065,33094,33124,33153,33183,33213,33243,33272,33302,33331,33361,33390,33420,33450,33479,33509,33539,33568,33598,33627,33657,33686,33716,33745,33775,33804,33834,33863,33893,33922,33952,33981,34011,34040,34069,34099,34128,34158,34187,34217,34247,34277,34306,34336,34365,34395,34424,34454,34483,34512,34542,34571,34601,34631,34660,34690,34719,34749,34778,34808,34837,34867,34896,34926,34955,34985,35015,35044,35074,35103,35133,35162,35192,35222,35251,35280,35310,35340,35370,35399,35429,35458,35488,35517,35547,35576,35605,35635,35665,35694,35723,35753,35782,35811,35841,35871,35901,35930,35960,35989,36019,36048,36078,36107,36136,36166,36195,36225,36254,36284,36314,36343,36373,36403,36433,36462,36492,36521,36551,36580,36610,36639,36669,36698,36728,36757,36786,36816,36845,36875,36904,36934,36963,36993,37022,37052,37081,37111,37141,37170,37200,37229,37259,37288,37318,37347,37377,37406,37436,37465,37495,37524,37554,37584,37613,37643,37672,37701,37731,37760,37790,37819,37849,37878,37908,37938,37967,37997,38027,38056,38085,38115,38144,38174,38203,38233,38262,38292,38322,38351,38381,38410,38440,38469,38499,38528,38558,38587,38617,38646,38676,38705,38735,38764,38794,38823,38853,38882,38912,38941,38971,39001,39030,39059,39089,39118,39148,39178,39208,39237,39267,39297,39326,39355,39385,39414,39444,39473,39503,39532,39562,39592,39621,39650,39680,39709,39739,39768,39798,39827,39857,39886,39916,39946,39975,40005,40035,40064,40094,40123,40153,40182,40212,40241,40271,40300,40330,40359,40389,40418,40448,40477,40507,40536,40566,40595,40625,40655,40685,40714,40744,40773,40803,40832,40862,40892,40921,40951,40980,41009,41039,41068,41098,41127,41157,41186,41216,41245,41275,41304,41334,41364,41393,41422,41452,41481,41511,41540,41570,41599,41629,41658,41688,41718,41748,41777,41807,41836,41865,41894,41924,41953,41983,42012,42042,42072,42102,42131,42161,42190,42220,42249,42279,42308,42337,42367,42397,42426,42456,42485,42515,42545,42574,42604,42633,42662,42692,42721,42751,42780,42810,42839,42869,42899,42929,42958,42988,43017,43046,43076,43105,43135,43164,43194,43223,43253,43283,43312,43342,43371,43401,43430,43460,43489,43519,43548,43578,43607,43637,43666,43696,43726,43755,43785,43814,43844,43873,43903,43932,43962,43991,44021,44050,44080,44109,44139,44169,44198,44228,44258,44287,44317,44346,44375,44405,44434,44464,44493,44523,44553,44582,44612,44641,44671,44700,44730,44759,44788,44818,44847,44877,44906,44936,44966,44996,45025,45055,45084,45114,45143,45172,45202,45231,45261,45290,45320,45350,45380,45409,45439,45468,45498,45527,45556,45586,45615,45644,45674,45704,45733,45763,45793,45823,45852,45882,45911,45940,45970,45999,46028,46058,46088,46117,46147,46177,46206,46236,46265,46295,46324,46354,46383,46413,46442,46472,46501,46531,46560,46590,46620,46649,46679,46708,46738,46767,46797,46826,46856,46885,46915,46944,46974,47003,47033,47063,47092,47122,47151,47181,47210,47240,47269,47298,47328,47357,47387,47417,47446,47476,47506,47535,47565,47594,47624,47653,47682,47712,47741,47771,47800,47830,47860,47890,47919,47949,47978,48008,48037,48066,48096,48125,48155,48184,48214,48244,48273,48303,48333,48362,48392,48421,48450,48480,48509,48538,48568,48598,48627,48657,48687,48717,48746,48776,48805,48834,48864,48893,48922,48952,48982,49011,49041,49071,49100,49130,49160,49189,49218,49248,49277,49306,49336,49365,49395,49425,49455,49484,49514,49543,49573,49602,49632,49661,49690,49720,49749,49779,49809,49838,49868,49898,49927,49957,49986,50016,50045,50075,50104,50133,50163,50192,50222,50252,50281,50311,50340,50370,50400,50429,50459,50488,50518,50547,50576,50606,50635,50665,50694,50724,50754,50784,50813,50843,50872,50902,50931,50960,50990,51019,51049,51078,51108,51138,51167,51197,51227,51256,51286,51315,51345,51374,51403,51433,51462,51492,51522,51552,51582,51611,51641,51670,51699,51729,51758,51787,51816,51846,51876,51906,51936,51965,51995,52025,52054,52083,52113,52142,52171,52200,52230,52260,52290,52319,52349,52379,52408,52438,52467,52497,52526,52555,52585,52614,52644,52673,52703,52733,52762,52792,52822,52851,52881,52910,52939,52969,52998,53028,53057,53087,53116,53146,53176,53205,53235,53264,53294,53324,53353,53383,53412,53441,53471,53500,53530,53559,53589,53619,53648,53678,53708,53737,53767,53796,53825,53855,53884,53913,53943,53973,54003,54032,54062,54092,54121,54151,54180,54209,54239,54268,54297,54327,54357,54387,54416,54446,54476,54505,54535,54564,54593,54623,54652,54681,54711,54741,54770,54800,54830,54859,54889,54919,54948,54977,55007,55036,55066,55095,55125,55154,55184,55213,55243,55273,55302,55332,55361,55391,55420,55450,55479,55508,55538,55567,55597,55627,55657,55686,55716,55745,55775,55804,55834,55863,55892,55922,55951,55981,56011,56040,56070,56100,56129,56159,56188,56218,56247,56276,56306,56335,56365,56394,56424,56454,56483,56513,56543,56572,56601,56631,56660,56690,56719,56749,56778,56808,56837,56867,56897,56926,56956,56985,57015,57044,57074,57103,57133,57162,57192,57221,57251,57280,57310,57340,57369,57399,57429,57458,57487,57517,57546,57576,57605,57634,57664,57694,57723,57753,57783,57813,57842,57871,57901,57930,57959,57989,58018,58048,58077,58107,58137,58167,58196,58226,58255,58285,58314,58343,58373,58402,58432,58461,58491,58521,58551,58580,58610,58639,58669,58698,58727,58757,58786,58816,58845,58875,58905,58934,58964,58994,59023,59053,59082,59111,59141,59170,59200,59229,59259,59288,59318,59348,59377,59407,59436,59466,59495,59525,59554,59584,59613,59643,59672,59702,59731,59761,59791,59820,59850,59879,59909,59939,59968,59997,60027,60056,60086,60115,60145,60174,60204,60234,60264,60293,60323,60352,60381,60411,60440,60469,60499,60528,60558,60588,60618,60648,60677,60707,60736,60765,60795,60824,60853,60883,60912,60942,60972,61002,61031,61061,61090,61120,61149,61179,61208,61237,61267,61296,61326,61356,61385,61415,61445,61474,61504,61533,61563,61592,61621,61651,61680,61710,61739,61769,61799,61828,61858,61888,61917,61947,61976,62006,62035,62064,62094,62123,62153,62182,62212,62242,62271,62301,62331,62360,62390,62419,62448,62478,62507,62537,62566,62596,62625,62655,62685,62715,62744,62774,62803,62832,62862,62891,62921,62950,62980,63009,63039,63069,63099,63128,63157,63187,63216,63246,63275,63305,63334,63363,63393,63423,63453,63482,63512,63541,63571,63600,63630,63659,63689,63718,63747,63777,63807,63836,63866,63895,63925,63955,63984,64014,64043,64073,64102,64131,64161,64190,64220,64249,64279,64309,64339,64368,64398,64427,64457,64486,64515,64545,64574,64603,64633,64663,64692,64722,64752,64782,64811,64841,64870,64899,64929,64958,64987,65017,65047,65076,65106,65136,65166,65195,65225,65254,65283,65313,65342,65371,65401,65431,65460,65490,65520,65549,65579,65608,65638,65667,65697,65726,65755,65785,65815,65844,65874,65903,65933,65963,65992,66022,66051,66081,66110,66140,66169,66199,66228,66258,66287,66317,66346,66376,66405,66435,66465,66494,66524,66553,66583,66612,66641,66671,66700,66730,66760,66789,66819,66849,66878,66908,66937,66967,66996,67025,67055,67084,67114,67143,67173,67203,67233,67262,67292,67321,67351,67380,67409,67439,67468,67497,67527,67557,67587,67617,67646,67676,67705,67735,67764,67793,67823,67852,67882,67911,67941,67971,68e3,68030,68060,68089,68119,68148,68177,68207,68236,68266,68295,68325,68354,68384,68414,68443,68473,68502,68532,68561,68591,68620,68650,68679,68708,68738,68768,68797,68827,68857,68886,68916,68946,68975,69004,69034,69063,69092,69122,69152,69181,69211,69240,69270,69300,69330,69359,69388,69418,69447,69476,69506,69535,69565,69595,69624,69654,69684,69713,69743,69772,69802,69831,69861,69890,69919,69949,69978,70008,70038,70067,70097,70126,70156,70186,70215,70245,70274,70303,70333,70362,70392,70421,70451,70481,70510,70540,70570,70599,70629,70658,70687,70717,70746,70776,70805,70835,70864,70894,70924,70954,70983,71013,71042,71071,71101,71130,71159,71189,71218,71248,71278,71308,71337,71367,71397,71426,71455,71485,71514,71543,71573,71602,71632,71662,71691,71721,71751,71781,71810,71839,71869,71898,71927,71957,71986,72016,72046,72075,72105,72135,72164,72194,72223,72253,72282,72311,72341,72370,72400,72429,72459,72489,72518,72548,72577,72607,72637,72666,72695,72725,72754,72784,72813,72843,72872,72902,72931,72961,72991,73020,73050,73080,73109,73139,73168,73197,73227,73256,73286,73315,73345,73375,73404,73434,73464,73493,73523,73552,73581,73611,73640,73669,73699,73729,73758,73788,73818,73848,73877,73907,73936,73965,73995,74024,74053,74083,74113,74142,74172,74202,74231,74261,74291,74320,74349,74379,74408,74437,74467,74497,74526,74556,74586,74615,74645,74675,74704,74733,74763,74792,74822,74851,74881,74910,74940,74969,74999,75029,75058,75088,75117,75147,75176,75206,75235,75264,75294,75323,75353,75383,75412,75442,75472,75501,75531,75560,75590,75619,75648,75678,75707,75737,75766,75796,75826,75856,75885,75915,75944,75974,76003,76032,76062,76091,76121,76150,76180,76210,76239,76269,76299,76328,76358,76387,76416,76446,76475,76505,76534,76564,76593,76623,76653,76682,76712,76741,76771,76801,76830,76859,76889,76918,76948,76977,77007,77036,77066,77096,77125,77155,77185,77214,77243,77273,77302,77332,77361,77390,77420,77450,77479,77509,77539,77569,77598,77627,77657,77686,77715,77745,77774,77804,77833,77863,77893,77923,77952,77982,78011,78041,78070,78099,78129,78158,78188,78217,78247,78277,78307,78336,78366,78395,78425,78454,78483,78513,78542,78572,78601,78631,78661,78690,78720,78750,78779,78808,78838,78867,78897,78926,78956,78985,79015,79044,79074,79104,79133,79163,79192,79222,79251,79281,79310,79340,79369,79399,79428,79458,79487,79517,79546,79576,79606,79635,79665,79695,79724,79753,79783,79812,79841,79871,79900,79930,79960,79990]},63489:function(e,t,n){var r=n(56131);function i(){this.regionalOptions=[],this.regionalOptions[""]={invalidCalendar:"Calendar {0} not found",invalidDate:"Invalid {0} date",invalidMonth:"Invalid {0} month",invalidYear:"Invalid {0} year",differentCalendars:"Cannot mix {0} and {1} dates"},this.local=this.regionalOptions[""],this.calendars={},this._localCals={}}function a(e,t,n,r){if(this._calendar=e,this._year=t,this._month=n,this._day=r,0===this._calendar._validateLevel&&!this._calendar.isValid(this._year,this._month,this._day))throw(c.local.invalidDate||c.regionalOptions[""].invalidDate).replace(/\{0\}/,this._calendar.local.name)}function o(e,t){return"000000".substring(0,t-(e=""+e).length)+e}function s(){this.shortYearCutoff="+10"}function l(e){this.local=this.regionalOptions[e]||this.regionalOptions[""]}r(i.prototype,{instance:function(e,t){e=(e||"gregorian").toLowerCase(),t=t||"";var n=this._localCals[e+"-"+t];if(!n&&this.calendars[e]&&(n=new this.calendars[e](t),this._localCals[e+"-"+t]=n),!n)throw(this.local.invalidCalendar||this.regionalOptions[""].invalidCalendar).replace(/\{0\}/,e);return n},newDate:function(e,t,n,r,i){return(r=(null!=e&&e.year?e.calendar():"string"===typeof r?this.instance(r,i):r)||this.instance()).newDate(e,t,n)},substituteDigits:function(e){return function(t){return(t+"").replace(/[0-9]/g,(function(t){return e[t]}))}},substituteChineseDigits:function(e,t){return function(n){for(var r="",i=0;n>0;){var a=n%10;r=(0===a?"":e[a]+t[i])+r,i++,n=Math.floor(n/10)}return 0===r.indexOf(e[1]+t[1])&&(r=r.substr(1)),r||e[0]}}}),r(a.prototype,{newDate:function(e,t,n){return this._calendar.newDate(null==e?this:e,t,n)},year:function(e){return 0===arguments.length?this._year:this.set(e,"y")},month:function(e){return 0===arguments.length?this._month:this.set(e,"m")},day:function(e){return 0===arguments.length?this._day:this.set(e,"d")},date:function(e,t,n){if(!this._calendar.isValid(e,t,n))throw(c.local.invalidDate||c.regionalOptions[""].invalidDate).replace(/\{0\}/,this._calendar.local.name);return this._year=e,this._month=t,this._day=n,this},leapYear:function(){return this._calendar.leapYear(this)},epoch:function(){return this._calendar.epoch(this)},formatYear:function(){return this._calendar.formatYear(this)},monthOfYear:function(){return this._calendar.monthOfYear(this)},weekOfYear:function(){return this._calendar.weekOfYear(this)},daysInYear:function(){return this._calendar.daysInYear(this)},dayOfYear:function(){return this._calendar.dayOfYear(this)},daysInMonth:function(){return this._calendar.daysInMonth(this)},dayOfWeek:function(){return this._calendar.dayOfWeek(this)},weekDay:function(){return this._calendar.weekDay(this)},extraInfo:function(){return this._calendar.extraInfo(this)},add:function(e,t){return this._calendar.add(this,e,t)},set:function(e,t){return this._calendar.set(this,e,t)},compareTo:function(e){if(this._calendar.name!==e._calendar.name)throw(c.local.differentCalendars||c.regionalOptions[""].differentCalendars).replace(/\{0\}/,this._calendar.local.name).replace(/\{1\}/,e._calendar.local.name);var t=this._year!==e._year?this._year-e._year:this._month!==e._month?this.monthOfYear()-e.monthOfYear():this._day-e._day;return 0===t?0:t<0?-1:1},calendar:function(){return this._calendar},toJD:function(){return this._calendar.toJD(this)},fromJD:function(e){return this._calendar.fromJD(e)},toJSDate:function(){return this._calendar.toJSDate(this)},fromJSDate:function(e){return this._calendar.fromJSDate(e)},toString:function(){return(this.year()<0?"-":"")+o(Math.abs(this.year()),4)+"-"+o(this.month(),2)+"-"+o(this.day(),2)}}),r(s.prototype,{_validateLevel:0,newDate:function(e,t,n){return null==e?this.today():(e.year&&(this._validate(e,t,n,c.local.invalidDate||c.regionalOptions[""].invalidDate),n=e.day(),t=e.month(),e=e.year()),new a(this,e,t,n))},today:function(){return this.fromJSDate(new Date)},epoch:function(e){return this._validate(e,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear).year()<0?this.local.epochs[0]:this.local.epochs[1]},formatYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear);return(t.year()<0?"-":"")+o(Math.abs(t.year()),4)},monthsInYear:function(e){return this._validate(e,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear),12},monthOfYear:function(e,t){var n=this._validate(e,t,this.minDay,c.local.invalidMonth||c.regionalOptions[""].invalidMonth);return(n.month()+this.monthsInYear(n)-this.firstMonth)%this.monthsInYear(n)+this.minMonth},fromMonthOfYear:function(e,t){var n=(t+this.firstMonth-2*this.minMonth)%this.monthsInYear(e)+this.minMonth;return this._validate(e,n,this.minDay,c.local.invalidMonth||c.regionalOptions[""].invalidMonth),n},daysInYear:function(e){var t=this._validate(e,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[""].invalidYear);return this.leapYear(t)?366:365},dayOfYear:function(e,t,n){var r=this._validate(e,t,n,c.local.invalidDate||c.regionalOptions[""].invalidDate);return r.toJD()-this.newDate(r.year(),this.fromMonthOfYear(r.year(),this.minMonth),this.minDay).toJD()+1},daysInWeek:function(){return 7},dayOfWeek:function(e,t,n){var r=this._validate(e,t,n,c.local.invalidDate||c.regionalOptions[""].invalidDate);return(Math.floor(this.toJD(r))+2)%this.daysInWeek()},extraInfo:function(e,t,n){return this._validate(e,t,n,c.local.invalidDate||c.regionalOptions[""].invalidDate),{}},add:function(e,t,n){return this._validate(e,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[""].invalidDate),this._correctAdd(e,this._add(e,t,n),t,n)},_add:function(e,t,n){if(this._validateLevel++,"d"===n||"w"===n){var r=e.toJD()+t*("w"===n?this.daysInWeek():1),i=e.calendar().fromJD(r);return this._validateLevel--,[i.year(),i.month(),i.day()]}try{var a=e.year()+("y"===n?t:0),o=e.monthOfYear()+("m"===n?t:0);i=e.day(),"y"===n?(e.month()!==this.fromMonthOfYear(a,o)&&(o=this.newDate(a,e.month(),this.minDay).monthOfYear()),o=Math.min(o,this.monthsInYear(a)),i=Math.min(i,this.daysInMonth(a,this.fromMonthOfYear(a,o)))):"m"===n&&(function(e){for(;ot-1+e.minMonth;)a++,o-=t,t=e.monthsInYear(a)}(this),i=Math.min(i,this.daysInMonth(a,this.fromMonthOfYear(a,o))));var s=[a,this.fromMonthOfYear(a,o),i];return this._validateLevel--,s}catch(l){throw this._validateLevel--,l}},_correctAdd:function(e,t,n,r){if(!this.hasYearZero&&("y"===r||"m"===r)&&(0===t[0]||e.year()>0!==t[0]>0)){var i={y:[1,1,"y"],m:[1,this.monthsInYear(-1),"m"],w:[this.daysInWeek(),this.daysInYear(-1),"d"],d:[1,this.daysInYear(-1),"d"]}[r],a=n<0?-1:1;t=this._add(e,n*i[0]+a*i[1],i[2])}return e.date(t[0],t[1],t[2])},set:function(e,t,n){this._validate(e,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[""].invalidDate);var r="y"===n?t:e.year(),i="m"===n?t:e.month(),a="d"===n?t:e.day();return"y"!==n&&"m"!==n||(a=Math.min(a,this.daysInMonth(r,i))),e.date(r,i,a)},isValid:function(e,t,n){this._validateLevel++;var r=this.hasYearZero||0!==e;if(r){var i=this.newDate(e,t,this.minDay);r=t>=this.minMonth&&t-this.minMonth=this.minDay&&n-this.minDay13.5?13:1),c=i-(l>2.5?4716:4715);return c<=0&&c--,this.newDate(c,l,s)},toJSDate:function(e,t,n){var r=this._validate(e,t,n,c.local.invalidDate||c.regionalOptions[""].invalidDate),i=new Date(r.year(),r.month()-1,r.day());return i.setHours(0),i.setMinutes(0),i.setSeconds(0),i.setMilliseconds(0),i.setHours(i.getHours()>12?i.getHours()+2:0),i},fromJSDate:function(e){return this.newDate(e.getFullYear(),e.getMonth()+1,e.getDate())}});var c=e.exports=new i;c.cdate=a,c.baseCalendar=s,c.calendars.gregorian=l},94338:function(e,t,n){var r=n(56131),i=n(63489);r(i.regionalOptions[""],{invalidArguments:"Invalid arguments",invalidFormat:"Cannot format a date from another calendar",missingNumberAt:"Missing number at position {0}",unknownNameAt:"Unknown name at position {0}",unexpectedLiteralAt:"Unexpected literal at position {0}",unexpectedText:"Additional text found at end"}),i.local=i.regionalOptions[""],r(i.cdate.prototype,{formatDate:function(e,t){return"string"!==typeof e&&(t=e,e=""),this._calendar.formatDate(e||"",this,t)}}),r(i.baseCalendar.prototype,{UNIX_EPOCH:i.instance().newDate(1970,1,1).toJD(),SECS_PER_DAY:86400,TICKS_EPOCH:i.instance().jdEpoch,TICKS_PER_DAY:864e9,ATOM:"yyyy-mm-dd",COOKIE:"D, dd M yyyy",FULL:"DD, MM d, yyyy",ISO_8601:"yyyy-mm-dd",JULIAN:"J",RFC_822:"D, d M yy",RFC_850:"DD, dd-M-yy",RFC_1036:"D, d M yy",RFC_1123:"D, d M yyyy",RFC_2822:"D, d M yyyy",RSS:"D, d M yy",TICKS:"!",TIMESTAMP:"@",W3C:"yyyy-mm-dd",formatDate:function(e,t,n){if("string"!==typeof e&&(n=t,t=e,e=""),!t)return"";if(t.calendar()!==this)throw i.local.invalidFormat||i.regionalOptions[""].invalidFormat;e=e||this.local.dateFormat;for(var r=(n=n||{}).dayNamesShort||this.local.dayNamesShort,a=n.dayNames||this.local.dayNames,o=n.monthNumbers||this.local.monthNumbers,s=n.monthNamesShort||this.local.monthNamesShort,l=n.monthNames||this.local.monthNames,c=(n.calculateWeek||this.local.calculateWeek,function(t,n){for(var r=1;b+r1}),u=function(e,t,n,r){var i=""+t;if(c(e,r))for(;i.length1},b=function(e,n){var r=y(e,n),a=[2,3,r?4:2,r?4:2,10,11,20]["oyYJ@!".indexOf(e)+1],o=new RegExp("^-?\\d{1,"+a+"}"),s=t.substring(T).match(o);if(!s)throw(i.local.missingNumberAt||i.regionalOptions[""].missingNumberAt).replace(/\{0\}/,T);return T+=s[0].length,parseInt(s[0],10)},x=this,w=function(){if("function"===typeof l){y("m");var e=l.call(x,t.substring(T));return T+=e.length,e}return b("m")},_=function(e,n,r,a){for(var o=y(e,a)?r:n,s=0;s-1){h=1,p=v;for(var C=this.daysInMonth(d,h);p>C;C=this.daysInMonth(d,h))h++,p-=C}return f>-1?this.fromJD(f):this.newDate(d,h,p)},determineDate:function(e,t,n,r,i){n&&"object"!==typeof n&&(i=r,r=n,n=null),"string"!==typeof r&&(i=r,r="");var a=this;return t=t?t.newDate():null,e=null==e?t:"string"===typeof e?function(e){try{return a.parseDate(r,e,i)}catch(l){}for(var t=((e=e.toLowerCase()).match(/^c/)&&n?n.newDate():null)||a.today(),o=/([+-]?[0-9]+)\s*(d|w|m|y)?/g,s=o.exec(e);s;)t.add(parseInt(s[1],10),s[2]||"d"),s=o.exec(e);return t}(e):"number"===typeof e?isNaN(e)||e===1/0||e===-1/0?t:a.today().add(e,"d"):a.newDate(e)}})},69862:function(){},40964:function(){},72077:function(e,t,n){"use strict";var r=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],i="undefined"===typeof globalThis?n.g:globalThis;e.exports=function(){for(var e=[],t=0;t>8&15|t>>4&240,t>>4&15|240&t,(15&t)<<4|15&t,1):8===n?k(t>>24&255,t>>16&255,t>>8&255,(255&t)/255):4===n?k(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|240&t,((15&t)<<4|15&t)/255):null):(t=d.exec(e))?new T(t[1],t[2],t[3],1):(t=h.exec(e))?new T(255*t[1]/100,255*t[2]/100,255*t[3]/100,1):(t=p.exec(e))?k(t[1],t[2],t[3],t[4]):(t=v.exec(e))?k(255*t[1]/100,255*t[2]/100,255*t[3]/100,t[4]):(t=m.exec(e))?P(t[1],t[2]/100,t[3]/100,1):(t=g.exec(e))?P(t[1],t[2]/100,t[3]/100,t[4]):y.hasOwnProperty(e)?_(y[e]):"transparent"===e?new T(NaN,NaN,NaN,0):null}function _(e){return new T(e>>16&255,e>>8&255,255&e,1)}function k(e,t,n,r){return r<=0&&(e=t=n=NaN),new T(e,t,n,r)}function S(e,t,n,r){return 1===arguments.length?((i=e)instanceof a||(i=w(i)),i?new T((i=i.rgb()).r,i.g,i.b,i.opacity):new T):new T(e,t,n,null==r?1:r);var i}function T(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}function A(){return"#".concat(O(this.r)).concat(O(this.g)).concat(O(this.b))}function E(){var e=C(this.opacity);return"".concat(1===e?"rgb(":"rgba(").concat(M(this.r),", ").concat(M(this.g),", ").concat(M(this.b)).concat(1===e?")":", ".concat(e,")"))}function C(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function M(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function O(e){return((e=M(e))<16?"0":"")+e.toString(16)}function P(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new I(e,t,n,r)}function L(e){if(e instanceof I)return new I(e.h,e.s,e.l,e.opacity);if(e instanceof a||(e=w(e)),!e)return new I;if(e instanceof I)return e;var t=(e=e.rgb()).r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),o=Math.max(t,n,r),s=NaN,l=o-i,c=(o+i)/2;return l?(s=t===o?(n-r)/l+6*(n0&&c<1?0:s,new I(s,l,c,e.opacity)}function I(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}function R(e){return(e=(e||0)%360)<0?e+360:e}function D(e){return Math.max(0,Math.min(1,e||0))}function F(e,t,n){return 255*(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)}function N(e,t,n,r,i){var a=e*e,o=a*e;return((1-3*e+3*a-o)*t+(4-6*a+3*o)*n+(1+3*e+3*a-3*o)*r+o*i)/6}r(a,w,{copy:function(e){return Object.assign(new this.constructor,this,e)},displayable:function(){return this.rgb().displayable()},hex:b,formatHex:b,formatHex8:function(){return this.rgb().formatHex8()},formatHsl:function(){return L(this).formatHsl()},formatRgb:x,toString:x}),r(T,S,i(a,{brighter:function(e){return e=null==e?s:Math.pow(s,e),new T(this.r*e,this.g*e,this.b*e,this.opacity)},darker:function(e){return e=null==e?o:Math.pow(o,e),new T(this.r*e,this.g*e,this.b*e,this.opacity)},rgb:function(){return this},clamp:function(){return new T(M(this.r),M(this.g),M(this.b),C(this.opacity))},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:A,formatHex:A,formatHex8:function(){return"#".concat(O(this.r)).concat(O(this.g)).concat(O(this.b)).concat(O(255*(isNaN(this.opacity)?1:this.opacity)))},formatRgb:E,toString:E})),r(I,(function(e,t,n,r){return 1===arguments.length?L(e):new I(e,t,n,null==r?1:r)}),i(a,{brighter:function(e){return e=null==e?s:Math.pow(s,e),new I(this.h,this.s,this.l*e,this.opacity)},darker:function(e){return e=null==e?o:Math.pow(o,e),new I(this.h,this.s,this.l*e,this.opacity)},rgb:function(){var e=this.h%360+360*(this.h<0),t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,i=2*n-r;return new T(F(e>=240?e-240:e+120,i,r),F(e,i,r),F(e<120?e+240:e-120,i,r),this.opacity)},clamp:function(){return new I(R(this.h),D(this.s),D(this.l),C(this.opacity))},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var e=C(this.opacity);return"".concat(1===e?"hsl(":"hsla(").concat(R(this.h),", ").concat(100*D(this.s),"%, ").concat(100*D(this.l),"%").concat(1===e?")":", ".concat(e,")"))}}));var z=function(e){return function(){return e}};function j(e,t){return function(n){return e+n*t}}function B(e){return 1===(e=+e)?U:function(t,n){return n-t?function(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}(t,n,e):z(isNaN(t)?n:t)}}function U(e,t){var n=t-e;return n?j(e,n):z(isNaN(e)?t:e)}var H=function e(t){var n=B(t);function r(e,t){var r=n((e=S(e)).r,(t=S(t)).r),i=n(e.g,t.g),a=n(e.b,t.b),o=U(e.opacity,t.opacity);return function(t){return e.r=r(t),e.g=i(t),e.b=a(t),e.opacity=o(t),e+""}}return r.gamma=e,r}(1);function $(e){return function(t){var n,r,i=t.length,a=new Array(i),o=new Array(i),s=new Array(i);for(n=0;n=1?(n=1,t-1):Math.floor(n*t),i=e[r],a=e[r+1],o=r>0?e[r-1]:2*i-a,s=ra&&(i=t.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(n=n[0])===(r=r[0])?s[o]?s[o]+=r:s[++o]=r:(s[++o]=null,l.push({i:o,x:q(n,r)})),a=K.lastIndex;return a1)for(var n=1;n= 0x80 (not a basic code point)","invalid-input":"Invalid input"},f=Math.floor,d=String.fromCharCode;function h(e){throw new RangeError(u[e])}function p(e,t){var n=e.split("@"),r="";n.length>1&&(r=n[0]+"@",e=n[1]);var i=function(e,t){for(var n=[],r=e.length;r--;)n[r]=t(e[r]);return n}((e=e.replace(c,".")).split("."),t).join(".");return r+i}function v(e){for(var t=[],n=0,r=e.length;n=55296&&i<=56319&&n>1,e+=f(e/t);e>455;r+=o)e=f(e/35);return f(r+36*e/(e+38))},b=function(e){var t,n=[],r=e.length,i=0,s=128,l=72,c=e.lastIndexOf("-");c<0&&(c=0);for(var u=0;u=128&&h("not-basic"),n.push(e.charCodeAt(u));for(var d=c>0?c+1:0;d=r&&h("invalid-input");var g=(t=e.charCodeAt(d++))>=48&&t<58?t-48+26:t>=65&&t<91?t-65:t>=97&&t<123?t-97:o;g>=o&&h("invalid-input"),g>f((a-i)/v)&&h("overflow"),i+=g*v;var b=m<=l?1:m>=l+26?26:m-l;if(gf(a/x)&&h("overflow"),v*=x}var w=n.length+1;l=y(i-p,w,0==p),f(i/w)>a-s&&h("overflow"),s+=f(i/w),i%=w,n.splice(i++,0,s)}return String.fromCodePoint.apply(String,n)},x=function(e){var t,n=[],i=(e=v(e)).length,s=128,l=0,c=72,u=(0,r.Z)(e);try{for(u.s();!(t=u.n()).done;){var p=t.value;p<128&&n.push(d(p))}}catch(I){u.e(I)}finally{u.f()}var m=n.length,b=m;for(m&&n.push("-");b=s&&kf((a-l)/S)&&h("overflow"),l+=(w-s)*S,s=w;var T,A=(0,r.Z)(e);try{for(A.s();!(T=A.n()).done;){var E=T.value;if(Ea&&h("overflow"),E===s){for(var C=l,M=o;;M+=o){var O=M<=c?1:M>=c+26?26:M-c;if(C0&&this.handleMarkers(_);var A=this.editor.$options;c.editorOptions.forEach((function(t){A.hasOwnProperty(t)?e.editor.setOption(t,e.props[t]):e.props[t]&&console.warn("ReactAce: editor option ".concat(t," was activated but not found. Did you need to import a related tool or did you possibly mispell the option?"))})),this.handleOptions(this.props),Array.isArray(x)&&x.forEach((function(t){"string"===typeof t.exec?e.editor.commands.bindKey(t.bindKey,t.exec):e.editor.commands.addCommand(t)})),y&&this.editor.setKeyboardHandler("ace/keyboard/"+y),n&&(this.refEditor.className+=" "+n),b&&b(this.editor),this.editor.resize(),o&&this.editor.focus()},t.prototype.componentDidUpdate=function(e){for(var t=e,n=this.props,r=0;r0&&e.handleMarkers(w,t);for(r=0;r=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}function T(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function A(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!==typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,i,a=[],o=!0,s=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);o=!0);}catch(l){s=!0,i=l}finally{try{o||null==n.return||n.return()}finally{if(s)throw i}}return a}(e,t)||function(e,t){if(!e)return;if("string"===typeof e)return E(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return E(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function E(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n1&&void 0!==arguments[1]?arguments[1]:"none")},j=function(){return!("undefined"===typeof window||!window.navigator&&!navigator)&&(window.navigator||navigator)},B=function(e){var t=j();return t&&t.platform&&(-1!==t.platform.indexOf(e)||"MacIntel"===t.platform&&t.maxTouchPoints>1&&!window.MSStream)},U=function(e,t,n,r){return function(e){for(var t=1;t1)&&!window.MSStream},Te=function(){return B("iPad")},Ae=function(){return B("iPhone")},Ee=function(){return B("iPod")},Ce=function(e){return z(e)};function Me(e){var t=e||m,n=t.device,r=t.browser,i=t.os,a=t.engine,o=t.ua;return{isSmartTV:W(n),isConsole:Z(n),isWearable:G(n),isEmbedded:Y(n),isMobileSafari:de(r)||Te(),isChromium:le(r),isMobile:V(n)||Te(),isMobileOnly:H(n),isTablet:$(n)||Te(),isBrowser:q(n),isDesktop:q(n),isAndroid:Q(i),isWinPhone:ne(i),isIOS:re(i)||Te(),isChrome:oe(r),isFirefox:se(r),isSafari:fe(r),isOpera:he(r),isIE:pe(r),osVersion:ie(i),osName:ae(i),fullBrowserVersion:ge(r),browserVersion:ye(r),browserName:be(r),mobileVendor:K(n),mobileModel:X(n),engineName:xe(a),engineVersion:we(a),getUA:Ce(o),isEdge:ce(r)||ke(o),isYandex:ue(r),deviceType:J(n),isIOS13:Se(),isIPad13:Te(),isIPhone13:Ae(),isIPod13:Ee(),isElectron:_e(),isEdgeChromium:ke(o),isLegacyEdge:ce(r)&&!ke(o),isWindows:ee(i),isMacOs:te(i),isMIUI:ve(r),isSamsungBrowser:me(r)}}var Oe=W(u),Pe=Z(u),Le=G(u),Ie=Y(u),Re=de(l)||Te(),De=le(l),Fe=V(u)||Te(),Ne=H(u),ze=$(u)||Te(),je=q(u),Be=q(u),Ue=Q(d),He=ne(d),$e=re(d)||Te(),Ve=oe(l),We=se(l),qe=fe(l),Ge=he(l),Ze=pe(l),Ye=ie(d),Ke=ae(d),Xe=ge(l),Je=ye(l),Qe=be(l),et=K(u),tt=X(u),nt=xe(f),rt=we(f),it=Ce(h),at=ce(l)||ke(h),ot=ue(l),st=J(u),lt=Se(),ct=Te(),ut=Ae(),ft=Ee(),dt=_e(),ht=ke(h),pt=ce(l)&&!ke(h),vt=ee(d),mt=te(d),gt=ve(l),yt=me(l);function bt(e){var t=e||window.navigator.userAgent;return v(t)}t.i7=Ve,t.mJ=De,t.kD=ht,t.vU=We,t.tq=Fe},34463:function(e,t,n){"use strict";var r=n(72791),i=n(45296);function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n