perspective-python 3.0.0rc1__cp39-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- perspective/__init__.py +78 -0
- perspective/extension/finos-perspective-nbextension.json +5 -0
- perspective/handlers/__init__.py +26 -0
- perspective/handlers/aiohttp.py +54 -0
- perspective/handlers/starlette.py +51 -0
- perspective/handlers/tornado.py +61 -0
- perspective/perspective.pyd +0 -0
- perspective/templates/exported_widget.html.jinja +35 -0
- perspective/tests/__init__.py +11 -0
- perspective/tests/conftest.py +268 -0
- perspective/tests/core/__init__.py +11 -0
- perspective/tests/core/test_async.py +436 -0
- perspective/tests/core/test_threadpool.py +48 -0
- perspective/tests/server/__init__.py +11 -0
- perspective/tests/server/test_server.py +1062 -0
- perspective/tests/server/test_session.py +55 -0
- perspective/tests/single_threaded/test_single_threaded.py +61 -0
- perspective/tests/table/__init__.py +11 -0
- perspective/tests/table/arrow/date32.arrow +0 -0
- perspective/tests/table/arrow/date64.arrow +0 -0
- perspective/tests/table/arrow/dict.arrow +0 -0
- perspective/tests/table/arrow/dict_update.arrow +0 -0
- perspective/tests/table/arrow/int_float_str.arrow +0 -0
- perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
- perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
- perspective/tests/table/object_sequence.py +402 -0
- perspective/tests/table/test_delete.py +124 -0
- perspective/tests/table/test_exception.py +53 -0
- perspective/tests/table/test_leaks.py +54 -0
- perspective/tests/table/test_ports.py +178 -0
- perspective/tests/table/test_remove.py +102 -0
- perspective/tests/table/test_table.py +610 -0
- perspective/tests/table/test_table_arrow.py +452 -0
- perspective/tests/table/test_table_datetime.py +2409 -0
- perspective/tests/table/test_table_infer.py +201 -0
- perspective/tests/table/test_table_limit.py +43 -0
- perspective/tests/table/test_table_numpy.py +1022 -0
- perspective/tests/table/test_table_pandas.py +1018 -0
- perspective/tests/table/test_to_arrow.py +414 -0
- perspective/tests/table/test_to_arrow_lz4.py +33 -0
- perspective/tests/table/test_to_format.py +1024 -0
- perspective/tests/table/test_update.py +545 -0
- perspective/tests/table/test_update_arrow.py +980 -0
- perspective/tests/table/test_update_numpy.py +252 -0
- perspective/tests/table/test_update_pandas.py +211 -0
- perspective/tests/table/test_view.py +2235 -0
- perspective/tests/table/test_view_expression.py +1940 -0
- perspective/tests/viewer/__init__.py +11 -0
- perspective/tests/viewer/test_validate.py +70 -0
- perspective/tests/viewer/test_viewer.py +245 -0
- perspective/tests/widget/__init__.py +11 -0
- perspective/tests/widget/test_widget.py +278 -0
- perspective/tests/widget/test_widget_pandas.py +453 -0
- perspective/viewer/__init__.py +15 -0
- perspective/viewer/validate.py +22 -0
- perspective/viewer/viewer.py +331 -0
- perspective/viewer/viewer_traitlets.py +101 -0
- perspective/widget/__init__.py +16 -0
- perspective/widget/widget.py +269 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/install.json +5 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/package.json +81 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.6f17b87bb4eb1e656365.js +18 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.6f17b87bb4eb1e656365.js.LICENSE.txt +59 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/905.d3bbc3d5954582d507bb.js +1 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.7044010cbbf2a7208035.js +1 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/style.js +4 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/third-party-licenses.json +16 -0
- perspective_python-3.0.0rc1.dist-info/METADATA +13 -0
- perspective_python-3.0.0rc1.dist-info/RECORD +70 -0
- perspective_python-3.0.0rc1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
ColorBrewer colors for chroma.js
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The
|
|
5
|
+
Pennsylvania State University.
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
Unless required by applicable law or agreed to in writing, software distributed
|
|
13
|
+
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
14
|
+
CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
15
|
+
specific language governing permissions and limitations under the License.
|
|
16
|
+
|
|
17
|
+
@preserve
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @license
|
|
22
|
+
*
|
|
23
|
+
* chroma.js - JavaScript library for color conversions
|
|
24
|
+
*
|
|
25
|
+
* Copyright (c) 2011-2017, Gregor Aisch
|
|
26
|
+
* All rights reserved.
|
|
27
|
+
*
|
|
28
|
+
* Redistribution and use in source and binary forms, with or without
|
|
29
|
+
* modification, are permitted provided that the following conditions are met:
|
|
30
|
+
*
|
|
31
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
32
|
+
* list of conditions and the following disclaimer.
|
|
33
|
+
*
|
|
34
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
35
|
+
* this list of conditions and the following disclaimer in the documentation
|
|
36
|
+
* and/or other materials provided with the distribution.
|
|
37
|
+
*
|
|
38
|
+
* 3. The name Gregor Aisch may not be used to endorse or promote products
|
|
39
|
+
* derived from this software without specific prior written permission.
|
|
40
|
+
*
|
|
41
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
42
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
43
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
44
|
+
* DISCLAIMED. IN NO EVENT SHALL GREGOR AISCH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
45
|
+
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
46
|
+
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
47
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
48
|
+
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
49
|
+
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
50
|
+
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
51
|
+
*
|
|
52
|
+
*/
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @license
|
|
56
|
+
* Latitude/longitude spherical geodesy formulae taken from
|
|
57
|
+
* http://www.movable-type.co.uk/scripts/latlong.html
|
|
58
|
+
* Licensed under CC-BY-3.0.
|
|
59
|
+
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_finos_perspective_jupyterlab=self.webpackChunk_finos_perspective_jupyterlab||[]).push([[905],{2966:(e,o,r)=>{r.d(o,{A:()=>Ne});var c=r(3183),a=r.n(c),i=r(5024),n=r.n(i),t=r(2059),l=r.n(t),d=new URL(r(7548),r.b),g=new URL(r(2583),r.b),s=new URL(r(7988),r.b),f=new URL(r(7156),r.b),b=new URL(r(4792),r.b),p=new URL(r(859),r.b),I=new URL(r(1643),r.b),m=new URL(r(2286),r.b),u=new URL(r(6662),r.b),M=new URL(r(829),r.b),y=new URL(r(2771),r.b),x=new URL(r(5150),r.b),v=new URL(r(4852),r.b),D=new URL(r(3902),r.b),w=new URL(r(911),r.b),N=new URL(r(9013),r.b),j=new URL(r(9147),r.b),h=new URL(r(1311),r.b),A=new URL(r(513),r.b),k=new URL(r(1696),r.b),z=new URL(r(1459),r.b),C=new URL(r(2217),r.b),T=new URL(r(8130),r.b),S=new URL(r(7351),r.b),L=new URL(r(1053),r.b),Z=new URL(r(2101),r.b),H=new URL(r(5469),r.b),P=new URL(r(3154),r.b),E=new URL(r(7785),r.b),O=new URL(r(575),r.b),R=new URL(r(7467),r.b),U=new URL(r(9658),r.b),B=new URL(r(4148),r.b),G=new URL(r(9376),r.b),Y=n()(a()),Q=l()(d),W=l()(g),J=l()(s),F=l()(f),K=l()(b),X=l()(p),V=l()(I),$=l()(m),_=l()(u),q=l()(M),ee=l()(y),oe=l()(x),re=l()(v),ce=l()(D),ae=l()(w),ie=l()(N),ne=l()(j),te=l()(h),le=l()(A),de=l()(k),ge=l()(z),se=l()(C),fe=l()(T),be=l()(S),pe=l()(L),Ie=l()(Z),me=l()(H),ue=l()(P),Me=l()(E),ye=l()(O),xe=l()(R),ve=l()(U),De=l()(B),we=l()(G);Y.push([e.id,`@include perspective-viewer-vaporwave--fonts;@include perspective-viewer-gruvbox-light--animation;@include perspective-viewer-gruvbox-light--fonts;@include perspective-viewer-gruvbox-dark--animation;@include perspective-viewer-gruvbox-dark--fonts;@include perspective-viewer-dracula--animation;@include perspective-viewer-dracula--fonts;perspective-viewer,perspective-copy-menu,perspective-export-menu,perspective-dropdown,perspective-date-column-style,perspective-datetime-column-style,perspective-number-column-style,perspective-string-column-style{--column-type-integer--mask-image:url(${Q});--column-type-float--mask-image:var(--column-type-integer--mask-image);--column-type-string--mask-image:url(${W});--column-type-date--mask-image:url(${J});--column-type-boolean--mask-image:url(${F});--column-type-datetime--mask-image:var(--column-type-date--mask-image);--column-drag-handle--mask-image:url(${K});--column-radio-on--mask-image:url(${X});--column-radio-hover--mask-image:url(${V});--column-radio-off--mask-image:url(${$});--column-checkbox-on--mask-image:url(${_});--column-checkbox-hover--mask-image:url(${q});--column-checkbox-off--mask-image:url(${ee});--column-settings-icon--mask-image:url(${oe});--sort-asc-icon--mask-image:url(${re});--sort-desc-icon--mask-image:url(${ce});--sort-col-asc-icon--mask-image:url(${ae});--sort-col-desc-icon--mask-image:url(${ie});--sort-abs-asc-icon--mask-image:url(${ne});--sort-abs-desc-icon--mask-image:url(${te});--sort-abs-col-asc-icon--mask-image:url(${le});--sort-abs-col-desc-icon--mask-image:url(${de});--sort-none-icon--mask-image:url(${ge});--add-expression-icon--mask-image:url(${se});--close-icon--mask-image:url(${fe});--inactive-column-selector--content:url(${be});--active-column-selector--content:url(${pe});--overflow-hint-icon--content:"!";--reset-button-icon--content:"refresh";--save-button-icon--content:"save";color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--overflow-hint-icon--color:#fdfffd;--column-style-open-button--content:"style";--column-style-close-button--content:">\\00a0 style";--tree-label-collapse--content:"-";--tree-label-expand--content:"+";--toolbar-scroll-lock--content:url(${Ie});--toolbar-scroll-lock-active--content:url(${me});--toolbar-edit-mode--read-only--content:url(${ue});--toolbar-edit-mode--edit--content:url(${Me});--toolbar-edit-mode--select-row--content:url(${ye});--toolbar-edit-mode--select-column--content:url(${xe});--toolbar-edit-mode--select-region--content:url(${ve});}perspective-viewer,perspective-dropdown{--group-by-label--content:"Group By";--split-by-label--content:"Split By";--sort-label--content:"Order By";--filter-label--content:"Where";--transpose-button--content:"Swap";--config-button-icon--content:"configure";--all-columns-label--content:"All Columns";--untitled--content:"untitled";--plugin-name-datagrid--content:"Datagrid";--plugin-name-treemap--content:"Treemap";--plugin-name-sunburst--content:"Sunburst";--plugin-name-heatmap--content:"Heatmap";--plugin-name-x-bar--content:"X Bar";--plugin-name-y-bar--content:"Y Bar";--plugin-name-y-line--content:"Y Line";--plugin-name-x-y-line--content:"X/Y Line";--plugin-name-x-y-scatter--content:"X/Y Scatter";--plugin-name-y-scatter--content:"Y Scatter";--plugin-name-y-area--content:"Y Area";--plugin-name-ohlc--content:"OHLC";--plugin-name-candlestick--content:"Candlestick";--column-selector-column-columns--content:"Columns";--column-selector-column-x-axis--content:"X Axis";--column-selector-column-y-axis--content:"Y Axis";--column-selector-column-color--content:"Color";--column-selector-column-size--content:"Size";--column-selector-column-symbol--content:"Symbol";--column-selector-column-label--content:"Label";--column-selector-column-tooltip--content:"Tooltip";--add-expression-button--content:"New Column";--no-results--content:"Invalid Column";--datagrid-column-edit-button--content:"Edit";--copy-button--content:"Copy";--export-button--content:"Export";--reset-button--content:"Reset";--edit-mode--read-only--content:"Read Only";--edit-mode--edit--content:"Text Edit";--edit-mode--select-row--content:"Select Row";--edit-mode--select-column--content:"Select Column";--edit-mode--select-region--content:"Select Region";--scroll-lock-toggle--content:"Free Scroll";--scroll-lock-alt-toggle--content:"Align Scroll";--color-label--content:"Color";--format-label--content:"Format";--timezone-label--content:"Timezone";--date-style-label--content:"Date Style";--time-style-label--content:"Time Style";--foreground-label--content:"Foreground";--background-label--content:"Background";--series-label--content:"Series";--color-range-label--content:"Color Range";--style-label--content:"Style";--minimum-integer-digits-label--content:"Minimum Integer Digits";--rounding-increment-label--content:"Rounding Increment";--notation-label--content:"Notation";--use-grouping-label--content:"Use Grouping";--sign-display-label--content:"Sign Display";--max-value-label--content:"Max Value";--rounding-priority-label--content:"Rounding Priority";--rounding-mode-label--content:"Rounding Mode";--trailing-zero-display-label--content:"Trailing Zero Display";--fractional-digits-label--content:"Fractional Digits";--significant-digits-label--content:"Significant Digits";--year-label--content:"Year";--month-label--content:"Month";--day-label--content:"Day";--weekday-label--content:"Weekday";--hour-label--content:"Hour";--minute-label--content:"Minute";--second-label--content:"Second";--fractional-seconds-label--content:"Fractional Seconds";--hours-label--content:"12/24 Hours";--style-tab-label--content:"Style";--attributes-tab-label--content:"Attributes";--debug-tab-label--content:"Debug JSON";}perspective-viewer,perspective-viewer[theme="Pro Light"]{--theme-name:"Pro Light";}perspective-viewer[theme="Pro Light"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);}perspective-copy-menu[theme="Pro Light"],perspective-export-menu[theme="Pro Light"],perspective-dropdown[theme="Pro Light"],perspective-date-column-style[theme="Pro Light"],perspective-datetime-column-style[theme="Pro Light"],perspective-number-column-style[theme="Pro Light"],perspective-string-column-style[theme="Pro Light"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;background-color:white;}perspective-viewer,perspective-viewer[theme="Pro Dark"]{--theme-name:"Pro Dark";}perspective-viewer[theme="Pro Dark"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;--rt-pos-cell--color:#7dc3f0;--rt-neg-cell--color:#ff9485;--d3fc-legend--text:#c5c9d0;--d3fc-treedata--labels:white;--d3fc-treedata--hover-highlight:white;--d3fc-tooltip--color:white;--d3fc-axis-ticks--color:#c5c9d0;--d3fc-axis--lines:#61656e;--d3fc-gridline--color:#3b3f46;--d3fc-tooltip--background:rgba(42,44,47,1);--d3fc-tooltip--border-color:#242526;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgb(71,120,194);--d3fc-series-1:rgb(71,120,194);--d3fc-series-2:rgb(204,120,48);--d3fc-series-3:rgb(158,84,192);--d3fc-series-4:rgb(51,150,153);--d3fc-series-5:rgb(102,114,143);--d3fc-series-6:rgb(211,103,189);--d3fc-series-7:rgb(109,124,77);--d3fc-series-8:rgb(221,99,103);--d3fc-series-9:rgb(120,104,206);--d3fc-series-10:rgb(23,166,123);--d3fc-full--gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);--d3fc-positive--gradient:linear-gradient(#242526 0%,#3289c8 100%);--d3fc-negative--gradient:linear-gradient(#dd6367 0%,#242526 100%);--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png";--map-attribution--filter:invert(1)hue-rotate(180deg);--map-element-background:#212c2f;--map-category-1:rgb(71,120,194);--map-category-2:rgb(204,120,48);--map-category-3:rgb(158,84,192);--map-category-4:rgb(51,150,153);--map-category-5:rgb(102,114,143);--map-category-6:rgb(211,103,189);--map-category-7:rgb(109,124,77);--map-category-8:rgb(221,99,103);--map-category-9:rgb(120,104,206);--map-category-10:rgb(23,166,123);--map-gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);}perspective-copy-menu[theme="Pro Dark"],perspective-export-menu[theme="Pro Dark"],perspective-dropdown[theme="Pro Dark"],perspective-date-column-style[theme="Pro Dark"],perspective-datetime-column-style[theme="Pro Dark"],perspective-number-column-style[theme="Pro Dark"],perspective-string-column-style[theme="Pro Dark"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;background-color:#242526;border:1px solid#4c505b;}:host select{background-image:url(${we});}perspective-viewer,perspective-viewer[theme="Monokai"]{--theme-name:"Monokai";}perspective-viewer[theme="Monokai"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;--rt-pos-cell--color:#7dc3f0;--rt-neg-cell--color:#ff9485;--d3fc-legend--text:#c5c9d0;--d3fc-treedata--labels:white;--d3fc-treedata--hover-highlight:white;--d3fc-tooltip--color:white;--d3fc-axis-ticks--color:#c5c9d0;--d3fc-axis--lines:#61656e;--d3fc-gridline--color:#3b3f46;--d3fc-tooltip--background:rgba(42,44,47,1);--d3fc-tooltip--border-color:#242526;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgb(71,120,194);--d3fc-series-1:rgb(71,120,194);--d3fc-series-2:rgb(204,120,48);--d3fc-series-3:rgb(158,84,192);--d3fc-series-4:rgb(51,150,153);--d3fc-series-5:rgb(102,114,143);--d3fc-series-6:rgb(211,103,189);--d3fc-series-7:rgb(109,124,77);--d3fc-series-8:rgb(221,99,103);--d3fc-series-9:rgb(120,104,206);--d3fc-series-10:rgb(23,166,123);--d3fc-full--gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);--d3fc-positive--gradient:linear-gradient(#242526 0%,#3289c8 100%);--d3fc-negative--gradient:linear-gradient(#dd6367 0%,#242526 100%);--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png";--map-attribution--filter:invert(1)hue-rotate(180deg);--map-element-background:#212c2f;--map-category-1:rgb(71,120,194);--map-category-2:rgb(204,120,48);--map-category-3:rgb(158,84,192);--map-category-4:rgb(51,150,153);--map-category-5:rgb(102,114,143);--map-category-6:rgb(211,103,189);--map-category-7:rgb(109,124,77);--map-category-8:rgb(221,99,103);--map-category-9:rgb(120,104,206);--map-category-10:rgb(23,166,123);--map-gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);color:#d6d6d6;background-color:#2d2a2e;--active--color:#78dce8;--error--color:#ff6188;--inactive--color:#797979;--inactive--border-color:#666666;--plugin--background:#2d2a2e;--float--column-type--color:#78dce8;--string--column-type--color:#ff6188;--date--column-type--color:#a9dc76;--boolean--column-type--color:#ffd866;--warning--background:#ffd866;--rt-pos-cell--color:#78dce8!important;--rt-neg-cell--color:#ff6188!important;--rt--border-color:#444444;}perspective-viewer[theme="Monokai"] regular-table table tbody th:empty{background:linear-gradient(to right,transparent 9px,#444444 10px,transparent 11px);}perspective-viewer[theme="Monokai"]{--d3fc-treedata--labels:#d6d6d6;--d3fc-treedata--hover-highlight:#2d2a2e;--d3fc-axis-ticks--color:#d6d6d6;--d3fc-gridline--color:#444444;--d3fc-series:#78dce8;--d3fc-series-1:#78dce8;--d3fc-series-2:#ff6188;--d3fc-series-3:#fc9867;--d3fc-series-4:#ffd866;--d3fc-series-5:#a9dc76;--d3fc-series-6:#ab9df2;--d3fc-series-7:#66d9ef;--d3fc-series-8:#f92672;--d3fc-series-9:#fd971f;--d3fc-series-10:#e6db74;--d3fc-series-11:#a6e22e;--d3fc-series-12:#ae81ff;--d3fc-negative--gradient:linear-gradient(#272822 0%,#ff6188 100%);--d3fc-positive--gradient:linear-gradient(#272822 0%,#78dce8 100%);--d3fc-full--gradient:linear-gradient(#ff6188 0%,#272822 50%,#78dce8 100%);}perspective-copy-menu[theme="Monokai"],perspective-export-menu[theme="Monokai"],perspective-dropdown[theme="Monokai"],perspective-date-column-style[theme="Monokai"],perspective-datetime-column-style[theme="Monokai"],perspective-number-column-style[theme="Monokai"],perspective-string-column-style[theme="Monokai"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;background-color:#242526;border:1px solid#4c505b;color:#d6d6d6;background-color:#2d2a2e;--active--color:#78dce8;--error--color:#ff6188;--inactive--color:#797979;--inactive--border-color:#666666;--plugin--background:#2d2a2e;--float--column-type--color:#78dce8;--string--column-type--color:#ff6188;--date--column-type--color:#a9dc76;--boolean--column-type--color:#ffd866;--warning--background:#ffd866;background-color:#2d2a2e;border:1px solid#797979;}perspective-viewer,perspective-viewer[theme="Solarized"]{--theme-name:"Solarized";}perspective-viewer[theme="Solarized"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);color:#586e75;background-color:#eee8d5;--icon--color:#586e75;--active--color:#268bd2;--error--color:#cb4b16;--inactive--color:#93a1a1;--inactive--border-color:var(--inactive--color);--plugin--background:#fdf6e3;--float--column-type--color:#268bd2;--string--column-type--color:#cb4b16;--date--column-type--color:#2aa198;--boolean--column-type--color:#b58900;--rt-pos-cell--color:#268bd2!important;--rt-neg-cell--color:#cb4b16!important;--rt-hover--border-color:#ccc;--rt--border-color:#93a1a1;--d3fc-treedata--labels:black;--d3fc-treedata--hover-highlight:black;--d3fc-axis-ticks--color:#586e75;--d3fc-gridline--color:#eee8d5;--d3fc-series:#268bd2;--d3fc-series-1:#268bd2;--d3fc-series-2:#cb4b16;--d3fc-series-3:#b58900;--d3fc-series-4:#859900;--d3fc-series-5:#2aa198;--d3fc-series-6:#6c71c4;--d3fc-series-7:#d33682;--d3fc-positive--gradient:linear-gradient(#268bd2 0%,#2aa198,#859900,#b58900,#cb4b16,#dc322f,#d33682 100%);}perspective-copy-menu[theme="Solarized"],perspective-export-menu[theme="Solarized"],perspective-dropdown[theme="Solarized"],perspective-date-column-style[theme="Solarized"],perspective-datetime-column-style[theme="Solarized"],perspective-number-column-style[theme="Solarized"],perspective-string-column-style[theme="Solarized"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;color:#586e75;background-color:#eee8d5;--icon--color:#586e75;--active--color:#268bd2;--error--color:#cb4b16;--inactive--color:#93a1a1;--inactive--border-color:var(--inactive--color);--plugin--background:#fdf6e3;--float--column-type--color:#268bd2;--string--column-type--color:#cb4b16;--date--column-type--color:#2aa198;--boolean--column-type--color:#b58900;background-color:#fdf6e3;}x{color:#cb4b16;}perspective-viewer,perspective-viewer[theme="Solarized Dark"]{--theme-name:"Solarized Dark";}perspective-viewer[theme="Solarized Dark"]{background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);color:#586e75;background-color:#eee8d5;--icon--color:#586e75;--active--color:#268bd2;--error--color:#cb4b16;--inactive--color:#93a1a1;--inactive--border-color:var(--inactive--color);--plugin--background:#fdf6e3;--float--column-type--color:#268bd2;--string--column-type--color:#cb4b16;--date--column-type--color:#2aa198;--boolean--column-type--color:#b58900;--rt-pos-cell--color:#268bd2!important;--rt-neg-cell--color:#cb4b16!important;--rt-hover--border-color:#ccc;--rt--border-color:#93a1a1;--d3fc-treedata--labels:black;--d3fc-treedata--hover-highlight:black;--d3fc-axis-ticks--color:#586e75;--d3fc-gridline--color:#eee8d5;--d3fc-series:#268bd2;--d3fc-series-1:#268bd2;--d3fc-series-2:#cb4b16;--d3fc-series-3:#b58900;--d3fc-series-4:#859900;--d3fc-series-5:#2aa198;--d3fc-series-6:#6c71c4;--d3fc-series-7:#d33682;--d3fc-positive--gradient:linear-gradient(#268bd2 0%,#2aa198,#859900,#b58900,#cb4b16,#dc322f,#d33682 100%);color:#93a1a1;background-color:#002b36;--inactive--color:#586e75;--inactive--border-color:var(--inactive--color);--plugin--background:#073642;--select-arrow--background-image:url(${we});--d3fc-treedata--labels:white;--d3fc-treedata--hover-highlight:white;--d3fc-axis-ticks--color:#93a1a1;--d3fc-axis--lines:#93a1a1;--d3fc-gridline--color:#002b36;--d3fc-legend--text:#93a1a1;--d3fc-full--gradient:linear-gradient(#cb4b16 0%,#073642 50%,#268bd2 100%);--d3fc-negative--gradient:linear-gradient(#cb4b16 0%,#073642 100%);}perspective-copy-menu[theme="Solarized Dark"],perspective-export-menu[theme="Solarized Dark"],perspective-dropdown[theme="Solarized Dark"],perspective-date-column-style[theme="Solarized Dark"],perspective-datetime-column-style[theme="Solarized Dark"],perspective-number-column-style[theme="Solarized Dark"],perspective-string-column-style[theme="Solarized Dark"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;color:#586e75;background-color:#eee8d5;--icon--color:#586e75;--active--color:#268bd2;--error--color:#cb4b16;--inactive--color:#93a1a1;--inactive--border-color:var(--inactive--color);--plugin--background:#fdf6e3;--float--column-type--color:#268bd2;--string--column-type--color:#cb4b16;--date--column-type--color:#2aa198;--boolean--column-type--color:#b58900;background-color:#fdf6e3;color:#93a1a1;background-color:#002b36;--inactive--color:#586e75;--inactive--border-color:var(--inactive--color);--plugin--background:#073642;--select-arrow--background-image:url(${we});background-color:#073642;}perspective-viewer,perspective-viewer[theme="Vaporwave"]{--theme-name:"Vaporwave";}perspective-viewer[theme="Vaporwave"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;--rt-pos-cell--color:#7dc3f0;--rt-neg-cell--color:#ff9485;--d3fc-legend--text:#c5c9d0;--d3fc-treedata--labels:white;--d3fc-treedata--hover-highlight:white;--d3fc-tooltip--color:white;--d3fc-axis-ticks--color:#c5c9d0;--d3fc-axis--lines:#61656e;--d3fc-gridline--color:#3b3f46;--d3fc-tooltip--background:rgba(42,44,47,1);--d3fc-tooltip--border-color:#242526;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgb(71,120,194);--d3fc-series-1:rgb(71,120,194);--d3fc-series-2:rgb(204,120,48);--d3fc-series-3:rgb(158,84,192);--d3fc-series-4:rgb(51,150,153);--d3fc-series-5:rgb(102,114,143);--d3fc-series-6:rgb(211,103,189);--d3fc-series-7:rgb(109,124,77);--d3fc-series-8:rgb(221,99,103);--d3fc-series-9:rgb(120,104,206);--d3fc-series-10:rgb(23,166,123);--d3fc-full--gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);--d3fc-positive--gradient:linear-gradient(#242526 0%,#3289c8 100%);--d3fc-negative--gradient:linear-gradient(#dd6367 0%,#242526 100%);--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png";--map-attribution--filter:invert(1)hue-rotate(180deg);--map-element-background:#212c2f;--map-category-1:rgb(71,120,194);--map-category-2:rgb(204,120,48);--map-category-3:rgb(158,84,192);--map-category-4:rgb(51,150,153);--map-category-5:rgb(102,114,143);--map-category-6:rgb(211,103,189);--map-category-7:rgb(109,124,77);--map-category-8:rgb(221,99,103);--map-category-9:rgb(120,104,206);--map-category-10:rgb(23,166,123);--map-gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);color:#49acff;background-color:rgb(7,8,29)!important;--icon--color:#49acff;--inactive--color:rgb(19,33,50)!important;--inactive--border-color:var(--inactive--color);--plugin--background:rgb(7,8,29)!important;--status-icon-updating-keyframes-start--filter:opacity(1);--status-icon-updating-keyframes-end--filter:opacity(0);--status-icon-updating-keyframes-start--transform:scale(1);--status-icon-updating-keyframes-end--transform:scale(0.5);--status-icon-keyframes-start--transform:scale(1.25);--status-icon-keyframes-end--transform:scale(1);--pp-color-1:rgb(9,33,50);--pp-color-2:rgb(66,182,230);--rt-pos-cell--color:rgb(66,182,230)!important;--rt-hover--border-color:var(--pp-color-1)!important;}perspective-viewer[theme="Vaporwave"] regular-table table tbody th:empty{background:linear-gradient(to right,transparent 9px,rgb(19,33,50)10px,transparent 11px);background-repeat:no-repeat;background-position:0px -10px;}perspective-viewer[theme="Vaporwave"]{--d3fc-axis-ticks--color:#49acff;--d3fc-gridline--color:rgb(19,33,50);--d3fc-series:#01cdfe;--d3fc-series-1:#01cdfe;--d3fc-series-2:#ff71ce;--d3fc-series-3:#05ffa1;--d3fc-series-4:#b967ff;--d3fc-series-5:#fffb96;--d3fc-series-6:hsl(192,99%,25%);--d3fc-series-7:hsl(321,100%,36%);--d3fc-series-8:hsl(192,99%,25%);--d3fc-series-9:hsl(157,100%,25%);--d3fc-series-10:hsl(272,100%,35%);--d3fc-negative--gradient:linear-gradient(#f3d431,#efb92d,#ed9c25,#eb7e20,#e75d1e,#d14632,#b03e38,#8c3a36,#643633,#07081d)!important;--d3fc-positive--gradient:linear-gradient(#07081d,#2e4463,#1e588a,#086da7,#0082b9,#039ac7,#12b1d4,#2bc8e2,#3ddff0,#61f4fb)!important;--d3fc-full--gradient:linear-gradient(#f3d431,#efb92d,#ed9c25,#eb7e20,#e75d1e,#d14632,#b03e38,#8c3a36,#643633,#07081d,#2e4463,#1e588a,#086da7,#0082b9,#039ac7,#12b1d4,#2bc8e2,#3ddff0,#61f4fb)!important;}perspective-copy-menu[theme="Vaporwave"],perspective-export-menu[theme="Vaporwave"],perspective-dropdown[theme="Vaporwave"],perspective-date-column-style[theme="Vaporwave"],perspective-datetime-column-style[theme="Vaporwave"],perspective-number-column-style[theme="Vaporwave"],perspective-string-column-style[theme="Vaporwave"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;background-color:#242526;border:1px solid#4c505b;color:#49acff;background-color:rgb(7,8,29)!important;--icon--color:#49acff;--inactive--color:rgb(19,33,50)!important;--inactive--border-color:var(--inactive--color);--plugin--background:rgb(7,8,29)!important;background-color:#07081d;}perspective-viewer,perspective-viewer[theme="Gruvbox Light"]{--theme-name:"Gruvbox Light";}perspective-viewer[theme="Gruvbox Light"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--theme-fg0:#282828;--theme-fg1:#3c3836;--theme-fg2:#7c6f64;--theme-gray:#928374;--theme-bg0:#fbf1c7;--theme-bg1:#ebdbb2;--theme-bg2:#a89984;--theme-red:#cc241d;--theme-green:#98871a;--theme-yellow:#d79921;--theme-blue:#458588;--theme-purple:#b16286;--theme-aqua:#689d5a;--theme-orange:#d65d0e;--theme-alt-red:#9d0006;--theme-alt-green:#79740e;--theme-alt-yellow:#b57614;--theme-alt-blue:#076678;--theme-alt-purple:#8f3f71;--theme-alt-aqua:#427b58;--theme-alt-orange:#af3a03;color:var(--theme-fg1);background-color:var(--theme-bg1);--icon--color:var(--theme-fg0);--inactive--color:var(--theme-fg2);--inactive--border-color:var(--theme-bg2);--plugin--background:var(--theme-bg0);--status-icon-connected--color:var(--theme-aqua);--status-icon-initializing--color:var(--theme-yellow);--status-icon-error--color:var(--theme-red);--rt-pos-cell--color:var(--theme-blue);--rt-neg-cell--color:var(--theme-red);--d3fc-axis-ticks--color:var(--theme-fg1);--d3fc-gridline--color:var(--theme-bg2);--d3fc-series:var(--theme-blue);--d3fc-series-1:var(--theme-blue);--d3fc-series-2:var(--theme-red);--d3fc-series-3:var(--theme-green);--d3fc-series-4:var(--theme-purple);--d3fc-series-5:var(--theme-aqua);--d3fc-series-6:var(--theme-alt-blue);--d3fc-series-7:var(--theme-alt-red);--d3fc-series-8:var(--theme-alt-green);--d3fc-series-9:var(--theme-alt-purple);--d3fc-series-10:var(--theme-alt-aqua);--d3fc-negative--gradient:linear-gradient(var(--theme-bg1),var(--theme-red),var(--theme-alt-red))!important;--d3fc-positive--gradient:linear-gradient(var(--theme-bg1),var(--theme-blue),var(--theme-alt-blue))!important;--d3fc-full--gradient:linear-gradient(var(--theme-alt-red),var(--theme-red),var(--theme-bg1),var(--theme-blue),var(--theme-alt-blue))!important;}perspective-copy-menu[theme="Gruvbox Light"],perspective-export-menu[theme="Gruvbox Light"],perspective-dropdown[theme="Gruvbox Light"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;--theme-fg0:#282828;--theme-fg1:#3c3836;--theme-fg2:#7c6f64;--theme-gray:#928374;--theme-bg0:#fbf1c7;--theme-bg1:#ebdbb2;--theme-bg2:#a89984;--theme-red:#cc241d;--theme-green:#98871a;--theme-yellow:#d79921;--theme-blue:#458588;--theme-purple:#b16286;--theme-aqua:#689d5a;--theme-orange:#d65d0e;--theme-alt-red:#9d0006;--theme-alt-green:#79740e;--theme-alt-yellow:#b57614;--theme-alt-blue:#076678;--theme-alt-purple:#8f3f71;--theme-alt-aqua:#427b58;--theme-alt-orange:#af3a03;color:var(--theme-fg1);background-color:var(--theme-bg1);--icon--color:var(--theme-fg0);--inactive--color:var(--theme-fg2);--inactive--border-color:var(--theme-bg2);--plugin--background:var(--theme-bg0);--status-icon-connected--color:var(--theme-aqua);--status-icon-initializing--color:var(--theme-yellow);--status-icon-error--color:var(--theme-red);background-color:var(--theme-bg0);}perspective-viewer,perspective-viewer[theme="Gruvbox Dark"]{--theme-name:"Gruvbox Dark";}perspective-viewer[theme="Gruvbox Dark"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;--rt-pos-cell--color:#7dc3f0;--rt-neg-cell--color:#ff9485;--d3fc-legend--text:#c5c9d0;--d3fc-treedata--labels:white;--d3fc-treedata--hover-highlight:white;--d3fc-tooltip--color:white;--d3fc-axis-ticks--color:#c5c9d0;--d3fc-axis--lines:#61656e;--d3fc-gridline--color:#3b3f46;--d3fc-tooltip--background:rgba(42,44,47,1);--d3fc-tooltip--border-color:#242526;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgb(71,120,194);--d3fc-series-1:rgb(71,120,194);--d3fc-series-2:rgb(204,120,48);--d3fc-series-3:rgb(158,84,192);--d3fc-series-4:rgb(51,150,153);--d3fc-series-5:rgb(102,114,143);--d3fc-series-6:rgb(211,103,189);--d3fc-series-7:rgb(109,124,77);--d3fc-series-8:rgb(221,99,103);--d3fc-series-9:rgb(120,104,206);--d3fc-series-10:rgb(23,166,123);--d3fc-full--gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);--d3fc-positive--gradient:linear-gradient(#242526 0%,#3289c8 100%);--d3fc-negative--gradient:linear-gradient(#dd6367 0%,#242526 100%);--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png";--map-attribution--filter:invert(1)hue-rotate(180deg);--map-element-background:#212c2f;--map-category-1:rgb(71,120,194);--map-category-2:rgb(204,120,48);--map-category-3:rgb(158,84,192);--map-category-4:rgb(51,150,153);--map-category-5:rgb(102,114,143);--map-category-6:rgb(211,103,189);--map-category-7:rgb(109,124,77);--map-category-8:rgb(221,99,103);--map-category-9:rgb(120,104,206);--map-category-10:rgb(23,166,123);--map-gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);--theme-bg0:#282828;--theme-bg1:#3c3836;--theme-bg2:#7c6f64;--theme-gray:#928374;--theme-fg0:#fbf1c7;--theme-fg1:#ebdbb2;--theme-fg2:#a89984;--theme-red:#cc241d;--theme-green:#98871a;--theme-yellow:#d79921;--theme-blue:#458588;--theme-purple:#b16286;--theme-aqua:#689d5a;--theme-orange:#d65d0e;--theme-alt-red:#fb4934;--theme-alt-green:#b8bb26;--theme-alt-yellow:#fabd2f;--theme-alt-blue:#83a598;--theme-alt-purple:#d3869b;--theme-alt-aqua:#8ec07c;--theme-alt-orange:#fe8019;color:var(--theme-fg0);background-color:var(--theme-bg0);--icon--color:var(--theme-fg1);--inactive--color:var(--theme-fg2);--inactive--border-color:var(--theme-bg2);--plugin--background:var(--theme-bg1);--status-icon-connected--color:var(--theme-aqua);--status-icon-initializing--color:var(--theme-yellow);--status-icon-error--color:var(--theme-red);--rt-pos-cell--color:var(--theme-alt-blue);--rt-neg-cell--color:var(--theme-alt-red);--d3fc-axis-ticks--color:var(--theme-fg1);--d3fc-gridline--color:var(--theme-bg2);--d3fc-series:var(--theme-blue);--d3fc-series-1:var(--theme-blue);--d3fc-series-2:var(--theme-red);--d3fc-series-3:var(--theme-green);--d3fc-series-4:var(--theme-purple);--d3fc-series-5:var(--theme-aqua);--d3fc-series-6:var(--theme-alt-blue);--d3fc-series-7:var(--theme-alt-red);--d3fc-series-8:var(--theme-alt-green);--d3fc-series-9:var(--theme-alt-purple);--d3fc-series-10:var(--theme-alt-aqua);--d3fc-negative--gradient:linear-gradient(var(--theme-bg0),var(--theme-red),var(--theme-alt-red))!important;--d3fc-positive--gradient:linear-gradient(var(--theme-bg0),var(--theme-blue),var(--theme-alt-blue))!important;--d3fc-full--gradient:linear-gradient(var(--theme-alt-red),var(--theme-red),var(--theme-bg0),var(--theme-blue),var(--theme-alt-blue))!important;}perspective-copy-menu[theme="Gruvbox Dark"],perspective-export-menu[theme="Gruvbox Dark"],perspective-dropdown[theme="Gruvbox Dark"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;background-color:#242526;border:1px solid#4c505b;--theme-bg0:#282828;--theme-bg1:#3c3836;--theme-bg2:#7c6f64;--theme-gray:#928374;--theme-fg0:#fbf1c7;--theme-fg1:#ebdbb2;--theme-fg2:#a89984;--theme-red:#cc241d;--theme-green:#98871a;--theme-yellow:#d79921;--theme-blue:#458588;--theme-purple:#b16286;--theme-aqua:#689d5a;--theme-orange:#d65d0e;--theme-alt-red:#fb4934;--theme-alt-green:#b8bb26;--theme-alt-yellow:#fabd2f;--theme-alt-blue:#83a598;--theme-alt-purple:#d3869b;--theme-alt-aqua:#8ec07c;--theme-alt-orange:#fe8019;color:var(--theme-fg0);background-color:var(--theme-bg0);--icon--color:var(--theme-fg1);--inactive--color:var(--theme-fg2);--inactive--border-color:var(--theme-bg2);--plugin--background:var(--theme-bg1);--status-icon-connected--color:var(--theme-aqua);--status-icon-initializing--color:var(--theme-yellow);--status-icon-error--color:var(--theme-red);background-color:var(--theme-bg0);}perspective-viewer,perspective-viewer[theme="Dracula"]{--theme-name:"Dracula";}perspective-viewer[theme="Dracula"]{--button--font-size:16px;--config-button--padding:15px 8px 6px 8px;--column-drop-label--font-size:8px;--column-drop-container--padding:0px;--column-drop-label--display:inline-block;--column-selector--width:20px;--column-selector--font-size:16px;--column_type--width:25px;--select--padding:0px;--side-panel--padding:0px 0px 0px 4px;--top-panel--padding:0px 0px 12px 0px;--top-panel-row--display:inline-flex;--button--min-width:33px;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--d3fc-y1-label--content:"arrow_upward";--d3fc-y2-label--content:"arrow_downward";--d3fc-treedata-axis--lines:none;--d3fc-tooltip--background--color:rgba(155,155,155,0.8);--d3fc-tooltip--color:#161616;--d3fc-tooltip--border-color:#fff;--d3fc-tooltip--box-shadow:0 2px 4px 0 rgb(0 0 0/10%);--d3fc-gridline--color:#eaedef;--d3fc-axis-ticks--color:#161616;--d3fc-axis--lines:#c5c9d0;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgba(31,119,180,0.8);--d3fc-series-1:#0366d6;--d3fc-series-2:#ff7f0e;--d3fc-series-3:#2ca02c;--d3fc-series-4:#d62728;--d3fc-series-5:#9467bd;--d3fc-series-6:#8c564b;--d3fc-series-7:#e377c2;--d3fc-series-8:#7f7f7f;--d3fc-series-9:#bcbd22;--d3fc-series-10:#17becf;--d3fc-full--gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);--d3fc-positive--gradient:linear-gradient(#f0f0f0 0%,#dcedc8 10%,#42b3d5 50%,#1a237e 100%);--d3fc-negative--gradient:linear-gradient(#4d342f 0%,#e4521b 50%,#feeb65 90%,#f0f0f0 100%);--rt-pos-cell--color:#338dcd;--rt-neg-cell--color:#ff471e;--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";--map-element-background:#fff;--map-category-1:#0366d6;--map-category-2:#ff7f0e;--map-category-3:#2ca02c;--map-category-4:#d62728;--map-category-5:#9467bd;--map-category-6:#8c564b;--map-category-7:#e377c2;--map-category-8:#7f7f7f;--map-category-9:#bcbd22;--map-category-10:#17becf;--map-gradient:linear-gradient(#4d342f 0%,#e4521b 22.5%,#feeb65 42.5%,#f0f0f0 50%,#dcedc8 57.5%,#42b3d5 67.5%,#1a237e 100%);background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;--rt-pos-cell--color:#7dc3f0;--rt-neg-cell--color:#ff9485;--d3fc-legend--text:#c5c9d0;--d3fc-treedata--labels:white;--d3fc-treedata--hover-highlight:white;--d3fc-tooltip--color:white;--d3fc-axis-ticks--color:#c5c9d0;--d3fc-axis--lines:#61656e;--d3fc-gridline--color:#3b3f46;--d3fc-tooltip--background:rgba(42,44,47,1);--d3fc-tooltip--border-color:#242526;--d3fc-legend--background:var(--plugin--background);--d3fc-series:rgb(71,120,194);--d3fc-series-1:rgb(71,120,194);--d3fc-series-2:rgb(204,120,48);--d3fc-series-3:rgb(158,84,192);--d3fc-series-4:rgb(51,150,153);--d3fc-series-5:rgb(102,114,143);--d3fc-series-6:rgb(211,103,189);--d3fc-series-7:rgb(109,124,77);--d3fc-series-8:rgb(221,99,103);--d3fc-series-9:rgb(120,104,206);--d3fc-series-10:rgb(23,166,123);--d3fc-full--gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);--d3fc-positive--gradient:linear-gradient(#242526 0%,#3289c8 100%);--d3fc-negative--gradient:linear-gradient(#dd6367 0%,#242526 100%);--map-tile-url:"http://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png";--map-attribution--filter:invert(1)hue-rotate(180deg);--map-element-background:#212c2f;--map-category-1:rgb(71,120,194);--map-category-2:rgb(204,120,48);--map-category-3:rgb(158,84,192);--map-category-4:rgb(51,150,153);--map-category-5:rgb(102,114,143);--map-category-6:rgb(211,103,189);--map-category-7:rgb(109,124,77);--map-category-8:rgb(221,99,103);--map-category-9:rgb(120,104,206);--map-category-10:rgb(23,166,123);--map-gradient:linear-gradient(#dd6367 0%,#242526 50%,#3289c8 100%);--theme-bg0:#191a22;--theme-bg1:#282a36;--theme-bg2:#44475a;--theme-gray:#928374;--theme-fg0:#f8f8f2;--theme-fg1:#6272a4;--theme-fg2:#44475a;--theme-red:#ff5555;--theme-green:#50fa7b;--theme-yellow:#f1fa8c;--theme-blue:#8be9fd;--theme-purple:#bd93f9;--theme-orange:#ffb86c;--theme-pink:#ff79c6;color:var(--theme-fg0);background-color:var(--theme-bg0);--icon--color:var(--theme-fg1);--inactive--color:var(--theme-fg2);--inactive--border-color:var(--theme-bg2);--plugin--background:var(--theme-bg1);--status-icon-connected--color:var(--theme-green);--status-icon-initializing--color:var(--theme-yellow);--status-icon-error--color:var(--theme-red);--rt-pos-cell--color:var(--theme-blue);--rt-neg-cell--color:var(--theme-red);--d3fc-axis-ticks--color:var(--theme-fg1);--d3fc-gridline--color:var(--theme-bg2);--d3fc-series:var(--theme-blue);--d3fc-series-1:var(--theme-blue);--d3fc-series-2:var(--theme-red);--d3fc-series-3:var(--theme-green);--d3fc-series-4:var(--theme-yellow);--d3fc-series-5:var(--theme-purple);--d3fc-series-6:var(--theme-pink);--d3fc-series-7:var(--theme-orange);--d3fc-negative--gradient:linear-gradient(var(--theme-bg0),var(--theme-red))!important;--d3fc-positive--gradient:linear-gradient(var(--theme-bg0),var(--theme-blue))!important;--d3fc-full--gradient:linear-gradient(var(--theme-red),var(--theme-bg0),var(--theme-blue))!important;}perspective-copy-menu[theme="Dracula"],perspective-export-menu[theme="Dracula"],perspective-dropdown[theme="Dracula"]{font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;background-color:white;border:1px solid var(--inactive--color);border-radius:0 0 2px 2px;--column-style-pos-color--content:"+";--column-style-neg-color--content:"-";--save-button-icon--content:"save";--reset-button-icon--content:"refresh";font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;--interface-monospace--font-family:"ui-monospace","SFMono-Regular","SF Mono","Menlo","Consolas","Liberation Mono",monospace;color:#161616;background-color:transparent;--icon--color:#161616;--inactive--color:#ababab;--inactive--border-color:#dadada;--root--background:#ffffff;--active--color:#2670a9;--error--color:#ff471e;--plugin--background:#ffffff;--overflow-hint-icon--color:rgba(0,0,0,0.2);--select--background-color:none;--column-drop-container--background:none;--warning--background:#042121;--warning--color:#fdfffd;--select-arrow--background-image:url(${De});--overflow-hint-icon--color:#fdfffd;background-color:#242526;color:white;--icon--color:white;--active--color:#2770a9;--error--color:#ff9485;--inactive--color:#61656e;--inactive--border-color:#4c505b;--plugin--background:#242526;--modal-target--background:rgba(255,255,255,0.05);--active--background:rgba(39,113,170,0.5);--expression--operator-color:#c5c9d0;--expression--function-color:#22a0ce;--expression--error-color:rgb(255,136,136);--calendar--filter:invert(1);--warning--color:#242526;--warning--background:var(--icon--color);--select-arrow--background-image:url(${we});--float--column-type--color:#7dc3f0;--string--column-type--color:#ff9485;--date--column-type--color:@green50;--boolean--column-type--color:@orange50;--code-editor-symbol--color:white;--code-editor-literal--color:#7dc3f0;--code-editor-operator--color:rgb(23,166,123);--code-editor-comment--color:rgb(204,120,48);--code-editor-column--color:#e18ee1;background-color:#242526;border:1px solid#4c505b;--theme-bg0:#191a22;--theme-bg1:#282a36;--theme-bg2:#44475a;--theme-gray:#928374;--theme-fg0:#f8f8f2;--theme-fg1:#6272a4;--theme-fg2:#44475a;--theme-red:#ff5555;--theme-green:#50fa7b;--theme-yellow:#f1fa8c;--theme-blue:#8be9fd;--theme-purple:#bd93f9;--theme-orange:#ffb86c;--theme-pink:#ff79c6;color:var(--theme-fg0);background-color:var(--theme-bg0);--icon--color:var(--theme-fg1);--inactive--color:var(--theme-fg2);--inactive--border-color:var(--theme-bg2);--plugin--background:var(--theme-bg1);--status-icon-connected--color:var(--theme-green);--status-icon-initializing--color:var(--theme-yellow);--status-icon-error--color:var(--theme-red);background-color:var(--theme-bg0);}div.PSPContainer{overflow:auto;padding-right:5px;padding-bottom:5px;height:100%;width:100%;flex:1;}.jp-Notebook div.PSPContainer{resize:vertical;}.jp-NotebookPanel-notebook div.PSPContainer{height:520px;}.jupyter-widgets-view div.PSPContainer{height:520px;}body[data-voila="voila"] .jp-OutputArea-output div.PSPContainer,body[data-vscode-theme-id] .cell-output-ipywidget-background div.PSPContainer{min-height:520px;height:520px;}div.PSPContainer perspective-viewer[theme="Pro Light"]{--plugin--border:1px solid#e0e0e0;}div.PSPContainer perspective-viewer{display:block;height:98%;}`,""]);const Ne=Y},5024:e=>{e.exports=function(e){var o=[];return o.toString=function(){return this.map((function(o){var r="",c=void 0!==o[5];return o[4]&&(r+="@supports (".concat(o[4],") {")),o[2]&&(r+="@media ".concat(o[2]," {")),c&&(r+="@layer".concat(o[5].length>0?" ".concat(o[5]):""," {")),r+=e(o),c&&(r+="}"),o[2]&&(r+="}"),o[4]&&(r+="}"),r})).join("")},o.i=function(e,r,c,a,i){"string"==typeof e&&(e=[[null,e,void 0]]);var n={};if(c)for(var t=0;t<this.length;t++){var l=this[t][0];null!=l&&(n[l]=!0)}for(var d=0;d<e.length;d++){var g=[].concat(e[d]);c&&n[g[0]]||(void 0!==i&&(void 0===g[5]||(g[1]="@layer".concat(g[5].length>0?" ".concat(g[5]):""," {").concat(g[1],"}")),g[5]=i),r&&(g[2]?(g[1]="@media ".concat(g[2]," {").concat(g[1],"}"),g[2]=r):g[2]=r),a&&(g[4]?(g[1]="@supports (".concat(g[4],") {").concat(g[1],"}"),g[4]=a):g[4]="".concat(a)),o.push(g))}},o}},2059:e=>{e.exports=function(e,o){return o||(o={}),e?(e=String(e.__esModule?e.default:e),/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),o.hash&&(e+=o.hash),/["'() \t\n]|(%20)/.test(e)||o.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e):e}},3183:e=>{e.exports=function(e){return e[1]}},9905:(e,o,r)=>{r.r(o),r.d(o,{default:()=>u});var c=r(5118),a=r.n(c),i=r(8679),n=r.n(i),t=r(61),l=r.n(t),d=r(4254),g=r.n(d),s=r(5354),f=r.n(s),b=r(9999),p=r.n(b),I=r(2966),m={};m.styleTagTransform=p(),m.setAttributes=g(),m.insert=l().bind(null,"head"),m.domAPI=n(),m.insertStyleElement=f(),a()(I.A,m);const u=I.A&&I.A.locals?I.A.locals:void 0},5118:e=>{var o=[];function r(e){for(var r=-1,c=0;c<o.length;c++)if(o[c].identifier===e){r=c;break}return r}function c(e,c){for(var i={},n=[],t=0;t<e.length;t++){var l=e[t],d=c.base?l[0]+c.base:l[0],g=i[d]||0,s="".concat(d," ").concat(g);i[d]=g+1;var f=r(s),b={css:l[1],media:l[2],sourceMap:l[3],supports:l[4],layer:l[5]};if(-1!==f)o[f].references++,o[f].updater(b);else{var p=a(b,c);c.byIndex=t,o.splice(t,0,{identifier:s,updater:p,references:1})}n.push(s)}return n}function a(e,o){var r=o.domAPI(o);return r.update(e),function(o){if(o){if(o.css===e.css&&o.media===e.media&&o.sourceMap===e.sourceMap&&o.supports===e.supports&&o.layer===e.layer)return;r.update(e=o)}else r.remove()}}e.exports=function(e,a){var i=c(e=e||[],a=a||{});return function(e){e=e||[];for(var n=0;n<i.length;n++){var t=r(i[n]);o[t].references--}for(var l=c(e,a),d=0;d<i.length;d++){var g=r(i[d]);0===o[g].references&&(o[g].updater(),o.splice(g,1))}i=l}}},61:e=>{var o={};e.exports=function(e,r){var c=function(e){if(void 0===o[e]){var r=document.querySelector(e);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}o[e]=r}return o[e]}(e);if(!c)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");c.appendChild(r)}},5354:e=>{e.exports=function(e){var o=document.createElement("style");return e.setAttributes(o,e.attributes),e.insert(o,e.options),o}},4254:(e,o,r)=>{e.exports=function(e){var o=r.nc;o&&e.setAttribute("nonce",o)}},8679:e=>{e.exports=function(e){if("undefined"==typeof document)return{update:function(){},remove:function(){}};var o=e.insertStyleElement(e);return{update:function(r){!function(e,o,r){var c="";r.supports&&(c+="@supports (".concat(r.supports,") {")),r.media&&(c+="@media ".concat(r.media," {"));var a=void 0!==r.layer;a&&(c+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),c+=r.css,a&&(c+="}"),r.media&&(c+="}"),r.supports&&(c+="}");var i=r.sourceMap;i&&"undefined"!=typeof btoa&&(c+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),o.styleTagTransform(c,e,o.options)}(o,e,r)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(o)}}}},9999:e=>{e.exports=function(e,o){if(o.styleSheet)o.styleSheet.cssText=e;else{for(;o.firstChild;)o.removeChild(o.firstChild);o.appendChild(document.createTextNode(e))}}},7156:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNSA1LjhWOEMwLjUgOC44Mjg0MyAxLjE3MTU3IDkuNSAyIDkuNUg0LjhDNS42Mjg0MyA5LjUgNi4zIDguODI4NDMgNi4zIDhWNy4yQzYuMyA2LjkyMzg2IDYuNTIzODYgNi43IDYuOCA2LjdIOEM4LjgyODQzIDYuNyA5LjUgNi4wMjg0MyA5LjUgNS4yVjNDOS41IDIuMTcxNTcgOC44Mjg0MyAxLjUgOCAxLjVINS4yQzQuMzcxNTcgMS41IDMuNyAyLjE3MTU3IDMuNyAzVjMuOEMzLjcgNC4wNzYxNCAzLjQ3NjE0IDQuMyAzLjIgNC4zSDJDMS4xNzE1NyA0LjMgMC41IDQuOTcxNTcgMC41IDUuOFoiIHN0cm9rZT0iIzA0MjEyMSIvPgo8L3N2Zz4K"},1643:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxjaXJjbGUgY3g9IjUuNSIgY3k9IjUuNSIgcj0iMi41IiBmaWxsPSIjM0Y0MzQzIi8+CiAgICA8cmVjdCB4PSIwLjUiIHk9IjAuNSIgd2lkdGg9IjEwIiBoZWlnaHQ9IjEwIiByeD0iNSIgc3Ryb2tlPSIjM0Y0MzQzIi8+Cjwvc3ZnPgo="},859:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxjaXJjbGUgY3g9IjUuNSIgY3k9IjUuNSIgcj0iMy41IiBmaWxsPSIjM0Y0MzQzIi8+CiAgICA8cmVjdCB4PSIwLjUiIHk9IjAuNSIgd2lkdGg9IjEwIiBoZWlnaHQ9IjEwIiByeD0iNSIgc3Ryb2tlPSIjM0Y0MzQzIi8+Cjwvc3ZnPgo="},2286:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxjaXJjbGUgY3g9IjUuNSIgY3k9IjUuNSIgcj0iMyIgc3Ryb2tlPSIjM0Y0MzQzIiAvPgo8L3N2Zz4="},2583:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxwYXRoIGQ9Ik0gNi4yODMgNS4yNzUgTCA2LjMwOSA1LjI3NSBMIDYuNzkyIDYuODU1IEwgNS44MDYgNi44NTUgTCA2LjI4MyA1LjI3NSBaIE0gNy4yOTUgOC41MDEgTCA4LjE0NCA4LjUwMSBMIDYuODI1IDQuMzg3IEwgNS44MTkgNC4zODcgTCA0LjUgOC41MDEgTCA1LjMwMyA4LjUwMSBMIDUuNjEgNy40ODkgTCA2Ljk4OCA3LjQ4OSBMIDcuMjk1IDguNTAxIFoiIGZpbGw9IiMwNDIxMjEiPjwvcGF0aD4KICAgIDxtYXNrIGlkPSJwYXRoLTItaW5zaWRlLTFfNzIwXzc4NjciIGZpbGw9IndoaXRlIj4KICAgICAgICA8cmVjdCB3aWR0aD0iMTAiIGhlaWdodD0iOSIgcng9IjAuODMzIiB4PSIxLjUiIHk9IjIiPjwvcmVjdD4KICAgIDwvbWFzaz4KICAgIDxyZWN0IHdpZHRoPSIxMCIgaGVpZ2h0PSI5IiByeD0iMC44MzMiIHN0cm9rZT0iIzA0MjEyMSIgc3Ryb2tlLXdpZHRoPSIyIiBtYXNrPSJ1cmwoI3BhdGgtMi1pbnNpZGUtMV83MjBfNzg2NykiIHg9IjEuNSIgeT0iMiI+PC9yZWN0Pgo8L3N2Zz4="},7548:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxwYXRoIGQ9Ik0gNy4xMzYgNy42NyBMIDUuNDE4IDcuNjcgTCA1LjkwMiA1LjU5NCBMIDcuNjIgNS41OTQgTCA3LjEzNiA3LjY3IFogTSA2LjUxMyAxMC4yNjQgTCA3LjMyIDEwLjI2NCBMIDcuNzgyIDguMzM4IEwgOS4xODggOC4zMzggTCA5LjMwNCA3LjY3IEwgNy45NDMgNy42NyBMIDguNDI3IDUuNTk0IEwgOS42NzMgNS41OTQgTCA5Ljc5OSA0LjkxNCBMIDguNTg5IDQuOTE0IEwgOS4wNSAzIEwgOC4yNDMgMyBMIDcuNzgyIDQuOTE0IEwgNi4wNjMgNC45MTQgTCA2LjUyNSAzIEwgNS43MTggMyBMIDUuMjU2IDQuOTE0IEwgMy44NjEgNC45MTQgTCAzLjczNCA1LjU5NCBMIDUuMDk1IDUuNTk0IEwgNC42MTEgNy42NyBMIDMuMzY1IDcuNjcgTCAzLjI1IDguMzM4IEwgNC40NDkgOC4zMzggTCAzLjk4OCAxMC4yNjQgTCA0Ljc5NSAxMC4yNjQgTCA1LjI1NiA4LjMzOCBMIDYuOTc0IDguMzM4IEwgNi41MTMgMTAuMjY0IFoiIGZpbGw9ImJsYWNrIj48L3BhdGg+Cjwvc3ZnPg=="},7988:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGZpbHRlcj0idXJsKCNmaWx0ZXIwX2RfNzIwXzc3OTUpIiB0cmFuc2Zvcm09Im1hdHJpeCgxLCAwLCAwLCAxLCAtMy41LCAtMy41KSI+CiAgICAgICAgPG1hc2sgaWQ9InBhdGgtMS1pbnNpZGUtMV83MjBfNzc5NSIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICA8cmVjdCB4PSI1IiB5PSI2IiB3aWR0aD0iOS45OTg5MiIgaGVpZ2h0PSI4LjMzMjQzIiByeD0iMC44MzMyNDQiPjwvcmVjdD4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHJlY3QgeD0iNSIgeT0iNiIgd2lkdGg9IjkuOTk4OTIiIGhlaWdodD0iOC4zMzI0MyIgcng9IjAuODMzMjQ0IiBzdHJva2U9IiMwNDIxMjEiIHN0cm9rZS13aWR0aD0iMiIgbWFzaz0idXJsKCNwYXRoLTEtaW5zaWRlLTFfNzIwXzc3OTUpIj48L3JlY3Q+CiAgICAgICAgPHBhdGggZD0iTTcuMjk2NjMgNlY3LjE0ODMxIiBzdHJva2U9IiMwNDIxMjEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PC9wYXRoPgogICAgICAgIDxwYXRoIGQ9Ik0xMi45MTQ4IDZWNy4xNDgzMSIgc3Ryb2tlPSIjMDQyMTIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiPjwvcGF0aD4KICAgICAgICA8bGluZSB4MT0iNS44MzQyMyIgeTE9IjguODMyNzYiIHgyPSIxNC45OTk5IiB5Mj0iOC44MzI3NiIgc3Ryb2tlPSIjMDQyMTIxIj48L2xpbmU+CiAgICA8L2c+CiAgICA8ZGVmcz4KICAgICAgICA8ZmlsdGVyIGlkPSJmaWx0ZXIwX2RfNzIwXzc3OTUiIHg9IjAiIHk9IjAuNSIgd2lkdGg9IjIyIiBoZWlnaHQ9IjIwLjgzMjUiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzPSJzUkdCIj4KICAgICAgICAgICAgPGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiPjwvZmVGbG9vZD4KICAgICAgICAgICAgPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUFscGhhIiB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMTI3IDAiIHJlc3VsdD0iaGFyZEFscGhhIj48L2ZlQ29sb3JNYXRyaXg+CiAgICAgICAgICAgIDxmZU9mZnNldCBkeD0iMSIgZHk9IjEiPjwvZmVPZmZzZXQ+CiAgICAgICAgICAgIDxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjMiPjwvZmVHYXVzc2lhbkJsdXI+CiAgICAgICAgICAgIDxmZUNvbXBvc2l0ZSBpbjI9ImhhcmRBbHBoYSIgb3BlcmF0b3I9Im91dCI+PC9mZUNvbXBvc2l0ZT4KICAgICAgICAgICAgPGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMC4xNjc3MDkgMCAwIDAgMCAwLjMyOTQ3IDAgMCAwIDAgMC4zMjI0MzcgMCAwIDAgMC4xIDAiPjwvZmVDb2xvck1hdHJpeD4KICAgICAgICAgICAgPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbjI9IkJhY2tncm91bmRJbWFnZUZpeCIgcmVzdWx0PSJlZmZlY3QxX2Ryb3BTaGFkb3dfNzIwXzc3OTUiPjwvZmVCbGVuZD4KICAgICAgICAgICAgPGZlQmxlbmQgbW9kZT0ibm9ybWFsIiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJlZmZlY3QxX2Ryb3BTaGFkb3dfNzIwXzc3OTUiIHJlc3VsdD0ic2hhcGUiPjwvZmVCbGVuZD4KICAgICAgICA8L2ZpbHRlcj4KICAgIDwvZGVmcz4KPC9zdmc+"},1053:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxwYXRoCiAgICAgICAgZD0iTSAyIDAgTCAxMiAwIEMgMTMuMTA1IDAgMTQgMC44OTUgMTQgMiBMIDE0IDEyIEMgMTQgMTMuMTA1IDEzLjEwNSAxNCAxMiAxNCBMIDIgMTQgQyAwLjg5NSAxNCAwIDEzLjEwNSAwIDEyIEwgMCAyIEMgMCAwLjg5NSAwLjg5NSAwIDIgMCBaIE0gMy42NDYgNy4zNTQgTCA1LjY0NiA5LjM1NCBMIDYgOS43MDcgTCA2LjM1NCA5LjM1NCBMIDEwLjg1NCA0Ljg1NCBMIDEwLjE0NiA0LjE0NiBMIDYgOC4yOTMgTCA0LjM1NCA2LjY0NiBaIgogICAgICAgIGZpbGw9IiNGRkZGRkYiPjwvcGF0aD4KICAgIDxwYXRoIGQ9Ik00IDdMNiA5TDEwLjUgNC41IiBzdHlsZT0idmlzaWJpbGl0eTogaGlkZGVuOyI+PC9wYXRoPgo8L3N2Zz4="},7351:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxyZWN0IHg9IjAuNSIgeT0iMC41IiB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHJ4PSIxLjUiIHN0cm9rZT0iI0ZGRkZGRiIgLz4KPC9zdmc+"},5150:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuNSAzTDQuNSAxMSIgc3Ryb2tlPSIjMDQyMTIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPHBhdGggZD0iTTkuNSAzTDkuNSAxMSIgc3Ryb2tlPSIjMDQyMTIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPHBhdGggZD0iTTYgOC41QzYgOS4zMjg0MyA1LjMyODQzIDEwIDQuNSAxMEMzLjY3MTU3IDEwIDMgOS4zMjg0MyAzIDguNUMzIDcuNjcxNTcgMy42NzE1NyA3IDQuNSA3QzUuMzI4NDMgNyA2IDcuNjcxNTcgNiA4LjVaIiBmaWxsPSIjRkRGRkZEIiBzdHJva2U9IiMwNDIxMjEiLz4KPHBhdGggZD0iTTExIDUuNUMxMSA2LjMyODQzIDEwLjMyODQgNyA5LjUgN0M4LjY3MTU3IDcgOCA2LjMyODQzIDggNS41QzggNC42NzE1NyA4LjY3MTU3IDQgOS41IDRDMTAuMzI4NCA0IDExIDQuNjcxNTcgMTEgNS41WiIgZmlsbD0iI0ZERkZGRCIgc3Ryb2tlPSIjMDQyMTIxIi8+Cjwvc3ZnPgo="},6662:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgcng9IjEuNSIgc3Ryb2tlPSIjM0Y0MzQzIi8+CjxyZWN0IHg9IjIiIHk9IjIiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgcng9IjIiIGZpbGw9IiMzRjQzNDMiLz4KPC9zdmc+Cg=="},829:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgcng9IjEuNSIgc3Ryb2tlPSIjM0Y0MzQzIi8+CjxyZWN0IHg9IjQiIHk9IjQiIHdpZHRoPSI2IiBoZWlnaHQ9IjYiIHJ4PSIyIiBmaWxsPSIjM0Y0MzQzIi8+Cjwvc3ZnPgo="},2771:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgcng9IjEuNSIgc3Ryb2tlPSIjM0Y0MzQzIi8+CjxyZWN0IHg9IjUiIHk9IjUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIHJ4PSIyIiBmaWxsPSIjM0Y0MzQzIi8+Cjwvc3ZnPgo="},1696:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjY2MzEgNi41ODE3NkwxMi42NjMxIDkuMDYzMDlMOC44MDMyMyA5LjA2MzA5TDguODAzMjMgMTEuMTMwOUwzLjg0MDU4IDcuODIyNDJMOC44MDMyMyA0LjUxMzk5TDguODAzMjMgNi41ODE3NkwxMi42NjMxIDYuNTgxNzZaIiBzdHJva2U9IiMwNDIxMjEiIHN0cm9rZS13aWR0aD0iMS4xMDI4MSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo="},513:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuNzQ3ODEgOS4wNjMwMkwzLjc0NzgxIDYuNTgxNjlMNy42MDc2NiA2LjU4MTY5TDcuNjA3NjYgNC41MTM5MkwxMi41NzAzIDcuODIyMzVMNy42MDc2NiAxMS4xMzA4TDcuNjA3NjYgOS4wNjMwMkwzLjc0NzgxIDkuMDYzMDJaIiBzdHJva2U9IiMwNDIxMjEiIHN0cm9rZS13aWR0aD0iMS4xMDI4MSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo="},3902:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuMTY4MzIgNi4zNDU0NkM3LjE2ODMyIDYuMDQwOTMgNy40MTUxOSA1Ljc5NDA1IDcuNzE5NzMgNS43OTQwNUM4LjAyNDI2IDUuNzk0MDUgOC4yNzExMyA2LjA0MDkzIDguMjcxMTMgNi4zNDU0Nkw3LjE2ODMyIDYuMzQ1NDZaTTguMTA5NjMgMTIuNTIwOUM3Ljg5NDI5IDEyLjczNjIgNy41NDUxNiAxMi43MzYyIDcuMzI5ODIgMTIuNTIwOUwzLjgyMDcgOS4wMTE3MkMzLjYwNTM2IDguNzk2MzkgMy42MDUzNiA4LjQ0NzI2IDMuODIwNyA4LjIzMTkyQzQuMDM2MDMgOC4wMTY1OCA0LjM4NTE2IDguMDE2NTggNC42MDA1IDguMjMxOTJMNy43MTk3MyAxMS4zNTExTDEwLjgzOSA4LjIzMTkyQzExLjA1NDMgOC4wMTY1OCAxMS40MDM0IDguMDE2NTggMTEuNjE4OCA4LjIzMTkyQzExLjgzNDEgOC40NDcyNiAxMS44MzQxIDguNzk2MzkgMTEuNjE4OCA5LjAxMTcyTDguMTA5NjMgMTIuNTIwOVpNOC4yNzExMyA2LjM0NTQ2TDguMjcxMTMgMTIuMTMwOUw3LjE2ODMyIDEyLjEzMDlMNy4xNjgzMiA2LjM0NTQ2TDguMjcxMTMgNi4zNDU0NloiIGZpbGw9IiMwNDIxMjEiLz4KPGxpbmUgeDE9IjEyLjEzMDkiIHkxPSIzLjg1OTc2IiB4Mj0iMy4zMDgzNiIgeTI9IjMuODU5NzYiIHN0cm9rZT0iIzA0MjEyMSIgc3Ryb2tlLXdpZHRoPSIxLjEwMjgxIi8+Cjwvc3ZnPgo="},1459:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNyAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9IjMuOTg0MTMiIHkxPSI4LjI3MTEiIHgyPSIxMi44MDY2IiB5Mj0iOC4yNzExIiBzdHJva2U9IiMwNDIxMjEiIHN0cm9rZS13aWR0aD0iMS4xMDI4MSIvPgo8L3N2Zz4K"},1311:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNyAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuMTA1OTMgMy40MTExNEw5LjU4NzI2IDMuNDExMTRMOS41ODcyNiA3LjI3MDk5TDExLjY1NSA3LjI3MDk5TDguMzQ2NTkgMTIuMjMzNkw1LjAzODE1IDcuMjcwOTlMNy4xMDU5MyA3LjI3MDk5TDcuMTA1OTMgMy40MTExNFoiIHN0cm9rZT0iIzA0MjEyMSIgc3Ryb2tlLXdpZHRoPSIxLjEwMjgxIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg=="},911:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNyAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuMTU3OTYgOC4zNzM5MkM2Ljg1MzQzIDguMzczOTIgNi42MDY1NSA4LjEyNzA0IDYuNjA2NTUgNy44MjI1MUM2LjYwNjU1IDcuNTE3OTggNi44NTM0MyA3LjI3MTEgNy4xNTc5NiA3LjI3MTFMNy4xNTc5NiA4LjM3MzkyWk0xMy4zMzM0IDcuNDMyNjFDMTMuNTQ4NyA3LjY0Nzk0IDEzLjU0ODcgNy45OTcwNyAxMy4zMzM0IDguMjEyNDFMOS44MjQyMyAxMS43MjE1QzkuNjA4ODkgMTEuOTM2OSA5LjI1OTc2IDExLjkzNjkgOS4wNDQ0MiAxMS43MjE1QzguODI5MDggMTEuNTA2MiA4LjgyOTA4IDExLjE1NzEgOS4wNDQ0MiAxMC45NDE3TDEyLjE2MzYgNy44MjI1MUw5LjA0NDQyIDQuNzAzMjlDOC44MjkwOCA0LjQ4Nzk1IDguODI5MDggNC4xMzg4MiA5LjA0NDQyIDMuOTIzNDhDOS4yNTk3NiAzLjcwODE0IDkuNjA4ODkgMy43MDgxNCA5LjgyNDIyIDMuOTIzNDhMMTMuMzMzNCA3LjQzMjYxWk03LjE1Nzk2IDcuMjcxMUwxMi45NDM0IDcuMjcxMUwxMi45NDM0IDguMzczOTJMNy4xNTc5NiA4LjM3MzkyTDcuMTU3OTYgNy4yNzExWiIgZmlsbD0iIzA0MjEyMSIvPgo8bGluZSB4MT0iNC42NzIyNiIgeTE9IjMuNDExMTMiIHgyPSI0LjY3MjI2IiB5Mj0iMTIuMjMzNiIgc3Ryb2tlPSIjMDQyMTIxIiBzdHJva2Utd2lkdGg9IjEuMTAyODEiLz4KPC9zdmc+Cg=="},4852:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNyAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguODU0MTQgOS4wOTM5OUM4Ljg1NDE0IDkuMzk4NTMgOC42MDcyNyA5LjY0NTQgOC4zMDI3MyA5LjY0NTRDNy45OTgyIDkuNjQ1NCA3Ljc1MTMzIDkuMzk4NTMgNy43NTEzMyA5LjA5Mzk5TDguODU0MTQgOS4wOTM5OVpNNy45MTI4MyAyLjkxODZDOC4xMjgxNyAyLjcwMzI2IDguNDc3MyAyLjcwMzI2IDguNjkyNjQgMi45MTg2TDEyLjIwMTggNi40Mjc3M0MxMi40MTcxIDYuNjQzMDcgMTIuNDE3MSA2Ljk5MjIgMTIuMjAxOCA3LjIwNzUzQzExLjk4NjQgNy40MjI4NyAxMS42MzczIDcuNDIyODcgMTEuNDIyIDcuMjA3NTNMOC4zMDI3MyA0LjA4ODMxTDUuMTgzNTEgNy4yMDc1M0M0Ljk2ODE3IDcuNDIyODcgNC42MTkwNCA3LjQyMjg3IDQuNDAzNyA3LjIwNzUzQzQuMTg4MzcgNi45OTIyIDQuMTg4MzcgNi42NDMwNyA0LjQwMzcgNi40Mjc3M0w3LjkxMjgzIDIuOTE4NlpNNy43NTEzMyA5LjA5Mzk5TDcuNzUxMzMgMy4zMDg1TDguODU0MTQgMy4zMDg1TDguODU0MTQgOS4wOTM5OUw3Ljc1MTMzIDkuMDkzOTlaIiBmaWxsPSIjMDQyMTIxIi8+CjxsaW5lIHgxPSIzLjg5MTM2IiB5MT0iMTEuNTc5NSIgeDI9IjEyLjcxMzkiIHkyPSIxMS41Nzk1IiBzdHJva2U9IiMwNDIxMjEiIHN0cm9rZS13aWR0aD0iMS4xMDI4MSIvPgo8L3N2Zz4K"},9147:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNyAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNjc5OTYgMTIuMjMzNkg3LjE5ODYzVjguMzczNzlINS4xMzA4Nkw4LjQzOTMgMy40MTExM0wxMS43NDc3IDguMzczNzlIOS42Nzk5NlYxMi4yMzM2WiIgc3Ryb2tlPSIjMDQyMTIxIiBzdHJva2Utd2lkdGg9IjEuMTAyODEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K"},9013:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNyAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuOTk5MjcgNy4yNzExQzEwLjMwMzggNy4yNzExIDEwLjU1MDcgNy41MTc5OCAxMC41NTA3IDcuODIyNTFDMTAuNTUwNyA4LjEyNzA0IDEwLjMwMzggOC4zNzM5MiA5Ljk5OTI3IDguMzczOTJMOS45OTkyNyA3LjI3MTFaTTMuODIzODcgOC4yMTI0MUMzLjYwODU0IDcuOTk3MDggMy42MDg1NCA3LjY0Nzk1IDMuODIzODcgNy40MzI2MUw3LjMzMyAzLjkyMzQ4QzcuNTQ4MzQgMy43MDgxNCA3Ljg5NzQ3IDMuNzA4MTQgOC4xMTI4MSAzLjkyMzQ4QzguMzI4MTQgNC4xMzg4MiA4LjMyODE0IDQuNDg3OTUgOC4xMTI4MSA0LjcwMzI5TDQuOTkzNTggNy44MjI1MUw4LjExMjgxIDEwLjk0MTdDOC4zMjgxNSAxMS4xNTcxIDguMzI4MTUgMTEuNTA2MiA4LjExMjgxIDExLjcyMTVDNy44OTc0NyAxMS45MzY5IDcuNTQ4MzQgMTEuOTM2OSA3LjMzMyAxMS43MjE1TDMuODIzODcgOC4yMTI0MVpNOS45OTkyNyA4LjM3MzkyTDQuMjEzNzggOC4zNzM5Mkw0LjIxMzc4IDcuMjcxMUw5Ljk5OTI3IDcuMjcxMUw5Ljk5OTI3IDguMzczOTJaIiBmaWxsPSIjMDQyMTIxIi8+CjxsaW5lIHgxPSIxMi40ODQ3IiB5MT0iMTIuMjMzNiIgeDI9IjEyLjQ4NDciIHkyPSIzLjQxMTE0IiBzdHJva2U9IiMwNDIxMjEiIHN0cm9rZS13aWR0aD0iMS4xMDI4MSIvPgo8L3N2Zz4K"},2217:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxwYXRoIGQ9Ik0gMTUuOTE1IDguNTU1IEwgMTAuMjEzIDE0LjI1NyIgc3Ryb2tlLXdpZHRoPSIxLjAwNDkxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0eWxlPSJzdHJva2U6ICMwNDIxMjEiPgogICAgPC9wYXRoPgogICAgPHBhdGgKICAgICAgICBkPSJNIDEuNjE2IDE0LjMzIEwgMy4yNTEgMTQuMzMgQyA0LjI4IDE0LjMzIDUuMTU4IDEzLjU4NiA1LjMyNyAxMi41NzEgTCA2LjU4NCA0Ljk5MiBDIDYuNzUyIDMuOTc2IDcuNjMgMy4yMzIgOC42NiAzLjIzMiBMIDExLjM0NyAzLjIzMiIKICAgICAgICBzdHJva2Utd2lkdGg9IjEuMDA0OTEiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3R5bGU9InN0cm9rZTojMDQyMTIxIj48L3BhdGg+CiAgICA8cGF0aCBkPSJNIDEwLjIxMiA4LjU1NSBMIDE1LjkxNCAxNC4yNTciIHN0cm9rZS13aWR0aD0iMS4wMDQ5MSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHlsZT0ic3Ryb2tlOiAjMDQyMTIxIj4KICAgIDwvcGF0aD4KPC9zdmc+"},2101:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iNi41IiB5PSI4LjUiIHdpZHRoPSI4IiBoZWlnaHQ9IjciIHN0cm9rZT0iIzA0MjEyMSIvPgo8cGF0aCBkPSJNOCA4VjcuODA3NzZDOCA2LjI1NzA4IDkuMjU3MDggNSAxMC44MDc4IDVIMTAuOTM4NEMxMi4xNSA1IDEzLjIwNjEgNS44MjQ1OSAxMy41IDdWNyIgc3Ryb2tlPSIjMDQyMTIxIi8+CjxwYXRoIGQ9Ik0xMS41IDEyQzExLjUgMTIuNTUyMyAxMS4wNTIzIDEzIDEwLjUgMTNDOS45NDc3MiAxMyA5LjUgMTIuNTUyMyA5LjUgMTJDOS41IDExLjQ0NzcgOS45NDc3MiAxMSAxMC41IDExQzExLjA1MjMgMTEgMTEuNSAxMS40NDc3IDExLjUgMTJaIiBmaWxsPSIjMDQyMTIxIi8+Cjwvc3ZnPgo="},7467:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxyZWN0IHg9IjMiIHk9IjQiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxIiBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij4KICAgIDwvcmVjdD4KICAgIDxyZWN0IHg9IjMiIHk9IjYuOTczIiB3aWR0aD0iMTUiIGhlaWdodD0iMSIKICAgICAgICBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij48L3JlY3Q+CiAgICA8cmVjdCB4PSIzIiB5PSIxMCIgd2lkdGg9IjE1IiBoZWlnaHQ9IjEiIHN0eWxlPSJmaWxsOiByZ2IoMjE2LCAyMTYsIDIxNik7IHN0cm9rZTogcmdiKDAsIDAsIDApOyBzdHJva2Utd2lkdGg6IDBweDsiPgogICAgPC9yZWN0PgogICAgPHJlY3QgeD0iMyIgeT0iMTMiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxIiBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij4KICAgIDwvcmVjdD4KICAgIDxyZWN0IHg9IjMiIHk9IjE2IiB3aWR0aD0iMTUiIGhlaWdodD0iMSIgc3R5bGU9ImZpbGw6IHJnYigyMTYsIDIxNiwgMjE2KTsgc3Ryb2tlOiByZ2IoMCwgMCwgMCk7IHN0cm9rZS13aWR0aDogMHB4OyI+CiAgICA8L3JlY3Q+CiAgICA8cmVjdCBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7IiB5PSI0IiB3aWR0aD0iMyIgaGVpZ2h0PSIxMyIgeD0iNiI+CiAgICA8L3JlY3Q+Cjwvc3ZnPg=="},9658:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxyZWN0IHg9IjMiIHk9IjQiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxIiBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij4KICAgIDwvcmVjdD4KICAgIDxyZWN0IHg9IjMiIHk9IjYuOTczIiB3aWR0aD0iMTUiIGhlaWdodD0iMSIKICAgICAgICBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij48L3JlY3Q+CiAgICA8cmVjdCB4PSIzIiB5PSIxMCIgd2lkdGg9IjE1IiBoZWlnaHQ9IjEiIHN0eWxlPSJmaWxsOiByZ2IoMjE2LCAyMTYsIDIxNik7IHN0cm9rZTogcmdiKDAsIDAsIDApOyBzdHJva2Utd2lkdGg6IDBweDsiPgogICAgPC9yZWN0PgogICAgPHJlY3QgeD0iMyIgeT0iMTMiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxIiBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij4KICAgIDwvcmVjdD4KICAgIDxyZWN0IHg9IjMiIHk9IjE2IiB3aWR0aD0iMTUiIGhlaWdodD0iMSIgc3R5bGU9ImZpbGw6IHJnYigyMTYsIDIxNiwgMjE2KTsgc3Ryb2tlOiByZ2IoMCwgMCwgMCk7IHN0cm9rZS13aWR0aDogMHB4OyI+CiAgICA8L3JlY3Q+CiAgICA8cmVjdCBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7IiB5PSI3IiB3aWR0aD0iNiIgaGVpZ2h0PSI3IiB4PSI2Ij4KICAgIDwvcmVjdD4KPC9zdmc+"},575:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxyZWN0IHg9IjMiIHk9IjQiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxIiBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij4KICAgIDwvcmVjdD4KICAgIDxyZWN0IHg9IjMiIHk9IjYuOTczIiB3aWR0aD0iMTUiIGhlaWdodD0iNCIKICAgICAgICBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij48L3JlY3Q+CiAgICA8cmVjdCB4PSIzIiB5PSIxMCIgd2lkdGg9IjE1IiBoZWlnaHQ9IjEiIHN0eWxlPSJmaWxsOiByZ2IoMjE2LCAyMTYsIDIxNik7IHN0cm9rZTogcmdiKDAsIDAsIDApOyBzdHJva2Utd2lkdGg6IDBweDsiPgogICAgPC9yZWN0PgogICAgPHJlY3QgeD0iMyIgeT0iMTMiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxIiBzdHlsZT0iZmlsbDogcmdiKDIxNiwgMjE2LCAyMTYpOyBzdHJva2U6IHJnYigwLCAwLCAwKTsgc3Ryb2tlLXdpZHRoOiAwcHg7Ij4KICAgIDwvcmVjdD4KICAgIDxyZWN0IHg9IjMiIHk9IjE2IiB3aWR0aD0iMTUiIGhlaWdodD0iMSIgc3R5bGU9ImZpbGw6IHJnYigyMTYsIDIxNiwgMjE2KTsgc3Ryb2tlOiByZ2IoMCwgMCwgMCk7IHN0cm9rZS13aWR0aDogMHB4OyI+CiAgICA8L3JlY3Q+Cjwvc3ZnPg=="},7785:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgMTRMMTMuNzkyOSA1LjIwNzExQzE0LjE4MzQgNC44MTY1OCAxNC44MTY2IDQuODE2NTggMTUuMjA3MSA1LjIwNzExTDE1Ljc5MjkgNS43OTI4OUMxNi4xODM0IDYuMTgzNDIgMTYuMTgzNCA2LjgxNjU4IDE1Ljc5MjkgNy4yMDcxMUw3IDE2SDVWMTRaIiBzdHJva2U9IiMwNDIxMjEiLz4KPHBhdGggZD0iTTEzIDEwLjVMMTAuNSA4TDEyIDYuNUwxNC41IDlMMTMgMTAuNVoiIGZpbGw9IiMwNDIxMjEiLz4KPHBhdGggZD0iTTE1IDguNUwxMi41IDZMMTMuNzkyOSA0LjcwNzExQzE0LjE4MzQgNC4zMTY1OCAxNC44MTY2IDQuMzE2NTggMTUuMjA3MSA0LjcwNzExTDE2LjI5MjkgNS43OTI4OUMxNi42ODM0IDYuMTgzNDIgMTYuNjgzNCA2LjgxNjU4IDE2LjI5MjkgNy4yMDcxMUwxNSA4LjVaIiBmaWxsPSIjMDQyMTIxIi8+Cjwvc3ZnPgo="},3154:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgNkwxNC41IDE1LjUiIHN0cm9rZT0iIzA0MjEyMSIvPgo8cGF0aCBkPSJNOSAxMEw1IDE0VjE2SDdMMTEgMTIiIHN0cm9rZT0iIzA0MjEyMSIvPgo8cGF0aCBkPSJNMTMgMTAuNUwxMC41IDhMMTIgNi41TDE0LjUgOUwxMyAxMC41WiIgZmlsbD0iIzA0MjEyMSIvPgo8cGF0aCBkPSJNMTUgOC41TDEyLjUgNkwxMy43OTI5IDQuNzA3MTFDMTQuMTgzNCA0LjMxNjU4IDE0LjgxNjYgNC4zMTY1OCAxNS4yMDcxIDQuNzA3MTFMMTYuMjkyOSA1Ljc5Mjg5QzE2LjY4MzQgNi4xODM0MiAxNi42ODM0IDYuODE2NTggMTYuMjkyOSA3LjIwNzExTDE1IDguNVoiIGZpbGw9IiMwNDIxMjEiLz4KPC9zdmc+Cg=="},5469:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iNi41IiB5PSI5LjUiIHdpZHRoPSI4IiBoZWlnaHQ9IjciIHN0cm9rZT0iIzA0MjEyMSIvPgo8cGF0aCBkPSJNMTMgOVY4LjVDMTMgNy4xMTkyOSAxMS44ODA3IDYgMTAuNSA2VjZDOS4xMTkyOSA2IDggNy4xMTkyOSA4IDguNVY5IiBzdHJva2U9IiMwNDIxMjEiLz4KPHBhdGggZD0iTTExLjQ5MTEgMTNDMTEuNDkxMSAxMy41NTIzIDExLjA0MzQgMTQgMTAuNDkxMSAxNEM5LjkzODc4IDE0IDkuNDkxMDcgMTMuNTUyMyA5LjQ5MTA3IDEzQzkuNDkxMDcgMTIuNDQ3NyA5LjkzODc4IDEyIDEwLjQ5MTEgMTJDMTEuMDQzNCAxMiAxMS40OTExIDEyLjQ0NzcgMTEuNDkxMSAxM1oiIGZpbGw9IiMwNDIxMjEiLz4KPGxpbmUgeDE9IjQuNSIgeTE9IjUiIHgyPSI0LjUiIHkyPSIxNyIgc3Ryb2tlPSIjMDQyMTIxIi8+CjxsaW5lIHgxPSIxNi41IiB5MT0iNSIgeDI9IjE2LjUiIHkyPSIxNyIgc3Ryb2tlPSIjMDQyMTIxIi8+Cjwvc3ZnPgo="},8130:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxsaW5lIHkxPSItMC41IiB4Mj0iMTMuNDUzNiIgeTI9Ii0wLjUiIHRyYW5zZm9ybT0ibWF0cml4KDAuNjY4OTY1IDAuNzQzMjk0IC0wLjY2ODk2NSAwLjc0MzI5NCA2IDYpIgogICAgICAgIHN0cm9rZT0iIzA0MjEyMSIgLz4KICAgIDxsaW5lIHkxPSItMC41IiB4Mj0iMTMuNDUzNiIgeTI9Ii0wLjUiIHRyYW5zZm9ybT0ibWF0cml4KC0wLjY2ODk2NSAwLjc0MzI5NCAwLjY2ODk2NSAwLjc0MzI5NCAxNiA2KSIKICAgICAgICBzdHJva2U9IiMwNDIxMjEiIC8+Cjwvc3ZnPg=="},4792:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNSIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDUgMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjMuNDk5OTYiIGN5PSIxMS4wMDAxIiByPSIwLjgzMzMzMyIgZmlsbD0iIzZFNkU2RSIvPgo8Y2lyY2xlIGN4PSIwLjgzMzMzMyIgY3k9IjExLjAwMDEiIHI9IjAuODMzMzMzIiBmaWxsPSIjNkU2RTZFIi8+CjxjaXJjbGUgY3g9IjMuNDk5OTYiIGN5PSI3LjY2NjgzIiByPSIwLjgzMzMzMyIgZmlsbD0iIzZFNkU2RSIvPgo8Y2lyY2xlIGN4PSIwLjgzMzMzMyIgY3k9IjcuNjY2ODMiIHI9IjAuODMzMzMzIiBmaWxsPSIjNkU2RTZFIi8+CjxjaXJjbGUgY3g9IjMuNDk5OTYiIGN5PSI0LjMzMzMzIiByPSIwLjgzMzMzMyIgZmlsbD0iIzZFNkU2RSIvPgo8Y2lyY2xlIGN4PSIwLjgzMzMzMyIgY3k9IjQuMzMzMzMiIHI9IjAuODMzMzMzIiBmaWxsPSIjNkU2RTZFIi8+CjxjaXJjbGUgY3g9IjMuNDk5OTYiIGN5PSIxLjAwMDA4IiByPSIwLjgzMzMzMyIgZmlsbD0iIzZFNkU2RSIvPgo8Y2lyY2xlIGN4PSIwLjgzMzMzMyIgY3k9IjEuMDAwMDgiIHI9IjAuODMzMzMzIiBmaWxsPSIjNkU2RTZFIi8+Cjwvc3ZnPgo="},4148:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI0IiB2aWV3Qm94PSIwIDAgNiA0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDMuMTc2ODcgMy4xNzY4N0w1LjM1Mzc0IDEiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIwLjcyNTYyNCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo="},9376:e=>{e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI0IiB2aWV3Qm94PSIwIDAgNiA0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSAxTDMuMTc2ODcgMy4xNzY4N0w1LjM1Mzc0IDEiIHN0cm9rZT0iIzA0MjEyMSIgc3Ryb2tlLXdpZHRoPSIwLjcyNTYyNCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo="}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var _JUPYTERLAB;(()=>{"use strict";var e,r,t,o,n,a,i,u,s,l,f,p,d,c,h,v,b,m,y,g,w,_,j,S,E,k,x,P={6062:(e,r,t)=>{var o={"./index":()=>t.e(253).then((()=>()=>t(5253))),"./extension":()=>t.e(253).then((()=>()=>t(5253))),"./style":()=>t.e(905).then((()=>()=>t(9905)))},n=(e,r)=>(t.R=r,r=t.o(o,e)?o[e]():Promise.resolve().then((()=>{throw new Error('Module "'+e+'" does not exist in container.')})),t.R=void 0,r),a=(e,r)=>{if(t.S){var o="default",n=t.S[o];if(n&&n!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[o]=e,t.I(o,r)}};t.d(r,{get:()=>n,init:()=>a})}},O={};function T(e){var r=O[e];if(void 0!==r)return r.exports;var t=O[e]={id:e,loaded:!1,exports:{}};return P[e](t,t.exports,T),t.loaded=!0,t.exports}T.m=P,T.c=O,T.amdO={},e="function"==typeof Symbol?Symbol("webpack queues"):"__webpack_queues__",r="function"==typeof Symbol?Symbol("webpack exports"):"__webpack_exports__",t="function"==typeof Symbol?Symbol("webpack error"):"__webpack_error__",o=e=>{e&&e.d<1&&(e.d=1,e.forEach((e=>e.r--)),e.forEach((e=>e.r--?e.r++:e())))},T.a=(n,a,i)=>{var u;i&&((u=[]).d=-1);var s,l,f,p=new Set,d=n.exports,c=new Promise(((e,r)=>{f=r,l=e}));c[r]=d,c[e]=e=>(u&&e(u),p.forEach(e),c.catch((e=>{}))),n.exports=c,a((n=>{var a;s=(n=>n.map((n=>{if(null!==n&&"object"==typeof n){if(n[e])return n;if(n.then){var a=[];a.d=0,n.then((e=>{i[r]=e,o(a)}),(e=>{i[t]=e,o(a)}));var i={};return i[e]=e=>e(a),i}}var u={};return u[e]=e=>{},u[r]=n,u})))(n);var i=()=>s.map((e=>{if(e[t])throw e[t];return e[r]})),l=new Promise((r=>{(a=()=>r(i)).r=0;var t=e=>e!==u&&!p.has(e)&&(p.add(e),e&&!e.d&&(a.r++,e.push(a)));s.map((r=>r[e](t)))}));return a.r?l:i()}),(e=>(e?f(c[t]=e):l(d),o(u)))),u&&u.d<0&&(u.d=0)},T.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return T.d(r,{a:r}),r},T.d=(e,r)=>{for(var t in r)T.o(r,t)&&!T.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},T.f={},T.e=e=>Promise.all(Object.keys(T.f).reduce(((r,t)=>(T.f[t](e,r),r)),[])),T.u=e=>e+"."+{253:"6f17b87bb4eb1e656365",905:"d3bbc3d5954582d507bb"}[e]+".js?v="+{253:"6f17b87bb4eb1e656365",905:"d3bbc3d5954582d507bb"}[e],T.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),T.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw new Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e),T.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),n={},a="@finos/perspective-jupyterlab:",T.l=(e,r,t,o)=>{if(n[e])n[e].push(r);else{var i,u;if(void 0!==t)for(var s=document.getElementsByTagName("script"),l=0;l<s.length;l++){var f=s[l];if(f.getAttribute("src")==e||f.getAttribute("data-webpack")==a+t){i=f;break}}i||(u=!0,(i=document.createElement("script")).charset="utf-8",i.timeout=120,T.nc&&i.setAttribute("nonce",T.nc),i.setAttribute("data-webpack",a+t),i.src=e),n[e]=[r];var p=(r,t)=>{i.onerror=i.onload=null,clearTimeout(d);var o=n[e];if(delete n[e],i.parentNode&&i.parentNode.removeChild(i),o&&o.forEach((e=>e(t))),r)return r(t)},d=setTimeout(p.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=p.bind(null,i.onerror),i.onload=p.bind(null,i.onload),u&&document.head.appendChild(i)}},T.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{T.S={};var e={},r={};T.I=(t,o)=>{o||(o=[]);var n=r[t];if(n||(n=r[t]={}),!(o.indexOf(n)>=0)){if(o.push(n),e[t])return e[t];T.o(T.S,t)||(T.S[t]={});var a=T.S[t],i="@finos/perspective-jupyterlab",u=[];return"default"===t&&((e,r,t,o)=>{var n=a[e]=a[e]||{},u=n[r];(!u||!u.loaded&&(1!=!u.eager?o:i>u.from))&&(n[r]={get:()=>T.e(253).then((()=>()=>T(5253))),from:i,eager:!1})})("@finos/perspective-jupyterlab","3.0.0-rc.1"),e[t]=u.length?Promise.all(u).then((()=>e[t]=1)):1}}})(),(()=>{var e;T.g.importScripts&&(e=T.g.location+"");var r=T.g.document;if(!e&&r&&(r.currentScript&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var o=t.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=t[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),T.p=e})(),i=e=>{var r=e=>e.split(".").map((e=>+e==e?+e:e)),t=/^([^-+]+)?(?:-([^+]+))?(?:\+(.+))?$/.exec(e),o=t[1]?r(t[1]):[];return t[2]&&(o.length++,o.push.apply(o,r(t[2]))),t[3]&&(o.push([]),o.push.apply(o,r(t[3]))),o},u=(e,r)=>{e=i(e),r=i(r);for(var t=0;;){if(t>=e.length)return t<r.length&&"u"!=(typeof r[t])[0];var o=e[t],n=(typeof o)[0];if(t>=r.length)return"u"==n;var a=r[t],u=(typeof a)[0];if(n!=u)return"o"==n&&"n"==u||"s"==u||"u"==n;if("o"!=n&&"u"!=n&&o!=a)return o<a;t++}},s=e=>{var r=e[0],t="";if(1===e.length)return"*";if(r+.5){t+=0==r?">=":-1==r?"<":1==r?"^":2==r?"~":r>0?"=":"!=";for(var o=1,n=1;n<e.length;n++)o--,t+="u"==(typeof(i=e[n]))[0]?"-":(o>0?".":"")+(o=2,i);return t}var a=[];for(n=1;n<e.length;n++){var i=e[n];a.push(0===i?"not("+u()+")":1===i?"("+u()+" || "+u()+")":2===i?a.pop()+" "+a.pop():s(i))}return u();function u(){return a.pop().replace(/^\((.+)\)$/,"$1")}},l=(e,r)=>{if(0 in e){r=i(r);var t=e[0],o=t<0;o&&(t=-t-1);for(var n=0,a=1,u=!0;;a++,n++){var s,f,p=a<e.length?(typeof e[a])[0]:"";if(n>=r.length||"o"==(f=(typeof(s=r[n]))[0]))return!u||("u"==p?a>t&&!o:""==p!=o);if("u"==f){if(!u||"u"!=p)return!1}else if(u)if(p==f)if(a<=t){if(s!=e[a])return!1}else{if(o?s>e[a]:s<e[a])return!1;s!=e[a]&&(u=!1)}else if("s"!=p&&"n"!=p){if(o||a<=t)return!1;u=!1,a--}else{if(a<=t||f<p!=o)return!1;u=!1}else"s"!=p&&"n"!=p&&(u=!1,a--)}}var d=[],c=d.pop.bind(d);for(n=1;n<e.length;n++){var h=e[n];d.push(1==h?c()|c():2==h?c()&c():h?l(h,r):!c())}return!!c()},f=(e,r)=>{var t=T.S[e];if(!t||!T.o(t,r))throw new Error("Shared module "+r+" doesn't exist in shared scope "+e);return t},p=(e,r)=>{var t=e[r];return(r=Object.keys(t).reduce(((e,r)=>!e||u(e,r)?r:e),0))&&t[r]},d=(e,r)=>{var t=e[r];return Object.keys(t).reduce(((e,r)=>!e||!t[e].loaded&&u(e,r)?r:e),0)},c=(e,r,t,o)=>"Unsatisfied version "+t+" from "+(t&&e[r][t].from)+" of shared singleton module "+r+" (required "+s(o)+")",h=(e,r,t,o)=>{var n=d(e,t);return l(o,n)||m(c(e,t,n,o)),g(e[t][n])},v=(e,r,t)=>{var o=e[r];return(r=Object.keys(o).reduce(((e,r)=>!l(t,r)||e&&!u(e,r)?e:r),0))&&o[r]},b=(e,r,t,o)=>{var n=e[t];return"No satisfying version ("+s(o)+") of shared module "+t+" found in shared scope "+r+".\nAvailable versions: "+Object.keys(n).map((e=>e+" from "+n[e].from)).join(", ")},m=e=>{"undefined"!=typeof console&&console.warn&&console.warn(e)},y=(e,r,t,o)=>{m(b(e,r,t,o))},g=e=>(e.loaded=1,e.get()),_=(w=e=>function(r,t,o,n){var a=T.I(r);return a&&a.then?a.then(e.bind(e,r,T.S[r],t,o,n)):e(r,T.S[r],t,o,n)})(((e,r,t,o)=>(f(e,t),g(v(r,t,o)||y(r,e,t,o)||p(r,t))))),j=w(((e,r,t,o)=>(f(e,t),h(r,0,t,o)))),S={},E={405:()=>_("default","@jupyterlab/docregistry",[1,4,2,3]),5256:()=>j("default","@lumino/widgets",[1,2,3,1,,"alpha",0]),6110:()=>j("default","@jupyterlab/apputils",[1,4,3,3]),7635:()=>j("default","@jupyterlab/coreutils",[1,6,2,3]),8751:()=>j("default","@jupyterlab/application",[1,4,2,3]),9498:()=>j("default","@jupyter-widgets/base",[,[-1,5],[1,2],0,[0,2],2,2])},k={253:[405,5256,6110,7635,8751,9498]},x={},T.f.consumes=(e,r)=>{T.o(k,e)&&k[e].forEach((e=>{if(T.o(S,e))return r.push(S[e]);if(!x[e]){var t=r=>{S[e]=0,T.m[e]=t=>{delete T.c[e],t.exports=r()}};x[e]=!0;var o=r=>{delete S[e],T.m[e]=t=>{throw delete T.c[e],r}};try{var n=E[e]();n.then?r.push(S[e]=n.then(t).catch(o)):t(n)}catch(e){o(e)}}}))},(()=>{T.b=document.baseURI||self.location.href;var e={58:0};T.f.j=(r,t)=>{var o=T.o(e,r)?e[r]:void 0;if(0!==o)if(o)t.push(o[2]);else{var n=new Promise(((t,n)=>o=e[r]=[t,n]));t.push(o[2]=n);var a=T.p+T.u(r),i=new Error;T.l(a,(t=>{if(T.o(e,r)&&(0!==(o=e[r])&&(e[r]=void 0),o)){var n=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;i.message="Loading chunk "+r+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}}),"chunk-"+r,r)}};var r=(r,t)=>{var o,n,[a,i,u]=t,s=0;if(a.some((r=>0!==e[r]))){for(o in i)T.o(i,o)&&(T.m[o]=i[o]);u&&u(T)}for(r&&r(t);s<a.length;s++)n=a[s],T.o(e,n)&&e[n]&&e[n][0](),e[n]=0},t=self.webpackChunk_finos_perspective_jupyterlab=self.webpackChunk_finos_perspective_jupyterlab||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),T.nc=void 0;var A=T(6062);(_JUPYTERLAB=void 0===_JUPYTERLAB?{}:_JUPYTERLAB)["@finos/perspective-jupyterlab"]=A})();
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"packages": [
|
|
3
|
+
{
|
|
4
|
+
"name": "css-loader",
|
|
5
|
+
"versionInfo": "6.11.0",
|
|
6
|
+
"licenseId": "MIT",
|
|
7
|
+
"extractedText": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "style-loader",
|
|
11
|
+
"versionInfo": "3.3.4",
|
|
12
|
+
"licenseId": "MIT",
|
|
13
|
+
"extractedText": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: perspective-python
|
|
3
|
+
Version: 3.0.0rc1
|
|
4
|
+
Classifier: Programming Language :: Rust
|
|
5
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
7
|
+
Summary: A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
|
|
8
|
+
Home-Page: https://perspective.finos.org
|
|
9
|
+
Author: Andrew Stein <steinlink@gmail.com>
|
|
10
|
+
Author-email: Andrew Stein <steinlink@gmail.com>
|
|
11
|
+
License: Apache-2.0
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
|
+
Project-URL: Source Code, https://github.com/finos/perspective
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
perspective/__init__.py,sha256=kfYRgygIe9uaHSS-obrwjEfkXbhIoYHX-F2ju4cmP9A,3509
|
|
2
|
+
perspective/perspective.pyd,sha256=qhXiXpNffxk3Ug9pIIQL_iJzf0JSjLwSxUZZ2FtrnYM,12222464
|
|
3
|
+
perspective/extension/finos-perspective-nbextension.json,sha256=1mjNV3iYjLx5-fDMaEqctP5_a4glwQ1YHtAsg-UHxZ0,90
|
|
4
|
+
perspective/handlers/__init__.py,sha256=U53My8sZ3y-cCQ-gXy7ux2H2f9cTGdjevzBb7-7dZBs,2166
|
|
5
|
+
perspective/handlers/aiohttp.py,sha256=SgHpnKoUjOHSXuJ0_mtnjeerJtUymkeTUC4qkGry8yk,3347
|
|
6
|
+
perspective/handlers/starlette.py,sha256=6YqNw6NheTfZUnE0IaOww0tBjMVdFortMc6Lx12NNz4,3266
|
|
7
|
+
perspective/handlers/tornado.py,sha256=Y7whFk9DMJTf50pffOqAC78lG7Tu0aQWq7aYfhb-96g,3519
|
|
8
|
+
perspective/templates/exported_widget.html.jinja,sha256=SkiSG5C7UdLpHFZ1lGjXanLYmNlOvnb1O3-JN6BeTMI,1758
|
|
9
|
+
perspective/tests/__init__.py,sha256=M6CTJyERbmmqyyh0Y67m-MSXky2soYPRYg3N8xsDR6E,1907
|
|
10
|
+
perspective/tests/conftest.py,sha256=Jbubjl9Y--ciVvHO9gnqWlJ0F1Xf_Xir_ZvF3C-oHY8,10127
|
|
11
|
+
perspective/tests/core/__init__.py,sha256=M6CTJyERbmmqyyh0Y67m-MSXky2soYPRYg3N8xsDR6E,1907
|
|
12
|
+
perspective/tests/core/test_async.py,sha256=rVXHPwBMXbvPg5s87LaFWZ5v23_T_D_aAjx5EfdqzTk,14762
|
|
13
|
+
perspective/tests/core/test_threadpool.py,sha256=vriX6cPpuY4eMoSt4obtcxHf34v618M8fzzrQUsoTYA,3088
|
|
14
|
+
perspective/tests/server/__init__.py,sha256=M6CTJyERbmmqyyh0Y67m-MSXky2soYPRYg3N8xsDR6E,1907
|
|
15
|
+
perspective/tests/server/test_server.py,sha256=s2G0VKJ8bT3EXDiKX0vt1Xr9tl67Ex7Klk49HCfjTkY,36445
|
|
16
|
+
perspective/tests/server/test_session.py,sha256=ZWeij-ioXY1t9l0fYwMyKjfHIzrFuDNobw30jluBMdk,3202
|
|
17
|
+
perspective/tests/single_threaded/test_single_threaded.py,sha256=tdp78VbpA_RLbxi9asISI30Xc2qJ9w50lC6wOG3OGis,3378
|
|
18
|
+
perspective/tests/table/__init__.py,sha256=M6CTJyERbmmqyyh0Y67m-MSXky2soYPRYg3N8xsDR6E,1907
|
|
19
|
+
perspective/tests/table/object_sequence.py,sha256=3ApIgOaFswIio0hbr6h-pbya6RbODRgEWT_AW5MLn98,13675
|
|
20
|
+
perspective/tests/table/test_delete.py,sha256=KnrjDZ7kQrfxb_ARO1pjMwzveF8Rab7PaDZy4nmotn8,4367
|
|
21
|
+
perspective/tests/table/test_exception.py,sha256=o3ztTBzDi4VkpRuXmP3xzuN_9_ebflIymtrDeoHVXS8,3230
|
|
22
|
+
perspective/tests/table/test_leaks.py,sha256=c-y1blVE1U9IAMVRDIqCl_19FYISk9MnRtS86cVVMRs,2954
|
|
23
|
+
perspective/tests/table/test_ports.py,sha256=ZEU2sVp9Loqrano0XOo9hkLq7Olyn47jr21YSNuS9Uc,6775
|
|
24
|
+
perspective/tests/table/test_remove.py,sha256=jPgEUro4KCXswrUuxm6-y3Nbl-z91Yt1uXK9ps4s9LI,4637
|
|
25
|
+
perspective/tests/table/test_table.py,sha256=WTQoriGwKHKU12q5s3JqRKVuL03o1-_ZS-4BdKKSxLg,20564
|
|
26
|
+
perspective/tests/table/test_table_arrow.py,sha256=6OMUYnB9lOA4IV8MfbzQYTRMqiXA2IGd6GkRciDPrH4,18292
|
|
27
|
+
perspective/tests/table/test_table_datetime.py,sha256=mLbOUb9Ea9fy0JvXGJvcqRiLm2A-e1F74QZKdOuiZHE,78540
|
|
28
|
+
perspective/tests/table/test_table_infer.py,sha256=n5C5wbgLPbm9DRQoTDvtzRuDibz6146xt7Ac7Ke-PIA,8652
|
|
29
|
+
perspective/tests/table/test_table_limit.py,sha256=yWX0AEOPH_Z0V2w-n-uQROJhrcz6D_FlFL3c9N0SMsA,2953
|
|
30
|
+
perspective/tests/table/test_table_numpy.py,sha256=Gp0nSNQiDx2opDWQDK3FAVmNtCdpZ7KJeUEhYGypbwI,36162
|
|
31
|
+
perspective/tests/table/test_table_pandas.py,sha256=UijPfPaxsnSGUfFekwpTKl79CPXkLHfLhsf5Isc5y9c,37401
|
|
32
|
+
perspective/tests/table/test_to_arrow.py,sha256=rAwX1YC2brfXVmhlDCZHaXMehbrbRwv5zK96pycxl3Y,16742
|
|
33
|
+
perspective/tests/table/test_to_arrow_lz4.py,sha256=sRowNvhT9Rp__y1_F5Jht0rKOSFmCpLI8zTPdODgtms,2615
|
|
34
|
+
perspective/tests/table/test_to_format.py,sha256=Fa2I1EtW3MT80QcOathfTGPGwaGect0kwKDSRGgdNlQ,39168
|
|
35
|
+
perspective/tests/table/test_update.py,sha256=nfdknNyoUWuQbv84d8nCZupvp2alERjJuUkuzu4iUYk,22426
|
|
36
|
+
perspective/tests/table/test_update_arrow.py,sha256=7C5ov_ES3zUUbRClG_Ykq10EhPelbb4QW3kpANeBTK4,38007
|
|
37
|
+
perspective/tests/table/test_update_numpy.py,sha256=0IRWnq9hoTUZ4jxVVB3D1dY-ZoBYBeG4aaqMA_r2p6I,9762
|
|
38
|
+
perspective/tests/table/test_update_pandas.py,sha256=WKhdcrXbgtEx9aDkUgcRXjDrBgD49p0VR7EVNob52nY,8660
|
|
39
|
+
perspective/tests/table/test_view.py,sha256=iKAAigasj9jh1t9LD5Dcl6mK1JK1rfJNXg1rafo3IHk,76095
|
|
40
|
+
perspective/tests/table/test_view_expression.py,sha256=WoCcsoSmHRaHGOkbltrQpW7Inf4suZQppOShpVr9NqY,69629
|
|
41
|
+
perspective/tests/table/arrow/date32.arrow,sha256=q57ly9CDx_v5Y5CZmegpF-15-aA-FUB4nI61zl8Je5k,1112
|
|
42
|
+
perspective/tests/table/arrow/date64.arrow,sha256=YFMBWGbaX2Hrggs13QLzDLW2vPYGK1py37GmjUXEfe4,1576
|
|
43
|
+
perspective/tests/table/arrow/dict.arrow,sha256=LxBiAj2NUSNN-iZXhtW7vTkDSbGuPCRI0_eMjP_UhDg,936
|
|
44
|
+
perspective/tests/table/arrow/dict_update.arrow,sha256=YgwXur8kP3gFw-aWi0WAGAo8AOWTbARUALirnJ_uu4E,920
|
|
45
|
+
perspective/tests/table/arrow/int_float_str.arrow,sha256=70m_h4F0neaTjTouVTBVINHjYAy3p54hUS68Im5lCe0,584
|
|
46
|
+
perspective/tests/table/arrow/int_float_str_file.arrow,sha256=voq5C8bd9nQ9IzlTa0a5kx1e2rIr-snARvIL74luEtA,866
|
|
47
|
+
perspective/tests/table/arrow/int_float_str_update.arrow,sha256=GVb48Cb3x-nuHqoTKvL5QiGk3z1Q0OD_1ZuGrVsfJFQ,544
|
|
48
|
+
perspective/tests/viewer/__init__.py,sha256=M6CTJyERbmmqyyh0Y67m-MSXky2soYPRYg3N8xsDR6E,1907
|
|
49
|
+
perspective/tests/viewer/test_validate.py,sha256=A1hc_jHxpUoej2XOf-OjhHcNOQNh4juB9oKzuh8bPx4,4056
|
|
50
|
+
perspective/tests/viewer/test_viewer.py,sha256=FMTyoK_3-HMQANygGhmNKEFE9R1bPAiHZUVnPUisYdI,9767
|
|
51
|
+
perspective/tests/widget/__init__.py,sha256=M6CTJyERbmmqyyh0Y67m-MSXky2soYPRYg3N8xsDR6E,1907
|
|
52
|
+
perspective/tests/widget/test_widget.py,sha256=7gNjUfiB85lwXfR1orBngPHcXPcul4Hy4hVHP8Mz9ZU,10600
|
|
53
|
+
perspective/tests/widget/test_widget_pandas.py,sha256=AkFEK_1hl7yOV-1Q6We6sPLeJFfuWU0aCx4ebn8px1I,14944
|
|
54
|
+
perspective/viewer/__init__.py,sha256=zazzGh8vY_-lWYIgxjWzgYoSfZzTtp6skzKwDnPjhkg,1979
|
|
55
|
+
perspective/viewer/validate.py,sha256=PDKzAwyuc3CuwumYUXtADvIkWyNTBbPXnBkwaYibYLM,2164
|
|
56
|
+
perspective/viewer/viewer.py,sha256=JT0OAoTXyDt-EvEcNnk_0yiX0uoXdDROaxI-vSyIvpE,14166
|
|
57
|
+
perspective/viewer/viewer_traitlets.py,sha256=0PF4wbQGOI98c2ZY2w3QXbgMhYJc6GuCEOVgPlM-1c8,5016
|
|
58
|
+
perspective/widget/__init__.py,sha256=XEQe3Kk5lf33fe0_MT__vHMMu9NaJP1fjIjpIl_LTr4,2032
|
|
59
|
+
perspective/widget/widget.py,sha256=F-BwStqiYF9f06rBQa_iaVzOwP3TM8IHy8jAi9RjusU,11962
|
|
60
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/install.json,sha256=S5jWNVZatPP8iXRErKjlH1ewBPd7wbitWFVpE2wh7dQ,203
|
|
61
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/package.json,sha256=o2KwtkLD0BxgcXSRtNUJ1QpLF_fvi97yIZm5ySOHGZc,2681
|
|
62
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.6f17b87bb4eb1e656365.js,sha256=lEShssTpFT9Y8QIPE6SgoZKjkU_74hi3R8_QcghsHs4,4707803
|
|
63
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.6f17b87bb4eb1e656365.js.LICENSE.txt,sha256=XIOlTsJN3OApYPAABTWZsl6XGsm_m4cAWEM10xwk-NI,2452
|
|
64
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/905.d3bbc3d5954582d507bb.js,sha256=07vD1ZVFgtUHu1q0oKpJIN2l3gMUrK41HzAitIbzpos,105504
|
|
65
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.7044010cbbf2a7208035.js,sha256=cEQBDLvypyCANQCU5ROA-Fq5j5TxkR1yUfA-ANvbxPk,8606
|
|
66
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/style.js,sha256=WYTrzHnH07uly2m14pq9e3xSxTLfUrCNnLtlFa9ugCc,193
|
|
67
|
+
perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/third-party-licenses.json,sha256=W6N2sSD7tQihMqQk64F9xMd1Flfr2KO97esAiHUOYdM,2453
|
|
68
|
+
perspective_python-3.0.0rc1.dist-info/METADATA,sha256=TiyGSsrrxu1d_Ne7YN4oxZQQ0M5IXF8pnYMj7oVWdc0,601
|
|
69
|
+
perspective_python-3.0.0rc1.dist-info/WHEEL,sha256=X19xtJtDyNNBdStBlUMPbf1mk6DcyAOZ7bvquFRkBpk,94
|
|
70
|
+
perspective_python-3.0.0rc1.dist-info/RECORD,,
|